🌐 frontend: upload pending file row translation

This commit is contained in:
Eric Doughty-Papassideris
2024-07-25 16:54:59 +02:00
parent 74fb5c93d4
commit de92fdf86b
5 changed files with 5 additions and 2 deletions
+1
View File
@@ -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…",
+1
View File
@@ -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",
+1
View File
@@ -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": "Загрузка…",
+1
View File
@@ -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…",
@@ -80,8 +80,7 @@ export default ({ pendingFileState, pendingFile }: PropsType) => {
</Text>
{isPendingFileStatusPause(pendingFile.status) && (
<Text type="secondary" className='ant-typography-single-line' style={{ verticalAlign: 'middle', marginLeft: 4 }}>
{/* TODO Add translation here */}
(paused)
({Languages.t('general.paused')})
</Text>
)}
</Row>