Timothy J. Baek vor 6 Monaten
Ursprung
Commit
6b43cc97d2
43 geänderte Dateien mit 84 neuen und 119 gelöschten Zeilen
  1. 0 35
      src/lib/components/chat/MessageInput.svelte
  2. 2 2
      src/lib/i18n/locales/ar-BH/translation.json
  3. 2 2
      src/lib/i18n/locales/bg-BG/translation.json
  4. 2 2
      src/lib/i18n/locales/bn-BD/translation.json
  5. 2 2
      src/lib/i18n/locales/ca-ES/translation.json
  6. 2 2
      src/lib/i18n/locales/ceb-PH/translation.json
  7. 2 2
      src/lib/i18n/locales/de-DE/translation.json
  8. 2 2
      src/lib/i18n/locales/dg-DG/translation.json
  9. 2 2
      src/lib/i18n/locales/en-GB/translation.json
  10. 2 2
      src/lib/i18n/locales/en-US/translation.json
  11. 2 2
      src/lib/i18n/locales/es-ES/translation.json
  12. 2 2
      src/lib/i18n/locales/fa-IR/translation.json
  13. 2 2
      src/lib/i18n/locales/fi-FI/translation.json
  14. 2 2
      src/lib/i18n/locales/fr-CA/translation.json
  15. 2 2
      src/lib/i18n/locales/fr-FR/translation.json
  16. 2 2
      src/lib/i18n/locales/he-IL/translation.json
  17. 2 2
      src/lib/i18n/locales/hi-IN/translation.json
  18. 2 2
      src/lib/i18n/locales/hr-HR/translation.json
  19. 2 2
      src/lib/i18n/locales/id-ID/translation.json
  20. 2 2
      src/lib/i18n/locales/ie-GA/translation.json
  21. 2 2
      src/lib/i18n/locales/it-IT/translation.json
  22. 2 2
      src/lib/i18n/locales/ja-JP/translation.json
  23. 2 2
      src/lib/i18n/locales/ka-GE/translation.json
  24. 2 2
      src/lib/i18n/locales/ko-KR/translation.json
  25. 2 2
      src/lib/i18n/locales/lt-LT/translation.json
  26. 2 2
      src/lib/i18n/locales/ms-MY/translation.json
  27. 2 2
      src/lib/i18n/locales/nb-NO/translation.json
  28. 2 2
      src/lib/i18n/locales/nl-NL/translation.json
  29. 2 2
      src/lib/i18n/locales/pa-IN/translation.json
  30. 2 2
      src/lib/i18n/locales/pl-PL/translation.json
  31. 2 2
      src/lib/i18n/locales/pt-BR/translation.json
  32. 2 2
      src/lib/i18n/locales/pt-PT/translation.json
  33. 2 2
      src/lib/i18n/locales/ro-RO/translation.json
  34. 2 2
      src/lib/i18n/locales/ru-RU/translation.json
  35. 2 2
      src/lib/i18n/locales/sr-RS/translation.json
  36. 2 2
      src/lib/i18n/locales/sv-SE/translation.json
  37. 2 2
      src/lib/i18n/locales/th-TH/translation.json
  38. 2 2
      src/lib/i18n/locales/tk-TW/translation.json
  39. 2 2
      src/lib/i18n/locales/tr-TR/translation.json
  40. 2 2
      src/lib/i18n/locales/uk-UA/translation.json
  41. 2 2
      src/lib/i18n/locales/vi-VN/translation.json
  42. 2 2
      src/lib/i18n/locales/zh-CN/translation.json
  43. 2 2
      src/lib/i18n/locales/zh-TW/translation.json

+ 0 - 35
src/lib/components/chat/MessageInput.svelte

