Explorar o código

chore: format

Timothy Jaeryang Baek hai 3 meses
pai
achega
a1e33a82f0
Modificáronse 52 ficheiros con 456 adicións e 111 borrados
  1. 2 3
      src/lib/components/workspace/Models.svelte
  2. 10 7
      src/lib/components/workspace/common/AccessControl.svelte
  3. 9 2
      src/lib/i18n/locales/ar-BH/translation.json
  4. 9 2
      src/lib/i18n/locales/bg-BG/translation.json
  5. 9 2
      src/lib/i18n/locales/bn-BD/translation.json
  6. 9 2
      src/lib/i18n/locales/ca-ES/translation.json
  7. 9 2
      src/lib/i18n/locales/ceb-PH/translation.json
  8. 9 2
      src/lib/i18n/locales/cs-CZ/translation.json
  9. 9 2
      src/lib/i18n/locales/da-DK/translation.json
  10. 9 2
      src/lib/i18n/locales/de-DE/translation.json
  11. 9 2
      src/lib/i18n/locales/dg-DG/translation.json
  12. 9 2
      src/lib/i18n/locales/el-GR/translation.json
  13. 9 2
      src/lib/i18n/locales/en-GB/translation.json
  14. 9 2
      src/lib/i18n/locales/en-US/translation.json
  15. 9 2
      src/lib/i18n/locales/es-ES/translation.json
  16. 9 2
      src/lib/i18n/locales/eu-ES/translation.json
  17. 9 2
      src/lib/i18n/locales/fa-IR/translation.json
  18. 9 2
      src/lib/i18n/locales/fi-FI/translation.json
  19. 9 2
      src/lib/i18n/locales/fr-CA/translation.json
  20. 9 2
      src/lib/i18n/locales/fr-FR/translation.json
  21. 9 2
      src/lib/i18n/locales/he-IL/translation.json
  22. 9 2
      src/lib/i18n/locales/hi-IN/translation.json
  23. 9 2
      src/lib/i18n/locales/hr-HR/translation.json
  24. 9 2
      src/lib/i18n/locales/hu-HU/translation.json
  25. 9 2
      src/lib/i18n/locales/id-ID/translation.json
  26. 9 2
      src/lib/i18n/locales/ie-GA/translation.json
  27. 9 2
      src/lib/i18n/locales/it-IT/translation.json
  28. 9 2
      src/lib/i18n/locales/ja-JP/translation.json
  29. 9 2
      src/lib/i18n/locales/ka-GE/translation.json
  30. 10 3
      src/lib/i18n/locales/ko-KR/translation.json
  31. 9 2
      src/lib/i18n/locales/lt-LT/translation.json
  32. 9 2
      src/lib/i18n/locales/ms-MY/translation.json
  33. 9 2
      src/lib/i18n/locales/nb-NO/translation.json
  34. 9 2
      src/lib/i18n/locales/nl-NL/translation.json
  35. 9 2
      src/lib/i18n/locales/pa-IN/translation.json
  36. 9 2
      src/lib/i18n/locales/pl-PL/translation.json
  37. 9 2
      src/lib/i18n/locales/pt-BR/translation.json
  38. 9 2
      src/lib/i18n/locales/pt-PT/translation.json
  39. 9 2
      src/lib/i18n/locales/ro-RO/translation.json
  40. 9 2
      src/lib/i18n/locales/ru-RU/translation.json
  41. 9 2
      src/lib/i18n/locales/sk-SK/translation.json
  42. 9 2
      src/lib/i18n/locales/sr-RS/translation.json
  43. 9 2
      src/lib/i18n/locales/sv-SE/translation.json
  44. 9 2
      src/lib/i18n/locales/th-TH/translation.json
  45. 9 2
      src/lib/i18n/locales/tk-TW/translation.json
  46. 9 2
      src/lib/i18n/locales/tr-TR/translation.json
  47. 9 2
      src/lib/i18n/locales/uk-UA/translation.json
  48. 9 2
      src/lib/i18n/locales/ur-PK/translation.json
  49. 9 2
      src/lib/i18n/locales/vi-VN/translation.json
  50. 9 2
      src/lib/i18n/locales/zh-CN/translation.json
  51. 9 2
      src/lib/i18n/locales/zh-TW/translation.json
  52. 2 2
      svelte.config.js

+ 2 - 3
src/lib/components/workspace/Models.svelte

