Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

translate video state strings (#5762)

authored by

surfdude29 and committed by
GitHub
53b6d16b 4c3c10d7

+5 -5
+5 -5
src/view/com/composer/Composer.tsx
··· 1174 1174 1175 1175 switch (state.status) { 1176 1176 case 'compressing': 1177 - text = _('Compressing video...') 1177 + text = _(msg`Compressing video...`) 1178 1178 break 1179 1179 case 'uploading': 1180 - text = _('Uploading video...') 1180 + text = _(msg`Uploading video...`) 1181 1181 break 1182 1182 case 'processing': 1183 - text = _('Processing video...') 1183 + text = _(msg`Processing video...`) 1184 1184 break 1185 1185 case 'error': 1186 - text = _('Error') 1186 + text = _(msg`Error`) 1187 1187 wheelProgress = 100 1188 1188 break 1189 1189 case 'done': 1190 - text = _('Video uploaded') 1190 + text = _(msg`Video uploaded`) 1191 1191 break 1192 1192 } 1193 1193