diff --git a/tdrive/frontend/public/locales/en.json b/tdrive/frontend/public/locales/en.json index 77c1eb6d..550a76f6 100644 --- a/tdrive/frontend/public/locales/en.json +++ b/tdrive/frontend/public/locales/en.json @@ -266,6 +266,7 @@ "hooks.use-drive-actions.unable_update_file":"Unable to update this file.", "general.resume": "Resume", "general.pause": "Pause", + "general.paused": "Paused", "app.state.recoil.hooks.use_current_company_applications.toaster_delete": "Successfully deleted {{$1}} from your company", "app.state.recoil.hooks.use_current_company_applications.toaster_add": "Successfully added {{$1}} in your company", "scenes.join.loading": "Loading…", diff --git a/tdrive/frontend/public/locales/fr.json b/tdrive/frontend/public/locales/fr.json index bec97f77..57f6bc0a 100644 --- a/tdrive/frontend/public/locales/fr.json +++ b/tdrive/frontend/public/locales/fr.json @@ -242,6 +242,7 @@ "hooks.use-drive-actions.unable_update_file": "Impossible de mettre à jour ce fichier", "general.resume": "Reprendre", "general.pause": "Pause", + "general.paused": "En pause", "app.state.recoil.hooks.use_current_company_applications.toaster_delete": "{{$1}} supprimé avec succès de votre entreprise", "app.state.recoil.hooks.use_current_company_applications.toaster_add": "{{$1}} ajouté avec succès dans votre entreprise", "scenes.app.popup.adduser.magiclinks.copied_to_clipboard": "Copié avec succès dans le presse-papiers", diff --git a/tdrive/frontend/public/locales/ru.json b/tdrive/frontend/public/locales/ru.json index 9f240459..a8a256da 100644 --- a/tdrive/frontend/public/locales/ru.json +++ b/tdrive/frontend/public/locales/ru.json @@ -242,6 +242,7 @@ "hooks.use-drive-actions.unable_update_file":"Unable to update this file.", "general.resume": "Продолжить", "general.pause": "Пауза", + "general.paused": "Пауза", "general.user.role.company.member": "Участник", "components.locked_features.locked_guests_popup.skip_for_now_button": "Отложить", "scenes.join.loading": "Загрузка…", diff --git a/tdrive/frontend/public/locales/vn.json b/tdrive/frontend/public/locales/vn.json index 9d221145..b40aa072 100644 --- a/tdrive/frontend/public/locales/vn.json +++ b/tdrive/frontend/public/locales/vn.json @@ -257,6 +257,7 @@ "hooks.use-drive-actions.unable_update_file": "Không thể cập nhật tệp này.", "general.resume": "Tiếp tục", "general.pause": "Tạm dừng", + "general.paused": "Đã tạm dừng", "app.state.recoil.hooks.use_current_company_applications.toaster_delete": "Đã xóa thành công {{$1}} khỏi công ty của bạn", "app.state.recoil.hooks.use_current_company_applications.toaster_add": "Đã thêm thành công {{$1}} vào công ty của bạn", "scenes.join.loading": "Đang tải…", diff --git a/tdrive/frontend/src/app/components/file-uploads/pending-file-components/pending-file-row.tsx b/tdrive/frontend/src/app/components/file-uploads/pending-file-components/pending-file-row.tsx index d9500070..c3b78e7d 100644 --- a/tdrive/frontend/src/app/components/file-uploads/pending-file-components/pending-file-row.tsx +++ b/tdrive/frontend/src/app/components/file-uploads/pending-file-components/pending-file-row.tsx @@ -80,8 +80,7 @@ export default ({ pendingFileState, pendingFile }: PropsType) => { {isPendingFileStatusPause(pendingFile.status) && ( - {/* TODO Add translation here */} - (paused) + ({Languages.t('general.paused')}) )}