@@ -546,11 +546,9 @@
 										}}
 										}}
 										on:keypress={(e) => {
 										on:keypress={(e) => {
 											e = e.detail.event;
 											e = e.detail.event;
-											console.log(e);
 										}}
 										}}
 										on:keydown={async (e) => {
 										on:keydown={async (e) => {
 											e = e.detail.event;
 											e = e.detail.event;
-											console.log(e);
 
 
 											if (chatInputContainerElement) {
 											if (chatInputContainerElement) {
 												chatInputContainerElement.style.height = '';
 												chatInputContainerElement.style.height = '';
@@ -678,39 +676,6 @@
 									/>
 									/>
 								</div>
 								</div>
 
 
-								<!-- <textarea
-									id="chat-input"
-									bind:this={chatTextAreaElement}
-									class="scrollbar-hidden bg-gray-50 dark:bg-gray-850 dark:text-gray-100 outline-none w-full py-3 px-1 rounded-xl resize-none h-[48px]"
-									placeholder={placeholder ? placeholder : $i18n.t('Send a Message')}
-									bind:value={prompt}
-									on:keypress={(e) => {
-										if (
-											!$mobile ||
-											!(
-												'ontouchstart' in window ||
-												navigator.maxTouchPoints > 0 ||
-												navigator.msMaxTouchPoints > 0
-											)
-										) {
-											// Prevent Enter key from creating a new line
-											if (e.key === 'Enter' && !e.shiftKey) {
-												e.preventDefault();
-											}
-
-											// Submit the prompt when Enter key is pressed
-											if (prompt !== '' && e.key === 'Enter' && !e.shiftKey) {
-												dispatch('submit', prompt);
-											}
-										}
-									}}
-									
-									rows="1"
-									
-									
-									
-								/> -->
-
 								<div class="self-end mb-2 flex space-x-1 mr-1">
 								<div class="self-end mb-2 flex space-x-1 mr-1">
 									{#if !history?.currentId || history.messages[history.currentId]?.done == true}
 									{#if !history?.currentId || history.messages[history.currentId]?.done == true}
 										<Tooltip content={$i18n.t('Record voice')}>
 										<Tooltip content={$i18n.t('Record voice')}>

+ 2 - 2
src/lib/i18n/locales/ar-BH/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "حذف المحادثه",
 	"Delete chat": "حذف المحادثه",
 	"Delete Chat": "حذف المحادثه.",
 	"Delete Chat": "حذف المحادثه.",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "أحذف هذا الرابط",
 	"delete this link": "أحذف هذا الرابط",
@@ -221,9 +222,7 @@
 	"Download": "تحميل",
 	"Download": "تحميل",
 	"Download canceled": "تم اللغاء التحميل",
 	"Download canceled": "تم اللغاء التحميل",
 	"Download Database": "تحميل قاعدة البيانات",
 	"Download Database": "تحميل قاعدة البيانات",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "أسقط أية ملفات هنا لإضافتها إلى المحادثة",
 	"Drop any files here to add to the conversation": "أسقط أية ملفات هنا لإضافتها إلى المحادثة",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. الوحدات الزمنية الصالحة هي 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. الوحدات الزمنية الصالحة هي 's', 'm', 'h'.",
 	"Edit": "تعديل",
 	"Edit": "تعديل",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -695,6 +694,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "شرح شامل",
 	"Thorough explanation": "شرح شامل",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/bg-BG/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Изтриване на чат",
 	"Delete chat": "Изтриване на чат",
 	"Delete Chat": "Изтриване на Чат",
 	"Delete Chat": "Изтриване на Чат",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "Изтриване на този линк",
 	"delete this link": "Изтриване на този линк",
@@ -221,9 +222,7 @@
 	"Download": "Изтегляне отменено",
 	"Download": "Изтегляне отменено",
 	"Download canceled": "Изтегляне отменено",
 	"Download canceled": "Изтегляне отменено",
 	"Download Database": "Сваляне на база данни",
 	"Download Database": "Сваляне на база данни",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Пускане на файлове тук, за да ги добавите в чата",
 	"Drop any files here to add to the conversation": "Пускане на файлове тук, за да ги добавите в чата",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр. '30с','10м'. Валидни единици са 'с', 'м', 'ч'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр. '30с','10м'. Валидни единици са 'с', 'м', 'ч'.",
 	"Edit": "Редактиране",
 	"Edit": "Редактиране",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Това е подробно описание.",
 	"Thorough explanation": "Това е подробно описание.",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/bn-BD/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "চ্যাট মুছে ফেলুন",
 	"Delete chat": "চ্যাট মুছে ফেলুন",
 	"Delete Chat": "চ্যাট মুছে ফেলুন",
 	"Delete Chat": "চ্যাট মুছে ফেলুন",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "এই লিংক মুছে ফেলুন",
 	"delete this link": "এই লিংক মুছে ফেলুন",
@@ -221,9 +222,7 @@
 	"Download": "ডাউনলোড",
 	"Download": "ডাউনলোড",
 	"Download canceled": "ডাউনলোড বাতিল করা হয়েছে",
 	"Download canceled": "ডাউনলোড বাতিল করা হয়েছে",
 	"Download Database": "ডেটাবেজ ডাউনলোড করুন",
 	"Download Database": "ডেটাবেজ ডাউনলোড করুন",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "আলোচনায় যুক্ত করার জন্য যে কোন ফাইল এখানে ড্রপ করুন",
 	"Drop any files here to add to the conversation": "আলোচনায় যুক্ত করার জন্য যে কোন ফাইল এখানে ড্রপ করুন",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "যেমন '30s','10m'. সময়ের অনুমোদিত অনুমোদিত এককগুলি হচ্ছে 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "যেমন '30s','10m'. সময়ের অনুমোদিত অনুমোদিত এককগুলি হচ্ছে 's', 'm', 'h'.",
 	"Edit": "এডিট করুন",
 	"Edit": "এডিট করুন",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "পুঙ্খানুপুঙ্খ ব্যাখ্যা",
 	"Thorough explanation": "পুঙ্খানুপুঙ্খ ব্যাখ্যা",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/ca-ES/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Eliminar xat",
 	"Delete chat": "Eliminar xat",
 	"Delete Chat": "Eliminar xat",
 	"Delete Chat": "Eliminar xat",
 	"Delete chat?": "Eliminar el xat?",
 	"Delete chat?": "Eliminar el xat?",
+	"Delete folder?": "",
 	"Delete function?": "Eliminar funció?",
 	"Delete function?": "Eliminar funció?",
 	"Delete prompt?": "Eliminar indicació?",
 	"Delete prompt?": "Eliminar indicació?",
 	"delete this link": "Eliminar aquest enllaç",
 	"delete this link": "Eliminar aquest enllaç",
@@ -221,9 +222,7 @@
 	"Download": "Descarregar",
 	"Download": "Descarregar",
 	"Download canceled": "Descàrrega cancel·lada",
 	"Download canceled": "Descàrrega cancel·lada",
 	"Download Database": "Descarregar la base de dades",
 	"Download Database": "Descarregar la base de dades",
-	"Drop a chat export file here to import it.": "Arrossega aquí un arxiu de xat exportat per importar-lo.",
 	"Drop any files here to add to the conversation": "Deixa qualsevol arxiu aquí per afegir-lo a la conversa",
 	"Drop any files here to add to the conversation": "Deixa qualsevol arxiu aquí per afegir-lo a la conversa",
-	"Drop Chat Export": "Deixar xat exportat",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ex. '30s','10m'. Les unitats de temps vàlides són 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ex. '30s','10m'. Les unitats de temps vàlides són 's', 'm', 'h'.",
 	"Edit": "Editar",
 	"Edit": "Editar",
 	"Edit Memory": "Editar la memòria",
 	"Edit Memory": "Editar la memòria",
@@ -692,6 +691,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Aquesta és una funció experimental, és possible que no funcioni com s'espera i està subjecta a canvis en qualsevol moment.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Aquesta és una funció experimental, és possible que no funcioni com s'espera i està subjecta a canvis en qualsevol moment.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Aquesta opció eliminarà tots els fitxers existents de la col·lecció i els substituirà per fitxers recentment penjats.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Aquesta opció eliminarà tots els fitxers existents de la col·lecció i els substituirà per fitxers recentment penjats.",
 	"This will delete": "Això eliminarà",
 	"This will delete": "Això eliminarà",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Això restablirà la base de coneixement i sincronitzarà tots els fitxers. Vols continuar?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Això restablirà la base de coneixement i sincronitzarà tots els fitxers. Vols continuar?",
 	"Thorough explanation": "Explicació en detall",
 	"Thorough explanation": "Explicació en detall",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 2 - 2
src/lib/i18n/locales/ceb-PH/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Pagtangtang sa panaghisgot",
 	"Delete chat": "Pagtangtang sa panaghisgot",
 	"Delete Chat": "",
 	"Delete Chat": "",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "",
 	"delete this link": "",
@@ -221,9 +222,7 @@
 	"Download": "",
 	"Download": "",
 	"Download canceled": "",
 	"Download canceled": "",
 	"Download Database": "I-download ang database",
 	"Download Database": "I-download ang database",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Ihulog ang bisan unsang file dinhi aron idugang kini sa panag-istoryahanay",
 	"Drop any files here to add to the conversation": "Ihulog ang bisan unsang file dinhi aron idugang kini sa panag-istoryahanay",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ",
 	"Edit": "",
 	"Edit": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "",
 	"Thorough explanation": "",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/de-DE/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Unterhaltung löschen",
 	"Delete chat": "Unterhaltung löschen",
 	"Delete Chat": "Unterhaltung löschen",
 	"Delete Chat": "Unterhaltung löschen",
 	"Delete chat?": "Unterhaltung löschen?",
 	"Delete chat?": "Unterhaltung löschen?",
+	"Delete folder?": "",
 	"Delete function?": "Funktion löschen?",
 	"Delete function?": "Funktion löschen?",
 	"Delete prompt?": "Prompt löschen?",
 	"Delete prompt?": "Prompt löschen?",
 	"delete this link": "diesen Link löschen",
 	"delete this link": "diesen Link löschen",
@@ -221,9 +222,7 @@
 	"Download": "Exportieren",
 	"Download": "Exportieren",
 	"Download canceled": "Exportierung abgebrochen",
 	"Download canceled": "Exportierung abgebrochen",
 	"Download Database": "Datenbank exportieren",
 	"Download Database": "Datenbank exportieren",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Ziehen Sie beliebige Dateien hierher, um sie der Unterhaltung hinzuzufügen",
 	"Drop any files here to add to the conversation": "Ziehen Sie beliebige Dateien hierher, um sie der Unterhaltung hinzuzufügen",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "z. B. '30s','10m'. Gültige Zeiteinheiten sind 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "z. B. '30s','10m'. Gültige Zeiteinheiten sind 's', 'm', 'h'.",
 	"Edit": "Bearbeiten",
 	"Edit": "Bearbeiten",
 	"Edit Memory": "Erinnerungen bearbeiten",
 	"Edit Memory": "Erinnerungen bearbeiten",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Dies ist eine experimentelle Funktion, sie funktioniert möglicherweise nicht wie erwartet und kann jederzeit geändert werden.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Dies ist eine experimentelle Funktion, sie funktioniert möglicherweise nicht wie erwartet und kann jederzeit geändert werden.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "Dies löscht",
 	"This will delete": "Dies löscht",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Ausführliche Erklärung",
 	"Thorough explanation": "Ausführliche Erklärung",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 2 - 2
src/lib/i18n/locales/dg-DG/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Delete chat",
 	"Delete chat": "Delete chat",
 	"Delete Chat": "",
 	"Delete Chat": "",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "",
 	"delete this link": "",
@@ -221,9 +222,7 @@
 	"Download": "",
 	"Download": "",
 	"Download canceled": "",
 	"Download canceled": "",
 	"Download Database": "Download Database",
 	"Download Database": "Download Database",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Drop files here to add to conversation",
 	"Drop any files here to add to the conversation": "Drop files here to add to conversation",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. Much time units are 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. Much time units are 's', 'm', 'h'.",
 	"Edit": "",
 	"Edit": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -693,6 +692,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "",
 	"Thorough explanation": "",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/en-GB/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "",
 	"Delete chat": "",
 	"Delete Chat": "",
 	"Delete Chat": "",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "",
 	"delete this link": "",
@@ -221,9 +222,7 @@
 	"Download": "",
 	"Download": "",
 	"Download canceled": "",
 	"Download canceled": "",
 	"Download Database": "",
 	"Download Database": "",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "",
 	"Drop any files here to add to the conversation": "",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
 	"Edit": "",
 	"Edit": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "",
 	"Thorough explanation": "",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/en-US/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "",
 	"Delete chat": "",
 	"Delete Chat": "",
 	"Delete Chat": "",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "",
 	"delete this link": "",
@@ -221,9 +222,7 @@
 	"Download": "",
 	"Download": "",
 	"Download canceled": "",
 	"Download canceled": "",
 	"Download Database": "",
 	"Download Database": "",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "",
 	"Drop any files here to add to the conversation": "",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
 	"Edit": "",
 	"Edit": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "",
 	"Thorough explanation": "",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/es-ES/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Borrar chat",
 	"Delete chat": "Borrar chat",
 	"Delete Chat": "Borrar Chat",
 	"Delete Chat": "Borrar Chat",
 	"Delete chat?": "Borrar el chat?",
 	"Delete chat?": "Borrar el chat?",
+	"Delete folder?": "",
 	"Delete function?": "Borrar la función?",
 	"Delete function?": "Borrar la función?",
 	"Delete prompt?": "Borrar el prompt?",
 	"Delete prompt?": "Borrar el prompt?",
 	"delete this link": "Borrar este enlace",
 	"delete this link": "Borrar este enlace",
@@ -221,9 +222,7 @@
 	"Download": "Descargar",
 	"Download": "Descargar",
 	"Download canceled": "Descarga cancelada",
 	"Download canceled": "Descarga cancelada",
 	"Download Database": "Descarga la Base de Datos",
 	"Download Database": "Descarga la Base de Datos",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Suelta cualquier archivo aquí para agregarlo a la conversación",
 	"Drop any files here to add to the conversation": "Suelta cualquier archivo aquí para agregarlo a la conversación",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p.ej. '30s','10m'. Unidades válidas de tiempo son 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p.ej. '30s','10m'. Unidades válidas de tiempo son 's', 'm', 'h'.",
 	"Edit": "Editar",
 	"Edit": "Editar",
 	"Edit Memory": "Editar Memoria",
 	"Edit Memory": "Editar Memoria",
@@ -692,6 +691,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Esta es una característica experimental que puede no funcionar como se esperaba y está sujeto a cambios en cualquier momento.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Esta es una característica experimental que puede no funcionar como se esperaba y está sujeto a cambios en cualquier momento.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": " Esta opción eliminará todos los archivos existentes en la colección y los reemplazará con nuevos archivos subidos.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": " Esta opción eliminará todos los archivos existentes en la colección y los reemplazará con nuevos archivos subidos.",
 	"This will delete": "Esto eliminará",
 	"This will delete": "Esto eliminará",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Esto reseteará la base de conocimientos y sincronizará todos los archivos. ¿Desea continuar?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Esto reseteará la base de conocimientos y sincronizará todos los archivos. ¿Desea continuar?",
 	"Thorough explanation": "Explicación exhaustiva",
 	"Thorough explanation": "Explicación exhaustiva",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 2 - 2
src/lib/i18n/locales/fa-IR/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "حذف گپ",
 	"Delete chat": "حذف گپ",
 	"Delete Chat": "حذف گپ",
 	"Delete Chat": "حذف گپ",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "حذف این لینک",
 	"delete this link": "حذف این لینک",
@@ -221,9 +222,7 @@
 	"Download": "دانلود کن",
 	"Download": "دانلود کن",
 	"Download canceled": "دانلود لغو شد",
 	"Download canceled": "دانلود لغو شد",
 	"Download Database": "دانلود پایگاه داده",
 	"Download Database": "دانلود پایگاه داده",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "هر فایلی را اینجا رها کنید تا به مکالمه اضافه شود",
 	"Drop any files here to add to the conversation": "هر فایلی را اینجا رها کنید تا به مکالمه اضافه شود",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "به طور مثال '30s','10m'. واحد\u200cهای زمانی معتبر 's', 'm', 'h' هستند.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "به طور مثال '30s','10m'. واحد\u200cهای زمانی معتبر 's', 'm', 'h' هستند.",
 	"Edit": "ویرایش",
 	"Edit": "ویرایش",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "توضیح کامل",
 	"Thorough explanation": "توضیح کامل",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/fi-FI/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Poista keskustelu",
 	"Delete chat": "Poista keskustelu",
 	"Delete Chat": "Poista keskustelu",
 	"Delete Chat": "Poista keskustelu",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "poista tämä linkki",
 	"delete this link": "poista tämä linkki",
@@ -221,9 +222,7 @@
 	"Download": "Lataa",
 	"Download": "Lataa",
 	"Download canceled": "Lataus peruutettu",
 	"Download canceled": "Lataus peruutettu",
 	"Download Database": "Lataa tietokanta",
 	"Download Database": "Lataa tietokanta",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Pudota tiedostoja tähän lisätäksesi ne keskusteluun",
 	"Drop any files here to add to the conversation": "Pudota tiedostoja tähän lisätäksesi ne keskusteluun",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "esim. '30s', '10m'. Kelpoiset aikayksiköt ovat 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "esim. '30s', '10m'. Kelpoiset aikayksiköt ovat 's', 'm', 'h'.",
 	"Edit": "Muokkaa",
 	"Edit": "Muokkaa",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Perusteellinen selitys",
 	"Thorough explanation": "Perusteellinen selitys",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/fr-CA/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Supprimer la conversation",
 	"Delete chat": "Supprimer la conversation",
 	"Delete Chat": "Supprimer la Conversation",
 	"Delete Chat": "Supprimer la Conversation",
 	"Delete chat?": "Supprimer la conversation ?",
 	"Delete chat?": "Supprimer la conversation ?",
+	"Delete folder?": "",
 	"Delete function?": "Supprimer la fonction ?",
 	"Delete function?": "Supprimer la fonction ?",
 	"Delete prompt?": "Supprimer la prompt ?",
 	"Delete prompt?": "Supprimer la prompt ?",
 	"delete this link": "supprimer ce lien",
 	"delete this link": "supprimer ce lien",
@@ -221,9 +222,7 @@
 	"Download": "Télécharger",
 	"Download": "Télécharger",
 	"Download canceled": "Téléchargement annulé",
 	"Download canceled": "Téléchargement annulé",
 	"Download Database": "Télécharger la base de données",
 	"Download Database": "Télécharger la base de données",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Déposez des fichiers ici pour les ajouter à la conversation",
 	"Drop any files here to add to the conversation": "Déposez des fichiers ici pour les ajouter à la conversation",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10 min'. Les unités de temps valides sont 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10 min'. Les unités de temps valides sont 's', 'm', 'h'.",
 	"Edit": "Modifier",
 	"Edit": "Modifier",
 	"Edit Memory": "Modifier la mémoire",
 	"Edit Memory": "Modifier la mémoire",
@@ -692,6 +691,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Il s'agit d'une fonctionnalité expérimentale, elle peut ne pas fonctionner comme prévu et est sujette à modification à tout moment.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Il s'agit d'une fonctionnalité expérimentale, elle peut ne pas fonctionner comme prévu et est sujette à modification à tout moment.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "Cela supprimera",
 	"This will delete": "Cela supprimera",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Explication approfondie",
 	"Thorough explanation": "Explication approfondie",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 2 - 2
src/lib/i18n/locales/fr-FR/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Supprimer la conversation",
 	"Delete chat": "Supprimer la conversation",
 	"Delete Chat": "Supprimer la Conversation",
 	"Delete Chat": "Supprimer la Conversation",
 	"Delete chat?": "Supprimer la conversation ?",
 	"Delete chat?": "Supprimer la conversation ?",
+	"Delete folder?": "",
 	"Delete function?": "Supprimer la fonction ?",
 	"Delete function?": "Supprimer la fonction ?",
 	"Delete prompt?": "Supprimer la prompt ?",
 	"Delete prompt?": "Supprimer la prompt ?",
 	"delete this link": "supprimer ce lien",
 	"delete this link": "supprimer ce lien",
@@ -221,9 +222,7 @@
 	"Download": "Télécharger",
 	"Download": "Télécharger",
 	"Download canceled": "Téléchargement annulé",
 	"Download canceled": "Téléchargement annulé",
 	"Download Database": "Télécharger la base de données",
 	"Download Database": "Télécharger la base de données",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Déposez des fichiers ici pour les ajouter à la conversation",
 	"Drop any files here to add to the conversation": "Déposez des fichiers ici pour les ajouter à la conversation",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10 min'. Les unités de temps valides sont 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10 min'. Les unités de temps valides sont 's', 'm', 'h'.",
 	"Edit": "Modifier",
 	"Edit": "Modifier",
 	"Edit Memory": "Modifier la mémoire",
 	"Edit Memory": "Modifier la mémoire",
@@ -692,6 +691,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Il s'agit d'une fonctionnalité expérimentale, elle peut ne pas fonctionner comme prévu et est sujette à modification à tout moment.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Il s'agit d'une fonctionnalité expérimentale, elle peut ne pas fonctionner comme prévu et est sujette à modification à tout moment.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Cette option supprimera tous les fichiers existants dans la collection et les remplacera par les fichiers nouvellement téléchargés.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Cette option supprimera tous les fichiers existants dans la collection et les remplacera par les fichiers nouvellement téléchargés.",
 	"This will delete": "Cela supprimera",
 	"This will delete": "Cela supprimera",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Cela réinitialisera la base de connaissances et synchronisera tous les fichiers. Souhaitez-vous continuer ?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Cela réinitialisera la base de connaissances et synchronisera tous les fichiers. Souhaitez-vous continuer ?",
 	"Thorough explanation": "Explication approfondie",
 	"Thorough explanation": "Explication approfondie",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 2 - 2
src/lib/i18n/locales/he-IL/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "מחק צ'אט",
 	"Delete chat": "מחק צ'אט",
 	"Delete Chat": "מחק צ'אט",
 	"Delete Chat": "מחק צ'אט",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "מחק את הקישור הזה",
 	"delete this link": "מחק את הקישור הזה",
@@ -221,9 +222,7 @@
 	"Download": "הורד",
 	"Download": "הורד",
 	"Download canceled": "ההורדה בוטלה",
 	"Download canceled": "ההורדה בוטלה",
 	"Download Database": "הורד מסד נתונים",
 	"Download Database": "הורד מסד נתונים",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "גרור כל קובץ לכאן כדי להוסיף לשיחה",
 	"Drop any files here to add to the conversation": "גרור כל קובץ לכאן כדי להוסיף לשיחה",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "למשל '30s', '10m'. יחידות זמן חוקיות הן 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "למשל '30s', '10m'. יחידות זמן חוקיות הן 's', 'm', 'h'.",
 	"Edit": "ערוך",
 	"Edit": "ערוך",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -692,6 +691,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "תיאור מפורט",
 	"Thorough explanation": "תיאור מפורט",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/hi-IN/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "चैट हटाएं",
 	"Delete chat": "चैट हटाएं",
 	"Delete Chat": "चैट हटाएं",
 	"Delete Chat": "चैट हटाएं",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "इस लिंक को हटाएं",
 	"delete this link": "इस लिंक को हटाएं",
@@ -221,9 +222,7 @@
 	"Download": "डाउनलोड",
 	"Download": "डाउनलोड",
 	"Download canceled": "डाउनलोड रद्द किया गया",
 	"Download canceled": "डाउनलोड रद्द किया गया",
 	"Download Database": "डेटाबेस डाउनलोड करें",
 	"Download Database": "डेटाबेस डाउनलोड करें",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "बातचीत में जोड़ने के लिए कोई भी फ़ाइल यहां छोड़ें",
 	"Drop any files here to add to the conversation": "बातचीत में जोड़ने के लिए कोई भी फ़ाइल यहां छोड़ें",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "जैसे '30s', '10m', मान्य समय इकाइयाँ 's', 'm', 'h' हैं।",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "जैसे '30s', '10m', मान्य समय इकाइयाँ 's', 'm', 'h' हैं।",
 	"Edit": "संपादित करें",
 	"Edit": "संपादित करें",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "विस्तृत व्याख्या",
 	"Thorough explanation": "विस्तृत व्याख्या",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/hr-HR/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Izbriši razgovor",
 	"Delete chat": "Izbriši razgovor",
 	"Delete Chat": "Izbriši razgovor",
 	"Delete Chat": "Izbriši razgovor",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "izbriši ovu vezu",
 	"delete this link": "izbriši ovu vezu",
@@ -221,9 +222,7 @@
 	"Download": "Preuzimanje",
 	"Download": "Preuzimanje",
 	"Download canceled": "Preuzimanje otkazano",
 	"Download canceled": "Preuzimanje otkazano",
 	"Download Database": "Preuzmi bazu podataka",
 	"Download Database": "Preuzmi bazu podataka",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Spustite bilo koje datoteke ovdje za dodavanje u razgovor",
 	"Drop any files here to add to the conversation": "Spustite bilo koje datoteke ovdje za dodavanje u razgovor",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "npr. '30s','10m'. Važeće vremenske jedinice su 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "npr. '30s','10m'. Važeće vremenske jedinice su 's', 'm', 'h'.",
 	"Edit": "Uredi",
 	"Edit": "Uredi",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -692,6 +691,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Ovo je eksperimentalna značajka, možda neće funkcionirati prema očekivanjima i podložna je promjenama u bilo kojem trenutku.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Ovo je eksperimentalna značajka, možda neće funkcionirati prema očekivanjima i podložna je promjenama u bilo kojem trenutku.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Detaljno objašnjenje",
 	"Thorough explanation": "Detaljno objašnjenje",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/id-ID/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Menghapus obrolan",
 	"Delete chat": "Menghapus obrolan",
 	"Delete Chat": "Menghapus Obrolan",
 	"Delete Chat": "Menghapus Obrolan",
 	"Delete chat?": "Menghapus obrolan?",
 	"Delete chat?": "Menghapus obrolan?",
+	"Delete folder?": "",
 	"Delete function?": "Fungsi hapus?",
 	"Delete function?": "Fungsi hapus?",
 	"Delete prompt?": "Perintah hapus?",
 	"Delete prompt?": "Perintah hapus?",
 	"delete this link": "hapus tautan ini",
 	"delete this link": "hapus tautan ini",
@@ -221,9 +222,7 @@
 	"Download": "Unduh",
 	"Download": "Unduh",
 	"Download canceled": "Unduh dibatalkan",
 	"Download canceled": "Unduh dibatalkan",
 	"Download Database": "Unduh Basis Data",
 	"Download Database": "Unduh Basis Data",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Letakkan file apa pun di sini untuk ditambahkan ke percakapan",
 	"Drop any files here to add to the conversation": "Letakkan file apa pun di sini untuk ditambahkan ke percakapan",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "misalnya '30-an', '10m'. Satuan waktu yang valid adalah 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "misalnya '30-an', '10m'. Satuan waktu yang valid adalah 's', 'm', 'h'.",
 	"Edit": "Edit",
 	"Edit": "Edit",
 	"Edit Memory": "Edit Memori",
 	"Edit Memory": "Edit Memori",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Ini adalah fitur eksperimental, mungkin tidak berfungsi seperti yang diharapkan dan dapat berubah sewaktu-waktu.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Ini adalah fitur eksperimental, mungkin tidak berfungsi seperti yang diharapkan dan dapat berubah sewaktu-waktu.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "Ini akan menghapus",
 	"This will delete": "Ini akan menghapus",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Penjelasan menyeluruh",
 	"Thorough explanation": "Penjelasan menyeluruh",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/ie-GA/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Scrios comhrá",
 	"Delete chat": "Scrios comhrá",
 	"Delete Chat": "Scrios Comhrá",
 	"Delete Chat": "Scrios Comhrá",
 	"Delete chat?": "Scrios comhrá?",
 	"Delete chat?": "Scrios comhrá?",
+	"Delete folder?": "",
 	"Delete function?": "Scrios feidhm?",
 	"Delete function?": "Scrios feidhm?",
 	"Delete prompt?": "Scrios pras?",
 	"Delete prompt?": "Scrios pras?",
 	"delete this link": "scrios an nasc seo",
 	"delete this link": "scrios an nasc seo",
@@ -221,9 +222,7 @@
 	"Download": "Íoslódáil",
 	"Download": "Íoslódáil",
 	"Download canceled": "Íoslódáil cealaithe",
 	"Download canceled": "Íoslódáil cealaithe",
 	"Download Database": "Íoslódáil Bunachair",
 	"Download Database": "Íoslódáil Bunachair",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Scaoil aon chomhaid anseo le cur leis an gcomhrá",
 	"Drop any files here to add to the conversation": "Scaoil aon chomhaid anseo le cur leis an gcomhrá",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "m.sh. '30s', '10m'. Is iad aonaid ama bailí ná 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "m.sh. '30s', '10m'. Is iad aonaid ama bailí ná 's', 'm', 'h'.",
 	"Edit": "Cuir in eagar",
 	"Edit": "Cuir in eagar",
 	"Edit Memory": "Cuir Cuimhne in eagar",
 	"Edit Memory": "Cuir Cuimhne in eagar",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Is gné turgnamhach í seo, b'fhéidir nach bhfeidhmeoidh sé mar a bhíothas ag súil leis agus tá sé faoi réir athraithe ag am ar bith.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Is gné turgnamhach í seo, b'fhéidir nach bhfeidhmeoidh sé mar a bhíothas ag súil leis agus tá sé faoi réir athraithe ag am ar bith.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "Scriosfaidh sé seo",
 	"This will delete": "Scriosfaidh sé seo",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Míniú críochnúil",
 	"Thorough explanation": "Míniú críochnúil",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 2 - 2
src/lib/i18n/locales/it-IT/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Elimina chat",
 	"Delete chat": "Elimina chat",
 	"Delete Chat": "Elimina chat",
 	"Delete Chat": "Elimina chat",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "elimina questo link",
 	"delete this link": "elimina questo link",
@@ -221,9 +222,7 @@
 	"Download": "Scarica",
 	"Download": "Scarica",
 	"Download canceled": "Scaricamento annullato",
 	"Download canceled": "Scaricamento annullato",
 	"Download Database": "Scarica database",
 	"Download Database": "Scarica database",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Trascina qui i file da aggiungere alla conversazione",
 	"Drop any files here to add to the conversation": "Trascina qui i file da aggiungere alla conversazione",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ad esempio '30s','10m'. Le unità di tempo valide sono 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ad esempio '30s','10m'. Le unità di tempo valide sono 's', 'm', 'h'.",
 	"Edit": "Modifica",
 	"Edit": "Modifica",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -692,6 +691,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Spiegazione dettagliata",
 	"Thorough explanation": "Spiegazione dettagliata",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/ja-JP/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "チャットを削除",
 	"Delete chat": "チャットを削除",
 	"Delete Chat": "チャットを削除",
 	"Delete Chat": "チャットを削除",
 	"Delete chat?": "チャットを削除しますか?",
 	"Delete chat?": "チャットを削除しますか?",
+	"Delete folder?": "",
 	"Delete function?": "Functionを削除しますか?",
 	"Delete function?": "Functionを削除しますか?",
 	"Delete prompt?": "プロンプトを削除しますか?",
 	"Delete prompt?": "プロンプトを削除しますか?",
 	"delete this link": "このリンクを削除します",
 	"delete this link": "このリンクを削除します",
@@ -221,9 +222,7 @@
 	"Download": "ダウンロード",
 	"Download": "ダウンロード",
 	"Download canceled": "ダウンロードをキャンセルしました",
 	"Download canceled": "ダウンロードをキャンセルしました",
 	"Download Database": "データベースをダウンロード",
 	"Download Database": "データベースをダウンロード",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "会話を追加するには、ここにファイルをドロップしてください",
 	"Drop any files here to add to the conversation": "会話を追加するには、ここにファイルをドロップしてください",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例: '30秒'、'10分'。有効な時間単位は '秒'、'分'、'時間' です。",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例: '30秒'、'10分'。有効な時間単位は '秒'、'分'、'時間' です。",
 	"Edit": "編集",
 	"Edit": "編集",
 	"Edit Memory": "メモリを編集",
 	"Edit Memory": "メモリを編集",
@@ -690,6 +689,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "実験的機能であり正常動作しない場合があります。",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "実験的機能であり正常動作しない場合があります。",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "詳細な説明",
 	"Thorough explanation": "詳細な説明",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/ka-GE/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "შეტყობინების წაშლა",
 	"Delete chat": "შეტყობინების წაშლა",
 	"Delete Chat": "შეტყობინების წაშლა",
 	"Delete Chat": "შეტყობინების წაშლა",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "ბმულის წაშლა",
 	"delete this link": "ბმულის წაშლა",
@@ -221,9 +222,7 @@
 	"Download": "ჩამოტვირთვა გაუქმებულია",
 	"Download": "ჩამოტვირთვა გაუქმებულია",
 	"Download canceled": "ჩამოტვირთვა გაუქმებულია",
 	"Download canceled": "ჩამოტვირთვა გაუქმებულია",
 	"Download Database": "გადმოწერე მონაცემთა ბაზა",
 	"Download Database": "გადმოწერე მონაცემთა ბაზა",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "გადაიტანეთ ფაილები აქ, რათა დაამატოთ ისინი მიმოწერაში",
 	"Drop any files here to add to the conversation": "გადაიტანეთ ფაილები აქ, რათა დაამატოთ ისინი მიმოწერაში",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "მაგალითად, '30წ', '10მ'. მოქმედი დროის ერთეულები: 'წ', 'წთ', 'სთ'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "მაგალითად, '30წ', '10მ'. მოქმედი დროის ერთეულები: 'წ', 'წთ', 'სთ'.",
 	"Edit": "რედაქტირება",
 	"Edit": "რედაქტირება",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "ვრცლად აღწერა",
 	"Thorough explanation": "ვრცლად აღწერა",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/ko-KR/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "채팅 삭제",
 	"Delete chat": "채팅 삭제",
 	"Delete Chat": "채팅 삭제",
 	"Delete Chat": "채팅 삭제",
 	"Delete chat?": "채팅을 삭제하겠습니까?",
 	"Delete chat?": "채팅을 삭제하겠습니까?",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "이 링크를 삭제합니다.",
 	"delete this link": "이 링크를 삭제합니다.",
@@ -221,9 +222,7 @@
 	"Download": "다운로드",
 	"Download": "다운로드",
 	"Download canceled": "다운로드 취소",
 	"Download canceled": "다운로드 취소",
 	"Download Database": "데이터베이스 다운로드",
 	"Download Database": "데이터베이스 다운로드",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "대화에 추가할 파일을 여기에 드롭하세요.",
 	"Drop any files here to add to the conversation": "대화에 추가할 파일을 여기에 드롭하세요.",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "예: '30s','10m'. 유효한 시간 단위는 's', 'm', 'h'입니다.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "예: '30s','10m'. 유효한 시간 단위는 's', 'm', 'h'입니다.",
 	"Edit": "편집",
 	"Edit": "편집",
 	"Edit Memory": "메모리 편집",
 	"Edit Memory": "메모리 편집",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "이것은 실험적 기능으로, 예상대로 작동하지 않을 수 있으며 언제든지 변경될 수 있습니다.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "이것은 실험적 기능으로, 예상대로 작동하지 않을 수 있으며 언제든지 변경될 수 있습니다.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "이것은 다음을 삭제합니다.",
 	"This will delete": "이것은 다음을 삭제합니다.",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "완전한 설명",
 	"Thorough explanation": "완전한 설명",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/lt-LT/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Išrinti pokalbį",
 	"Delete chat": "Išrinti pokalbį",
 	"Delete Chat": "Ištrinti pokalbį",
 	"Delete Chat": "Ištrinti pokalbį",
 	"Delete chat?": "Ištrinti pokalbį?",
 	"Delete chat?": "Ištrinti pokalbį?",
+	"Delete folder?": "",
 	"Delete function?": "Ištrinti funkciją",
 	"Delete function?": "Ištrinti funkciją",
 	"Delete prompt?": "Ištrinti užklausą?",
 	"Delete prompt?": "Ištrinti užklausą?",
 	"delete this link": "Ištrinti nuorodą",
 	"delete this link": "Ištrinti nuorodą",
@@ -221,9 +222,7 @@
 	"Download": "Parsisiųsti",
 	"Download": "Parsisiųsti",
 	"Download canceled": "Parsisiuntimas atšauktas",
 	"Download canceled": "Parsisiuntimas atšauktas",
 	"Download Database": "Parsisiųsti duomenų bazę",
 	"Download Database": "Parsisiųsti duomenų bazę",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Įkelkite dokumentus čia, kad juos pridėti į pokalbį",
 	"Drop any files here to add to the conversation": "Įkelkite dokumentus čia, kad juos pridėti į pokalbį",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "pvz. '30s', '10m'. Laiko vienetai yra 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "pvz. '30s', '10m'. Laiko vienetai yra 's', 'm', 'h'.",
 	"Edit": "Redaguoti",
 	"Edit": "Redaguoti",
 	"Edit Memory": "Koreguoti atminį",
 	"Edit Memory": "Koreguoti atminį",
@@ -693,6 +692,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Tai eksperimentinė funkcija ir gali veikti nevisada.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Tai eksperimentinė funkcija ir gali veikti nevisada.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "Tai ištrins",
 	"This will delete": "Tai ištrins",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Platus paaiškinimas",
 	"Thorough explanation": "Platus paaiškinimas",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 2 - 2
src/lib/i18n/locales/ms-MY/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Padam perbualan",
 	"Delete chat": "Padam perbualan",
 	"Delete Chat": "Padam Perbualan",
 	"Delete Chat": "Padam Perbualan",
 	"Delete chat?": "Padam perbualan?",
 	"Delete chat?": "Padam perbualan?",
+	"Delete folder?": "",
 	"Delete function?": "Padam fungsi?",
 	"Delete function?": "Padam fungsi?",
 	"Delete prompt?": "Padam Gesaan?",
 	"Delete prompt?": "Padam Gesaan?",
 	"delete this link": "Padam pautan ini?",
 	"delete this link": "Padam pautan ini?",
@@ -221,9 +222,7 @@
 	"Download": "Muat Turun",
 	"Download": "Muat Turun",
 	"Download canceled": "Muat Turun dibatalkan",
 	"Download canceled": "Muat Turun dibatalkan",
 	"Download Database": "Muat turun Pangkalan Data",
 	"Download Database": "Muat turun Pangkalan Data",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Letakkan mana-mana fail di sini untuk ditambahkan pada perbualan",
 	"Drop any files here to add to the conversation": "Letakkan mana-mana fail di sini untuk ditambahkan pada perbualan",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "cth '30s','10m'. Unit masa yang sah ialah 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "cth '30s','10m'. Unit masa yang sah ialah 's', 'm', 'h'.",
 	"Edit": "Edit",
 	"Edit": "Edit",
 	"Edit Memory": "Edit Memori",
 	"Edit Memory": "Edit Memori",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "ni adalah ciri percubaan, ia mungkin tidak berfungsi seperti yang diharapkan dan tertakluk kepada perubahan pada bila-bila masa.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "ni adalah ciri percubaan, ia mungkin tidak berfungsi seperti yang diharapkan dan tertakluk kepada perubahan pada bila-bila masa.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "Ini akan memadam",
 	"This will delete": "Ini akan memadam",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Penjelasan menyeluruh",
 	"Thorough explanation": "Penjelasan menyeluruh",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 2 - 2
src/lib/i18n/locales/nb-NO/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Slett chat",
 	"Delete chat": "Slett chat",
 	"Delete Chat": "Slett chat",
 	"Delete Chat": "Slett chat",
 	"Delete chat?": "Slett chat?",
 	"Delete chat?": "Slett chat?",
+	"Delete folder?": "",
 	"Delete function?": "Slett funksjon?",
 	"Delete function?": "Slett funksjon?",
 	"Delete prompt?": "Slett prompt?",
 	"Delete prompt?": "Slett prompt?",
 	"delete this link": "slett denne lenken",
 	"delete this link": "slett denne lenken",
@@ -221,9 +222,7 @@
 	"Download": "Last ned",
 	"Download": "Last ned",
 	"Download canceled": "Nedlasting avbrutt",
 	"Download canceled": "Nedlasting avbrutt",
 	"Download Database": "Last ned database",
 	"Download Database": "Last ned database",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Slipp filer her for å legge dem til i samtalen",
 	"Drop any files here to add to the conversation": "Slipp filer her for å legge dem til i samtalen",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "f.eks. '30s','10m'. Gyldige tidsenheter er 's', 'm', 't'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "f.eks. '30s','10m'. Gyldige tidsenheter er 's', 'm', 't'.",
 	"Edit": "Rediger",
 	"Edit": "Rediger",
 	"Edit Memory": "Rediger minne",
 	"Edit Memory": "Rediger minne",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Dette er en eksperimentell funksjon, det er mulig den ikke fungerer som forventet og kan endres når som helst.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Dette er en eksperimentell funksjon, det er mulig den ikke fungerer som forventet og kan endres når som helst.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "Dette vil slette",
 	"This will delete": "Dette vil slette",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Grundig forklaring",
 	"Thorough explanation": "Grundig forklaring",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 2 - 2
src/lib/i18n/locales/nl-NL/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Verwijder chat",
 	"Delete chat": "Verwijder chat",
 	"Delete Chat": "Verwijder Chat",
 	"Delete Chat": "Verwijder Chat",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "verwijder deze link",
 	"delete this link": "verwijder deze link",
@@ -221,9 +222,7 @@
 	"Download": "Download",
 	"Download": "Download",
 	"Download canceled": "Download geannuleerd",
 	"Download canceled": "Download geannuleerd",
 	"Download Database": "Download Database",
 	"Download Database": "Download Database",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Sleep bestanden hier om toe te voegen aan het gesprek",
 	"Drop any files here to add to the conversation": "Sleep bestanden hier om toe te voegen aan het gesprek",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "bijv. '30s', '10m'. Geldige tijdseenheden zijn 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "bijv. '30s', '10m'. Geldige tijdseenheden zijn 's', 'm', 'h'.",
 	"Edit": "Wijzig",
 	"Edit": "Wijzig",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Gevorderde uitleg",
 	"Thorough explanation": "Gevorderde uitleg",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/pa-IN/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "ਗੱਲਬਾਤ ਮਿਟਾਓ",
 	"Delete chat": "ਗੱਲਬਾਤ ਮਿਟਾਓ",
 	"Delete Chat": "ਗੱਲਬਾਤ ਮਿਟਾਓ",
 	"Delete Chat": "ਗੱਲਬਾਤ ਮਿਟਾਓ",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "ਇਸ ਲਿੰਕ ਨੂੰ ਮਿਟਾਓ",
 	"delete this link": "ਇਸ ਲਿੰਕ ਨੂੰ ਮਿਟਾਓ",
@@ -221,9 +222,7 @@
 	"Download": "ਡਾਊਨਲੋਡ",
 	"Download": "ਡਾਊਨਲੋਡ",
 	"Download canceled": "ਡਾਊਨਲੋਡ ਰੱਦ ਕੀਤਾ ਗਿਆ",
 	"Download canceled": "ਡਾਊਨਲੋਡ ਰੱਦ ਕੀਤਾ ਗਿਆ",
 	"Download Database": "ਡਾਟਾਬੇਸ ਡਾਊਨਲੋਡ ਕਰੋ",
 	"Download Database": "ਡਾਟਾਬੇਸ ਡਾਊਨਲੋਡ ਕਰੋ",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "ਗੱਲਬਾਤ ਵਿੱਚ ਸ਼ਾਮਲ ਕਰਨ ਲਈ ਕੋਈ ਵੀ ਫਾਈਲ ਇੱਥੇ ਛੱਡੋ",
 	"Drop any files here to add to the conversation": "ਗੱਲਬਾਤ ਵਿੱਚ ਸ਼ਾਮਲ ਕਰਨ ਲਈ ਕੋਈ ਵੀ ਫਾਈਲ ਇੱਥੇ ਛੱਡੋ",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ਉਦਾਹਰਣ ਲਈ '30ਸ','10ਮਿ'. ਸਹੀ ਸਮਾਂ ਇਕਾਈਆਂ ਹਨ 'ਸ', 'ਮ', 'ਘੰ'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ਉਦਾਹਰਣ ਲਈ '30ਸ','10ਮਿ'. ਸਹੀ ਸਮਾਂ ਇਕਾਈਆਂ ਹਨ 'ਸ', 'ਮ', 'ਘੰ'.",
 	"Edit": "ਸੰਪਾਦਨ ਕਰੋ",
 	"Edit": "ਸੰਪਾਦਨ ਕਰੋ",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "ਵਿਸਥਾਰ ਨਾਲ ਵਿਆਖਿਆ",
 	"Thorough explanation": "ਵਿਸਥਾਰ ਨਾਲ ਵਿਆਖਿਆ",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/pl-PL/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Usuń czat",
 	"Delete chat": "Usuń czat",
 	"Delete Chat": "Usuń czat",
 	"Delete Chat": "Usuń czat",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "usuń ten link",
 	"delete this link": "usuń ten link",
@@ -221,9 +222,7 @@
 	"Download": "Pobieranie",
 	"Download": "Pobieranie",
 	"Download canceled": "Pobieranie przerwane",
 	"Download canceled": "Pobieranie przerwane",
 	"Download Database": "Pobierz bazę danych",
 	"Download Database": "Pobierz bazę danych",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Upuść pliki tutaj, aby dodać do rozmowy",
 	"Drop any files here to add to the conversation": "Upuść pliki tutaj, aby dodać do rozmowy",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "np. '30s', '10m'. Poprawne jednostki czasu to 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "np. '30s', '10m'. Poprawne jednostki czasu to 's', 'm', 'h'.",
 	"Edit": "Edytuj",
 	"Edit": "Edytuj",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -693,6 +692,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Dokładne wyjaśnienie",
 	"Thorough explanation": "Dokładne wyjaśnienie",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/pt-BR/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Deletar chat",
 	"Delete chat": "Deletar chat",
 	"Delete Chat": "Deletar Chat",
 	"Delete Chat": "Deletar Chat",
 	"Delete chat?": "Deletar chat?",
 	"Delete chat?": "Deletar chat?",
+	"Delete folder?": "",
 	"Delete function?": "Deletar função?",
 	"Delete function?": "Deletar função?",
 	"Delete prompt?": "Deletar prompt?",
 	"Delete prompt?": "Deletar prompt?",
 	"delete this link": "deletar este link",
 	"delete this link": "deletar este link",
@@ -221,9 +222,7 @@
 	"Download": "Baixar",
 	"Download": "Baixar",
 	"Download canceled": "Download cancelado",
 	"Download canceled": "Download cancelado",
 	"Download Database": "Baixar Banco de Dados",
 	"Download Database": "Baixar Banco de Dados",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Solte qualquer arquivo aqui para adicionar à conversa",
 	"Drop any files here to add to the conversation": "Solte qualquer arquivo aqui para adicionar à conversa",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.",
 	"Edit": "Editar",
 	"Edit": "Editar",
 	"Edit Memory": "Editar Memória",
 	"Edit Memory": "Editar Memória",
@@ -692,6 +691,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Esta é uma funcionalidade experimental, pode não funcionar como esperado e está sujeita a alterações a qualquer momento.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Esta é uma funcionalidade experimental, pode não funcionar como esperado e está sujeita a alterações a qualquer momento.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "Isso vai excluir",
 	"This will delete": "Isso vai excluir",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Explicação detalhada",
 	"Thorough explanation": "Explicação detalhada",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 2 - 2
src/lib/i18n/locales/pt-PT/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Apagar conversa",
 	"Delete chat": "Apagar conversa",
 	"Delete Chat": "Apagar Conversa",
 	"Delete Chat": "Apagar Conversa",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "apagar este link",
 	"delete this link": "apagar este link",
@@ -221,9 +222,7 @@
 	"Download": "Descarregar",
 	"Download": "Descarregar",
 	"Download canceled": "Download cancelado",
 	"Download canceled": "Download cancelado",
 	"Download Database": "Descarregar Base de Dados",
 	"Download Database": "Descarregar Base de Dados",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Largue os ficheiros aqui para adicionar à conversa",
 	"Drop any files here to add to the conversation": "Largue os ficheiros aqui para adicionar à conversa",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.",
 	"Edit": "Editar",
 	"Edit": "Editar",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -692,6 +691,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Isto é um recurso experimental, pode não funcionar conforme o esperado e está sujeito a alterações a qualquer momento.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Isto é um recurso experimental, pode não funcionar conforme o esperado e está sujeito a alterações a qualquer momento.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Explicação Minuciosa",
 	"Thorough explanation": "Explicação Minuciosa",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/ro-RO/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Șterge conversația",
 	"Delete chat": "Șterge conversația",
 	"Delete Chat": "Șterge Conversația",
 	"Delete Chat": "Șterge Conversația",
 	"Delete chat?": "Șterge conversația?",
 	"Delete chat?": "Șterge conversația?",
+	"Delete folder?": "",
 	"Delete function?": "Șterge funcția?",
 	"Delete function?": "Șterge funcția?",
 	"Delete prompt?": "Șterge promptul?",
 	"Delete prompt?": "Șterge promptul?",
 	"delete this link": "șterge acest link",
 	"delete this link": "șterge acest link",
@@ -221,9 +222,7 @@
 	"Download": "Descarcă",
 	"Download": "Descarcă",
 	"Download canceled": "Descărcare anulată",
 	"Download canceled": "Descărcare anulată",
 	"Download Database": "Descarcă Baza de Date",
 	"Download Database": "Descarcă Baza de Date",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Plasează orice fișiere aici pentru a le adăuga la conversație",
 	"Drop any files here to add to the conversation": "Plasează orice fișiere aici pentru a le adăuga la conversație",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "de ex. '30s', '10m'. Unitățile de timp valide sunt 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "de ex. '30s', '10m'. Unitățile de timp valide sunt 's', 'm', 'h'.",
 	"Edit": "Editează",
 	"Edit": "Editează",
 	"Edit Memory": "Editează Memorie",
 	"Edit Memory": "Editează Memorie",
@@ -692,6 +691,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Aceasta este o funcție experimentală, poate să nu funcționeze așa cum vă așteptați și este supusă schimbării în orice moment.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Aceasta este o funcție experimentală, poate să nu funcționeze așa cum vă așteptați și este supusă schimbării în orice moment.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "Aceasta va șterge",
 	"This will delete": "Aceasta va șterge",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Explicație detaliată",
 	"Thorough explanation": "Explicație detaliată",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 2 - 2
src/lib/i18n/locales/ru-RU/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Удалить чат",
 	"Delete chat": "Удалить чат",
 	"Delete Chat": "Удалить чат",
 	"Delete Chat": "Удалить чат",
 	"Delete chat?": "Удалить чат?",
 	"Delete chat?": "Удалить чат?",
+	"Delete folder?": "",
 	"Delete function?": "Удалить функцию?",
 	"Delete function?": "Удалить функцию?",
 	"Delete prompt?": "Удалить промпт?",
 	"Delete prompt?": "Удалить промпт?",
 	"delete this link": "удалить эту ссылку",
 	"delete this link": "удалить эту ссылку",
@@ -221,9 +222,7 @@
 	"Download": "Загрузить",
 	"Download": "Загрузить",
 	"Download canceled": "Загрузка отменена",
 	"Download canceled": "Загрузка отменена",
 	"Download Database": "Загрузить базу данных",
 	"Download Database": "Загрузить базу данных",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Перетащите сюда файлы, чтобы добавить их в разговор",
 	"Drop any files here to add to the conversation": "Перетащите сюда файлы, чтобы добавить их в разговор",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "например, '30s','10m'. Допустимые единицы времени: 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "например, '30s','10m'. Допустимые единицы времени: 's', 'm', 'h'.",
 	"Edit": "Редактировать",
 	"Edit": "Редактировать",
 	"Edit Memory": "Редактировать воспоминание",
 	"Edit Memory": "Редактировать воспоминание",
@@ -693,6 +692,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Это экспериментальная функция, она может работать не так, как ожидалось, и может быть изменена в любое время.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Это экспериментальная функция, она может работать не так, как ожидалось, и может быть изменена в любое время.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "Это приведет к удалению",
 	"This will delete": "Это приведет к удалению",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Подробное объяснение",
 	"Thorough explanation": "Подробное объяснение",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 2 - 2
src/lib/i18n/locales/sr-RS/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Обриши ћаскање",
 	"Delete chat": "Обриши ћаскање",
 	"Delete Chat": "Обриши ћаскање",
 	"Delete Chat": "Обриши ћаскање",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "обриши ову везу",
 	"delete this link": "обриши ову везу",
@@ -221,9 +222,7 @@
 	"Download": "Преузми",
 	"Download": "Преузми",
 	"Download canceled": "Преузимање отказано",
 	"Download canceled": "Преузимање отказано",
 	"Download Database": "Преузми базу података",
 	"Download Database": "Преузми базу података",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Убаците било које датотеке овде да их додате у разговор",
 	"Drop any files here to add to the conversation": "Убаците било које датотеке овде да их додате у разговор",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "нпр. '30s', '10m'. Важеће временске јединице су 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "нпр. '30s', '10m'. Важеће временске јединице су 's', 'm', 'h'.",
 	"Edit": "Уреди",
 	"Edit": "Уреди",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -692,6 +691,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Детаљно објашњење",
 	"Thorough explanation": "Детаљно објашњење",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/sv-SE/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Radera chatt",
 	"Delete chat": "Radera chatt",
 	"Delete Chat": "Radera chatt",
 	"Delete Chat": "Radera chatt",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "radera denna länk",
 	"delete this link": "radera denna länk",
@@ -221,9 +222,7 @@
 	"Download": "Ladda ner",
 	"Download": "Ladda ner",
 	"Download canceled": "Nedladdning avbruten",
 	"Download canceled": "Nedladdning avbruten",
 	"Download Database": "Ladda ner databas",
 	"Download Database": "Ladda ner databas",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Släpp filer här för att lägga till i samtalet",
 	"Drop any files here to add to the conversation": "Släpp filer här för att lägga till i samtalet",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "t.ex. '30s', '10m'. Giltiga tidsenheter är 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "t.ex. '30s', '10m'. Giltiga tidsenheter är 's', 'm', 'h'.",
 	"Edit": "Redigera",
 	"Edit": "Redigera",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Detta är en experimentell funktion som kanske inte fungerar som förväntat och som kan komma att ändras när som helst.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Detta är en experimentell funktion som kanske inte fungerar som förväntat och som kan komma att ändras när som helst.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Djupare förklaring",
 	"Thorough explanation": "Djupare förklaring",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/th-TH/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "ลบแชท",
 	"Delete chat": "ลบแชท",
 	"Delete Chat": "ลบแชท",
 	"Delete Chat": "ลบแชท",
 	"Delete chat?": "ลบแชท?",
 	"Delete chat?": "ลบแชท?",
+	"Delete folder?": "",
 	"Delete function?": "ลบฟังก์ชัน?",
 	"Delete function?": "ลบฟังก์ชัน?",
 	"Delete prompt?": "ลบพรอมต์?",
 	"Delete prompt?": "ลบพรอมต์?",
 	"delete this link": "ลบลิงก์นี้",
 	"delete this link": "ลบลิงก์นี้",
@@ -221,9 +222,7 @@
 	"Download": "ดาวน์โหลด",
 	"Download": "ดาวน์โหลด",
 	"Download canceled": "ยกเลิกการดาวน์โหลด",
 	"Download canceled": "ยกเลิกการดาวน์โหลด",
 	"Download Database": "ดาวน์โหลดฐานข้อมูล",
 	"Download Database": "ดาวน์โหลดฐานข้อมูล",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "วางไฟล์ใดๆ ที่นี่เพื่อเพิ่มในการสนทนา",
 	"Drop any files here to add to the conversation": "วางไฟล์ใดๆ ที่นี่เพื่อเพิ่มในการสนทนา",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "เช่น '30s', '10m' หน่วยเวลาที่ถูกต้องคือ 's', 'm', 'h'",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "เช่น '30s', '10m' หน่วยเวลาที่ถูกต้องคือ 's', 'm', 'h'",
 	"Edit": "แก้ไข",
 	"Edit": "แก้ไข",
 	"Edit Memory": "แก้ไขความจำ",
 	"Edit Memory": "แก้ไขความจำ",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "นี่เป็นฟีเจอร์ทดลอง อาจไม่ทำงานตามที่คาดไว้และอาจมีการเปลี่ยนแปลงได้ตลอดเวลา",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "นี่เป็นฟีเจอร์ทดลอง อาจไม่ทำงานตามที่คาดไว้และอาจมีการเปลี่ยนแปลงได้ตลอดเวลา",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "สิ่งนี้จะลบ",
 	"This will delete": "สิ่งนี้จะลบ",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "คำอธิบายอย่างละเอียด",
 	"Thorough explanation": "คำอธิบายอย่างละเอียด",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 2 - 2
src/lib/i18n/locales/tk-TW/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "",
 	"Delete chat": "",
 	"Delete Chat": "",
 	"Delete Chat": "",
 	"Delete chat?": "",
 	"Delete chat?": "",
+	"Delete folder?": "",
 	"Delete function?": "",
 	"Delete function?": "",
 	"Delete prompt?": "",
 	"Delete prompt?": "",
 	"delete this link": "",
 	"delete this link": "",
@@ -221,9 +222,7 @@
 	"Download": "",
 	"Download": "",
 	"Download canceled": "",
 	"Download canceled": "",
 	"Download Database": "",
 	"Download Database": "",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "",
 	"Drop any files here to add to the conversation": "",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
 	"Edit": "",
 	"Edit": "",
 	"Edit Memory": "",
 	"Edit Memory": "",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "",
 	"This will delete": "",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "",
 	"Thorough explanation": "",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/tr-TR/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Sohbeti sil",
 	"Delete chat": "Sohbeti sil",
 	"Delete Chat": "Sohbeti Sil",
 	"Delete Chat": "Sohbeti Sil",
 	"Delete chat?": "Sohbeti sil?",
 	"Delete chat?": "Sohbeti sil?",
+	"Delete folder?": "",
 	"Delete function?": "Fonksiyonu sil?",
 	"Delete function?": "Fonksiyonu sil?",
 	"Delete prompt?": "Promptu sil?",
 	"Delete prompt?": "Promptu sil?",
 	"delete this link": "bu bağlantıyı sil",
 	"delete this link": "bu bağlantıyı sil",
@@ -221,9 +222,7 @@
 	"Download": "İndir",
 	"Download": "İndir",
 	"Download canceled": "İndirme iptal edildi",
 	"Download canceled": "İndirme iptal edildi",
 	"Download Database": "Veritabanını İndir",
 	"Download Database": "Veritabanını İndir",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Sohbete eklemek istediğiniz dosyaları buraya bırakın",
 	"Drop any files here to add to the conversation": "Sohbete eklemek istediğiniz dosyaları buraya bırakın",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "örn. '30s', '10m'. Geçerli zaman birimleri 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "örn. '30s', '10m'. Geçerli zaman birimleri 's', 'm', 'h'.",
 	"Edit": "Düzenle",
 	"Edit": "Düzenle",
 	"Edit Memory": "Belleği Düzenle",
 	"Edit Memory": "Belleği Düzenle",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Bu deneysel bir özelliktir, beklendiği gibi çalışmayabilir ve her an değişiklik yapılabilir.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Bu deneysel bir özelliktir, beklendiği gibi çalışmayabilir ve her an değişiklik yapılabilir.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "Bu silinecek",
 	"This will delete": "Bu silinecek",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Kapsamlı açıklama",
 	"Thorough explanation": "Kapsamlı açıklama",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/uk-UA/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Видалити чат",
 	"Delete chat": "Видалити чат",
 	"Delete Chat": "Видалити чат",
 	"Delete Chat": "Видалити чат",
 	"Delete chat?": "Видалити чат?",
 	"Delete chat?": "Видалити чат?",
+	"Delete folder?": "",
 	"Delete function?": "Видалити функцію?",
 	"Delete function?": "Видалити функцію?",
 	"Delete prompt?": "Видалити промт?",
 	"Delete prompt?": "Видалити промт?",
 	"delete this link": "видалити це посилання",
 	"delete this link": "видалити це посилання",
@@ -221,9 +222,7 @@
 	"Download": "Завантажити",
 	"Download": "Завантажити",
 	"Download canceled": "Завантаження скасовано",
 	"Download canceled": "Завантаження скасовано",
 	"Download Database": "Завантажити базу даних",
 	"Download Database": "Завантажити базу даних",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Перетягніть сюди файли, щоб додати до розмови",
 	"Drop any files here to add to the conversation": "Перетягніть сюди файли, щоб додати до розмови",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр., '30s','10m'. Дійсні одиниці часу: 'с', 'хв', 'г'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр., '30s','10m'. Дійсні одиниці часу: 'с', 'хв', 'г'.",
 	"Edit": "Редагувати",
 	"Edit": "Редагувати",
 	"Edit Memory": "Редагувати пам'ять",
 	"Edit Memory": "Редагувати пам'ять",
@@ -693,6 +692,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Це експериментальна функція, вона може працювати не так, як очікувалося, і може бути змінена в будь-який час.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Це експериментальна функція, вона може працювати не так, як очікувалося, і може бути змінена в будь-який час.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Цей варіант видалить усі існуючі файли в колекції та замінить їх новими завантаженими файлами.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Цей варіант видалить усі існуючі файли в колекції та замінить їх новими завантаженими файлами.",
 	"This will delete": "Це призведе до видалення",
 	"This will delete": "Це призведе до видалення",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Це скине базу знань і синхронізує всі файли. Ви бажаєте продовжити?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Це скине базу знань і синхронізує всі файли. Ви бажаєте продовжити?",
 	"Thorough explanation": "Детальне пояснення",
 	"Thorough explanation": "Детальне пояснення",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 2 - 2
src/lib/i18n/locales/vi-VN/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "Xóa nội dung chat",
 	"Delete chat": "Xóa nội dung chat",
 	"Delete Chat": "Xóa chat",
 	"Delete Chat": "Xóa chat",
 	"Delete chat?": "Xóa chat?",
 	"Delete chat?": "Xóa chat?",
+	"Delete folder?": "",
 	"Delete function?": "Xóa function?",
 	"Delete function?": "Xóa function?",
 	"Delete prompt?": "Xóa prompt?",
 	"Delete prompt?": "Xóa prompt?",
 	"delete this link": "Xóa link này",
 	"delete this link": "Xóa link này",
@@ -221,9 +222,7 @@
 	"Download": "Tải về",
 	"Download": "Tải về",
 	"Download canceled": "Đã hủy download",
 	"Download canceled": "Đã hủy download",
 	"Download Database": "Tải xuống Cơ sở dữ liệu",
 	"Download Database": "Tải xuống Cơ sở dữ liệu",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "Thả bất kỳ tệp nào ở đây để thêm vào nội dung chat",
 	"Drop any files here to add to the conversation": "Thả bất kỳ tệp nào ở đây để thêm vào nội dung chat",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "vd: '30s','10m'. Đơn vị thời gian hợp lệ là 's', 'm', 'h'.",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "vd: '30s','10m'. Đơn vị thời gian hợp lệ là 's', 'm', 'h'.",
 	"Edit": "Chỉnh sửa",
 	"Edit": "Chỉnh sửa",
 	"Edit Memory": "Sửa Memory",
 	"Edit Memory": "Sửa Memory",
@@ -690,6 +689,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Đây là tính năng thử nghiệm, có thể không hoạt động như mong đợi và có thể thay đổi bất kỳ lúc nào.",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Đây là tính năng thử nghiệm, có thể không hoạt động như mong đợi và có thể thay đổi bất kỳ lúc nào.",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This will delete": "Chat này sẽ bị xóa",
 	"This will delete": "Chat này sẽ bị xóa",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
 	"Thorough explanation": "Giải thích kỹ lưỡng",
 	"Thorough explanation": "Giải thích kỹ lưỡng",
 	"Tika": "",
 	"Tika": "",

+ 2 - 2
src/lib/i18n/locales/zh-CN/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "删除对话记录",
 	"Delete chat": "删除对话记录",
 	"Delete Chat": "删除对话记录",
 	"Delete Chat": "删除对话记录",
 	"Delete chat?": "删除对话记录?",
 	"Delete chat?": "删除对话记录?",
+	"Delete folder?": "",
 	"Delete function?": "删除函数?",
 	"Delete function?": "删除函数?",
 	"Delete prompt?": "删除提示词?",
 	"Delete prompt?": "删除提示词?",
 	"delete this link": "此处删除这个链接",
 	"delete this link": "此处删除这个链接",
@@ -221,9 +222,7 @@
 	"Download": "下载",
 	"Download": "下载",
 	"Download canceled": "下载已取消",
 	"Download canceled": "下载已取消",
 	"Download Database": "下载数据库",
 	"Download Database": "下载数据库",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "拖动文件到此处以添加到对话中",
 	"Drop any files here to add to the conversation": "拖动文件到此处以添加到对话中",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例如 '30s','10m'。有效的时间单位是秒:'s',分:'m',时:'h'。",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例如 '30s','10m'。有效的时间单位是秒:'s',分:'m',时:'h'。",
 	"Edit": "编辑",
 	"Edit": "编辑",
 	"Edit Memory": "编辑记忆",
 	"Edit Memory": "编辑记忆",
@@ -690,6 +689,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "这是一个实验功能,可能不会如预期那样工作,而且可能随时发生变化。",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "这是一个实验功能,可能不会如预期那样工作,而且可能随时发生变化。",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "此选项将会删除文件集中所有文件,并用新上传的文件替换。",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "此选项将会删除文件集中所有文件,并用新上传的文件替换。",
 	"This will delete": "这将删除",
 	"This will delete": "这将删除",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "这将重置知识库并同步所有文件。确认继续吗?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "这将重置知识库并同步所有文件。确认继续吗?",
 	"Thorough explanation": "解释较为详细",
 	"Thorough explanation": "解释较为详细",
 	"Tika": "Tika",
 	"Tika": "Tika",

+ 2 - 2
src/lib/i18n/locales/zh-TW/translation.json

@@ -186,6 +186,7 @@
 	"Delete chat": "刪除對話紀錄",
 	"Delete chat": "刪除對話紀錄",
 	"Delete Chat": "刪除對話紀錄",
 	"Delete Chat": "刪除對話紀錄",
 	"Delete chat?": "刪除對話紀錄?",
 	"Delete chat?": "刪除對話紀錄?",
+	"Delete folder?": "",
 	"Delete function?": "刪除函式?",
 	"Delete function?": "刪除函式?",
 	"Delete prompt?": "刪除提示詞?",
 	"Delete prompt?": "刪除提示詞?",
 	"delete this link": "刪除此連結",
 	"delete this link": "刪除此連結",
@@ -221,9 +222,7 @@
 	"Download": "下載",
 	"Download": "下載",
 	"Download canceled": "已取消下載",
 	"Download canceled": "已取消下載",
 	"Download Database": "下載資料庫",
 	"Download Database": "下載資料庫",
-	"Drop a chat export file here to import it.": "",
 	"Drop any files here to add to the conversation": "拖拽任意檔案到此處以新增至對話",
 	"Drop any files here to add to the conversation": "拖拽任意檔案到此處以新增至對話",
-	"Drop Chat Export": "",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例如:'30s'、'10m'。有效的時間單位為 's'、'm'、'h'。",
 	"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例如:'30s'、'10m'。有效的時間單位為 's'、'm'、'h'。",
 	"Edit": "編輯",
 	"Edit": "編輯",
 	"Edit Memory": "編輯記憶",
 	"Edit Memory": "編輯記憶",
@@ -691,6 +690,7 @@
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "這是一個實驗性功能,它可能無法如預期運作,並且可能會隨時變更。",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "這是一個實驗性功能,它可能無法如預期運作,並且可能會隨時變更。",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "此選項將刪除集合中的所有現有檔案,並用新上傳的檔案取代它們。",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "此選項將刪除集合中的所有現有檔案,並用新上傳的檔案取代它們。",
 	"This will delete": "這將會刪除",
 	"This will delete": "這將會刪除",
+	"This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "這將重設知識庫並同步所有檔案。您確定要繼續嗎?",
 	"This will reset the knowledge base and sync all files. Do you wish to continue?": "這將重設知識庫並同步所有檔案。您確定要繼續嗎?",
 	"Thorough explanation": "詳細解釋",
 	"Thorough explanation": "詳細解釋",
 	"Tika": "Tika",
 	"Tika": "Tika",