Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Improve localization (#5008)

* Update QrCode.tsx

* Update generate-starterpack.ts

authored by

Minseo Lee and committed by
GitHub
2ef2ae1c 05b73d4d

+19 -16
+18 -14
src/components/StarterPack/QrCode.tsx
··· 59 59 <QrCodeInner link={link} /> 60 60 </View> 61 61 62 - <View style={[a.flex_row, a.align_center, {gap: 5}]}> 63 - <Text 64 - style={[ 65 - a.font_bold, 66 - a.text_center, 67 - {color: 'white', fontSize: 18}, 68 - ]}> 69 - <Trans>on</Trans> 70 - </Text> 71 - <Logo width={26} fill="white" /> 72 - <View style={[{marginTop: 5, marginLeft: 2.5}]}> 73 - <Logotype width={68} fill="white" /> 74 - </View> 75 - </View> 62 + <Text 63 + style={[ 64 + a.flex, 65 + a.flex_row, 66 + a.align_center, 67 + a.font_bold, 68 + {color: 'white', fontSize: 18, gap: 6}, 69 + ]}> 70 + <Trans> 71 + on 72 + <View style={[a.flex_row, a.align_center, {gap: 6}]}> 73 + <Logo width={25} fill="white" /> 74 + <View style={[{marginTop: 3.5}]}> 75 + <Logotype width={72} fill="white" /> 76 + </View> 77 + </View> 78 + </Trans> 79 + </Text> 76 80 </View> 77 81 </LinearGradientBackground> 78 82 </ViewShot>
+1 -2
src/lib/generate-starterpack.ts
··· 65 65 }) { 66 66 const {_} = useLingui() 67 67 const agent = useAgent() 68 - const starterPackString = _(msg`Starter Pack`) 69 68 70 69 return useMutation<{uri: string; cid: string}, Error, void>({ 71 70 mutationFn: async () => { ··· 106 105 25, 107 106 true, 108 107 ) 109 - const starterPackName = `${displayName}'s ${starterPackString}` 108 + const starterPackName = _(msg`${displayName}'s Starter Pack`) 110 109 111 110 const list = await createStarterPackList({ 112 111 name: starterPackName,