diff options
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> |