From 812ff4d154387961b96fe63cc90ff2fcb872f8da Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 30 Jan 2026 17:25:17 +0200 Subject: [PATCH] refer to it as a gif in the composer --- src/view/com/composer/Composer.tsx | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx index d73d9c7b27..2438d99f3a 100644 --- a/src/view/com/composer/Composer.tsx +++ b/src/view/com/composer/Composer.tsx @@ -2274,22 +2274,40 @@ function VideoUploadToolbar({state}: {state: VideoState}) { let text = '' + const isGif = state.video?.mimeType === 'image/gif' + switch (state.status) { case 'compressing': - text = _(msg`Compressing video...`) + if (isGif) { + text = _(msg`Compressing GIF...`) + } else { + text = _(msg`Compressing video...`) + } break case 'uploading': - text = _(msg`Uploading video...`) + if (isGif) { + text = _(msg`Uploading GIF...`) + } else { + text = _(msg`Uploading video...`) + } break case 'processing': - text = _(msg`Processing video...`) + if (isGif) { + text = _(msg`Processing GIF...`) + } else { + text = _(msg`Processing video...`) + } break case 'error': text = _(msg`Error`) wheelProgress = 100 break case 'done': - text = _(msg`Video uploaded`) + if (isGif) { + text = _(msg`GIF uploaded`) + } else { + text = _(msg`Video uploaded`) + } break }