Browse Source

i18n: Implementing label [SearchInput] and [CreateCollection] | Translation and adjustments pt-BR

Diego Rodriguez 5 months ago
parent
commit
7aeedda634
49 changed files with 456 additions and 170 deletions
  1. 3 1
      src/lib/components/layout/Sidebar/SearchInput.svelte
  2. 7 5
      src/lib/components/workspace/Knowledge/CreateCollection.svelte
  3. 6 0
      src/lib/i18n/locales/ar-BH/translation.json
  4. 6 0
      src/lib/i18n/locales/bg-BG/translation.json
  5. 6 0
      src/lib/i18n/locales/bn-BD/translation.json
  6. 6 0
      src/lib/i18n/locales/ca-ES/translation.json
  7. 6 0
      src/lib/i18n/locales/ceb-PH/translation.json
  8. 6 0
      src/lib/i18n/locales/cs-CZ/translation.json
  9. 6 0
      src/lib/i18n/locales/da-DK/translation.json
  10. 6 0
      src/lib/i18n/locales/de-DE/translation.json
  11. 6 0
      src/lib/i18n/locales/dg-DG/translation.json
  12. 6 0
      src/lib/i18n/locales/en-GB/translation.json
  13. 6 0
      src/lib/i18n/locales/en-US/translation.json
  14. 6 0
      src/lib/i18n/locales/es-ES/translation.json
  15. 6 0
      src/lib/i18n/locales/fa-IR/translation.json
  16. 6 0
      src/lib/i18n/locales/fi-FI/translation.json
  17. 6 0
      src/lib/i18n/locales/fr-CA/translation.json
  18. 6 0
      src/lib/i18n/locales/fr-FR/translation.json
  19. 6 0
      src/lib/i18n/locales/he-IL/translation.json
  20. 6 0
      src/lib/i18n/locales/hi-IN/translation.json
  21. 6 0
      src/lib/i18n/locales/hr-HR/translation.json
  22. 6 0
      src/lib/i18n/locales/hu-HU/translation.json
  23. 6 0
      src/lib/i18n/locales/id-ID/translation.json
  24. 6 0
      src/lib/i18n/locales/ie-GA/translation.json
  25. 6 0
      src/lib/i18n/locales/it-IT/translation.json
  26. 6 0
      src/lib/i18n/locales/ja-JP/translation.json
  27. 6 0
      src/lib/i18n/locales/ka-GE/translation.json
  28. 6 0
      src/lib/i18n/locales/ko-KR/translation.json
  29. 6 0
      src/lib/i18n/locales/lt-LT/translation.json
  30. 6 0
      src/lib/i18n/locales/ms-MY/translation.json
  31. 6 0
      src/lib/i18n/locales/nb-NO/translation.json
  32. 6 0
      src/lib/i18n/locales/nl-NL/translation.json
  33. 6 0
      src/lib/i18n/locales/pa-IN/translation.json
  34. 6 0
      src/lib/i18n/locales/pl-PL/translation.json
  35. 170 164
      src/lib/i18n/locales/pt-BR/translation.json
  36. 6 0
      src/lib/i18n/locales/pt-PT/translation.json
  37. 6 0
      src/lib/i18n/locales/ro-RO/translation.json
  38. 6 0
      src/lib/i18n/locales/ru-RU/translation.json
  39. 6 0
      src/lib/i18n/locales/sr-RS/translation.json
  40. 6 0
      src/lib/i18n/locales/sv-SE/translation.json
  41. 6 0
      src/lib/i18n/locales/th-TH/translation.json
  42. 6 0
      src/lib/i18n/locales/tk-TM/translation.json
  43. 6 0
      src/lib/i18n/locales/tk-TW/translation.json
  44. 6 0
      src/lib/i18n/locales/tr-TR/translation.json
  45. 6 0
      src/lib/i18n/locales/uk-UA/translation.json
  46. 6 0
      src/lib/i18n/locales/ur-PK/translation.json
  47. 6 0
      src/lib/i18n/locales/vi-VN/translation.json
  48. 6 0
      src/lib/i18n/locales/zh-CN/translation.json
  49. 6 0
      src/lib/i18n/locales/zh-TW/translation.json

+ 3 - 1
src/lib/components/layout/Sidebar/SearchInput.svelte

@@ -182,7 +182,9 @@
 						{/each}
 						{/each}
 					</div>
 					</div>
 				{:else if filteredOptions.length > 0}
 				{:else if filteredOptions.length > 0}
-					<div class="px-1 font-medium dark:text-gray-300 text-gray-700 mb-1">Search options</div>
+					<div class="px-1 font-medium dark:text-gray-300 text-gray-700 mb-1">
+						{$i18n.t('Search options')}
+					</div>
 
 
 					<div class=" max-h-60 overflow-auto">
 					<div class=" max-h-60 overflow-auto">
 						{#each filteredOptions as option, optionIdx}
 						{#each filteredOptions as option, optionIdx}

+ 7 - 5
src/lib/components/workspace/Knowledge/CreateCollection.svelte

@@ -68,32 +68,34 @@
 		}}
 		}}
 	>
 	>
 		<div class=" w-full flex flex-col justify-center">
 		<div class=" w-full flex flex-col justify-center">
-			<div class=" text-2xl font-medium font-primary mb-2.5">Create a knowledge base</div>
+			<div class=" text-2xl font-medium font-primary mb-2.5">
+				{$i18n.t('Create a knowledge base')}
+			</div>
 
 
 			<div class="w-full flex flex-col gap-2.5">
 			<div class="w-full flex flex-col gap-2.5">
 				<div class="w-full">
 				<div class="w-full">
-					<div class=" text-sm mb-2">What are you working on?</div>
+					<div class=" text-sm mb-2">{$i18n.t('What are you working on?')}</div>
 
 
 					<div class="w-full mt-1">
 					<div class="w-full mt-1">
 						<input
 						<input
 							class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
 							class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
 							type="text"
 							type="text"
 							bind:value={name}
 							bind:value={name}
-							placeholder={`Name your knowledge base`}
+							placeholder={$i18n.t('Name your knowledge base')}
 							required
 							required
 						/>
 						/>
 					</div>
 					</div>
 				</div>
 				</div>
 
 
 				<div>
 				<div>
-					<div class="text-sm mb-2">What are you trying to achieve?</div>
+					<div class="text-sm mb-2">{$i18n.t('What are you trying to achieve?')}</div>
 
 
 					<div class=" w-full mt-1">
 					<div class=" w-full mt-1">
 						<textarea
 						<textarea
 							class="w-full resize-none rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
 							class="w-full resize-none rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
 							rows="4"
 							rows="4"
 							bind:value={description}
 							bind:value={description}
-							placeholder={`Describe your knowledge base and objectives`}
+							placeholder={$i18n.t('Describe your knowledge base and objectives')}
 							required
 							required
 						/>
 						/>
 					</div>
 					</div>

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

@@ -172,6 +172,7 @@
 	"Created at": "أنشئت في",
 	"Created at": "أنشئت في",
 	"Created At": "أنشئت من",
 	"Created At": "أنشئت من",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "الموديل المختار",
 	"Current Model": "الموديل المختار",
 	"Current Password": "كلمة السر الحالية",
 	"Current Password": "كلمة السر الحالية",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} حذف",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} حذف",
 	"Deleted {{name}}": "حذف {{name}}",
 	"Deleted {{name}}": "حذف {{name}}",
 	"Description": "وصف",
 	"Description": "وصف",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "لم أتبع التعليمات بشكل كامل",
 	"Didn't fully follow instructions": "لم أتبع التعليمات بشكل كامل",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "الأسم",
 	"Name": "الأسم",
 	"Name your model": "قم بتسمية النموذج الخاص بك",
 	"Name your model": "قم بتسمية النموذج الخاص بك",
+	"Name your knowledge base": "",
 	"New Chat": "دردشة جديدة",
 	"New Chat": "دردشة جديدة",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "كلمة المرور الجديدة",
 	"New Password": "كلمة المرور الجديدة",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "عدد نتائج البحث",
 	"Search Result Count": "عدد نتائج البحث",
 	"Search Tools": "",
 	"Search Tools": "",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_zero": "تم البحث في {{count}} sites_zero",
 	"Searched {{count}} sites_zero": "تم البحث في {{count}} sites_zero",
@@ -851,6 +855,8 @@
 	"WebUI Settings": "WebUI اعدادات",
 	"WebUI Settings": "WebUI اعدادات",
 	"WebUI will make requests to": "سوف يقوم WebUI بتقديم طلبات ل",
 	"WebUI will make requests to": "سوف يقوم WebUI بتقديم طلبات ل",
 	"What’s New in": "ما هو الجديد",
 	"What’s New in": "ما هو الجديد",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",

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

@@ -172,6 +172,7 @@
 	"Created at": "Създадено на",
 	"Created at": "Създадено на",
 	"Created At": "Създадено на",
 	"Created At": "Създадено на",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "Текущ модел",
 	"Current Model": "Текущ модел",
 	"Current Password": "Текуща Парола",
 	"Current Password": "Текуща Парола",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Изтрито {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Изтрито {{deleteModelTag}}",
 	"Deleted {{name}}": "Изтрито {{име}}",
 	"Deleted {{name}}": "Изтрито {{име}}",
 	"Description": "Описание",
 	"Description": "Описание",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Не следва инструкциите",
 	"Didn't fully follow instructions": "Не следва инструкциите",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "Име",
 	"Name": "Име",
 	"Name your model": "Дайте име на вашия модел",
 	"Name your model": "Дайте име на вашия модел",
+	"Name your knowledge base": "",
 	"New Chat": "Нов чат",
 	"New Chat": "Нов чат",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Нова парола",
 	"New Password": "Нова парола",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "Брой резултати от търсенето",
 	"Search Result Count": "Брой резултати от търсенето",
 	"Search Tools": "",
 	"Search Tools": "",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Търси се в {{count}} sites_one",
 	"Searched {{count}} sites_one": "Търси се в {{count}} sites_one",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "WebUI Настройки",
 	"WebUI Settings": "WebUI Настройки",
 	"WebUI will make requests to": "WebUI ще направи заявки към",
 	"WebUI will make requests to": "WebUI ще направи заявки към",
 	"What’s New in": "Какво е новото в",
 	"What’s New in": "Какво е новото в",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",

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

@@ -172,6 +172,7 @@
 	"Created at": "নির্মানকাল",
 	"Created at": "নির্মানকাল",
 	"Created At": "নির্মানকাল",
 	"Created At": "নির্মানকাল",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "বর্তমান মডেল",
 	"Current Model": "বর্তমান মডেল",
 	"Current Password": "বর্তমান পাসওয়ার্ড",
 	"Current Password": "বর্তমান পাসওয়ার্ড",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} মুছে ফেলা হয়েছে",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} মুছে ফেলা হয়েছে",
 	"Deleted {{name}}": "{{name}} মোছা হয়েছে",
 	"Deleted {{name}}": "{{name}} মোছা হয়েছে",
 	"Description": "বিবরণ",
 	"Description": "বিবরণ",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "ইনস্ট্রাকশন সম্পূর্ণ অনুসরণ করা হয়নি",
 	"Didn't fully follow instructions": "ইনস্ট্রাকশন সম্পূর্ণ অনুসরণ করা হয়নি",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "নাম",
 	"Name": "নাম",
 	"Name your model": "আপনার মডেলের নাম দিন",
 	"Name your model": "আপনার মডেলের নাম দিন",
+	"Name your knowledge base": "",
 	"New Chat": "নতুন চ্যাট",
 	"New Chat": "নতুন চ্যাট",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "নতুন পাসওয়ার্ড",
 	"New Password": "নতুন পাসওয়ার্ড",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "অনুসন্ধানের ফলাফল গণনা",
 	"Search Result Count": "অনুসন্ধানের ফলাফল গণনা",
 	"Search Tools": "",
 	"Search Tools": "",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "{{কাউন্ট}} অনুসন্ধান করা হয়েছে sites_one",
 	"Searched {{count}} sites_one": "{{কাউন্ট}} অনুসন্ধান করা হয়েছে sites_one",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "WebUI সেটিংসমূহ",
 	"WebUI Settings": "WebUI সেটিংসমূহ",
 	"WebUI will make requests to": "WebUI যেখানে রিকোয়েস্ট পাঠাবে",
 	"WebUI will make requests to": "WebUI যেখানে রিকোয়েস্ট পাঠাবে",
 	"What’s New in": "এতে নতুন কী",
 	"What’s New in": "এতে নতুন কী",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",

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

@@ -172,6 +172,7 @@
 	"Created at": "Creat el",
 	"Created at": "Creat el",
 	"Created At": "Creat el",
 	"Created At": "Creat el",
 	"Created by": "Creat per",
 	"Created by": "Creat per",
+	"Create a knowledge base": "",
 	"CSV Import": "Importar CSV",
 	"CSV Import": "Importar CSV",
 	"Current Model": "Model actual",
 	"Current Model": "Model actual",
 	"Current Password": "Contrasenya actual",
 	"Current Password": "Contrasenya actual",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "S'ha eliminat {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "S'ha eliminat {{deleteModelTag}}",
 	"Deleted {{name}}": "S'ha eliminat {{name}}",
 	"Deleted {{name}}": "S'ha eliminat {{name}}",
 	"Description": "Descripció",
 	"Description": "Descripció",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "No s'han seguit les instruccions completament",
 	"Didn't fully follow instructions": "No s'han seguit les instruccions completament",
 	"Disabled": "Deshabilitat",
 	"Disabled": "Deshabilitat",
 	"Discover a function": "Descobrir una funció",
 	"Discover a function": "Descobrir una funció",
@@ -485,6 +487,7 @@
 	"Move to Top": "Moure a dalt de tot",
 	"Move to Top": "Moure a dalt de tot",
 	"Name": "Nom",
 	"Name": "Nom",
 	"Name your model": "Posa un nom al teu model",
 	"Name your model": "Posa un nom al teu model",
+	"Name your knowledge base": "",
 	"New Chat": "Nou xat",
 	"New Chat": "Nou xat",
 	"New folder": "Nova carpeta",
 	"New folder": "Nova carpeta",
 	"New Password": "Nova contrasenya",
 	"New Password": "Nova contrasenya",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Indicació de cerca de generació de consultes",
 	"Search Query Generation Prompt": "Indicació de cerca de generació de consultes",
 	"Search Result Count": "Recompte de resultats de cerca",
 	"Search Result Count": "Recompte de resultats de cerca",
 	"Search Tools": "Cercar eines",
 	"Search Tools": "Cercar eines",
+	"Search options": "",
 	"SearchApi API Key": "Clau API de SearchApi",
 	"SearchApi API Key": "Clau API de SearchApi",
 	"SearchApi Engine": "Motor de SearchApi",
 	"SearchApi Engine": "Motor de SearchApi",
 	"Searched {{count}} sites_one": "S'ha cercat {{count}} una pàgina",
 	"Searched {{count}} sites_one": "S'ha cercat {{count}} una pàgina",
@@ -848,6 +852,8 @@
 	"WebUI Settings": "Preferències de WebUI",
 	"WebUI Settings": "Preferències de WebUI",
 	"WebUI will make requests to": "WebUI farà peticions a",
 	"WebUI will make requests to": "WebUI farà peticions a",
 	"What’s New in": "Què hi ha de nou a",
 	"What’s New in": "Què hi ha de nou a",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (local)",
 	"Whisper (Local)": "Whisper (local)",
 	"Widescreen Mode": "Mode de pantalla ampla",
 	"Widescreen Mode": "Mode de pantalla ampla",

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

@@ -172,6 +172,7 @@
 	"Created at": "Gihimo ang",
 	"Created at": "Gihimo ang",
 	"Created At": "",
 	"Created At": "",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "Kasamtangang modelo",
 	"Current Model": "Kasamtangang modelo",
 	"Current Password": "Kasamtangang Password",
 	"Current Password": "Kasamtangang Password",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} gipapas",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} gipapas",
 	"Deleted {{name}}": "",
 	"Deleted {{name}}": "",
 	"Description": "Deskripsyon",
 	"Description": "Deskripsyon",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "",
 	"Didn't fully follow instructions": "",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "Ngalan",
 	"Name": "Ngalan",
 	"Name your model": "",
 	"Name your model": "",
+	"Name your knowledge base": "",
 	"New Chat": "Bag-ong diskusyon",
 	"New Chat": "Bag-ong diskusyon",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Bag-ong Password",
 	"New Password": "Bag-ong Password",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "",
 	"Search Result Count": "",
 	"Search Tools": "",
 	"Search Tools": "",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "",
 	"Searched {{count}} sites_one": "",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "Mga Setting sa WebUI",
 	"WebUI Settings": "Mga Setting sa WebUI",
 	"WebUI will make requests to": "Ang WebUI maghimo mga hangyo sa",
 	"WebUI will make requests to": "Ang WebUI maghimo mga hangyo sa",
 	"What’s New in": "Unsay bag-o sa",
 	"What’s New in": "Unsay bag-o sa",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",

+ 6 - 0
src/lib/i18n/locales/cs-CZ/translation.json

@@ -172,6 +172,7 @@
 	"Created at": "Vytvořeno dne",
 	"Created at": "Vytvořeno dne",
 	"Created At": "Vytvořeno dne",
 	"Created At": "Vytvořeno dne",
 	"Created by": "Vytvořeno uživatelem",
 	"Created by": "Vytvořeno uživatelem",
+	"Create a knowledge base": "",
 	"CSV Import": "CSV import",
 	"CSV Import": "CSV import",
 	"Current Model": "Aktuální model",
 	"Current Model": "Aktuální model",
 	"Current Password": "Aktuální heslo",
 	"Current Password": "Aktuální heslo",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Smazáno {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Smazáno {{deleteModelTag}}",
 	"Deleted {{name}}": "Smazáno {{name}}",
 	"Deleted {{name}}": "Smazáno {{name}}",
 	"Description": "Popis",
 	"Description": "Popis",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Nenásledovali jste přesně všechny instrukce.",
 	"Didn't fully follow instructions": "Nenásledovali jste přesně všechny instrukce.",
 	"Disabled": "Zakázáno",
 	"Disabled": "Zakázáno",
 	"Discover a function": "Objevit funkci",
 	"Discover a function": "Objevit funkci",
@@ -485,6 +487,7 @@
 	"Move to Top": "Přesunout nahoru",
 	"Move to Top": "Přesunout nahoru",
 	"Name": "Jméno",
 	"Name": "Jméno",
 	"Name your model": "Pojmenujte svůj model",
 	"Name your model": "Pojmenujte svůj model",
+	"Name your knowledge base": "",
 	"New Chat": "Nový chat",
 	"New Chat": "Nový chat",
 	"New folder": "Nová složka",
 	"New folder": "Nová složka",
 	"New Password": "Nové heslo",
 	"New Password": "Nové heslo",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Generování dotazu na vyhledávání",
 	"Search Query Generation Prompt": "Generování dotazu na vyhledávání",
 	"Search Result Count": "Počet výsledků hledání",
 	"Search Result Count": "Počet výsledků hledání",
 	"Search Tools": "Nástroje pro vyhledávání",
 	"Search Tools": "Nástroje pro vyhledávání",
+	"Search options": "",
 	"SearchApi API Key": "Klíč API pro SearchApi",
 	"SearchApi API Key": "Klíč API pro SearchApi",
 	"SearchApi Engine": "Vyhledávací engine API",
 	"SearchApi Engine": "Vyhledávací engine API",
 	"Searched {{count}} sites_one": "Prohledáno {{count}} stránek_one",
 	"Searched {{count}} sites_one": "Prohledáno {{count}} stránek_one",
@@ -849,6 +853,8 @@
 	"WebUI Settings": "Nastavení WebUI",
 	"WebUI Settings": "Nastavení WebUI",
 	"WebUI will make requests to": "WebUI bude odesílat požadavky na",
 	"WebUI will make requests to": "WebUI bude odesílat požadavky na",
 	"What’s New in": "Co je nového v",
 	"What’s New in": "Co je nového v",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Lokálně)",
 	"Whisper (Local)": "Whisper (Lokálně)",
 	"Widescreen Mode": "Režim širokoúhlého zobrazení",
 	"Widescreen Mode": "Režim širokoúhlého zobrazení",

+ 6 - 0
src/lib/i18n/locales/da-DK/translation.json

@@ -172,6 +172,7 @@
 	"Created at": "Oprettet",
 	"Created at": "Oprettet",
 	"Created At": "Oprettet",
 	"Created At": "Oprettet",
 	"Created by": "Oprettet af",
 	"Created by": "Oprettet af",
+	"Create a knowledge base": "",
 	"CSV Import": "Importer CSV",
 	"CSV Import": "Importer CSV",
 	"Current Model": "Nuværende model",
 	"Current Model": "Nuværende model",
 	"Current Password": "Nuværende password",
 	"Current Password": "Nuværende password",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Slettede {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Slettede {{deleteModelTag}}",
 	"Deleted {{name}}": "Slettede {{name}}",
 	"Deleted {{name}}": "Slettede {{name}}",
 	"Description": "Beskrivelse",
 	"Description": "Beskrivelse",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Fulgte ikke instruktioner",
 	"Didn't fully follow instructions": "Fulgte ikke instruktioner",
 	"Disabled": "Inaktiv",
 	"Disabled": "Inaktiv",
 	"Discover a function": "Find en funktion",
 	"Discover a function": "Find en funktion",
@@ -485,6 +487,7 @@
 	"Move to Top": "Flyt til toppen",
 	"Move to Top": "Flyt til toppen",
 	"Name": "Navn",
 	"Name": "Navn",
 	"Name your model": "Navngiv din model",
 	"Name your model": "Navngiv din model",
+	"Name your knowledge base": "",
 	"New Chat": "Ny chat",
 	"New Chat": "Ny chat",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Ny adgangskode",
 	"New Password": "Ny adgangskode",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Prompt til generering af søgeforespørgsel",
 	"Search Query Generation Prompt": "Prompt til generering af søgeforespørgsel",
 	"Search Result Count": "Antal søgeresultater",
 	"Search Result Count": "Antal søgeresultater",
 	"Search Tools": "Søg i værktøjer",
 	"Search Tools": "Søg i værktøjer",
+	"Search options": "",
 	"SearchApi API Key": "SearchApi API-nøgle",
 	"SearchApi API Key": "SearchApi API-nøgle",
 	"SearchApi Engine": "SearchApi-engine",
 	"SearchApi Engine": "SearchApi-engine",
 	"Searched {{count}} sites_one": "Søgte {{count}} websted",
 	"Searched {{count}} sites_one": "Søgte {{count}} websted",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "WebUI-indstillinger",
 	"WebUI Settings": "WebUI-indstillinger",
 	"WebUI will make requests to": "WebUI vil sende forespørgsler til",
 	"WebUI will make requests to": "WebUI vil sende forespørgsler til",
 	"What’s New in": "Nyheder i",
 	"What’s New in": "Nyheder i",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (lokal)",
 	"Whisper (Local)": "Whisper (lokal)",
 	"Widescreen Mode": "Widescreen-tilstand",
 	"Widescreen Mode": "Widescreen-tilstand",

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

@@ -172,6 +172,7 @@
 	"Created at": "Erstellt am",
 	"Created at": "Erstellt am",
 	"Created At": "Erstellt am",
 	"Created At": "Erstellt am",
 	"Created by": "Erstellt von",
 	"Created by": "Erstellt von",
+	"Create a knowledge base": "",
 	"CSV Import": "CSV-Import",
 	"CSV Import": "CSV-Import",
 	"Current Model": "Aktuelles Modell",
 	"Current Model": "Aktuelles Modell",
 	"Current Password": "Aktuelles Passwort",
 	"Current Password": "Aktuelles Passwort",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} gelöscht",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} gelöscht",
 	"Deleted {{name}}": "{{name}} gelöscht",
 	"Deleted {{name}}": "{{name}} gelöscht",
 	"Description": "Beschreibung",
 	"Description": "Beschreibung",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Nicht genau den Answeisungen gefolgt",
 	"Didn't fully follow instructions": "Nicht genau den Answeisungen gefolgt",
 	"Disabled": "Deaktiviert",
 	"Disabled": "Deaktiviert",
 	"Discover a function": "Entdecken Sie weitere Funktionen",
 	"Discover a function": "Entdecken Sie weitere Funktionen",
