chore: format

This commit is contained in:
Timothy Jaeryang Baek
2026-03-01 03:05:47 -06:00
parent ed1b959bc6
commit 769ef856bc
61 changed files with 487 additions and 735 deletions
+65 -14
View File
@@ -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}
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" class="size-3.5">
<path stroke-linecap="round" stroke-linejoin="round" d="M2.036 12.322a1.012 1.012 0 0 1 0-.639C3.423 7.51 7.36 4.5 12 4.5c4.638 0 8.573 3.007 9.963 7.178.07.207.07.431 0 .639C20.577 16.49 16.64 19.5 12 19.5c-4.638 0-8.573-3.007-9.963-7.178Z" />
<path stroke-linecap="round" stroke-linejoin="round" d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" />
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.5"
class="size-3.5"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M2.036 12.322a1.012 1.012 0 0 1 0-.639C3.423 7.51 7.36 4.5 12 4.5c4.638 0 8.573 3.007 9.963 7.178.07.207.07.431 0 .639C20.577 16.49 16.64 19.5 12 19.5c-4.638 0-8.573-3.007-9.963-7.178Z"
/>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
/>
</svg>
{:else}
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" class="size-3.5">
<path stroke-linecap="round" stroke-linejoin="round" d="M17.25 6.75 22.5 12l-5.25 5.25m-10.5 0L1.5 12l5.25-5.25m7.5-3-4.5 16.5" />
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.5"
class="size-3.5"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M17.25 6.75 22.5 12l-5.25 5.25m-10.5 0L1.5 12l5.25-5.25m7.5-3-4.5 16.5"
/>
</svg>
{/if}
</button>
@@ -487,8 +511,15 @@
on:click={() => filePreviewRef?.cancelEdit()}
aria-label={$i18n.t('Cancel')}
>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="size-3.5">
<path d="M6.28 5.22a.75.75 0 0 0-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 1 0 1.06 1.06L10 11.06l3.72 3.72a.75.75 0 1 0 1.06-1.06L11.06 10l3.72-3.72a.75.75 0 0 0-1.06-1.06L10 8.94 6.28 5.22Z" />
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
class="size-3.5"
>
<path
d="M6.28 5.22a.75.75 0 0 0-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 1 0 1.06 1.06L10 11.06l3.72 3.72a.75.75 0 1 0 1.06-1.06L11.06 10l3.72-3.72a.75.75 0 0 0-1.06-1.06L10 8.94 6.28 5.22Z"
/>
</svg>
</button>
</Tooltip>
@@ -502,8 +533,17 @@
{#if saving}
<Spinner className="size-3.5" />
{:else}
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="size-3.5">
<path fill-rule="evenodd" d="M16.704 4.153a.75.75 0 0 1 .143 1.052l-8 10.5a.75.75 0 0 1-1.127.075l-4.5-4.5a.75.75 0 0 1 1.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 0 1 1.05-.143Z" clip-rule="evenodd" />
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
class="size-3.5"
>
<path
fill-rule="evenodd"
d="M16.704 4.153a.75.75 0 0 1 .143 1.052l-8 10.5a.75.75 0 0 1-1.127.075l-4.5-4.5a.75.75 0 0 1 1.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 0 1 1.05-.143Z"
clip-rule="evenodd"
/>
</svg>
{/if}
</button>
@@ -526,8 +566,19 @@
on:click={() => downloadFile(selectedFile)}
aria-label={$i18n.t('Download')}
>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" class="size-3.5">
<path stroke-linecap="round" stroke-linejoin="round" d="M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5M16.5 12 12 16.5m0 0L7.5 12m4.5 4.5V3" />
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1.5"
class="size-3.5"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5M16.5 12 12 16.5m0 0L7.5 12m4.5 4.5V3"
/>
</svg>
</button>
</Tooltip>
@@ -191,18 +191,16 @@
</tbody>
</table>
</div>
{:else if editing}
<textarea
bind:this={editTextarea}
bind:value={editContent}
class="w-full h-full text-xs font-mono text-gray-800 dark:text-gray-200 whitespace-pre break-all leading-relaxed p-3 bg-transparent border-none outline-none resize-none"
spellcheck="false"
/>
{:else}
{#if editing}
<textarea
bind:this={editTextarea}
bind:value={editContent}
class="w-full h-full text-xs font-mono text-gray-800 dark:text-gray-200 whitespace-pre break-all leading-relaxed p-3 bg-transparent border-none outline-none resize-none"
spellcheck="false"
/>
{:else}
<pre
class="text-xs font-mono text-gray-800 dark:text-gray-200 whitespace-pre-wrap break-all leading-relaxed p-3">{fileContent}</pre>
{/if}
<pre
class="text-xs font-mono text-gray-800 dark:text-gray-200 whitespace-pre-wrap break-all leading-relaxed p-3">{fileContent}</pre>
{/if}
{:else}
<div class="text-sm text-gray-400 text-center pt-8">
+7 -30
View File
@@ -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": "",
+7 -30
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -5
View File
@@ -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": "",
+7 -15
View File
@@ -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": "",
+7 -15
View File
@@ -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",
+7 -10
View File
@@ -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": "",
+7 -20
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -10
View File
@@ -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",
+7 -10
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -15
View File
@@ -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",
+7 -10
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -15
View File
@@ -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": "",
+7 -15
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -15
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -15
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -5
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -15
View File
@@ -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": "",
+7 -5
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -5
View File
@@ -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": "",
+7 -20
View File
@@ -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": "",
+7 -15
View File
@@ -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": "",
+7 -5
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -20
View File
@@ -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": "",
+7 -15
View File
@@ -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",
+7 -15
View File
@@ -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": "",
+7 -15
View File
@@ -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": "",
+7 -20
View File
@@ -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": "",
+7 -20
View File
@@ -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": "",
+7 -15
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -5
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
+7 -20
View File
@@ -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": "",
+7 -10
View File
@@ -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": "",
@@ -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": "",
@@ -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": "",
+7 -5
View File
@@ -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": "",
+7 -5
View File
@@ -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": "新建权限组",
+7 -5
View File
@@ -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": "新增權限群組",