Skip to content

Commit

Permalink
Mark string for localization (#4920)
Browse files Browse the repository at this point in the history
  • Loading branch information
surfdude29 authored Aug 11, 2024
1 parent 8367542 commit 6f450b4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/view/com/composer/videos/VideoTranscodeProgress.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -46,7 +47,9 @@ export function VideoTranscodeProgress({
color={t.atoms.text.color}
progress={progress}
/>
<Text>Compressing...</Text>
<Text>
<Trans>Compressing...</Trans>
</Text>
</View>
</View>
)
Expand Down

0 comments on commit 6f450b4

Please sign in to comment.