@@ -485,6 +487,7 @@
 	"Move to Top": "Nach oben verschieben",
 	"Move to Top": "Nach oben verschieben",
 	"Name": "Name",
 	"Name": "Name",
 	"Name your model": "Benennen Sie Ihr Modell",
 	"Name your model": "Benennen Sie Ihr Modell",
+	"Name your knowledge base": "",
 	"New Chat": "Neue Unterhaltung",
 	"New Chat": "Neue Unterhaltung",
 	"New folder": "Neuer Ordner",
 	"New folder": "Neuer Ordner",
 	"New Password": "Neues Passwort",
 	"New Password": "Neues Passwort",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Suchanfragengenerierungsvorlage",
 	"Search Query Generation Prompt": "Suchanfragengenerierungsvorlage",
 	"Search Result Count": "Anzahl der Suchergebnisse",
 	"Search Result Count": "Anzahl der Suchergebnisse",
 	"Search Tools": "Werkzeuge durchsuchen...",
 	"Search Tools": "Werkzeuge durchsuchen...",
+	"Search options": "",
 	"SearchApi API Key": "SearchApi-API-Schlüssel",
 	"SearchApi API Key": "SearchApi-API-Schlüssel",
 	"SearchApi Engine": "SearchApi-Engine",
 	"SearchApi Engine": "SearchApi-Engine",
 	"Searched {{count}} sites_one": "{{count}} Seite durchsucht",
 	"Searched {{count}} sites_one": "{{count}} Seite durchsucht",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "WebUI-Einstellungen",
 	"WebUI Settings": "WebUI-Einstellungen",
 	"WebUI will make requests to": "WebUI sendet Anfragen an:",
 	"WebUI will make requests to": "WebUI sendet Anfragen an:",
 	"What’s New in": "Neuigkeiten von",
 	"What’s New in": "Neuigkeiten von",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (lokal)",
 	"Whisper (Local)": "Whisper (lokal)",
 	"Widescreen Mode": "Breitbildmodus",
 	"Widescreen Mode": "Breitbildmodus",

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

@@ -172,6 +172,7 @@
 	"Created at": "Created at",
 	"Created at": "Created at",
 	"Created At": "",
 	"Created At": "",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "Current Model",
 	"Current Model": "Current Model",
 	"Current Password": "Current Password",
 	"Current Password": "Current Password",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Deleted {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Deleted {{deleteModelTag}}",
 	"Deleted {{name}}": "",
 	"Deleted {{name}}": "",
 	"Description": "Description",
 	"Description": "Description",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "",
 	"Didn't fully follow instructions": "",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "Name",
 	"Name": "Name",
 	"Name your model": "",
 	"Name your model": "",
+	"Name your knowledge base": "",
 	"New Chat": "New Bark",
 	"New Chat": "New Bark",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "New Barkword",
 	"New Password": "New Barkword",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "",
 	"Search Result Count": "",
 	"Search Tools": "",
 	"Search Tools": "",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "",
 	"Searched {{count}} sites_one": "",
@@ -849,6 +853,8 @@
 	"WebUI Settings": "WebUI Settings much settings",
 	"WebUI Settings": "WebUI Settings much settings",
 	"WebUI will make requests to": "WebUI will make requests to much request",
 	"WebUI will make requests to": "WebUI will make requests to much request",
 	"What’s New in": "What’s New in much new",
 	"What’s New in": "What’s New in much new",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",

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

@@ -172,6 +172,7 @@
 	"Created at": "",
 	"Created at": "",
 	"Created At": "",
 	"Created At": "",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "",
 	"Current Model": "",
 	"Current Password": "",
 	"Current Password": "",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "",
 	"Deleted {{deleteModelTag}}": "",
 	"Deleted {{name}}": "",
 	"Deleted {{name}}": "",
 	"Description": "",
 	"Description": "",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "",
 	"Didn't fully follow instructions": "",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "",
 	"Name": "",
 	"Name your model": "",
 	"Name your model": "",
+	"Name your knowledge base": "",
 	"New Chat": "",
 	"New Chat": "",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "",
 	"New Password": "",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "",
 	"Search Result Count": "",
 	"Search Tools": "",
 	"Search Tools": "",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "",
 	"Searched {{count}} sites_one": "",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "",
 	"WebUI Settings": "",
 	"WebUI will make requests to": "",
 	"WebUI will make requests to": "",
 	"What’s New in": "",
 	"What’s New in": "",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",

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

@@ -172,6 +172,7 @@
 	"Created at": "",
 	"Created at": "",
 	"Created At": "",
 	"Created At": "",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "",
 	"Current Model": "",
 	"Current Password": "",
 	"Current Password": "",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "",
 	"Deleted {{deleteModelTag}}": "",
 	"Deleted {{name}}": "",
 	"Deleted {{name}}": "",
 	"Description": "",
 	"Description": "",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "",
 	"Didn't fully follow instructions": "",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "",
 	"Name": "",
 	"Name your model": "",
 	"Name your model": "",
+	"Name your knowledge base": "",
 	"New Chat": "",
 	"New Chat": "",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "",
 	"New Password": "",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "",
 	"Search Result Count": "",
 	"Search Tools": "",
 	"Search Tools": "",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "",
 	"Searched {{count}} sites_one": "",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "",
 	"WebUI Settings": "",
 	"WebUI will make requests to": "",
 	"WebUI will make requests to": "",
 	"What’s New in": "",
 	"What’s New in": "",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",

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

@@ -172,6 +172,7 @@
 	"Created at": "Creado en",
 	"Created at": "Creado en",
 	"Created At": "Creado en",
 	"Created At": "Creado en",
 	"Created by": "Creado por",
 	"Created by": "Creado por",
+	"Create a knowledge base": "",
 	"CSV Import": "Importa un CSV",
 	"CSV Import": "Importa un CSV",
 	"Current Model": "Modelo Actual",
 	"Current Model": "Modelo Actual",
 	"Current Password": "Contraseña Actual",
 	"Current Password": "Contraseña Actual",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Se borró {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Se borró {{deleteModelTag}}",
 	"Deleted {{name}}": "Eliminado {{nombre}}",
 	"Deleted {{name}}": "Eliminado {{nombre}}",
 	"Description": "Descripción",
 	"Description": "Descripción",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "No siguió las instrucciones",
 	"Didn't fully follow instructions": "No siguió las instrucciones",
 	"Disabled": "Desactivado",
 	"Disabled": "Desactivado",
 	"Discover a function": "Descubre una función",
 	"Discover a function": "Descubre una función",
@@ -485,6 +487,7 @@
 	"Move to Top": "Mueve al tope",
 	"Move to Top": "Mueve al tope",
 	"Name": "Nombre",
 	"Name": "Nombre",
 	"Name your model": "Asigne un nombre a su modelo",
 	"Name your model": "Asigne un nombre a su modelo",
+	"Name your knowledge base": "",
 	"New Chat": "Nuevo Chat",
 	"New Chat": "Nuevo Chat",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Nueva Contraseña",
 	"New Password": "Nueva Contraseña",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Búsqueda de consulta de generación de prompts",
 	"Search Query Generation Prompt": "Búsqueda de consulta de generación de prompts",
 	"Search Result Count": "Recuento de resultados de búsqueda",
 	"Search Result Count": "Recuento de resultados de búsqueda",
 	"Search Tools": "Búsqueda de herramientas",
 	"Search Tools": "Búsqueda de herramientas",
+	"Search options": "",
 	"SearchApi API Key": "Clave API de SearchApi",
 	"SearchApi API Key": "Clave API de SearchApi",
 	"SearchApi Engine": "Motor de SearchApi",
 	"SearchApi Engine": "Motor de SearchApi",
 	"Searched {{count}} sites_one": "Buscado {{count}} sites_one",
 	"Searched {{count}} sites_one": "Buscado {{count}} sites_one",
@@ -848,6 +852,8 @@
 	"WebUI Settings": "Configuración del WebUI",
 	"WebUI Settings": "Configuración del WebUI",
 	"WebUI will make requests to": "WebUI realizará solicitudes a",
 	"WebUI will make requests to": "WebUI realizará solicitudes a",
 	"What’s New in": "Novedades en",
 	"What’s New in": "Novedades en",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Local)",
 	"Whisper (Local)": "Whisper (Local)",
 	"Widescreen Mode": "Modo de pantalla ancha",
 	"Widescreen Mode": "Modo de pantalla ancha",

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

@@ -172,6 +172,7 @@
 	"Created at": "ایجاد شده در",
 	"Created at": "ایجاد شده در",
 	"Created At": "ایجاد شده در",
 	"Created At": "ایجاد شده در",
 	"Created by": "ایجاد شده توسط",
 	"Created by": "ایجاد شده توسط",
+	"Create a knowledge base": "",
 	"CSV Import": "درون\u200cریزی CSV",
 	"CSV Import": "درون\u200cریزی CSV",
 	"Current Model": "مدل فعلی",
 	"Current Model": "مدل فعلی",
 	"Current Password": "رمز عبور فعلی",
 	"Current Password": "رمز عبور فعلی",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} پاک شد",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} پاک شد",
 	"Deleted {{name}}": "حذف شده {{name}}",
 	"Deleted {{name}}": "حذف شده {{name}}",
 	"Description": "توضیحات",
 	"Description": "توضیحات",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "نمی تواند دستورالعمل را کامل پیگیری کند",
 	"Didn't fully follow instructions": "نمی تواند دستورالعمل را کامل پیگیری کند",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "نام",
 	"Name": "نام",
 	"Name your model": "نام مدل خود را",
 	"Name your model": "نام مدل خود را",
+	"Name your knowledge base": "",
 	"New Chat": "گپ جدید",
 	"New Chat": "گپ جدید",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "رمز عبور جدید",
 	"New Password": "رمز عبور جدید",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "تعداد نتایج جستجو",
 	"Search Result Count": "تعداد نتایج جستجو",
 	"Search Tools": "ابزارهای جستجو",
 	"Search Tools": "ابزارهای جستجو",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "جستجو {{count}} sites_one",
 	"Searched {{count}} sites_one": "جستجو {{count}} sites_one",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "تنظیمات WebUI",
 	"WebUI Settings": "تنظیمات WebUI",
 	"WebUI will make requests to": "WebUI درخواست\u200cها را ارسال خواهد کرد به",
 	"WebUI will make requests to": "WebUI درخواست\u200cها را ارسال خواهد کرد به",
 	"What’s New in": "موارد جدید در",
 	"What’s New in": "موارد جدید در",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "حالت صفحهٔ عریض",
 	"Widescreen Mode": "حالت صفحهٔ عریض",

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

