From 769ef856bcbb43dc6c99585319a3395d5a2e9ed4 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Sun, 1 Mar 2026 03:05:47 -0600 Subject: [PATCH] chore: format --- src/lib/components/chat/FileNav.svelte | 79 +++++++++++++++---- .../chat/FileNav/FilePreview.svelte | 20 +++-- src/lib/i18n/locales/ar-BH/translation.json | 37 ++------- src/lib/i18n/locales/ar/translation.json | 37 ++------- src/lib/i18n/locales/bg-BG/translation.json | 17 ++-- src/lib/i18n/locales/bn-BD/translation.json | 17 ++-- src/lib/i18n/locales/bo-TB/translation.json | 12 +-- src/lib/i18n/locales/bs-BA/translation.json | 22 ++---- src/lib/i18n/locales/ca-ES/translation.json | 22 ++---- src/lib/i18n/locales/ceb-PH/translation.json | 17 ++-- src/lib/i18n/locales/cs-CZ/translation.json | 27 ++----- src/lib/i18n/locales/da-DK/translation.json | 17 ++-- src/lib/i18n/locales/de-DE/translation.json | 17 ++-- src/lib/i18n/locales/dg-DG/translation.json | 17 ++-- src/lib/i18n/locales/el-GR/translation.json | 17 ++-- src/lib/i18n/locales/en-GB/translation.json | 17 ++-- src/lib/i18n/locales/en-US/translation.json | 17 ++-- src/lib/i18n/locales/es-ES/translation.json | 22 ++---- src/lib/i18n/locales/et-EE/translation.json | 17 ++-- src/lib/i18n/locales/eu-ES/translation.json | 17 ++-- src/lib/i18n/locales/fa-IR/translation.json | 17 ++-- src/lib/i18n/locales/fi-FI/translation.json | 17 ++-- src/lib/i18n/locales/fr-CA/translation.json | 22 ++---- src/lib/i18n/locales/fr-FR/translation.json | 22 ++---- src/lib/i18n/locales/gl-ES/translation.json | 17 ++-- src/lib/i18n/locales/he-IL/translation.json | 22 ++---- src/lib/i18n/locales/hi-IN/translation.json | 17 ++-- src/lib/i18n/locales/hr-HR/translation.json | 22 ++---- src/lib/i18n/locales/hu-HU/translation.json | 17 ++-- src/lib/i18n/locales/id-ID/translation.json | 12 +-- src/lib/i18n/locales/ie-GA/translation.json | 17 ++-- src/lib/i18n/locales/it-IT/translation.json | 22 ++---- src/lib/i18n/locales/ja-JP/translation.json | 12 +-- src/lib/i18n/locales/ka-GE/translation.json | 17 ++-- src/lib/i18n/locales/kab-DZ/translation.json | 17 ++-- src/lib/i18n/locales/ko-KR/translation.json | 12 +-- src/lib/i18n/locales/lt-LT/translation.json | 27 ++----- src/lib/i18n/locales/lv-LV/translation.json | 22 ++---- src/lib/i18n/locales/ms-MY/translation.json | 12 +-- src/lib/i18n/locales/nb-NO/translation.json | 17 ++-- src/lib/i18n/locales/nl-NL/translation.json | 17 ++-- src/lib/i18n/locales/pa-IN/translation.json | 17 ++-- src/lib/i18n/locales/pl-PL/translation.json | 27 ++----- src/lib/i18n/locales/pt-BR/translation.json | 22 ++---- src/lib/i18n/locales/pt-PT/translation.json | 22 ++---- src/lib/i18n/locales/ro-RO/translation.json | 22 ++---- src/lib/i18n/locales/ru-RU/translation.json | 27 ++----- src/lib/i18n/locales/sk-SK/translation.json | 27 ++----- src/lib/i18n/locales/sr-RS/translation.json | 22 ++---- src/lib/i18n/locales/sv-SE/translation.json | 17 ++-- src/lib/i18n/locales/th-TH/translation.json | 12 +-- src/lib/i18n/locales/tk-TM/translation.json | 17 ++-- src/lib/i18n/locales/tr-TR/translation.json | 17 ++-- src/lib/i18n/locales/ug-CN/translation.json | 17 ++-- src/lib/i18n/locales/uk-UA/translation.json | 27 ++----- src/lib/i18n/locales/ur-PK/translation.json | 17 ++-- .../i18n/locales/uz-Cyrl-UZ/translation.json | 17 ++-- .../i18n/locales/uz-Latn-Uz/translation.json | 17 ++-- src/lib/i18n/locales/vi-VN/translation.json | 12 +-- src/lib/i18n/locales/zh-CN/translation.json | 12 +-- src/lib/i18n/locales/zh-TW/translation.json | 12 +-- 61 files changed, 487 insertions(+), 735 deletions(-) diff --git a/src/lib/components/chat/FileNav.svelte b/src/lib/components/chat/FileNav.svelte index 77445bd022..efeb1ff343 100644 --- a/src/lib/components/chat/FileNav.svelte +++ b/src/lib/components/chat/FileNav.svelte @@ -296,9 +296,7 @@ const emptyFile = new File([''], name, { type: 'application/octet-stream' }); const result = await uploadToTerminal(terminal.url, terminal.key, currentPath, emptyFile); - toast[result ? 'success' : 'error']( - $i18n.t(result ? 'File created' : 'Failed to create file') - ); + toast[result ? 'success' : 'error']($i18n.t(result ? 'File created' : 'Failed to create file')); await loadDir(currentPath); }; @@ -467,13 +465,39 @@ aria-label={showRaw ? $i18n.t('Preview') : $i18n.t('Source')} > {#if showRaw} - - - + + + {:else} - - + + {/if} @@ -487,8 +511,15 @@ on:click={() => filePreviewRef?.cancelEdit()} aria-label={$i18n.t('Cancel')} > - - + + @@ -502,8 +533,17 @@ {#if saving} {:else} - - + + {/if} @@ -526,8 +566,19 @@ on:click={() => downloadFile(selectedFile)} aria-label={$i18n.t('Download')} > - - + + diff --git a/src/lib/components/chat/FileNav/FilePreview.svelte b/src/lib/components/chat/FileNav/FilePreview.svelte index 3561be052a..acb6c39a17 100644 --- a/src/lib/components/chat/FileNav/FilePreview.svelte +++ b/src/lib/components/chat/FileNav/FilePreview.svelte @@ -191,18 +191,16 @@ + {:else if editing} + {:else} - {#if editing} - - {:else} -
{fileContent}
- {/if} +
{fileContent}
{/if} {:else}
diff --git a/src/lib/i18n/locales/ar-BH/translation.json b/src/lib/i18n/locales/ar-BH/translation.json index a90a9b828d..87e6f3e187 100644 --- a/src/lib/i18n/locales/ar-BH/translation.json +++ b/src/lib/i18n/locales/ar-BH/translation.json @@ -19,36 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_zero": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_two": "", - "{{COUNT}}d_time_ago_few": "", - "{{COUNT}}d_time_ago_many": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_zero": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_two": "", - "{{COUNT}}h_time_ago_few": "", - "{{COUNT}}h_time_ago_many": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_zero": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_two": "", - "{{COUNT}}m_time_ago_few": "", - "{{COUNT}}m_time_ago_many": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_zero": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_two": "", - "{{COUNT}}w_time_ago_few": "", - "{{COUNT}}w_time_ago_many": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_zero": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_two": "", - "{{COUNT}}y_time_ago_few": "", - "{{COUNT}}y_time_ago_many": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -897,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "وضع الملف", + "File name": "", "File not found.": "لم يتم العثور على الملف.", "File removed successfully.": "", "File size should not exceed {{maxSize}} MB.": "", @@ -1289,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "دردشة جديدة", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/ar/translation.json b/src/lib/i18n/locales/ar/translation.json index f1f526df90..08d4372a0c 100644 --- a/src/lib/i18n/locales/ar/translation.json +++ b/src/lib/i18n/locales/ar/translation.json @@ -19,36 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_zero": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_two": "", - "{{COUNT}}d_time_ago_few": "", - "{{COUNT}}d_time_ago_many": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_zero": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_two": "", - "{{COUNT}}h_time_ago_few": "", - "{{COUNT}}h_time_ago_many": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_zero": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_two": "", - "{{COUNT}}m_time_ago_few": "", - "{{COUNT}}m_time_ago_many": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_zero": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_two": "", - "{{COUNT}}w_time_ago_few": "", - "{{COUNT}}w_time_ago_many": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_zero": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_two": "", - "{{COUNT}}y_time_ago_few": "", - "{{COUNT}}y_time_ago_many": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -897,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "وضع الملف", + "File name": "", "File not found.": "لم يتم العثور على الملف.", "File removed successfully.": "تم حذف الملف بنجاح.", "File size should not exceed {{maxSize}} MB.": "يجب ألا يتجاوز حجم الملف {{maxSize}} ميغابايت.", @@ -1289,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "دردشة جديدة", + "New File": "", "New Folder": "مجلد جديد", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/bg-BG/translation.json b/src/lib/i18n/locales/bg-BG/translation.json index b99d673793..ccd13b2ab6 100644 --- a/src/lib/i18n/locales/bg-BG/translation.json +++ b/src/lib/i18n/locales/bg-BG/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Файлов режим", + "File name": "", "File not found.": "Файл не е намерен.", "File removed successfully.": "Файлът е премахнат успешно.", "File size should not exceed {{maxSize}} MB.": "Размерът на файла не трябва да надвишава {{maxSize}} MB.", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Нов чат", + "New File": "", "New Folder": "Нова папка", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/bn-BD/translation.json b/src/lib/i18n/locales/bn-BD/translation.json index 74cad63384..dfb2e5c436 100644 --- a/src/lib/i18n/locales/bn-BD/translation.json +++ b/src/lib/i18n/locales/bn-BD/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "ফাইল মোড", + "File name": "", "File not found.": "ফাইল পাওয়া যায়নি", "File removed successfully.": "", "File size should not exceed {{maxSize}} MB.": "", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "নতুন চ্যাট", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/bo-TB/translation.json b/src/lib/i18n/locales/bo-TB/translation.json index 34256a94cd..24b8c2ca1a 100644 --- a/src/lib/i18n/locales/bo-TB/translation.json +++ b/src/lib/i18n/locales/bo-TB/translation.json @@ -19,11 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -872,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "ཡིག་ཆའི་མ་དཔེ།", + "File name": "", "File not found.": "ཡིག་ཆ་མ་རྙེད།", "File removed successfully.": "ཡིག་ཆ་ལེགས་པར་བསུབས་ཟིན།", "File size should not exceed {{maxSize}} MB.": "ཡིག་ཆའི་ཆེ་ཆུང་ {{maxSize}} MB ལས་མི་བརྒལ་དགོས།", @@ -1264,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "ཁ་བརྡ་གསར་པ།", + "New File": "", "New Folder": "ཡིག་སྣོད་གསར་པ།", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/bs-BA/translation.json b/src/lib/i18n/locales/bs-BA/translation.json index e9724ff565..2fddb1d01c 100644 --- a/src/lib/i18n/locales/bs-BA/translation.json +++ b/src/lib/i18n/locales/bs-BA/translation.json @@ -19,21 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_few": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_few": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_few": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_few": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_few": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -882,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Način datoteke", + "File name": "", "File not found.": "Datoteka nije pronađena.", "File removed successfully.": "", "File size should not exceed {{maxSize}} MB.": "", @@ -1274,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Novi razgovor", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/ca-ES/translation.json b/src/lib/i18n/locales/ca-ES/translation.json index 7ed0876791..48b338d2b3 100644 --- a/src/lib/i18n/locales/ca-ES/translation.json +++ b/src/lib/i18n/locales/ca-ES/translation.json @@ -19,21 +19,11 @@ "{{COUNT}} Rows": "{{COUNT}} files", "{{COUNT}} Sources": "{{COUNT}} fonts", "{{COUNT}} words": "{{COUNT}} paraules", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_many": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_many": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_many": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_many": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_many": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} a les {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "La descàrrega del model {{model}} s'ha cancel·lat", "{{modelName}} profile image": "Imatge del perfil {{modelName}}", @@ -882,6 +872,7 @@ "File Context": "Contingut de l'arxiu", "File deleted successfully.": "L'arxiu s'ha eliminat correctament", "File Mode": "Mode d'arxiu", + "File name": "", "File not found.": "No s'ha trobat l'arxiu.", "File removed successfully.": "Arxiu eliminat correctament.", "File size should not exceed {{maxSize}} MB.": "La mida del fitxer no ha de superar els {{maxSize}} MB.", @@ -1274,6 +1265,7 @@ "New": "Nou", "New Button": "Botó nou", "New Chat": "Nou xat", + "New File": "", "New Folder": "Nova carpeta", "New Function": "Nova funció", "New Group": "Nou grup", diff --git a/src/lib/i18n/locales/ceb-PH/translation.json b/src/lib/i18n/locales/ceb-PH/translation.json index 8631011ee3..f83dbde5dc 100644 --- a/src/lib/i18n/locales/ceb-PH/translation.json +++ b/src/lib/i18n/locales/ceb-PH/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "File mode", + "File name": "", "File not found.": "Wala makit-an ang file.", "File removed successfully.": "", "File size should not exceed {{maxSize}} MB.": "", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Bag-ong diskusyon", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/cs-CZ/translation.json b/src/lib/i18n/locales/cs-CZ/translation.json index d1e180f493..351d5d69bf 100644 --- a/src/lib/i18n/locales/cs-CZ/translation.json +++ b/src/lib/i18n/locales/cs-CZ/translation.json @@ -19,26 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "{{COUNT}} slov", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_few": "", - "{{COUNT}}d_time_ago_many": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_few": "", - "{{COUNT}}h_time_ago_many": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_few": "", - "{{COUNT}}m_time_ago_many": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_few": "", - "{{COUNT}}w_time_ago_many": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_few": "", - "{{COUNT}}y_time_ago_many": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "Stažení modelu {{model}} bylo zrušeno", "{{modelName}} profile image": "", @@ -887,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Režim souboru", + "File name": "", "File not found.": "Soubor nenalezen.", "File removed successfully.": "Soubor byl úspěšně odstraněn.", "File size should not exceed {{maxSize}} MB.": "Velikost souboru by neměla překročit {{maxSize}} MB.", @@ -1279,6 +1265,7 @@ "New": "", "New Button": "Nové tlačítko", "New Chat": "Nová konverzace", + "New File": "", "New Folder": "Nová složka", "New Function": "Nová funkce", "New Group": "", diff --git a/src/lib/i18n/locales/da-DK/translation.json b/src/lib/i18n/locales/da-DK/translation.json index eb7ab06847..e2f4672daf 100644 --- a/src/lib/i18n/locales/da-DK/translation.json +++ b/src/lib/i18n/locales/da-DK/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "{{COUNT}} kilder", "{{COUNT}} words": "{{COUNT}} ord", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} klokken {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "Download af {{model}} er blevet annulleret", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Filtilstand", + "File name": "", "File not found.": "Filen blev ikke fundet.", "File removed successfully.": "Fil fjernet.", "File size should not exceed {{maxSize}} MB.": "Filstørrelsen må ikke overstige {{maxSize}} MB.", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "Ny knap", "New Chat": "Ny chat", + "New File": "", "New Folder": "Ny mappe", "New Function": "Ny funktion", "New Group": "", diff --git a/src/lib/i18n/locales/de-DE/translation.json b/src/lib/i18n/locales/de-DE/translation.json index e7b56912cd..03aab11306 100644 --- a/src/lib/i18n/locales/de-DE/translation.json +++ b/src/lib/i18n/locales/de-DE/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "{{COUNT}} Reihen", "{{COUNT}} Sources": "{{COUNT}} Quellen", "{{COUNT}} words": "{{COUNT}} Wörter", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} um {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "Der Download von {{model}} wurde abgebrochen", "{{modelName}} profile image": "{{modelName}} Profil Bild", @@ -877,6 +872,7 @@ "File Context": "Datei-Kontext", "File deleted successfully.": "Datei erfolgreich gelöscht.", "File Mode": "Datei-Modus", + "File name": "", "File not found.": "Datei nicht gefunden.", "File removed successfully.": "Datei erfolgreich entfernt.", "File size should not exceed {{maxSize}} MB.": "Dateigröße darf {{maxSize}} MB nicht überschreiten.", @@ -1269,6 +1265,7 @@ "New": "Neu", "New Button": "Neuer Button", "New Chat": "Neuer Chat", + "New File": "", "New Folder": "Neuer Ordner", "New Function": "Neue Funktion", "New Group": "Neue Gruppe", diff --git a/src/lib/i18n/locales/dg-DG/translation.json b/src/lib/i18n/locales/dg-DG/translation.json index 00b1b34eb1..d4594eb5cc 100644 --- a/src/lib/i18n/locales/dg-DG/translation.json +++ b/src/lib/i18n/locales/dg-DG/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Bark Mode", + "File name": "", "File not found.": "Bark not found.", "File removed successfully.": "", "File size should not exceed {{maxSize}} MB.": "", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "New Bark", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/el-GR/translation.json b/src/lib/i18n/locales/el-GR/translation.json index a87bee8881..370032cbc3 100644 --- a/src/lib/i18n/locales/el-GR/translation.json +++ b/src/lib/i18n/locales/el-GR/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Λειτουργία Αρχείου", + "File name": "", "File not found.": "Αρχείο δεν βρέθηκε.", "File removed successfully.": "Το αρχείο αφαιρέθηκε με επιτυχία.", "File size should not exceed {{maxSize}} MB.": "Το μέγεθος του αρχείου δεν πρέπει να υπερβαίνει τα {{maxSize}} MB.", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Νέα Συνομιλία", + "New File": "", "New Folder": "Νέος Φάκελος", "New Function": "Νέα Λειτουργία", "New Group": "", diff --git a/src/lib/i18n/locales/en-GB/translation.json b/src/lib/i18n/locales/en-GB/translation.json index 7d700f31fe..ade1438a5f 100644 --- a/src/lib/i18n/locales/en-GB/translation.json +++ b/src/lib/i18n/locales/en-GB/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "", + "File name": "", "File not found.": "", "File removed successfully.": "", "File size should not exceed {{maxSize}} MB.": "", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/en-US/translation.json b/src/lib/i18n/locales/en-US/translation.json index ee016d73a0..a243226206 100644 --- a/src/lib/i18n/locales/en-US/translation.json +++ b/src/lib/i18n/locales/en-US/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "", + "File name": "", "File not found.": "", "File removed successfully.": "", "File size should not exceed {{maxSize}} MB.": "", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/es-ES/translation.json b/src/lib/i18n/locales/es-ES/translation.json index 5b7c7af1fb..e4d37d704d 100644 --- a/src/lib/i18n/locales/es-ES/translation.json +++ b/src/lib/i18n/locales/es-ES/translation.json @@ -19,21 +19,11 @@ "{{COUNT}} Rows": "{{COUNT}} filas", "{{COUNT}} Sources": "{{COUNT}} Fuentes", "{{COUNT}} words": "{{COUNT}} palabras", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_many": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_many": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_many": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_many": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_many": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} a las {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "La descarga de {{model}} ha sido cancelada", "{{modelName}} profile image": "imagen de perfíl de {{modelName}}", @@ -882,6 +872,7 @@ "File Context": "Contexto del Archivo", "File deleted successfully.": "Archivo borrado correctamente.", "File Mode": "Modo de Archivo", + "File name": "", "File not found.": "Archivo no encontrado.", "File removed successfully.": "Archivo eliminado correctamente.", "File size should not exceed {{maxSize}} MB.": "Tamaño del archivo no debe exceder {{maxSize}} MB.", @@ -1274,6 +1265,7 @@ "New": "Nuevo", "New Button": "Nuevo Botón", "New Chat": "Nuevo Chat", + "New File": "", "New Folder": "Nueva Carpeta", "New Function": "Nueva Función", "New Group": "Nuevo Grupo", diff --git a/src/lib/i18n/locales/et-EE/translation.json b/src/lib/i18n/locales/et-EE/translation.json index 6e8a77ef09..3c6392e0b2 100644 --- a/src/lib/i18n/locales/et-EE/translation.json +++ b/src/lib/i18n/locales/et-EE/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "{{COUNT}} allikat", "{{COUNT}} words": "{{COUNT}} sõna", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} kell {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "{{model}} allalaadimine on tühistatud", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Faili režiim", + "File name": "", "File not found.": "Faili ei leitud.", "File removed successfully.": "Fail edukalt eemaldatud.", "File size should not exceed {{maxSize}} MB.": "Faili suurus ei tohiks ületada {{maxSize}} MB.", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "Uus nupp", "New Chat": "Uus vestlus", + "New File": "", "New Folder": "Uus kaust", "New Function": "Uus funktsioon", "New Group": "", diff --git a/src/lib/i18n/locales/eu-ES/translation.json b/src/lib/i18n/locales/eu-ES/translation.json index 748cf2ba4e..98030439b6 100644 --- a/src/lib/i18n/locales/eu-ES/translation.json +++ b/src/lib/i18n/locales/eu-ES/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Fitxategi Modua", + "File name": "", "File not found.": "Ez da fitxategia aurkitu.", "File removed successfully.": "Fitxategia ongi ezabatu da.", "File size should not exceed {{maxSize}} MB.": "Fitxategiaren tamainak ez luke {{maxSize}} MB gainditu behar.", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Txat berria", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/fa-IR/translation.json b/src/lib/i18n/locales/fa-IR/translation.json index 71a61c4611..a10435723b 100644 --- a/src/lib/i18n/locales/fa-IR/translation.json +++ b/src/lib/i18n/locales/fa-IR/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "{{COUNT}} منبع", "{{COUNT}} words": "{{COUNT}} کلمه", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} در {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "دانلود {{model}} لغو شده است", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "حالت پرونده", + "File name": "", "File not found.": "پرونده یافت نشد.", "File removed successfully.": "پرونده با موفقیت حذف شد.", "File size should not exceed {{maxSize}} MB.": "حجم پرونده نبایستی از {{maxSize}} MB بیشتر باشد.", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "دکمه جدید", "New Chat": "گپ جدید", + "New File": "", "New Folder": "پوشه جدید", "New Function": "تابع جدید", "New Group": "", diff --git a/src/lib/i18n/locales/fi-FI/translation.json b/src/lib/i18n/locales/fi-FI/translation.json index ee858d10a6..8045ee5dc7 100644 --- a/src/lib/i18n/locales/fi-FI/translation.json +++ b/src/lib/i18n/locales/fi-FI/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "{{COUNT}} riviä", "{{COUNT}} Sources": "{{COUNT}} lähdettä", "{{COUNT}} words": "{{COUNT}} sanaa", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "{{model}} lataus peruttu", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "Tiedoston konteksti", "File deleted successfully.": "Tiedosto poistettiin onnistuneesti.", "File Mode": "Tiedostotila", + "File name": "", "File not found.": "Tiedostoa ei löytynyt.", "File removed successfully.": "Tiedosto poistettu onnistuneesti.", "File size should not exceed {{maxSize}} MB.": "Tiedoston koko ei saa ylittää {{maxSize}} MB.", @@ -1269,6 +1265,7 @@ "New": "Uusi", "New Button": "Uusi painike", "New Chat": "Uusi keskustelu", + "New File": "", "New Folder": "Uusi kansio", "New Function": "Uusi toiminto", "New Group": "", diff --git a/src/lib/i18n/locales/fr-CA/translation.json b/src/lib/i18n/locales/fr-CA/translation.json index 582d534af1..9ba4bcb2a8 100644 --- a/src/lib/i18n/locales/fr-CA/translation.json +++ b/src/lib/i18n/locales/fr-CA/translation.json @@ -19,21 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_many": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_many": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_many": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_many": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_many": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -882,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Mode fichier", + "File name": "", "File not found.": "Fichier introuvable.", "File removed successfully.": "Fichier supprimé avec succès.", "File size should not exceed {{maxSize}} MB.": "La taille du fichier ne doit pas dépasser {{maxSize}} Mo.", @@ -1274,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Nouvelle conversation", + "New File": "", "New Folder": "Nouveau dossier", "New Function": "Nouvelle fonction", "New Group": "", diff --git a/src/lib/i18n/locales/fr-FR/translation.json b/src/lib/i18n/locales/fr-FR/translation.json index 888e9f1803..e65117a218 100644 --- a/src/lib/i18n/locales/fr-FR/translation.json +++ b/src/lib/i18n/locales/fr-FR/translation.json @@ -19,21 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "{{COUNT}} Sources", "{{COUNT}} words": "{{COUNT}} mots", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_many": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_many": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_many": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_many": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_many": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} à {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "Le téléchargement de {{model}} a été annulé", "{{modelName}} profile image": "", @@ -882,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Mode fichier", + "File name": "", "File not found.": "Fichier introuvable.", "File removed successfully.": "Fichier supprimé avec succès.", "File size should not exceed {{maxSize}} MB.": "La taille du fichier ne doit pas dépasser {{maxSize}} Mo.", @@ -1274,6 +1265,7 @@ "New": "", "New Button": "Nouveau bouton", "New Chat": "Nouvelle conversation", + "New File": "", "New Folder": "Nouveau dossier", "New Function": "Nouvelle fonction", "New Group": "", diff --git a/src/lib/i18n/locales/gl-ES/translation.json b/src/lib/i18n/locales/gl-ES/translation.json index 75c4d16a20..bc6a571cb4 100644 --- a/src/lib/i18n/locales/gl-ES/translation.json +++ b/src/lib/i18n/locales/gl-ES/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Modo de Arquivo", + "File name": "", "File not found.": "Arquivo non encontrado.", "File removed successfully.": "Arquivo eliminado correctamente.", "File size should not exceed {{maxSize}} MB.": "Tamaño do Arquivo non debe exceder {{maxSize}} MB.", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Novo Chat", + "New File": "", "New Folder": "Nova carpeta", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/he-IL/translation.json b/src/lib/i18n/locales/he-IL/translation.json index ad81e1600a..951776c711 100644 --- a/src/lib/i18n/locales/he-IL/translation.json +++ b/src/lib/i18n/locales/he-IL/translation.json @@ -19,21 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_two": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_two": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_two": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_two": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_two": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -882,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "מצב קובץ", + "File name": "", "File not found.": "הקובץ לא נמצא.", "File removed successfully.": "", "File size should not exceed {{maxSize}} MB.": "", @@ -1274,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "צ'אט חדש", + "New File": "", "New Folder": "תיקייה חדשה", "New Function": "פונקציה חדשה", "New Group": "", diff --git a/src/lib/i18n/locales/hi-IN/translation.json b/src/lib/i18n/locales/hi-IN/translation.json index a86a815823..eb6cd3232d 100644 --- a/src/lib/i18n/locales/hi-IN/translation.json +++ b/src/lib/i18n/locales/hi-IN/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "फ़ाइल मोड", + "File name": "", "File not found.": "फ़ाइल प्राप्त नहीं हुई।", "File removed successfully.": "", "File size should not exceed {{maxSize}} MB.": "", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "नई चैट", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/hr-HR/translation.json b/src/lib/i18n/locales/hr-HR/translation.json index 590eff1175..9673489040 100644 --- a/src/lib/i18n/locales/hr-HR/translation.json +++ b/src/lib/i18n/locales/hr-HR/translation.json @@ -19,21 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_few": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_few": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_few": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_few": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_few": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -882,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Način datoteke", + "File name": "", "File not found.": "Datoteka nije pronađena.", "File removed successfully.": "", "File size should not exceed {{maxSize}} MB.": "", @@ -1274,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Novi razgovor", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/hu-HU/translation.json b/src/lib/i18n/locales/hu-HU/translation.json index 559b806b0d..253529b45c 100644 --- a/src/lib/i18n/locales/hu-HU/translation.json +++ b/src/lib/i18n/locales/hu-HU/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Fájl mód", + "File name": "", "File not found.": "Fájl nem található.", "File removed successfully.": "Fájl sikeresen eltávolítva.", "File size should not exceed {{maxSize}} MB.": "A fájl mérete nem haladhatja meg a {{maxSize}} MB-ot.", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Új beszélgetés", + "New File": "", "New Folder": "Új mappa", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/id-ID/translation.json b/src/lib/i18n/locales/id-ID/translation.json index 7d7a069299..f7748f5f3c 100644 --- a/src/lib/i18n/locales/id-ID/translation.json +++ b/src/lib/i18n/locales/id-ID/translation.json @@ -19,11 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -872,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Mode File", + "File name": "", "File not found.": "File tidak ditemukan.", "File removed successfully.": "", "File size should not exceed {{maxSize}} MB.": "", @@ -1264,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Obrolan Baru", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/ie-GA/translation.json b/src/lib/i18n/locales/ie-GA/translation.json index e65e838c9e..34e45eb98b 100644 --- a/src/lib/i18n/locales/ie-GA/translation.json +++ b/src/lib/i18n/locales/ie-GA/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "{{COUNT}} Sraitheanna", "{{COUNT}} Sources": "{{COUNT}} Foinsí", "{{COUNT}} words": "{{COUNT}} focail", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} ag {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "Tá íoslódáil {{model}} curtha ar ceal", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "Comhthéacs Comhaid", "File deleted successfully.": "", "File Mode": "Mód Comhad", + "File name": "", "File not found.": "Níor aimsíodh an comhad.", "File removed successfully.": "D'éirigh le baint an chomhaid.", "File size should not exceed {{maxSize}} MB.": "Níor chóir go mbeadh méid an chomhaid níos mó ná {{maxSize}} MB.", @@ -1269,6 +1265,7 @@ "New": "Nua", "New Button": "Cnaipe Nua", "New Chat": "Comhrá Nua", + "New File": "", "New Folder": "Fillteán Nua", "New Function": "Feidhm Nua", "New Group": "", diff --git a/src/lib/i18n/locales/it-IT/translation.json b/src/lib/i18n/locales/it-IT/translation.json index 73844e4c4b..417c268397 100644 --- a/src/lib/i18n/locales/it-IT/translation.json +++ b/src/lib/i18n/locales/it-IT/translation.json @@ -19,21 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_many": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_many": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_many": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_many": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_many": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -882,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Modalità File", + "File name": "", "File not found.": "File non trovato.", "File removed successfully.": "File rimosso con successo.", "File size should not exceed {{maxSize}} MB.": "La dimensione del file non deve superare {{maxSize}} MB.", @@ -1274,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Nuova chat", + "New File": "", "New Folder": "Nuova cartella", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/ja-JP/translation.json b/src/lib/i18n/locales/ja-JP/translation.json index e0ef743b22..9c0762db97 100644 --- a/src/lib/i18n/locales/ja-JP/translation.json +++ b/src/lib/i18n/locales/ja-JP/translation.json @@ -19,11 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "{{COUNT}} 件のソース", "{{COUNT}} words": "{{COUNT}} 語", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "{{model}} のダウンロードがキャンセルされました", "{{modelName}} profile image": "", @@ -872,6 +872,7 @@ "File Context": "ファイルコンテキスト", "File deleted successfully.": "", "File Mode": "ファイルモード", + "File name": "", "File not found.": "ファイルが見つかりません。", "File removed successfully.": "ファイル削除が成功しました。", "File size should not exceed {{maxSize}} MB.": "ファイルサイズの最大値は {{maxSize}} MB です。", @@ -1264,6 +1265,7 @@ "New": "", "New Button": "新しいボタン", "New Chat": "新しいチャット", + "New File": "", "New Folder": "新しいフォルダ", "New Function": "新しいFunction", "New Group": "", diff --git a/src/lib/i18n/locales/ka-GE/translation.json b/src/lib/i18n/locales/ka-GE/translation.json index f4dfb248c4..c8de443aff 100644 --- a/src/lib/i18n/locales/ka-GE/translation.json +++ b/src/lib/i18n/locales/ka-GE/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "{{COUNT}} წყარო", "{{COUNT}} words": "{{COUNT}} სიტყვა", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} დრო {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "{{model}} მოდელი გაუქმდა", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "ფაილის რეჟიმი", + "File name": "", "File not found.": "ფაილი ნაპოვნი არაა.", "File removed successfully.": "ფაილი წარმატებით წაიშალა.", "File size should not exceed {{maxSize}} MB.": "ფაილის ზომა {{maxSize}} მბ-ს არ უნდა აღემატებოდეს.", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "ახალი ღილაკი", "New Chat": "ახალი მიმოწერა", + "New File": "", "New Folder": "ახალი საქაღალდე", "New Function": "ახალი ფუნქცია", "New Group": "", diff --git a/src/lib/i18n/locales/kab-DZ/translation.json b/src/lib/i18n/locales/kab-DZ/translation.json index c75b042fb6..ad1b861b0c 100644 --- a/src/lib/i18n/locales/kab-DZ/translation.json +++ b/src/lib/i18n/locales/kab-DZ/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "{{COUNT}} n yiɣbula", "{{COUNT}} words": "{{COUNT}} n wawalen", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} ɣef {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "Azdam n {{model}} yettusemmet", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Askar n ufaylu", + "File name": "", "File not found.": "Ur yettwaf ara ufaylu-nni.", "File removed successfully.": "Afaylu yettwakkes akken iwata.", "File size should not exceed {{maxSize}} MB.": "Tiddi n ufaylu ur ilaq ara ad tɛeddi nnig {{maxSize}} MB.", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "Taqeffalt tamaynut", "New Chat": "Asqerdec amaynut", + "New File": "", "New Folder": "Akaram amaynut", "New Function": "Tasɣent tamaynut", "New Group": "", diff --git a/src/lib/i18n/locales/ko-KR/translation.json b/src/lib/i18n/locales/ko-KR/translation.json index 94fd827add..4e5c4dad55 100644 --- a/src/lib/i18n/locales/ko-KR/translation.json +++ b/src/lib/i18n/locales/ko-KR/translation.json @@ -19,11 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "{{COUNT}}개의 소스", "{{COUNT}} words": "{{COUNT}} 단어", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "{{model}} 다운로드가 취소되었습니다.", "{{modelName}} profile image": "", @@ -872,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "파일 모드", + "File name": "", "File not found.": "파일을 찾을 수 없습니다.", "File removed successfully.": "파일이 성공적으로 삭제되었습니다", "File size should not exceed {{maxSize}} MB.": "파일 사이즈가 {{maxSize}} MB를 초과하면 안됩니다.", @@ -1264,6 +1265,7 @@ "New": "", "New Button": "새 버튼", "New Chat": "새 채팅", + "New File": "", "New Folder": "새 폴더", "New Function": "새 함수", "New Group": "", diff --git a/src/lib/i18n/locales/lt-LT/translation.json b/src/lib/i18n/locales/lt-LT/translation.json index 6763e00d83..297a777d15 100644 --- a/src/lib/i18n/locales/lt-LT/translation.json +++ b/src/lib/i18n/locales/lt-LT/translation.json @@ -19,26 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_few": "", - "{{COUNT}}d_time_ago_many": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_few": "", - "{{COUNT}}h_time_ago_many": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_few": "", - "{{COUNT}}m_time_ago_many": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_few": "", - "{{COUNT}}w_time_ago_many": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_few": "", - "{{COUNT}}y_time_ago_many": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -887,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Rinkmenų rėžimas", + "File name": "", "File not found.": "Failas nerastas.", "File removed successfully.": "", "File size should not exceed {{maxSize}} MB.": "", @@ -1279,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Naujas pokalbis", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/lv-LV/translation.json b/src/lib/i18n/locales/lv-LV/translation.json index 3821bf0457..f731b461d8 100644 --- a/src/lib/i18n/locales/lv-LV/translation.json +++ b/src/lib/i18n/locales/lv-LV/translation.json @@ -19,21 +19,11 @@ "{{COUNT}} Rows": "{{COUNT}} rindas", "{{COUNT}} Sources": "{{COUNT}} avoti", "{{COUNT}} words": "{{COUNT}} vārdi", - "{{COUNT}}d_time_ago_zero": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_zero": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_zero": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_zero": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_zero": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} plkst. {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "{{model}} lejupielāde ir atcelta", "{{modelName}} profile image": "", @@ -882,6 +872,7 @@ "File Context": "Faila konteksts", "File deleted successfully.": "", "File Mode": "Faila režīms", + "File name": "", "File not found.": "Fails nav atrasts.", "File removed successfully.": "Fails veiksmīgi noņemts.", "File size should not exceed {{maxSize}} MB.": "Faila izmērs nedrīkst pārsniegt {{maxSize}} MB.", @@ -1274,6 +1265,7 @@ "New": "Jauns", "New Button": "Jauna poga", "New Chat": "Jauna tērzēšana", + "New File": "", "New Folder": "Jauna mape", "New Function": "Jauna funkcija", "New Group": "", diff --git a/src/lib/i18n/locales/ms-MY/translation.json b/src/lib/i18n/locales/ms-MY/translation.json index 66d681cb1b..de8e7bc3b7 100644 --- a/src/lib/i18n/locales/ms-MY/translation.json +++ b/src/lib/i18n/locales/ms-MY/translation.json @@ -19,11 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -872,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Mod Fail", + "File name": "", "File not found.": "Fail tidak dijumpai", "File removed successfully.": "", "File size should not exceed {{maxSize}} MB.": "", @@ -1264,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Perbualan Baru", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/nb-NO/translation.json b/src/lib/i18n/locales/nb-NO/translation.json index 6ed2c5422b..a2198c79dd 100644 --- a/src/lib/i18n/locales/nb-NO/translation.json +++ b/src/lib/i18n/locales/nb-NO/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Filmodus", + "File name": "", "File not found.": "Finner ikke filen.", "File removed successfully.": "Filen er fjernet.", "File size should not exceed {{maxSize}} MB.": "Filstørrelser kan ikke være på mer enn {{maxSize} MB", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Ny chat", + "New File": "", "New Folder": "Ny mappe", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/nl-NL/translation.json b/src/lib/i18n/locales/nl-NL/translation.json index 51cee76909..c424651b9b 100644 --- a/src/lib/i18n/locales/nl-NL/translation.json +++ b/src/lib/i18n/locales/nl-NL/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "{{COUNT}} woorden", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Bestandsmodus", + "File name": "", "File not found.": "Bestand niet gevonden.", "File removed successfully.": "Bestand succesvol verwijderd.", "File size should not exceed {{maxSize}} MB.": "Bestandsgrootte mag niet groter zijn dan {{maxSize}} MB.", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Nieuwe Chat", + "New File": "", "New Folder": "Nieuwe map", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/pa-IN/translation.json b/src/lib/i18n/locales/pa-IN/translation.json index 1e9b06604e..9b60914b86 100644 --- a/src/lib/i18n/locales/pa-IN/translation.json +++ b/src/lib/i18n/locales/pa-IN/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "ਫਾਈਲ ਮੋਡ", + "File name": "", "File not found.": "ਫਾਈਲ ਨਹੀਂ ਮਿਲੀ।", "File removed successfully.": "", "File size should not exceed {{maxSize}} MB.": "", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "ਨਵੀਂ ਗੱਲਬਾਤ", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/pl-PL/translation.json b/src/lib/i18n/locales/pl-PL/translation.json index 179f8919bb..dfbf4b04f5 100644 --- a/src/lib/i18n/locales/pl-PL/translation.json +++ b/src/lib/i18n/locales/pl-PL/translation.json @@ -19,26 +19,11 @@ "{{COUNT}} Rows": "{{COUNT}} wierszy", "{{COUNT}} Sources": "{{COUNT}} źródeł", "{{COUNT}} words": "{{COUNT}} słów", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_few": "", - "{{COUNT}}d_time_ago_many": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_few": "", - "{{COUNT}}h_time_ago_many": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_few": "", - "{{COUNT}}m_time_ago_many": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_few": "", - "{{COUNT}}w_time_ago_many": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_few": "", - "{{COUNT}}y_time_ago_many": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} o {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "Pobieranie modelu {{model}} zostało anulowane", "{{modelName}} profile image": "", @@ -887,6 +872,7 @@ "File Context": "Kontekst pliku", "File deleted successfully.": "", "File Mode": "Tryb pliku", + "File name": "", "File not found.": "Plik nie znaleziony.", "File removed successfully.": "Plik usunięty pomyślnie.", "File size should not exceed {{maxSize}} MB.": "Rozmiar pliku nie może przekraczać {{maxSize}} MB.", @@ -1279,6 +1265,7 @@ "New": "Nowy", "New Button": "Nowy przycisk", "New Chat": "Nowy czat", + "New File": "", "New Folder": "Nowy folder", "New Function": "Nowa funkcja", "New Group": "", diff --git a/src/lib/i18n/locales/pt-BR/translation.json b/src/lib/i18n/locales/pt-BR/translation.json index 7dc6dbfe08..c852f68bf4 100644 --- a/src/lib/i18n/locales/pt-BR/translation.json +++ b/src/lib/i18n/locales/pt-BR/translation.json @@ -19,21 +19,11 @@ "{{COUNT}} Rows": "{{COUNT}} Linhas", "{{COUNT}} Sources": "{{COUNT}} Origens", "{{COUNT}} words": "{{COUNT}} palavras", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_many": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_many": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_many": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_many": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_many": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} às {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "O download do {{model}} foi cancelado", "{{modelName}} profile image": "Imagem de perfil de {{modelName}}", @@ -882,6 +872,7 @@ "File Context": "Contexto do arquivo", "File deleted successfully.": "Arquivo excluído com sucesso.", "File Mode": "Modo de Arquivo", + "File name": "", "File not found.": "Arquivo não encontrado.", "File removed successfully.": "Arquivo removido com sucesso.", "File size should not exceed {{maxSize}} MB.": "Arquivo não pode exceder {{maxSize}} MB.", @@ -1274,6 +1265,7 @@ "New": "Novo", "New Button": "Novo Botão", "New Chat": "Novo Chat", + "New File": "", "New Folder": "Nova Pasta", "New Function": "Nova Função", "New Group": "Novo Grupo", diff --git a/src/lib/i18n/locales/pt-PT/translation.json b/src/lib/i18n/locales/pt-PT/translation.json index f971400ada..2845980aa3 100644 --- a/src/lib/i18n/locales/pt-PT/translation.json +++ b/src/lib/i18n/locales/pt-PT/translation.json @@ -19,21 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_many": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_many": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_many": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_many": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_many": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -882,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Modo de Ficheiro", + "File name": "", "File not found.": "Ficheiro não encontrado.", "File removed successfully.": "", "File size should not exceed {{maxSize}} MB.": "", @@ -1274,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Nova Conversa", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/ro-RO/translation.json b/src/lib/i18n/locales/ro-RO/translation.json index c245111ca8..703248b36c 100644 --- a/src/lib/i18n/locales/ro-RO/translation.json +++ b/src/lib/i18n/locales/ro-RO/translation.json @@ -19,21 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_few": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_few": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_few": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_few": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_few": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -882,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Mod Fișier", + "File name": "", "File not found.": "Fișierul nu a fost găsit.", "File removed successfully.": "Fișierul a fost eliminat cu succes.", "File size should not exceed {{maxSize}} MB.": "Dimensiunea fișierului nu ar trebui să depășească {{maxSize}} MB.", @@ -1274,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Conversație Nouă", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/ru-RU/translation.json b/src/lib/i18n/locales/ru-RU/translation.json index 1ed3ca627d..cab3b47628 100644 --- a/src/lib/i18n/locales/ru-RU/translation.json +++ b/src/lib/i18n/locales/ru-RU/translation.json @@ -19,26 +19,11 @@ "{{COUNT}} Rows": "{{COUNT}} Строк", "{{COUNT}} Sources": "{{COUNT}} Источников", "{{COUNT}} words": "{{COUNT}} слов", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_few": "", - "{{COUNT}}d_time_ago_many": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_few": "", - "{{COUNT}}h_time_ago_many": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_few": "", - "{{COUNT}}m_time_ago_many": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_few": "", - "{{COUNT}}w_time_ago_many": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_few": "", - "{{COUNT}}y_time_ago_many": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} в {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "{{model}} загрузка была отменена", "{{modelName}} profile image": "", @@ -887,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Режим файла", + "File name": "", "File not found.": "Файл не найден.", "File removed successfully.": "Файл успешно удален.", "File size should not exceed {{maxSize}} MB.": "Размер файла не должен превышать {{maxSize}} МБ.", @@ -1279,6 +1265,7 @@ "New": "", "New Button": "Новая кнопка", "New Chat": "Новый чат", + "New File": "", "New Folder": "Новая папка", "New Function": "Новая функция", "New Group": "", diff --git a/src/lib/i18n/locales/sk-SK/translation.json b/src/lib/i18n/locales/sk-SK/translation.json index 09dbbe44ce..536aeb8da2 100644 --- a/src/lib/i18n/locales/sk-SK/translation.json +++ b/src/lib/i18n/locales/sk-SK/translation.json @@ -19,26 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_few": "", - "{{COUNT}}d_time_ago_many": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_few": "", - "{{COUNT}}h_time_ago_many": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_few": "", - "{{COUNT}}m_time_ago_many": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_few": "", - "{{COUNT}}w_time_ago_many": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_few": "", - "{{COUNT}}y_time_ago_many": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -887,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Režim súboru", + "File name": "", "File not found.": "Súbor nenájdený.", "File removed successfully.": "Súbor bol úspešne odstránený.", "File size should not exceed {{maxSize}} MB.": "Veľkosť súboru by nemala presiahnuť {{maxSize}} MB.", @@ -1279,6 +1265,7 @@ "New": "Nový", "New Button": "", "New Chat": "Nový chat", + "New File": "", "New Folder": "Nový priečinok", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/sr-RS/translation.json b/src/lib/i18n/locales/sr-RS/translation.json index c91aace39e..f57ff06911 100644 --- a/src/lib/i18n/locales/sr-RS/translation.json +++ b/src/lib/i18n/locales/sr-RS/translation.json @@ -19,21 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_few": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_few": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_few": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_few": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_few": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -882,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Режим датотеке", + "File name": "", "File not found.": "Датотека није пронађена.", "File removed successfully.": "", "File size should not exceed {{maxSize}} MB.": "", @@ -1274,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Ново ћаскање", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/sv-SE/translation.json b/src/lib/i18n/locales/sv-SE/translation.json index 0af63a7bfd..b9b0e772a1 100644 --- a/src/lib/i18n/locales/sv-SE/translation.json +++ b/src/lib/i18n/locales/sv-SE/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "{{COUNT}} källor", "{{COUNT}} words": "{{COUNT}} ord", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} kl {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "{{model}} nedladdning har avbrutits", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Fil-läge", + "File name": "", "File not found.": "Fil hittades inte.", "File removed successfully.": "Filen har tagits bort.", "File size should not exceed {{maxSize}} MB.": "Filstorleken får inte överstiga {{maxSize}} MB.", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "Ny knapp", "New Chat": "Ny chatt", + "New File": "", "New Folder": "Ny mapp", "New Function": "Ny funktion", "New Group": "", diff --git a/src/lib/i18n/locales/th-TH/translation.json b/src/lib/i18n/locales/th-TH/translation.json index 8c69049ac4..59b154dc09 100644 --- a/src/lib/i18n/locales/th-TH/translation.json +++ b/src/lib/i18n/locales/th-TH/translation.json @@ -19,11 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "{{COUNT}} แหล่งที่มา", "{{COUNT}} words": "{{COUNT}} คำ", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} เมื่อ {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "การดาวน์โหลด {{model}} ถูกยกเลิกแล้ว", "{{modelName}} profile image": "", @@ -872,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "โหมดไฟล์", + "File name": "", "File not found.": "ไม่พบไฟล์", "File removed successfully.": "ลบไฟล์สำเร็จแล้ว", "File size should not exceed {{maxSize}} MB.": "ขนาดไฟล์ไม่ควรเกิน {{maxSize}} MB", @@ -1264,6 +1265,7 @@ "New": "", "New Button": "ปุ่มใหม่", "New Chat": "แชทใหม่", + "New File": "", "New Folder": "โฟลเดอร์ใหม่", "New Function": "ฟังก์ชันใหม่", "New Group": "", diff --git a/src/lib/i18n/locales/tk-TM/translation.json b/src/lib/i18n/locales/tk-TM/translation.json index 2bbe171fe0..db5f91c985 100644 --- a/src/lib/i18n/locales/tk-TM/translation.json +++ b/src/lib/i18n/locales/tk-TM/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "", + "File name": "", "File not found.": "", "File removed successfully.": "", "File size should not exceed {{maxSize}} MB.": "", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/tr-TR/translation.json b/src/lib/i18n/locales/tr-TR/translation.json index 770b5980eb..0613a62bfa 100644 --- a/src/lib/i18n/locales/tr-TR/translation.json +++ b/src/lib/i18n/locales/tr-TR/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Dosya Modu", + "File name": "", "File not found.": "Dosya bulunamadı.", "File removed successfully.": "Dosya başarıyla kaldırıldı.", "File size should not exceed {{maxSize}} MB.": "Dosya boyutu {{maxSize}} MB'yi aşmamalıdır.", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Yeni Sohbet", + "New File": "", "New Folder": "Yeni Klasör", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/ug-CN/translation.json b/src/lib/i18n/locales/ug-CN/translation.json index 2120a17908..4e8c798d1d 100644 --- a/src/lib/i18n/locales/ug-CN/translation.json +++ b/src/lib/i18n/locales/ug-CN/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "ھۆججەت ھالىتى", + "File name": "", "File not found.": "ھۆججەت تېپىلمىدى.", "File removed successfully.": "ھۆججەت مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى.", "File size should not exceed {{maxSize}} MB.": "ھۆججەت چوڭلۇقى {{maxSize}} MB تىن ئېشىپ كەتمىسۇن.", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "يېڭى سۆھبەت", + "New File": "", "New Folder": "يېڭى قىسقۇچ", "New Function": "يېڭى فۇنكسىيە", "New Group": "", diff --git a/src/lib/i18n/locales/uk-UA/translation.json b/src/lib/i18n/locales/uk-UA/translation.json index c532475989..a77c645680 100644 --- a/src/lib/i18n/locales/uk-UA/translation.json +++ b/src/lib/i18n/locales/uk-UA/translation.json @@ -19,26 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_few": "", - "{{COUNT}}d_time_ago_many": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_few": "", - "{{COUNT}}h_time_ago_many": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_few": "", - "{{COUNT}}m_time_ago_many": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_few": "", - "{{COUNT}}w_time_ago_many": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_few": "", - "{{COUNT}}y_time_ago_many": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -887,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Файловий режим", + "File name": "", "File not found.": "Файл не знайдено.", "File removed successfully.": "Файл успішно видалено.", "File size should not exceed {{maxSize}} MB.": "Розмір файлу не повинен перевищувати {{maxSize}} МБ.", @@ -1279,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Новий чат", + "New File": "", "New Folder": "Нова папка", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/ur-PK/translation.json b/src/lib/i18n/locales/ur-PK/translation.json index 32d9110d54..aed61e3d7e 100644 --- a/src/lib/i18n/locales/ur-PK/translation.json +++ b/src/lib/i18n/locales/ur-PK/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "فائل موڈ", + "File name": "", "File not found.": "فائل نہیں ملی", "File removed successfully.": "فائل کامیابی سے ہٹا دی گئی", "File size should not exceed {{maxSize}} MB.": "فائل کا سائز {{maxSize}} ایم بی سے زیادہ نہیں ہونا چاہیے", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "نئی بات چیت", + "New File": "", "New Folder": "", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json index bdf78bacc7..7bc2efa4d3 100644 --- a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json +++ b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Файл режими", + "File name": "", "File not found.": "Файл топилмади.", "File removed successfully.": "Файл муваффақиятли олиб ташланди.", "File size should not exceed {{maxSize}} MB.": "Файл ҳажми {{махСизе}} МБ дан ошмаслиги керак.", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Янги чат", + "New File": "", "New Folder": "Янги жилд", "New Function": "Янги функсия", "New Group": "", diff --git a/src/lib/i18n/locales/uz-Latn-Uz/translation.json b/src/lib/i18n/locales/uz-Latn-Uz/translation.json index a9f43f14d8..ed01933937 100644 --- a/src/lib/i18n/locales/uz-Latn-Uz/translation.json +++ b/src/lib/i18n/locales/uz-Latn-Uz/translation.json @@ -19,16 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_one": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_one": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_one": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_one": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_one": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -877,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Fayl rejimi", + "File name": "", "File not found.": "Fayl topilmadi.", "File removed successfully.": "Fayl muvaffaqiyatli olib tashlandi.", "File size should not exceed {{maxSize}} MB.": "Fayl hajmi {{maxSize}} MB dan oshmasligi kerak.", @@ -1269,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Yangi chat", + "New File": "", "New Folder": "Yangi jild", "New Function": "Yangi funksiya", "New Group": "", diff --git a/src/lib/i18n/locales/vi-VN/translation.json b/src/lib/i18n/locales/vi-VN/translation.json index 40d382db34..9addded018 100644 --- a/src/lib/i18n/locales/vi-VN/translation.json +++ b/src/lib/i18n/locales/vi-VN/translation.json @@ -19,11 +19,11 @@ "{{COUNT}} Rows": "", "{{COUNT}} Sources": "", "{{COUNT}} words": "", - "{{COUNT}}d_time_ago_other": "", - "{{COUNT}}h_time_ago_other": "", - "{{COUNT}}m_time_ago_other": "", - "{{COUNT}}w_time_ago_other": "", - "{{COUNT}}y_time_ago_other": "", + "{{COUNT}}d_time_ago": "", + "{{COUNT}}h_time_ago": "", + "{{COUNT}}m_time_ago": "", + "{{COUNT}}w_time_ago": "", + "{{COUNT}}y_time_ago": "", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "", "{{model}} download has been canceled": "", "{{modelName}} profile image": "", @@ -872,6 +872,7 @@ "File Context": "", "File deleted successfully.": "", "File Mode": "Chế độ Tệp văn bản", + "File name": "", "File not found.": "Không tìm thấy tệp.", "File removed successfully.": "Xóa tệp thành công.", "File size should not exceed {{maxSize}} MB.": "Kích thước tệp không được vượt quá {{maxSize}} MB.", @@ -1264,6 +1265,7 @@ "New": "", "New Button": "", "New Chat": "Tạo chat mới", + "New File": "", "New Folder": "Thư mục Mới", "New Function": "", "New Group": "", diff --git a/src/lib/i18n/locales/zh-CN/translation.json b/src/lib/i18n/locales/zh-CN/translation.json index 833b9eadd7..04f6678546 100644 --- a/src/lib/i18n/locales/zh-CN/translation.json +++ b/src/lib/i18n/locales/zh-CN/translation.json @@ -19,11 +19,11 @@ "{{COUNT}} Rows": "{{COUNT}} 行", "{{COUNT}} Sources": "{{COUNT}} 个引用来源", "{{COUNT}} words": "{{COUNT}} 个字", - "{{COUNT}}d_time_ago_other": "{{COUNT}}天前", - "{{COUNT}}h_time_ago_other": "{{COUNT}}小时前", - "{{COUNT}}m_time_ago_other": "{{COUNT}}分钟前", - "{{COUNT}}w_time_ago_other": "{{COUNT}}周前", - "{{COUNT}}y_time_ago_other": "{{COUNT}}年前", + "{{COUNT}}d_time_ago": "{{COUNT}}天前", + "{{COUNT}}h_time_ago": "{{COUNT}}小时前", + "{{COUNT}}m_time_ago": "{{COUNT}}分钟前", + "{{COUNT}}w_time_ago": "{{COUNT}}周前", + "{{COUNT}}y_time_ago": "{{COUNT}}年前", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "已取消模型 {{model}} 的下载", "{{modelName}} profile image": "模型 “{{modelName}}” 的头像", @@ -872,6 +872,7 @@ "File Context": "文件上下文", "File deleted successfully.": "文件已成功删除。", "File Mode": "文件模式", + "File name": "", "File not found.": "文件未找到。", "File removed successfully.": "文件成功删除", "File size should not exceed {{maxSize}} MB.": "文件大小不应超过 {{maxSize}} MB", @@ -1264,6 +1265,7 @@ "New": "最新", "New Button": "新按钮", "New Chat": "新对话", + "New File": "", "New Folder": "创建分组", "New Function": "新函数", "New Group": "新建权限组", diff --git a/src/lib/i18n/locales/zh-TW/translation.json b/src/lib/i18n/locales/zh-TW/translation.json index 5ba70e24cd..d4618f1630 100644 --- a/src/lib/i18n/locales/zh-TW/translation.json +++ b/src/lib/i18n/locales/zh-TW/translation.json @@ -19,11 +19,11 @@ "{{COUNT}} Rows": "{{COUNT}} 行", "{{COUNT}} Sources": "{{COUNT}} 個來源", "{{COUNT}} words": "{{COUNT}} 個詞", - "{{COUNT}}d_time_ago_other": "{{COUNT}} 天前", - "{{COUNT}}h_time_ago_other": "{{COUNT}} 小時前", - "{{COUNT}}m_time_ago_other": "{{COUNT}} 分鐘前", - "{{COUNT}}w_time_ago_other": "{{COUNT}} 週前", - "{{COUNT}}y_time_ago_other": "{{COUNT}} 年前", + "{{COUNT}}d_time_ago": "{{COUNT}} 天前", + "{{COUNT}}h_time_ago": "{{COUNT}} 小時前", + "{{COUNT}}m_time_ago": "{{COUNT}} 分鐘前", + "{{COUNT}}w_time_ago": "{{COUNT}} 週前", + "{{COUNT}}y_time_ago": "{{COUNT}} 年前", "{{LOCALIZED_DATE}} at {{LOCALIZED_TIME}}": "{{LOCALIZED_DATE}} {{LOCALIZED_TIME}}", "{{model}} download has been canceled": "已取消模型 {{model}} 的下載", "{{modelName}} profile image": "模型「{{modelName}}」的頭像", @@ -872,6 +872,7 @@ "File Context": "檔案上下文", "File deleted successfully.": "檔案已成功刪除。", "File Mode": "檔案模式", + "File name": "", "File not found.": "未找到檔案。", "File removed successfully.": "成功移除檔案。", "File size should not exceed {{maxSize}} MB.": "檔案大小不應超過 {{maxSize}} MB。", @@ -1264,6 +1265,7 @@ "New": "最新", "New Button": "新按鈕", "New Chat": "新增對話", + "New File": "", "New Folder": "新增資料夾", "New Function": "新增函式", "New Group": "新增權限群組",