Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Remove unnecessary Trans tags (#3888)

authored by

Minseo Lee and committed by
GitHub
c6d30f67 7d72dfb1

+10 -14
+5 -7
src/components/ProfileHoverCard/index.web.tsx
··· 2 2 import {View} from 'react-native' 3 3 import {AppBskyActorDefs, moderateProfile, ModerationOpts} from '@atproto/api' 4 4 import {flip, offset, shift, size, useFloating} from '@floating-ui/react-dom' 5 - import {msg, plural, Trans} from '@lingui/macro' 5 + import {msg, plural} from '@lingui/macro' 6 6 import {useLingui} from '@lingui/react' 7 7 8 8 import {makeProfileLink} from '#/lib/routes/links' ··· 444 444 label={`${followers} ${pluralizedFollowers}`} 445 445 style={[t.atoms.text]} 446 446 onPress={hide}> 447 - <Trans> 448 - <Text style={[a.text_md, a.font_bold]}>{followers} </Text> 449 - <Text style={[t.atoms.text_contrast_medium]}> 450 - {pluralizedFollowers} 451 - </Text> 452 - </Trans> 447 + <Text style={[a.text_md, a.font_bold]}>{followers} </Text> 448 + <Text style={[t.atoms.text_contrast_medium]}> 449 + {pluralizedFollowers} 450 + </Text> 453 451 </InlineLinkText> 454 452 <InlineLinkText 455 453 to={makeProfileLink(profile, 'follows')}
+5 -7
src/screens/Profile/Header/Metrics.tsx
··· 1 1 import React from 'react' 2 2 import {View} from 'react-native' 3 3 import {AppBskyActorDefs} from '@atproto/api' 4 - import {msg, plural, Trans} from '@lingui/macro' 4 + import {msg, plural} from '@lingui/macro' 5 5 import {useLingui} from '@lingui/react' 6 6 7 7 import {Shadow} from '#/state/cache/types' ··· 38 38 style={[a.flex_row, t.atoms.text]} 39 39 to={makeProfileLink(profile, 'followers')} 40 40 label={`${followers} ${pluralizedFollowers}`}> 41 - <Trans> 42 - <Text style={[a.font_bold, a.text_md]}>{followers} </Text> 43 - <Text style={[t.atoms.text_contrast_medium, a.text_md]}> 44 - {pluralizedFollowers} 45 - </Text> 46 - </Trans> 41 + <Text style={[a.font_bold, a.text_md]}>{followers} </Text> 42 + <Text style={[t.atoms.text_contrast_medium, a.text_md]}> 43 + {pluralizedFollowers} 44 + </Text> 47 45 </InlineLinkText> 48 46 <InlineLinkText 49 47 testID="profileHeaderFollowsButton"