@@ -172,6 +172,7 @@
 	"Created at": "Luotu",
 	"Created at": "Luotu",
 	"Created At": "Luotu",
 	"Created At": "Luotu",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "Nykyinen malli",
 	"Current Model": "Nykyinen malli",
 	"Current Password": "Nykyinen salasana",
 	"Current Password": "Nykyinen salasana",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Poistettu {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Poistettu {{deleteModelTag}}",
 	"Deleted {{name}}": "Poistettu {{nimi}}",
 	"Deleted {{name}}": "Poistettu {{nimi}}",
 	"Description": "Kuvaus",
 	"Description": "Kuvaus",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Ei noudattanut ohjeita täysin",
 	"Didn't fully follow instructions": "Ei noudattanut ohjeita täysin",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "Nimi",
 	"Name": "Nimi",
 	"Name your model": "Mallin nimeäminen",
 	"Name your model": "Mallin nimeäminen",
+	"Name your knowledge base": "",
 	"New Chat": "Uusi keskustelu",
 	"New Chat": "Uusi keskustelu",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Uusi salasana",
 	"New Password": "Uusi salasana",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "Hakutulosten määrä",
 	"Search Result Count": "Hakutulosten määrä",
 	"Search Tools": "",
 	"Search Tools": "",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Haettu {{count}} sites_one",
 	"Searched {{count}} sites_one": "Haettu {{count}} sites_one",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "WebUI-asetukset",
 	"WebUI Settings": "WebUI-asetukset",
 	"WebUI will make requests to": "WebUI tekee pyyntöjä",
 	"WebUI will make requests to": "WebUI tekee pyyntöjä",
 	"What’s New in": "Mitä uutta",
 	"What’s New in": "Mitä uutta",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",

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

@@ -172,6 +172,7 @@
 	"Created at": "Créé à",
 	"Created at": "Créé à",
 	"Created At": "Créé le",
 	"Created At": "Créé le",
 	"Created by": "Créé par",
 	"Created by": "Créé par",
+	"Create a knowledge base": "",
 	"CSV Import": "Import CSV",
 	"CSV Import": "Import CSV",
 	"Current Model": "Modèle actuel amélioré",
 	"Current Model": "Modèle actuel amélioré",
 	"Current Password": "Mot de passe actuel",
 	"Current Password": "Mot de passe actuel",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Supprimé {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Supprimé {{deleteModelTag}}",
 	"Deleted {{name}}": "Supprimé {{name}}",
 	"Deleted {{name}}": "Supprimé {{name}}",
 	"Description": "Description",
 	"Description": "Description",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "N'a pas entièrement respecté les instructions",
 	"Didn't fully follow instructions": "N'a pas entièrement respecté les instructions",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "Découvrez une fonction",
 	"Discover a function": "Découvrez une fonction",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "Nom",
 	"Name": "Nom",
 	"Name your model": "Nommez votre modèle",
 	"Name your model": "Nommez votre modèle",
+	"Name your knowledge base": "",
 	"New Chat": "Nouvelle conversation",
 	"New Chat": "Nouvelle conversation",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Nouveau mot de passe",
 	"New Password": "Nouveau mot de passe",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Génération d'interrogation de recherche",
 	"Search Query Generation Prompt": "Génération d'interrogation de recherche",
 	"Search Result Count": "Nombre de résultats de recherche",
 	"Search Result Count": "Nombre de résultats de recherche",
 	"Search Tools": "Outils de recherche",
 	"Search Tools": "Outils de recherche",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Recherché {{count}} site(s)_one",
 	"Searched {{count}} sites_one": "Recherché {{count}} site(s)_one",
@@ -848,6 +852,8 @@
 	"WebUI Settings": "Paramètres de WebUI",
 	"WebUI Settings": "Paramètres de WebUI",
 	"WebUI will make requests to": "WebUI effectuera des requêtes vers",
 	"WebUI will make requests to": "WebUI effectuera des requêtes vers",
 	"What’s New in": "Quoi de neuf",
 	"What’s New in": "Quoi de neuf",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (local)",
 	"Whisper (Local)": "Whisper (local)",
 	"Widescreen Mode": "Mode Grand Écran",
 	"Widescreen Mode": "Mode Grand Écran",

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

@@ -172,6 +172,7 @@
 	"Created at": "Créé le",
 	"Created at": "Créé le",
 	"Created At": "Créé le",
 	"Created At": "Créé le",
 	"Created by": "Créé par",
 	"Created by": "Créé par",
+	"Create a knowledge base": "",
 	"CSV Import": "Import CSV",
 	"CSV Import": "Import CSV",
 	"Current Model": "Modèle actuel",
 	"Current Model": "Modèle actuel",
 	"Current Password": "Mot de passe actuel",
 	"Current Password": "Mot de passe actuel",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Supprimé {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Supprimé {{deleteModelTag}}",
 	"Deleted {{name}}": "Supprimé {{name}}",
 	"Deleted {{name}}": "Supprimé {{name}}",
 	"Description": "Description",
 	"Description": "Description",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "N'a pas entièrement respecté les instructions",
 	"Didn't fully follow instructions": "N'a pas entièrement respecté les instructions",
 	"Disabled": "Désactivé",
 	"Disabled": "Désactivé",
 	"Discover a function": "Trouvez une fonction",
 	"Discover a function": "Trouvez une fonction",
@@ -485,6 +487,7 @@
 	"Move to Top": "Déplacer en haut",
 	"Move to Top": "Déplacer en haut",
 	"Name": "Nom d'utilisateur",
 	"Name": "Nom d'utilisateur",
 	"Name your model": "Nommez votre modèle",
 	"Name your model": "Nommez votre modèle",
+	"Name your knowledge base": "",
 	"New Chat": "Nouvelle conversation",
 	"New Chat": "Nouvelle conversation",
 	"New folder": "Nouveau dossier",
 	"New folder": "Nouveau dossier",
 	"New Password": "Nouveau mot de passe",
 	"New Password": "Nouveau mot de passe",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Rechercher des prompts de génération de requête",
 	"Search Query Generation Prompt": "Rechercher des prompts de génération de requête",
 	"Search Result Count": "Nombre de résultats de recherche",
 	"Search Result Count": "Nombre de résultats de recherche",
 	"Search Tools": "Rechercher des outils",
 	"Search Tools": "Rechercher des outils",
+	"Search options": "",
 	"SearchApi API Key": "Clé API SearchApi",
 	"SearchApi API Key": "Clé API SearchApi",
 	"SearchApi Engine": "Moteur de recherche SearchApi",
 	"SearchApi Engine": "Moteur de recherche SearchApi",
 	"Searched {{count}} sites_one": "Recherché {{count}} site(s)_one",
 	"Searched {{count}} sites_one": "Recherché {{count}} site(s)_one",
@@ -848,6 +852,8 @@
 	"WebUI Settings": "Paramètres de WebUI",
 	"WebUI Settings": "Paramètres de WebUI",
 	"WebUI will make requests to": "WebUI effectuera des requêtes vers",
 	"WebUI will make requests to": "WebUI effectuera des requêtes vers",
 	"What’s New in": "Quoi de neuf dans",
 	"What’s New in": "Quoi de neuf dans",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (local)",
 	"Whisper (Local)": "Whisper (local)",
 	"Widescreen Mode": "Mode grand écran",
 	"Widescreen Mode": "Mode grand écran",

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

@@ -172,6 +172,7 @@
 	"Created at": "נוצר ב",
 	"Created at": "נוצר ב",
 	"Created At": "נוצר ב",
 	"Created At": "נוצר ב",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "המודל הנוכחי",
 	"Current Model": "המודל הנוכחי",
 	"Current Password": "הסיסמה הנוכחית",
 	"Current Password": "הסיסמה הנוכחית",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "נמחק {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "נמחק {{deleteModelTag}}",
 	"Deleted {{name}}": "נמחק {{name}}",
 	"Deleted {{name}}": "נמחק {{name}}",
 	"Description": "תיאור",
 	"Description": "תיאור",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "לא עקב אחרי ההוראות באופן מלא",
 	"Didn't fully follow instructions": "לא עקב אחרי ההוראות באופן מלא",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "שם",
 	"Name": "שם",
 	"Name your model": "תן שם לדגם שלך",
 	"Name your model": "תן שם לדגם שלך",
+	"Name your knowledge base": "",
 	"New Chat": "צ'אט חדש",
 	"New Chat": "צ'אט חדש",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "סיסמה חדשה",
 	"New Password": "סיסמה חדשה",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "ספירת תוצאות חיפוש",
 	"Search Result Count": "ספירת תוצאות חיפוש",
 	"Search Tools": "",
 	"Search Tools": "",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "חיפש {{count}} sites_one",
 	"Searched {{count}} sites_one": "חיפש {{count}} sites_one",
@@ -848,6 +852,8 @@
 	"WebUI Settings": "הגדרות WebUI",
 	"WebUI Settings": "הגדרות WebUI",
 	"WebUI will make requests to": "WebUI יבקש לבקש",
 	"WebUI will make requests to": "WebUI יבקש לבקש",
 	"What’s New in": "מה חדש ב",
 	"What’s New in": "מה חדש ב",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",

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

@@ -172,6 +172,7 @@
 	"Created at": "किस समय बनाया गया",
 	"Created at": "किस समय बनाया गया",
 	"Created At": "किस समय बनाया गया",
 	"Created At": "किस समय बनाया गया",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "वर्तमान मॉडल",
 	"Current Model": "वर्तमान मॉडल",
 	"Current Password": "वर्तमान पासवर्ड",
 	"Current Password": "वर्तमान पासवर्ड",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} हटा दिया गया",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} हटा दिया गया",
 	"Deleted {{name}}": "{{name}} हटा दिया गया",
 	"Deleted {{name}}": "{{name}} हटा दिया गया",
 	"Description": "विवरण",
 	"Description": "विवरण",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "निर्देशों का पूरी तरह से पालन नहीं किया",
 	"Didn't fully follow instructions": "निर्देशों का पूरी तरह से पालन नहीं किया",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "नाम",
 	"Name": "नाम",
 	"Name your model": "अपने मॉडल को नाम दें",
 	"Name your model": "अपने मॉडल को नाम दें",
+	"Name your knowledge base": "",
 	"New Chat": "नई चैट",
 	"New Chat": "नई चैट",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "नया पासवर्ड",
 	"New Password": "नया पासवर्ड",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "खोज परिणामों की संख्या",
 	"Search Result Count": "खोज परिणामों की संख्या",
 	"Search Tools": "",
 	"Search Tools": "",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "{{count}} sites_one खोजा गया",
 	"Searched {{count}} sites_one": "{{count}} sites_one खोजा गया",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "WebUI सेटिंग्स",
 	"WebUI Settings": "WebUI सेटिंग्स",
 	"WebUI will make requests to": "WebUI अनुरोध करेगा",
 	"WebUI will make requests to": "WebUI अनुरोध करेगा",
 	"What’s New in": "इसमें नया क्या है",
 	"What’s New in": "इसमें नया क्या है",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",

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

@@ -172,6 +172,7 @@
 	"Created at": "Stvoreno",
 	"Created at": "Stvoreno",
 	"Created At": "Stvoreno",
 	"Created At": "Stvoreno",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "Trenutni model",
 	"Current Model": "Trenutni model",
 	"Current Password": "Trenutna lozinka",
 	"Current Password": "Trenutna lozinka",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Izbrisan {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Izbrisan {{deleteModelTag}}",
 	"Deleted {{name}}": "Izbrisano {{name}}",
 	"Deleted {{name}}": "Izbrisano {{name}}",
 	"Description": "Opis",
 	"Description": "Opis",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Nije u potpunosti slijedio upute",
 	"Didn't fully follow instructions": "Nije u potpunosti slijedio upute",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "Ime",
 	"Name": "Ime",
 	"Name your model": "Dodijelite naziv modelu",
 	"Name your model": "Dodijelite naziv modelu",
+	"Name your knowledge base": "",
 	"New Chat": "Novi razgovor",
 	"New Chat": "Novi razgovor",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Nova lozinka",
 	"New Password": "Nova lozinka",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Upit za generiranje upita za pretraživanje",
 	"Search Query Generation Prompt": "Upit za generiranje upita za pretraživanje",
 	"Search Result Count": "Broj rezultata pretraživanja",
 	"Search Result Count": "Broj rezultata pretraživanja",
 	"Search Tools": "Alati za pretraživanje",
 	"Search Tools": "Alati za pretraživanje",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Pretraženo {{count}} sites_one",
 	"Searched {{count}} sites_one": "Pretraženo {{count}} sites_one",
@@ -848,6 +852,8 @@
 	"WebUI Settings": "WebUI postavke",
 	"WebUI Settings": "WebUI postavke",
 	"WebUI will make requests to": "WebUI će slati zahtjeve na",
 	"WebUI will make requests to": "WebUI će slati zahtjeve na",
 	"What’s New in": "Što je novo u",
 	"What’s New in": "Što je novo u",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (lokalno)",
 	"Whisper (Local)": "Whisper (lokalno)",
 	"Widescreen Mode": "Mod širokog zaslona",
 	"Widescreen Mode": "Mod širokog zaslona",

+ 6 - 0
src/lib/i18n/locales/hu-HU/translation.json

@@ -172,6 +172,7 @@
 	"Created at": "Létrehozva",
 	"Created at": "Létrehozva",
 	"Created At": "Létrehozva",
 	"Created At": "Létrehozva",
 	"Created by": "Létrehozta",
 	"Created by": "Létrehozta",
+	"Create a knowledge base": "",
 	"CSV Import": "CSV importálás",
 	"CSV Import": "CSV importálás",
 	"Current Model": "Jelenlegi modell",
 	"Current Model": "Jelenlegi modell",
 	"Current Password": "Jelenlegi jelszó",
 	"Current Password": "Jelenlegi jelszó",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} törölve",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} törölve",
 	"Deleted {{name}}": "{{name}} törölve",
 	"Deleted {{name}}": "{{name}} törölve",
 	"Description": "Leírás",
 	"Description": "Leírás",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Nem követte teljesen az utasításokat",
 	"Didn't fully follow instructions": "Nem követte teljesen az utasításokat",
 	"Disabled": "Letiltva",
 	"Disabled": "Letiltva",
 	"Discover a function": "Funkció felfedezése",
 	"Discover a function": "Funkció felfedezése",
@@ -485,6 +487,7 @@
 	"Move to Top": "Mozgatás felülre",
 	"Move to Top": "Mozgatás felülre",
 	"Name": "Név",
 	"Name": "Név",
 	"Name your model": "Nevezze el a modelljét",
 	"Name your model": "Nevezze el a modelljét",
+	"Name your knowledge base": "",
 	"New Chat": "Új beszélgetés",
 	"New Chat": "Új beszélgetés",
 	"New folder": "Új mappa",
 	"New folder": "Új mappa",
 	"New Password": "Új jelszó",
 	"New Password": "Új jelszó",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Keresési lekérdezés generálási prompt",
 	"Search Query Generation Prompt": "Keresési lekérdezés generálási prompt",
 	"Search Result Count": "Keresési találatok száma",
 	"Search Result Count": "Keresési találatok száma",
 	"Search Tools": "Eszközök keresése",
 	"Search Tools": "Eszközök keresése",
+	"Search options": "",
 	"SearchApi API Key": "SearchApi API kulcs",
 	"SearchApi API Key": "SearchApi API kulcs",
 	"SearchApi Engine": "SearchApi motor",
 	"SearchApi Engine": "SearchApi motor",
 	"Searched {{count}} sites_one": "{{count}} oldal keresve",
 	"Searched {{count}} sites_one": "{{count}} oldal keresve",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "WebUI beállítások",
 	"WebUI Settings": "WebUI beállítások",
 	"WebUI will make requests to": "A WebUI kéréseket fog küldeni ide:",
 	"WebUI will make requests to": "A WebUI kéréseket fog küldeni ide:",
 	"What’s New in": "",
 	"What’s New in": "",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (helyi)",
 	"Whisper (Local)": "Whisper (helyi)",
 	"Widescreen Mode": "Szélesvásznú mód",
 	"Widescreen Mode": "Szélesvásznú mód",

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

@@ -172,6 +172,7 @@
 	"Created at": "Dibuat di",
 	"Created at": "Dibuat di",
 	"Created At": "Dibuat di",
 	"Created At": "Dibuat di",
 	"Created by": "Dibuat oleh",
 	"Created by": "Dibuat oleh",
+	"Create a knowledge base": "",
 	"CSV Import": "Impor CSV",
 	"CSV Import": "Impor CSV",
 	"Current Model": "Model Saat Ini",
 	"Current Model": "Model Saat Ini",
 	"Current Password": "Kata Sandi Saat Ini",
 	"Current Password": "Kata Sandi Saat Ini",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Menghapus {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Menghapus {{deleteModelTag}}",
 	"Deleted {{name}}": "Menghapus {{name}}",
 	"Deleted {{name}}": "Menghapus {{name}}",
 	"Description": "Deskripsi",
 	"Description": "Deskripsi",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Tidak sepenuhnya mengikuti instruksi",
 	"Didn't fully follow instructions": "Tidak sepenuhnya mengikuti instruksi",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "Menemukan sebuah fungsi",
 	"Discover a function": "Menemukan sebuah fungsi",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "Nama",
 	"Name": "Nama",
 	"Name your model": "Beri nama model Anda",
 	"Name your model": "Beri nama model Anda",
+	"Name your knowledge base": "",
 	"New Chat": "Obrolan Baru",
 	"New Chat": "Obrolan Baru",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Kata Sandi Baru",
 	"New Password": "Kata Sandi Baru",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Permintaan Pembuatan Kueri Pencarian",
 	"Search Query Generation Prompt": "Permintaan Pembuatan Kueri Pencarian",
 	"Search Result Count": "Jumlah Hasil Pencarian",
 	"Search Result Count": "Jumlah Hasil Pencarian",
 	"Search Tools": "Alat Pencarian",
 	"Search Tools": "Alat Pencarian",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Mencari {{count}} situs_satu",
 	"Searched {{count}} sites_one": "Mencari {{count}} situs_satu",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "Pengaturan WebUI",
 	"WebUI Settings": "Pengaturan WebUI",
 	"WebUI will make requests to": "WebUI akan membuat permintaan ke",
 	"WebUI will make requests to": "WebUI akan membuat permintaan ke",
 	"What’s New in": "Apa yang Baru di",
 	"What’s New in": "Apa yang Baru di",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Bisikan (Lokal)",
 	"Whisper (Local)": "Bisikan (Lokal)",
 	"Widescreen Mode": "Mode Layar Lebar",
 	"Widescreen Mode": "Mode Layar Lebar",

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

@@ -172,6 +172,7 @@
 	"Created at": "Cruthaithe ag",
 	"Created at": "Cruthaithe ag",
 	"Created At": "Cruthaithe Ag",
 	"Created At": "Cruthaithe Ag",
 	"Created by": "Cruthaithe ag",
 	"Created by": "Cruthaithe ag",
+	"Create a knowledge base": "",
 	"CSV Import": "Iompórtáil CSV",
 	"CSV Import": "Iompórtáil CSV",
 	"Current Model": "Samhail Reatha",
 	"Current Model": "Samhail Reatha",
 	"Current Password": "Pasfhocal Reatha",
 	"Current Password": "Pasfhocal Reatha",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Scriosta {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Scriosta {{deleteModelTag}}",
 	"Deleted {{name}}": "Scriosta {{name}}",
 	"Deleted {{name}}": "Scriosta {{name}}",
 	"Description": "Cur síos",
 	"Description": "Cur síos",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Níor lean sé treoracha go hiomlán",
 	"Didn't fully follow instructions": "Níor lean sé treoracha go hiomlán",
 	"Disabled": "Díchumasaithe",
 	"Disabled": "Díchumasaithe",
 	"Discover a function": "Faigh amach feidhm",
 	"Discover a function": "Faigh amach feidhm",
@@ -485,6 +487,7 @@
 	"Move to Top": "Bogadh go dtí an Barr",
 	"Move to Top": "Bogadh go dtí an Barr",
 	"Name": "Ainm",
 	"Name": "Ainm",
 	"Name your model": "Ainmnigh do mhúnla",
 	"Name your model": "Ainmnigh do mhúnla",
+	"Name your knowledge base": "",
 	"New Chat": "Comhrá Nua",
 	"New Chat": "Comhrá Nua",
 	"New folder": "Fillteán nua",
 	"New folder": "Fillteán nua",
 	"New Password": "Pasfhocal Nua",
 	"New Password": "Pasfhocal Nua",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Pras Giniúint Ceist Cuardaigh",
 	"Search Query Generation Prompt": "Pras Giniúint Ceist Cuardaigh",
 	"Search Result Count": "Líon Torthaí Cuardaigh",
 	"Search Result Count": "Líon Torthaí Cuardaigh",
 	"Search Tools": "Uirlisí Cuardaigh",
 	"Search Tools": "Uirlisí Cuardaigh",
+	"Search options": "",
 	"SearchApi API Key": "Eochair API SearchAPI",
 	"SearchApi API Key": "Eochair API SearchAPI",
 	"SearchApi Engine": "Inneall SearchAPI",
 	"SearchApi Engine": "Inneall SearchAPI",
 	"Searched {{count}} sites_one": "Cuardaigh {{count}} sites_one",
 	"Searched {{count}} sites_one": "Cuardaigh {{count}} sites_one",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "Socruithe WebUI",
 	"WebUI Settings": "Socruithe WebUI",
 	"WebUI will make requests to": "Déanfaidh WebUI iarratais chuig",
 	"WebUI will make requests to": "Déanfaidh WebUI iarratais chuig",
 	"What’s New in": "Cad atá Nua i",
 	"What’s New in": "Cad atá Nua i",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Áitiúil)",
 	"Whisper (Local)": "Whisper (Áitiúil)",
 	"Widescreen Mode": "Mód Leathanscáileán",
 	"Widescreen Mode": "Mód Leathanscáileán",

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

@@ -172,6 +172,7 @@
 	"Created at": "Creato il",
 	"Created at": "Creato il",
 	"Created At": "Creato il",
 	"Created At": "Creato il",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "Modello corrente",
 	"Current Model": "Modello corrente",
 	"Current Password": "Password corrente",
 	"Current Password": "Password corrente",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Eliminato {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Eliminato {{deleteModelTag}}",
 	"Deleted {{name}}": "Eliminato {{name}}",
 	"Deleted {{name}}": "Eliminato {{name}}",
 	"Description": "Descrizione",
 	"Description": "Descrizione",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Non ha seguito completamente le istruzioni",
 	"Didn't fully follow instructions": "Non ha seguito completamente le istruzioni",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "Nome",
 	"Name": "Nome",
 	"Name your model": "Assegna un nome al tuo modello",
 	"Name your model": "Assegna un nome al tuo modello",
+	"Name your knowledge base": "",
 	"New Chat": "Nuova chat",
 	"New Chat": "Nuova chat",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Nuova password",
 	"New Password": "Nuova password",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "Conteggio dei risultati della ricerca",
 	"Search Result Count": "Conteggio dei risultati della ricerca",
 	"Search Tools": "",
 	"Search Tools": "",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Ricercato {{count}} sites_one",
 	"Searched {{count}} sites_one": "Ricercato {{count}} sites_one",
@@ -848,6 +852,8 @@
 	"WebUI Settings": "Impostazioni WebUI",
 	"WebUI Settings": "Impostazioni WebUI",
 	"WebUI will make requests to": "WebUI effettuerà richieste a",
 	"WebUI will make requests to": "WebUI effettuerà richieste a",
 	"What’s New in": "Novità in",
 	"What’s New in": "Novità in",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",

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

@@ -172,6 +172,7 @@
 	"Created at": "作成日時",
 	"Created at": "作成日時",
 	"Created At": "作成日時",
 	"Created At": "作成日時",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "CSVインポート",
 	"CSV Import": "CSVインポート",
 	"Current Model": "現在のモデル",
 	"Current Model": "現在のモデル",
 	"Current Password": "現在のパスワード",
 	"Current Password": "現在のパスワード",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} を削除しました",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} を削除しました",
 	"Deleted {{name}}": "{{name}}を削除しました",
 	"Deleted {{name}}": "{{name}}を削除しました",
 	"Description": "説明",
 	"Description": "説明",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "説明に沿って操作していませんでした",
 	"Didn't fully follow instructions": "説明に沿って操作していませんでした",
 	"Disabled": "無効",
 	"Disabled": "無効",
 	"Discover a function": "Functionを探す",
 	"Discover a function": "Functionを探す",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "名前",
 	"Name": "名前",
 	"Name your model": "モデルに名前を付ける",
 	"Name your model": "モデルに名前を付ける",
+	"Name your knowledge base": "",
 	"New Chat": "新しいチャット",
 	"New Chat": "新しいチャット",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "新しいパスワード",
 	"New Password": "新しいパスワード",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "検索クエリ生成プロンプト",
 	"Search Query Generation Prompt": "検索クエリ生成プロンプト",
 	"Search Result Count": "検索結果数",
 	"Search Result Count": "検索結果数",
 	"Search Tools": "ツールの検索",
 	"Search Tools": "ツールの検索",
+	"Search options": "",
 	"SearchApi API Key": "SearchApiのAPIKey",
 	"SearchApi API Key": "SearchApiのAPIKey",
 	"SearchApi Engine": "SearchApiエンジン",
 	"SearchApi Engine": "SearchApiエンジン",
 	"Searched {{count}} sites_other": "{{count}} sites_other検索",
 	"Searched {{count}} sites_other": "{{count}} sites_other検索",
@@ -846,6 +850,8 @@
 	"WebUI Settings": "WebUI 設定",
 	"WebUI Settings": "WebUI 設定",
 	"WebUI will make requests to": "WebUI は次に対してリクエストを行います",
 	"WebUI will make requests to": "WebUI は次に対してリクエストを行います",
 	"What’s New in": "新機能",
 	"What’s New in": "新機能",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "ワイドスクリーンモード",
 	"Widescreen Mode": "ワイドスクリーンモード",

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

@@ -172,6 +172,7 @@
 	"Created at": "შექმნილია",
 	"Created at": "შექმნილია",
 	"Created At": "შექმნილია",
 	"Created At": "შექმნილია",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "მიმდინარე მოდელი",
 	"Current Model": "მიმდინარე მოდელი",
 	"Current Password": "მიმდინარე პაროლი",
 	"Current Password": "მიმდინარე პაროლი",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} წაშლილია",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} წაშლილია",
 	"Deleted {{name}}": "Deleted {{name}}",
 	"Deleted {{name}}": "Deleted {{name}}",
 	"Description": "აღწერა",
 	"Description": "აღწერა",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "ვერ ყველა ინფორმაციისთვის ვერ ხელახლა ჩაწერე",
 	"Didn't fully follow instructions": "ვერ ყველა ინფორმაციისთვის ვერ ხელახლა ჩაწერე",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "სახელი",
 	"Name": "სახელი",
 	"Name your model": "დაასახელეთ თქვენი მოდელი",
 	"Name your model": "დაასახელეთ თქვენი მოდელი",
+	"Name your knowledge base": "",
 	"New Chat": "ახალი მიმოწერა",
 	"New Chat": "ახალი მიმოწერა",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "ახალი პაროლი",
 	"New Password": "ახალი პაროლი",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "ძიების შედეგების რაოდენობა",
 	"Search Result Count": "ძიების შედეგების რაოდენობა",
 	"Search Tools": "",
 	"Search Tools": "",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Searched {{count}} sites_one",
 	"Searched {{count}} sites_one": "Searched {{count}} sites_one",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "WebUI პარამეტრები",
 	"WebUI Settings": "WebUI პარამეტრები",
 	"WebUI will make requests to": "WebUI გამოგიგზავნით მოთხოვნებს",
 	"WebUI will make requests to": "WebUI გამოგიგზავნით მოთხოვნებს",
 	"What’s New in": "რა არის ახალი",
 	"What’s New in": "რა არის ახალი",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",

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

@@ -172,6 +172,7 @@
 	"Created at": "생성일",
 	"Created at": "생성일",
 	"Created At": "생성일",
 	"Created At": "생성일",
 	"Created by": "생성자",
 	"Created by": "생성자",
+	"Create a knowledge base": "",
 	"CSV Import": "CSV 가져오기",
 	"CSV Import": "CSV 가져오기",
 	"Current Model": "현재 모델",
 	"Current Model": "현재 모델",
 	"Current Password": "현재 비밀번호",
 	"Current Password": "현재 비밀번호",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} 삭제됨",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} 삭제됨",
 	"Deleted {{name}}": "{{name}}을(를) 삭제했습니다.",
 	"Deleted {{name}}": "{{name}}을(를) 삭제했습니다.",
 	"Description": "설명",
 	"Description": "설명",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "완전히 지침을 따르지 않음",
 	"Didn't fully follow instructions": "완전히 지침을 따르지 않음",
 	"Disabled": "제한됨",
 	"Disabled": "제한됨",
 	"Discover a function": "함수 검색",
 	"Discover a function": "함수 검색",
@@ -485,6 +487,7 @@
 	"Move to Top": "맨 위로 이동",
 	"Move to Top": "맨 위로 이동",
 	"Name": "이름",
 	"Name": "이름",
 	"Name your model": "모델 이름 지정",
 	"Name your model": "모델 이름 지정",
+	"Name your knowledge base": "",
 	"New Chat": "새 채팅",
 	"New Chat": "새 채팅",
 	"New folder": "새 폴더",
 	"New folder": "새 폴더",
 	"New Password": "새 비밀번호",
 	"New Password": "새 비밀번호",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "쿼리 생성 프롬프트 검색",
 	"Search Query Generation Prompt": "쿼리 생성 프롬프트 검색",
 	"Search Result Count": "검색 결과 수",
 	"Search Result Count": "검색 결과 수",
 	"Search Tools": "검색 도구",
 	"Search Tools": "검색 도구",
+	"Search options": "",
 	"SearchApi API Key": "SearchApi API 키",
 	"SearchApi API Key": "SearchApi API 키",
 	"SearchApi Engine": "SearchApi 엔진",
 	"SearchApi Engine": "SearchApi 엔진",
 	"Searched {{count}} sites_one": "sites_one {{count}} 검색됨",
 	"Searched {{count}} sites_one": "sites_one {{count}} 검색됨",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "WebUI 설정",
 	"WebUI Settings": "WebUI 설정",
 	"WebUI will make requests to": "WebUI 요청 대상:",
 	"WebUI will make requests to": "WebUI 요청 대상:",
 	"What’s New in": "새로운 기능:",
 	"What’s New in": "새로운 기능:",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (로컬)",
 	"Whisper (Local)": "Whisper (로컬)",
 	"Widescreen Mode": "와이드스크린 모드",
 	"Widescreen Mode": "와이드스크린 모드",

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

@@ -172,6 +172,7 @@
 	"Created at": "Sukurta",
 	"Created at": "Sukurta",
 	"Created At": "Sukurta",
 	"Created At": "Sukurta",
 	"Created by": "Sukurta",
 	"Created by": "Sukurta",
+	"Create a knowledge base": "",
 	"CSV Import": "CSV importavimas",
 	"CSV Import": "CSV importavimas",
 	"Current Model": "Dabartinis modelis",
 	"Current Model": "Dabartinis modelis",
 	"Current Password": "Esamas slaptažodis",
 	"Current Password": "Esamas slaptažodis",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} ištrinta",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} ištrinta",
 	"Deleted {{name}}": "Ištrinta {{name}}",
 	"Deleted {{name}}": "Ištrinta {{name}}",
 	"Description": "Aprašymas",
 	"Description": "Aprašymas",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Pilnai nesekė instrukcijų",
 	"Didn't fully follow instructions": "Pilnai nesekė instrukcijų",
 	"Disabled": "Išjungta",
 	"Disabled": "Išjungta",
 	"Discover a function": "Atrasti funkciją",
 	"Discover a function": "Atrasti funkciją",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "Pavadinimas",
 	"Name": "Pavadinimas",
 	"Name your model": "Pavadinkite savo modelį",
 	"Name your model": "Pavadinkite savo modelį",
+	"Name your knowledge base": "",
 	"New Chat": "Naujas pokalbis",
 	"New Chat": "Naujas pokalbis",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Naujas slaptažodis",
 	"New Password": "Naujas slaptažodis",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Paieškos užklausos generavimo formuluotė",
 	"Search Query Generation Prompt": "Paieškos užklausos generavimo formuluotė",
 	"Search Result Count": "Paieškos rezultatų skaičius",
 	"Search Result Count": "Paieškos rezultatų skaičius",
 	"Search Tools": "Paieškos įrankiai",
 	"Search Tools": "Paieškos įrankiai",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Ieškota {{count}} sites_one",
 	"Searched {{count}} sites_one": "Ieškota {{count}} sites_one",
@@ -849,6 +853,8 @@
 	"WebUI Settings": "WebUI parametrai",
 	"WebUI Settings": "WebUI parametrai",
 	"WebUI will make requests to": "WebUI vykdys užklausas",
 	"WebUI will make requests to": "WebUI vykdys užklausas",
 	"What’s New in": "Kas naujo",
 	"What’s New in": "Kas naujo",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (lokalus)",
 	"Whisper (Local)": "Whisper (lokalus)",
 	"Widescreen Mode": "Plataus ekrano rėžimas",
 	"Widescreen Mode": "Plataus ekrano rėžimas",

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

@@ -172,6 +172,7 @@
 	"Created at": "Dicipta di",
 	"Created at": "Dicipta di",
 	"Created At": "Dicipta Pada",
 	"Created At": "Dicipta Pada",
 	"Created by": "Dicipta oleh",
 	"Created by": "Dicipta oleh",
+	"Create a knowledge base": "",
 	"CSV Import": "Import CSV",
 	"CSV Import": "Import CSV",
 	"Current Model": "Model Semasa",
 	"Current Model": "Model Semasa",
 	"Current Password": "Kata laluan semasa",
 	"Current Password": "Kata laluan semasa",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} dipadam",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} dipadam",
 	"Deleted {{name}}": "{{name}} dipadam",
 	"Deleted {{name}}": "{{name}} dipadam",
 	"Description": "Penerangan",
 	"Description": "Penerangan",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Tidak mengikut arahan sepenuhnya",
 	"Didn't fully follow instructions": "Tidak mengikut arahan sepenuhnya",
 	"Disabled": "Dilumpuhkan",
 	"Disabled": "Dilumpuhkan",
 	"Discover a function": "Temui fungsi",
 	"Discover a function": "Temui fungsi",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "Nama",
 	"Name": "Nama",
 	"Name your model": "Namakan Model Anda",
 	"Name your model": "Namakan Model Anda",
+	"Name your knowledge base": "",
 	"New Chat": "Perbualan Baru",
 	"New Chat": "Perbualan Baru",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Kata Laluan Baru",
 	"New Password": "Kata Laluan Baru",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Carian Penjanaan Pertanyaan Gesaan",
 	"Search Query Generation Prompt": "Carian Penjanaan Pertanyaan Gesaan",
 	"Search Result Count": "Kiraan Hasil Carian",
 	"Search Result Count": "Kiraan Hasil Carian",
 	"Search Tools": "Alat Carian",
 	"Search Tools": "Alat Carian",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Mencari {{count}} sites_one",
 	"Searched {{count}} sites_one": "Mencari {{count}} sites_one",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "Tetapan WebUI",
 	"WebUI Settings": "Tetapan WebUI",
 	"WebUI will make requests to": "WebUI akan membuat permintaan kepada",
 	"WebUI will make requests to": "WebUI akan membuat permintaan kepada",
 	"What’s New in": "Apakah yang terbaru dalam",
 	"What’s New in": "Apakah yang terbaru dalam",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Local)",
 	"Whisper (Local)": "Whisper (Local)",
 	"Widescreen Mode": "Mod Skrin Lebar",
 	"Widescreen Mode": "Mod Skrin Lebar",

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

@@ -172,6 +172,7 @@
 	"Created at": "Opprettet",
 	"Created at": "Opprettet",
 	"Created At": "Opprettet",
 	"Created At": "Opprettet",
 	"Created by": "Opprettet av",
 	"Created by": "Opprettet av",
