Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Mark string for localization (#4920)

authored by

surfdude29 and committed by
GitHub
6f450b49 83675421

+4 -1
+4 -1
src/view/com/composer/videos/VideoTranscodeProgress.tsx
··· 3 3 // @ts-expect-error no type definition 4 4 import ProgressPie from 'react-native-progress/Pie' 5 5 import {ImagePickerAsset} from 'expo-image-picker' 6 + import {Trans} from '@lingui/macro' 6 7 7 8 import {atoms as a, useTheme} from '#/alf' 8 9 import {Text} from '#/components/Typography' ··· 46 47 color={t.atoms.text.color} 47 48 progress={progress} 48 49 /> 49 - <Text>Compressing...</Text> 50 + <Text> 51 + <Trans>Compressing...</Trans> 52 + </Text> 50 53 </View> 51 54 </View> 52 55 )