about summary refs log tree commit diff
path: root/src/view/com/composer
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/com/composer')
-rw-r--r--src/view/com/composer/videos/SubtitleDialog.tsx6
-rw-r--r--src/view/com/composer/videos/SubtitleFilePicker.tsx2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/view/com/composer/videos/SubtitleDialog.tsx b/src/view/com/composer/videos/SubtitleDialog.tsx
index e907dc41c..13d1b7ce5 100644
--- a/src/view/com/composer/videos/SubtitleDialog.tsx
+++ b/src/view/com/composer/videos/SubtitleDialog.tsx
@@ -38,11 +38,11 @@ export function SubtitleDialogBtn(props: Props) {
   return (
     <View style={[a.flex_row, a.my_xs]}>
       <Button
-        label={isWeb ? _('Captions & alt text') : _('Alt text')}
+        label={isWeb ? _(msg`Captions & alt text`) : _(msg`Alt text`)}
         accessibilityHint={
           isWeb
-            ? _('Opens captions and alt text dialog')
-            : _('Opens alt text dialog')
+            ? _(msg`Opens captions and alt text dialog`)
+            : _(msg`Opens alt text dialog`)
         }
         size="small"
         color="secondary"
diff --git a/src/view/com/composer/videos/SubtitleFilePicker.tsx b/src/view/com/composer/videos/SubtitleFilePicker.tsx
index 44a6b53b6..e49189f9b 100644
--- a/src/view/com/composer/videos/SubtitleFilePicker.tsx
+++ b/src/view/com/composer/videos/SubtitleFilePicker.tsx
@@ -56,7 +56,7 @@ export function SubtitleFilePicker({
       <View style={a.flex_row}>
         <Button
           onPress={handleClick}
-          label={_('Select subtitle file (.vtt)')}
+          label={_(msg`Select subtitle file (.vtt)`)}
           size="large"
           color="primary"
           variant="solid"