+	"Create a knowledge base": "",
 	"CSV Import": "CSV-import",
 	"CSV Import": "CSV-import",
 	"Current Model": "Nåværende modell",
 	"Current Model": "Nåværende modell",
 	"Current Password": "Nåværende passord",
 	"Current Password": "Nåværende passord",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Slettet {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Slettet {{deleteModelTag}}",
 	"Deleted {{name}}": "Slettet {{name}}",
 	"Deleted {{name}}": "Slettet {{name}}",
 	"Description": "Beskrivelse",
 	"Description": "Beskrivelse",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Fulgte ikke instruksjonene fullt ut",
 	"Didn't fully follow instructions": "Fulgte ikke instruksjonene fullt ut",
 	"Disabled": "Deaktivert",
 	"Disabled": "Deaktivert",
 	"Discover a function": "Oppdag en funksjon",
 	"Discover a function": "Oppdag en funksjon",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "Navn",
 	"Name": "Navn",
 	"Name your model": "Gi modellen din et navn",
 	"Name your model": "Gi modellen din et navn",
+	"Name your knowledge base": "",
 	"New Chat": "Ny chat",
 	"New Chat": "Ny chat",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Nytt passord",
 	"New Password": "Nytt passord",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Instruksjon for å lage søkeord",
 	"Search Query Generation Prompt": "Instruksjon for å lage søkeord",
 	"Search Result Count": "Antall søkeresultater",
 	"Search Result Count": "Antall søkeresultater",
 	"Search Tools": "Søkeverktøy",
 	"Search Tools": "Søkeverktøy",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Søkte på {{count}} side",
 	"Searched {{count}} sites_one": "Søkte på {{count}} side",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "WebUI innstillinger",
 	"WebUI Settings": "WebUI innstillinger",
 	"WebUI will make requests to": "WebUI vil gjøre forespørsler til",
 	"WebUI will make requests to": "WebUI vil gjøre forespørsler til",
 	"What’s New in": "Hva er nytt i",
 	"What’s New in": "Hva er nytt i",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Lokal)",
 	"Whisper (Local)": "Whisper (Lokal)",
 	"Widescreen Mode": "Bredskjermmodus",
 	"Widescreen Mode": "Bredskjermmodus",

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

@@ -172,6 +172,7 @@
 	"Created at": "Gemaakt op",
 	"Created at": "Gemaakt op",
 	"Created At": "Gemaakt op",
 	"Created At": "Gemaakt op",
 	"Created by": "Gemaakt door",
 	"Created by": "Gemaakt door",
+	"Create a knowledge base": "",
 	"CSV Import": "CSV import",
 	"CSV Import": "CSV import",
 	"Current Model": "Huidig Model",
 	"Current Model": "Huidig Model",
 	"Current Password": "Huidig Wachtwoord",
 	"Current Password": "Huidig Wachtwoord",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} is verwijderd",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} is verwijderd",
 	"Deleted {{name}}": "{{name}} verwijderd",
 	"Deleted {{name}}": "{{name}} verwijderd",
 	"Description": "Beschrijving",
 	"Description": "Beschrijving",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Heeft niet alle instructies gevolgt",
 	"Didn't fully follow instructions": "Heeft niet alle instructies gevolgt",
 	"Disabled": "Uitgeschakeld",
 	"Disabled": "Uitgeschakeld",
 	"Discover a function": "Ontdek een functie",
 	"Discover a function": "Ontdek een functie",
@@ -485,6 +487,7 @@
 	"Move to Top": "Verplaats naar boven",
 	"Move to Top": "Verplaats naar boven",
 	"Name": "Naam",
 	"Name": "Naam",
 	"Name your model": "Geef uw model een naam",
 	"Name your model": "Geef uw model een naam",
+	"Name your knowledge base": "",
 	"New Chat": "Nieuwe Chat",
 	"New Chat": "Nieuwe Chat",
 	"New folder": "Nieuwe map",
 	"New folder": "Nieuwe map",
 	"New Password": "Nieuw Wachtwoord",
 	"New Password": "Nieuw Wachtwoord",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Zoekopdracht promptgeneratie",
 	"Search Query Generation Prompt": "Zoekopdracht promptgeneratie",
 	"Search Result Count": "Aantal zoekresultaten",
 	"Search Result Count": "Aantal zoekresultaten",
 	"Search Tools": "Zoek gereedschappen",
 	"Search Tools": "Zoek gereedschappen",
+	"Search options": "",
 	"SearchApi API Key": "SearchApi API-sleutel",
 	"SearchApi API Key": "SearchApi API-sleutel",
 	"SearchApi Engine": "SearchApi Engine",
 	"SearchApi Engine": "SearchApi Engine",
 	"Searched {{count}} sites_one": "Gezocht op {{count}} sites_one",
 	"Searched {{count}} sites_one": "Gezocht op {{count}} sites_one",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "WebUI Instellingen",
 	"WebUI Settings": "WebUI Instellingen",
 	"WebUI will make requests to": "WebUI zal verzoeken doen naar",
 	"WebUI will make requests to": "WebUI zal verzoeken doen naar",
 	"What’s New in": "Wat is nieuw in",
 	"What’s New in": "Wat is nieuw in",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Lokaal)",
 	"Whisper (Local)": "Whisper (Lokaal)",
 	"Widescreen Mode": "Breedschermmodus",
 	"Widescreen Mode": "Breedschermmodus",

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

@@ -172,6 +172,7 @@
 	"Created at": "ਤੇ ਬਣਾਇਆ ਗਿਆ",
 	"Created at": "ਤੇ ਬਣਾਇਆ ਗਿਆ",
 	"Created At": "ਤੇ ਬਣਾਇਆ ਗਿਆ",
 	"Created At": "ਤੇ ਬਣਾਇਆ ਗਿਆ",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "ਮੌਜੂਦਾ ਮਾਡਲ",
 	"Current Model": "ਮੌਜੂਦਾ ਮਾਡਲ",
 	"Current Password": "ਮੌਜੂਦਾ ਪਾਸਵਰਡ",
 	"Current Password": "ਮੌਜੂਦਾ ਪਾਸਵਰਡ",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} ਮਿਟਾਇਆ ਗਿਆ",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} ਮਿਟਾਇਆ ਗਿਆ",
 	"Deleted {{name}}": "ਮਿਟਾ ਦਿੱਤਾ ਗਿਆ {{name}}",
 	"Deleted {{name}}": "ਮਿਟਾ ਦਿੱਤਾ ਗਿਆ {{name}}",
 	"Description": "ਵਰਣਨਾ",
 	"Description": "ਵਰਣਨਾ",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "ਹਦਾਇਤਾਂ ਨੂੰ ਪੂਰੀ ਤਰ੍ਹਾਂ ਫਾਲੋ ਨਹੀਂ ਕੀਤਾ",
 	"Didn't fully follow instructions": "ਹਦਾਇਤਾਂ ਨੂੰ ਪੂਰੀ ਤਰ੍ਹਾਂ ਫਾਲੋ ਨਹੀਂ ਕੀਤਾ",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "ਨਾਮ",
 	"Name": "ਨਾਮ",
 	"Name your model": "ਆਪਣੇ ਮਾਡਲ ਦਾ ਨਾਮ ਦੱਸੋ",
 	"Name your model": "ਆਪਣੇ ਮਾਡਲ ਦਾ ਨਾਮ ਦੱਸੋ",
+	"Name your knowledge base": "",
 	"New Chat": "ਨਵੀਂ ਗੱਲਬਾਤ",
 	"New Chat": "ਨਵੀਂ ਗੱਲਬਾਤ",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "ਨਵਾਂ ਪਾਸਵਰਡ",
 	"New Password": "ਨਵਾਂ ਪਾਸਵਰਡ",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "ਖੋਜ ਨਤੀਜੇ ਦੀ ਗਿਣਤੀ",
 	"Search Result Count": "ਖੋਜ ਨਤੀਜੇ ਦੀ ਗਿਣਤੀ",
 	"Search Tools": "",
 	"Search Tools": "",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "ਖੋਜਿਆ {{count}} sites_one",
 	"Searched {{count}} sites_one": "ਖੋਜਿਆ {{count}} sites_one",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "ਵੈਬਯੂਆਈ ਸੈਟਿੰਗਾਂ",
 	"WebUI Settings": "ਵੈਬਯੂਆਈ ਸੈਟਿੰਗਾਂ",
 	"WebUI will make requests to": "ਵੈਬਯੂਆਈ ਬੇਨਤੀਆਂ ਕਰੇਗਾ",
 	"WebUI will make requests to": "ਵੈਬਯੂਆਈ ਬੇਨਤੀਆਂ ਕਰੇਗਾ",
 	"What’s New in": "ਨਵਾਂ ਕੀ ਹੈ",
 	"What’s New in": "ਨਵਾਂ ਕੀ ਹੈ",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",

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

