diff options
author | surfdude29 <149612116+surfdude29@users.noreply.github.com> | 2024-10-15 17:21:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-15 19:21:37 +0300 |
commit | 53b6d16b510a08e97384b203d68ae9b0d18ce209 (patch) | |
tree | a8a6475d80b01379197c59869f380dd544c49e88 | |
parent | 4c3c10d7f892777e48faccd534441ac7d88df042 (diff) | |
download | voidsky-53b6d16b510a08e97384b203d68ae9b0d18ce209.tar.zst |
translate video state strings (#5762)
-rw-r--r-- | src/view/com/composer/Composer.tsx | 10 |
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 } |