about summary refs log tree commit diff
path: root/src/view/com/composer/Composer.tsx
diff options
context:
space:
mode:
authorsurfdude29 <149612116+surfdude29@users.noreply.github.com>2024-10-15 17:21:37 +0100
committerGitHub <noreply@github.com>2024-10-15 19:21:37 +0300
commit53b6d16b510a08e97384b203d68ae9b0d18ce209 (patch)
treea8a6475d80b01379197c59869f380dd544c49e88 /src/view/com/composer/Composer.tsx
parent4c3c10d7f892777e48faccd534441ac7d88df042 (diff)
downloadvoidsky-53b6d16b510a08e97384b203d68ae9b0d18ce209.tar.zst
translate video state strings (#5762)
Diffstat (limited to 'src/view/com/composer/Composer.tsx')
-rw-r--r--src/view/com/composer/Composer.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx
index 7b16a99fd..a45477d11 100644
--- a/src/view/com/composer/Composer.tsx
+++ b/src/view/com/composer/Composer.tsx
@@ -1174,20 +1174,20 @@ function VideoUploadToolbar({state}: {state: VideoState}) {
 
   switch (state.status) {
     case 'compressing':
-      text = _('Compressing video...')
+      text = _(msg`Compressing video...`)
       break
     case 'uploading':
-      text = _('Uploading video...')
+      text = _(msg`Uploading video...`)
       break
     case 'processing':
-      text = _('Processing video...')
+      text = _(msg`Processing video...`)
       break
     case 'error':
-      text = _('Error')
+      text = _(msg`Error`)
       wheelProgress = 100
       break
     case 'done':
-      text = _('Video uploaded')
+      text = _(msg`Video uploaded`)
       break
   }