@@ -155,8 +155,7 @@
 	onMount(async () => {
 	onMount(async () => {
 		models = await getWorkspaceModels(localStorage.token);
 		models = await getWorkspaceModels(localStorage.token);
 		let groups = await getGroups(localStorage.token);
 		let groups = await getGroups(localStorage.token);
-		group_ids = groups.map(group => group.id);
-		
+		group_ids = groups.map((group) => group.id);
 
 
 		loaded = true;
 		loaded = true;
 
 
@@ -314,7 +313,7 @@
 								</button>
 								</button>
 							</Tooltip>
 							</Tooltip>
 						{:else}
 						{:else}
-							{#if $user?.role === 'admin' || model.user_id === $user?.id || model.access_control.write.group_ids.some(wg => group_ids.includes(wg))} 
+							{#if $user?.role === 'admin' || model.user_id === $user?.id || model.access_control.write.group_ids.some( (wg) => group_ids.includes(wg) )}
 								<a
 								<a
 									class="self-center w-fit text-sm px-2 py-2 dark:text-gray-300 dark:hover:text-white hover:bg-black/5 dark:hover:bg-white/5 rounded-xl"
 									class="self-center w-fit text-sm px-2 py-2 dark:text-gray-300 dark:hover:text-white hover:bg-black/5 dark:hover:bg-white/5 rounded-xl"
 									type="button"
 									type="button"

+ 10 - 7
src/lib/components/workspace/common/AccessControl.svelte

@@ -147,19 +147,22 @@
 										on:click={() => {
 										on:click={() => {
 											if (accessControl.write.group_ids.includes(group.id)) {
 											if (accessControl.write.group_ids.includes(group.id)) {
 												accessControl.write.group_ids = accessControl.write.group_ids.filter(
 												accessControl.write.group_ids = accessControl.write.group_ids.filter(
-													(group_id) => group_id !== group.id)
+													(group_id) => group_id !== group.id
+												);
 											} else {
 											} else {
 												accessControl.write.group_ids = [
 												accessControl.write.group_ids = [
-												...accessControl.write.group_ids,
-												group.id
+													...accessControl.write.group_ids,
+													group.id
 												];
 												];
 											}
 											}
 										}}
 										}}
 									>
 									>
-									<Badge	
-										type={accessControl.write.group_ids.includes(group.id) ? 'info' : 'success'}
-										content={$i18n.t(accessControl.write.group_ids.includes(group.id) ? "Write" : "Read")}
-									/>
+										<Badge
+											type={accessControl.write.group_ids.includes(group.id) ? 'info' : 'success'}
+											content={$i18n.t(
+												accessControl.write.group_ids.includes(group.id) ? 'Write' : 'Read'
+											)}
+										/>
 									</button>
 									</button>
 
 
 									<button
 									<button

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "المعلمات المتقدمة",
 	"Advanced Params": "المعلمات المتقدمة",
 	"All Documents": "جميع الملفات",
 	"All Documents": "جميع الملفات",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "يستطيع حذف المحادثات",
 	"Allow Chat Deletion": "يستطيع حذف المحادثات",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "فبراير",
 	"February": "فبراير",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "توليد الصور (تجريبي)",
 	"Image Generation (Experimental)": "توليد الصور (تجريبي)",
 	"Image Generation Engine": "محرك توليد الصور",
 	"Image Generation Engine": "محرك توليد الصور",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "إعدادات الصورة",
 	"Image Settings": "إعدادات الصورة",
 	"Images": "الصور",
 	"Images": "الصور",
 	"Import Chats": "استيراد الدردشات",
 	"Import Chats": "استيراد الدردشات",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED داكن",
 	"OLED Dark": "OLED داكن",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "أولاما API",
 	"Ollama API": "أولاما API",
-	"Ollama API disabled": "أولاما API معطلة",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Ollama الاصدار",
 	"Ollama Version": "Ollama الاصدار",
 	"On": "تشغيل",
 	"On": "تشغيل",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "ضبط الخطوات",
 	"Set Steps": "ضبط الخطوات",
 	"Set Task Model": "تعيين نموذج المهمة",
 	"Set Task Model": "تعيين نموذج المهمة",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "ضبط الصوت",
 	"Set Voice": "ضبط الصوت",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "لا تملك محادثات محفوظه",
 	"You have no archived conversations.": "لا تملك محادثات محفوظه",
 	"You have shared this chat": "تم مشاركة هذه المحادثة",
 	"You have shared this chat": "تم مشاركة هذه المحادثة",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Разширени параметри",
 	"Advanced Params": "Разширени параметри",
 	"All Documents": "Всички Документи",
 	"All Documents": "Всички Документи",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Позволи Изтриване на Чат",
 	"Allow Chat Deletion": "Позволи Изтриване на Чат",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "Февруари",
 	"February": "Февруари",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Генерация на изображения (Експериментално)",
 	"Image Generation (Experimental)": "Генерация на изображения (Експериментално)",
 	"Image Generation Engine": "Двигател за генериране на изображения",
 	"Image Generation Engine": "Двигател за генериране на изображения",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Настройки на изображения",
 	"Image Settings": "Настройки на изображения",
 	"Images": "Изображения",
 	"Images": "Изображения",
 	"Import Chats": "Импортване на чатове",
 	"Import Chats": "Импортване на чатове",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED тъмно",
 	"OLED Dark": "OLED тъмно",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API деактивиран",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Ollama Версия",
 	"Ollama Version": "Ollama Версия",
 	"On": "Вкл.",
 	"On": "Вкл.",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "Задай Стъпки",
 	"Set Steps": "Задай Стъпки",
 	"Set Task Model": "Задаване на модел на задача",
 	"Set Task Model": "Задаване на модел на задача",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Задай Глас",
 	"Set Voice": "Задай Глас",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Нямате архивирани разговори.",
 	"You have no archived conversations.": "Нямате архивирани разговори.",
 	"You have shared this chat": "Вие сте споделели този чат",
 	"You have shared this chat": "Вие сте споделели този чат",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "অ্যাডভান্সড প্যারাম",
 	"Advanced Params": "অ্যাডভান্সড প্যারাম",
 	"All Documents": "সব ডকুমেন্ট",
 	"All Documents": "সব ডকুমেন্ট",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "চ্যাট ডিলিট করতে দিন",
 	"Allow Chat Deletion": "চ্যাট ডিলিট করতে দিন",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "ফেব্রুয়ারি",
 	"February": "ফেব্রুয়ারি",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "ইমেজ জেনারেশন (পরিক্ষামূলক)",
 	"Image Generation (Experimental)": "ইমেজ জেনারেশন (পরিক্ষামূলক)",
 	"Image Generation Engine": "ইমেজ জেনারেশন ইঞ্জিন",
 	"Image Generation Engine": "ইমেজ জেনারেশন ইঞ্জিন",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "ছবির সেটিংসমূহ",
 	"Image Settings": "ছবির সেটিংসমূহ",
 	"Images": "ছবিসমূহ",
 	"Images": "ছবিসমূহ",
 	"Import Chats": "চ্যাটগুলি ইমপোর্ট করুন",
 	"Import Chats": "চ্যাটগুলি ইমপোর্ট করুন",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED ডার্ক",
 	"OLED Dark": "OLED ডার্ক",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API নিষ্ক্রিয় করা হয়েছে",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Ollama ভার্সন",
 	"Ollama Version": "Ollama ভার্সন",
 	"On": "চালু",
 	"On": "চালু",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "পরবর্তী ধাপসমূহ",
 	"Set Steps": "পরবর্তী ধাপসমূহ",
 	"Set Task Model": "টাস্ক মডেল সেট করুন",
 	"Set Task Model": "টাস্ক মডেল সেট করুন",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "কন্ঠস্বর নির্ধারণ করুন",
 	"Set Voice": "কন্ঠস্বর নির্ধারণ করুন",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "আপনার কোনও আর্কাইভ করা কথোপকথন নেই।",
 	"You have no archived conversations.": "আপনার কোনও আর্কাইভ করা কথোপকথন নেই।",
 	"You have shared this chat": "আপনি এই চ্যাটটি শেয়ার করেছেন",
 	"You have shared this chat": "আপনি এই চ্যাটটি শেয়ার করেছেন",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Paràmetres avançats",
 	"Advanced Params": "Paràmetres avançats",
 	"All Documents": "Tots els documents",
 	"All Documents": "Tots els documents",
 	"All models deleted successfully": "Tots els models s'han eliminat correctament",
 	"All models deleted successfully": "Tots els models s'han eliminat correctament",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "Permetre eliminar el xat",
 	"Allow Chat Delete": "Permetre eliminar el xat",
 	"Allow Chat Deletion": "Permetre la supressió del xat",
 	"Allow Chat Deletion": "Permetre la supressió del xat",
 	"Allow Chat Edit": "Permetre editar el xat",
 	"Allow Chat Edit": "Permetre editar el xat",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "No s'ha pogut desar la configuració dels models",
 	"Failed to save models configuration": "No s'ha pogut desar la configuració dels models",
 	"Failed to update settings": "No s'han pogut actualitzar les preferències",
 	"Failed to update settings": "No s'han pogut actualitzar les preferències",
 	"Failed to upload file.": "No s'ha pogut pujar l'arxiu.",
 	"Failed to upload file.": "No s'ha pogut pujar l'arxiu.",
+	"Features Permissions": "",
 	"February": "Febrer",
 	"February": "Febrer",
 	"Feedback History": "Històric de comentaris",
 	"Feedback History": "Històric de comentaris",
 	"Feedbacks": "Comentaris",
 	"Feedbacks": "Comentaris",
@@ -490,10 +492,15 @@
 	"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.": "Afirmo que he llegit i entenc les implicacions de la meva acció. Soc conscient dels riscos associats a l'execució de codi arbitrari i he verificat la fiabilitat de la font.",
 	"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.": "Afirmo que he llegit i entenc les implicacions de la meva acció. Soc conscient dels riscos associats a l'execució de codi arbitrari i he verificat la fiabilitat de la font.",
 	"ID": "ID",
 	"ID": "ID",
 	"Ignite curiosity": "Despertar la curiositat",
 	"Ignite curiosity": "Despertar la curiositat",
+	"Image": "",
 	"Image Compression": "Compressió d'imatges",
 	"Image Compression": "Compressió d'imatges",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Generació d'imatges (Experimental)",
 	"Image Generation (Experimental)": "Generació d'imatges (Experimental)",
 	"Image Generation Engine": "Motor de generació d'imatges",
 	"Image Generation Engine": "Motor de generació d'imatges",
 	"Image Max Compression Size": "Mida màxima de la compressió d'imatges",
 	"Image Max Compression Size": "Mida màxima de la compressió d'imatges",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Preferències d'imatges",
 	"Image Settings": "Preferències d'imatges",
 	"Images": "Imatges",
 	"Images": "Imatges",
 	"Import Chats": "Importar xats",
 	"Import Chats": "Importar xats",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED Fosc",
 	"OLED Dark": "OLED Fosc",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "API d'Ollama",
 	"Ollama API": "API d'Ollama",
-	"Ollama API disabled": "API d'Ollama desactivada",
 	"Ollama API settings updated": "La configuració de l'API d'Ollama s'ha actualitzat",
 	"Ollama API settings updated": "La configuració de l'API d'Ollama s'ha actualitzat",
 	"Ollama Version": "Versió d'Ollama",
 	"Ollama Version": "Versió d'Ollama",
 	"On": "Activat",
 	"On": "Activat",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Establir el programador",
 	"Set Scheduler": "Establir el programador",
 	"Set Steps": "Establir el nombre de passos",
 	"Set Steps": "Establir el nombre de passos",
 	"Set Task Model": "Establir el model de tasca",
 	"Set Task Model": "Establir el model de tasca",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "Establir el nombre de dispositius GPU utilitzats per al càlcul. Aquesta opció controla quants dispositius GPU (si estan disponibles) s'utilitzen per processar les sol·licituds entrants. Augmentar aquest valor pot millorar significativament el rendiment dels models optimitzats per a l'acceleració de la GPU, però també pot consumir més energia i recursos de GPU.",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Establir el nombre de fils de treball utilitzats per al càlcul. Aquesta opció controla quants fils s'utilitzen per processar les sol·licituds entrants simultàniament. Augmentar aquest valor pot millorar el rendiment amb càrregues de treball de concurrència elevada, però també pot consumir més recursos de CPU.",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Establir el nombre de fils de treball utilitzats per al càlcul. Aquesta opció controla quants fils s'utilitzen per processar les sol·licituds entrants simultàniament. Augmentar aquest valor pot millorar el rendiment amb càrregues de treball de concurrència elevada, però també pot consumir més recursos de CPU.",
 	"Set Voice": "Establir la veu",
 	"Set Voice": "Establir la veu",
 	"Set whisper model": "Establir el model whisper",
 	"Set whisper model": "Establir el model whisper",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Només pots xatejar amb un màxim de {{maxCount}} fitxers alhora.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Només pots xatejar amb un màxim de {{maxCount}} fitxers alhora.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Pots personalitzar les teves interaccions amb els models de llenguatge afegint memòries mitjançant el botó 'Gestiona' que hi ha a continuació, fent-les més útils i adaptades a tu.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Pots personalitzar les teves interaccions amb els models de llenguatge afegint memòries mitjançant el botó 'Gestiona' que hi ha a continuació, fent-les més útils i adaptades a tu.",
 	"You cannot upload an empty file.": "No es pot pujar un ariux buit.",
 	"You cannot upload an empty file.": "No es pot pujar un ariux buit.",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "No tens permisos per pujar arxius.",
 	"You do not have permission to upload files.": "No tens permisos per pujar arxius.",
 	"You have no archived conversations.": "No tens converses arxivades.",
 	"You have no archived conversations.": "No tens converses arxivades.",
 	"You have shared this chat": "Has compartit aquest xat",
 	"You have shared this chat": "Has compartit aquest xat",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "",
 	"Advanced Params": "",
 	"All Documents": "",
 	"All Documents": "",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Tugoti nga mapapas ang mga chat",
 	"Allow Chat Deletion": "Tugoti nga mapapas ang mga chat",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "",
 	"February": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Pagmugna og hulagway (Eksperimento)",
 	"Image Generation (Experimental)": "Pagmugna og hulagway (Eksperimento)",
 	"Image Generation Engine": "Makina sa paghimo og imahe",
 	"Image Generation Engine": "Makina sa paghimo og imahe",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Mga Setting sa Imahen",
 	"Image Settings": "Mga Setting sa Imahen",
 	"Images": "Mga hulagway",
 	"Images": "Mga hulagway",
 	"Import Chats": "Import nga mga chat",
 	"Import Chats": "Import nga mga chat",
@@ -652,7 +659,6 @@
 	"OLED Dark": "",
 	"OLED Dark": "",
 	"Ollama": "",
 	"Ollama": "",
 	"Ollama API": "",
 	"Ollama API": "",
-	"Ollama API disabled": "",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Ollama nga bersyon",
 	"Ollama Version": "Ollama nga bersyon",
 	"On": "Gipaandar",
 	"On": "Gipaandar",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "Ipasabot ang mga lakang",
 	"Set Steps": "Ipasabot ang mga lakang",
 	"Set Task Model": "",
 	"Set Task Model": "",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Ibutang ang tingog",
 	"Set Voice": "Ibutang ang tingog",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "",
 	"You have no archived conversations.": "",
 	"You have shared this chat": "",
 	"You have shared this chat": "",

+ 9 - 2
src/lib/i18n/locales/cs-CZ/translation.json

@@ -51,6 +51,7 @@
 	"Advanced Params": "Pokročilé parametry",
 	"Advanced Params": "Pokročilé parametry",
 	"All Documents": "Všechny dokumenty",
 	"All Documents": "Všechny dokumenty",
 	"All models deleted successfully": "Všechny modely úspěšně odstráněny",
 	"All models deleted successfully": "Všechny modely úspěšně odstráněny",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "Povolit odstranění chatu",
 	"Allow Chat Delete": "Povolit odstranění chatu",
 	"Allow Chat Deletion": "Povolit odstranění chatu",
 	"Allow Chat Deletion": "Povolit odstranění chatu",
 	"Allow Chat Edit": "Povolit úpravu chatu",
 	"Allow Chat Edit": "Povolit úpravu chatu",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "Nepodařilo se aktualizovat nastavení",
 	"Failed to update settings": "Nepodařilo se aktualizovat nastavení",
 	"Failed to upload file.": "Nepodařilo se nahrát soubor.",
 	"Failed to upload file.": "Nepodařilo se nahrát soubor.",
+	"Features Permissions": "",
 	"February": "Únor",
 	"February": "Únor",
 	"Feedback History": "Historie zpětné vazby",
 	"Feedback History": "Historie zpětné vazby",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "Beru na vědomí, že jsem si přečetl a chápu důsledky svých činů. Jsem si vědom rizik spojených s vykonáváním libovolného kódu a ověřil jsem důvěryhodnost zdroje.",
 	"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.": "Beru na vědomí, že jsem si přečetl a chápu důsledky svých činů. Jsem si vědom rizik spojených s vykonáváním libovolného kódu a ověřil jsem důvěryhodnost zdroje.",
 	"ID": "ID",
 	"ID": "ID",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Generování obrázků (experimentální)",
 	"Image Generation (Experimental)": "Generování obrázků (experimentální)",
 	"Image Generation Engine": "Engine pro generování obrázků",
 	"Image Generation Engine": "Engine pro generování obrázků",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Nastavení obrázku",
 	"Image Settings": "Nastavení obrázku",
 	"Images": "Obrázky",
 	"Images": "Obrázky",
 	"Import Chats": "Importovat konverzace",
 	"Import Chats": "Importovat konverzace",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED Dark",
 	"OLED Dark": "OLED Dark",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "API rozhraní Ollama je zakázáno.",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Verze Ollama",
 	"Ollama Version": "Verze Ollama",
 	"On": "Na",
 	"On": "Na",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Nastavení plánovače",
 	"Set Scheduler": "Nastavení plánovače",
 	"Set Steps": "Nastavení kroků",
 	"Set Steps": "Nastavení kroků",
 	"Set Task Model": "Nastavit model úkolu",
 	"Set Task Model": "Nastavit model úkolu",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Nastavit hlas",
 	"Set Voice": "Nastavit hlas",
 	"Set whisper model": "Nastavit model whisper",
 	"Set whisper model": "Nastavit model whisper",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Můžete komunikovat pouze s maximálně {{maxCount}} soubor(y) najednou.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Můžete komunikovat pouze s maximálně {{maxCount}} soubor(y) najednou.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Můžete personalizovat své interakce s LLM pomocí přidávání vzpomínek prostřednictvím tlačítka 'Spravovat' níže, což je učiní pro vás užitečnějšími a lépe přizpůsobenými.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Můžete personalizovat své interakce s LLM pomocí přidávání vzpomínek prostřednictvím tlačítka 'Spravovat' níže, což je učiní pro vás užitečnějšími a lépe přizpůsobenými.",
 	"You cannot upload an empty file.": "Nemůžete nahrát prázdný soubor.",
 	"You cannot upload an empty file.": "Nemůžete nahrát prázdný soubor.",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Nemáte žádné archivované konverzace.",
 	"You have no archived conversations.": "Nemáte žádné archivované konverzace.",
 	"You have shared this chat": "Sdíleli jste tento chat.",
 	"You have shared this chat": "Sdíleli jste tento chat.",

+ 9 - 2
src/lib/i18n/locales/da-DK/translation.json

@@ -51,6 +51,7 @@
 	"Advanced Params": "Advancerede indstillinger",
 	"Advanced Params": "Advancerede indstillinger",
 	"All Documents": "Alle dokumenter",
 	"All Documents": "Alle dokumenter",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Tillad sletning af chats",
 	"Allow Chat Deletion": "Tillad sletning af chats",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "Kunne ikke opdatere indstillinger",
 	"Failed to update settings": "Kunne ikke opdatere indstillinger",
 	"Failed to upload file.": "Kunne ikke uploade fil.",
 	"Failed to upload file.": "Kunne ikke uploade fil.",
+	"Features Permissions": "",
 	"February": "Februar",
 	"February": "Februar",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "Jeg anerkender, at jeg har læst og forstået konsekvenserne af min handling. Jeg er opmærksom på de risici, der er forbundet med at udføre vilkårlig kode, og jeg har verificeret kildens troværdighed.",
 	"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.": "Jeg anerkender, at jeg har læst og forstået konsekvenserne af min handling. Jeg er opmærksom på de risici, der er forbundet med at udføre vilkårlig kode, og jeg har verificeret kildens troværdighed.",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Billedgenerering (eksperimentel)",
 	"Image Generation (Experimental)": "Billedgenerering (eksperimentel)",
 	"Image Generation Engine": "Billedgenereringsengine",
 	"Image Generation Engine": "Billedgenereringsengine",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Billedindstillinger",
 	"Image Settings": "Billedindstillinger",
 	"Images": "Billeder",
 	"Images": "Billeder",
 	"Import Chats": "Importer chats",
 	"Import Chats": "Importer chats",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED Mørk",
 	"OLED Dark": "OLED Mørk",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API deaktiveret",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Ollama-version",
 	"Ollama Version": "Ollama-version",
 	"On": "Til",
 	"On": "Til",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Indstil scheduler",
 	"Set Scheduler": "Indstil scheduler",
 	"Set Steps": "Indstil trin",
 	"Set Steps": "Indstil trin",
 	"Set Task Model": "Indstil opgavemodel",
 	"Set Task Model": "Indstil opgavemodel",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Indstil stemme",
 	"Set Voice": "Indstil stemme",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Du kan kun chatte med maksimalt {{maxCount}} fil(er) ad gangen.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Du kan kun chatte med maksimalt {{maxCount}} fil(er) ad gangen.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan personliggøre dine interaktioner med LLM'er ved at tilføje minder via knappen 'Administrer' nedenfor, hvilket gør dem mere nyttige og skræddersyet til dig.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan personliggøre dine interaktioner med LLM'er ved at tilføje minder via knappen 'Administrer' nedenfor, hvilket gør dem mere nyttige og skræddersyet til dig.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Du har ingen arkiverede samtaler.",
 	"You have no archived conversations.": "Du har ingen arkiverede samtaler.",
 	"You have shared this chat": "Du har delt denne chat",
 	"You have shared this chat": "Du har delt denne chat",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Erweiterte Parameter",
 	"Advanced Params": "Erweiterte Parameter",
 	"All Documents": "Alle Dokumente",
 	"All Documents": "Alle Dokumente",
 	"All models deleted successfully": "Alle Modelle erfolgreich gelöscht",
 	"All models deleted successfully": "Alle Modelle erfolgreich gelöscht",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "Löschen von Unterhaltungen erlauben",
 	"Allow Chat Delete": "Löschen von Unterhaltungen erlauben",
 	"Allow Chat Deletion": "Löschen von Unterhaltungen erlauben",
 	"Allow Chat Deletion": "Löschen von Unterhaltungen erlauben",
 	"Allow Chat Edit": "Bearbeiten von Unterhaltungen erlauben",
 	"Allow Chat Edit": "Bearbeiten von Unterhaltungen erlauben",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "Fehler beim Aktualisieren der Einstellungen",
 	"Failed to update settings": "Fehler beim Aktualisieren der Einstellungen",
 	"Failed to upload file.": "Fehler beim Hochladen der Datei.",
 	"Failed to upload file.": "Fehler beim Hochladen der Datei.",
+	"Features Permissions": "",
 	"February": "Februar",
 	"February": "Februar",
 	"Feedback History": "Feedback-Verlauf",
 	"Feedback History": "Feedback-Verlauf",
 	"Feedbacks": "Feedbacks",
 	"Feedbacks": "Feedbacks",
@@ -490,10 +492,15 @@
 	"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.": "Ich bestätige, dass ich gelesen habe und die Auswirkungen meiner Aktion verstehe. Mir sind die Risiken bewusst, die mit der Ausführung beliebigen Codes verbunden sind, und ich habe die Vertrauenswürdigkeit der Quelle überprüft.",
 	"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.": "Ich bestätige, dass ich gelesen habe und die Auswirkungen meiner Aktion verstehe. Mir sind die Risiken bewusst, die mit der Ausführung beliebigen Codes verbunden sind, und ich habe die Vertrauenswürdigkeit der Quelle überprüft.",
 	"ID": "ID",
 	"ID": "ID",
 	"Ignite curiosity": "Neugier entfachen",
 	"Ignite curiosity": "Neugier entfachen",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Bildgenerierung (experimentell)",
 	"Image Generation (Experimental)": "Bildgenerierung (experimentell)",
 	"Image Generation Engine": "Bildgenerierungs-Engine",
 	"Image Generation Engine": "Bildgenerierungs-Engine",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Bildeinstellungen",
 	"Image Settings": "Bildeinstellungen",
 	"Images": "Bilder",
 	"Images": "Bilder",
 	"Import Chats": "Unterhaltungen importieren",
 	"Import Chats": "Unterhaltungen importieren",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED-Dunkel",
 	"OLED Dark": "OLED-Dunkel",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama-API",
 	"Ollama API": "Ollama-API",
-	"Ollama API disabled": "Ollama-API deaktiviert",
 	"Ollama API settings updated": "Ollama-API-Einstellungen aktualisiert",
 	"Ollama API settings updated": "Ollama-API-Einstellungen aktualisiert",
 	"Ollama Version": "Ollama-Version",
 	"Ollama Version": "Ollama-Version",
 	"On": "Ein",
 	"On": "Ein",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Scheduler festlegen",
 	"Set Scheduler": "Scheduler festlegen",
 	"Set Steps": "Schrittgröße festlegen",
 	"Set Steps": "Schrittgröße festlegen",
 	"Set Task Model": "Aufgabenmodell festlegen",
 	"Set Task Model": "Aufgabenmodell festlegen",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "Legt die Anzahl der für die Berechnung verwendeten GPU-Geräte fest. Diese Option steuert, wie viele GPU-Geräte (falls verfügbar) zur Verarbeitung eingehender Anfragen verwendet werden. Eine Erhöhung dieses Wertes kann die Leistung für Modelle, die für GPU-Beschleunigung optimiert sind, erheblich verbessern, kann jedoch auch mehr Strom und GPU-Ressourcen verbrauchen.",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Legt die Anzahl der für die Berechnung verwendeten GPU-Geräte fest. Diese Option steuert, wie viele GPU-Geräte (falls verfügbar) zur Verarbeitung eingehender Anfragen verwendet werden. Eine Erhöhung dieses Wertes kann die Leistung für Modelle, die für GPU-Beschleunigung optimiert sind, erheblich verbessern, kann jedoch auch mehr Strom und GPU-Ressourcen verbrauchen.",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Legt die Anzahl der für die Berechnung verwendeten GPU-Geräte fest. Diese Option steuert, wie viele GPU-Geräte (falls verfügbar) zur Verarbeitung eingehender Anfragen verwendet werden. Eine Erhöhung dieses Wertes kann die Leistung für Modelle, die für GPU-Beschleunigung optimiert sind, erheblich verbessern, kann jedoch auch mehr Strom und GPU-Ressourcen verbrauchen.",
 	"Set Voice": "Stimme festlegen",
 	"Set Voice": "Stimme festlegen",
 	"Set whisper model": "Whisper-Modell festlegen",
 	"Set whisper model": "Whisper-Modell festlegen",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Sie können nur mit maximal {{maxCount}} Datei(en) gleichzeitig chatten.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Sie können nur mit maximal {{maxCount}} Datei(en) gleichzeitig chatten.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Personalisieren Sie Interaktionen mit LLMs, indem Sie über die Schaltfläche \"Verwalten\" Erinnerungen hinzufügen.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Personalisieren Sie Interaktionen mit LLMs, indem Sie über die Schaltfläche \"Verwalten\" Erinnerungen hinzufügen.",
 	"You cannot upload an empty file.": "Sie können keine leere Datei hochladen.",
 	"You cannot upload an empty file.": "Sie können keine leere Datei hochladen.",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "Sie haben keine Berechtigung zum Hochladen von Dateien.",
 	"You do not have permission to upload files.": "Sie haben keine Berechtigung zum Hochladen von Dateien.",
 	"You have no archived conversations.": "Du hast keine archivierten Unterhaltungen.",
 	"You have no archived conversations.": "Du hast keine archivierten Unterhaltungen.",
 	"You have shared this chat": "Sie haben diese Unterhaltung geteilt",
 	"You have shared this chat": "Sie haben diese Unterhaltung geteilt",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "",
 	"Advanced Params": "",
 	"All Documents": "",
 	"All Documents": "",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Allow Delete Chats",
 	"Allow Chat Deletion": "Allow Delete Chats",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "",
 	"February": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Image Wow (Much Experiment)",
 	"Image Generation (Experimental)": "Image Wow (Much Experiment)",
 	"Image Generation Engine": "Image Engine",
 	"Image Generation Engine": "Image Engine",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Settings for Wowmage",
 	"Image Settings": "Settings for Wowmage",
 	"Images": "Wowmages",
 	"Images": "Wowmages",
 	"Import Chats": "Import Barks",
 	"Import Chats": "Import Barks",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED Dark",
 	"OLED Dark": "OLED Dark",
 	"Ollama": "",
 	"Ollama": "",
 	"Ollama API": "",
 	"Ollama API": "",
-	"Ollama API disabled": "",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Ollama Version",
 	"Ollama Version": "Ollama Version",
 	"On": "On",
 	"On": "On",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "Set Steps so many steps",
 	"Set Steps": "Set Steps so many steps",
 	"Set Task Model": "",
 	"Set Task Model": "",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Set Voice so speak",
 	"Set Voice": "Set Voice so speak",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "",
 	"You have no archived conversations.": "",
 	"You have shared this chat": "",
 	"You have shared this chat": "",

+ 9 - 2
src/lib/i18n/locales/el-GR/translation.json

@@ -51,6 +51,7 @@
 	"Advanced Params": "Προηγμένα Παράμετροι",
 	"Advanced Params": "Προηγμένα Παράμετροι",
 	"All Documents": "Όλα τα Έγγραφα",
 	"All Documents": "Όλα τα Έγγραφα",
 	"All models deleted successfully": "Όλα τα μοντέλα διαγράφηκαν με επιτυχία",
 	"All models deleted successfully": "Όλα τα μοντέλα διαγράφηκαν με επιτυχία",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "Επιτρέπεται η διαγραφή συνομιλίας",
 	"Allow Chat Delete": "Επιτρέπεται η διαγραφή συνομιλίας",
 	"Allow Chat Deletion": "Επιτρέπεται η Διαγραφή Συνομιλίας",
 	"Allow Chat Deletion": "Επιτρέπεται η Διαγραφή Συνομιλίας",
 	"Allow Chat Edit": "Επιτρέπεται η Επεξεργασία Συνομιλίας",
 	"Allow Chat Edit": "Επιτρέπεται η Επεξεργασία Συνομιλίας",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "Αποτυχία αποθήκευσης ρυθμίσεων μοντέλων",
 	"Failed to save models configuration": "Αποτυχία αποθήκευσης ρυθμίσεων μοντέλων",
 	"Failed to update settings": "Αποτυχία ενημέρωσης ρυθμίσεων",
 	"Failed to update settings": "Αποτυχία ενημέρωσης ρυθμίσεων",
 	"Failed to upload file.": "Αποτυχία ανεβάσματος αρχείου.",
 	"Failed to upload file.": "Αποτυχία ανεβάσματος αρχείου.",
+	"Features Permissions": "",
 	"February": "Φεβρουάριος",
 	"February": "Φεβρουάριος",
 	"Feedback History": "Ιστορικό Ανατροφοδότησης",
 	"Feedback History": "Ιστορικό Ανατροφοδότησης",
 	"Feedbacks": "Ανατροφοδοτήσεις",
 	"Feedbacks": "Ανατροφοδοτήσεις",
@@ -490,10 +492,15 @@
 	"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.": "Αναγνωρίζω ότι έχω διαβάσει και κατανοώ τις συνέπειες της ενέργειάς μου. Γνωρίζω τους κινδύνους που σχετίζονται με την εκτέλεση αυθαίρετου κώδικα και έχω επαληθεύσει την αξιοπιστία της πηγής.",
 	"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.": "Αναγνωρίζω ότι έχω διαβάσει και κατανοώ τις συνέπειες της ενέργειάς μου. Γνωρίζω τους κινδύνους που σχετίζονται με την εκτέλεση αυθαίρετου κώδικα και έχω επαληθεύσει την αξιοπιστία της πηγής.",
 	"ID": "ID",
 	"ID": "ID",
 	"Ignite curiosity": "Ξύπνημα της περιέργειας",
 	"Ignite curiosity": "Ξύπνημα της περιέργειας",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Δημιουργία Εικόνας (Πειραματικό)",
 	"Image Generation (Experimental)": "Δημιουργία Εικόνας (Πειραματικό)",
 	"Image Generation Engine": "Μηχανή Δημιουργίας Εικόνας",
 	"Image Generation Engine": "Μηχανή Δημιουργίας Εικόνας",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Ρυθμίσεις Εικόνας",
 	"Image Settings": "Ρυθμίσεις Εικόνας",
 	"Images": "Εικόνες",
 	"Images": "Εικόνες",
 	"Import Chats": "Εισαγωγή Συνομιλιών",
 	"Import Chats": "Εισαγωγή Συνομιλιών",
@@ -652,7 +659,6 @@
 	"OLED Dark": "Σκούρο OLED",
 	"OLED Dark": "Σκούρο OLED",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "API Ollama",
 	"Ollama API": "API Ollama",
-	"Ollama API disabled": "API Ollama απενεργοποιημένο",
 	"Ollama API settings updated": "Οι ρυθμίσεις API Ollama ενημερώθηκαν",
 	"Ollama API settings updated": "Οι ρυθμίσεις API Ollama ενημερώθηκαν",
 	"Ollama Version": "Έκδοση Ollama",
 	"Ollama Version": "Έκδοση Ollama",
 	"On": "On",
 	"On": "On",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Ορισμός Scheduler",
 	"Set Scheduler": "Ορισμός Scheduler",
 	"Set Steps": "Ορισμός Βημάτων",
 	"Set Steps": "Ορισμός Βημάτων",
 	"Set Task Model": "Ορισμός Μοντέλου Εργασίας",
 	"Set Task Model": "Ορισμός Μοντέλου Εργασίας",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "Ορισμός του αριθμού των συσκευών GPU που χρησιμοποιούνται για υπολογισμούς. Αυτή η επιλογή ελέγχει πόσες συσκευές GPU (αν υπάρχουν) χρησιμοποιούνται για την επεξεργασία των εισερχόμενων αιτημάτων. Η αύξηση αυτής της τιμής μπορεί να βελτιώσει σημαντικά την απόδοση για μοντέλα που είναι βελτιστοποιημένα για επιτάχυνση GPU αλλά μπορεί επίσης να καταναλώσει περισσότερη ενέργεια και πόρους GPU.",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Ορισμός του αριθμού των νημάτων εργασίας που χρησιμοποιούνται για υπολογισμούς. Αυτή η επιλογή ελέγχει πόσα νήματα χρησιμοποιούνται για την επεξεργασία των εισερχόμενων αιτημάτων ταυτόχρονα. Η αύξηση αυτής της τιμής μπορεί να βελτιώσει την απόδοση σε εργασίες υψηλής συγχρονισμένης φόρτωσης αλλά μπορεί επίσης να καταναλώσει περισσότερους πόρους CPU.",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Ορισμός του αριθμού των νημάτων εργασίας που χρησιμοποιούνται για υπολογισμούς. Αυτή η επιλογή ελέγχει πόσα νήματα χρησιμοποιούνται για την επεξεργασία των εισερχόμενων αιτημάτων ταυτόχρονα. Η αύξηση αυτής της τιμής μπορεί να βελτιώσει την απόδοση σε εργασίες υψηλής συγχρονισμένης φόρτωσης αλλά μπορεί επίσης να καταναλώσει περισσότερους πόρους CPU.",
 	"Set Voice": "Ορισμός Φωνής",
 	"Set Voice": "Ορισμός Φωνής",
 	"Set whisper model": "Ορισμός μοντέλου whisper",
 	"Set whisper model": "Ορισμός μοντέλου whisper",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Μπορείτε να συνομιλήσετε μόνο με μέγιστο αριθμό {{maxCount}} αρχείου(-ων) ταυτόχρονα.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Μπορείτε να συνομιλήσετε μόνο με μέγιστο αριθμό {{maxCount}} αρχείου(-ων) ταυτόχρονα.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Μπορείτε να προσωποποιήσετε τις αλληλεπιδράσεις σας με τα LLMs προσθέτοντας αναμνήσεις μέσω του κουμπιού 'Διαχείριση' παρακάτω, κάνοντάς τα πιο χρήσιμα και προσαρμοσμένα σε εσάς.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Μπορείτε να προσωποποιήσετε τις αλληλεπιδράσεις σας με τα LLMs προσθέτοντας αναμνήσεις μέσω του κουμπιού 'Διαχείριση' παρακάτω, κάνοντάς τα πιο χρήσιμα και προσαρμοσμένα σε εσάς.",
 	"You cannot upload an empty file.": "Δεν μπορείτε να ανεβάσετε ένα κενό αρχείο.",
 	"You cannot upload an empty file.": "Δεν μπορείτε να ανεβάσετε ένα κενό αρχείο.",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "Δεν έχετε άδεια να ανεβάσετε αρχεία.",
 	"You do not have permission to upload files.": "Δεν έχετε άδεια να ανεβάσετε αρχεία.",
 	"You have no archived conversations.": "Δεν έχετε αρχειοθετημένες συνομιλίες.",
 	"You have no archived conversations.": "Δεν έχετε αρχειοθετημένες συνομιλίες.",
 	"You have shared this chat": "Έχετε μοιραστεί αυτή τη συνομιλία",
 	"You have shared this chat": "Έχετε μοιραστεί αυτή τη συνομιλία",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "",
 	"Advanced Params": "",
 	"All Documents": "",
 	"All Documents": "",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "",
 	"Allow Chat Deletion": "",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "",
 	"February": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "",
 	"Image Generation (Experimental)": "",
 	"Image Generation Engine": "",
 	"Image Generation Engine": "",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "",
 	"Image Settings": "",
 	"Images": "",
 	"Images": "",
 	"Import Chats": "",
 	"Import Chats": "",
@@ -652,7 +659,6 @@
 	"OLED Dark": "",
 	"OLED Dark": "",
 	"Ollama": "",
 	"Ollama": "",
 	"Ollama API": "",
 	"Ollama API": "",
-	"Ollama API disabled": "",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "",
 	"Ollama Version": "",
 	"On": "",
 	"On": "",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "",
 	"Set Steps": "",
 	"Set Task Model": "",
 	"Set Task Model": "",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "",
 	"Set Voice": "",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "",
 	"You have no archived conversations.": "",
 	"You have shared this chat": "",
 	"You have shared this chat": "",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "",
 	"Advanced Params": "",
 	"All Documents": "",
 	"All Documents": "",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "",
 	"Allow Chat Deletion": "",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "",
 	"February": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "",
 	"Image Generation (Experimental)": "",
 	"Image Generation Engine": "",
 	"Image Generation Engine": "",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "",
 	"Image Settings": "",
 	"Images": "",
 	"Images": "",
 	"Import Chats": "",
 	"Import Chats": "",
@@ -652,7 +659,6 @@
 	"OLED Dark": "",
 	"OLED Dark": "",
 	"Ollama": "",
 	"Ollama": "",
 	"Ollama API": "",
 	"Ollama API": "",
-	"Ollama API disabled": "",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "",
 	"Ollama Version": "",
 	"On": "",
 	"On": "",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "",
 	"Set Steps": "",
 	"Set Task Model": "",
 	"Set Task Model": "",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "",
 	"Set Voice": "",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "",
 	"You have no archived conversations.": "",
 	"You have shared this chat": "",
 	"You have shared this chat": "",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Parámetros avanzados",
 	"Advanced Params": "Parámetros avanzados",
 	"All Documents": "Todos los Documentos",
 	"All Documents": "Todos los Documentos",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Permitir Borrar Chats",
 	"Allow Chat Deletion": "Permitir Borrar Chats",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "Falla al actualizar los ajustes",
 	"Failed to update settings": "Falla al actualizar los ajustes",
 	"Failed to upload file.": "Falla al subir el archivo.",
 	"Failed to upload file.": "Falla al subir el archivo.",
+	"Features Permissions": "",
 	"February": "Febrero",
 	"February": "Febrero",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "Aseguro que he leído y entiendo las implicaciones de mi acción. Estoy consciente de los riesgos asociados con la ejecución de código arbitrario y he verificado la confianza de la fuente.",
 	"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.": "Aseguro que he leído y entiendo las implicaciones de mi acción. Estoy consciente de los riesgos asociados con la ejecución de código arbitrario y he verificado la confianza de la fuente.",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Generación de imágenes (experimental)",
 	"Image Generation (Experimental)": "Generación de imágenes (experimental)",
 	"Image Generation Engine": "Motor de generación de imágenes",
 	"Image Generation Engine": "Motor de generación de imágenes",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Ajustes de la Imágen",
 	"Image Settings": "Ajustes de la Imágen",
 	"Images": "Imágenes",
 	"Images": "Imágenes",
 	"Import Chats": "Importar chats",
 	"Import Chats": "Importar chats",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED oscuro",
 	"OLED Dark": "OLED oscuro",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "API de Ollama deshabilitada",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Versión de Ollama",
 	"Ollama Version": "Versión de Ollama",
 	"On": "Activado",
 	"On": "Activado",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Establecer Programador",
 	"Set Scheduler": "Establecer Programador",
 	"Set Steps": "Establecer Pasos",
 	"Set Steps": "Establecer Pasos",
 	"Set Task Model": "Establecer modelo de tarea",
 	"Set Task Model": "Establecer modelo de tarea",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Establecer la voz",
 	"Set Voice": "Establecer la voz",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "Puede personalizar sus interacciones con LLMs añadiendo memorias a través del botón 'Gestionar' debajo, haciendo que sean más útiles y personalizados para usted.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Puede personalizar sus interacciones con LLMs añadiendo memorias a través del botón 'Gestionar' debajo, haciendo que sean más útiles y personalizados para usted.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "No tiene conversaciones archivadas.",
 	"You have no archived conversations.": "No tiene conversaciones archivadas.",
 	"You have shared this chat": "Usted ha compartido esta conversación",
 	"You have shared this chat": "Usted ha compartido esta conversación",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Parametro Aurreratuak",
 	"Advanced Params": "Parametro Aurreratuak",
 	"All Documents": "Dokumentu Guztiak",
 	"All Documents": "Dokumentu Guztiak",
 	"All models deleted successfully": "Eredu guztiak ongi ezabatu dira",
 	"All models deleted successfully": "Eredu guztiak ongi ezabatu dira",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "Baimendu Txata Ezabatzea",
 	"Allow Chat Delete": "Baimendu Txata Ezabatzea",
 	"Allow Chat Deletion": "Baimendu Txata Ezabatzea",
 	"Allow Chat Deletion": "Baimendu Txata Ezabatzea",
 	"Allow Chat Edit": "Baimendu Txata Editatzea",
 	"Allow Chat Edit": "Baimendu Txata Editatzea",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "Huts egin du ereduen konfigurazioa gordetzean",
 	"Failed to save models configuration": "Huts egin du ereduen konfigurazioa gordetzean",
 	"Failed to update settings": "Huts egin du ezarpenak eguneratzean",
 	"Failed to update settings": "Huts egin du ezarpenak eguneratzean",
 	"Failed to upload file.": "Huts egin du fitxategia igotzean.",
 	"Failed to upload file.": "Huts egin du fitxategia igotzean.",
+	"Features Permissions": "",
 	"February": "Otsaila",
 	"February": "Otsaila",
 	"Feedback History": "Feedbacken Historia",
 	"Feedback History": "Feedbacken Historia",
 	"Feedbacks": "Feedbackak",
 	"Feedbacks": "Feedbackak",
@@ -490,10 +492,15 @@
 	"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.": "Onartzen dut irakurri dudala eta nire ekintzaren ondorioak ulertzen ditudala. Kode arbitrarioa exekutatzearekin lotutako arriskuez jabetzen naiz eta iturriaren fidagarritasuna egiaztatu dut.",
 	"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.": "Onartzen dut irakurri dudala eta nire ekintzaren ondorioak ulertzen ditudala. Kode arbitrarioa exekutatzearekin lotutako arriskuez jabetzen naiz eta iturriaren fidagarritasuna egiaztatu dut.",
 	"ID": "IDa",
 	"ID": "IDa",
 	"Ignite curiosity": "Piztu jakin-mina",
 	"Ignite curiosity": "Piztu jakin-mina",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Irudi Sorkuntza (Esperimentala)",
 	"Image Generation (Experimental)": "Irudi Sorkuntza (Esperimentala)",
 	"Image Generation Engine": "Irudi Sorkuntza Motorea",
 	"Image Generation Engine": "Irudi Sorkuntza Motorea",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Irudi Ezarpenak",
 	"Image Settings": "Irudi Ezarpenak",
 	"Images": "Irudiak",
 	"Images": "Irudiak",
 	"Import Chats": "Inportatu Txatak",
 	"Import Chats": "Inportatu Txatak",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED iluna",
 	"OLED Dark": "OLED iluna",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API desgaituta",
 	"Ollama API settings updated": "Ollama API ezarpenak eguneratu dira",
 	"Ollama API settings updated": "Ollama API ezarpenak eguneratu dira",
 	"Ollama Version": "Ollama bertsioa",
 	"Ollama Version": "Ollama bertsioa",
 	"On": "Piztuta",
 	"On": "Piztuta",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Ezarri antolatzailea",
 	"Set Scheduler": "Ezarri antolatzailea",
 	"Set Steps": "Ezarri urratsak",
 	"Set Steps": "Ezarri urratsak",
 	"Set Task Model": "Ezarri ataza modeloa",
 	"Set Task Model": "Ezarri ataza modeloa",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "Ezarri kalkulurako erabilitako GPU gailuen kopurua. Aukera honek kontrolatzen du zenbat GPU gailu (eskuragarri badaude) erabiltzen diren sarrerako eskaerak prozesatzeko. Balio hau handitzeak errendimendua nabarmen hobetu dezake GPU azeleraziorako optimizatutako modeloentzat, baina energia eta GPU baliabide gehiago kontsumitu ditzake.",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Ezarri kalkulurako erabilitako langile harien kopurua. Aukera honek kontrolatzen du zenbat hari erabiltzen diren sarrerako eskaerak aldi berean prozesatzeko. Balio hau handitzeak errendimendua hobetu dezake konkurrentzia altuko lan-kargetan, baina CPU baliabide gehiago kontsumitu ditzake.",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Ezarri kalkulurako erabilitako langile harien kopurua. Aukera honek kontrolatzen du zenbat hari erabiltzen diren sarrerako eskaerak aldi berean prozesatzeko. Balio hau handitzeak errendimendua hobetu dezake konkurrentzia altuko lan-kargetan, baina CPU baliabide gehiago kontsumitu ditzake.",
 	"Set Voice": "Ezarri ahotsa",
 	"Set Voice": "Ezarri ahotsa",
 	"Set whisper model": "Ezarri whisper modeloa",
 	"Set whisper model": "Ezarri whisper modeloa",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Gehienez {{maxCount}} fitxategirekin txateatu dezakezu aldi berean.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Gehienez {{maxCount}} fitxategirekin txateatu dezakezu aldi berean.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "LLMekin dituzun interakzioak pertsonalizatu ditzakezu memoriak gehituz beheko 'Kudeatu' botoiaren bidez, lagungarriagoak eta zuretzat egokituagoak eginez.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "LLMekin dituzun interakzioak pertsonalizatu ditzakezu memoriak gehituz beheko 'Kudeatu' botoiaren bidez, lagungarriagoak eta zuretzat egokituagoak eginez.",
 	"You cannot upload an empty file.": "Ezin duzu fitxategi huts bat kargatu.",
 	"You cannot upload an empty file.": "Ezin duzu fitxategi huts bat kargatu.",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "Ez duzu fitxategiak kargatzeko baimenik.",
 	"You do not have permission to upload files.": "Ez duzu fitxategiak kargatzeko baimenik.",
 	"You have no archived conversations.": "Ez duzu artxibatutako elkarrizketarik.",
 	"You have no archived conversations.": "Ez duzu artxibatutako elkarrizketarik.",
 	"You have shared this chat": "Txat hau partekatu duzu",
 	"You have shared this chat": "Txat hau partekatu duzu",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "پارام\u200cهای پیشرفته",
 	"Advanced Params": "پارام\u200cهای پیشرفته",
 	"All Documents": "همهٔ سند\u200cها",
 	"All Documents": "همهٔ سند\u200cها",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "اجازهٔ حذف گفتگو",
 	"Allow Chat Deletion": "اجازهٔ حذف گفتگو",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "خطا در به\u200cروزرسانی تنظیمات",
 	"Failed to update settings": "خطا در به\u200cروزرسانی تنظیمات",
 	"Failed to upload file.": "خطا در بارگذاری پرونده",
 	"Failed to upload file.": "خطا در بارگذاری پرونده",
+	"Features Permissions": "",
 	"February": "فوریه",
 	"February": "فوریه",
 	"Feedback History": "تاریخچهٔ بازخورد",
 	"Feedback History": "تاریخچهٔ بازخورد",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "تولید تصویر (آزمایشی)",
 	"Image Generation (Experimental)": "تولید تصویر (آزمایشی)",
 	"Image Generation Engine": "موتور تولید تصویر",
 	"Image Generation Engine": "موتور تولید تصویر",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "تنظیمات تصویر",
 	"Image Settings": "تنظیمات تصویر",
 	"Images": "تصاویر",
 	"Images": "تصاویر",
 	"Import Chats": "درون\u200cریزی گفتگوها",
 	"Import Chats": "درون\u200cریزی گفتگوها",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED تیره",
 	"OLED Dark": "OLED تیره",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "API Ollama غیرفعال شد",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "نسخه اولاما",
 	"Ollama Version": "نسخه اولاما",
 	"On": "روشن",
 	"On": "روشن",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "تنظیم گام\u200cها",
 	"Set Steps": "تنظیم گام\u200cها",
 	"Set Task Model": "تنظیم مدل تکلیف",
 	"Set Task Model": "تنظیم مدل تکلیف",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "تنظیم صدا",
 	"Set Voice": "تنظیم صدا",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "شما در هر زمان نهایتا می\u200cتوانید با {{maxCount}} پرونده گفتگو کنید.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "شما در هر زمان نهایتا می\u200cتوانید با {{maxCount}} پرونده گفتگو کنید.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "شما هیچ گفتگوی ذخیره شده ندارید.",
 	"You have no archived conversations.": "شما هیچ گفتگوی ذخیره شده ندارید.",
 	"You have shared this chat": "شما این گفتگو را به اشتراک گذاشته اید",
 	"You have shared this chat": "شما این گفتگو را به اشتراک گذاشته اید",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Edistyneet parametrit",
 	"Advanced Params": "Edistyneet parametrit",
 	"All Documents": "Kaikki asiakirjat",
 	"All Documents": "Kaikki asiakirjat",
 	"All models deleted successfully": "Kaikki mallit poistettu onnistuneesti",
 	"All models deleted successfully": "Kaikki mallit poistettu onnistuneesti",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "Salli keskustelujen poisto",
 	"Allow Chat Delete": "Salli keskustelujen poisto",
 	"Allow Chat Deletion": "Salli keskustelujen poisto",
 	"Allow Chat Deletion": "Salli keskustelujen poisto",
 	"Allow Chat Edit": "Salli keskustelujen muokkaus",
 	"Allow Chat Edit": "Salli keskustelujen muokkaus",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "Mallien määrityksen tallentaminen epäonnistui",
 	"Failed to save models configuration": "Mallien määrityksen tallentaminen epäonnistui",
 	"Failed to update settings": "Asetusten päivittäminen epäonnistui",
 	"Failed to update settings": "Asetusten päivittäminen epäonnistui",
 	"Failed to upload file.": "Tiedoston lataaminen epäonnistui.",
 	"Failed to upload file.": "Tiedoston lataaminen epäonnistui.",
+	"Features Permissions": "",
 	"February": "helmikuu",
 	"February": "helmikuu",
 	"Feedback History": "Palautehistoria",
 	"Feedback History": "Palautehistoria",
 	"Feedbacks": "Palautteet",
 	"Feedbacks": "Palautteet",
@@ -490,10 +492,15 @@
 	"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.": "Vahvistan, että olen lukenut ja ymmärrän toimintani seuraukset. Olen tietoinen mielivaltaisen koodin suorittamiseen liittyvistä riskeistä ja olen varmistanut lähteen luotettavuuden.",
 	"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.": "Vahvistan, että olen lukenut ja ymmärrän toimintani seuraukset. Olen tietoinen mielivaltaisen koodin suorittamiseen liittyvistä riskeistä ja olen varmistanut lähteen luotettavuuden.",
 	"ID": "Tunnus",
 	"ID": "Tunnus",
 	"Ignite curiosity": "Sytytä uteliaisuus",
 	"Ignite curiosity": "Sytytä uteliaisuus",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Kuvagenerointi (kokeellinen)",
 	"Image Generation (Experimental)": "Kuvagenerointi (kokeellinen)",
 	"Image Generation Engine": "Kuvagenerointimoottori",
 	"Image Generation Engine": "Kuvagenerointimoottori",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Kuva-asetukset",
 	"Image Settings": "Kuva-asetukset",
 	"Images": "Kuvat",
 	"Images": "Kuvat",
 	"Import Chats": "Tuo keskustelut",
 	"Import Chats": "Tuo keskustelut",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED-tumma",
 	"OLED Dark": "OLED-tumma",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API poistettu käytöstä",
 	"Ollama API settings updated": "Ollama API -asetukset päivitetty",
 	"Ollama API settings updated": "Ollama API -asetukset päivitetty",
 	"Ollama Version": "Ollama-versio",
 	"Ollama Version": "Ollama-versio",
 	"On": "Päällä",
 	"On": "Päällä",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Aseta ajoitin",
 	"Set Scheduler": "Aseta ajoitin",
 	"Set Steps": "Aseta askeleet",
 	"Set Steps": "Aseta askeleet",
 	"Set Task Model": "Aseta tehtävämalli",
 	"Set Task Model": "Aseta tehtävämalli",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "Aseta käytettyjen GPU-laitteiden määrä laskentaa varten. Tämä asetus kontrolloi, kuinka monta GPU-laitetta (jos saatavilla) käytetään saapuvien pyyntöjen käsittelyyn. Arvon kasvattaminen voi parantaa suorituskykyä merkittävästi malleissa, jotka on optimoitu GPU-kiihdytykseen, mutta voi myös kuluttaa enemmän virtaa ja GPU-resursseja.",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Aseta työntekijäsäikeiden määrä laskentaa varten. Tämä asetus kontrolloi, kuinka monta säiettä käytetään saapuvien pyyntöjen rinnakkaiseen käsittelyyn. Arvon kasvattaminen voi parantaa suorituskykyä suurissa samanaikaisissa työkuormissa, mutta voi myös kuluttaa enemmän keskussuorittimen resursseja.",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Aseta työntekijäsäikeiden määrä laskentaa varten. Tämä asetus kontrolloi, kuinka monta säiettä käytetään saapuvien pyyntöjen rinnakkaiseen käsittelyyn. Arvon kasvattaminen voi parantaa suorituskykyä suurissa samanaikaisissa työkuormissa, mutta voi myös kuluttaa enemmän keskussuorittimen resursseja.",
 	"Set Voice": "Aseta puheääni",
 	"Set Voice": "Aseta puheääni",
 	"Set whisper model": "Aseta whisper-malli",
 	"Set whisper model": "Aseta whisper-malli",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Voit keskustella enintään {{maxCount}} tiedoston kanssa kerralla.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Voit keskustella enintään {{maxCount}} tiedoston kanssa kerralla.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Voit personoida vuorovaikutustasi LLM-ohjelmien kanssa lisäämällä muistoja 'Hallitse'-painikkeen kautta, jolloin ne ovat hyödyllisempiä ja räätälöityjä sinua varten.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Voit personoida vuorovaikutustasi LLM-ohjelmien kanssa lisäämällä muistoja 'Hallitse'-painikkeen kautta, jolloin ne ovat hyödyllisempiä ja räätälöityjä sinua varten.",
 	"You cannot upload an empty file.": "Et voi ladata tyhjää tiedostoa.",
 	"You cannot upload an empty file.": "Et voi ladata tyhjää tiedostoa.",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "Sinulla ei ole lupaa ladata tiedostoja.",
 	"You do not have permission to upload files.": "Sinulla ei ole lupaa ladata tiedostoja.",
 	"You have no archived conversations.": "Sinulla ei ole arkistoituja keskusteluja.",
 	"You have no archived conversations.": "Sinulla ei ole arkistoituja keskusteluja.",
 	"You have shared this chat": "Olet jakanut tämän keskustelun",
 	"You have shared this chat": "Olet jakanut tämän keskustelun",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Paramètres avancés",
 	"Advanced Params": "Paramètres avancés",
 	"All Documents": "Tous les documents",
 	"All Documents": "Tous les documents",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Autoriser la suppression de l'historique de chat",
 	"Allow Chat Deletion": "Autoriser la suppression de l'historique de chat",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "Échec de la mise à jour des paramètres",
 	"Failed to update settings": "Échec de la mise à jour des paramètres",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "Février",
 	"February": "Février",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Génération d'images (expérimental)",
 	"Image Generation (Experimental)": "Génération d'images (expérimental)",
 	"Image Generation Engine": "Moteur de génération d'images",
 	"Image Generation Engine": "Moteur de génération d'images",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Paramètres de l'image",
 	"Image Settings": "Paramètres de l'image",
 	"Images": "Images",
 	"Images": "Images",
 	"Import Chats": "Importer les discussions",
 	"Import Chats": "Importer les discussions",
@@ -652,7 +659,6 @@
 	"OLED Dark": "Noir OLED",
 	"OLED Dark": "Noir OLED",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "API Ollama",
 	"Ollama API": "API Ollama",
-	"Ollama API disabled": "API Ollama désactivée",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Version Ollama améliorée",
 	"Ollama Version": "Version Ollama améliorée",
 	"On": "Activé",
 	"On": "Activé",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "Définir les étapes",
 	"Set Steps": "Définir les étapes",
 	"Set Task Model": "Définir le modèle de tâche",
 	"Set Task Model": "Définir le modèle de tâche",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Définir la voix",
 	"Set Voice": "Définir la voix",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "Vous pouvez personnaliser vos interactions avec les LLM en ajoutant des souvenirs via le bouton 'Gérer' ci-dessous, ce qui les rendra plus utiles et adaptés à vos besoins.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Vous pouvez personnaliser vos interactions avec les LLM en ajoutant des souvenirs via le bouton 'Gérer' ci-dessous, ce qui les rendra plus utiles et adaptés à vos besoins.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Vous n'avez aucune conversation archivée",
 	"You have no archived conversations.": "Vous n'avez aucune conversation archivée",
 	"You have shared this chat": "Vous avez partagé cette conversation.",
 	"You have shared this chat": "Vous avez partagé cette conversation.",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Paramètres avancés",
 	"Advanced Params": "Paramètres avancés",
 	"All Documents": "Tous les documents",
 	"All Documents": "Tous les documents",
 	"All models deleted successfully": "Tous les modèles ont été supprimés avec succès",
 	"All models deleted successfully": "Tous les modèles ont été supprimés avec succès",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "Autoriser la suppression de la conversation",
 	"Allow Chat Delete": "Autoriser la suppression de la conversation",
 	"Allow Chat Deletion": "Autoriser la suppression de l'historique de chat",
 	"Allow Chat Deletion": "Autoriser la suppression de l'historique de chat",
 	"Allow Chat Edit": "Autoriser la modification de la conversation",
 	"Allow Chat Edit": "Autoriser la modification de la conversation",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "Échec de la sauvegarde de la configuration des modèles",
 	"Failed to save models configuration": "Échec de la sauvegarde de la configuration des modèles",
 	"Failed to update settings": "Échec de la mise à jour des paramètres",
 	"Failed to update settings": "Échec de la mise à jour des paramètres",
 	"Failed to upload file.": "Échec du téléchargement du fichier.",
 	"Failed to upload file.": "Échec du téléchargement du fichier.",
+	"Features Permissions": "",
 	"February": "Février",
 	"February": "Février",
 	"Feedback History": "Historique des avis",
 	"Feedback History": "Historique des avis",
 	"Feedbacks": "Avis",
 	"Feedbacks": "Avis",
@@ -490,10 +492,15 @@
 	"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.": "Je reconnais avoir lu et compris les implications de mes actions. Je suis conscient des risques associés à l'exécution d'un code arbitraire et j'ai vérifié la fiabilité de la source.",
 	"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.": "Je reconnais avoir lu et compris les implications de mes actions. Je suis conscient des risques associés à l'exécution d'un code arbitraire et j'ai vérifié la fiabilité de la source.",
 	"ID": "ID",
 	"ID": "ID",
 	"Ignite curiosity": "Éveiller la curiosité",
 	"Ignite curiosity": "Éveiller la curiosité",
+	"Image": "",
 	"Image Compression": "Compression d'image",
 	"Image Compression": "Compression d'image",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Génération d'images (expérimental)",
 	"Image Generation (Experimental)": "Génération d'images (expérimental)",
 	"Image Generation Engine": "Moteur de génération d'images",
 	"Image Generation Engine": "Moteur de génération d'images",
 	"Image Max Compression Size": "Taille maximale de compression d'image",
 	"Image Max Compression Size": "Taille maximale de compression d'image",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Paramètres de génération d'images",
 	"Image Settings": "Paramètres de génération d'images",
 	"Images": "Images",
 	"Images": "Images",
 	"Import Chats": "Importer les conversations",
 	"Import Chats": "Importer les conversations",
@@ -652,7 +659,6 @@
 	"OLED Dark": "Noir OLED",
 	"OLED Dark": "Noir OLED",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "API Ollama",
 	"Ollama API": "API Ollama",
-	"Ollama API disabled": "API Ollama désactivée",
 	"Ollama API settings updated": "Paramètres de l'API Ollama mis à jour",
 	"Ollama API settings updated": "Paramètres de l'API Ollama mis à jour",
 	"Ollama Version": "Version Ollama",
 	"Ollama Version": "Version Ollama",
 	"On": "Activé",
 	"On": "Activé",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Définir le planificateur",
 	"Set Scheduler": "Définir le planificateur",
 	"Set Steps": "Définir le nombre d'étapes",
 	"Set Steps": "Définir le nombre d'étapes",
 	"Set Task Model": "Définir le modèle de tâche",
 	"Set Task Model": "Définir le modèle de tâche",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "Définir le nombre de dispositifs GPU utilisés pour le calcul. Cette option contrôle combien de dispositifs GPU (si disponibles) sont utilisés pour traiter les demandes entrantes. L'augmentation de cette valeur peut améliorer de manière significative les performances des modèles optimisés pour l'accélération GPU mais peut également consommer plus d'énergie et de ressources GPU.",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Définir le nombre de threads de travail utilisés pour le calcul. Cette option contrôle combien de threads sont utilisés pour traiter les demandes entrantes simultanément. L'augmentation de cette valeur peut améliorer les performances sous de fortes charges de travail concurrentes mais peut également consommer plus de ressources CPU.",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Définir le nombre de threads de travail utilisés pour le calcul. Cette option contrôle combien de threads sont utilisés pour traiter les demandes entrantes simultanément. L'augmentation de cette valeur peut améliorer les performances sous de fortes charges de travail concurrentes mais peut également consommer plus de ressources CPU.",
 	"Set Voice": "Choisir la voix",
 	"Set Voice": "Choisir la voix",
 	"Set whisper model": "Choisir le modèle Whisper",
 	"Set whisper model": "Choisir le modèle Whisper",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Vous ne pouvez discuter qu'avec un maximum de {{maxCount}} fichier(s) à la fois.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Vous ne pouvez discuter qu'avec un maximum de {{maxCount}} fichier(s) à la fois.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Vous pouvez personnaliser vos interactions avec les LLM en ajoutant des mémoires à l'aide du bouton « Gérer » ci-dessous, ce qui les rendra plus utiles et mieux adaptées à vos besoins.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Vous pouvez personnaliser vos interactions avec les LLM en ajoutant des mémoires à l'aide du bouton « Gérer » ci-dessous, ce qui les rendra plus utiles et mieux adaptées à vos besoins.",
 	"You cannot upload an empty file.": "Vous ne pouvez pas envoyer un fichier vide.",
 	"You cannot upload an empty file.": "Vous ne pouvez pas envoyer un fichier vide.",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "Vous n'avez pas la permission de télécharger des fichiers.",
 	"You do not have permission to upload files.": "Vous n'avez pas la permission de télécharger des fichiers.",
 	"You have no archived conversations.": "Vous n'avez aucune conversation archivée.",
 	"You have no archived conversations.": "Vous n'avez aucune conversation archivée.",
 	"You have shared this chat": "Vous avez partagé cette conversation.",
 	"You have shared this chat": "Vous avez partagé cette conversation.",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "פרמטרים מתקדמים",
 	"Advanced Params": "פרמטרים מתקדמים",
 	"All Documents": "כל המסמכים",
 	"All Documents": "כל המסמכים",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "אפשר מחיקת צ'אט",
 	"Allow Chat Deletion": "אפשר מחיקת צ'אט",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "פברואר",
 	"February": "פברואר",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "יצירת תמונות (ניסיוני)",
 	"Image Generation (Experimental)": "יצירת תמונות (ניסיוני)",
 	"Image Generation Engine": "מנוע יצירת תמונות",
 	"Image Generation Engine": "מנוע יצירת תמונות",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "הגדרות תמונה",
 	"Image Settings": "הגדרות תמונה",
 	"Images": "תמונות",
 	"Images": "תמונות",
 	"Import Chats": "יבוא צ'אטים",
 	"Import Chats": "יבוא צ'אטים",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED כהה",
 	"OLED Dark": "OLED כהה",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API מושבת",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "גרסת Ollama",
 	"Ollama Version": "גרסת Ollama",
 	"On": "פועל",
 	"On": "פועל",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "הגדר שלבים",
 	"Set Steps": "הגדר שלבים",
 	"Set Task Model": "הגדרת מודל משימה",
 	"Set Task Model": "הגדרת מודל משימה",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "הגדר קול",
 	"Set Voice": "הגדר קול",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "אין לך שיחות בארכיון.",
 	"You have no archived conversations.": "אין לך שיחות בארכיון.",
 	"You have shared this chat": "שיתפת את השיחה הזו",
 	"You have shared this chat": "שיתפת את השיחה הזו",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "उन्नत परम",
 	"Advanced Params": "उन्नत परम",
 	"All Documents": "सभी डॉक्यूमेंट्स",
 	"All Documents": "सभी डॉक्यूमेंट्स",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "चैट हटाने की अनुमति दें",
 	"Allow Chat Deletion": "चैट हटाने की अनुमति दें",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "फरवरी",
 	"February": "फरवरी",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "छवि निर्माण (प्रायोगिक)",
 	"Image Generation (Experimental)": "छवि निर्माण (प्रायोगिक)",
 	"Image Generation Engine": "छवि निर्माण इंजन",
 	"Image Generation Engine": "छवि निर्माण इंजन",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "छवि सेटिंग्स",
 	"Image Settings": "छवि सेटिंग्स",
 	"Images": "इमेजिस",
 	"Images": "इमेजिस",
 	"Import Chats": "चैट आयात करें",
 	"Import Chats": "चैट आयात करें",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLEDescuro",
 	"OLED Dark": "OLEDescuro",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "ओलामा एपीआई",
 	"Ollama API": "ओलामा एपीआई",
-	"Ollama API disabled": "ओलामा एपीआई अक्षम",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Ollama Version",
 	"Ollama Version": "Ollama Version",
 	"On": "चालू",
 	"On": "चालू",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "चरण निर्धारित करें",
 	"Set Steps": "चरण निर्धारित करें",
 	"Set Task Model": "कार्य मॉडल सेट करें",
 	"Set Task Model": "कार्य मॉडल सेट करें",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "आवाज सेट करें",
 	"Set Voice": "आवाज सेट करें",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "आपको कोई अंकित चैट नहीं है।",
 	"You have no archived conversations.": "आपको कोई अंकित चैट नहीं है।",
 	"You have shared this chat": "आपने इस चैट को शेयर किया है",
 	"You have shared this chat": "आपने इस चैट को शेयर किया है",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Napredni parametri",
 	"Advanced Params": "Napredni parametri",
 	"All Documents": "Svi dokumenti",
 	"All Documents": "Svi dokumenti",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Dopusti brisanje razgovora",
 	"Allow Chat Deletion": "Dopusti brisanje razgovora",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "Greška kod ažuriranja postavki",
 	"Failed to update settings": "Greška kod ažuriranja postavki",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "Veljača",
 	"February": "Veljača",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Generiranje slika (eksperimentalno)",
 	"Image Generation (Experimental)": "Generiranje slika (eksperimentalno)",
 	"Image Generation Engine": "Stroj za generiranje slika",
 	"Image Generation Engine": "Stroj za generiranje slika",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Postavke slike",
 	"Image Settings": "Postavke slike",
 	"Images": "Slike",
 	"Images": "Slike",
 	"Import Chats": "Uvoz razgovora",
 	"Import Chats": "Uvoz razgovora",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED Tamno",
 	"OLED Dark": "OLED Tamno",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API je onemogućen",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Ollama verzija",
 	"Ollama Version": "Ollama verzija",
 	"On": "Uključeno",
 	"On": "Uključeno",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "Postavi korake",
 	"Set Steps": "Postavi korake",
 	"Set Task Model": "Postavite model zadatka",
 	"Set Task Model": "Postavite model zadatka",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Postavi glas",
 	"Set Voice": "Postavi glas",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "Možete personalizirati svoje interakcije s LLM-ima dodavanjem uspomena putem gumba 'Upravljanje' u nastavku, čineći ih korisnijima i prilagođenijima vama.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Možete personalizirati svoje interakcije s LLM-ima dodavanjem uspomena putem gumba 'Upravljanje' u nastavku, čineći ih korisnijima i prilagođenijima vama.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Nemate arhiviranih razgovora.",
 	"You have no archived conversations.": "Nemate arhiviranih razgovora.",
 	"You have shared this chat": "Podijelili ste ovaj razgovor",
 	"You have shared this chat": "Podijelili ste ovaj razgovor",

+ 9 - 2
src/lib/i18n/locales/hu-HU/translation.json

@@ -51,6 +51,7 @@
 	"Advanced Params": "Haladó paraméterek",
 	"Advanced Params": "Haladó paraméterek",
 	"All Documents": "Minden dokumentum",
 	"All Documents": "Minden dokumentum",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Beszélgetések törlésének engedélyezése",
 	"Allow Chat Deletion": "Beszélgetések törlésének engedélyezése",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "Nem sikerült frissíteni a beállításokat",
 	"Failed to update settings": "Nem sikerült frissíteni a beállításokat",
 	"Failed to upload file.": "Nem sikerült feltölteni a fájlt.",
 	"Failed to upload file.": "Nem sikerült feltölteni a fájlt.",
+	"Features Permissions": "",
 	"February": "Február",
 	"February": "Február",
 	"Feedback History": "Visszajelzés előzmények",
 	"Feedback History": "Visszajelzés előzmények",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "Elismerem, hogy elolvastam és megértem a cselekedetem következményeit. Tisztában vagyok a tetszőleges kód végrehajtásával járó kockázatokkal, és ellenőriztem a forrás megbízhatóságát.",
 	"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.": "Elismerem, hogy elolvastam és megértem a cselekedetem következményeit. Tisztában vagyok a tetszőleges kód végrehajtásával járó kockázatokkal, és ellenőriztem a forrás megbízhatóságát.",
 	"ID": "Azonosító",
 	"ID": "Azonosító",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Képgenerálás (kísérleti)",
 	"Image Generation (Experimental)": "Képgenerálás (kísérleti)",
 	"Image Generation Engine": "Képgenerálási motor",
 	"Image Generation Engine": "Képgenerálási motor",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Kép beállítások",
 	"Image Settings": "Kép beállítások",
 	"Images": "Képek",
 	"Images": "Képek",
 	"Import Chats": "Beszélgetések importálása",
 	"Import Chats": "Beszélgetések importálása",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED sötét",
 	"OLED Dark": "OLED sötét",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API letiltva",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Ollama verzió",
 	"Ollama Version": "Ollama verzió",
 	"On": "Be",
 	"On": "Be",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Ütemező beállítása",
 	"Set Scheduler": "Ütemező beállítása",
 	"Set Steps": "Lépések beállítása",
 	"Set Steps": "Lépések beállítása",
 	"Set Task Model": "Feladat modell beállítása",
 	"Set Task Model": "Feladat modell beállítása",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Hang beállítása",
 	"Set Voice": "Hang beállítása",
 	"Set whisper model": "Whisper modell beállítása",
 	"Set whisper model": "Whisper modell beállítása",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Egyszerre maximum {{maxCount}} fájllal tud csevegni.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Egyszerre maximum {{maxCount}} fájllal tud csevegni.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Az LLM-ekkel való interakcióit személyre szabhatja emlékek hozzáadásával a lenti 'Kezelés' gomb segítségével, így azok még hasznosabbak és személyre szabottabbak lesznek.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Az LLM-ekkel való interakcióit személyre szabhatja emlékek hozzáadásával a lenti 'Kezelés' gomb segítségével, így azok még hasznosabbak és személyre szabottabbak lesznek.",
 	"You cannot upload an empty file.": "Nem tölthet fel üres fájlt.",
 	"You cannot upload an empty file.": "Nem tölthet fel üres fájlt.",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Nincsenek archivált beszélgetései.",
 	"You have no archived conversations.": "Nincsenek archivált beszélgetései.",
 	"You have shared this chat": "Megosztotta ezt a beszélgetést",
 	"You have shared this chat": "Megosztotta ezt a beszélgetést",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Parameter Lanjutan",
 	"Advanced Params": "Parameter Lanjutan",
 	"All Documents": "Semua Dokumen",
 	"All Documents": "Semua Dokumen",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Izinkan Penghapusan Obrolan",
 	"Allow Chat Deletion": "Izinkan Penghapusan Obrolan",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "Gagal memperbarui pengaturan",
 	"Failed to update settings": "Gagal memperbarui pengaturan",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "Februari",
 	"February": "Februari",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Pembuatan Gambar (Eksperimental)",
 	"Image Generation (Experimental)": "Pembuatan Gambar (Eksperimental)",
 	"Image Generation Engine": "Mesin Pembuat Gambar",
 	"Image Generation Engine": "Mesin Pembuat Gambar",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Pengaturan Gambar",
 	"Image Settings": "Pengaturan Gambar",
 	"Images": "Gambar",
 	"Images": "Gambar",
 	"Import Chats": "Impor Obrolan",
 	"Import Chats": "Impor Obrolan",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED Gelap",
 	"OLED Dark": "OLED Gelap",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "API Ollama",
 	"Ollama API": "API Ollama",
-	"Ollama API disabled": "API Ollama dinonaktifkan",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Versi Ollama",
 	"Ollama Version": "Versi Ollama",
 	"On": "Aktif",
 	"On": "Aktif",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "Tetapkan Langkah",
 	"Set Steps": "Tetapkan Langkah",
 	"Set Task Model": "Tetapkan Model Tugas",
 	"Set Task Model": "Tetapkan Model Tugas",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Mengatur Suara",
 	"Set Voice": "Mengatur Suara",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "Anda dapat mempersonalisasi interaksi Anda dengan LLM dengan menambahkan kenangan melalui tombol 'Kelola' di bawah ini, sehingga lebih bermanfaat dan disesuaikan untuk Anda.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Anda dapat mempersonalisasi interaksi Anda dengan LLM dengan menambahkan kenangan melalui tombol 'Kelola' di bawah ini, sehingga lebih bermanfaat dan disesuaikan untuk Anda.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Anda tidak memiliki percakapan yang diarsipkan.",
 	"You have no archived conversations.": "Anda tidak memiliki percakapan yang diarsipkan.",
 	"You have shared this chat": "Anda telah membagikan obrolan ini",
 	"You have shared this chat": "Anda telah membagikan obrolan ini",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Paraiméid Casta",
 	"Advanced Params": "Paraiméid Casta",
 	"All Documents": "Gach Doiciméad",
 	"All Documents": "Gach Doiciméad",
 	"All models deleted successfully": "Scriosadh na múnlaí go léir go rathúil",
 	"All models deleted successfully": "Scriosadh na múnlaí go léir go rathúil",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "Ceadaigh Comhrá a Scriosadh",
 	"Allow Chat Delete": "Ceadaigh Comhrá a Scriosadh",
 	"Allow Chat Deletion": "Cead Scriosadh Comhrá",
 	"Allow Chat Deletion": "Cead Scriosadh Comhrá",
 	"Allow Chat Edit": "Ceadaigh Eagarthóireacht Comhrá",
 	"Allow Chat Edit": "Ceadaigh Eagarthóireacht Comhrá",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "Theip ar chumraíocht na múnlaí a shábháil",
 	"Failed to save models configuration": "Theip ar chumraíocht na múnlaí a shábháil",
 	"Failed to update settings": "Theip ar shocruithe a nuashonrú",
 	"Failed to update settings": "Theip ar shocruithe a nuashonrú",
 	"Failed to upload file.": "Theip ar uaslódáil an chomhaid.",
 	"Failed to upload file.": "Theip ar uaslódáil an chomhaid.",
+	"Features Permissions": "",
 	"February": "Feabhra",
 	"February": "Feabhra",
 	"Feedback History": "Stair Aiseolais",
 	"Feedback History": "Stair Aiseolais",
 	"Feedbacks": "Aiseolas",
 	"Feedbacks": "Aiseolas",
@@ -490,10 +492,15 @@
 	"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.": "Admhaím gur léigh mé agus tuigim impleachtaí mo ghníomhaíochta. Táim ar an eolas faoi na rioscaí a bhaineann le cód treallach a fhorghníomhú agus tá iontaofacht na foinse fíoraithe agam.",
 	"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.": "Admhaím gur léigh mé agus tuigim impleachtaí mo ghníomhaíochta. Táim ar an eolas faoi na rioscaí a bhaineann le cód treallach a fhorghníomhú agus tá iontaofacht na foinse fíoraithe agam.",
 	"ID": "ID",
 	"ID": "ID",
 	"Ignite curiosity": "Las fiosracht",
 	"Ignite curiosity": "Las fiosracht",
+	"Image": "",
 	"Image Compression": "Comhbhrú Íomhá",
 	"Image Compression": "Comhbhrú Íomhá",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Giniúint Íomhá (Turgnaimh)",
 	"Image Generation (Experimental)": "Giniúint Íomhá (Turgnaimh)",
 	"Image Generation Engine": "Inneall Giniúna Íomh",
 	"Image Generation Engine": "Inneall Giniúna Íomh",
 	"Image Max Compression Size": "Íomhá Méid Comhbhrú Max",
 	"Image Max Compression Size": "Íomhá Méid Comhbhrú Max",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Socruithe Íomhá",
 	"Image Settings": "Socruithe Íomhá",
 	"Images": "Íomhánna",
 	"Images": "Íomhánna",
 	"Import Chats": "Comhráite iompórtá",
 	"Import Chats": "Comhráite iompórtá",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED Dorcha",
 	"OLED Dark": "OLED Dorcha",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API faoi mhíchumas",
 	"Ollama API settings updated": "Nuashonraíodh socruithe Olama API",
 	"Ollama API settings updated": "Nuashonraíodh socruithe Olama API",
 	"Ollama Version": "Leagan Ollama",
 	"Ollama Version": "Leagan Ollama",
 	"On": "Ar",
 	"On": "Ar",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Socraigh Sceidealóir",
 	"Set Scheduler": "Socraigh Sceidealóir",
 	"Set Steps": "Socraigh Céimeanna",
 	"Set Steps": "Socraigh Céimeanna",
 	"Set Task Model": "Socraigh Samhail Tasc",
 	"Set Task Model": "Socraigh Samhail Tasc",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "Socraigh líon na bhfeistí GPU a úsáidtear le haghaidh ríomh. Rialaíonn an rogha seo cé mhéad gléas GPU (má tá siad ar fáil) a úsáidtear chun iarratais isteach a phróiseáil. Is féidir leis an luach seo a mhéadú feabhas suntasach a chur ar fheidhmíocht do mhúnlaí atá optamaithe le haghaidh luasghéarú GPU ach d’fhéadfadh go n-ídíonn siad níos mó cumhachta agus acmhainní GPU freisin.",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Socraigh líon na snáitheanna oibrithe a úsáidtear le haghaidh ríomh. Rialaíonn an rogha seo cé mhéad snáithe a úsáidtear chun iarratais a thagann isteach a phróiseáil i gcomhthráth. D'fhéadfadh méadú ar an luach seo feidhmíocht a fheabhsú faoi ualaí oibre comhairgeadra ard ach féadfaidh sé níos mó acmhainní LAP a úsáid freisin.",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Socraigh líon na snáitheanna oibrithe a úsáidtear le haghaidh ríomh. Rialaíonn an rogha seo cé mhéad snáithe a úsáidtear chun iarratais a thagann isteach a phróiseáil i gcomhthráth. D'fhéadfadh méadú ar an luach seo feidhmíocht a fheabhsú faoi ualaí oibre comhairgeadra ard ach féadfaidh sé níos mó acmhainní LAP a úsáid freisin.",
 	"Set Voice": "Socraigh Guth",
 	"Set Voice": "Socraigh Guth",
 	"Set whisper model": "Socraigh múnla cogar",
 	"Set whisper model": "Socraigh múnla cogar",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Ní féidir leat comhrá a dhéanamh ach le comhad {{maxCount}} ar a mhéad ag an am.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Ní féidir leat comhrá a dhéanamh ach le comhad {{maxCount}} ar a mhéad ag an am.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Is féidir leat do chuid idirghníomhaíochtaí le LLManna a phearsantú ach cuimhní cinn a chur leis tríd an gcnaipe 'Bainistigh' thíos, rud a fhágann go mbeidh siad níos cabhrach agus níos oiriúnaí duit.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Is féidir leat do chuid idirghníomhaíochtaí le LLManna a phearsantú ach cuimhní cinn a chur leis tríd an gcnaipe 'Bainistigh' thíos, rud a fhágann go mbeidh siad níos cabhrach agus níos oiriúnaí duit.",
 	"You cannot upload an empty file.": "Ní féidir leat comhad folamh a uaslódáil.",
 	"You cannot upload an empty file.": "Ní féidir leat comhad folamh a uaslódáil.",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "Níl cead agat comhaid a uaslódáil.",
 	"You do not have permission to upload files.": "Níl cead agat comhaid a uaslódáil.",
 	"You have no archived conversations.": "Níl aon chomhráite cartlainne agat.",
 	"You have no archived conversations.": "Níl aon chomhráite cartlainne agat.",
 	"You have shared this chat": "Tá an comhrá seo roinnte agat",
 	"You have shared this chat": "Tá an comhrá seo roinnte agat",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Parametri avanzati",
 	"Advanced Params": "Parametri avanzati",
 	"All Documents": "Tutti i documenti",
 	"All Documents": "Tutti i documenti",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Consenti l'eliminazione della chat",
 	"Allow Chat Deletion": "Consenti l'eliminazione della chat",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "Febbraio",
 	"February": "Febbraio",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Generazione di immagini (sperimentale)",
 	"Image Generation (Experimental)": "Generazione di immagini (sperimentale)",
 	"Image Generation Engine": "Motore di generazione immagini",
 	"Image Generation Engine": "Motore di generazione immagini",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Impostazioni immagine",
 	"Image Settings": "Impostazioni immagine",
 	"Images": "Immagini",
 	"Images": "Immagini",
 	"Import Chats": "Importa chat",
 	"Import Chats": "Importa chat",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED scuro",
 	"OLED Dark": "OLED scuro",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "API Ollama disabilitata",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Versione Ollama",
 	"Ollama Version": "Versione Ollama",
 	"On": "Attivato",
 	"On": "Attivato",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "Imposta passaggi",
 	"Set Steps": "Imposta passaggi",
 	"Set Task Model": "Imposta modello di attività",
 	"Set Task Model": "Imposta modello di attività",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Imposta voce",
 	"Set Voice": "Imposta voce",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Non hai conversazioni archiviate.",
 	"You have no archived conversations.": "Non hai conversazioni archiviate.",
 	"You have shared this chat": "Hai condiviso questa chat",
 	"You have shared this chat": "Hai condiviso questa chat",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "高度なパラメータ",
 	"Advanced Params": "高度なパラメータ",
 	"All Documents": "全てのドキュメント",
 	"All Documents": "全てのドキュメント",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "チャットの削除を許可",
 	"Allow Chat Deletion": "チャットの削除を許可",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "設定アップデート失敗",
 	"Failed to update settings": "設定アップデート失敗",
 	"Failed to upload file.": "ファイルアップロード失敗",
 	"Failed to upload file.": "ファイルアップロード失敗",
+	"Features Permissions": "",
 	"February": "2月",
 	"February": "2月",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "画像生成 (実験的)",
 	"Image Generation (Experimental)": "画像生成 (実験的)",
 	"Image Generation Engine": "画像生成エンジン",
 	"Image Generation Engine": "画像生成エンジン",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "画像設定",
 	"Image Settings": "画像設定",
 	"Images": "画像",
 	"Images": "画像",
 	"Import Chats": "チャットをインポート",
 	"Import Chats": "チャットをインポート",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED ダーク",
 	"OLED Dark": "OLED ダーク",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API が無効になっています",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Ollama バージョン",
 	"Ollama Version": "Ollama バージョン",
 	"On": "オン",
 	"On": "オン",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "ステップを設定",
 	"Set Steps": "ステップを設定",
 	"Set Task Model": "タスクモデルの設定",
 	"Set Task Model": "タスクモデルの設定",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "音声を設定",
 	"Set Voice": "音声を設定",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "これまでにアーカイブされた会話はありません。",
 	"You have no archived conversations.": "これまでにアーカイブされた会話はありません。",
 	"You have shared this chat": "このチャットを共有しました",
 	"You have shared this chat": "このチャットを共有しました",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "მოწინავე პარამები",
 	"Advanced Params": "მოწინავე პარამები",
 	"All Documents": "ყველა დოკუმენტი",
 	"All Documents": "ყველა დოკუმენტი",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "მიმოწერის წაშლის დაშვება",
 	"Allow Chat Deletion": "მიმოწერის წაშლის დაშვება",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "თებერვალი",
 	"February": "თებერვალი",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "სურათების გენერაცია (ექსპერიმენტული)",
 	"Image Generation (Experimental)": "სურათების გენერაცია (ექსპერიმენტული)",
 	"Image Generation Engine": "სურათის გენერაციის ძრავა",
 	"Image Generation Engine": "სურათის გენერაციის ძრავა",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "სურათის პარამეტრები",
 	"Image Settings": "სურათის პარამეტრები",
 	"Images": "სურათები",
 	"Images": "სურათები",
 	"Import Chats": "მიმოწერების იმპორტი",
 	"Import Chats": "მიმოწერების იმპორტი",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED მუქი",
 	"OLED Dark": "OLED მუქი",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API გამორთულია",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Ollama ვერსია",
 	"Ollama Version": "Ollama ვერსია",
 	"On": "ჩართვა",
 	"On": "ჩართვა",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "ნაბიჯების დაყენება",
 	"Set Steps": "ნაბიჯების დაყენება",
 	"Set Task Model": "დააყენეთ სამუშაო მოდელი",
 	"Set Task Model": "დააყენეთ სამუშაო მოდელი",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "ხმის დაყენება",
 	"Set Voice": "ხმის დაყენება",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "არ ხართ არქივირებული განხილვები.",
 	"You have no archived conversations.": "არ ხართ არქივირებული განხილვები.",
 	"You have shared this chat": "ამ ჩატის გააგზავნა",
 	"You have shared this chat": "ამ ჩატის გააგზავნა",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "고급 매개변수",
 	"Advanced Params": "고급 매개변수",
 	"All Documents": "모든 문서",
 	"All Documents": "모든 문서",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "채팅 삭제 허용",
 	"Allow Chat Deletion": "채팅 삭제 허용",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "설정 업데이트에 실패하였습니다.",
 	"Failed to update settings": "설정 업데이트에 실패하였습니다.",
 	"Failed to upload file.": "파일 업로드에 실패했습니다",
 	"Failed to upload file.": "파일 업로드에 실패했습니다",
+	"Features Permissions": "",
 	"February": "2월",
 	"February": "2월",
 	"Feedback History": "피드백 기록",
 	"Feedback History": "피드백 기록",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "ID",
 	"ID": "ID",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "이미지 압축",
 	"Image Compression": "이미지 압축",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "이미지 생성(실험적)",
 	"Image Generation (Experimental)": "이미지 생성(실험적)",
 	"Image Generation Engine": "이미지 생성 엔진",
 	"Image Generation Engine": "이미지 생성 엔진",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "이미지 설정",
 	"Image Settings": "이미지 설정",
 	"Images": "이미지",
 	"Images": "이미지",
 	"Import Chats": "채팅 가져오기",
 	"Import Chats": "채팅 가져오기",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED 다크",
 	"OLED Dark": "OLED 다크",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API 비활성화",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Ollama 버전",
 	"Ollama Version": "Ollama 버전",
 	"On": "켜기",
 	"On": "켜기",
@@ -833,14 +839,14 @@
 	"Set Scheduler": "스케쥴러 설정",
 	"Set Scheduler": "스케쥴러 설정",
 	"Set Steps": "단계 설정",
 	"Set Steps": "단계 설정",
 	"Set Task Model": "작업 모델 설정",
 	"Set Task Model": "작업 모델 설정",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "음성 설정",
 	"Set Voice": "음성 설정",
 	"Set whisper model": "자막 생성기 모델 설정",
 	"Set whisper model": "자막 생성기 모델 설정",
 	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
 	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
 	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
 	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
-	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
 	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "생성을 위한 무작위 숫자 시드를 설정합니다. 이 값을 특정 숫자로 설정하면 동일한 프롬프트에 대해 동일한 텍스트를 생성합니다. (기본값: 무작위)",
 	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "생성을 위한 무작위 숫자 시드를 설정합니다. 이 값을 특정 숫자로 설정하면 동일한 프롬프트에 대해 동일한 텍스트를 생성합니다. (기본값: 무작위)",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
 	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "중단 시퀀스를 설정합니다. 이 패턴이 발생하면 LLM은 텍스트 생성을 중단하고 반환합니다. 여러 중단 패턴은 모델 파일에서 여러 개의 별도 중단 매개변수를 지정하여 설정할 수 있습니다.",
 	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "중단 시퀀스를 설정합니다. 이 패턴이 발생하면 LLM은 텍스트 생성을 중단하고 반환합니다. 여러 중단 패턴은 모델 파일에서 여러 개의 별도 중단 매개변수를 지정하여 설정할 수 있습니다.",
 	"Settings": "설정",
 	"Settings": "설정",
 	"Settings saved successfully!": "설정이 성공적으로 저장되었습니다!",
 	"Settings saved successfully!": "설정이 성공적으로 저장되었습니다!",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "동시에 최대 {{maxCount}} 파일과만 대화할 수 있습니다 ",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "동시에 최대 {{maxCount}} 파일과만 대화할 수 있습니다 ",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "아래 '관리' 버튼으로 메모리를 추가하여 LLM들과의 상호작용을 개인화할 수 있습니다. 이를 통해 더 유용하고 맞춤화된 경험을 제공합니다.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "아래 '관리' 버튼으로 메모리를 추가하여 LLM들과의 상호작용을 개인화할 수 있습니다. 이를 통해 더 유용하고 맞춤화된 경험을 제공합니다.",
 	"You cannot upload an empty file.": "빈 파일을 업로드 할 수 없습니다",
 	"You cannot upload an empty file.": "빈 파일을 업로드 할 수 없습니다",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "채팅을 보관한 적이 없습니다.",
 	"You have no archived conversations.": "채팅을 보관한 적이 없습니다.",
 	"You have shared this chat": "이 채팅을 공유했습니다.",
 	"You have shared this chat": "이 채팅을 공유했습니다.",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Pažengę nustatymai",
 	"Advanced Params": "Pažengę nustatymai",
 	"All Documents": "Visi dokumentai",
 	"All Documents": "Visi dokumentai",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Leisti pokalbių ištrynimą",
 	"Allow Chat Deletion": "Leisti pokalbių ištrynimą",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "Nepavyko atnaujinti nustatymų",
 	"Failed to update settings": "Nepavyko atnaujinti nustatymų",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "Vasaris",
 	"February": "Vasaris",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "Suprantu veiksmų ir kodo vykdymo rizikas.",
 	"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.": "Suprantu veiksmų ir kodo vykdymo rizikas.",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Vaizdų generavimas (eksperimentinis)",
 	"Image Generation (Experimental)": "Vaizdų generavimas (eksperimentinis)",
 	"Image Generation Engine": "Vaizdų generavimo variklis",
 	"Image Generation Engine": "Vaizdų generavimo variklis",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Vaizdų nustatymai",
 	"Image Settings": "Vaizdų nustatymai",
 	"Images": "Vaizdai",
 	"Images": "Vaizdai",
 	"Import Chats": "Importuoti pokalbius",
 	"Import Chats": "Importuoti pokalbius",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED tamsus",
 	"OLED Dark": "OLED tamsus",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API išjungtas",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Ollama versija",
 	"Ollama Version": "Ollama versija",
 	"On": "Aktyvuota",
 	"On": "Aktyvuota",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "Numatyti etapus",
 	"Set Steps": "Numatyti etapus",
 	"Set Task Model": "Numatyti užduočių modelį",
 	"Set Task Model": "Numatyti užduočių modelį",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Numatyti balsą",
 	"Set Voice": "Numatyti balsą",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "Galite pagerinti modelių darbą suteikdami jiems atminties funkcionalumą.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Galite pagerinti modelių darbą suteikdami jiems atminties funkcionalumą.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Jūs neturite archyvuotų pokalbių",
 	"You have no archived conversations.": "Jūs neturite archyvuotų pokalbių",
 	"You have shared this chat": "Pasidalinote šiuo pokalbiu",
 	"You have shared this chat": "Pasidalinote šiuo pokalbiu",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Parameter Lanjutan",
 	"Advanced Params": "Parameter Lanjutan",
 	"All Documents": "Semua Dokumen",
 	"All Documents": "Semua Dokumen",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Benarkan Penghapusan Perbualan",
 	"Allow Chat Deletion": "Benarkan Penghapusan Perbualan",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "Gagal mengemaskini tetapan",
 	"Failed to update settings": "Gagal mengemaskini tetapan",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "Febuari",
 	"February": "Febuari",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "Saya mengakui bahawa saya telah membaca dan saya memahami implikasi tindakan saya. Saya sedar tentang risiko yang berkaitan dengan melaksanakan kod sewenang-wenangnya dan saya telah mengesahkan kebolehpercayaan sumber tersebut.",
 	"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.": "Saya mengakui bahawa saya telah membaca dan saya memahami implikasi tindakan saya. Saya sedar tentang risiko yang berkaitan dengan melaksanakan kod sewenang-wenangnya dan saya telah mengesahkan kebolehpercayaan sumber tersebut.",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Penjanaan Imej (Percubaan)",
 	"Image Generation (Experimental)": "Penjanaan Imej (Percubaan)",
 	"Image Generation Engine": "Enjin Penjanaan Imej",
 	"Image Generation Engine": "Enjin Penjanaan Imej",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Tetapan Imej",
 	"Image Settings": "Tetapan Imej",
 	"Images": "Imej",
 	"Images": "Imej",
 	"Import Chats": "Import Perbualan",
 	"Import Chats": "Import Perbualan",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED Gelap",
 	"OLED Dark": "OLED Gelap",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "API Ollama",
 	"Ollama API": "API Ollama",
-	"Ollama API disabled": "API Ollama dilumpuhkan",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Versi Ollama",
 	"Ollama Version": "Versi Ollama",
 	"On": "Hidup",
 	"On": "Hidup",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "tapkan Langkah",
 	"Set Steps": "tapkan Langkah",
 	"Set Task Model": "Tetapkan Model Tugasan",
 	"Set Task Model": "Tetapkan Model Tugasan",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Tetapan Suara",
 	"Set Voice": "Tetapan Suara",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "Anda boleh memperibadikan interaksi anda dengan LLM dengan menambahkan memori melalui butang 'Urus' di bawah, menjadikannya lebih membantu dan disesuaikan dengan anda.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Anda boleh memperibadikan interaksi anda dengan LLM dengan menambahkan memori melalui butang 'Urus' di bawah, menjadikannya lebih membantu dan disesuaikan dengan anda.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Anda tidak mempunyai perbualan yang diarkibkan",
 	"You have no archived conversations.": "Anda tidak mempunyai perbualan yang diarkibkan",
 	"You have shared this chat": "Anda telah berkongsi perbualan ini",
 	"You have shared this chat": "Anda telah berkongsi perbualan ini",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Avanserte parametere",
 	"Advanced Params": "Avanserte parametere",
 	"All Documents": "Alle dokumenter",
 	"All Documents": "Alle dokumenter",
 	"All models deleted successfully": "Alle modeller er slettet",
 	"All models deleted successfully": "Alle modeller er slettet",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "Tillat sletting av chatter",
 	"Allow Chat Delete": "Tillat sletting av chatter",
 	"Allow Chat Deletion": "Tillat sletting av chatter",
 	"Allow Chat Deletion": "Tillat sletting av chatter",
 	"Allow Chat Edit": "Tillat redigering av chatter",
 	"Allow Chat Edit": "Tillat redigering av chatter",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "Kan ikke lagre konfigurasjonen av modeller",
 	"Failed to save models configuration": "Kan ikke lagre konfigurasjonen av modeller",
 	"Failed to update settings": "Kan ikke oppdatere innstillinger",
 	"Failed to update settings": "Kan ikke oppdatere innstillinger",
 	"Failed to upload file.": "Kan ikke laste opp filen.",
 	"Failed to upload file.": "Kan ikke laste opp filen.",
+	"Features Permissions": "",
 	"February": "februar",
 	"February": "februar",
 	"Feedback History": "Tilbakemeldingslogg",
 	"Feedback History": "Tilbakemeldingslogg",
 	"Feedbacks": "Tilbakemeldinger",
 	"Feedbacks": "Tilbakemeldinger",
@@ -490,10 +492,15 @@
 	"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.": "Jeg bekrefter at jeg har lest og forstår konsekvensene av mine handlinger. Jeg er klar over risikoen forbundet med å kjøre vilkårlig kode, og jeg har verifisert kildens pålitelighet.",
 	"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.": "Jeg bekrefter at jeg har lest og forstår konsekvensene av mine handlinger. Jeg er klar over risikoen forbundet med å kjøre vilkårlig kode, og jeg har verifisert kildens pålitelighet.",
 	"ID": "ID",
 	"ID": "ID",
 	"Ignite curiosity": "Vekk nysgjerrigheten",
 	"Ignite curiosity": "Vekk nysgjerrigheten",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Bildegenerering (eksperimentell)",
 	"Image Generation (Experimental)": "Bildegenerering (eksperimentell)",
 	"Image Generation Engine": "Bildegenereringsmotor",
 	"Image Generation Engine": "Bildegenereringsmotor",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Bildeinnstillinger",
 	"Image Settings": "Bildeinnstillinger",
 	"Images": "Bilder",
 	"Images": "Bilder",
 	"Import Chats": "Importer chatter",
 	"Import Chats": "Importer chatter",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED mørk",
 	"OLED Dark": "OLED mørk",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama-API",
 	"Ollama API": "Ollama-API",
-	"Ollama API disabled": "Ollama-API deaktivert",
 	"Ollama API settings updated": "API-innstillinger for Ollama er oppdatert",
 	"Ollama API settings updated": "API-innstillinger for Ollama er oppdatert",
 	"Ollama Version": "Ollama-versjon",
 	"Ollama Version": "Ollama-versjon",
 	"On": "Aktivert",
 	"On": "Aktivert",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Angi planlegger",
 	"Set Scheduler": "Angi planlegger",
 	"Set Steps": "Angi steg",
 	"Set Steps": "Angi steg",
 	"Set Task Model": "Angi oppgavemodell",
 	"Set Task Model": "Angi oppgavemodell",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "Angi antall GPU-enheter som brukes til beregning. Dette alternativet styrer hvor mange GPU-enheter (hvis tilgjengelig) som brukes til å behandle innkommende forespørsler. Hvis du øker denne verdien, kan du forbedre ytelsen betydelig for modeller som er optimalisert for GPU-akselerasjon, men det kan også føre til at det brukes mer strøm og GPU-ressurser.",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Angi antall arbeidstråder som skal brukes til beregning. Dette alternativet kontrollerer hvor mange tråder som brukes til å behandle innkommende forespørsler samtidig. Hvis du øker denne verdien, kan det forbedre ytelsen under arbeidsbelastninger med høy samtidighet, men det kan også føre til økt forbruk av CPU-ressurser.",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Angi antall arbeidstråder som skal brukes til beregning. Dette alternativet kontrollerer hvor mange tråder som brukes til å behandle innkommende forespørsler samtidig. Hvis du øker denne verdien, kan det forbedre ytelsen under arbeidsbelastninger med høy samtidighet, men det kan også føre til økt forbruk av CPU-ressurser.",
 	"Set Voice": "Angi stemme",
 	"Set Voice": "Angi stemme",
 	"Set whisper model": "Angi whisper-modell",
 	"Set whisper model": "Angi whisper-modell",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Du kan bare chatte med maksimalt {{maxCount}} fil(er) om gangen.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Du kan bare chatte med maksimalt {{maxCount}} fil(er) om gangen.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan tilpasse interaksjonene dine med språkmodeller ved å legge til minner gjennom Administrer-knappen nedenfor, slik at de blir mer til nyttige og tilpasset deg.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan tilpasse interaksjonene dine med språkmodeller ved å legge til minner gjennom Administrer-knappen nedenfor, slik at de blir mer til nyttige og tilpasset deg.",
 	"You cannot upload an empty file.": "Du kan ikke laste opp en tom fil.",
 	"You cannot upload an empty file.": "Du kan ikke laste opp en tom fil.",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "Du har ikke tillatelse til å laste opp filer.",
 	"You do not have permission to upload files.": "Du har ikke tillatelse til å laste opp filer.",
 	"You have no archived conversations.": "Du har ingen arkiverte samtaler.",
 	"You have no archived conversations.": "Du har ingen arkiverte samtaler.",
 	"You have shared this chat": "Du har delt denne chatten",
 	"You have shared this chat": "Du har delt denne chatten",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Geavanceerde params",
 	"Advanced Params": "Geavanceerde params",
 	"All Documents": "Alle documenten",
 	"All Documents": "Alle documenten",
 	"All models deleted successfully": "Alle modellen zijn succesvol verwijderd",
 	"All models deleted successfully": "Alle modellen zijn succesvol verwijderd",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "Sta chatverwijdering toe",
 	"Allow Chat Delete": "Sta chatverwijdering toe",
 	"Allow Chat Deletion": "Sta chatverwijdering toe",
 	"Allow Chat Deletion": "Sta chatverwijdering toe",
 	"Allow Chat Edit": "Sta chatwijziging toe",
 	"Allow Chat Edit": "Sta chatwijziging toe",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "Het is niet gelukt om de modelconfiguratie op te slaan",
 	"Failed to save models configuration": "Het is niet gelukt om de modelconfiguratie op te slaan",
 	"Failed to update settings": "Instellingen konden niet worden bijgewerkt.",
 	"Failed to update settings": "Instellingen konden niet worden bijgewerkt.",
 	"Failed to upload file.": "Bestand kon niet worden geüpload.",
 	"Failed to upload file.": "Bestand kon niet worden geüpload.",
+	"Features Permissions": "",
 	"February": "Februari",
 	"February": "Februari",
 	"Feedback History": "Feedback geschiedenis",
 	"Feedback History": "Feedback geschiedenis",
 	"Feedbacks": "Feedback",
 	"Feedbacks": "Feedback",
@@ -490,10 +492,15 @@
 	"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.": "Ik bevestig dat ik de implicaties van mijn actie heb gelezen en begrepen. Ik ben me bewust van de risico's die gepaard gaan met het uitvoeren van willekeurige code en ik heb de betrouwbaarheid van de bron gecontroleerd.",
 	"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.": "Ik bevestig dat ik de implicaties van mijn actie heb gelezen en begrepen. Ik ben me bewust van de risico's die gepaard gaan met het uitvoeren van willekeurige code en ik heb de betrouwbaarheid van de bron gecontroleerd.",
 	"ID": "ID",
 	"ID": "ID",
 	"Ignite curiosity": "Wakker nieuwsgierigheid aan",
 	"Ignite curiosity": "Wakker nieuwsgierigheid aan",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Afbeeldingsgeneratie (Experimenteel)",
 	"Image Generation (Experimental)": "Afbeeldingsgeneratie (Experimenteel)",
 	"Image Generation Engine": "Afbeeldingsgeneratie Engine",
 	"Image Generation Engine": "Afbeeldingsgeneratie Engine",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Afbeeldingsinstellingen",
 	"Image Settings": "Afbeeldingsinstellingen",
 	"Images": "Afbeeldingen",
 	"Images": "Afbeeldingen",
 	"Import Chats": "Importeer Chats",
 	"Import Chats": "Importeer Chats",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED Donker",
 	"OLED Dark": "OLED Donker",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API uitgeschakeld",
 	"Ollama API settings updated": "Ollama API-instellingen bijgewerkt",
 	"Ollama API settings updated": "Ollama API-instellingen bijgewerkt",
 	"Ollama Version": "Ollama Versie",
 	"Ollama Version": "Ollama Versie",
 	"On": "Aan",
 	"On": "Aan",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Stel planner in",
 	"Set Scheduler": "Stel planner in",
 	"Set Steps": "Stel stappen in",
 	"Set Steps": "Stel stappen in",
 	"Set Task Model": "Taakmodel instellen",
 	"Set Task Model": "Taakmodel instellen",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "Stel het aantal GPU apparaten in dat gebruikt wordt voor berekeningen. Deze optie bepaalt hoeveel GPU-apparaten (indien beschikbaar) worden gebruikt om binnenkomende aanvragen te verwerken. Het verhogen van deze waarde kan de prestaties aanzienlijk verbeteren voor modellen die geoptimaliseerd zijn voor GPU-versnelling, maar kan ook meer stroom en GPU-bronnen verbruiken.",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Stel het aantal threads in dat wordt gebruikt voor berekeningen. Deze optie bepaalt hoeveel threads worden gebruikt om gelijktijdig binnenkomende verzoeken te verwerken. Het verhogen van deze waarde kan de prestaties verbeteren onder hoge concurrency werklasten, maar kan ook meer CPU-bronnen verbruiken.",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Stel het aantal threads in dat wordt gebruikt voor berekeningen. Deze optie bepaalt hoeveel threads worden gebruikt om gelijktijdig binnenkomende verzoeken te verwerken. Het verhogen van deze waarde kan de prestaties verbeteren onder hoge concurrency werklasten, maar kan ook meer CPU-bronnen verbruiken.",
 	"Set Voice": "Stel stem in",
 	"Set Voice": "Stel stem in",
 	"Set whisper model": "Stel Whisper-model in",
 	"Set whisper model": "Stel Whisper-model in",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Je kunt slechts met maximaal {{maxCount}} bestand(en) tegelijk chatten",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Je kunt slechts met maximaal {{maxCount}} bestand(en) tegelijk chatten",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Je kunt je interacties met LLM's personaliseren door herinneringen toe te voegen via de 'Beheer'-knop hieronder, waardoor ze nuttiger en voor jou op maat gemaakt worden.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Je kunt je interacties met LLM's personaliseren door herinneringen toe te voegen via de 'Beheer'-knop hieronder, waardoor ze nuttiger en voor jou op maat gemaakt worden.",
 	"You cannot upload an empty file.": "Je kunt een leeg bestand niet uploaden.",
 	"You cannot upload an empty file.": "Je kunt een leeg bestand niet uploaden.",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "Je hebt geen toestemming om bestanden up te loaden",
 	"You do not have permission to upload files.": "Je hebt geen toestemming om bestanden up te loaden",
 	"You have no archived conversations.": "Je hebt geen gearchiveerde gesprekken.",
 	"You have no archived conversations.": "Je hebt geen gearchiveerde gesprekken.",
 	"You have shared this chat": "Je hebt dit gesprek gedeeld",
 	"You have shared this chat": "Je hebt dit gesprek gedeeld",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "ਐਡਵਾਂਸਡ ਪਰਮਜ਼",
 	"Advanced Params": "ਐਡਵਾਂਸਡ ਪਰਮਜ਼",
 	"All Documents": "ਸਾਰੇ ਡਾਕੂਮੈਂਟ",
 	"All Documents": "ਸਾਰੇ ਡਾਕੂਮੈਂਟ",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "ਗੱਲਬਾਤ ਮਿਟਾਉਣ ਦੀ ਆਗਿਆ ਦਿਓ",
 	"Allow Chat Deletion": "ਗੱਲਬਾਤ ਮਿਟਾਉਣ ਦੀ ਆਗਿਆ ਦਿਓ",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "ਫਰਵਰੀ",
 	"February": "ਫਰਵਰੀ",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "ਚਿੱਤਰ ਜਨਰੇਸ਼ਨ (ਪਰਮਾਣੂਕ੍ਰਿਤ)",
 	"Image Generation (Experimental)": "ਚਿੱਤਰ ਜਨਰੇਸ਼ਨ (ਪਰਮਾਣੂਕ੍ਰਿਤ)",
 	"Image Generation Engine": "ਚਿੱਤਰ ਜਨਰੇਸ਼ਨ ਇੰਜਣ",
 	"Image Generation Engine": "ਚਿੱਤਰ ਜਨਰੇਸ਼ਨ ਇੰਜਣ",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "ਚਿੱਤਰ ਸੈਟਿੰਗਾਂ",
 	"Image Settings": "ਚਿੱਤਰ ਸੈਟਿੰਗਾਂ",
 	"Images": "ਚਿੱਤਰ",
 	"Images": "ਚਿੱਤਰ",
 	"Import Chats": "ਗੱਲਾਂ ਆਯਾਤ ਕਰੋ",
 	"Import Chats": "ਗੱਲਾਂ ਆਯਾਤ ਕਰੋ",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED ਗੂੜ੍ਹਾ",
 	"OLED Dark": "OLED ਗੂੜ੍ਹਾ",
 	"Ollama": "ਓਲਾਮਾ",
 	"Ollama": "ਓਲਾਮਾ",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API ਅਸਮਰੱਥ",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "ਓਲਾਮਾ ਵਰਜਨ",
 	"Ollama Version": "ਓਲਾਮਾ ਵਰਜਨ",
 	"On": "ਚਾਲੂ",
 	"On": "ਚਾਲੂ",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "ਕਦਮ ਸੈੱਟ ਕਰੋ",
 	"Set Steps": "ਕਦਮ ਸੈੱਟ ਕਰੋ",
 	"Set Task Model": "ਟਾਸਕ ਮਾਡਲ ਸੈੱਟ ਕਰੋ",
 	"Set Task Model": "ਟਾਸਕ ਮਾਡਲ ਸੈੱਟ ਕਰੋ",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "ਆਵਾਜ਼ ਸੈੱਟ ਕਰੋ",
 	"Set Voice": "ਆਵਾਜ਼ ਸੈੱਟ ਕਰੋ",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "ਤੁਹਾਡੇ ਕੋਲ ਕੋਈ ਆਰਕਾਈਵ ਕੀਤੀਆਂ ਗੱਲਾਂ ਨਹੀਂ ਹਨ।",
 	"You have no archived conversations.": "ਤੁਹਾਡੇ ਕੋਲ ਕੋਈ ਆਰਕਾਈਵ ਕੀਤੀਆਂ ਗੱਲਾਂ ਨਹੀਂ ਹਨ।",
 	"You have shared this chat": "ਤੁਸੀਂ ਇਹ ਗੱਲਬਾਤ ਸਾਂਝੀ ਕੀਤੀ ਹੈ",
 	"You have shared this chat": "ਤੁਸੀਂ ਇਹ ਗੱਲਬਾਤ ਸਾਂਝੀ ਕੀਤੀ ਹੈ",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Zaawansowane parametry",
 	"Advanced Params": "Zaawansowane parametry",
 	"All Documents": "Wszystkie dokumenty",
 	"All Documents": "Wszystkie dokumenty",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Pozwól na usuwanie czatu",
 	"Allow Chat Deletion": "Pozwól na usuwanie czatu",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "Luty",
 	"February": "Luty",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Generowanie obrazu (eksperymentalne)",
 	"Image Generation (Experimental)": "Generowanie obrazu (eksperymentalne)",
 	"Image Generation Engine": "Silnik generowania obrazu",
 	"Image Generation Engine": "Silnik generowania obrazu",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Ustawienia obrazu",
 	"Image Settings": "Ustawienia obrazu",
 	"Images": "Obrazy",
 	"Images": "Obrazy",
 	"Import Chats": "Importuj czaty",
 	"Import Chats": "Importuj czaty",
@@ -652,7 +659,6 @@
 	"OLED Dark": "Ciemny OLED",
 	"OLED Dark": "Ciemny OLED",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Interfejs API Ollama wyłączony",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Wersja Ollama",
 	"Ollama Version": "Wersja Ollama",
 	"On": "Włączony",
 	"On": "Włączony",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "Ustaw kroki",
 	"Set Steps": "Ustaw kroki",
 	"Set Task Model": "Ustawianie modelu zadań",
 	"Set Task Model": "Ustawianie modelu zadań",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Ustaw głos",
 	"Set Voice": "Ustaw głos",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Nie masz zarchiwizowanych rozmów.",
 	"You have no archived conversations.": "Nie masz zarchiwizowanych rozmów.",
 	"You have shared this chat": "Udostępniłeś ten czat",
 	"You have shared this chat": "Udostępniłeś ten czat",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Parâmetros Avançados",
 	"Advanced Params": "Parâmetros Avançados",
 	"All Documents": "Todos os Documentos",
 	"All Documents": "Todos os Documentos",
 	"All models deleted successfully": "Todos os modelos foram excluídos com sucesso",
 	"All models deleted successfully": "Todos os modelos foram excluídos com sucesso",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "Permitir Exclusão de Chats",
 	"Allow Chat Delete": "Permitir Exclusão de Chats",
 	"Allow Chat Deletion": "Permitir Exclusão de Chats",
 	"Allow Chat Deletion": "Permitir Exclusão de Chats",
 	"Allow Chat Edit": "Permitir Edição de Chats",
 	"Allow Chat Edit": "Permitir Edição de Chats",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "Falha ao atualizar as configurações",
 	"Failed to update settings": "Falha ao atualizar as configurações",
 	"Failed to upload file.": "Falha ao carregar o arquivo.",
 	"Failed to upload file.": "Falha ao carregar o arquivo.",
+	"Features Permissions": "",
 	"February": "Fevereiro",
 	"February": "Fevereiro",
 	"Feedback History": "Histórico de comentários",
 	"Feedback History": "Histórico de comentários",
 	"Feedbacks": "Comentários",
 	"Feedbacks": "Comentários",
@@ -490,10 +492,15 @@
 	"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": "Desperte a curiosidade",
 	"Ignite curiosity": "Desperte a curiosidade",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"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 Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Configurações de Imagem",
 	"Image Settings": "Configurações de Imagem",
 	"Images": "Imagens",
 	"Images": "Imagens",
 	"Import Chats": "Importar Chats",
 	"Import Chats": "Importar Chats",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED Escuro",
 	"OLED Dark": "OLED Escuro",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "API Ollama",
 	"Ollama API": "API Ollama",
-	"Ollama API disabled": "API Ollama desativada",
 	"Ollama API settings updated": "Configurações da API Ollama atualizadas",
 	"Ollama API settings updated": "Configurações da API Ollama atualizadas",
 	"Ollama Version": "Versão Ollama",
 	"Ollama Version": "Versão Ollama",
 	"On": "Ligado",
 	"On": "Ligado",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Definir Agendador",
 	"Set Scheduler": "Definir Agendador",
 	"Set Steps": "Definir Etapas",
 	"Set Steps": "Definir Etapas",
 	"Set Task Model": "Definir Modelo de Tarefa",
 	"Set Task Model": "Definir Modelo de Tarefa",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "Defina o número de dispositivos GPU usados para computação. Esta opção controla quantos dispositivos GPU (se disponíveis) são usados para processar as solicitações recebidas. Aumentar esse valor pode melhorar significativamente o desempenho para modelos otimizados para aceleração de GPU, mas também pode consumir mais energia e recursos da GPU.",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Defina o número de threads de trabalho usadas para computação. Esta opção controla quantos threads são usados para processar as solicitações recebidas de forma simultânea. Aumentar esse valor pode melhorar o desempenho em cargas de trabalho de alta concorrência, mas também pode consumir mais recursos da CPU.",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Defina o número de threads de trabalho usadas para computação. Esta opção controla quantos threads são usados para processar as solicitações recebidas de forma simultânea. Aumentar esse valor pode melhorar o desempenho em cargas de trabalho de alta concorrência, mas também pode consumir mais recursos da CPU.",
 	"Set Voice": "Definir Voz",
 	"Set Voice": "Definir Voz",
 	"Set whisper model": "Definir modelo Whisper",
 	"Set whisper model": "Definir modelo Whisper",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Você só pode conversar com no máximo {{maxCount}} arquivo(s) de cada vez.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Você só pode conversar com no máximo {{maxCount}} arquivo(s) de cada vez.",
 	"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 upload an empty file.": "Você não pode carregar um arquivo vazio.",
 	"You cannot upload an empty file.": "Você não pode carregar um arquivo vazio.",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "Você não tem permissão para fazer upload de arquivos.",
 	"You do not have permission to upload files.": "Você não tem permissão para fazer upload de arquivos.",
 	"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",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Params Avançados",
 	"Advanced Params": "Params Avançados",
 	"All Documents": "Todos os Documentos",
 	"All Documents": "Todos os Documentos",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Permitir Exclusão de Conversa",
 	"Allow Chat Deletion": "Permitir Exclusão de Conversa",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "Falha ao atualizar as definições",
 	"Failed to update settings": "Falha ao atualizar as definições",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "Fevereiro",
 	"February": "Fevereiro",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Geração de Imagens (Experimental)",
 	"Image Generation (Experimental)": "Geração de Imagens (Experimental)",
 	"Image Generation Engine": "Mecanismo de Geração de Imagens",
 	"Image Generation Engine": "Mecanismo de Geração de Imagens",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Configurações da Imagem",
 	"Image Settings": "Configurações da Imagem",
 	"Images": "Imagens",
 	"Images": "Imagens",
 	"Import Chats": "Importar Conversas",
 	"Import Chats": "Importar Conversas",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED Escuro",
 	"OLED Dark": "OLED Escuro",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "API do Ollama desativada",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Versão do Ollama",
 	"Ollama Version": "Versão do Ollama",
 	"On": "Ligado",
 	"On": "Ligado",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "Definir Etapas",
 	"Set Steps": "Definir Etapas",
 	"Set Task Model": "Definir modelo de tarefa",
 	"Set Task Model": "Definir modelo de tarefa",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Definir Voz",
 	"Set Voice": "Definir Voz",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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 as suas interações com LLMs adicionando memórias através do botão ‘Gerir’ abaixo, tornando-as mais úteis e personalizadas para 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 as suas interações com LLMs adicionando memórias através do botão ‘Gerir’ abaixo, tornando-as mais úteis e personalizadas para você.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"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ê partilhou esta conversa",
 	"You have shared this chat": "Você partilhou esta conversa",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Parametri Avansați",
 	"Advanced Params": "Parametri Avansați",
 	"All Documents": "Toate Documentele",
 	"All Documents": "Toate Documentele",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Permite Ștergerea Conversațiilor",
 	"Allow Chat Deletion": "Permite Ștergerea Conversațiilor",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "Actualizarea setărilor a eșuat",
 	"Failed to update settings": "Actualizarea setărilor a eșuat",
 	"Failed to upload file.": "Încărcarea fișierului a eșuat.",
 	"Failed to upload file.": "Încărcarea fișierului a eșuat.",
+	"Features Permissions": "",
 	"February": "Februarie",
 	"February": "Februarie",
 	"Feedback History": "Istoricul feedback-ului",
 	"Feedback History": "Istoricul feedback-ului",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "Recunosc că am citit și înțeleg implicațiile acțiunii mele. Sunt conștient de riscurile asociate cu executarea codului arbitrar și am verificat fiabilitatea sursei.",
 	"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.": "Recunosc că am citit și înțeleg implicațiile acțiunii mele. Sunt conștient de riscurile asociate cu executarea codului arbitrar și am verificat fiabilitatea sursei.",
 	"ID": "ID",
 	"ID": "ID",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Generare Imagine (Experimental)",
 	"Image Generation (Experimental)": "Generare Imagine (Experimental)",
 	"Image Generation Engine": "Motor de Generare a Imaginilor",
 	"Image Generation Engine": "Motor de Generare a Imaginilor",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Setări Imagine",
 	"Image Settings": "Setări Imagine",
 	"Images": "Imagini",
 	"Images": "Imagini",
 	"Import Chats": "Importă Conversațiile",
 	"Import Chats": "Importă Conversațiile",
@@ -652,7 +659,6 @@
 	"OLED Dark": "Întunecat OLED",
 	"OLED Dark": "Întunecat OLED",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "API Ollama",
 	"Ollama API": "API Ollama",
-	"Ollama API disabled": "API Ollama dezactivat",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Versiune Ollama",
 	"Ollama Version": "Versiune Ollama",
 	"On": "Activat",
 	"On": "Activat",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Setare Programatorului de Sarcini",
 	"Set Scheduler": "Setare Programatorului de Sarcini",
 	"Set Steps": "Setează Pași",
 	"Set Steps": "Setează Pași",
 	"Set Task Model": "Setează Model de Sarcină",
 	"Set Task Model": "Setează Model de Sarcină",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Setează Voce",
 	"Set Voice": "Setează Voce",
 	"Set whisper model": "Setează modelul whisper",
 	"Set whisper model": "Setează modelul whisper",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Puteți discuta cu un număr maxim de {{maxCount}} fișier(e) simultan.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Puteți discuta cu un număr maxim de {{maxCount}} fișier(e) simultan.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Puteți personaliza interacțiunile dvs. cu LLM-urile adăugând amintiri prin butonul 'Gestionează' de mai jos, făcându-le mai utile și adaptate la dvs.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Puteți personaliza interacțiunile dvs. cu LLM-urile adăugând amintiri prin butonul 'Gestionează' de mai jos, făcându-le mai utile și adaptate la dvs.",
 	"You cannot upload an empty file.": "Nu poți încărca un fișier gol.",
 	"You cannot upload an empty file.": "Nu poți încărca un fișier gol.",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Nu aveți conversații arhivate.",
 	"You have no archived conversations.": "Nu aveți conversații arhivate.",
 	"You have shared this chat": "Ați partajat această conversație",
 	"You have shared this chat": "Ați partajat această conversație",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Расширенные параметры",
 	"Advanced Params": "Расширенные параметры",
 	"All Documents": "Все документы",
 	"All Documents": "Все документы",
 	"All models deleted successfully": "Все модели успешно удалены",
 	"All models deleted successfully": "Все модели успешно удалены",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "Разрешить удаление чата",
 	"Allow Chat Delete": "Разрешить удаление чата",
 	"Allow Chat Deletion": "Разрешить удаление чата",
 	"Allow Chat Deletion": "Разрешить удаление чата",
 	"Allow Chat Edit": "Разрешить редактирование чата",
 	"Allow Chat Edit": "Разрешить редактирование чата",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "Не удалось обновить настройки",
 	"Failed to update settings": "Не удалось обновить настройки",
 	"Failed to upload file.": "Не удалось загрузить файл.",
 	"Failed to upload file.": "Не удалось загрузить файл.",
+	"Features Permissions": "",
 	"February": "Февраль",
 	"February": "Февраль",
 	"Feedback History": "История отзывов",
 	"Feedback History": "История отзывов",
 	"Feedbacks": "Отзывы",
 	"Feedbacks": "Отзывы",
@@ -490,10 +492,15 @@
 	"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.": "Я подтверждаю, что прочитал и осознаю последствия своих действий. Я осознаю риски, связанные с выполнением произвольного кода, и я проверил достоверность источника.",
 	"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.": "Я подтверждаю, что прочитал и осознаю последствия своих действий. Я осознаю риски, связанные с выполнением произвольного кода, и я проверил достоверность источника.",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "Разожгите любопытство",
 	"Ignite curiosity": "Разожгите любопытство",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Генерация изображений (Экспериментально)",
 	"Image Generation (Experimental)": "Генерация изображений (Экспериментально)",
 	"Image Generation Engine": "Механизм генерации изображений",
 	"Image Generation Engine": "Механизм генерации изображений",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Настройки изображения",
 	"Image Settings": "Настройки изображения",
 	"Images": "Изображения",
 	"Images": "Изображения",
 	"Import Chats": "Импортировать Чаты",
 	"Import Chats": "Импортировать Чаты",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED темная",
 	"OLED Dark": "OLED темная",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API отключен",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Версия Ollama",
 	"Ollama Version": "Версия Ollama",
 	"On": "Включено",
 	"On": "Включено",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Установить планировщик",
 	"Set Scheduler": "Установить планировщик",
 	"Set Steps": "Установить шаги",
 	"Set Steps": "Установить шаги",
 	"Set Task Model": "Установить модель задачи",
 	"Set Task Model": "Установить модель задачи",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Установить голос",
 	"Set Voice": "Установить голос",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Одновременно вы можете общаться только с максимальным количеством файлов {{maxCount}}.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Одновременно вы можете общаться только с максимальным количеством файлов {{maxCount}}.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Вы можете персонализировать свое взаимодействие с LLMs, добавив воспоминания с помощью кнопки \"Управлять\" ниже, что сделает их более полезными и адаптированными для вас.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Вы можете персонализировать свое взаимодействие с LLMs, добавив воспоминания с помощью кнопки \"Управлять\" ниже, что сделает их более полезными и адаптированными для вас.",
 	"You cannot upload an empty file.": "Вы не можете загрузить пустой файл.",
 	"You cannot upload an empty file.": "Вы не можете загрузить пустой файл.",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "У вас нет разрешения на загрузку файлов.",
 	"You do not have permission to upload files.": "У вас нет разрешения на загрузку файлов.",
 	"You have no archived conversations.": "У вас нет архивированных бесед.",
 	"You have no archived conversations.": "У вас нет архивированных бесед.",
 	"You have shared this chat": "Вы поделились этим чатом",
 	"You have shared this chat": "Вы поделились этим чатом",

+ 9 - 2
src/lib/i18n/locales/sk-SK/translation.json

@@ -51,6 +51,7 @@
 	"Advanced Params": "Pokročilé parametre",
 	"Advanced Params": "Pokročilé parametre",
 	"All Documents": "Všetky dokumenty",
 	"All Documents": "Všetky dokumenty",
 	"All models deleted successfully": "Všetky modely úspešne odstránené",
 	"All models deleted successfully": "Všetky modely úspešne odstránené",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "Povoliť odstránenie chatu",
 	"Allow Chat Delete": "Povoliť odstránenie chatu",
 	"Allow Chat Deletion": "Povoliť odstránenie chatu",
 	"Allow Chat Deletion": "Povoliť odstránenie chatu",
 	"Allow Chat Edit": "Povoliť úpravu chatu",
 	"Allow Chat Edit": "Povoliť úpravu chatu",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "Nepodarilo sa aktualizovať nastavenia",
 	"Failed to update settings": "Nepodarilo sa aktualizovať nastavenia",
 	"Failed to upload file.": "Nepodarilo sa nahrať súbor.",
 	"Failed to upload file.": "Nepodarilo sa nahrať súbor.",
+	"Features Permissions": "",
 	"February": "Február",
 	"February": "Február",
 	"Feedback History": "História spätnej väzby",
 	"Feedback History": "História spätnej väzby",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "Beriem na vedomie, že som si prečítal a chápem dôsledky svojich činov. Som si vedomý rizík spojených s vykonávaním ľubovoľného kódu a overil som dôveryhodnosť zdroja.",
 	"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.": "Beriem na vedomie, že som si prečítal a chápem dôsledky svojich činov. Som si vedomý rizík spojených s vykonávaním ľubovoľného kódu a overil som dôveryhodnosť zdroja.",
 	"ID": "ID",
 	"ID": "ID",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Generovanie obrázkov (experimentálne)",
 	"Image Generation (Experimental)": "Generovanie obrázkov (experimentálne)",
 	"Image Generation Engine": "Engine na generovanie obrázkov",
 	"Image Generation Engine": "Engine na generovanie obrázkov",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Nastavenia obrázka",
 	"Image Settings": "Nastavenia obrázka",
 	"Images": "Obrázky",
 	"Images": "Obrázky",
 	"Import Chats": "Importovať konverzácie",
 	"Import Chats": "Importovať konverzácie",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED Dark",
 	"OLED Dark": "OLED Dark",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "API rozhranie Ollama je zakázané.",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Verzia Ollama",
 	"Ollama Version": "Verzia Ollama",
 	"On": "Zapnuté",
 	"On": "Zapnuté",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Nastavenie plánovača",
 	"Set Scheduler": "Nastavenie plánovača",
 	"Set Steps": "Nastavenie krokov",
 	"Set Steps": "Nastavenie krokov",
 	"Set Task Model": "Nastaviť model úlohy",
 	"Set Task Model": "Nastaviť model úlohy",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Nastaviť hlas",
 	"Set Voice": "Nastaviť hlas",
 	"Set whisper model": "Nastaviť model whisper",
 	"Set whisper model": "Nastaviť model whisper",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Môžete komunikovať len s maximálne {{maxCount}} súbor(ami) naraz.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Môžete komunikovať len s maximálne {{maxCount}} súbor(ami) naraz.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Môžete personalizovať svoje interakcie s LLM pridaním spomienok prostredníctvom tlačidla 'Spravovať' nižšie, čo ich urobí pre vás užitočnejšími a lepšie prispôsobenými.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Môžete personalizovať svoje interakcie s LLM pridaním spomienok prostredníctvom tlačidla 'Spravovať' nižšie, čo ich urobí pre vás užitočnejšími a lepšie prispôsobenými.",
 	"You cannot upload an empty file.": "Nemôžete nahrať prázdny súbor.",
 	"You cannot upload an empty file.": "Nemôžete nahrať prázdny súbor.",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Nemáte žiadne archivované konverzácie.",
 	"You have no archived conversations.": "Nemáte žiadne archivované konverzácie.",
 	"You have shared this chat": "Zdieľali ste tento chat.",
 	"You have shared this chat": "Zdieľali ste tento chat.",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Напредни парамови",
 	"Advanced Params": "Напредни парамови",
 	"All Documents": "Сви документи",
 	"All Documents": "Сви документи",
 	"All models deleted successfully": "Сви модели су успешно обрисани",
 	"All models deleted successfully": "Сви модели су успешно обрисани",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "Дозволи брисање ћаскања",
 	"Allow Chat Delete": "Дозволи брисање ћаскања",
 	"Allow Chat Deletion": "Дозволи брисање ћаскања",
 	"Allow Chat Deletion": "Дозволи брисање ћаскања",
 	"Allow Chat Edit": "Дозволи измену ћаскања",
 	"Allow Chat Edit": "Дозволи измену ћаскања",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "Фебруар",
 	"February": "Фебруар",
 	"Feedback History": "Историјат повратних података",
 	"Feedback History": "Историјат повратних података",
 	"Feedbacks": "Повратни подаци",
 	"Feedbacks": "Повратни подаци",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Стварање слика (експериментално)",
 	"Image Generation (Experimental)": "Стварање слика (експериментално)",
 	"Image Generation Engine": "Мотор за стварање слика",
 	"Image Generation Engine": "Мотор за стварање слика",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Подешавања слике",
 	"Image Settings": "Подешавања слике",
 	"Images": "Слике",
 	"Images": "Слике",
 	"Import Chats": "Увези ћаскања",
 	"Import Chats": "Увези ћаскања",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED тамна",
 	"OLED Dark": "OLED тамна",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Оллама АПИ",
 	"Ollama API": "Оллама АПИ",
-	"Ollama API disabled": "Оллама АПИ онемогућен",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Издање Ollama-е",
 	"Ollama Version": "Издање Ollama-е",
 	"On": "Укључено",
 	"On": "Укључено",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "Подеси кораке",
 	"Set Steps": "Подеси кораке",
 	"Set Task Model": "Постављање модела задатка",
 	"Set Task Model": "Постављање модела задатка",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Подеси глас",
 	"Set Voice": "Подеси глас",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Немате архивиране разговоре.",
 	"You have no archived conversations.": "Немате архивиране разговоре.",
 	"You have shared this chat": "Поделили сте ово ћаскање",
 	"You have shared this chat": "Поделили сте ово ћаскање",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Avancerade parametrar",
 	"Advanced Params": "Avancerade parametrar",
 	"All Documents": "Alla dokument",
 	"All Documents": "Alla dokument",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Tillåt chattborttagning",
 	"Allow Chat Deletion": "Tillåt chattborttagning",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "Misslyckades med att uppdatera inställningarna",
 	"Failed to update settings": "Misslyckades med att uppdatera inställningarna",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "februari",
 	"February": "februari",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Bildgenerering (experimentell)",
 	"Image Generation (Experimental)": "Bildgenerering (experimentell)",
 	"Image Generation Engine": "Bildgenereringsmotor",
 	"Image Generation Engine": "Bildgenereringsmotor",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Bildinställningar",
 	"Image Settings": "Bildinställningar",
 	"Images": "Bilder",
 	"Images": "Bilder",
 	"Import Chats": "Importera chattar",
 	"Import Chats": "Importera chattar",
@@ -652,7 +659,6 @@
 	"OLED Dark": "Mörk (OLED)",
 	"OLED Dark": "Mörk (OLED)",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API inaktiverat",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Ollama-version",
 	"Ollama Version": "Ollama-version",
 	"On": "På",
 	"On": "På",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "Ange steg",
 	"Set Steps": "Ange steg",
 	"Set Task Model": "Ange uppgiftsmodell",
 	"Set Task Model": "Ange uppgiftsmodell",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Ange röst",
 	"Set Voice": "Ange röst",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "Du kan anpassa dina interaktioner med stora språkmodeller genom att lägga till minnen via knappen 'Hantera' nedan, så att de blir mer användbara och skräddarsydda för dig.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan anpassa dina interaktioner med stora språkmodeller genom att lägga till minnen via knappen 'Hantera' nedan, så att de blir mer användbara och skräddarsydda för dig.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Du har inga arkiverade samtal.",
 	"You have no archived conversations.": "Du har inga arkiverade samtal.",
 	"You have shared this chat": "Du har delat denna chatt",
 	"You have shared this chat": "Du har delat denna chatt",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "พารามิเตอร์ขั้นสูง",
 	"Advanced Params": "พารามิเตอร์ขั้นสูง",
 	"All Documents": "เอกสารทั้งหมด",
 	"All Documents": "เอกสารทั้งหมด",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "อนุญาตการลบการสนทนา",
 	"Allow Chat Deletion": "อนุญาตการลบการสนทนา",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "อัปเดตการตั้งค่าล้มเหลว",
 	"Failed to update settings": "อัปเดตการตั้งค่าล้มเหลว",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "กุมภาพันธ์",
 	"February": "กุมภาพันธ์",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "ฉันรับทราบว่าฉันได้อ่านและเข้าใจผลกระทบของการกระทำของฉัน ฉันทราบถึงความเสี่ยงที่เกี่ยวข้องกับการเรียกใช้โค้ดโดยพลการและฉันได้ตรวจสอบความน่าเชื่อถือของแหล่งที่มาแล้ว",
 	"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.": "ฉันรับทราบว่าฉันได้อ่านและเข้าใจผลกระทบของการกระทำของฉัน ฉันทราบถึงความเสี่ยงที่เกี่ยวข้องกับการเรียกใช้โค้ดโดยพลการและฉันได้ตรวจสอบความน่าเชื่อถือของแหล่งที่มาแล้ว",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "การสร้างภาพ (การทดลอง)",
 	"Image Generation (Experimental)": "การสร้างภาพ (การทดลอง)",
 	"Image Generation Engine": "เครื่องยนต์การสร้างภาพ",
 	"Image Generation Engine": "เครื่องยนต์การสร้างภาพ",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "การตั้งค่าภาพ",
 	"Image Settings": "การตั้งค่าภาพ",
 	"Images": "ภาพ",
 	"Images": "ภาพ",
 	"Import Chats": "นำเข้าการสนทนา",
 	"Import Chats": "นำเข้าการสนทนา",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED โหมดมื",
 	"OLED Dark": "OLED โหมดมื",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "ปิด Ollama API",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "เวอร์ชั่น Ollama",
 	"Ollama Version": "เวอร์ชั่น Ollama",
 	"On": "เปิด",
 	"On": "เปิด",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "ตั้งค่าขั้นตอน",
 	"Set Steps": "ตั้งค่าขั้นตอน",
 	"Set Task Model": "ตั้งค่าโมเดลงาน",
 	"Set Task Model": "ตั้งค่าโมเดลงาน",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "ตั้งค่าเสียง",
 	"Set Voice": "ตั้งค่าเสียง",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "คุณสามารถปรับแต่งการโต้ตอบของคุณกับ LLMs โดยเพิ่มความทรงจำผ่านปุ่ม 'จัดการ' ด้านล่าง ทำให้มันมีประโยชน์และเหมาะกับคุณมากขึ้น",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "คุณสามารถปรับแต่งการโต้ตอบของคุณกับ LLMs โดยเพิ่มความทรงจำผ่านปุ่ม 'จัดการ' ด้านล่าง ทำให้มันมีประโยชน์และเหมาะกับคุณมากขึ้น",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "คุณไม่มีการสนทนาที่เก็บถาวร",
 	"You have no archived conversations.": "คุณไม่มีการสนทนาที่เก็บถาวร",
 	"You have shared this chat": "คุณได้แชร์แชทนี้แล้ว",
 	"You have shared this chat": "คุณได้แชร์แชทนี้แล้ว",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "",
 	"Advanced Params": "",
 	"All Documents": "",
 	"All Documents": "",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "",
 	"Allow Chat Deletion": "",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "",
 	"February": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "",
 	"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.": "",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "",
 	"Image Generation (Experimental)": "",
 	"Image Generation Engine": "",
 	"Image Generation Engine": "",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "",
 	"Image Settings": "",
 	"Images": "",
 	"Images": "",
 	"Import Chats": "",
 	"Import Chats": "",
@@ -652,7 +659,6 @@
 	"OLED Dark": "",
 	"OLED Dark": "",
 	"Ollama": "",
 	"Ollama": "",
 	"Ollama API": "",
 	"Ollama API": "",
-	"Ollama API disabled": "",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "",
 	"Ollama Version": "",
 	"On": "",
 	"On": "",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "",
 	"Set Steps": "",
 	"Set Task Model": "",
 	"Set Task Model": "",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "",
 	"Set Voice": "",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "",
 	"You have no archived conversations.": "",
 	"You have shared this chat": "",
 	"You have shared this chat": "",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Gelişmiş Parametreler",
 	"Advanced Params": "Gelişmiş Parametreler",
 	"All Documents": "Tüm Belgeler",
 	"All Documents": "Tüm Belgeler",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Sohbet Silmeye İzin Ver",
 	"Allow Chat Deletion": "Sohbet Silmeye İzin Ver",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "Ayarlar güncellenemedi",
 	"Failed to update settings": "Ayarlar güncellenemedi",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "Şubat",
 	"February": "Şubat",
 	"Feedback History": "Geri Bildirim Geçmişi",
 	"Feedback History": "Geri Bildirim Geçmişi",
 	"Feedbacks": "Geri Bildirimler",
 	"Feedbacks": "Geri Bildirimler",
@@ -490,10 +492,15 @@
 	"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.": "Eylemimin sonuçlarını okuduğumu ve anladığımı kabul ediyorum. Rastgele kod çalıştırmayla ilgili risklerin farkındayım ve kaynağın güvenilirliğini doğruladım.",
 	"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.": "Eylemimin sonuçlarını okuduğumu ve anladığımı kabul ediyorum. Rastgele kod çalıştırmayla ilgili risklerin farkındayım ve kaynağın güvenilirliğini doğruladım.",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "Merak uyandırın",
 	"Ignite curiosity": "Merak uyandırın",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Görüntü Oluşturma (Deneysel)",
 	"Image Generation (Experimental)": "Görüntü Oluşturma (Deneysel)",
 	"Image Generation Engine": "Görüntü Oluşturma Motoru",
 	"Image Generation Engine": "Görüntü Oluşturma Motoru",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Görüntü Ayarları",
 	"Image Settings": "Görüntü Ayarları",
 	"Images": "Görüntüler",
 	"Images": "Görüntüler",
 	"Import Chats": "Sohbetleri İçe Aktar",
 	"Import Chats": "Sohbetleri İçe Aktar",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED Koyu",
 	"OLED Dark": "OLED Koyu",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API'si devre dışı",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Ollama Sürümü",
 	"Ollama Version": "Ollama Sürümü",
 	"On": "Açık",
 	"On": "Açık",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Zamanlayıcıyı Ayarla",
 	"Set Scheduler": "Zamanlayıcıyı Ayarla",
 	"Set Steps": "Adımları Ayarla",
 	"Set Steps": "Adımları Ayarla",
 	"Set Task Model": "Görev Modeli Ayarla",
 	"Set Task Model": "Görev Modeli Ayarla",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Ses Ayarla",
 	"Set Voice": "Ses Ayarla",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Aynı anda en fazla {{maxCount}} dosya ile sohbet edebilirsiniz.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Aynı anda en fazla {{maxCount}} dosya ile sohbet edebilirsiniz.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Aşağıdaki 'Yönet' düğmesi aracılığıyla bellekler ekleyerek LLM'lerle etkileşimlerinizi kişiselleştirebilir, onları daha yararlı ve size özel hale getirebilirsiniz.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Aşağıdaki 'Yönet' düğmesi aracılığıyla bellekler ekleyerek LLM'lerle etkileşimlerinizi kişiselleştirebilir, onları daha yararlı ve size özel hale getirebilirsiniz.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Arşivlenmiş sohbetleriniz yok.",
 	"You have no archived conversations.": "Arşivlenmiş sohbetleriniz yok.",
 	"You have shared this chat": "Bu sohbeti paylaştınız",
 	"You have shared this chat": "Bu sohbeti paylaştınız",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Розширені параметри",
 	"Advanced Params": "Розширені параметри",
 	"All Documents": "Усі документи",
 	"All Documents": "Усі документи",
 	"All models deleted successfully": "Всі моделі видалені успішно",
 	"All models deleted successfully": "Всі моделі видалені успішно",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "Дозволити видалення чату",
 	"Allow Chat Delete": "Дозволити видалення чату",
 	"Allow Chat Deletion": "Дозволити видалення чату",
 	"Allow Chat Deletion": "Дозволити видалення чату",
 	"Allow Chat Edit": "Дозволити редагування чату",
 	"Allow Chat Edit": "Дозволити редагування чату",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "Не вдалося зберегти конфігурацію моделей",
 	"Failed to save models configuration": "Не вдалося зберегти конфігурацію моделей",
 	"Failed to update settings": "Не вдалося оновити налаштування",
 	"Failed to update settings": "Не вдалося оновити налаштування",
 	"Failed to upload file.": "Не вдалося завантажити файл.",
 	"Failed to upload file.": "Не вдалося завантажити файл.",
+	"Features Permissions": "",
 	"February": "Лютий",
 	"February": "Лютий",
 	"Feedback History": "Історія відгуків",
 	"Feedback History": "Історія відгуків",
 	"Feedbacks": "Відгуки",
 	"Feedbacks": "Відгуки",
@@ -490,10 +492,15 @@
 	"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.": "Я підтверджую, що прочитав і розумію наслідки своїх дій. Я усвідомлюю ризики, пов'язані з виконанням довільного коду, і перевірив надійність джерела.",
 	"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.": "Я підтверджую, що прочитав і розумію наслідки своїх дій. Я усвідомлюю ризики, пов'язані з виконанням довільного коду, і перевірив надійність джерела.",
 	"ID": "ID",
 	"ID": "ID",
 	"Ignite curiosity": "Запаліть цікавість",
 	"Ignite curiosity": "Запаліть цікавість",
+	"Image": "",
 	"Image Compression": "Стиснення зображень",
 	"Image Compression": "Стиснення зображень",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Генерування зображень (експериментально)",
 	"Image Generation (Experimental)": "Генерування зображень (експериментально)",
 	"Image Generation Engine": "Механізм генерації зображень",
 	"Image Generation Engine": "Механізм генерації зображень",
 	"Image Max Compression Size": "Максимальний розмір стиснення зображення",
 	"Image Max Compression Size": "Максимальний розмір стиснення зображення",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Налаштування зображення",
 	"Image Settings": "Налаштування зображення",
 	"Images": "Зображення",
 	"Images": "Зображення",
 	"Import Chats": "Імпорт чатів",
 	"Import Chats": "Імпорт чатів",
@@ -652,7 +659,6 @@
 	"OLED Dark": "Темний OLED",
 	"OLED Dark": "Темний OLED",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API вимкнено",
 	"Ollama API settings updated": "Налаштування Ollama API оновлено",
 	"Ollama API settings updated": "Налаштування Ollama API оновлено",
 	"Ollama Version": "Версія Ollama",
 	"Ollama Version": "Версія Ollama",
 	"On": "Увімк",
 	"On": "Увімк",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "Встановити планувальник",
 	"Set Scheduler": "Встановити планувальник",
 	"Set Steps": "Встановити кроки",
 	"Set Steps": "Встановити кроки",
 	"Set Task Model": "Встановити модель задач",
 	"Set Task Model": "Встановити модель задач",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "Встановити кількість пристроїв GPU, що використовується для обробки інформації. Ця опція керує кількістю пристроїв GPU (якщо доступні), які використовуються для обробки надходження запитів. Збільшення цього значення може суттєво підвищити продуктивність моделей, оптимізованих за допомогою апаратного прискорення GPU, але також може споживати більше енергії та ресурсів GPU.",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Встановити кількість робочих потоків, що використовуються для обробки інформації. Ця опція керує кількістю потоків, що використовуються для обробки надходження запитів одночасно. Збільшення цього значення може підвищити продуктивність при великій одночасності робіт, але також може споживати більше ресурсів CPU.",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Встановити кількість робочих потоків, що використовуються для обробки інформації. Ця опція керує кількістю потоків, що використовуються для обробки надходження запитів одночасно. Збільшення цього значення може підвищити продуктивність при великій одночасності робіт, але також може споживати більше ресурсів CPU.",
 	"Set Voice": "Встановити голос",
 	"Set Voice": "Встановити голос",
 	"Set whisper model": "Встановити модель whisper",
 	"Set whisper model": "Встановити модель whisper",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Ви можете спілкуватися лише з максимальною кількістю {{maxCount}} файлів одночасно.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Ви можете спілкуватися лише з максимальною кількістю {{maxCount}} файлів одночасно.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Ви можете налаштувати ваші взаємодії з мовними моделями, додавши спогади через кнопку 'Керувати' внизу, що зробить їх більш корисними та персоналізованими для вас.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Ви можете налаштувати ваші взаємодії з мовними моделями, додавши спогади через кнопку 'Керувати' внизу, що зробить їх більш корисними та персоналізованими для вас.",
 	"You cannot upload an empty file.": "Ви не можете завантажити порожній файл.",
 	"You cannot upload an empty file.": "Ви не можете завантажити порожній файл.",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "У вас немає дозволу завантажувати файли.",
 	"You do not have permission to upload files.": "У вас немає дозволу завантажувати файли.",
 	"You have no archived conversations.": "У вас немає архівованих розмов.",
 	"You have no archived conversations.": "У вас немає архівованих розмов.",
 	"You have shared this chat": "Ви поділилися цим чатом",
 	"You have shared this chat": "Ви поділилися цим чатом",

+ 9 - 2
src/lib/i18n/locales/ur-PK/translation.json

@@ -51,6 +51,7 @@
 	"Advanced Params": "ترقی یافتہ پیرامیٹرز",
 	"Advanced Params": "ترقی یافتہ پیرامیٹرز",
 	"All Documents": "تمام دستاویزات",
 	"All Documents": "تمام دستاویزات",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "چیٹ کو حذف کرنے کی اجازت دیں",
 	"Allow Chat Deletion": "چیٹ کو حذف کرنے کی اجازت دیں",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "ترتیبات کی تازہ کاری ناکام رہی",
 	"Failed to update settings": "ترتیبات کی تازہ کاری ناکام رہی",
 	"Failed to upload file.": "فائل اپلوڈ کرنے میں ناکامی ہوئی",
 	"Failed to upload file.": "فائل اپلوڈ کرنے میں ناکامی ہوئی",
+	"Features Permissions": "",
 	"February": "فروری",
 	"February": "فروری",
 	"Feedback History": "تاریخ رائے",
 	"Feedback History": "تاریخ رائے",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "میں اقرار کرتا ہوں کہ میں نے پڑھ لیا ہے اور میں اپنی کارروائی کے مضمرات سمجھتا ہوں میں اس بات سے واقف ہوں کہ بلاوجہ کوڈ چلانے کے ساتھ منسلک خطرات ہوتے ہیں اور میں نے ماخذ کی اعتمادیت کی تصدیق کی ہے",
 	"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.": "میں اقرار کرتا ہوں کہ میں نے پڑھ لیا ہے اور میں اپنی کارروائی کے مضمرات سمجھتا ہوں میں اس بات سے واقف ہوں کہ بلاوجہ کوڈ چلانے کے ساتھ منسلک خطرات ہوتے ہیں اور میں نے ماخذ کی اعتمادیت کی تصدیق کی ہے",
 	"ID": "شناخت",
 	"ID": "شناخت",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "تصویر کی تخلیق (تجرباتی)",
 	"Image Generation (Experimental)": "تصویر کی تخلیق (تجرباتی)",
 	"Image Generation Engine": "امیج جنریشن انجن",
 	"Image Generation Engine": "امیج جنریشن انجن",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "تصویری ترتیبات",
 	"Image Settings": "تصویری ترتیبات",
 	"Images": "تصاویر",
 	"Images": "تصاویر",
 	"Import Chats": "چیٹس درآمد کریں",
 	"Import Chats": "چیٹس درآمد کریں",
@@ -652,7 +659,6 @@
 	"OLED Dark": "او ایل ای ڈی ڈارک",
 	"OLED Dark": "او ایل ای ڈی ڈارک",
 	"Ollama": "اولامہ",
 	"Ollama": "اولامہ",
 	"Ollama API": "اولامہ API",
 	"Ollama API": "اولامہ API",
-	"Ollama API disabled": "اولامہ ایپلیکیشن پروگرام انٹرفیس غیر فعال کر دیا گیا ہے",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "اولاما ورژن",
 	"Ollama Version": "اولاما ورژن",
 	"On": "چالو",
 	"On": "چالو",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "شیڈیولر مقرر کریں",
 	"Set Scheduler": "شیڈیولر مقرر کریں",
 	"Set Steps": "قدم طے کریں",
 	"Set Steps": "قدم طے کریں",
 	"Set Task Model": "ٹاسک ماڈل مرتب کریں",
 	"Set Task Model": "ٹاسک ماڈل مرتب کریں",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "آواز کے لئے سیٹ کریں",
 	"Set Voice": "آواز کے لئے سیٹ کریں",
 	"Set whisper model": "وِسپر ماڈل مرتب کریں",
 	"Set whisper model": "وِسپر ماڈل مرتب کریں",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "آپ ایک وقت میں زیادہ سے زیادہ {{maxCount}} فائل(وں) کے ساتھ صرف چیٹ کر سکتے ہیں",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "آپ ایک وقت میں زیادہ سے زیادہ {{maxCount}} فائل(وں) کے ساتھ صرف چیٹ کر سکتے ہیں",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "آپ نیچے موجود 'Manage' بٹن کے ذریعے LLMs کے ساتھ اپنی بات چیت کو یادداشتیں شامل کرکے ذاتی بنا سکتے ہیں، جو انہیں آپ کے لیے زیادہ مددگار اور آپ کے متعلق بنائے گی",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "آپ نیچے موجود 'Manage' بٹن کے ذریعے LLMs کے ساتھ اپنی بات چیت کو یادداشتیں شامل کرکے ذاتی بنا سکتے ہیں، جو انہیں آپ کے لیے زیادہ مددگار اور آپ کے متعلق بنائے گی",
 	"You cannot upload an empty file.": "آپ خالی فائل اپلوڈ نہیں کر سکتے",
 	"You cannot upload an empty file.": "آپ خالی فائل اپلوڈ نہیں کر سکتے",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "آپ کے پاس کوئی محفوظ شدہ مکالمات نہیں ہیں",
 	"You have no archived conversations.": "آپ کے پاس کوئی محفوظ شدہ مکالمات نہیں ہیں",
 	"You have shared this chat": "آپ نے یہ چیٹ شیئر کی ہے",
 	"You have shared this chat": "آپ نے یہ چیٹ شیئر کی ہے",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "Các tham số Nâng cao",
 	"Advanced Params": "Các tham số Nâng cao",
 	"All Documents": "Tất cả tài liệu",
 	"All Documents": "Tất cả tài liệu",
 	"All models deleted successfully": "",
 	"All models deleted successfully": "",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Delete": "",
 	"Allow Chat Deletion": "Cho phép Xóa nội dung chat",
 	"Allow Chat Deletion": "Cho phép Xóa nội dung chat",
 	"Allow Chat Edit": "",
 	"Allow Chat Edit": "",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "",
 	"Failed to save models configuration": "",
 	"Failed to update settings": "Lỗi khi cập nhật các cài đặt",
 	"Failed to update settings": "Lỗi khi cập nhật các cài đặt",
 	"Failed to upload file.": "",
 	"Failed to upload file.": "",
+	"Features Permissions": "",
 	"February": "Tháng 2",
 	"February": "Tháng 2",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
@@ -490,10 +492,15 @@
 	"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.": "Tôi thừa nhận rằng tôi đã đọc và tôi hiểu ý nghĩa của hành động của mình. Tôi nhận thức được những rủi ro liên quan đến việc thực thi mã tùy ý và tôi đã xác minh độ tin cậy của nguồn.",
 	"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.": "Tôi thừa nhận rằng tôi đã đọc và tôi hiểu ý nghĩa của hành động của mình. Tôi nhận thức được những rủi ro liên quan đến việc thực thi mã tùy ý và tôi đã xác minh độ tin cậy của nguồn.",
 	"ID": "",
 	"ID": "",
 	"Ignite curiosity": "",
 	"Ignite curiosity": "",
+	"Image": "",
 	"Image Compression": "",
 	"Image Compression": "",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "Tạo ảnh (thử nghiệm)",
 	"Image Generation (Experimental)": "Tạo ảnh (thử nghiệm)",
 	"Image Generation Engine": "Công cụ tạo ảnh",
 	"Image Generation Engine": "Công cụ tạo ảnh",
 	"Image Max Compression Size": "",
 	"Image Max Compression Size": "",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "Cài đặt ảnh",
 	"Image Settings": "Cài đặt ảnh",
 	"Images": "Hình ảnh",
 	"Images": "Hình ảnh",
 	"Import Chats": "Nạp lại nội dung chat",
 	"Import Chats": "Nạp lại nội dung chat",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED Dark",
 	"OLED Dark": "OLED Dark",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "API Ollama bị vô hiệu hóa",
 	"Ollama API settings updated": "",
 	"Ollama API settings updated": "",
 	"Ollama Version": "Phiên bản Ollama",
 	"Ollama Version": "Phiên bản Ollama",
 	"On": "Bật",
 	"On": "Bật",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "",
 	"Set Scheduler": "",
 	"Set Steps": "Đặt Số Bước",
 	"Set Steps": "Đặt Số Bước",
 	"Set Task Model": "Đặt Mô hình Tác vụ",
 	"Set Task Model": "Đặt Mô hình Tác vụ",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Đặt Giọng nói",
 	"Set Voice": "Đặt Giọng nói",
 	"Set whisper model": "",
 	"Set whisper model": "",
@@ -1053,6 +1059,7 @@
 	"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.": "Bạn có thể cá nhân hóa các tương tác của mình với LLM bằng cách thêm bộ nhớ thông qua nút 'Quản lý' bên dưới, làm cho chúng hữu ích hơn và phù hợp với bạn hơn.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Bạn có thể cá nhân hóa các tương tác của mình với LLM bằng cách thêm bộ nhớ thông qua nút 'Quản lý' bên dưới, làm cho chúng hữu ích hơn và phù hợp với bạn hơn.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Bạn chưa lưu trữ một nội dung chat nào",
 	"You have no archived conversations.": "Bạn chưa lưu trữ một nội dung chat nào",
 	"You have shared this chat": "Bạn vừa chia sẻ chat này",
 	"You have shared this chat": "Bạn vừa chia sẻ chat này",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "高级参数",
 	"Advanced Params": "高级参数",
 	"All Documents": "所有文档",
 	"All Documents": "所有文档",
 	"All models deleted successfully": "所有模型删除成功",
 	"All models deleted successfully": "所有模型删除成功",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "允许删除对话记录",
 	"Allow Chat Delete": "允许删除对话记录",
 	"Allow Chat Deletion": "允许删除对话记录",
 	"Allow Chat Deletion": "允许删除对话记录",
 	"Allow Chat Edit": "允许编辑对话记录",
 	"Allow Chat Edit": "允许编辑对话记录",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "无法保存模型配置",
 	"Failed to save models configuration": "无法保存模型配置",
 	"Failed to update settings": "无法更新设置",
 	"Failed to update settings": "无法更新设置",
 	"Failed to upload file.": "上传文件失败",
 	"Failed to upload file.": "上传文件失败",
+	"Features Permissions": "",
 	"February": "二月",
 	"February": "二月",
 	"Feedback History": "反馈历史",
 	"Feedback History": "反馈历史",
 	"Feedbacks": "反馈",
 	"Feedbacks": "反馈",
@@ -490,10 +492,15 @@
 	"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.": "我已阅读并理解我的行为所带来的影响,明白执行任意代码所涉及的风险。且我已验证代码来源可信度。",
 	"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.": "我已阅读并理解我的行为所带来的影响,明白执行任意代码所涉及的风险。且我已验证代码来源可信度。",
 	"ID": "ID",
 	"ID": "ID",
 	"Ignite curiosity": "点燃好奇心",
 	"Ignite curiosity": "点燃好奇心",
+	"Image": "",
 	"Image Compression": "图像压缩",
 	"Image Compression": "图像压缩",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "图像生成(实验性)",
 	"Image Generation (Experimental)": "图像生成(实验性)",
 	"Image Generation Engine": "图像生成引擎",
 	"Image Generation Engine": "图像生成引擎",
 	"Image Max Compression Size": "图像最大压缩尺寸",
 	"Image Max Compression Size": "图像最大压缩尺寸",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "图像设置",
 	"Image Settings": "图像设置",
 	"Images": "图像",
 	"Images": "图像",
 	"Import Chats": "导入对话记录",
 	"Import Chats": "导入对话记录",
@@ -652,7 +659,6 @@
 	"OLED Dark": "黑色",
 	"OLED Dark": "黑色",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API 已禁用",
 	"Ollama API settings updated": "Ollama API设置已更新",
 	"Ollama API settings updated": "Ollama API设置已更新",
 	"Ollama Version": "Ollama 版本",
 	"Ollama Version": "Ollama 版本",
 	"On": "开启",
 	"On": "开启",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "设置 Scheduler",
 	"Set Scheduler": "设置 Scheduler",
 	"Set Steps": "设置步骤",
 	"Set Steps": "设置步骤",
 	"Set Task Model": "设置任务模型",
 	"Set Task Model": "设置任务模型",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "设置用于计算的 GPU 设备数量。该选项可控制用于处理传入请求的 GPU 设备(如有)的数量。对于针对 GPU 加速进行了优化的模型,增加该值可以显著提高性能,但也可能消耗更多的电能和 GPU 资源。",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "设置用于计算的工作线程数量。该选项可控制并发处理传入请求的线程数量。增加该值可以提高高并发工作负载下的性能,但也可能消耗更多的 CPU 资源。",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "设置用于计算的工作线程数量。该选项可控制并发处理传入请求的线程数量。增加该值可以提高高并发工作负载下的性能,但也可能消耗更多的 CPU 资源。",
 	"Set Voice": "设置音色",
 	"Set Voice": "设置音色",
 	"Set whisper model": "设置 whisper 模型",
 	"Set whisper model": "设置 whisper 模型",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "每次对话最多仅能附上 {{maxCount}} 个文件。",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "每次对话最多仅能附上 {{maxCount}} 个文件。",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "通过点击下方的“管理”按钮,你可以添加记忆,以个性化大语言模型的互动,使其更有用,更符合你的需求。",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "通过点击下方的“管理”按钮,你可以添加记忆,以个性化大语言模型的互动,使其更有用,更符合你的需求。",
 	"You cannot upload an empty file.": "请勿上传空文件。",
 	"You cannot upload an empty file.": "请勿上传空文件。",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "你没有上传文件的权限。",
 	"You do not have permission to upload files.": "你没有上传文件的权限。",
 	"You have no archived conversations.": "没有已归档的对话。",
 	"You have no archived conversations.": "没有已归档的对话。",
 	"You have shared this chat": "此对话已经分享过",
 	"You have shared this chat": "此对话已经分享过",

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

@@ -51,6 +51,7 @@
 	"Advanced Params": "進階參數",
 	"Advanced Params": "進階參數",
 	"All Documents": "所有文件",
 	"All Documents": "所有文件",
 	"All models deleted successfully": "成功刪除所有模型",
 	"All models deleted successfully": "成功刪除所有模型",
+	"Allow Chat Controls": "",
 	"Allow Chat Delete": "允許刪除對話",
 	"Allow Chat Delete": "允許刪除對話",
 	"Allow Chat Deletion": "允許刪除對話紀錄",
 	"Allow Chat Deletion": "允許刪除對話紀錄",
 	"Allow Chat Edit": "允許編輯對話",
 	"Allow Chat Edit": "允許編輯對話",
@@ -416,6 +417,7 @@
 	"Failed to save models configuration": "儲存模型設定失敗",
 	"Failed to save models configuration": "儲存模型設定失敗",
 	"Failed to update settings": "更新設定失敗",
 	"Failed to update settings": "更新設定失敗",
 	"Failed to upload file.": "上傳檔案失敗。",
 	"Failed to upload file.": "上傳檔案失敗。",
+	"Features Permissions": "",
 	"February": "2 月",
 	"February": "2 月",
 	"Feedback History": "回饋歷史",
 	"Feedback History": "回饋歷史",
 	"Feedbacks": "回饋",
 	"Feedbacks": "回饋",
@@ -490,10 +492,15 @@
 	"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.": "我確認已閱讀並理解我的操作所帶來的影響。我了解執行任意程式碼的相關風險,並已驗證來源的可信度。",
 	"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.": "我確認已閱讀並理解我的操作所帶來的影響。我了解執行任意程式碼的相關風險,並已驗證來源的可信度。",
 	"ID": "ID",
 	"ID": "ID",
 	"Ignite curiosity": "點燃好奇心",
 	"Ignite curiosity": "點燃好奇心",
+	"Image": "",
 	"Image Compression": "圖片壓縮",
 	"Image Compression": "圖片壓縮",
+	"Image generation": "",
+	"Image Generation": "",
 	"Image Generation (Experimental)": "圖片生成(實驗性功能)",
 	"Image Generation (Experimental)": "圖片生成(實驗性功能)",
 	"Image Generation Engine": "圖片生成引擎",
 	"Image Generation Engine": "圖片生成引擎",
 	"Image Max Compression Size": "圖片最大壓縮大小",
 	"Image Max Compression Size": "圖片最大壓縮大小",
+	"Image Prompt Generation": "",
+	"Image Prompt Generation Prompt": "",
 	"Image Settings": "圖片設定",
 	"Image Settings": "圖片設定",
 	"Images": "圖片",
 	"Images": "圖片",
 	"Import Chats": "匯入對話紀錄",
 	"Import Chats": "匯入對話紀錄",
@@ -652,7 +659,6 @@
 	"OLED Dark": "OLED 深色",
 	"OLED Dark": "OLED 深色",
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
-	"Ollama API disabled": "Ollama API 已停用",
 	"Ollama API settings updated": "Ollama API 設定已更新",
 	"Ollama API settings updated": "Ollama API 設定已更新",
 	"Ollama Version": "Ollama 版本",
 	"Ollama Version": "Ollama 版本",
 	"On": "開啟",
 	"On": "開啟",
@@ -833,7 +839,7 @@
 	"Set Scheduler": "設定排程器",
 	"Set Scheduler": "設定排程器",
 	"Set Steps": "設定步數",
 	"Set Steps": "設定步數",
 	"Set Task Model": "設定任務模型",
 	"Set Task Model": "設定任務模型",
-	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "設定用於計算的 GPU 裝置數量。此選項控制使用多少個 GPU 裝置(如果可用)來處理傳入的請求。增加此值可以顯著提升針對 GPU 加速優化的模型效能,但也可能消耗更多電力和 GPU 資源。",
+	"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "設定用於計算的工作執行緒數量。此選項控制使用多少執行緒來同時處理傳入的請求。增加此值可以在高併發工作負載下提升效能,但也可能消耗更多 CPU 資源。",
 	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "設定用於計算的工作執行緒數量。此選項控制使用多少執行緒來同時處理傳入的請求。增加此值可以在高併發工作負載下提升效能,但也可能消耗更多 CPU 資源。",
 	"Set Voice": "設定語音",
 	"Set Voice": "設定語音",
 	"Set whisper model": "設定 whisper 模型",
 	"Set whisper model": "設定 whisper 模型",
@@ -1053,6 +1059,7 @@
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "您一次最多只能與 {{maxCount}} 個檔案進行對話。",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "您一次最多只能與 {{maxCount}} 個檔案進行對話。",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "您可以透過下方的「管理」按鈕新增記憶,將您與大型語言模型的互動個人化,讓它們更有幫助並更符合您的需求。",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "您可以透過下方的「管理」按鈕新增記憶,將您與大型語言模型的互動個人化,讓它們更有幫助並更符合您的需求。",
 	"You cannot upload an empty file.": "您無法上傳空檔案",
 	"You cannot upload an empty file.": "您無法上傳空檔案",
+	"You do not have permission to access this feature.": "",
 	"You do not have permission to upload files.": "您沒有權限上傳檔案",
 	"You do not have permission to upload files.": "您沒有權限上傳檔案",
 	"You have no archived conversations.": "您沒有已封存的對話。",
 	"You have no archived conversations.": "您沒有已封存的對話。",
 	"You have shared this chat": "您已分享此對話",
 	"You have shared this chat": "您已分享此對話",

+ 2 - 2
svelte.config.js

@@ -19,8 +19,8 @@ const config = {
 	vitePlugin: {
 	vitePlugin: {
 		inspector: {
 		inspector: {
 			toggleKeyCombo: 'meta-shift', // Key combination to open the inspector
 			toggleKeyCombo: 'meta-shift', // Key combination to open the inspector
-			holdMode: false,             // Enable or disable hold mode
-			showToggleButton: 'always',  // Show toggle button ('always', 'active', 'never')
+			holdMode: false, // Enable or disable hold mode
+			showToggleButton: 'always', // Show toggle button ('always', 'active', 'never')
 			toggleButtonPos: 'bottom-right' // Position of the toggle button
 			toggleButtonPos: 'bottom-right' // Position of the toggle button
 		}
 		}
 	},
 	},