An ATproto social media client -- with an independent Appview.

Make more localizable (#3962)

* Update ProfileList.tsx

* Update NoFollowingFeed.tsx

* Update LabelsOnMeDialog.tsx

* Update LabelsOnMeDialog.tsx

* Update NoFollowingFeed.tsx

* Update SavedFeeds.tsx

* Revert "Update SavedFeeds.tsx"

This reverts commit db128eb27d76d27dffa87e0e70e34f603da75778.

authored by quiple.dev and committed by

GitHub 2121b5f8 a90cc1c0

+20 -16
+4 -4
src/components/moderation/LabelsOnMeDialog.tsx
··· 162 162 <View style={[a.px_md, a.py_sm, t.atoms.bg_contrast_25]}> 163 163 <Text style={[t.atoms.text_contrast_medium]}> 164 164 {isSelfLabel ? ( 165 - <Trans>This label was applied by you</Trans> 165 + <Trans>This label was applied by you.</Trans> 166 166 ) : ( 167 - <> 168 - <Trans>Source:</Trans>{' '} 167 + <Trans> 168 + Source:{' '} 169 169 <InlineLinkText 170 170 to={makeProfileLink( 171 171 labeler ? labeler.creator : {did: label.src, handle: ''}, ··· 175 175 ? sanitizeHandle(labeler.creator.handle, '@') 176 176 : label.src} 177 177 </InlineLinkText> 178 - </> 178 + </Trans> 179 179 )} 180 180 </Text> 181 181 </View>
+11 -11
src/screens/Feeds/NoFollowingFeed.tsx
··· 33 33 34 34 return ( 35 35 <View style={[a.flex_row, a.flex_wrap, a.align_center, a.py_md, a.px_lg]}> 36 - <Text 37 - style={[a.leading_snug, t.atoms.text_contrast_medium, {maxWidth: 310}]}> 38 - <Trans>Looks like you're missing a following feed.</Trans>{' '} 36 + <Text style={[a.leading_snug, t.atoms.text_contrast_medium]}> 37 + <Trans> 38 + Looks like you're missing a following feed.{' '} 39 + <InlineLinkText 40 + to="/" 41 + label={_(msg`Add the default feed of only people you follow`)} 42 + onPress={addRecommendedFeeds} 43 + style={[a.leading_snug]}> 44 + Click here to add one. 45 + </InlineLinkText> 46 + </Trans> 39 47 </Text> 40 - 41 - <InlineLinkText 42 - to="/" 43 - label={_(msg`Add the default feed of only people you follow`)} 44 - onPress={addRecommendedFeeds} 45 - style={[a.leading_snug]}> 46 - <Trans>Click here to add one.</Trans> 47 - </InlineLinkText> 48 48 </View> 49 49 ) 50 50 }
+5 -1
src/view/screens/ProfileList.tsx
··· 283 283 pinned, 284 284 }, 285 285 ]) 286 - Toast.show(_(msg`${pinned ? 'Pinned to' : 'Unpinned from'} your feeds`)) 286 + Toast.show( 287 + pinned 288 + ? _(msg`Pinned to your feeds`) 289 + : _(msg`Unpinned from your feeds`), 290 + ) 287 291 } else { 288 292 await addSavedFeeds([ 289 293 {