@@ -172,6 +172,7 @@
 	"Created at": "Utworzono o",
 	"Created at": "Utworzono o",
 	"Created At": "Utworzono o",
 	"Created At": "Utworzono o",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "Bieżący model",
 	"Current Model": "Bieżący model",
 	"Current Password": "Bieżące hasło",
 	"Current Password": "Bieżące hasło",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Usunięto {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Usunięto {{deleteModelTag}}",
 	"Deleted {{name}}": "Usunięto {{name}}",
 	"Deleted {{name}}": "Usunięto {{name}}",
 	"Description": "Opis",
 	"Description": "Opis",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Nie postępował zgodnie z instrukcjami",
 	"Didn't fully follow instructions": "Nie postępował zgodnie z instrukcjami",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "Nazwa",
 	"Name": "Nazwa",
 	"Name your model": "Nazwij swój model",
 	"Name your model": "Nazwij swój model",
+	"Name your knowledge base": "",
 	"New Chat": "Nowy czat",
 	"New Chat": "Nowy czat",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Nowe hasło",
 	"New Password": "Nowe hasło",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "Liczba wyników wyszukiwania",
 	"Search Result Count": "Liczba wyników wyszukiwania",
 	"Search Tools": "",
 	"Search Tools": "",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Wyszukiwano {{count}} sites_one",
 	"Searched {{count}} sites_one": "Wyszukiwano {{count}} sites_one",
@@ -849,6 +853,8 @@
 	"WebUI Settings": "Ustawienia interfejsu WebUI",
 	"WebUI Settings": "Ustawienia interfejsu WebUI",
 	"WebUI will make requests to": "Interfejs sieciowy będzie wysyłał żądania do",
 	"WebUI will make requests to": "Interfejs sieciowy będzie wysyłał żądania do",
 	"What’s New in": "Co nowego w",
 	"What’s New in": "Co nowego w",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",

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

@@ -7,33 +7,33 @@
 	"{{ owner }}: You cannot delete a base model": "{{ owner }}: Você não pode deletar um modelo base",
 	"{{ owner }}: You cannot delete a base model": "{{ owner }}: Você não pode deletar um modelo base",
 	"{{user}}'s Chats": "Chats de {{user}}",
 	"{{user}}'s Chats": "Chats de {{user}}",
 	"{{webUIName}} Backend Required": "Backend {{webUIName}} necessário",
 	"{{webUIName}} Backend Required": "Backend {{webUIName}} necessário",
-	"*Prompt node ID(s) are required for image generation": "",
-	"A new version (v{{LATEST_VERSION}}) is now available.": "",
+	"*Prompt node ID(s) are required for image generation": "*Prompt node ID(s) são obrigatórios para gerar imagens",
+	"A new version (v{{LATEST_VERSION}}) is now available.": "Um nova versão (v{{LATEST_VERSION}}) está disponível.",
 	"A task model is used when performing tasks such as generating titles for chats and web search queries": "Um modelo de tarefa é usado ao realizar tarefas como gerar títulos para chats e consultas de pesquisa na web",
 	"A task model is used when performing tasks such as generating titles for chats and web search queries": "Um modelo de tarefa é usado ao realizar tarefas como gerar títulos para chats e consultas de pesquisa na web",
 	"a user": "um usuário",
 	"a user": "um usuário",
 	"About": "Sobre",
 	"About": "Sobre",
 	"Account": "Conta",
 	"Account": "Conta",
 	"Account Activation Pending": "Ativação da Conta Pendente",
 	"Account Activation Pending": "Ativação da Conta Pendente",
 	"Accurate information": "Informação precisa",
 	"Accurate information": "Informação precisa",
-	"Actions": "",
+	"Actions": "Ações",
 	"Active Users": "Usuários Ativos",
 	"Active Users": "Usuários Ativos",
 	"Add": "Adicionar",
 	"Add": "Adicionar",
 	"Add a model id": "Adicionar um ID de modelo",
 	"Add a model id": "Adicionar um ID de modelo",
 	"Add a short description about what this model does": "Adicione uma descrição curta sobre o que este modelo faz",
 	"Add a short description about what this model does": "Adicione uma descrição curta sobre o que este modelo faz",
 	"Add a short title for this prompt": "Adicione um título curto para este prompt",
 	"Add a short title for this prompt": "Adicione um título curto para este prompt",
 	"Add a tag": "Adicionar uma tag",
 	"Add a tag": "Adicionar uma tag",
-	"Add Arena Model": "",
-	"Add Content": "",
-	"Add content here": "",
+	"Add Arena Model": "Adicionar Modelo Arena",
+	"Add Content": "Adicionar Conteúdo",
+	"Add content here": "Adicionar conteúdo aqui",
 	"Add custom prompt": "Adicionar prompt personalizado",
 	"Add custom prompt": "Adicionar prompt personalizado",
 	"Add Files": "Adicionar Arquivos",
 	"Add Files": "Adicionar Arquivos",
 	"Add Memory": "Adicionar Memória",
 	"Add Memory": "Adicionar Memória",
 	"Add Model": "Adicionar Modelo",
 	"Add Model": "Adicionar Modelo",
 	"Add Tag": "Adicionar Tag",
 	"Add Tag": "Adicionar Tag",
 	"Add Tags": "Adicionar Tags",
 	"Add Tags": "Adicionar Tags",
-	"Add text content": "",
+	"Add text content": "Adicionar conteúdo de texto",
 	"Add User": "Adicionar Usuário",
 	"Add User": "Adicionar Usuário",
-	"Adjusting these settings will apply changes universally to all users.": "Ajustar essas configurações aplicará mudanças universalmente a todos os usuários.",
+	"Adjusting these settings will apply changes universally to all users.": "Ajustar essas configurações aplicará mudanças para todos os usuários.",
 	"admin": "admin",
 	"admin": "admin",
 	"Admin": "Admin",
 	"Admin": "Admin",
 	"Admin Panel": "Painel do Admin",
 	"Admin Panel": "Painel do Admin",
@@ -41,19 +41,19 @@
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Os admins têm acesso a todas as ferramentas o tempo todo; os usuários precisam de ferramentas atribuídas por modelo no workspace.",
 	"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Os admins têm acesso a todas as ferramentas o tempo todo; os usuários precisam de ferramentas atribuídas por modelo no workspace.",
 	"Advanced Parameters": "Parâmetros Avançados",
 	"Advanced Parameters": "Parâmetros Avançados",
 	"Advanced Params": "Parâmetros Avançados",
 	"Advanced Params": "Parâmetros Avançados",
-	"All chats": "",
+	"All chats": "Todos os chats",
 	"All Documents": "Todos os Documentos",
 	"All Documents": "Todos os Documentos",
 	"Allow Chat Deletion": "Permitir Exclusão de Chats",
 	"Allow Chat Deletion": "Permitir Exclusão de Chats",
-	"Allow Chat Editing": "",
+	"Allow Chat Editing": "Permitir Edição de Chats",
 	"Allow non-local voices": "Permitir vozes não locais",
 	"Allow non-local voices": "Permitir vozes não locais",
-	"Allow Temporary Chat": "",
+	"Allow Temporary Chat": "Permitir Conversa Temporária",
 	"Allow User Location": "Permitir Localização do Usuário",
 	"Allow User Location": "Permitir Localização do Usuário",
 	"Allow Voice Interruption in Call": "Permitir Interrupção de Voz na Chamada",
 	"Allow Voice Interruption in Call": "Permitir Interrupção de Voz na Chamada",
 	"alphanumeric characters and hyphens": "caracteres alfanuméricos e hífens",
 	"alphanumeric characters and hyphens": "caracteres alfanuméricos e hífens",
 	"Already have an account?": "Já tem uma conta?",
 	"Already have an account?": "Já tem uma conta?",
 	"an assistant": "um assistente",
 	"an assistant": "um assistente",
 	"and": "e",
 	"and": "e",
-	"and {{COUNT}} more": "",
+	"and {{COUNT}} more": "e {{COUNT}} mais",
 	"and create a new shared link.": "e criar um novo link compartilhado.",
 	"and create a new shared link.": "e criar um novo link compartilhado.",
 	"API Base URL": "URL Base da API",
 	"API Base URL": "URL Base da API",
 	"API Key": "Chave API",
 	"API Key": "Chave API",
@@ -65,20 +65,20 @@
 	"Archived Chats": "Chats Arquivados",
 	"Archived Chats": "Chats Arquivados",
 	"are allowed - Activate this command by typing": "são permitidos - Ative este comando digitando",
 	"are allowed - Activate this command by typing": "são permitidos - Ative este comando digitando",
 	"Are you sure?": "Você tem certeza?",
 	"Are you sure?": "Você tem certeza?",
-	"Arena Models": "",
-	"Artifacts": "",
-	"Ask a question": "",
-	"Assistant": "",
+	"Arena Models": "Modelos Arena",
+	"Artifacts": "Artefatos",
+	"Ask a question": "Faça uma pergunta",
+	"Assistant": "Assistente",
 	"Attach file": "Anexar arquivo",
 	"Attach file": "Anexar arquivo",
 	"Attention to detail": "Atenção aos detalhes",
 	"Attention to detail": "Atenção aos detalhes",
 	"Audio": "Áudio",
 	"Audio": "Áudio",
 	"August": "Agosto",
 	"August": "Agosto",
 	"Auto-playback response": "Resposta de reprodução automática",
 	"Auto-playback response": "Resposta de reprodução automática",
-	"Automatic1111": "",
+	"Automatic1111": "Automatic1111",
 	"AUTOMATIC1111 Api Auth String": "String de Autenticação da API AUTOMATIC1111",
 	"AUTOMATIC1111 Api Auth String": "String de Autenticação da API AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL": "URL Base AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL": "URL Base AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL is required.": "URL Base AUTOMATIC1111 é necessária.",
 	"AUTOMATIC1111 Base URL is required.": "URL Base AUTOMATIC1111 é necessária.",
-	"Available list": "",
+	"Available list": "Lista disponível",
 	"available!": "disponível!",
 	"available!": "disponível!",
 	"Azure AI Speech": "",
 	"Azure AI Speech": "",
 	"Azure Region": "",
 	"Azure Region": "",
@@ -106,8 +106,8 @@
 	"Chat Bubble UI": "Interface de Bolha de Chat",
 	"Chat Bubble UI": "Interface de Bolha de Chat",
 	"Chat Controls": "Controles de Chat",
 	"Chat Controls": "Controles de Chat",
 	"Chat direction": "Direção do Chat",
 	"Chat direction": "Direção do Chat",
-	"Chat Overview": "",
-	"Chat Tags Auto-Generation": "",
+	"Chat Overview": "Visão Geral do Chat",
+	"Chat Tags Auto-Generation": "Tags de Chat Geradas Automaticamente",
 	"Chats": "Chats",
 	"Chats": "Chats",
 	"Check Again": "Verificar Novamente",
 	"Check Again": "Verificar Novamente",
 	"Check for updates": "Verificar atualizações",
 	"Check for updates": "Verificar atualizações",
@@ -126,13 +126,13 @@
 	"Click here to select": "Clique aqui para enviar",
 	"Click here to select": "Clique aqui para enviar",
 	"Click here to select a csv file.": "Clique aqui para enviar um arquivo csv.",
 	"Click here to select a csv file.": "Clique aqui para enviar um arquivo csv.",
 	"Click here to select a py file.": "Clique aqui para enviar um arquivo py.",
 	"Click here to select a py file.": "Clique aqui para enviar um arquivo py.",
-	"Click here to upload a workflow.json file.": "",
+	"Click here to upload a workflow.json file.": "Clique aqui para enviar um arquivo workflow.json.",
 	"click here.": "clique aqui.",
 	"click here.": "clique aqui.",
 	"Click on the user role button to change a user's role.": "Clique no botão de função do usuário para alterar a função de um usuário.",
 	"Click on the user role button to change a user's role.": "Clique no botão de função do usuário para alterar a função de um usuário.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Permissão de escrita na área de transferência negada. Verifique as configurações do seu navegador para conceder o acesso necessário.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Permissão de escrita na área de transferência negada. Verifique as configurações do seu navegador para conceder o acesso necessário.",
 	"Clone": "Clonar",
 	"Clone": "Clonar",
 	"Close": "Fechar",
 	"Close": "Fechar",
-	"Code execution": "",
+	"Code execution": "Execução de código",
 	"Code formatted successfully": "Código formatado com sucesso",
 	"Code formatted successfully": "Código formatado com sucesso",
 	"Collection": "Coleção",
 	"Collection": "Coleção",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -141,7 +141,7 @@
 	"ComfyUI Workflow": "",
 	"ComfyUI Workflow": "",
 	"ComfyUI Workflow Nodes": "",
 	"ComfyUI Workflow Nodes": "",
 	"Command": "Comando",
 	"Command": "Comando",
-	"Completions": "",
+	"Completions": "Conclusões",
 	"Concurrent Requests": "Solicitações Concomitantes",
 	"Concurrent Requests": "Solicitações Concomitantes",
 	"Confirm": "Confirmar",
 	"Confirm": "Confirmar",
 	"Confirm Password": "Confirmar Senha",
 	"Confirm Password": "Confirmar Senha",
@@ -155,23 +155,24 @@
 	"Continue with {{provider}}": "Continuar com {{provider}}",
 	"Continue with {{provider}}": "Continuar com {{provider}}",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "Controles",
 	"Controls": "Controles",
-	"Copied": "",
+	"Copied": "Copiado",
 	"Copied shared chat URL to clipboard!": "URL de chat compartilhado copiado para a área de transferência!",
 	"Copied shared chat URL to clipboard!": "URL de chat compartilhado copiado para a área de transferência!",
-	"Copied to clipboard": "",
+	"Copied to clipboard": "Copiado para a área de transferência",
 	"Copy": "Copiar",
 	"Copy": "Copiar",
 	"Copy last code block": "Copiar último bloco de código",
 	"Copy last code block": "Copiar último bloco de código",
 	"Copy last response": "Copiar última resposta",
 	"Copy last response": "Copiar última resposta",
 	"Copy Link": "Copiar Link",
 	"Copy Link": "Copiar Link",
-	"Copy to clipboard": "",
+	"Copy to clipboard": "Copiar para a área de transferência",
 	"Copying to clipboard was successful!": "Cópia para a área de transferência bem-sucedida!",
 	"Copying to clipboard was successful!": "Cópia para a área de transferência bem-sucedida!",
 	"Create a model": "Criar um modelo",
 	"Create a model": "Criar um modelo",
 	"Create Account": "Criar Conta",
 	"Create Account": "Criar Conta",
-	"Create Knowledge": "",
+	"Create Knowledge": "Criar conhecimento",
 	"Create new key": "Criar nova chave",
 	"Create new key": "Criar nova chave",
 	"Create new secret key": "Criar nova chave secreta",
 	"Create new secret key": "Criar nova chave secreta",
 	"Created at": "Criado em",
 	"Created at": "Criado em",
 	"Created At": "Criado Em",
 	"Created At": "Criado Em",
 	"Created by": "Criado por",
 	"Created by": "Criado por",
+	"Create a knowledge base": "Criar uma base de conhecimento",
 	"CSV Import": "Importação CSV",
 	"CSV Import": "Importação CSV",
 	"Current Model": "Modelo Atual",
 	"Current Model": "Modelo Atual",
 	"Current Password": "Senha Atual",
 	"Current Password": "Senha Atual",
@@ -182,19 +183,19 @@
 	"Database": "Banco de Dados",
 	"Database": "Banco de Dados",
 	"December": "Dezembro",
 	"December": "Dezembro",
 	"Default": "Padrão",
 	"Default": "Padrão",
-	"Default (Open AI)": "",
+	"Default (Open AI)": "Padrão (Open AI)",
 	"Default (SentenceTransformers)": "Padrão (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Padrão (SentenceTransformers)",
 	"Default Model": "Modelo Padrão",
 	"Default Model": "Modelo Padrão",
 	"Default model updated": "Modelo padrão atualizado",
 	"Default model updated": "Modelo padrão atualizado",
 	"Default Prompt Suggestions": "Sugestões de Prompt Padrão",
 	"Default Prompt Suggestions": "Sugestões de Prompt Padrão",
-	"Default User Role": "Função de Usuário Padrão",
+	"Default User Role": "Padrão para novos usuários",
 	"Delete": "Deletar",
 	"Delete": "Deletar",
 	"Delete a model": "Deletar um modelo",
 	"Delete a model": "Deletar um modelo",
 	"Delete All Chats": "Deletar Todos os Chats",
 	"Delete All Chats": "Deletar Todos os Chats",
 	"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 folder?": "Deletar pasta?",
 	"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",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Deletado {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Deletado {{deleteModelTag}}",
 	"Deleted {{name}}": "Deletado {{name}}",
 	"Deleted {{name}}": "Deletado {{name}}",
 	"Description": "Descrição",
 	"Description": "Descrição",
+	"Describe your knowledge base and objectives": "Descreva sua base de conhecimento e objetivos",
 	"Didn't fully follow instructions": "Não seguiu completamente as instruções",
 	"Didn't fully follow instructions": "Não seguiu completamente as instruções",
 	"Disabled": "Desativado",
 	"Disabled": "Desativado",
 	"Discover a function": "Descubra uma função",
 	"Discover a function": "Descubra uma função",
@@ -236,7 +238,7 @@
 	"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",
 	"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 Arena Model": "",
+	"Edit Arena Model": "Editar Modelo Arena",
 	"Edit Memory": "Editar Memória",
 	"Edit Memory": "Editar Memória",
 	"Edit User": "Editar Usuário",
 	"Edit User": "Editar Usuário",
 	"ElevenLabs": "",
 	"ElevenLabs": "",
@@ -246,11 +248,11 @@
 	"Embedding Model": "Modelo de Embedding",
 	"Embedding Model": "Modelo de Embedding",
 	"Embedding Model Engine": "Motor do Modelo de Embedding",
 	"Embedding Model Engine": "Motor do Modelo de Embedding",
 	"Embedding model set to \"{{embedding_model}}\"": "Modelo de embedding definido para \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Modelo de embedding definido para \"{{embedding_model}}\"",
-	"Enable Community Sharing": "Ativar Compartilhamento Comunitário",
-	"Enable Message Rating": "",
+	"Enable Community Sharing": "Ativar Compartilhamento com a Comunidade",
+	"Enable Message Rating": "Habilitar Avaliação de Mensagens",
 	"Enable New Sign Ups": "Ativar Novos Cadastros",
 	"Enable New Sign Ups": "Ativar Novos Cadastros",
 	"Enable Web Search": "Ativar Pesquisa na Web",
 	"Enable Web Search": "Ativar Pesquisa na Web",
-	"Enable Web Search Query Generation": "",
+	"Enable Web Search Query Generation": "Habilitar Geração de Consultas na Web",
 	"Enabled": "Ativado",
 	"Enabled": "Ativado",
 	"Engine": "Motor",
 	"Engine": "Motor",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Certifique-se de que seu arquivo CSV inclua 4 colunas nesta ordem: Nome, Email, Senha, Função.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Certifique-se de que seu arquivo CSV inclua 4 colunas nesta ordem: Nome, Email, Senha, Função.",
@@ -263,21 +265,21 @@
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "Digite a Sobreposição de Chunk",
 	"Enter Chunk Overlap": "Digite a Sobreposição de Chunk",
 	"Enter Chunk Size": "Digite o Tamanho do Chunk",
 	"Enter Chunk Size": "Digite o Tamanho do Chunk",
-	"Enter description": "",
+	"Enter description": "Digite a descrição",
 	"Enter Github Raw URL": "Digite a URL bruta do Github",
 	"Enter Github Raw URL": "Digite a URL bruta do Github",
 	"Enter Google PSE API Key": "Digite a Chave API do Google PSE",
 	"Enter Google PSE API Key": "Digite a Chave API do Google PSE",
 	"Enter Google PSE Engine Id": "Digite o ID do Motor do Google PSE",
 	"Enter Google PSE Engine Id": "Digite o ID do Motor do Google PSE",
 	"Enter Image Size (e.g. 512x512)": "Digite o Tamanho da Imagem (por exemplo, 512x512)",
 	"Enter Image Size (e.g. 512x512)": "Digite o Tamanho da Imagem (por exemplo, 512x512)",
 	"Enter Jina API Key": "",
 	"Enter Jina API Key": "",
 	"Enter language codes": "Digite os códigos de idioma",
 	"Enter language codes": "Digite os códigos de idioma",
-	"Enter Model ID": "",
+	"Enter Model ID": "Digite o ID do modelo",
 	"Enter model tag (e.g. {{modelTag}})": "Digite a tag do modelo (por exemplo, {{modelTag}})",
 	"Enter model tag (e.g. {{modelTag}})": "Digite a tag do modelo (por exemplo, {{modelTag}})",
 	"Enter Number of Steps (e.g. 50)": "Digite o Número de Passos (por exemplo, 50)",
 	"Enter Number of Steps (e.g. 50)": "Digite o Número de Passos (por exemplo, 50)",
-	"Enter Sampler (e.g. Euler a)": "",
+	"Enter Sampler (e.g. Euler a)": "Digite o Sampler (por exemplo, Euler a)",
 	"Enter Scheduler (e.g. Karras)": "",
 	"Enter Scheduler (e.g. Karras)": "",
 	"Enter Score": "Digite a Pontuação",
 	"Enter Score": "Digite a Pontuação",
-	"Enter SearchApi API Key": "",
-	"Enter SearchApi Engine": "",
+	"Enter SearchApi API Key": "Digite a Chave API do SearchApi",
+	"Enter SearchApi Engine": "Digite o Motor do SearchApi",
 	"Enter Searxng Query URL": "Digite a URL de Consulta do Searxng",
 	"Enter Searxng Query URL": "Digite a URL de Consulta do Searxng",
 	"Enter Serper API Key": "Digite a Chave API do Serper",
 	"Enter Serper API Key": "Digite a Chave API do Serper",
 	"Enter Serply API Key": "Digite a Chave API do Serply",
 	"Enter Serply API Key": "Digite a Chave API do Serply",
@@ -296,37 +298,37 @@
 	"Enter Your Role": "Digite Sua Função",
 	"Enter Your Role": "Digite Sua Função",
 	"Error": "Erro",
 	"Error": "Erro",
 	"ERROR": "",
 	"ERROR": "",
-	"Evaluations": "",
-	"Exclude": "",
+	"Evaluations": "Evoluções",
+	"Exclude": "Excluir",
 	"Experimental": "Experimental",
 	"Experimental": "Experimental",
 	"Explore the cosmos": "",
 	"Explore the cosmos": "",
 	"Export": "Exportar",
 	"Export": "Exportar",
 	"Export All Chats (All Users)": "Exportar Todos os Chats (Todos os Usuários)",
 	"Export All Chats (All Users)": "Exportar Todos os Chats (Todos os Usuários)",
 	"Export chat (.json)": "Exportar chat (.json)",
 	"Export chat (.json)": "Exportar chat (.json)",
 	"Export Chats": "Exportar Chats",
 	"Export Chats": "Exportar Chats",
-	"Export Config to JSON File": "",
+	"Export Config to JSON File": "Exportar Configuração para Arquivo JSON",
 	"Export Functions": "Exportar Funções",
 	"Export Functions": "Exportar Funções",
 	"Export LiteLLM config.yaml": "Exportar config.yaml do LiteLLM",
 	"Export LiteLLM config.yaml": "Exportar config.yaml do LiteLLM",
 	"Export Models": "Exportar Modelos",
 	"Export Models": "Exportar Modelos",
 	"Export Prompts": "Exportar Prompts",
 	"Export Prompts": "Exportar Prompts",
-	"Export to CSV": "",
+	"Export to CSV": "Exportar para CSV",
 	"Export Tools": "Exportar Ferramentas",
 	"Export Tools": "Exportar Ferramentas",
 	"External Models": "Modelos Externos",
 	"External Models": "Modelos Externos",
-	"Failed to add file.": "",
+	"Failed to add file.": "Falha ao adicionar arquivo.",
 	"Failed to create API Key.": "Falha ao criar a Chave API.",
 	"Failed to create API Key.": "Falha ao criar a Chave API.",
 	"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
 	"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
 	"Failed to update settings": "Falha ao atualizar as configurações",
 	"Failed to update settings": "Falha ao atualizar as configurações",
-	"Failed to upload file.": "",
+	"Failed to upload file.": "Falha ao carregar o arquivo.",
 	"February": "Fevereiro",
 	"February": "Fevereiro",
-	"Feedback History": "",
+	"Feedback History": "Histórico de comentários",
 	"Feel free to add specific details": "Sinta-se à vontade para adicionar detalhes específicos",
 	"Feel free to add specific details": "Sinta-se à vontade para adicionar detalhes específicos",
 	"File": "Arquivo",
 	"File": "Arquivo",
-	"File added successfully.": "",
-	"File content updated successfully.": "",
+	"File added successfully.": "Arquivo adicionado com sucesso.",
+	"File content updated successfully.": "Arquivo de conteúdo atualizado com sucesso.",
 	"File Mode": "Modo de Arquivo",
 	"File Mode": "Modo de Arquivo",
 	"File not found.": "Arquivo não encontrado.",
 	"File not found.": "Arquivo não encontrado.",
-	"File removed successfully.": "",
-	"File size should not exceed {{maxSize}} MB.": "",
+	"File removed successfully.": "Arquivo removido com sucesso.",
+	"File size should not exceed {{maxSize}} MB.": "Arquivo não pode exceder {{maxSize}} MB.",
 	"Files": "Arquivos",
 	"Files": "Arquivos",
 	"Filter is now globally disabled": "O filtro está agora desativado globalmente",
 	"Filter is now globally disabled": "O filtro está agora desativado globalmente",
 	"Filter is now globally enabled": "O filtro está agora ativado globalmente",
 	"Filter is now globally enabled": "O filtro está agora ativado globalmente",
@@ -334,16 +336,16 @@
 	"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Falsificação de impressão digital detectada: Não foi possível usar as iniciais como avatar. Usando a imagem de perfil padrão.",
 	"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Falsificação de impressão digital detectada: Não foi possível usar as iniciais como avatar. Usando a imagem de perfil padrão.",
 	"Fluidly stream large external response chunks": "Transmitir fluentemente grandes blocos de respostas externas",
 	"Fluidly stream large external response chunks": "Transmitir fluentemente grandes blocos de respostas externas",
 	"Focus chat input": "Focar entrada de chat",
 	"Focus chat input": "Focar entrada de chat",
-	"Folder deleted successfully": "",
-	"Folder name cannot be empty": "",
-	"Folder name cannot be empty.": "",
-	"Folder name updated successfully": "",
+	"Folder deleted successfully": "Pasta deletada com sucesso",
+	"Folder name cannot be empty": "Nome da pasta não pode estar vazia",
+	"Folder name cannot be empty.": "Nome da pasta não pode estar vazia.",
+	"Folder name updated successfully": "Nome da pasta atualizado com sucesso",
 	"Followed instructions perfectly": "Seguiu as instruções perfeitamente",
 	"Followed instructions perfectly": "Seguiu as instruções perfeitamente",
 	"Forge new paths": "",
 	"Forge new paths": "",
 	"Form": "Formulário",
 	"Form": "Formulário",
-	"Format your variables using brackets like this:": "",
+	"Format your variables using brackets like this:": "Formate suas variáveis usando colchetes como este:",
 	"Frequency Penalty": "Frequency Penalty",
 	"Frequency Penalty": "Frequency Penalty",
-	"Function": "",
+	"Function": "Função",
 	"Function created successfully": "Função criada com sucesso",
 	"Function created successfully": "Função criada com sucesso",
 	"Function deleted successfully": "Função deletada com sucesso",
 	"Function deleted successfully": "Função deletada com sucesso",
 	"Function Description (e.g. A filter to remove profanity from text)": "Descrição da Função (por exemplo, Um filtro para remover palavrões do texto)",
 	"Function Description (e.g. A filter to remove profanity from text)": "Descrição da Função (por exemplo, Um filtro para remover palavrões do texto)",
@@ -371,25 +373,25 @@
 	"has no conversations.": "não tem conversas.",
 	"has no conversations.": "não tem conversas.",
 	"Hello, {{name}}": "Olá, {{name}}",
 	"Hello, {{name}}": "Olá, {{name}}",
 	"Help": "Ajuda",
 	"Help": "Ajuda",
-	"Help us create the best community leaderboard by sharing your feedback history!": "",
+	"Help us create the best community leaderboard by sharing your feedback history!": "Ajude-nos a criar o melhor ranking da comunidade compartilhando sua historial de comentaários!",
 	"Hide": "Ocultar",
 	"Hide": "Ocultar",
 	"Hide Model": "Ocultar Modelo",
 	"Hide Model": "Ocultar Modelo",
 	"How can I help you today?": "Como posso ajudar você hoje?",
 	"How can I help you today?": "Como posso ajudar você hoje?",
 	"Hybrid Search": "Pesquisa Híbrida",
 	"Hybrid Search": "Pesquisa Híbrida",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Eu reconheço que li e entendi as implicações da minha ação. Estou ciente dos riscos associados à execução de código arbitrário e verifiquei a confiabilidade da fonte.",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Eu reconheço que li e entendi as implicações da minha ação. Estou ciente dos riscos associados à execução de código arbitrário e verifiquei a confiabilidade da fonte.",
 	"ID": "",
 	"ID": "",
-	"Ignite curiosity": "",
+	"Ignite curiosity": "Desperte a curiosidade",
 	"Image Generation (Experimental)": "Geração de Imagem (Experimental)",
 	"Image Generation (Experimental)": "Geração de Imagem (Experimental)",
 	"Image Generation Engine": "Motor de Geração de Imagem",
 	"Image Generation Engine": "Motor de Geração de Imagem",
 	"Image Settings": "Configurações de Imagem",
 	"Image Settings": "Configurações de Imagem",
 	"Images": "Imagens",
 	"Images": "Imagens",
 	"Import Chats": "Importar Chats",
 	"Import Chats": "Importar Chats",
-	"Import Config from JSON File": "",
+	"Import Config from JSON File": "Importar Configurações de JSON",
 	"Import Functions": "Importar Funções",
 	"Import Functions": "Importar Funções",
 	"Import Models": "Importar Modelos",
 	"Import Models": "Importar Modelos",
 	"Import Prompts": "Importar Prompts",
 	"Import Prompts": "Importar Prompts",
 	"Import Tools": "Importar Ferramentas",
 	"Import Tools": "Importar Ferramentas",
-	"Include": "",
+	"Include": "Incluir",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Incluir a flag `--api-auth` ao executar stable-diffusion-webui",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Incluir a flag `--api-auth` ao executar stable-diffusion-webui",
 	"Include `--api` flag when running stable-diffusion-webui": "Incluir a flag `--api` ao executar stable-diffusion-webui",
 	"Include `--api` flag when running stable-diffusion-webui": "Incluir a flag `--api` ao executar stable-diffusion-webui",
 	"Info": "Informação",
 	"Info": "Informação",
@@ -397,7 +399,7 @@
 	"Install from Github URL": "Instalar da URL do Github",
 	"Install from Github URL": "Instalar da URL do Github",
 	"Instant Auto-Send After Voice Transcription": "Envio Automático Instantâneo Após Transcrição de Voz",
 	"Instant Auto-Send After Voice Transcription": "Envio Automático Instantâneo Após Transcrição de Voz",
 	"Interface": "Interface",
 	"Interface": "Interface",
-	"Invalid file format.": "",
+	"Invalid file format.": "Formato de arquivo inválido.",
 	"Invalid Tag": "Tag Inválida",
 	"Invalid Tag": "Tag Inválida",
 	"January": "Janeiro",
 	"January": "Janeiro",
 	"Jina API Key": "",
 	"Jina API Key": "",
@@ -411,37 +413,37 @@
 	"Keep Alive": "Manter Vivo",
 	"Keep Alive": "Manter Vivo",
 	"Keyboard shortcuts": "Atalhos de Teclado",
 	"Keyboard shortcuts": "Atalhos de Teclado",
 	"Knowledge": "Conhecimento",
 	"Knowledge": "Conhecimento",
-	"Knowledge created successfully.": "",
-	"Knowledge deleted successfully.": "",
-	"Knowledge reset successfully.": "",
-	"Knowledge updated successfully": "",
-	"Landing Page Mode": "",
+	"Knowledge created successfully.": "Conhecimento criado com sucesso.",
+	"Knowledge deleted successfully.": "Conhecimento excluído com sucesso.",
+	"Knowledge reset successfully.": "Conhecimento resetado com sucesso.",
+	"Knowledge updated successfully": "Conhecimento atualizado com sucesso",
+	"Landing Page Mode": "Modo Landing Page",
 	"Language": "Idioma",
 	"Language": "Idioma",
 	"Last Active": "Última Atividade",
 	"Last Active": "Última Atividade",
 	"Last Modified": "Última Modificação",
 	"Last Modified": "Última Modificação",
-	"Leaderboard": "",
-	"Leave empty for unlimited": "",
-	"Leave empty to include all models or select specific models": "",
-	"Leave empty to use the default prompt, or enter a custom prompt": "",
+	"Leaderboard": "Tabela de classificação",
+	"Leave empty for unlimited": "Deixe vazio para ilimitado",
+	"Leave empty to include all models or select specific models": "Deixe vazio para incluir todos os modelos ou selecione modelos especificos",
+	"Leave empty to use the default prompt, or enter a custom prompt": "Deixe vazio para usar o prompt padrão, ou insira um prompt personalizado",
 	"Light": "Claro",
 	"Light": "Claro",
 	"Listening...": "Escutando...",
 	"Listening...": "Escutando...",
 	"LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.",
 	"LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.",
 	"Local": "",
 	"Local": "",
 	"Local Models": "Modelos Locais",
 	"Local Models": "Modelos Locais",
-	"Lost": "",
+	"Lost": "Perdido",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Feito pela Comunidade OpenWebUI",
 	"Made by OpenWebUI Community": "Feito pela Comunidade OpenWebUI",
 	"Make sure to enclose them with": "Certifique-se de encerrá-los com",
 	"Make sure to enclose them with": "Certifique-se de encerrá-los com",
-	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
+	"Make sure to export a workflow.json file as API format from ComfyUI.": "Certifique-se de exportar um arquivo workflow.json como o formato API do ComfyUI.",
 	"Manage": "Gerenciar",
 	"Manage": "Gerenciar",
-	"Manage Arena Models": "",
+	"Manage Arena Models": "Gerenciar Modelos Arena",
 	"Manage Models": "Gerenciar Modelos",
 	"Manage Models": "Gerenciar Modelos",
 	"Manage Ollama Models": "Gerenciar Modelos Ollama",
 	"Manage Ollama Models": "Gerenciar Modelos Ollama",
 	"Manage Pipelines": "Gerenciar Pipelines",
 	"Manage Pipelines": "Gerenciar Pipelines",
 	"March": "Março",
 	"March": "Março",
 	"Max Tokens (num_predict)": "Máximo de Tokens (num_predict)",
 	"Max Tokens (num_predict)": "Máximo de Tokens (num_predict)",
-	"Max Upload Count": "",
-	"Max Upload Size": "",
+	"Max Upload Count": "Quantidade máxima de anexos",
+	"Max Upload Size": "Tamanho máximo do arquivo",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Máximo de 3 modelos podem ser baixados simultaneamente. Por favor, tente novamente mais tarde.",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Máximo de 3 modelos podem ser baixados simultaneamente. Por favor, tente novamente mais tarde.",
 	"May": "Maio",
 	"May": "Maio",
 	"Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.",
 	"Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.",
@@ -450,8 +452,8 @@
 	"Memory cleared successfully": "Memória limpa com sucesso",
 	"Memory cleared successfully": "Memória limpa com sucesso",
 	"Memory deleted successfully": "Memória excluída com sucesso",
 	"Memory deleted successfully": "Memória excluída com sucesso",
 	"Memory updated successfully": "Memória atualizada com sucesso",
 	"Memory updated successfully": "Memória atualizada com sucesso",
-	"Merge Responses": "",
-	"Message rating should be enabled to use this feature": "",
+	"Merge Responses": "Mesclar respostas",
+	"Message rating should be enabled to use this feature": "Mensagem de avaliação deve estar habilitada para usar esta função",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Mensagens enviadas após criar seu link não serão compartilhadas. Usuários com o URL poderão visualizar o chat compartilhado.",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Mensagens enviadas após criar seu link não serão compartilhadas. Usuários com o URL poderão visualizar o chat compartilhado.",
 	"Min P": "",
 	"Min P": "",
 	"Minimum Score": "Pontuação Mínima",
 	"Minimum Score": "Pontuação Mínima",
@@ -461,18 +463,18 @@
 	"MMMM DD, YYYY": "MMMM DD, YYYY",
 	"MMMM DD, YYYY": "MMMM DD, YYYY",
 	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
 	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
 	"MMMM DD, YYYY hh:mm:ss A": "MMMM DD, YYYY hh:mm:ss A",
 	"MMMM DD, YYYY hh:mm:ss A": "MMMM DD, YYYY hh:mm:ss A",
-	"Model": "",
+	"Model": "Modelo",
 	"Model '{{modelName}}' has been successfully downloaded.": "Modelo '{{modelName}}' foi baixado com sucesso.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Modelo '{{modelName}}' foi baixado com sucesso.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Modelo '{{modelTag}}' já está na fila para download.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Modelo '{{modelTag}}' já está na fila para download.",
 	"Model {{modelId}} not found": "Modelo {{modelId}} não encontrado",
 	"Model {{modelId}} not found": "Modelo {{modelId}} não encontrado",
 	"Model {{modelName}} is not vision capable": "Modelo {{modelName}} não é capaz de visão",
 	"Model {{modelName}} is not vision capable": "Modelo {{modelName}} não é capaz de visão",
 	"Model {{name}} is now {{status}}": "Modelo {{name}} está agora {{status}}",
 	"Model {{name}} is now {{status}}": "Modelo {{name}} está agora {{status}}",
-	"Model {{name}} is now at the top": "",
-	"Model accepts image inputs": "",
+	"Model {{name}} is now at the top": "Modelo {{name}} está agora no topo",
+	"Model accepts image inputs": "Modelo aceita entradas de imagens",
 	"Model created successfully!": "Modelo criado com sucesso!",
 	"Model created successfully!": "Modelo criado com sucesso!",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Caminho do sistema de arquivos do modelo detectado. Nome curto do modelo é necessário para atualização, não é possível continuar.",
 	"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Caminho do sistema de arquivos do modelo detectado. Nome curto do modelo é necessário para atualização, não é possível continuar.",
 	"Model ID": "ID do Modelo",
 	"Model ID": "ID do Modelo",
-	"Model Name": "",
+	"Model Name": "Nome do Modelo",
 	"Model not selected": "Modelo não selecionado",
 	"Model not selected": "Modelo não selecionado",
 	"Model Params": "Parâmetros do Modelo",
 	"Model Params": "Parâmetros do Modelo",
 	"Model updated successfully": "Modelo atualizado com sucesso",
 	"Model updated successfully": "Modelo atualizado com sucesso",
@@ -480,32 +482,33 @@
 	"Model(s) Whitelisted": "Modelo(s) na Lista Branca",
 	"Model(s) Whitelisted": "Modelo(s) na Lista Branca",
 	"Modelfile Content": "Conteúdo do Arquivo do Modelo",
 	"Modelfile Content": "Conteúdo do Arquivo do Modelo",
 	"Models": "Modelos",
 	"Models": "Modelos",
-	"more": "",
+	"more": "mais",
 	"More": "Mais",
 	"More": "Mais",
-	"Move to Top": "",
+	"Move to Top": "Mover para o topo",
 	"Name": "Nome",
 	"Name": "Nome",
-	"Name your model": "Nomeie seu modelo",
+	"Name your model": "Nome do seu modelo",
+	"Name your knowledge base": "Nome da sua base de conhecimento",
 	"New Chat": "Novo Chat",
 	"New Chat": "Novo Chat",
-	"New folder": "",
+	"New folder": "Nova pasta",
 	"New Password": "Nova Senha",
 	"New Password": "Nova Senha",
-	"No content found": "",
+	"No content found": "Nenhum conteúdo encontrado",
 	"No content to speak": "Sem conteúdo para falar",
 	"No content to speak": "Sem conteúdo para falar",
-	"No distance available": "",
-	"No feedbacks found": "",
+	"No distance available": "Sem distância disponível",
+	"No feedbacks found": "Comentários não encontrados",
 	"No file selected": "Nenhum arquivo selecionado",
 	"No file selected": "Nenhum arquivo selecionado",
-	"No files found.": "",
-	"No HTML, CSS, or JavaScript content found.": "",
-	"No knowledge found": "",
-	"No models found": "",
+	"No files found.": "Nenhum arquivo encontrado.",
+	"No HTML, CSS, or JavaScript content found.": "Nenhum conteúdo HTML, CSS ou JavaScript encontrado.",
+	"No knowledge found": "nenhum conhecimento encontrado",
+	"No models found": "Nenhum modelo encontrado",
 	"No results found": "Nenhum resultado encontrado",
 	"No results found": "Nenhum resultado encontrado",
 	"No search query generated": "Nenhuma consulta de pesquisa gerada",
 	"No search query generated": "Nenhuma consulta de pesquisa gerada",
 	"No source available": "Nenhuma fonte disponível",
 	"No source available": "Nenhuma fonte disponível",
 	"No valves to update": "Nenhuma válvula para atualizar",
 	"No valves to update": "Nenhuma válvula para atualizar",
 	"None": "Nenhum",
 	"None": "Nenhum",
 	"Not factually correct": "Não está factualmente correto",
 	"Not factually correct": "Não está factualmente correto",
-	"Not helpful": "",
+	"Not helpful": "Não é útil",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Se você definir uma pontuação mínima, a pesquisa retornará apenas documentos com pontuação igual ou superior à pontuação mínima.",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Se você definir uma pontuação mínima, a pesquisa retornará apenas documentos com pontuação igual ou superior à pontuação mínima.",
-	"Notes": "",
+	"Notes": "Notas",
 	"Notifications": "Notificações",
 	"Notifications": "Notificações",
 	"November": "Novembro",
 	"November": "Novembro",
 	"num_gpu (Ollama)": "",
 	"num_gpu (Ollama)": "",
@@ -525,13 +528,13 @@
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Apenas caracteres alfanuméricos e hífens são permitidos na string de comando.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Apenas caracteres alfanuméricos e hífens são permitidos na string de comando.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Oops! Looks like the URL is invalid. Please double-check and try again.": "Ops! Parece que a URL é inválida. Por favor, verifique novamente e tente de novo.",
 	"Oops! Looks like the URL is invalid. Please double-check and try again.": "Ops! Parece que a URL é inválida. Por favor, verifique novamente e tente de novo.",
-	"Oops! There are files still uploading. Please wait for the upload to complete.": "",
-	"Oops! There was an error in the previous response.": "",
+	"Oops! There are files still uploading. Please wait for the upload to complete.": "Ops! Existem arquivos a serem carregados. Por favor, aguarde que o carregamento tenha concluído.",
+	"Oops! There was an error in the previous response.": "Ops! Houve um erro na resposta anterior.",
 	"Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Ops! Você está usando um método não suportado (somente frontend). Por favor, sirva a WebUI a partir do backend.",
 	"Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Ops! Você está usando um método não suportado (somente frontend). Por favor, sirva a WebUI a partir do backend.",
-	"Open file": "",
-	"Open in full screen": "",
+	"Open file": "Abrir arquivo",
+	"Open in full screen": "Abrir em tela cheia",
 	"Open new chat": "Abrir novo chat",
 	"Open new chat": "Abrir novo chat",
-	"Open WebUI uses faster-whisper internally.": "",
+	"Open WebUI uses faster-whisper internally.": "Open WebUI usa reconhecimento de fala rápido mais rápido internamente.",
 	"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
 	"Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
 	"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "A versão do Open WebUI (v{{OPEN_WEBUI_VERSION}}) é inferior à versão necessária (v{{REQUIRED_VERSION}})",
 	"Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "A versão do Open WebUI (v{{OPEN_WEBUI_VERSION}}) é inferior à versão necessária (v{{REQUIRED_VERSION}})",
 	"OpenAI": "OpenAI",
 	"OpenAI": "OpenAI",
@@ -541,10 +544,10 @@
 	"OpenAI URL/Key required.": "URL/Chave OpenAI necessária.",
 	"OpenAI URL/Key required.": "URL/Chave OpenAI necessária.",
 	"or": "ou",
 	"or": "ou",
 	"Other": "Outro",
 	"Other": "Outro",
-	"OUTPUT": "",
-	"Output format": "",
-	"Overview": "",
-	"page": "",
+	"OUTPUT": "SAÍDA",
+	"Output format": "Formato de saída",
+	"Overview": "Visão Geral",
+	"page": "página",
 	"Password": "Senha",
 	"Password": "Senha",
 	"PDF document (.pdf)": "Documento PDF (.pdf)",
 	"PDF document (.pdf)": "Documento PDF (.pdf)",
 	"PDF Extract Images (OCR)": "Extrair Imagens do PDF (OCR)",
 	"PDF Extract Images (OCR)": "Extrair Imagens do PDF (OCR)",
@@ -564,9 +567,9 @@
 	"Plain text (.txt)": "Texto simples (.txt)",
 	"Plain text (.txt)": "Texto simples (.txt)",
 	"Playground": "Playground",
 	"Playground": "Playground",
 	"Please carefully review the following warnings:": "Por favor, revise cuidadosamente os seguintes avisos:",
 	"Please carefully review the following warnings:": "Por favor, revise cuidadosamente os seguintes avisos:",
-	"Please enter a prompt": "",
-	"Please fill in all fields.": "",
-	"Please select a reason": "",
+	"Please enter a prompt": "Por favor, digite um prompt",
+	"Please fill in all fields.": "Por favor, preencha todos os campos.",
+	"Please select a reason": "Por favor, seleccione uma razão",
 	"Positive attitude": "Atitude positiva",
 	"Positive attitude": "Atitude positiva",
 	"Previous 30 days": "Últimos 30 dias",
 	"Previous 30 days": "Últimos 30 dias",
 	"Previous 7 days": "Últimos 7 dias",
 	"Previous 7 days": "Últimos 7 dias",
@@ -579,17 +582,17 @@
 	"Pull a model from Ollama.com": "Obter um modelo de Ollama.com",
 	"Pull a model from Ollama.com": "Obter um modelo de Ollama.com",
 	"Query Params": "Parâmetros de Consulta",
 	"Query Params": "Parâmetros de Consulta",
 	"RAG Template": "Modelo RAG",
 	"RAG Template": "Modelo RAG",
-	"Rating": "",
-	"Re-rank models by topic similarity": "",
+	"Rating": "Avaliação",
+	"Re-rank models by topic similarity": "Reclassificação de modelos por similaridade de tópico",
 	"Read Aloud": "Ler em Voz Alta",
 	"Read Aloud": "Ler em Voz Alta",
 	"Record voice": "Gravar voz",
 	"Record voice": "Gravar voz",
 	"Redirecting you to OpenWebUI Community": "Redirecionando você para a Comunidade OpenWebUI",
 	"Redirecting you to OpenWebUI Community": "Redirecionando você para a Comunidade OpenWebUI",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Refira-se como \"Usuário\" (por exemplo, \"Usuário está aprendendo espanhol\")",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Refira-se como \"Usuário\" (por exemplo, \"Usuário está aprendendo espanhol\")",
-	"References from": "",
+	"References from": "Referências de",
 	"Refused when it shouldn't have": "Recusado quando não deveria",
 	"Refused when it shouldn't have": "Recusado quando não deveria",
 	"Regenerate": "Regenerar",
 	"Regenerate": "Regenerar",
 	"Release Notes": "Notas de Lançamento",
 	"Release Notes": "Notas de Lançamento",
-	"Relevance": "",
+	"Relevance": "Relevância",
 	"Remove": "Remover",
 	"Remove": "Remover",
 	"Remove Model": "Remover Modelo",
 	"Remove Model": "Remover Modelo",
 	"Rename": "Renomear",
 	"Rename": "Renomear",
@@ -604,42 +607,43 @@
 	"Response AutoCopy to Clipboard": "Cópia Automática da Resposta para a Área de Transferência",
 	"Response AutoCopy to Clipboard": "Cópia Automática da Resposta para a Área de Transferência",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Notificações de resposta não podem ser ativadas pois as permissões do site foram negadas. Por favor, visite as configurações do seu navegador para conceder o acesso necessário.",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Notificações de resposta não podem ser ativadas pois as permissões do site foram negadas. Por favor, visite as configurações do seu navegador para conceder o acesso necessário.",
 	"Response splitting": "",
 	"Response splitting": "",
-	"Result": "",
-	"Rich Text Input for Chat": "",
+	"Result": "Resultado",
+	"Rich Text Input for Chat": "Entrada de rich text para bate-papo",
 	"RK": "",
 	"RK": "",
 	"Role": "Função",
 	"Role": "Função",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "RTL",
 	"RTL": "RTL",
-	"Run": "",
+	"Run": "Executar",
 	"Running": "Executando",
 	"Running": "Executando",
 	"Save": "Salvar",
 	"Save": "Salvar",
 	"Save & Create": "Salvar e Criar",
 	"Save & Create": "Salvar e Criar",
 	"Save & Update": "Salvar e Atualizar",
 	"Save & Update": "Salvar e Atualizar",
-	"Save As Copy": "",
+	"Save As Copy": "Salvar como cópia",
 	"Save Tag": "Salvar Tag",
 	"Save Tag": "Salvar Tag",
-	"Saved": "",
+	"Saved": "Armazenado",
 	"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Salvar registros de chat diretamente no armazenamento do seu navegador não é mais suportado. Por favor, reserve um momento para baixar e excluir seus registros de chat clicando no botão abaixo. Não se preocupe, você pode facilmente reimportar seus registros de chat para o backend através de",
 	"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Salvar registros de chat diretamente no armazenamento do seu navegador não é mais suportado. Por favor, reserve um momento para baixar e excluir seus registros de chat clicando no botão abaixo. Não se preocupe, você pode facilmente reimportar seus registros de chat para o backend através de",
-	"Scroll to bottom when switching between branches": "",
+	"Scroll to bottom when switching between branches": "Rolar para baixo quando se troca entre modelos",
 	"Search": "Pesquisar",
 	"Search": "Pesquisar",
 	"Search a model": "Pesquisar um modelo",
 	"Search a model": "Pesquisar um modelo",
 	"Search Chats": "Pesquisar Chats",
 	"Search Chats": "Pesquisar Chats",
-	"Search Collection": "",
-	"search for tags": "",
+	"Search Collection": "Pesquisar Coleção",
+	"search for tags": "Pesquisar por tags",
 	"Search Functions": "Pesquisar Funções",
 	"Search Functions": "Pesquisar Funções",
-	"Search Knowledge": "",
+	"Search Knowledge": "Pesquisar conhecimento",
 	"Search Models": "Pesquisar Modelos",
 	"Search Models": "Pesquisar Modelos",
 	"Search Prompts": "Pesquisar Prompts",
 	"Search Prompts": "Pesquisar Prompts",
 	"Search Query Generation Prompt": "Prompt de Geração de Consulta de Pesquisa",
 	"Search Query Generation Prompt": "Prompt de Geração de Consulta de Pesquisa",
 	"Search Result Count": "Contagem de Resultados da Pesquisa",
 	"Search Result Count": "Contagem de Resultados da Pesquisa",
 	"Search Tools": "Pesquisar Ferramentas",
 	"Search Tools": "Pesquisar Ferramentas",
-	"SearchApi API Key": "",
-	"SearchApi Engine": "",
+	"Search options": "Opções de pesquisa",
+	"SearchApi API Key": "Pesquisar SearchApi key",
+	"SearchApi Engine": "Motor SearchApi",
 	"Searched {{count}} sites_one": "Pesquisou {{count}} sites_one",
 	"Searched {{count}} sites_one": "Pesquisou {{count}} sites_one",
 	"Searched {{count}} sites_many": "Pesquisou {{count}} sites_many",
 	"Searched {{count}} sites_many": "Pesquisou {{count}} sites_many",
 	"Searched {{count}} sites_other": "Pesquisou {{count}} sites_other",
 	"Searched {{count}} sites_other": "Pesquisou {{count}} sites_other",
 	"Searching \"{{searchQuery}}\"": "Pesquisando \"{{searchQuery}}\"",
 	"Searching \"{{searchQuery}}\"": "Pesquisando \"{{searchQuery}}\"",
-	"Searching Knowledge for \"{{searchQuery}}\"": "",
+	"Searching Knowledge for \"{{searchQuery}}\"": "Buscando conhecimento para \"{{searchQuery}}\"",
 	"Searxng Query URL": "URL da Consulta Searxng",
 	"Searxng Query URL": "URL da Consulta Searxng",
 	"See readme.md for instructions": "Veja readme.md para instruções",
 	"See readme.md for instructions": "Veja readme.md para instruções",
 	"See what's new": "Veja o que há de novo",
 	"See what's new": "Veja o que há de novo",
@@ -653,12 +657,12 @@
 	"Select a pipeline url": "Selecione uma URL de pipeline",
 	"Select a pipeline url": "Selecione uma URL de pipeline",
 	"Select a tool": "Selecione uma ferramenta",
 	"Select a tool": "Selecione uma ferramenta",
 	"Select an Ollama instance": "Selecione uma instância Ollama",
 	"Select an Ollama instance": "Selecione uma instância Ollama",
-	"Select Engine": "",
-	"Select Knowledge": "",
+	"Select Engine": "Selecionar motor",
+	"Select Knowledge": "Selecionar conhecimento",
 	"Select model": "Selecionar modelo",
 	"Select model": "Selecionar modelo",
 	"Select only one model to call": "Selecione apenas um modelo para chamar",
 	"Select only one model to call": "Selecione apenas um modelo para chamar",
 	"Selected model(s) do not support image inputs": "Modelo(s) selecionado(s) não suportam entradas de imagem",
 	"Selected model(s) do not support image inputs": "Modelo(s) selecionado(s) não suportam entradas de imagem",
-	"Semantic distance to query": "",
+	"Semantic distance to query": "Distância semântica para consulta",
 	"Send": "Enviar",
 	"Send": "Enviar",
 	"Send a Message": "Enviar uma Mensagem",
 	"Send a Message": "Enviar uma Mensagem",
 	"Send message": "Enviar mensagem",
 	"Send message": "Enviar mensagem",
@@ -669,17 +673,17 @@
 	"Serpstack API Key": "Chave da API Serpstack",
 	"Serpstack API Key": "Chave da API Serpstack",
 	"Server connection verified": "Conexão com o servidor verificada",
 	"Server connection verified": "Conexão com o servidor verificada",
 	"Set as default": "Definir como padrão",
 	"Set as default": "Definir como padrão",
-	"Set CFG Scale": "",
+	"Set CFG Scale": "Definir escala CFG",
 	"Set Default Model": "Definir Modelo Padrão",
 	"Set Default Model": "Definir Modelo Padrão",
 	"Set embedding model (e.g. {{model}})": "Definir modelo de embedding (por exemplo, {{model}})",
 	"Set embedding model (e.g. {{model}})": "Definir modelo de embedding (por exemplo, {{model}})",
 	"Set Image Size": "Definir Tamanho da Imagem",
 	"Set Image Size": "Definir Tamanho da Imagem",
 	"Set reranking model (e.g. {{model}})": "Definir modelo de reclassificação (por exemplo, {{model}})",
 	"Set reranking model (e.g. {{model}})": "Definir modelo de reclassificação (por exemplo, {{model}})",
-	"Set Sampler": "",
-	"Set Scheduler": "",
+	"Set Sampler": "Definir Sampler",
+	"Set Scheduler": "Definir Agenda",
 	"Set Steps": "Definir Etapas",
 	"Set Steps": "Definir Etapas",
 	"Set Task Model": "Definir Modelo de Tarefa",
 	"Set Task Model": "Definir Modelo de Tarefa",
 	"Set Voice": "Definir Voz",
 	"Set Voice": "Definir Voz",
-	"Set whisper model": "",
+	"Set whisper model": "Definir modelo Whisper",
 	"Settings": "Configurações",
 	"Settings": "Configurações",
 	"Settings saved successfully!": "Configurações salvas com sucesso!",
 	"Settings saved successfully!": "Configurações salvas com sucesso!",
 	"Share": "Compartilhar",
 	"Share": "Compartilhar",
@@ -687,23 +691,23 @@
 	"Share to OpenWebUI Community": "Compartilhar com a Comunidade OpenWebUI",
 	"Share to OpenWebUI Community": "Compartilhar com a Comunidade OpenWebUI",
 	"short-summary": "resumo-curto",
 	"short-summary": "resumo-curto",
 	"Show": "Mostrar",
 	"Show": "Mostrar",
-	"Show \"What's New\" modal on login": "",
+	"Show \"What's New\" modal on login": "Mostrar \"novidades\" no login",
 	"Show Admin Details in Account Pending Overlay": "Mostrar Detalhes do Administrador na Sobreposição de Conta Pendentes",
 	"Show Admin Details in Account Pending Overlay": "Mostrar Detalhes do Administrador na Sobreposição de Conta Pendentes",
 	"Show Model": "Mostrar Modelo",
 	"Show Model": "Mostrar Modelo",
 	"Show shortcuts": "Mostrar atalhos",
 	"Show shortcuts": "Mostrar atalhos",
 	"Show your support!": "Mostre seu apoio!",
 	"Show your support!": "Mostre seu apoio!",
 	"Showcased creativity": "Criatividade exibida",
 	"Showcased creativity": "Criatividade exibida",
 	"Sign in": "Entrar",
 	"Sign in": "Entrar",
-	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}}": "Faça login em {{WEBUI_NAME}}",
 	"Sign Out": "Sair",
 	"Sign Out": "Sair",
 	"Sign up": "Inscrever-se",
 	"Sign up": "Inscrever-se",
