about summary refs log tree commit diff
path: root/src/view/com/composer/videos/SubtitleDialog.tsx
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2025-03-06 12:14:58 -0600
committerGitHub <noreply@github.com>2025-03-06 12:14:58 -0600
commit8eb1f8f1fc0d80635ac2f78d87adc73a3862ca3f (patch)
treeca237caccf5ef06b24d284a92a1d5f9bbac70c7c /src/view/com/composer/videos/SubtitleDialog.tsx
parentda2b6f4797f55d4c2437f4ad32c94777eacfbf2c (diff)
downloadvoidsky-8eb1f8f1fc0d80635ac2f78d87adc73a3862ca3f.tar.zst
Merge #7903 (#7917)
* Add missing msg macro calls for i18n (#7903)

* Add missing msg macro calls for i18n

* Update src/screens/Settings/AppIconSettings/useAppIconSets.ts

Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com>

* Apply suggestions from code review

Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com>

* Apply surfdude29's suggestions from code review

Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com>

---------

Co-authored-by: Samuel Newman <mozzius@protonmail.com>
Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com>

* Format

---------

Co-authored-by: Stanislas Signoud <signez@stanisoft.net>
Co-authored-by: Samuel Newman <mozzius@protonmail.com>
Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com>
Diffstat (limited to 'src/view/com/composer/videos/SubtitleDialog.tsx')
-rw-r--r--src/view/com/composer/videos/SubtitleDialog.tsx6
1 files changed, 3 insertions, 3 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"