diff options
author | surfdude29 <149612116+surfdude29@users.noreply.github.com> | 2025-02-24 20:48:42 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-24 12:48:42 -0800 |
commit | a1699da1a9853c5baf2036c4c0beffdfad507a4c (patch) | |
tree | 4c7d3def8cfe7f904d04df1be6902dc0b0331d2e /src/screens/List/ListHiddenScreen.tsx | |
parent | ae9176c9c2112641c6484ac4b50edfbd94d29661 (diff) | |
download | voidsky-a1699da1a9853c5baf2036c4c0beffdfad507a4c.tar.zst |
separate strings for translation in ListHiddenScreen.tsx (#7827)
Diffstat (limited to 'src/screens/List/ListHiddenScreen.tsx')
-rw-r--r-- | src/screens/List/ListHiddenScreen.tsx | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/screens/List/ListHiddenScreen.tsx b/src/screens/List/ListHiddenScreen.tsx index 75bea4637..5df1670f4 100644 --- a/src/screens/List/ListHiddenScreen.tsx +++ b/src/screens/List/ListHiddenScreen.tsx @@ -142,15 +142,18 @@ export function ListHiddenScreen({ Either the creator of this list has blocked you or you have blocked the creator. </Trans> + ) : isOwner ? ( + <Trans> + This list – created by you – contains possible violations of + Bluesky's community guidelines in its name or description. + </Trans> ) : ( <Trans> - This list - created by{' '} - <Text style={[a.text_md, !isOwner && a.font_bold]}> - {isOwner - ? _(msg`you`) - : sanitizeHandle(list.creator.handle, '@')} + This list – created by{' '} + <Text style={[a.font_bold]}> + {sanitizeHandle(list.creator.handle, '@')} </Text>{' '} - - contains possible violations of Bluesky's community guidelines + – contains possible violations of Bluesky's community guidelines in its name or description. </Trans> )} |