-	"Sign up to {{WEBUI_NAME}}": "",
-	"Signing in to {{WEBUI_NAME}}": "",
+	"Sign up to {{WEBUI_NAME}}": "Inscreva-se em {{WEBUI_NAME}}",
+	"Signing in to {{WEBUI_NAME}}": "Fazendo login em {{WEBUI_NAME}}",
 	"Source": "Fonte",
 	"Source": "Fonte",
-	"Speech Playback Speed": "",
+	"Speech Playback Speed": "Velocidade de reprodução de fala",
 	"Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}",
 	"Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}",
 	"Speech-to-Text Engine": "Motor de Transcrição de Fala",
 	"Speech-to-Text Engine": "Motor de Transcrição de Fala",
-	"Stop": "",
+	"Stop": "Parar",
 	"Stop Sequence": "Sequência de Parada",
 	"Stop Sequence": "Sequência de Parada",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"STT Model": "Modelo STT",
 	"STT Model": "Modelo STT",
@@ -716,36 +720,36 @@
 	"Support this plugin:": "Apoie este plugin:",
 	"Support this plugin:": "Apoie este plugin:",
 	"Sync directory": "",
 	"Sync directory": "",
 	"System": "Sistema",
 	"System": "Sistema",
-	"System Instructions": "",
+	"System Instructions": "Instruções do sistema",
 	"System Prompt": "Prompt do Sistema",
 	"System Prompt": "Prompt do Sistema",
 	"Tags": "Tags",
 	"Tags": "Tags",
-	"Tags Generation Prompt": "",
+	"Tags Generation Prompt": "Prompt para geração de Tags",
 	"Tap to interrupt": "Toque para interromper",
 	"Tap to interrupt": "Toque para interromper",
 	"Tavily API Key": "Chave da API Tavily",
 	"Tavily API Key": "Chave da API Tavily",
 	"Tell us more:": "Conte-nos mais:",
 	"Tell us more:": "Conte-nos mais:",
 	"Temperature": "Temperatura",
 	"Temperature": "Temperatura",
 	"Template": "Modelo",
 	"Template": "Modelo",
-	"Temporary Chat": "",
-	"Text Splitter": "",
+	"Temporary Chat": "Chat temporário",
+	"Text Splitter": "Divisor de texto",
 	"Text-to-Speech Engine": "Motor de Texto para Fala",
 	"Text-to-Speech Engine": "Motor de Texto para Fala",
 	"Tfs Z": "Tfs Z",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Obrigado pelo seu feedback!",
 	"Thanks for your feedback!": "Obrigado pelo seu feedback!",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Os desenvolvedores por trás deste plugin são voluntários apaixonados da comunidade. Se você achar este plugin útil, considere contribuir para o seu desenvolvimento.",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Os desenvolvedores por trás deste plugin são voluntários apaixonados da comunidade. Se você achar este plugin útil, considere contribuir para o seu desenvolvimento.",
-	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
-	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
-	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
-	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
+	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "A evolução do ranking de avaliação é baseada no sistema Elo e será atualizada em tempo real.",
+	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "O ranking atual está em beta, e podemos ajustar as contas de avaliação como refinamos o algoritmo.",
+	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Máximo tamanho de arquivo em MB. Se o tamanho do arquivo exceder este limite, o arquivo não será enviado.",
+	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "O número máximo de arquivos que podem ser utilizados a cada vez em chat. Se o número de arquivos exceder este limite, os arquivos não serão enviados.",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "A pontuação deve ser um valor entre 0.0 (0%) e 1.0 (100%).",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "A pontuação deve ser um valor entre 0.0 (0%) e 1.0 (100%).",
 	"Theme": "Tema",
 	"Theme": "Tema",
 	"Thinking...": "Pensando...",
 	"Thinking...": "Pensando...",
 	"This action cannot be undone. Do you wish to continue?": "Esta ação não pode ser desfeita. Você deseja continuar?",
 	"This action cannot be undone. Do you wish to continue?": "Esta ação não pode ser desfeita. Você deseja continuar?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Isso garante que suas conversas valiosas sejam salvas com segurança no banco de dados do backend. Obrigado!",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Isso garante que suas conversas valiosas sejam salvas com segurança no banco de dados do backend. Obrigado!",
 	"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 response was generated by \"{{model}}\"": "",
+	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Essa opção deletará todos os arquivos existentes na coleção e todos eles serão substituídos.",
+	"This response was generated by \"{{model}}\"": "Esta resposta foi gerada por \"{{model}}\"",
 	"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 delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Esta ação deletará <strong>{{NAME}}</strong> e <strong>todos seus conteúdos</strong>.",
+	"This will reset the knowledge base and sync all files. Do you wish to continue?": "Esta ação resetará a base de conhecimento e sincronizará todos os arquivos. Deseja continuar?",
 	"Thorough explanation": "Explicação detalhada",
 	"Thorough explanation": "Explicação detalhada",
 	"Tika": "Tika",
 	"Tika": "Tika",
 	"Tika Server URL required.": "URL do servidor Tika necessária.",
 	"Tika Server URL required.": "URL do servidor Tika necessária.",
