Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

separate strings for translation in ListHiddenScreen.tsx (#7827)

authored by

surfdude29 and committed by
GitHub
a1699da1 ae9176c9

+9 -6
+9 -6
src/screens/List/ListHiddenScreen.tsx
··· 142 142 Either the creator of this list has blocked you or you have 143 143 blocked the creator. 144 144 </Trans> 145 + ) : isOwner ? ( 146 + <Trans> 147 + This list – created by you – contains possible violations of 148 + Bluesky's community guidelines in its name or description. 149 + </Trans> 145 150 ) : ( 146 151 <Trans> 147 - This list - created by{' '} 148 - <Text style={[a.text_md, !isOwner && a.font_bold]}> 149 - {isOwner 150 - ? _(msg`you`) 151 - : sanitizeHandle(list.creator.handle, '@')} 152 + This list – created by{' '} 153 + <Text style={[a.font_bold]}> 154 + {sanitizeHandle(list.creator.handle, '@')} 152 155 </Text>{' '} 153 - - contains possible violations of Bluesky's community guidelines 156 + – contains possible violations of Bluesky's community guidelines 154 157 in its name or description. 155 158 </Trans> 156 159 )}