Mark string for localization (#4920)

zio/stable
surfdude29 2024-08-11 20:41:33 +01:00 committed by GitHub
parent 8367542138
commit 6f450b4982
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -3,6 +3,7 @@ import {View} from 'react-native'
// @ts-expect-error no type definition
import ProgressPie from 'react-native-progress/Pie'
import {ImagePickerAsset} from 'expo-image-picker'
import {Trans} from '@lingui/macro'
import {atoms as a, useTheme} from '#/alf'
import {Text} from '#/components/Typography'
@ -46,7 +47,9 @@ export function VideoTranscodeProgress({
color={t.atoms.text.color}
progress={progress}
/>
<Text>Compressing...</Text>
<Text>
<Trans>Compressing...</Trans>
</Text>
</View>
</View>
)