@@ -759,20 +763,20 @@
 	"To access the available model names for downloading,": "Para acessar os nomes de modelos disponíveis para download,",
 	"To access the available model names for downloading,": "Para acessar os nomes de modelos disponíveis para download,",
 	"To access the GGUF models available for downloading,": "Para acessar os modelos GGUF disponíveis para download,",
 	"To access the GGUF models available for downloading,": "Para acessar os modelos GGUF disponíveis para download,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Para acessar a WebUI, entre em contato com o administrador. Os administradores podem gerenciar os status dos usuários no Painel de Administração.",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Para acessar a WebUI, entre em contato com o administrador. Os administradores podem gerenciar os status dos usuários no Painel de Administração.",
-	"To attach knowledge base here, add them to the \"Knowledge\" workspace first.": "",
+	"To attach knowledge base here, add them to the \"Knowledge\" workspace first.": "Para anexar a base de conhecimento aqui, adicione-os ao espaço de trabalho \"Conhecimento\" primeiro.",
 	"to chat input.": "para entrada de chat.",
 	"to chat input.": "para entrada de chat.",
 	"To protect your privacy, only ratings, model IDs, tags, and metadata are shared from your feedback—your chat logs remain private and are not included.": "",
 	"To protect your privacy, only ratings, model IDs, tags, and metadata are shared from your feedback—your chat logs remain private and are not included.": "",
 	"To select actions here, add them to the \"Functions\" workspace first.": "Para selecionar ações aqui, adicione-os ao espaço de trabalho \"Ações\" primeiro.",
 	"To select actions here, add them to the \"Functions\" workspace first.": "Para selecionar ações aqui, adicione-os ao espaço de trabalho \"Ações\" primeiro.",
 	"To select filters here, add them to the \"Functions\" workspace first.": "Para selecionar filtros aqui, adicione-os ao espaço de trabalho \"Funções\" primeiro.",
 	"To select filters here, add them to the \"Functions\" workspace first.": "Para selecionar filtros aqui, adicione-os ao espaço de trabalho \"Funções\" primeiro.",
 	"To select toolkits here, add them to the \"Tools\" workspace first.": "Para selecionar kits de ferramentas aqui, adicione-os ao espaço de trabalho \"Ferramentas\" primeiro.",
 	"To select toolkits here, add them to the \"Tools\" workspace first.": "Para selecionar kits de ferramentas aqui, adicione-os ao espaço de trabalho \"Ferramentas\" primeiro.",
-	"Toast notifications for new updates": "",
+	"Toast notifications for new updates": "Notificações de alerta para novas atualizações",
 	"Today": "Hoje",
 	"Today": "Hoje",
 	"Toggle settings": "Alternar configurações",
 	"Toggle settings": "Alternar configurações",
 	"Toggle sidebar": "Alternar barra lateral",
 	"Toggle sidebar": "Alternar barra lateral",
 	"Token": "",
 	"Token": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "Tokens a Manter na Atualização do Contexto (num_keep)",
 	"Tokens To Keep On Context Refresh (num_keep)": "Tokens a Manter na Atualização do Contexto (num_keep)",
-	"Too verbose": "",
-	"Tool": "",
+	"Too verbose": "Muito detalhado",
+	"Tool": "Ferramenta",
 	"Tool created successfully": "Ferramenta criada com sucesso",
 	"Tool created successfully": "Ferramenta criada com sucesso",
 	"Tool deleted successfully": "Ferramenta excluída com sucesso",
 	"Tool deleted successfully": "Ferramenta excluída com sucesso",
 	"Tool imported successfully": "Ferramenta importada com sucesso",
 	"Tool imported successfully": "Ferramenta importada com sucesso",
@@ -801,30 +805,30 @@
 	"Untagged": "",
 	"Untagged": "",
 	"Update": "Atualizar",
 	"Update": "Atualizar",
 	"Update and Copy Link": "Atualizar e Copiar Link",
 	"Update and Copy Link": "Atualizar e Copiar Link",
-	"Update for the latest features and improvements.": "",
+	"Update for the latest features and improvements.": "Atualizar para as novas funcionalidades e melhorias.",
 	"Update password": "Atualizar senha",
 	"Update password": "Atualizar senha",
-	"Updated": "",
+	"Updated": "Atualizado",
 	"Updated at": "Atualizado em",
 	"Updated at": "Atualizado em",
-	"Updated At": "",
+	"Updated At": "Atualizado em",
 	"Upload": "Fazer upload",
 	"Upload": "Fazer upload",
 	"Upload a GGUF model": "Fazer upload de um modelo GGUF",
 	"Upload a GGUF model": "Fazer upload de um modelo GGUF",
-	"Upload directory": "",
-	"Upload files": "",
+	"Upload directory": "Carregar diretório",
+	"Upload files": "Carregar arquivos",
 	"Upload Files": "Fazer upload de Arquivos",
 	"Upload Files": "Fazer upload de Arquivos",
 	"Upload Pipeline": "Fazer upload de Pipeline",
 	"Upload Pipeline": "Fazer upload de Pipeline",
 	"Upload Progress": "Progresso do Upload",
 	"Upload Progress": "Progresso do Upload",
 	"URL Mode": "Modo URL",
 	"URL Mode": "Modo URL",
-	"Use '#' in the prompt input to load and include your knowledge.": "",
+	"Use '#' in the prompt input to load and include your knowledge.": "Usar '#' no prompt para carregar e incluir seus conhecimentos.",
 	"Use Gravatar": "Usar Gravatar",
 	"Use Gravatar": "Usar Gravatar",
 	"Use Initials": "Usar Iniciais",
 	"Use Initials": "Usar Iniciais",
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "usuário",
 	"user": "usuário",
-	"User": "",
+	"User": "Usuário",
 	"User location successfully retrieved.": "Localização do usuário recuperada com sucesso.",
 	"User location successfully retrieved.": "Localização do usuário recuperada com sucesso.",
 	"User Permissions": "Permissões do Usuário",
 	"User Permissions": "Permissões do Usuário",
 	"Users": "Usuários",
 	"Users": "Usuários",
-	"Using the default arena model with all models. Click the plus button to add custom models.": "",
+	"Using the default arena model with all models. Click the plus button to add custom models.": "Usando o modelo arena padrão para todos os modelos. Clique no botão mais para adicionar modelos personalizados.",
 	"Utilize": "Utilizar",
 	"Utilize": "Utilizar",
 	"Valid time units:": "Unidades de tempo válidas:",
 	"Valid time units:": "Unidades de tempo válidas:",
 	"Valves": "Válvulas",
 	"Valves": "Válvulas",
@@ -833,9 +837,9 @@
 	"variable": "variável",
 	"variable": "variável",
 	"variable to have them replaced with clipboard content.": "variável para ser substituída pelo conteúdo da área de transferência.",
 	"variable to have them replaced with clipboard content.": "variável para ser substituída pelo conteúdo da área de transferência.",
 	"Version": "Versão",
 	"Version": "Versão",
-	"Version {{selectedVersion}} of {{totalVersions}}": "",
+	"Version {{selectedVersion}} of {{totalVersions}}": "Versão {{selectedVersion}} de {{totalVersions}}",
 	"Voice": "Voz",
 	"Voice": "Voz",
-	"Voice Input": "",
+	"Voice Input": "Entrada de voz",
 	"Warning": "Aviso",
 	"Warning": "Aviso",
 	"Warning:": "Aviso:",
 	"Warning:": "Aviso:",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Aviso: Se você atualizar ou alterar seu modelo de incorporação, será necessário reimportar todos os documentos.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Aviso: Se você atualizar ou alterar seu modelo de incorporação, será necessário reimportar todos os documentos.",
@@ -848,20 +852,22 @@
 	"WebUI Settings": "Configurações da WebUI",
 	"WebUI Settings": "Configurações da WebUI",
 	"WebUI will make requests to": "A WebUI fará solicitações para",
 	"WebUI will make requests to": "A WebUI fará solicitações para",
 	"What’s New in": "O que há de novo em",
 	"What’s New in": "O que há de novo em",
+	"What are you trying to achieve?": "O que está tentando alcançar?",
+	"What are you working on?": "O que está trabalhando?",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Local)",
 	"Whisper (Local)": "Whisper (Local)",
 	"Widescreen Mode": "Modo Tela Cheia",
 	"Widescreen Mode": "Modo Tela Cheia",
-	"Won": "",
+	"Won": "Vencedor",
 	"Workspace": "Espaço de Trabalho",
 	"Workspace": "Espaço de Trabalho",
 	"Write a prompt suggestion (e.g. Who are you?)": "Escreva uma sugestão de prompt (por exemplo, Quem é você?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Escreva uma sugestão de prompt (por exemplo, Quem é você?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Escreva um resumo em 50 palavras que resuma [tópico ou palavra-chave].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Escreva um resumo em 50 palavras que resuma [tópico ou palavra-chave].",
-	"Write something...": "",
+	"Write something...": "Escrevendo algo...",
 	"Yesterday": "Ontem",
 	"Yesterday": "Ontem",
 	"You": "Você",
 	"You": "Você",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Você pode personalizar suas interações com LLMs adicionando memórias através do botão 'Gerenciar' abaixo, tornando-as mais úteis e adaptadas a você.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Você pode personalizar suas interações com LLMs adicionando memórias através do botão 'Gerenciar' abaixo, tornando-as mais úteis e adaptadas a você.",
 	"You cannot clone a base model": "Você não pode clonar um modelo base",
 	"You cannot clone a base model": "Você não pode clonar um modelo base",
-	"You cannot upload an empty file.": "",
+	"You cannot upload an empty file.": "Você não pode carregar um arquivo vazio.",
 	"You have no archived conversations.": "Você não tem conversas arquivadas.",
 	"You have no archived conversations.": "Você não tem conversas arquivadas.",
 	"You have shared this chat": "Você compartilhou este chat",
 	"You have shared this chat": "Você compartilhou este chat",
 	"You're a helpful assistant.": "Você é um assistente útil.",
 	"You're a helpful assistant.": "Você é um assistente útil.",

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

@@ -172,6 +172,7 @@
 	"Created at": "Criado em",
 	"Created at": "Criado em",
 	"Created At": "Criado em",
 	"Created At": "Criado em",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "Modelo Atual",
 	"Current Model": "Modelo Atual",
 	"Current Password": "Senha Atual",
 	"Current Password": "Senha Atual",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} apagado",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} apagado",
 	"Deleted {{name}}": "Apagado {{name}}",
 	"Deleted {{name}}": "Apagado {{name}}",
 	"Description": "Descrição",
 	"Description": "Descrição",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Não seguiu instruções com precisão",
 	"Didn't fully follow instructions": "Não seguiu instruções com precisão",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "Nome",
 	"Name": "Nome",
 	"Name your model": "Atribua um nome ao seu modelo",
 	"Name your model": "Atribua um nome ao seu modelo",
+	"Name your knowledge base": "",
 	"New Chat": "Nova Conversa",
 	"New Chat": "Nova Conversa",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Nova Senha",
 	"New Password": "Nova Senha",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Prompt de geração de consulta de pesquisa",
 	"Search Query Generation Prompt": "Prompt de geração de consulta de pesquisa",
 	"Search Result Count": "Contagem de resultados da pesquisa",
 	"Search Result Count": "Contagem de resultados da pesquisa",
 	"Search Tools": "",
 	"Search Tools": "",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Pesquisado {{count}} sites_one",
 	"Searched {{count}} sites_one": "Pesquisado {{count}} sites_one",
@@ -848,6 +852,8 @@
 	"WebUI Settings": "Configurações WebUI",
 	"WebUI Settings": "Configurações WebUI",
 	"WebUI will make requests to": "WebUI fará pedidos a",
 	"WebUI will make requests to": "WebUI fará pedidos a",
 	"What’s New in": "O que há de novo em",
 	"What’s New in": "O que há de novo em",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Local)",
 	"Whisper (Local)": "Whisper (Local)",
 	"Widescreen Mode": "Modo Widescreen",
 	"Widescreen Mode": "Modo Widescreen",

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

@@ -172,6 +172,7 @@
 	"Created at": "Creat la",
 	"Created at": "Creat la",
 	"Created At": "Creat La",
 	"Created At": "Creat La",
 	"Created by": "Creat de",
 	"Created by": "Creat de",
+	"Create a knowledge base": "",
 	"CSV Import": "Import CSV",
 	"CSV Import": "Import CSV",
 	"Current Model": "Model Curent",
 	"Current Model": "Model Curent",
 	"Current Password": "Parola Curentă",
 	"Current Password": "Parola Curentă",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} șters",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} șters",
 	"Deleted {{name}}": "{{name}} șters",
 	"Deleted {{name}}": "{{name}} șters",
 	"Description": "Descriere",
 	"Description": "Descriere",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Nu a urmat complet instrucțiunile",
 	"Didn't fully follow instructions": "Nu a urmat complet instrucțiunile",
 	"Disabled": "Dezactivat",
 	"Disabled": "Dezactivat",
 	"Discover a function": "Descoperă o funcție",
 	"Discover a function": "Descoperă o funcție",
@@ -485,6 +487,7 @@
 	"Move to Top": "Mută în partea de sus",
 	"Move to Top": "Mută în partea de sus",
 	"Name": "Nume",
 	"Name": "Nume",
 	"Name your model": "Denumirea modelului",
 	"Name your model": "Denumirea modelului",
+	"Name your knowledge base": "",
 	"New Chat": "Conversație Nouă",
 	"New Chat": "Conversație Nouă",
 	"New folder": "Folder nou",
 	"New folder": "Folder nou",
 	"New Password": "Parolă Nouă",
 	"New Password": "Parolă Nouă",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Prompt de Generare Interogare de Căutare",
 	"Search Query Generation Prompt": "Prompt de Generare Interogare de Căutare",
 	"Search Result Count": "Număr Rezultate Căutare",
 	"Search Result Count": "Număr Rezultate Căutare",
 	"Search Tools": "Caută Instrumente",
 	"Search Tools": "Caută Instrumente",
+	"Search options": "",
 	"SearchApi API Key": "Cheie API pentru SearchApi",
 	"SearchApi API Key": "Cheie API pentru SearchApi",
 	"SearchApi Engine": "Motorul SearchApi",
 	"SearchApi Engine": "Motorul SearchApi",
 	"Searched {{count}} sites_one": "{{count}} site căutat",
 	"Searched {{count}} sites_one": "{{count}} site căutat",
@@ -848,6 +852,8 @@
 	"WebUI Settings": "Setări WebUI",
 	"WebUI Settings": "Setări WebUI",
 	"WebUI will make requests to": "WebUI va face cereri către",
 	"WebUI will make requests to": "WebUI va face cereri către",
 	"What’s New in": "Ce e Nou în",
 	"What’s New in": "Ce e Nou în",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Local)",
 	"Whisper (Local)": "Whisper (Local)",
 	"Widescreen Mode": "Mod Ecran Larg",
 	"Widescreen Mode": "Mod Ecran Larg",

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

@@ -172,6 +172,7 @@
 	"Created at": "Создано",
 	"Created at": "Создано",
 	"Created At": "Создано",
 	"Created At": "Создано",
 	"Created by": "Создано",
 	"Created by": "Создано",
+	"Create a knowledge base": "",
 	"CSV Import": "Импорт CSV",
 	"CSV Import": "Импорт CSV",
 	"Current Model": "Текущая модель",
 	"Current Model": "Текущая модель",
 	"Current Password": "Текущий пароль",
 	"Current Password": "Текущий пароль",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Удалено {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Удалено {{deleteModelTag}}",
 	"Deleted {{name}}": "Удалено {{name}}",
 	"Deleted {{name}}": "Удалено {{name}}",
 	"Description": "Описание",
 	"Description": "Описание",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Не полностью следует инструкциям",
 	"Didn't fully follow instructions": "Не полностью следует инструкциям",
 	"Disabled": "Отключено",
 	"Disabled": "Отключено",
 	"Discover a function": "Найти функцию",
 	"Discover a function": "Найти функцию",
@@ -485,6 +487,7 @@
 	"Move to Top": "Поднять вверх",
 	"Move to Top": "Поднять вверх",
 	"Name": "Имя",
 	"Name": "Имя",
 	"Name your model": "Присвойте модели имя",
 	"Name your model": "Присвойте модели имя",
+	"Name your knowledge base": "",
 	"New Chat": "Новый чат",
 	"New Chat": "Новый чат",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Новый пароль",
 	"New Password": "Новый пароль",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Промпт для генерации поискового запроса",
 	"Search Query Generation Prompt": "Промпт для генерации поискового запроса",
 	"Search Result Count": "Количество результатов поиска",
 	"Search Result Count": "Количество результатов поиска",
 	"Search Tools": "Поиск инструментов",
 	"Search Tools": "Поиск инструментов",
+	"Search options": "",
 	"SearchApi API Key": "Ключ SearchApi API",
 	"SearchApi API Key": "Ключ SearchApi API",
 	"SearchApi Engine": "Движок SearchApi",
 	"SearchApi Engine": "Движок SearchApi",
 	"Searched {{count}} sites_one": "Просмотрено {count}} sites_one",
 	"Searched {{count}} sites_one": "Просмотрено {count}} sites_one",
@@ -849,6 +853,8 @@
 	"WebUI Settings": "Настройки WebUI",
 	"WebUI Settings": "Настройки WebUI",
 	"WebUI will make requests to": "WebUI будет отправлять запросы на",
 	"WebUI will make requests to": "WebUI будет отправлять запросы на",
 	"What’s New in": "Что нового в",
 	"What’s New in": "Что нового в",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Локально)",
 	"Whisper (Local)": "Whisper (Локально)",
 	"Widescreen Mode": "Широкоэкранный режим",
 	"Widescreen Mode": "Широкоэкранный режим",

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

