Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Remove excess l10n related markups (#2544)

* Remove excess l10n related markups

* One more correction pointed out by quiple

authored by

Takayuki KUSANO and committed by
GitHub
0dfe740d 2be27330

+13 -17
+1 -1
src/Navigation.tsx
··· 144 144 name="Profile" 145 145 getComponent={() => ProfileScreen} 146 146 options={({route}) => ({ 147 - title: title(msg`@${route.params.name}`), 147 + title: bskyTitle(`@${route.params.name}`, unreadCountLabel), 148 148 animation: 'none', 149 149 })} 150 150 />
+10 -12
src/view/com/modals/CreateOrEditList.tsx
··· 182 182 ]} 183 183 testID="createOrEditListModal"> 184 184 <Text style={[styles.title, pal.text]}> 185 - <Trans> 186 - {isCurateList ? ( 187 - list ? ( 188 - <Trans>Edit User List</Trans> 189 - ) : ( 190 - <Trans>New User List</Trans> 191 - ) 192 - ) : list ? ( 193 - <Trans>Edit Moderation List</Trans> 185 + {isCurateList ? ( 186 + list ? ( 187 + <Trans>Edit User List</Trans> 194 188 ) : ( 195 - <Trans>New Moderation List</Trans> 196 - )} 197 - </Trans> 189 + <Trans>New User List</Trans> 190 + ) 191 + ) : list ? ( 192 + <Trans>Edit Moderation List</Trans> 193 + ) : ( 194 + <Trans>New Moderation List</Trans> 195 + )} 198 196 </Text> 199 197 {error !== '' && ( 200 198 <View style={styles.errorContainer}>
+1 -3
src/view/screens/Search/Search.tsx
··· 83 83 }, 84 84 ]}> 85 85 <View style={[pal.viewLight, {padding: 18, borderRadius: 8}]}> 86 - <Text style={[pal.text]}> 87 - <Trans>{message}</Trans> 88 - </Text> 86 + <Text style={[pal.text]}>{message}</Text> 89 87 90 88 {error && ( 91 89 <>
+1 -1
src/view/screens/Settings.tsx
··· 291 291 ]}> 292 292 <View style={{flex: 1}}> 293 293 <Text type="title-lg" style={[pal.text, {fontWeight: 'bold'}]}> 294 - <Trans>{_(msg`Settings`)}</Trans> 294 + <Trans>Settings</Trans> 295 295 </Text> 296 296 </View> 297 297 </SimpleViewHeader>