From 53b6d16b510a08e97384b203d68ae9b0d18ce209 Mon Sep 17 00:00:00 2001 From: surfdude29 <149612116+surfdude29@users.noreply.github.com> Date: Tue, 15 Oct 2024 17:21:37 +0100 Subject: translate video state strings (#5762) --- src/view/com/composer/Composer.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src') 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 } -- cgit 1.4.1