@@ -172,6 +172,7 @@
 	"Created at": "Направљено у",
 	"Created at": "Направљено у",
 	"Created At": "Направљено у",
 	"Created At": "Направљено у",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "Тренутни модел",
 	"Current Model": "Тренутни модел",
 	"Current Password": "Тренутна лозинка",
 	"Current Password": "Тренутна лозинка",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Обрисано {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Обрисано {{deleteModelTag}}",
 	"Deleted {{name}}": "Избрисано {{наме}}",
 	"Deleted {{name}}": "Избрисано {{наме}}",
 	"Description": "Опис",
 	"Description": "Опис",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Упутства нису праћена у потпуности",
 	"Didn't fully follow instructions": "Упутства нису праћена у потпуности",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "Име",
 	"Name": "Име",
 	"Name your model": "Наведи свој модел",
 	"Name your model": "Наведи свој модел",
+	"Name your knowledge base": "",
 	"New Chat": "Ново ћаскање",
 	"New Chat": "Ново ћаскање",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Нова лозинка",
 	"New Password": "Нова лозинка",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "Број резултата претраге",
 	"Search Result Count": "Број резултата претраге",
 	"Search Tools": "",
 	"Search Tools": "",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Претражио {{цоунт}} ситес_оне",
 	"Searched {{count}} sites_one": "Претражио {{цоунт}} ситес_оне",
@@ -848,6 +852,8 @@
 	"WebUI Settings": "Подешавања веб интерфејса",
 	"WebUI Settings": "Подешавања веб интерфејса",
 	"WebUI will make requests to": "Веб интерфејс ће слати захтеве на",
 	"WebUI will make requests to": "Веб интерфејс ће слати захтеве на",
 	"What’s New in": "Шта је ново у",
 	"What’s New in": "Шта је ново у",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",

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

@@ -172,6 +172,7 @@
 	"Created at": "Skapad",
 	"Created at": "Skapad",
 	"Created At": "Skapad",
 	"Created At": "Skapad",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "Aktuell modell",
 	"Current Model": "Aktuell modell",
 	"Current Password": "Nuvarande lösenord",
 	"Current Password": "Nuvarande lösenord",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Raderad {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Raderad {{deleteModelTag}}",
 	"Deleted {{name}}": "Borttagen {{name}}",
 	"Deleted {{name}}": "Borttagen {{name}}",
 	"Description": "Beskrivning",
 	"Description": "Beskrivning",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Följde inte instruktionerna",
 	"Didn't fully follow instructions": "Följde inte instruktionerna",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "Namn",
 	"Name": "Namn",
 	"Name your model": "Namnge din modell",
 	"Name your model": "Namnge din modell",
+	"Name your knowledge base": "",
 	"New Chat": "Ny chatt",
 	"New Chat": "Ny chatt",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Nytt lösenord",
 	"New Password": "Nytt lösenord",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Instruktion för generering av sökfrågor",
 	"Search Query Generation Prompt": "Instruktion för generering av sökfrågor",
 	"Search Result Count": "Antal sökresultat",
 	"Search Result Count": "Antal sökresultat",
 	"Search Tools": "Sökverktyg",
 	"Search Tools": "Sökverktyg",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Sökte på {{count}} sites_one",
 	"Searched {{count}} sites_one": "Sökte på {{count}} sites_one",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "WebUI-inställningar",
 	"WebUI Settings": "WebUI-inställningar",
 	"WebUI will make requests to": "WebUI kommer att skicka förfrågningar till",
 	"WebUI will make requests to": "WebUI kommer att skicka förfrågningar till",
 	"What’s New in": "Vad är nytt i",
 	"What’s New in": "Vad är nytt i",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (lokal)",
 	"Whisper (Local)": "Whisper (lokal)",
 	"Widescreen Mode": "Bredbildsläge",
 	"Widescreen Mode": "Bredbildsläge",

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

@@ -172,6 +172,7 @@
 	"Created at": "สร้างเมื่อ",
 	"Created at": "สร้างเมื่อ",
 	"Created At": "สร้างเมื่อ",
 	"Created At": "สร้างเมื่อ",
 	"Created by": "สร้างโดย",
 	"Created by": "สร้างโดย",
+	"Create a knowledge base": "",
 	"CSV Import": "นำเข้า CSV",
 	"CSV Import": "นำเข้า CSV",
 	"Current Model": "โมเดลปัจจุบัน",
 	"Current Model": "โมเดลปัจจุบัน",
 	"Current Password": "รหัสผ่านปัจจุบัน",
 	"Current Password": "รหัสผ่านปัจจุบัน",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "ลบ {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "ลบ {{deleteModelTag}}",
 	"Deleted {{name}}": "ลบ {{name}}",
 	"Deleted {{name}}": "ลบ {{name}}",
 	"Description": "คำอธิบาย",
 	"Description": "คำอธิบาย",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "ไม่ได้ปฏิบัติตามคำแนะนำทั้งหมด",
 	"Didn't fully follow instructions": "ไม่ได้ปฏิบัติตามคำแนะนำทั้งหมด",
 	"Disabled": "ปิดใช้งาน",
 	"Disabled": "ปิดใช้งาน",
 	"Discover a function": "ค้นหาฟังก์ชัน",
 	"Discover a function": "ค้นหาฟังก์ชัน",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "ชื่อ",
 	"Name": "ชื่อ",
 	"Name your model": "ตั้งชื่อโมเดลของคุณ",
 	"Name your model": "ตั้งชื่อโมเดลของคุณ",
+	"Name your knowledge base": "",
 	"New Chat": "แชทใหม่",
 	"New Chat": "แชทใหม่",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "รหัสผ่านใหม่",
 	"New Password": "รหัสผ่านใหม่",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "พรอมต์การสร้างคำค้นหา",
 	"Search Query Generation Prompt": "พรอมต์การสร้างคำค้นหา",
 	"Search Result Count": "จำนวนผลลัพธ์การค้นหา",
 	"Search Result Count": "จำนวนผลลัพธ์การค้นหา",
 	"Search Tools": "เครื่องมือค้นหา",
 	"Search Tools": "เครื่องมือค้นหา",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "ค้นหา {{count}} เว็บไซต์",
 	"Searched {{count}} sites_one": "ค้นหา {{count}} เว็บไซต์",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "การตั้งค่า WebUI",
 	"WebUI Settings": "การตั้งค่า WebUI",
 	"WebUI will make requests to": "WebUI จะทำการร้องขอไปที่",
 	"WebUI will make requests to": "WebUI จะทำการร้องขอไปที่",
 	"What’s New in": "มีอะไรใหม่ใน",
 	"What’s New in": "มีอะไรใหม่ใน",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (โลคอล)",
 	"Whisper (Local)": "Whisper (โลคอล)",
 	"Widescreen Mode": "โหมดหน้าจอกว้าง",
 	"Widescreen Mode": "โหมดหน้าจอกว้าง",

+ 6 - 0
src/lib/i18n/locales/tk-TM/translation.json

@@ -121,6 +121,7 @@
 	"Create new secret key": "Täze gizlin açar döret",
 	"Create new secret key": "Täze gizlin açar döret",
 	"Created at": "Döredilen wagty",
 	"Created at": "Döredilen wagty",
 	"Created At": "Döredilen wagty",
 	"Created At": "Döredilen wagty",
+	"Create a knowledge base": "",
 	"Current Model": "Häzirki Model",
 	"Current Model": "Häzirki Model",
 	"Current Password": "Häzirki Parol",
 	"Current Password": "Häzirki Parol",
 	"Custom": "Özboluşly",
 	"Custom": "Özboluşly",
@@ -145,6 +146,7 @@
 	"Deleted": "Öçürilen",
 	"Deleted": "Öçürilen",
 	"Deleted Forever": "Möhletsyz Öçürilen",
 	"Deleted Forever": "Möhletsyz Öçürilen",
 	"Description": "Düşündiriş",
 	"Description": "Düşündiriş",
+	"Describe your knowledge base and objectives": "",
 	"Developers": "Öndürijiler",
 	"Developers": "Öndürijiler",
 	"Directory": "Katalog",
 	"Directory": "Katalog",
 	"Directory Type": "Katalog Typy",
 	"Directory Type": "Katalog Typy",
@@ -359,6 +361,7 @@
 	"Most Recent": "Iň Täze",
 	"Most Recent": "Iň Täze",
 	"Multiple file import is limited to": "Köp faýl importy çäkli",
 	"Multiple file import is limited to": "Köp faýl importy çäkli",
 	"Name": "Ady",
 	"Name": "Ady",
+	"Name your knowledge base": "",
 	"Name (hidden)": "Ady (gizlin)",
 	"Name (hidden)": "Ady (gizlin)",
 	"Name is required": "Ady zerur",
 	"Name is required": "Ady zerur",
 	"Navigate": "Gez",
 	"Navigate": "Gez",
@@ -487,6 +490,7 @@
 	"Search for users": "Ulanyjylary Gözle",
 	"Search for users": "Ulanyjylary Gözle",
 	"Search in chat": "Çatda gözle",
 	"Search in chat": "Çatda gözle",
 	"Search query": "Gözleg soragy",
 	"Search query": "Gözleg soragy",
+	"Search options": "",
 	"Search...": "Gözleg...",
 	"Search...": "Gözleg...",
 	"Secret Key": "Gizlin Açar",
 	"Secret Key": "Gizlin Açar",
 	"See more": "Has köp gör",
 	"See more": "Has köp gör",
@@ -678,6 +682,8 @@
 	"Welcome to ChatGPT! How can I help you today?": "ChatGPT-e hoş geldiňiz! Size nähili kömek edip bilerin?",
 	"Welcome to ChatGPT! How can I help you today?": "ChatGPT-e hoş geldiňiz! Size nähili kömek edip bilerin?",
 	"Welcome to our service!": "Hyzmatymyza hoş geldiňiz!",
 	"Welcome to our service!": "Hyzmatymyza hoş geldiňiz!",
 	"Welcome!": "Hoş geldiňiz!",
 	"Welcome!": "Hoş geldiňiz!",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"Width": "Ini",
 	"Width": "Ini",
 	"Work": "Iş",
 	"Work": "Iş",
 	"Write": "Ýaz",
 	"Write": "Ýaz",

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

@@ -172,6 +172,7 @@
 	"Created at": "",
 	"Created at": "",
 	"Created At": "",
 	"Created At": "",
 	"Created by": "",
 	"Created by": "",
+	"Create a knowledge base": "",
 	"CSV Import": "",
 	"CSV Import": "",
 	"Current Model": "",
 	"Current Model": "",
 	"Current Password": "",
 	"Current Password": "",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "",
 	"Deleted {{deleteModelTag}}": "",
 	"Deleted {{name}}": "",
 	"Deleted {{name}}": "",
 	"Description": "",
 	"Description": "",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "",
 	"Didn't fully follow instructions": "",
 	"Disabled": "",
 	"Disabled": "",
 	"Discover a function": "",
 	"Discover a function": "",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "",
 	"Name": "",
 	"Name your model": "",
 	"Name your model": "",
+	"Name your knowledge base": "",
 	"New Chat": "",
 	"New Chat": "",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "",
 	"New Password": "",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "",
 	"Search Result Count": "",
 	"Search Tools": "",
 	"Search Tools": "",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "",
 	"Searched {{count}} sites_one": "",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "",
 	"WebUI Settings": "",
 	"WebUI will make requests to": "",
 	"WebUI will make requests to": "",
 	"What’s New in": "",
 	"What’s New in": "",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",

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

@@ -172,6 +172,7 @@
 	"Created at": "Oluşturulma tarihi",
 	"Created at": "Oluşturulma tarihi",
 	"Created At": "Şu Tarihte Oluşturuldu:",
 	"Created At": "Şu Tarihte Oluşturuldu:",
 	"Created by": "Şunun tarafından oluşturuldu:",
 	"Created by": "Şunun tarafından oluşturuldu:",
+	"Create a knowledge base": "",
 	"CSV Import": "CSV İçe Aktarma",
 	"CSV Import": "CSV İçe Aktarma",
 	"Current Model": "Mevcut Model",
 	"Current Model": "Mevcut Model",
 	"Current Password": "Mevcut Parola",
 	"Current Password": "Mevcut Parola",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} silindi",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} silindi",
 	"Deleted {{name}}": "{{name}} silindi",
 	"Deleted {{name}}": "{{name}} silindi",
 	"Description": "Açıklama",
 	"Description": "Açıklama",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Talimatları tam olarak takip etmedi",
 	"Didn't fully follow instructions": "Talimatları tam olarak takip etmedi",
 	"Disabled": "Devre Dışı",
 	"Disabled": "Devre Dışı",
 	"Discover a function": "Bir fonksiyon keşfedin",
 	"Discover a function": "Bir fonksiyon keşfedin",
@@ -485,6 +487,7 @@
 	"Move to Top": "En Üste Taşı",
 	"Move to Top": "En Üste Taşı",
 	"Name": "Ad",
 	"Name": "Ad",
 	"Name your model": "Modelinizi Adlandırın",
 	"Name your model": "Modelinizi Adlandırın",
+	"Name your knowledge base": "",
 	"New Chat": "Yeni Sohbet",
 	"New Chat": "Yeni Sohbet",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Yeni Parola",
 	"New Password": "Yeni Parola",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Arama Sorgusu Üretme Promptu",
 	"Search Query Generation Prompt": "Arama Sorgusu Üretme Promptu",
 	"Search Result Count": "Arama Sonucu Sayısı",
 	"Search Result Count": "Arama Sonucu Sayısı",
 	"Search Tools": "Arama Araçları",
 	"Search Tools": "Arama Araçları",
+	"Search options": "",
 	"SearchApi API Key": "Arama-API API Anahtarı",
 	"SearchApi API Key": "Arama-API API Anahtarı",
 	"SearchApi Engine": "Arama-API Motoru",
 	"SearchApi Engine": "Arama-API Motoru",
 	"Searched {{count}} sites_one": "Arandı {{count}} sites_one",
 	"Searched {{count}} sites_one": "Arandı {{count}} sites_one",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "WebUI Ayarları",
 	"WebUI Settings": "WebUI Ayarları",
 	"WebUI will make requests to": "WebUI, isteklerde bulunacak:",
 	"WebUI will make requests to": "WebUI, isteklerde bulunacak:",
 	"What’s New in": "Yenilikler:",
 	"What’s New in": "Yenilikler:",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Yerel)",
 	"Whisper (Local)": "Whisper (Yerel)",
 	"Widescreen Mode": "Geniş Ekran Modu",
 	"Widescreen Mode": "Geniş Ekran Modu",

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

@@ -172,6 +172,7 @@
 	"Created at": "Створено у",
 	"Created at": "Створено у",
 	"Created At": "Створено у",
 	"Created At": "Створено у",
 	"Created by": "Створено",
 	"Created by": "Створено",
+	"Create a knowledge base": "",
 	"CSV Import": "Імпорт CSV",
 	"CSV Import": "Імпорт CSV",
 	"Current Model": "Поточна модель",
 	"Current Model": "Поточна модель",
 	"Current Password": "Поточний пароль",
 	"Current Password": "Поточний пароль",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Видалено {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Видалено {{deleteModelTag}}",
 	"Deleted {{name}}": "Видалено {{name}}",
 	"Deleted {{name}}": "Видалено {{name}}",
 	"Description": "Опис",
 	"Description": "Опис",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Не повністю дотримувалися інструкцій",
 	"Didn't fully follow instructions": "Не повністю дотримувалися інструкцій",
 	"Disabled": "Вимкнено",
 	"Disabled": "Вимкнено",
 	"Discover a function": "Знайдіть функцію",
 	"Discover a function": "Знайдіть функцію",
@@ -485,6 +487,7 @@
 	"Move to Top": "Перейти до початку",
 	"Move to Top": "Перейти до початку",
 	"Name": "Ім'я",
 	"Name": "Ім'я",
 	"Name your model": "Назвіть свою модель",
 	"Name your model": "Назвіть свою модель",
+	"Name your knowledge base": "",
 	"New Chat": "Новий чат",
 	"New Chat": "Новий чат",
 	"New folder": "Нова папка",
 	"New folder": "Нова папка",
 	"New Password": "Новий пароль",
 	"New Password": "Новий пароль",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Підказка для формування пошукового промту",
 	"Search Query Generation Prompt": "Підказка для формування пошукового промту",
 	"Search Result Count": "Кількість результатів пошуку",
 	"Search Result Count": "Кількість результатів пошуку",
 	"Search Tools": "Пошуку інструментів",
 	"Search Tools": "Пошуку інструментів",
+	"Search options": "",
 	"SearchApi API Key": "Ключ API для SearchApi",
 	"SearchApi API Key": "Ключ API для SearchApi",
 	"SearchApi Engine": "Рушій SearchApi",
 	"SearchApi Engine": "Рушій SearchApi",
 	"Searched {{count}} sites_one": "Переглянуто {{count}} сайт",
 	"Searched {{count}} sites_one": "Переглянуто {{count}} сайт",
@@ -849,6 +853,8 @@
 	"WebUI Settings": "Налаштування WebUI",
 	"WebUI Settings": "Налаштування WebUI",
 	"WebUI will make requests to": "WebUI буде робити запити до",
 	"WebUI will make requests to": "WebUI буде робити запити до",
 	"What’s New in": "Що нового в",
 	"What’s New in": "Що нового в",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Локально)",
 	"Whisper (Local)": "Whisper (Локально)",
 	"Widescreen Mode": "Широкоекранний режим",
 	"Widescreen Mode": "Широкоекранний режим",

+ 6 - 0
src/lib/i18n/locales/ur-PK/translation.json

@@ -172,6 +172,7 @@
 	"Created at": "پر بنایا گیا",
 	"Created at": "پر بنایا گیا",
 	"Created At": "بنایا گیا:",
 	"Created At": "بنایا گیا:",
 	"Created by": "تخلیق کردہ",
 	"Created by": "تخلیق کردہ",
+	"Create a knowledge base": "",
 	"CSV Import": "CSV درآمد کریں",
 	"CSV Import": "CSV درآمد کریں",
 	"Current Model": "موجودہ ماڈل",
 	"Current Model": "موجودہ ماڈل",
 	"Current Password": "موجودہ پاس ورڈ",
 	"Current Password": "موجودہ پاس ورڈ",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} حذف کر دیا گیا",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} حذف کر دیا گیا",
 	"Deleted {{name}}": "حذف کر دیا گیا {{name}}",
 	"Deleted {{name}}": "حذف کر دیا گیا {{name}}",
 	"Description": "تفصیل",
 	"Description": "تفصیل",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "ہدایات کو مکمل طور پر نہیں سمجھا",
 	"Didn't fully follow instructions": "ہدایات کو مکمل طور پر نہیں سمجھا",
 	"Disabled": "غیر فعال",
 	"Disabled": "غیر فعال",
 	"Discover a function": "ایک فنکشن دریافت کریں",
 	"Discover a function": "ایک فنکشن دریافت کریں",
@@ -485,6 +487,7 @@
 	"Move to Top": "اوپر منتقل کریں",
 	"Move to Top": "اوپر منتقل کریں",
 	"Name": "نام",
 	"Name": "نام",
 	"Name your model": "اپنے ماڈل کا نام دیں",
 	"Name your model": "اپنے ماڈل کا نام دیں",
+	"Name your knowledge base": "",
 	"New Chat": "نئی بات چیت",
 	"New Chat": "نئی بات چیت",
 	"New folder": "نیا فولڈر",
 	"New folder": "نیا فولڈر",
 	"New Password": "نیا پاس ورڈ",
 	"New Password": "نیا پاس ورڈ",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "تلاش کے استفسار کی تیاری کی ترغیب   ",
 	"Search Query Generation Prompt": "تلاش کے استفسار کی تیاری کی ترغیب   ",
 	"Search Result Count": "تلاش کا نتیجہ شمار ",
 	"Search Result Count": "تلاش کا نتیجہ شمار ",
 	"Search Tools": "تلاش کے اوزار",
 	"Search Tools": "تلاش کے اوزار",
+	"Search options": "",
 	"SearchApi API Key": "سرچ اے پی آئی کی API کلید",
 	"SearchApi API Key": "سرچ اے پی آئی کی API کلید",
 	"SearchApi Engine": "تلاش انجن API",
 	"SearchApi Engine": "تلاش انجن API",
 	"Searched {{count}} sites_one": "{{count}} سائٹیں تلاش کی گئی ہیں_ایک",
 	"Searched {{count}} sites_one": "{{count}} سائٹیں تلاش کی گئی ہیں_ایک",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "ویب UI ترتیبات",
 	"WebUI Settings": "ویب UI ترتیبات",
 	"WebUI will make requests to": "ویب یو آئی درخواست کرے گا کہ وہ ",
 	"WebUI will make requests to": "ویب یو آئی درخواست کرے گا کہ وہ ",
 	"What’s New in": "میں نیا کیا ہے",
 	"What’s New in": "میں نیا کیا ہے",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "سرگوشی (مقامی)",
 	"Whisper (Local)": "سرگوشی (مقامی)",
 	"Widescreen Mode": "وائڈ اسکرین موڈ",
 	"Widescreen Mode": "وائڈ اسکرین موڈ",

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

@@ -172,6 +172,7 @@
 	"Created at": "Được tạo vào lúc",
 	"Created at": "Được tạo vào lúc",
 	"Created At": "Tạo lúc",
 	"Created At": "Tạo lúc",
 	"Created by": "Tạo bởi",
 	"Created by": "Tạo bởi",
+	"Create a knowledge base": "",
 	"CSV Import": "Nạp CSV",
 	"CSV Import": "Nạp CSV",
 	"Current Model": "Mô hình hiện tại",
 	"Current Model": "Mô hình hiện tại",
 	"Current Password": "Mật khẩu hiện tại",
 	"Current Password": "Mật khẩu hiện tại",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "Đã xóa {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "Đã xóa {{deleteModelTag}}",
 	"Deleted {{name}}": "Đã xóa {{name}}",
 	"Deleted {{name}}": "Đã xóa {{name}}",
 	"Description": "Mô tả",
 	"Description": "Mô tả",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "Không tuân theo chỉ dẫn một cách đầy đủ",
 	"Didn't fully follow instructions": "Không tuân theo chỉ dẫn một cách đầy đủ",
 	"Disabled": "Đã tắt",
 	"Disabled": "Đã tắt",
 	"Discover a function": "Khám phá function",
 	"Discover a function": "Khám phá function",
@@ -485,6 +487,7 @@
 	"Move to Top": "",
 	"Move to Top": "",
 	"Name": "Tên",
 	"Name": "Tên",
 	"Name your model": "Tên model",
 	"Name your model": "Tên model",
+	"Name your knowledge base": "",
 	"New Chat": "Tạo chat mới",
 	"New Chat": "Tạo chat mới",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "Mật khẩu mới",
 	"New Password": "Mật khẩu mới",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "Prompt tạo câu truy vấn, tìm kiếm",
 	"Search Query Generation Prompt": "Prompt tạo câu truy vấn, tìm kiếm",
 	"Search Result Count": "Số kết quả tìm kiếm",
 	"Search Result Count": "Số kết quả tìm kiếm",
 	"Search Tools": "Tìm kiếm Tools",
 	"Search Tools": "Tìm kiếm Tools",
+	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_other": "Đã tìm thấy {{count}} trang web",
 	"Searched {{count}} sites_other": "Đã tìm thấy {{count}} trang web",
@@ -846,6 +850,8 @@
 	"WebUI Settings": "Cài đặt WebUI",
 	"WebUI Settings": "Cài đặt WebUI",
 	"WebUI will make requests to": "WebUI sẽ thực hiện các yêu cầu đến",
 	"WebUI will make requests to": "WebUI sẽ thực hiện các yêu cầu đến",
 	"What’s New in": "Thông tin mới về",
 	"What’s New in": "Thông tin mới về",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "Chế độ màn hình rộng",
 	"Widescreen Mode": "Chế độ màn hình rộng",

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

@@ -172,6 +172,7 @@
 	"Created at": "创建于",
 	"Created at": "创建于",
 	"Created At": "创建于",
 	"Created At": "创建于",
 	"Created by": "作者",
 	"Created by": "作者",
+	"Create a knowledge base": "",
 	"CSV Import": "通过 CSV 文件导入",
 	"CSV Import": "通过 CSV 文件导入",
 	"Current Model": "当前模型",
 	"Current Model": "当前模型",
 	"Current Password": "当前密码",
 	"Current Password": "当前密码",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "已删除 {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "已删除 {{deleteModelTag}}",
 	"Deleted {{name}}": "已删除 {{name}}",
 	"Deleted {{name}}": "已删除 {{name}}",
 	"Description": "描述",
 	"Description": "描述",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "没有完全遵照指示",
 	"Didn't fully follow instructions": "没有完全遵照指示",
 	"Disabled": "禁用",
 	"Disabled": "禁用",
 	"Discover a function": "发现更多函数",
 	"Discover a function": "发现更多函数",
@@ -485,6 +487,7 @@
 	"Move to Top": "移动到顶部",
 	"Move to Top": "移动到顶部",
 	"Name": "名称",
 	"Name": "名称",
 	"Name your model": "为您的模型命名",
 	"Name your model": "为您的模型命名",
+	"Name your knowledge base": "",
 	"New Chat": "新对话",
 	"New Chat": "新对话",
 	"New folder": "新建分组",
 	"New folder": "新建分组",
 	"New Password": "新密码",
 	"New Password": "新密码",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "用于联网搜索关键词生成的提示词",
 	"Search Query Generation Prompt": "用于联网搜索关键词生成的提示词",
 	"Search Result Count": "搜索结果数量",
 	"Search Result Count": "搜索结果数量",
 	"Search Tools": "搜索工具",
 	"Search Tools": "搜索工具",
+	"Search options": "",
 	"SearchApi API Key": "SearchApi API 密钥",
 	"SearchApi API Key": "SearchApi API 密钥",
 	"SearchApi Engine": "SearchApi 引擎",
 	"SearchApi Engine": "SearchApi 引擎",
 	"Searched {{count}} sites_other": "搜索到 {{count}} 个结果",
 	"Searched {{count}} sites_other": "搜索到 {{count}} 个结果",
@@ -846,6 +850,8 @@
 	"WebUI Settings": "WebUI 设置",
 	"WebUI Settings": "WebUI 设置",
 	"WebUI will make requests to": "WebUI 将请求",
 	"WebUI will make requests to": "WebUI 将请求",
 	"What’s New in": "最近更新内容于",
 	"What’s New in": "最近更新内容于",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (本地)",
 	"Whisper (Local)": "Whisper (本地)",
 	"Widescreen Mode": "宽屏模式",
 	"Widescreen Mode": "宽屏模式",

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

@@ -172,6 +172,7 @@
 	"Created at": "建立於",
 	"Created at": "建立於",
 	"Created At": "建立於",
 	"Created At": "建立於",
 	"Created by": "建立者",
 	"Created by": "建立者",
+	"Create a knowledge base": "",
 	"CSV Import": "CSV 匯入",
 	"CSV Import": "CSV 匯入",
 	"Current Model": "目前模型",
 	"Current Model": "目前模型",
 	"Current Password": "目前密碼",
 	"Current Password": "目前密碼",
@@ -203,6 +204,7 @@
 	"Deleted {{deleteModelTag}}": "已刪除 {{deleteModelTag}}",
 	"Deleted {{deleteModelTag}}": "已刪除 {{deleteModelTag}}",
 	"Deleted {{name}}": "已刪除 {{name}}",
 	"Deleted {{name}}": "已刪除 {{name}}",
 	"Description": "描述",
 	"Description": "描述",
+	"Describe your knowledge base and objectives": "",
 	"Didn't fully follow instructions": "未完全遵循指示",
 	"Didn't fully follow instructions": "未完全遵循指示",
 	"Disabled": "已停用",
 	"Disabled": "已停用",
 	"Discover a function": "發掘函式",
 	"Discover a function": "發掘函式",
@@ -485,6 +487,7 @@
 	"Move to Top": "移至頂端",
 	"Move to Top": "移至頂端",
 	"Name": "名稱",
 	"Name": "名稱",
 	"Name your model": "為您的模型命名",
 	"Name your model": "為您的模型命名",
+	"Name your knowledge base": "",
 	"New Chat": "新增對話",
 	"New Chat": "新增對話",
 	"New folder": "",
 	"New folder": "",
 	"New Password": "新密碼",
 	"New Password": "新密碼",
@@ -633,6 +636,7 @@
 	"Search Query Generation Prompt": "搜尋查詢生成提示詞",
 	"Search Query Generation Prompt": "搜尋查詢生成提示詞",
 	"Search Result Count": "搜尋結果數量",
 	"Search Result Count": "搜尋結果數量",
 	"Search Tools": "搜尋工具",
 	"Search Tools": "搜尋工具",
+	"Search options": "",
 	"SearchApi API Key": "SearchApi API 金鑰",
 	"SearchApi API Key": "SearchApi API 金鑰",
 	"SearchApi Engine": "SearchApi 引擎",
 	"SearchApi Engine": "SearchApi 引擎",
 	"Searched {{count}} sites_one": "已搜尋 {{count}} 個網站",
 	"Searched {{count}} sites_one": "已搜尋 {{count}} 個網站",
@@ -847,6 +851,8 @@
 	"WebUI Settings": "WebUI 設定",
 	"WebUI Settings": "WebUI 設定",
 	"WebUI will make requests to": "WebUI 將會向以下位址發出請求",
 	"WebUI will make requests to": "WebUI 將會向以下位址發出請求",
 	"What’s New in": "新功能",
 	"What’s New in": "新功能",
+	"What are you trying to achieve?": "",
+	"What are you working on?": "",
 	"wherever you are": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper(本機)",
 	"Whisper (Local)": "Whisper(本機)",
 	"Widescreen Mode": "寬螢幕模式",
 	"Widescreen Mode": "寬螢幕模式",