diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2024-05-15 14:44:59 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-14 22:44:59 -0700 |
commit | 2121b5f86f5229914256c7a818086aaaf4c3581a (patch) | |
tree | 62479f95b991497dab097f3642c0ef1a800276c4 /src/components/moderation/LabelsOnMeDialog.tsx | |
parent | a90cc1c030e3213ca4359052d5a4fe46c11627e5 (diff) | |
download | voidsky-2121b5f86f5229914256c7a818086aaaf4c3581a.tar.zst |
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.
Diffstat (limited to 'src/components/moderation/LabelsOnMeDialog.tsx')
-rw-r--r-- | src/components/moderation/LabelsOnMeDialog.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/moderation/LabelsOnMeDialog.tsx b/src/components/moderation/LabelsOnMeDialog.tsx index 858ac9ce4..e98599b4e 100644 --- a/src/components/moderation/LabelsOnMeDialog.tsx +++ b/src/components/moderation/LabelsOnMeDialog.tsx @@ -162,10 +162,10 @@ function Label({ <View style={[a.px_md, a.py_sm, t.atoms.bg_contrast_25]}> <Text style={[t.atoms.text_contrast_medium]}> {isSelfLabel ? ( - <Trans>This label was applied by you</Trans> + <Trans>This label was applied by you.</Trans> ) : ( - <> - <Trans>Source:</Trans>{' '} + <Trans> + Source:{' '} <InlineLinkText to={makeProfileLink( labeler ? labeler.creator : {did: label.src, handle: ''}, @@ -175,7 +175,7 @@ function Label({ ? sanitizeHandle(labeler.creator.handle, '@') : label.src} </InlineLinkText> - </> + </Trans> )} </Text> </View> |