about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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
   }