Browse Source

chore: version bump

Timothy J. Baek 11 months ago
parent
commit
f4a15f9590
42 changed files with 854 additions and 208 deletions
  1. 2 2
      package-lock.json
  2. 1 1
      package.json
  3. 1 1
      src/lib/components/chat/Messages/ResponseMessage.svelte
  4. 3 1
      src/lib/components/chat/Settings/Personalization.svelte
  5. 6 2
      src/lib/components/layout/Overlay/AccountPending.svelte
  6. 23 5
      src/lib/i18n/locales/ar-BH/translation.json
  7. 23 5
      src/lib/i18n/locales/bg-BG/translation.json
  8. 23 5
      src/lib/i18n/locales/bn-BD/translation.json
  9. 23 5
      src/lib/i18n/locales/ca-ES/translation.json
  10. 23 5
      src/lib/i18n/locales/ceb-PH/translation.json
  11. 18 8
      src/lib/i18n/locales/de-DE/translation.json
  12. 23 5
      src/lib/i18n/locales/dg-DG/translation.json
  13. 23 5
      src/lib/i18n/locales/en-GB/translation.json
  14. 23 5
      src/lib/i18n/locales/en-US/translation.json
  15. 23 5
      src/lib/i18n/locales/es-ES/translation.json
  16. 23 5
      src/lib/i18n/locales/fa-IR/translation.json
  17. 23 5
      src/lib/i18n/locales/fi-FI/translation.json
  18. 23 5
      src/lib/i18n/locales/fr-CA/translation.json
  19. 23 5
      src/lib/i18n/locales/fr-FR/translation.json
  20. 23 5
      src/lib/i18n/locales/he-IL/translation.json
  21. 23 5
      src/lib/i18n/locales/hi-IN/translation.json
  22. 23 5
      src/lib/i18n/locales/hr-HR/translation.json
  23. 23 5
      src/lib/i18n/locales/it-IT/translation.json
  24. 23 5
      src/lib/i18n/locales/ja-JP/translation.json
  25. 23 5
      src/lib/i18n/locales/ka-GE/translation.json
  26. 23 5
      src/lib/i18n/locales/ko-KR/translation.json
  27. 23 5
      src/lib/i18n/locales/lt-LT/translation.json
  28. 23 5
      src/lib/i18n/locales/nb-NO/translation.json
  29. 23 5
      src/lib/i18n/locales/nl-NL/translation.json
  30. 23 5
      src/lib/i18n/locales/pa-IN/translation.json
  31. 23 5
      src/lib/i18n/locales/pl-PL/translation.json
  32. 23 5
      src/lib/i18n/locales/pt-BR/translation.json
  33. 23 5
      src/lib/i18n/locales/pt-PT/translation.json
  34. 23 5
      src/lib/i18n/locales/ru-RU/translation.json
  35. 23 5
      src/lib/i18n/locales/sr-RS/translation.json
  36. 23 5
      src/lib/i18n/locales/sv-SE/translation.json
  37. 23 5
      src/lib/i18n/locales/tk-TW/translation.json
  38. 23 5
      src/lib/i18n/locales/tr-TR/translation.json
  39. 23 5
      src/lib/i18n/locales/uk-UA/translation.json
  40. 23 5
      src/lib/i18n/locales/vi-VN/translation.json
  41. 18 18
      src/lib/i18n/locales/zh-CN/translation.json
  42. 23 5
      src/lib/i18n/locales/zh-TW/translation.json

+ 2 - 2
package-lock.json

@@ -1,12 +1,12 @@
 {
 {
 	"name": "open-webui",
 	"name": "open-webui",
-	"version": "0.2.5",
+	"version": "0.3.0.dev1",
 	"lockfileVersion": 3,
 	"lockfileVersion": 3,
 	"requires": true,
 	"requires": true,
 	"packages": {
 	"packages": {
 		"": {
 		"": {
 			"name": "open-webui",
 			"name": "open-webui",
-			"version": "0.2.5",
+			"version": "0.3.0.dev1",
 			"dependencies": {
 			"dependencies": {
 				"@pyscript/core": "^0.4.32",
 				"@pyscript/core": "^0.4.32",
 				"@sveltejs/adapter-node": "^1.3.1",
 				"@sveltejs/adapter-node": "^1.3.1",

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
 {
 	"name": "open-webui",
 	"name": "open-webui",
-	"version": "0.2.5",
+	"version": "0.3.0.dev1",
 	"private": true,
 	"private": true,
 	"scripts": {
 	"scripts": {
 		"dev": "npm run pyodide:fetch && vite dev --host",
 		"dev": "npm run pyodide:fetch && vite dev --host",

+ 1 - 1
src/lib/components/chat/Messages/ResponseMessage.svelte

@@ -757,7 +757,7 @@
 										</Tooltip>
 										</Tooltip>
 
 
 										{#if $config?.features.enable_image_generation && !readOnly}
 										{#if $config?.features.enable_image_generation && !readOnly}
-											<Tooltip content="{$i18n.t('Generate Image')}" placement="bottom">
+											<Tooltip content={$i18n.t('Generate Image')} placement="bottom">
 												<button
 												<button
 													class="{isLastMessage
 													class="{isLastMessage
 														? 'visible'
 														? 'visible'

+ 3 - 1
src/lib/components/chat/Settings/Personalization.svelte

@@ -35,7 +35,9 @@
 		<div>
 		<div>
 			<div class="flex items-center justify-between mb-1">
 			<div class="flex items-center justify-between mb-1">
 				<Tooltip
 				<Tooltip
-					content="{$i18n.t('This is an experimental feature, it may not function as expected and is subject to change at any time.')}"
+					content={$i18n.t(
+						'This is an experimental feature, it may not function as expected and is subject to change at any time.'
+					)}
 				>
 				>
 					<div class="text-sm font-medium">
 					<div class="text-sm font-medium">
 						{$i18n.t('Memory')}
 						{$i18n.t('Memory')}

+ 6 - 2
src/lib/components/layout/Overlay/AccountPending.svelte

@@ -21,11 +21,15 @@
 		<div class="m-auto pb-10 flex flex-col justify-center">
 		<div class="m-auto pb-10 flex flex-col justify-center">
 			<div class="max-w-md">
 			<div class="max-w-md">
 				<div class="text-center dark:text-white text-2xl font-medium z-50">
 				<div class="text-center dark:text-white text-2xl font-medium z-50">
-					{$i18n.t('Account Activation Pending')}<br /> {$i18n.t('Contact Admin for WebUI Access')}
+					{$i18n.t('Account Activation Pending')}<br />
+					{$i18n.t('Contact Admin for WebUI Access')}
 				</div>
 				</div>
 
 
 				<div class=" mt-4 text-center text-sm dark:text-gray-200 w-full">
 				<div class=" mt-4 text-center text-sm dark:text-gray-200 w-full">
-					{$i18n.t('Your account status is currently pending activation.')}<br /> {$i18n.t('To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.')}
+					{$i18n.t('Your account status is currently pending activation.')}<br />
+					{$i18n.t(
+						'To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.'
+					)}
 				</div>
 				</div>
 
 
 				{#if adminDetails}
 				{#if adminDetails}

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

@@ -12,6 +12,7 @@
 	"a user": "مستخدم",
 	"a user": "مستخدم",
 	"About": "عن",
 	"About": "عن",
 	"Account": "الحساب",
 	"Account": "الحساب",
+	"Account Activation Pending": "",
 	"Accurate information": "معلومات دقيقة",
 	"Accurate information": "معلومات دقيقة",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "أضف",
 	"Add": "أضف",
@@ -29,6 +30,7 @@
 	"Add User": "اضافة مستخدم",
 	"Add User": "اضافة مستخدم",
 	"Adjusting these settings will apply changes universally to all users.": "سيؤدي ضبط هذه الإعدادات إلى تطبيق التغييرات بشكل عام على كافة المستخدمين",
 	"Adjusting these settings will apply changes universally to all users.": "سيؤدي ضبط هذه الإعدادات إلى تطبيق التغييرات بشكل عام على كافة المستخدمين",
 	"admin": "المشرف",
 	"admin": "المشرف",
+	"Admin": "",
 	"Admin Panel": "لوحة التحكم",
 	"Admin Panel": "لوحة التحكم",
 	"Admin Settings": "اعدادات المشرف",
 	"Admin Settings": "اعدادات المشرف",
 	"Advanced Parameters": "التعليمات المتقدمة",
 	"Advanced Parameters": "التعليمات المتقدمة",
@@ -59,7 +61,6 @@
 	"Audio": "صوتي",
 	"Audio": "صوتي",
 	"August": "أغسطس",
 	"August": "أغسطس",
 	"Auto-playback response": "استجابة التشغيل التلقائي",
 	"Auto-playback response": "استجابة التشغيل التلقائي",
-	"Auto-send input after 3 sec.": "إرسال تلقائي للإدخال بعد 3 ثواني.",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 الرابط الرئيسي",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 الرابط الرئيسي",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 الرابط مطلوب",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 الرابط مطلوب",
 	"available!": "متاح",
 	"available!": "متاح",
@@ -71,6 +72,7 @@
 	"Being lazy": "كون كسول",
 	"Being lazy": "كون كسول",
 	"Brave Search API Key": "مفتاح واجهة برمجة تطبيقات البحث الشجاع",
 	"Brave Search API Key": "مفتاح واجهة برمجة تطبيقات البحث الشجاع",
 	"Bypass SSL verification for Websites": "تجاوز التحقق من SSL للموقع",
 	"Bypass SSL verification for Websites": "تجاوز التحقق من SSL للموقع",
+	"Call": "",
 	"Cancel": "اللغاء",
 	"Cancel": "اللغاء",
 	"Capabilities": "قدرات",
 	"Capabilities": "قدرات",
 	"Change Password": "تغير الباسورد",
 	"Change Password": "تغير الباسورد",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Chunk المتغيرات",
 	"Chunk Params": "Chunk المتغيرات",
 	"Chunk Size": "Chunk حجم",
 	"Chunk Size": "Chunk حجم",
 	"Citation": "اقتباس",
 	"Citation": "اقتباس",
+	"Clear memory": "",
 	"Click here for help.": "أضغط هنا للمساعدة",
 	"Click here for help.": "أضغط هنا للمساعدة",
 	"Click here to": "أضغط هنا الانتقال",
 	"Click here to": "أضغط هنا الانتقال",
 	"Click here to select": "أضغط هنا للاختيار",
 	"Click here to select": "أضغط هنا للاختيار",
 	"Click here to select a csv file.": "أضغط هنا للاختيار ملف csv",
 	"Click here to select a csv file.": "أضغط هنا للاختيار ملف csv",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "انقر هنا لاختيار المستندات",
 	"Click here to select documents.": "انقر هنا لاختيار المستندات",
 	"click here.": "أضغط هنا",
 	"click here.": "أضغط هنا",
 	"Click on the user role button to change a user's role.": "أضغط على أسم الصلاحيات لتغيرها للمستخدم",
 	"Click on the user role button to change a user's role.": "أضغط على أسم الصلاحيات لتغيرها للمستخدم",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "الطلبات المتزامنة",
 	"Concurrent Requests": "الطلبات المتزامنة",
 	"Confirm Password": "تأكيد كلمة المرور",
 	"Confirm Password": "تأكيد كلمة المرور",
 	"Connections": "اتصالات",
 	"Connections": "اتصالات",
+	"Contact Admin for WebUI Access": "",
 	"Content": "الاتصال",
 	"Content": "الاتصال",
 	"Context Length": "طول السياق",
 	"Context Length": "طول السياق",
 	"Continue Response": "متابعة الرد",
 	"Continue Response": "متابعة الرد",
-	"Conversation Mode": "وضع المحادثة",
 	"Copied shared chat URL to clipboard!": "تم نسخ عنوان URL للدردشة المشتركة إلى الحافظة",
 	"Copied shared chat URL to clipboard!": "تم نسخ عنوان URL للدردشة المشتركة إلى الحافظة",
 	"Copy": "نسخ",
 	"Copy": "نسخ",
 	"Copy last code block": "انسخ كتلة التعليمات البرمجية الأخيرة",
 	"Copy last code block": "انسخ كتلة التعليمات البرمجية الأخيرة",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "(Automatic1111) الإفتراضي",
 	"Default (Automatic1111)": "(Automatic1111) الإفتراضي",
 	"Default (SentenceTransformers)": "(SentenceTransformers) الإفتراضي",
 	"Default (SentenceTransformers)": "(SentenceTransformers) الإفتراضي",
 	"Default (Web API)": "(Web API) الإفتراضي",
 	"Default (Web API)": "(Web API) الإفتراضي",
+	"Default (Whisper)": "",
 	"Default Model": "النموذج الافتراضي",
 	"Default Model": "النموذج الافتراضي",
 	"Default model updated": "الإفتراضي تحديث الموديل",
 	"Default model updated": "الإفتراضي تحديث الموديل",
 	"Default Prompt Suggestions": "الإفتراضي Prompt الاقتراحات",
 	"Default Prompt Suggestions": "الإفتراضي Prompt الاقتراحات",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "اكتشاف موجه",
 	"Discover a prompt": "اكتشاف موجه",
 	"Discover, download, and explore custom prompts": "اكتشاف وتنزيل واستكشاف المطالبات المخصصة",
 	"Discover, download, and explore custom prompts": "اكتشاف وتنزيل واستكشاف المطالبات المخصصة",
 	"Discover, download, and explore model presets": "اكتشاف وتنزيل واستكشاف الإعدادات المسبقة للنموذج",
 	"Discover, download, and explore model presets": "اكتشاف وتنزيل واستكشاف الإعدادات المسبقة للنموذج",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "اعرض اسم المستخدم بدلاً منك في الدردشة",
 	"Display the username instead of You in the Chat": "اعرض اسم المستخدم بدلاً منك في الدردشة",
 	"Document": "المستند",
 	"Document": "المستند",
 	"Document Settings": "أعدادات المستند",
 	"Document Settings": "أعدادات المستند",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "تصدير وثائق الخرائط",
 	"Export Documents Mapping": "تصدير وثائق الخرائط",
 	"Export Models": "نماذج التصدير",
 	"Export Models": "نماذج التصدير",
 	"Export Prompts": "مطالبات التصدير",
 	"Export Prompts": "مطالبات التصدير",
+	"External Models": "",
 	"Failed to create API Key.": "فشل في إنشاء مفتاح API.",
 	"Failed to create API Key.": "فشل في إنشاء مفتاح API.",
 	"Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة",
 	"Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "معلومات",
 	"Info": "معلومات",
 	"Input commands": "إدخال الأوامر",
 	"Input commands": "إدخال الأوامر",
 	"Install from Github URL": "التثبيت من عنوان URL لجيثب",
 	"Install from Github URL": "التثبيت من عنوان URL لجيثب",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "واجهه المستخدم",
 	"Interface": "واجهه المستخدم",
 	"Invalid Tag": "تاق غير صالحة",
 	"Invalid Tag": "تاق غير صالحة",
 	"January": "يناير",
 	"January": "يناير",
@@ -267,11 +275,12 @@
 	"Language": "اللغة",
 	"Language": "اللغة",
 	"Last Active": "آخر نشاط",
 	"Last Active": "آخر نشاط",
 	"Light": "فاتح",
 	"Light": "فاتح",
-	"Listening...": "جاري الاستماع",
 	"LLMs can make mistakes. Verify important information.": "يمكن أن تصدر بعض الأخطاء. لذلك يجب التحقق من المعلومات المهمة",
 	"LLMs can make mistakes. Verify important information.": "يمكن أن تصدر بعض الأخطاء. لذلك يجب التحقق من المعلومات المهمة",
+	"Local Models": "",
 	"LTR": "من جهة اليسار إلى اليمين",
 	"LTR": "من جهة اليسار إلى اليمين",
 	"Made by OpenWebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
 	"Made by OpenWebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
 	"Make sure to enclose them with": "تأكد من إرفاقها",
 	"Make sure to enclose them with": "تأكد من إرفاقها",
+	"Manage": "",
 	"Manage Models": "إدارة النماذج",
 	"Manage Models": "إدارة النماذج",
 	"Manage Ollama Models": "Ollama إدارة موديلات ",
 	"Manage Ollama Models": "Ollama إدارة موديلات ",
 	"Manage Pipelines": "إدارة خطوط الأنابيب",
 	"Manage Pipelines": "إدارة خطوط الأنابيب",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "أولاما API",
 	"Ollama API": "أولاما API",
 	"Ollama API disabled": "أولاما API معطلة",
 	"Ollama API disabled": "أولاما API معطلة",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Ollama الاصدار",
 	"Ollama Version": "Ollama الاصدار",
 	"On": "تشغيل",
 	"On": "تشغيل",
 	"Only": "فقط",
 	"Only": "فقط",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF ملف (.pdf)",
 	"PDF document (.pdf)": "PDF ملف (.pdf)",
 	"PDF Extract Images (OCR)": "PDF أستخرج الصور (OCR)",
 	"PDF Extract Images (OCR)": "PDF أستخرج الصور (OCR)",
 	"pending": "قيد الانتظار",
 	"pending": "قيد الانتظار",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "{{error}} تم رفض الإذن عند الوصول إلى الميكروفون ",
 	"Permission denied when accessing microphone: {{error}}": "{{error}} تم رفض الإذن عند الوصول إلى الميكروفون ",
 	"Personalization": "التخصيص",
 	"Personalization": "التخصيص",
 	"Pipelines": "خطوط الانابيب",
 	"Pipelines": "خطوط الانابيب",
@@ -367,6 +378,7 @@
 	"Read Aloud": "أقراء لي",
 	"Read Aloud": "أقراء لي",
 	"Record voice": "سجل صوت",
 	"Record voice": "سجل صوت",
 	"Redirecting you to OpenWebUI Community": "OpenWebUI إعادة توجيهك إلى مجتمع ",
 	"Redirecting you to OpenWebUI Community": "OpenWebUI إعادة توجيهك إلى مجتمع ",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "رفض عندما لا ينبغي أن يكون",
 	"Refused when it shouldn't have": "رفض عندما لا ينبغي أن يكون",
 	"Regenerate": "تجديد",
 	"Regenerate": "تجديد",
 	"Release Notes": "ملاحظات الإصدار",
 	"Release Notes": "ملاحظات الإصدار",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "من اليمين إلى اليسار",
 	"RTL": "من اليمين إلى اليسار",
+	"Running": "",
 	"Save": "حفظ",
 	"Save": "حفظ",
 	"Save & Create": "حفظ وإنشاء",
 	"Save & Create": "حفظ وإنشاء",
 	"Save & Update": "حفظ وتحديث",
 	"Save & Update": "حفظ وتحديث",
@@ -411,12 +424,14 @@
 	"See what's new": "ما الجديد",
 	"See what's new": "ما الجديد",
 	"Seed": "Seed",
 	"Seed": "Seed",
 	"Select a base model": "حدد نموذجا أساسيا",
 	"Select a base model": "حدد نموذجا أساسيا",
+	"Select a engine": "",
 	"Select a mode": "أختار موديل",
 	"Select a mode": "أختار موديل",
 	"Select a model": "أختار الموديل",
 	"Select a model": "أختار الموديل",
 	"Select a pipeline": "حدد مسارا",
 	"Select a pipeline": "حدد مسارا",
 	"Select a pipeline url": "حدد عنوان URL لخط الأنابيب",
 	"Select a pipeline url": "حدد عنوان URL لخط الأنابيب",
 	"Select an Ollama instance": "أختار سيرفر ",
 	"Select an Ollama instance": "أختار سيرفر ",
 	"Select model": " أختار موديل",
 	"Select model": " أختار موديل",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "النموذج (النماذج) المحددة لا تدعم مدخلات الصور",
 	"Selected model(s) do not support image inputs": "النموذج (النماذج) المحددة لا تدعم مدخلات الصور",
 	"Send": "تم",
 	"Send": "تم",
 	"Send a Message": "يُرجى إدخال طلبك هنا",
 	"Send a Message": "يُرجى إدخال طلبك هنا",
@@ -453,7 +468,6 @@
 	"Source": "المصدر",
 	"Source": "المصدر",
 	"Speech recognition error: {{error}}": "{{error}} خطأ في التعرف على الكلام",
 	"Speech recognition error: {{error}}": "{{error}} خطأ في التعرف على الكلام",
 	"Speech-to-Text Engine": "محرك تحويل الكلام إلى نص",
 	"Speech-to-Text Engine": "محرك تحويل الكلام إلى نص",
-	"SpeechRecognition API is not supported in this browser.": "API SpeechRecognition غير مدعومة في هذا المتصفح.",
 	"Stop Sequence": "وقف التسلسل",
 	"Stop Sequence": "وقف التسلسل",
 	"STT Settings": "STT اعدادات",
 	"STT Settings": "STT اعدادات",
 	"Submit": "إرسال",
 	"Submit": "إرسال",
@@ -485,6 +499,7 @@
 	"to": "الى",
 	"to": "الى",
 	"To access the available model names for downloading,": "للوصول إلى أسماء الموديلات المتاحة للتنزيل،",
 	"To access the available model names for downloading,": "للوصول إلى أسماء الموديلات المتاحة للتنزيل،",
 	"To access the GGUF models available for downloading,": "للوصول إلى الموديلات GGUF المتاحة للتنزيل،",
 	"To access the GGUF models available for downloading,": "للوصول إلى الموديلات GGUF المتاحة للتنزيل،",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "الى كتابة المحادثه",
 	"to chat input.": "الى كتابة المحادثه",
 	"Today": "اليوم",
 	"Today": "اليوم",
 	"Toggle settings": "فتح وأغلاق الاعدادات",
 	"Toggle settings": "فتح وأغلاق الاعدادات",
@@ -501,6 +516,7 @@
 	"Update password": "تحديث كلمة المرور",
 	"Update password": "تحديث كلمة المرور",
 	"Upload a GGUF model": "GGUF رفع موديل نوع",
 	"Upload a GGUF model": "GGUF رفع موديل نوع",
 	"Upload Files": "تحميل الملفات",
 	"Upload Files": "تحميل الملفات",
+	"Upload Pipeline": "",
 	"Upload Progress": "جاري التحميل",
 	"Upload Progress": "جاري التحميل",
 	"URL Mode": "رابط الموديل",
 	"URL Mode": "رابط الموديل",
 	"Use '#' in the prompt input to load and select your documents.": "أستخدم '#' في المحادثة لربطهامن المستندات",
 	"Use '#' in the prompt input to load and select your documents.": "أستخدم '#' في المحادثة لربطهامن المستندات",
@@ -519,6 +535,7 @@
 	"Warning": "تحذير",
 	"Warning": "تحذير",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "تحذير: إذا قمت بتحديث أو تغيير نموذج التضمين الخاص بك، فستحتاج إلى إعادة استيراد كافة المستندات.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "تحذير: إذا قمت بتحديث أو تغيير نموذج التضمين الخاص بك، فستحتاج إلى إعادة استيراد كافة المستندات.",
 	"Web": "Web",
 	"Web": "Web",
+	"Web API": "",
 	"Web Loader Settings": "Web تحميل اعدادات",
 	"Web Loader Settings": "Web تحميل اعدادات",
 	"Web Params": "Web تحميل اعدادات",
 	"Web Params": "Web تحميل اعدادات",
 	"Web Search": "بحث الويب",
 	"Web Search": "بحث الويب",
@@ -529,18 +546,19 @@
 	"WebUI will make requests to": "سوف يقوم WebUI بتقديم طلبات ل",
 	"WebUI will make requests to": "سوف يقوم WebUI بتقديم طلبات ل",
 	"What’s New in": "ما هو الجديد",
 	"What’s New in": "ما هو الجديد",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "عند إيقاف تشغيل السجل، لن تظهر الدردشات الجديدة على هذا المتصفح في سجلك على أي من أجهزتك.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "عند إيقاف تشغيل السجل، لن تظهر الدردشات الجديدة على هذا المتصفح في سجلك على أي من أجهزتك.",
-	"Whisper (Local)": "Whisper (Local)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "مساحة العمل",
 	"Workspace": "مساحة العمل",
 	"Write a prompt suggestion (e.g. Who are you?)": "اكتب اقتراحًا سريعًا (على سبيل المثال، من أنت؟)",
 	"Write a prompt suggestion (e.g. Who are you?)": "اكتب اقتراحًا سريعًا (على سبيل المثال، من أنت؟)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "اكتب ملخصًا في 50 كلمة يلخص [الموضوع أو الكلمة الرئيسية]",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "اكتب ملخصًا في 50 كلمة يلخص [الموضوع أو الكلمة الرئيسية]",
 	"Yesterday": "أمس",
 	"Yesterday": "أمس",
 	"You": "انت",
 	"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 clone a base model": "لا يمكنك استنساخ نموذج أساسي",
 	"You cannot clone a base model": "لا يمكنك استنساخ نموذج أساسي",
 	"You have no archived conversations.": "لا تملك محادثات محفوظه",
 	"You have no archived conversations.": "لا تملك محادثات محفوظه",
 	"You have shared this chat": "تم مشاركة هذه المحادثة",
 	"You have shared this chat": "تم مشاركة هذه المحادثة",
 	"You're a helpful assistant.": "مساعدك المفيد هنا",
 	"You're a helpful assistant.": "مساعدك المفيد هنا",
 	"You're now logged in.": "لقد قمت الآن بتسجيل الدخول.",
 	"You're now logged in.": "لقد قمت الآن بتسجيل الدخول.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube تحميل اعدادات"
 	"Youtube Loader Settings": "Youtube تحميل اعدادات"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "потребител",
 	"a user": "потребител",
 	"About": "Относно",
 	"About": "Относно",
 	"Account": "Акаунт",
 	"Account": "Акаунт",
+	"Account Activation Pending": "",
 	"Accurate information": "Точни информация",
 	"Accurate information": "Точни информация",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Добавяне",
 	"Add": "Добавяне",
@@ -29,6 +30,7 @@
 	"Add User": "Добавяне на потребител",
 	"Add User": "Добавяне на потребител",
 	"Adjusting these settings will apply changes universally to all users.": "При промяна на тези настройки промените се прилагат за всички потребители.",
 	"Adjusting these settings will apply changes universally to all users.": "При промяна на тези настройки промените се прилагат за всички потребители.",
 	"admin": "админ",
 	"admin": "админ",
+	"Admin": "",
 	"Admin Panel": "Панел на Администратор",
 	"Admin Panel": "Панел на Администратор",
 	"Admin Settings": "Настройки на Администратор",
 	"Admin Settings": "Настройки на Администратор",
 	"Advanced Parameters": "Разширени Параметри",
 	"Advanced Parameters": "Разширени Параметри",
@@ -59,7 +61,6 @@
 	"Audio": "Аудио",
 	"Audio": "Аудио",
 	"August": "Август",
 	"August": "Август",
 	"Auto-playback response": "Аувтоматично възпроизвеждане на Отговора",
 	"Auto-playback response": "Аувтоматично възпроизвеждане на Отговора",
-	"Auto-send input after 3 sec.": "Аувтоматично изпращане на входа след 3 сек.",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Базов URL",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Базов URL",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Базов URL е задължителен.",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Базов URL е задължителен.",
 	"available!": "наличен!",
 	"available!": "наличен!",
@@ -71,6 +72,7 @@
 	"Being lazy": "Да бъдеш мързелив",
 	"Being lazy": "Да бъдеш мързелив",
 	"Brave Search API Key": "Смел ключ за API за търсене",
 	"Brave Search API Key": "Смел ключ за API за търсене",
 	"Bypass SSL verification for Websites": "Изключване на SSL проверката за сайтове",
 	"Bypass SSL verification for Websites": "Изключване на SSL проверката за сайтове",
+	"Call": "",
 	"Cancel": "Отказ",
 	"Cancel": "Отказ",
 	"Capabilities": "Възможности",
 	"Capabilities": "Възможности",
 	"Change Password": "Промяна на Парола",
 	"Change Password": "Промяна на Парола",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Chunk Params",
 	"Chunk Params": "Chunk Params",
 	"Chunk Size": "Chunk Size",
 	"Chunk Size": "Chunk Size",
 	"Citation": "Цитат",
 	"Citation": "Цитат",
+	"Clear memory": "",
 	"Click here for help.": "Натиснете тук за помощ.",
 	"Click here for help.": "Натиснете тук за помощ.",
 	"Click here to": "Натиснете тук за",
 	"Click here to": "Натиснете тук за",
 	"Click here to select": "Натиснете тук, за да изберете",
 	"Click here to select": "Натиснете тук, за да изберете",
 	"Click here to select a csv file.": "Натиснете тук, за да изберете csv файл.",
 	"Click here to select a csv file.": "Натиснете тук, за да изберете csv файл.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Натиснете тук, за да изберете документи.",
 	"Click here to select documents.": "Натиснете тук, за да изберете документи.",
 	"click here.": "натиснете тук.",
 	"click here.": "натиснете тук.",
 	"Click on the user role button to change a user's role.": "Натиснете върху бутона за промяна на ролята на потребителя.",
 	"Click on the user role button to change a user's role.": "Натиснете върху бутона за промяна на ролята на потребителя.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Едновременни искания",
 	"Concurrent Requests": "Едновременни искания",
 	"Confirm Password": "Потвърди Парола",
 	"Confirm Password": "Потвърди Парола",
 	"Connections": "Връзки",
 	"Connections": "Връзки",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Съдържание",
 	"Content": "Съдържание",
 	"Context Length": "Дължина на Контекста",
 	"Context Length": "Дължина на Контекста",
 	"Continue Response": "Продължи отговора",
 	"Continue Response": "Продължи отговора",
-	"Conversation Mode": "Режим на Чат",
 	"Copied shared chat URL to clipboard!": "Копирана е връзката за чат!",
 	"Copied shared chat URL to clipboard!": "Копирана е връзката за чат!",
 	"Copy": "Копирай",
 	"Copy": "Копирай",
 	"Copy last code block": "Копиране на последен код блок",
 	"Copy last code block": "Копиране на последен код блок",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "По подразбиране (Automatic1111)",
 	"Default (Automatic1111)": "По подразбиране (Automatic1111)",
 	"Default (SentenceTransformers)": "По подразбиране (SentenceTransformers)",
 	"Default (SentenceTransformers)": "По подразбиране (SentenceTransformers)",
 	"Default (Web API)": "По подразбиране (Web API)",
 	"Default (Web API)": "По подразбиране (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "Модел по подразбиране",
 	"Default Model": "Модел по подразбиране",
 	"Default model updated": "Моделът по подразбиране е обновен",
 	"Default model updated": "Моделът по подразбиране е обновен",
 	"Default Prompt Suggestions": "Промпт Предложения по подразбиране",
 	"Default Prompt Suggestions": "Промпт Предложения по подразбиране",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Откриване на промпт",
 	"Discover a prompt": "Откриване на промпт",
 	"Discover, download, and explore custom prompts": "Откриване, сваляне и преглед на персонализирани промптове",
 	"Discover, download, and explore custom prompts": "Откриване, сваляне и преглед на персонализирани промптове",
 	"Discover, download, and explore model presets": "Откриване, сваляне и преглед на пресетове на модели",
 	"Discover, download, and explore model presets": "Откриване, сваляне и преглед на пресетове на модели",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Показване на потребителското име вместо Вие в чата",
 	"Display the username instead of You in the Chat": "Показване на потребителското име вместо Вие в чата",
 	"Document": "Документ",
 	"Document": "Документ",
 	"Document Settings": "Документ Настройки",
 	"Document Settings": "Документ Настройки",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Експортване на документен мапинг",
 	"Export Documents Mapping": "Експортване на документен мапинг",
 	"Export Models": "Експортиране на модели",
 	"Export Models": "Експортиране на модели",
 	"Export Prompts": "Експортване на промптове",
 	"Export Prompts": "Експортване на промптове",
+	"External Models": "",
 	"Failed to create API Key.": "Неуспешно създаване на API ключ.",
 	"Failed to create API Key.": "Неуспешно създаване на API ключ.",
 	"Failed to read clipboard contents": "Грешка при четене на съдържанието от клипборда",
 	"Failed to read clipboard contents": "Грешка при четене на съдържанието от клипборда",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "Информация",
 	"Info": "Информация",
 	"Input commands": "Въведете команди",
 	"Input commands": "Въведете команди",
 	"Install from Github URL": "Инсталиране от URL адреса на Github",
 	"Install from Github URL": "Инсталиране от URL адреса на Github",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Интерфейс",
 	"Interface": "Интерфейс",
 	"Invalid Tag": "Невалиден тег",
 	"Invalid Tag": "Невалиден тег",
 	"January": "Януари",
 	"January": "Януари",
@@ -267,11 +275,12 @@
 	"Language": "Език",
 	"Language": "Език",
 	"Last Active": "Последни активни",
 	"Last Active": "Последни активни",
 	"Light": "Светъл",
 	"Light": "Светъл",
-	"Listening...": "Слушам...",
 	"LLMs can make mistakes. Verify important information.": "LLMs могат да правят грешки. Проверете важните данни.",
 	"LLMs can make mistakes. Verify important information.": "LLMs могат да правят грешки. Проверете важните данни.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Направено от OpenWebUI общността",
 	"Made by OpenWebUI Community": "Направено от OpenWebUI общността",
 	"Make sure to enclose them with": "Уверете се, че са заключени с",
 	"Make sure to enclose them with": "Уверете се, че са заключени с",
+	"Manage": "",
 	"Manage Models": "Управление на Моделите",
 	"Manage Models": "Управление на Моделите",
 	"Manage Ollama Models": "Управление на Ollama Моделите",
 	"Manage Ollama Models": "Управление на Ollama Моделите",
 	"Manage Pipelines": "Управление на тръбопроводи",
 	"Manage Pipelines": "Управление на тръбопроводи",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "Ollama API деактивиран",
 	"Ollama API disabled": "Ollama API деактивиран",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Ollama Версия",
 	"Ollama Version": "Ollama Версия",
 	"On": "Вкл.",
 	"On": "Вкл.",
 	"Only": "Само",
 	"Only": "Само",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF документ (.pdf)",
 	"PDF document (.pdf)": "PDF документ (.pdf)",
 	"PDF Extract Images (OCR)": "PDF Extract Images (OCR)",
 	"PDF Extract Images (OCR)": "PDF Extract Images (OCR)",
 	"pending": "в очакване",
 	"pending": "в очакване",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Permission denied when accessing microphone: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Permission denied when accessing microphone: {{error}}",
 	"Personalization": "Персонализация",
 	"Personalization": "Персонализация",
 	"Pipelines": "Тръбопроводи",
 	"Pipelines": "Тръбопроводи",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Прочети на Голос",
 	"Read Aloud": "Прочети на Голос",
 	"Record voice": "Записване на глас",
 	"Record voice": "Записване на глас",
 	"Redirecting you to OpenWebUI Community": "Пренасочване към OpenWebUI общността",
 	"Redirecting you to OpenWebUI Community": "Пренасочване към OpenWebUI общността",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Отказано, когато не трябва да бъде",
 	"Refused when it shouldn't have": "Отказано, когато не трябва да бъде",
 	"Regenerate": "Регенериране",
 	"Regenerate": "Регенериране",
 	"Release Notes": "Бележки по изданието",
 	"Release Notes": "Бележки по изданието",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "Запис",
 	"Save": "Запис",
 	"Save & Create": "Запис & Създаване",
 	"Save & Create": "Запис & Създаване",
 	"Save & Update": "Запис & Актуализиране",
 	"Save & Update": "Запис & Актуализиране",
@@ -407,12 +420,14 @@
 	"See what's new": "Виж какво е новото",
 	"See what's new": "Виж какво е новото",
 	"Seed": "Seed",
 	"Seed": "Seed",
 	"Select a base model": "Изберете базов модел",
 	"Select a base model": "Изберете базов модел",
+	"Select a engine": "",
 	"Select a mode": "Изберете режим",
 	"Select a mode": "Изберете режим",
 	"Select a model": "Изберете модел",
 	"Select a model": "Изберете модел",
 	"Select a pipeline": "Изберете тръбопровод",
 	"Select a pipeline": "Изберете тръбопровод",
 	"Select a pipeline url": "Избор на URL адрес на канал",
 	"Select a pipeline url": "Избор на URL адрес на канал",
 	"Select an Ollama instance": "Изберете Ollama инстанция",
 	"Select an Ollama instance": "Изберете Ollama инстанция",
 	"Select model": "Изберете модел",
 	"Select model": "Изберете модел",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "Избраният(те) модел(и) не поддържа въвеждане на изображения",
 	"Selected model(s) do not support image inputs": "Избраният(те) модел(и) не поддържа въвеждане на изображения",
 	"Send": "Изпрати",
 	"Send": "Изпрати",
 	"Send a Message": "Изпращане на Съобщение",
 	"Send a Message": "Изпращане на Съобщение",
@@ -449,7 +464,6 @@
 	"Source": "Източник",
 	"Source": "Източник",
 	"Speech recognition error: {{error}}": "Speech recognition error: {{error}}",
 	"Speech recognition error: {{error}}": "Speech recognition error: {{error}}",
 	"Speech-to-Text Engine": "Speech-to-Text Engine",
 	"Speech-to-Text Engine": "Speech-to-Text Engine",
-	"SpeechRecognition API is not supported in this browser.": "SpeechRecognition API is not supported in this browser.",
 	"Stop Sequence": "Stop Sequence",
 	"Stop Sequence": "Stop Sequence",
 	"STT Settings": "STT Настройки",
 	"STT Settings": "STT Настройки",
 	"Submit": "Изпращане",
 	"Submit": "Изпращане",
@@ -481,6 +495,7 @@
 	"to": "в",
 	"to": "в",
 	"To access the available model names for downloading,": "За да получите достъп до наличните имена на модели за изтегляне,",
 	"To access the available model names for downloading,": "За да получите достъп до наличните имена на модели за изтегляне,",
 	"To access the GGUF models available for downloading,": "За да получите достъп до GGUF моделите, налични за изтегляне,",
 	"To access the GGUF models available for downloading,": "За да получите достъп до GGUF моделите, налични за изтегляне,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "към чат входа.",
 	"to chat input.": "към чат входа.",
 	"Today": "днес",
 	"Today": "днес",
 	"Toggle settings": "Toggle settings",
 	"Toggle settings": "Toggle settings",
@@ -497,6 +512,7 @@
 	"Update password": "Обновяване на парола",
 	"Update password": "Обновяване на парола",
 	"Upload a GGUF model": "Качване на GGUF модел",
 	"Upload a GGUF model": "Качване на GGUF модел",
 	"Upload Files": "Качване на файлове",
 	"Upload Files": "Качване на файлове",
+	"Upload Pipeline": "",
 	"Upload Progress": "Прогрес на качването",
 	"Upload Progress": "Прогрес на качването",
 	"URL Mode": "URL Mode",
 	"URL Mode": "URL Mode",
 	"Use '#' in the prompt input to load and select your documents.": "Използвайте '#' във промпта за да заредите и изберете вашите документи.",
 	"Use '#' in the prompt input to load and select your documents.": "Използвайте '#' във промпта за да заредите и изберете вашите документи.",
@@ -515,6 +531,7 @@
 	"Warning": "Предупреждение",
 	"Warning": "Предупреждение",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Предупреждение: Ако актуализирате или промените вашия модел за вграждане, трябва да повторите импортирането на всички документи.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Предупреждение: Ако актуализирате или промените вашия модел за вграждане, трябва да повторите импортирането на всички документи.",
 	"Web": "Уеб",
 	"Web": "Уеб",
+	"Web API": "",
 	"Web Loader Settings": "Настройки за зареждане на уеб",
 	"Web Loader Settings": "Настройки за зареждане на уеб",
 	"Web Params": "Параметри за уеб",
 	"Web Params": "Параметри за уеб",
 	"Web Search": "Търсене в уеб",
 	"Web Search": "Търсене в уеб",
@@ -525,18 +542,19 @@
 	"WebUI will make requests to": "WebUI ще направи заявки към",
 	"WebUI will make requests to": "WebUI ще направи заявки към",
 	"What’s New in": "Какво е новото в",
 	"What’s New in": "Какво е новото в",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Когато историята е изключена, нови чатове в този браузър ще не се показват в историята на никои от вашия профил.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Когато историята е изключена, нови чатове в този браузър ще не се показват в историята на никои от вашия профил.",
-	"Whisper (Local)": "Whisper (Локален)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "Работно пространство",
 	"Workspace": "Работно пространство",
 	"Write a prompt suggestion (e.g. Who are you?)": "Напиши предложение за промпт (напр. Кой сте вие?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Напиши предложение за промпт (напр. Кой сте вие?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Напиши описание в 50 знака, което описва [тема или ключова дума].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Напиши описание в 50 знака, което описва [тема или ключова дума].",
 	"Yesterday": "вчера",
 	"Yesterday": "вчера",
 	"You": "вие",
 	"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 clone a base model": "Не можете да клонирате базов модел",
 	"You cannot clone a base model": "Не можете да клонирате базов модел",
 	"You have no archived conversations.": "Нямате архивирани разговори.",
 	"You have no archived conversations.": "Нямате архивирани разговори.",
 	"You have shared this chat": "Вие сте споделели този чат",
 	"You have shared this chat": "Вие сте споделели този чат",
 	"You're a helpful assistant.": "Вие сте полезен асистент.",
 	"You're a helpful assistant.": "Вие сте полезен асистент.",
 	"You're now logged in.": "Сега, вие влязохте в системата.",
 	"You're now logged in.": "Сега, вие влязохте в системата.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube Loader Settings"
 	"Youtube Loader Settings": "Youtube Loader Settings"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "একজন ব্যাবহারকারী",
 	"a user": "একজন ব্যাবহারকারী",
 	"About": "সম্পর্কে",
 	"About": "সম্পর্কে",
 	"Account": "একাউন্ট",
 	"Account": "একাউন্ট",
+	"Account Activation Pending": "",
 	"Accurate information": "সঠিক তথ্য",
 	"Accurate information": "সঠিক তথ্য",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "যোগ করুন",
 	"Add": "যোগ করুন",
@@ -29,6 +30,7 @@
 	"Add User": "ইউজার যোগ করুন",
 	"Add User": "ইউজার যোগ করুন",
 	"Adjusting these settings will apply changes universally to all users.": "এই সেটিংগুলো পরিবর্তন করলে তা সব ইউজারের উপরেই প্রয়োগ করা হবে",
 	"Adjusting these settings will apply changes universally to all users.": "এই সেটিংগুলো পরিবর্তন করলে তা সব ইউজারের উপরেই প্রয়োগ করা হবে",
 	"admin": "এডমিন",
 	"admin": "এডমিন",
+	"Admin": "",
 	"Admin Panel": "এডমিন প্যানেল",
 	"Admin Panel": "এডমিন প্যানেল",
 	"Admin Settings": "এডমিন সেটিংস",
 	"Admin Settings": "এডমিন সেটিংস",
 	"Advanced Parameters": "এডভান্সড প্যারামিটার্স",
 	"Advanced Parameters": "এডভান্সড প্যারামিটার্স",
@@ -59,7 +61,6 @@
 	"Audio": "অডিও",
 	"Audio": "অডিও",
 	"August": "আগস্ট",
 	"August": "আগস্ট",
 	"Auto-playback response": "রেসপন্স অটো-প্লেব্যাক",
 	"Auto-playback response": "রেসপন্স অটো-প্লেব্যাক",
-	"Auto-send input after 3 sec.": "৩ সেকেন্ড পর ইনপুট সংয়ক্রিয়ভাবে পাঠান",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 বেজ ইউআরএল",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 বেজ ইউআরএল",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 বেজ ইউআরএল আবশ্যক",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 বেজ ইউআরএল আবশ্যক",
 	"available!": "উপলব্ধ!",
 	"available!": "উপলব্ধ!",
@@ -71,6 +72,7 @@
 	"Being lazy": "অলস হওয়া",
 	"Being lazy": "অলস হওয়া",
 	"Brave Search API Key": "সাহসী অনুসন্ধান API কী",
 	"Brave Search API Key": "সাহসী অনুসন্ধান API কী",
 	"Bypass SSL verification for Websites": "ওয়েবসাইটের জন্য SSL যাচাই বাতিল করুন",
 	"Bypass SSL verification for Websites": "ওয়েবসাইটের জন্য SSL যাচাই বাতিল করুন",
+	"Call": "",
 	"Cancel": "বাতিল",
 	"Cancel": "বাতিল",
 	"Capabilities": "সক্ষমতা",
 	"Capabilities": "সক্ষমতা",
 	"Change Password": "পাসওয়ার্ড পরিবর্তন করুন",
 	"Change Password": "পাসওয়ার্ড পরিবর্তন করুন",
@@ -88,10 +90,12 @@
 	"Chunk Params": "চাঙ্ক প্যারামিটার্স",
 	"Chunk Params": "চাঙ্ক প্যারামিটার্স",
 	"Chunk Size": "চাঙ্ক সাইজ",
 	"Chunk Size": "চাঙ্ক সাইজ",
 	"Citation": "উদ্ধৃতি",
 	"Citation": "উদ্ধৃতি",
+	"Clear memory": "",
 	"Click here for help.": "সাহায্যের জন্য এখানে ক্লিক করুন",
 	"Click here for help.": "সাহায্যের জন্য এখানে ক্লিক করুন",
 	"Click here to": "এখানে ক্লিক করুন",
 	"Click here to": "এখানে ক্লিক করুন",
 	"Click here to select": "নির্বাচন করার জন্য এখানে ক্লিক করুন",
 	"Click here to select": "নির্বাচন করার জন্য এখানে ক্লিক করুন",
 	"Click here to select a csv file.": "একটি csv ফাইল নির্বাচন করার জন্য এখানে ক্লিক করুন",
 	"Click here to select a csv file.": "একটি csv ফাইল নির্বাচন করার জন্য এখানে ক্লিক করুন",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "ডকুমেন্টগুলো নির্বাচন করার জন্য এখানে ক্লিক করুন",
 	"Click here to select documents.": "ডকুমেন্টগুলো নির্বাচন করার জন্য এখানে ক্লিক করুন",
 	"click here.": "এখানে ক্লিক করুন",
 	"click here.": "এখানে ক্লিক করুন",
 	"Click on the user role button to change a user's role.": "ইউজারের পদবি পরিবর্তন করার জন্য ইউজারের পদবি বাটনে ক্লিক করুন",
 	"Click on the user role button to change a user's role.": "ইউজারের পদবি পরিবর্তন করার জন্য ইউজারের পদবি বাটনে ক্লিক করুন",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "সমকালীন অনুরোধ",
 	"Concurrent Requests": "সমকালীন অনুরোধ",
 	"Confirm Password": "পাসওয়ার্ড নিশ্চিত করুন",
 	"Confirm Password": "পাসওয়ার্ড নিশ্চিত করুন",
 	"Connections": "কানেকশনগুলো",
 	"Connections": "কানেকশনগুলো",
+	"Contact Admin for WebUI Access": "",
 	"Content": "বিষয়বস্তু",
 	"Content": "বিষয়বস্তু",
 	"Context Length": "কনটেক্সটের দৈর্ঘ্য",
 	"Context Length": "কনটেক্সটের দৈর্ঘ্য",
 	"Continue Response": "যাচাই করুন",
 	"Continue Response": "যাচাই করুন",
-	"Conversation Mode": "কথোপকথন মোড",
 	"Copied shared chat URL to clipboard!": "শেয়ারকৃত কথা-ব্যবহারের URL ক্লিপবোর্ডে কপি করা হয়েছে!",
 	"Copied shared chat URL to clipboard!": "শেয়ারকৃত কথা-ব্যবহারের URL ক্লিপবোর্ডে কপি করা হয়েছে!",
 	"Copy": "অনুলিপি",
 	"Copy": "অনুলিপি",
 	"Copy last code block": "সর্বশেষ কোড ব্লক কপি করুন",
 	"Copy last code block": "সর্বশেষ কোড ব্লক কপি করুন",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "ডিফল্ট (Automatic1111)",
 	"Default (Automatic1111)": "ডিফল্ট (Automatic1111)",
 	"Default (SentenceTransformers)": "ডিফল্ট (SentenceTransformers)",
 	"Default (SentenceTransformers)": "ডিফল্ট (SentenceTransformers)",
 	"Default (Web API)": "ডিফল্ট (Web API)",
 	"Default (Web API)": "ডিফল্ট (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "ডিফল্ট মডেল",
 	"Default Model": "ডিফল্ট মডেল",
 	"Default model updated": "ডিফল্ট মডেল আপডেট হয়েছে",
 	"Default model updated": "ডিফল্ট মডেল আপডেট হয়েছে",
 	"Default Prompt Suggestions": "ডিফল্ট প্রম্পট সাজেশন",
 	"Default Prompt Suggestions": "ডিফল্ট প্রম্পট সাজেশন",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "একটি প্রম্পট খুঁজে বের করুন",
 	"Discover a prompt": "একটি প্রম্পট খুঁজে বের করুন",
 	"Discover, download, and explore custom prompts": "কাস্টম প্রম্পটগুলো আবিস্কার, ডাউনলোড এবং এক্সপ্লোর করুন",
 	"Discover, download, and explore custom prompts": "কাস্টম প্রম্পটগুলো আবিস্কার, ডাউনলোড এবং এক্সপ্লোর করুন",
 	"Discover, download, and explore model presets": "মডেল প্রিসেটগুলো আবিস্কার, ডাউনলোড এবং এক্সপ্লোর করুন",
 	"Discover, download, and explore model presets": "মডেল প্রিসেটগুলো আবিস্কার, ডাউনলোড এবং এক্সপ্লোর করুন",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "চ্যাটে 'আপনি'-র পরবর্তে ইউজারনেম দেখান",
 	"Display the username instead of You in the Chat": "চ্যাটে 'আপনি'-র পরবর্তে ইউজারনেম দেখান",
 	"Document": "ডকুমেন্ট",
 	"Document": "ডকুমেন্ট",
 	"Document Settings": "ডকুমেন্ট সেটিংসমূহ",
 	"Document Settings": "ডকুমেন্ট সেটিংসমূহ",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "ডকুমেন্টসমূহ ম্যাপিং এক্সপোর্ট করুন",
 	"Export Documents Mapping": "ডকুমেন্টসমূহ ম্যাপিং এক্সপোর্ট করুন",
 	"Export Models": "রপ্তানি মডেল",
 	"Export Models": "রপ্তানি মডেল",
 	"Export Prompts": "প্রম্পটগুলো একপোর্ট করুন",
 	"Export Prompts": "প্রম্পটগুলো একপোর্ট করুন",
+	"External Models": "",
 	"Failed to create API Key.": "API Key তৈরি করা যায়নি।",
 	"Failed to create API Key.": "API Key তৈরি করা যায়নি।",
 	"Failed to read clipboard contents": "ক্লিপবোর্ডের বিষয়বস্তু পড়া সম্ভব হয়নি",
 	"Failed to read clipboard contents": "ক্লিপবোর্ডের বিষয়বস্তু পড়া সম্ভব হয়নি",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "তথ্য",
 	"Info": "তথ্য",
 	"Input commands": "ইনপুট কমান্ডস",
 	"Input commands": "ইনপুট কমান্ডস",
 	"Install from Github URL": "Github URL থেকে ইনস্টল করুন",
 	"Install from Github URL": "Github URL থেকে ইনস্টল করুন",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "ইন্টারফেস",
 	"Interface": "ইন্টারফেস",
 	"Invalid Tag": "অবৈধ ট্যাগ",
 	"Invalid Tag": "অবৈধ ট্যাগ",
 	"January": "জানুয়ারী",
 	"January": "জানুয়ারী",
@@ -267,11 +275,12 @@
 	"Language": "ভাষা",
 	"Language": "ভাষা",
 	"Last Active": "সর্বশেষ সক্রিয়",
 	"Last Active": "সর্বশেষ সক্রিয়",
 	"Light": "লাইট",
 	"Light": "লাইট",
-	"Listening...": "শুনছে...",
 	"LLMs can make mistakes. Verify important information.": "LLM ভুল করতে পারে। গুরুত্বপূর্ণ তথ্য যাচাই করে নিন।",
 	"LLMs can make mistakes. Verify important information.": "LLM ভুল করতে পারে। গুরুত্বপূর্ণ তথ্য যাচাই করে নিন।",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "OpenWebUI কমিউনিটিকর্তৃক নির্মিত",
 	"Made by OpenWebUI Community": "OpenWebUI কমিউনিটিকর্তৃক নির্মিত",
 	"Make sure to enclose them with": "এটা দিয়ে বন্ধনী দিতে ভুলবেন না",
 	"Make sure to enclose them with": "এটা দিয়ে বন্ধনী দিতে ভুলবেন না",
+	"Manage": "",
 	"Manage Models": "মডেলসমূহ ব্যবস্থাপনা করুন",
 	"Manage Models": "মডেলসমূহ ব্যবস্থাপনা করুন",
 	"Manage Ollama Models": "Ollama মডেলসূহ ব্যবস্থাপনা করুন",
 	"Manage Ollama Models": "Ollama মডেলসূহ ব্যবস্থাপনা করুন",
 	"Manage Pipelines": "পাইপলাইন পরিচালনা করুন",
 	"Manage Pipelines": "পাইপলাইন পরিচালনা করুন",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "Ollama API নিষ্ক্রিয় করা হয়েছে",
 	"Ollama API disabled": "Ollama API নিষ্ক্রিয় করা হয়েছে",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Ollama ভার্সন",
 	"Ollama Version": "Ollama ভার্সন",
 	"On": "চালু",
 	"On": "চালু",
 	"Only": "শুধুমাত্র",
 	"Only": "শুধুমাত্র",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF ডকুমেন্ট (.pdf)",
 	"PDF document (.pdf)": "PDF ডকুমেন্ট (.pdf)",
 	"PDF Extract Images (OCR)": "পিডিএফ এর ছবি থেকে লেখা বের করুন (OCR)",
 	"PDF Extract Images (OCR)": "পিডিএফ এর ছবি থেকে লেখা বের করুন (OCR)",
 	"pending": "অপেক্ষমান",
 	"pending": "অপেক্ষমান",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "মাইক্রোফোন ব্যবহারের অনুমতি পাওয়া যায়নি: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "মাইক্রোফোন ব্যবহারের অনুমতি পাওয়া যায়নি: {{error}}",
 	"Personalization": "ডিজিটাল বাংলা",
 	"Personalization": "ডিজিটাল বাংলা",
 	"Pipelines": "পাইপলাইন",
 	"Pipelines": "পাইপলাইন",
@@ -367,6 +378,7 @@
 	"Read Aloud": "পড়াশোনা করুন",
 	"Read Aloud": "পড়াশোনা করুন",
 	"Record voice": "ভয়েস রেকর্ড করুন",
 	"Record voice": "ভয়েস রেকর্ড করুন",
 	"Redirecting you to OpenWebUI Community": "আপনাকে OpenWebUI কমিউনিটিতে পাঠানো হচ্ছে",
 	"Redirecting you to OpenWebUI Community": "আপনাকে OpenWebUI কমিউনিটিতে পাঠানো হচ্ছে",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "যদি উপযুক্ত নয়, তবে রেজিগেনেট করা হচ্ছে",
 	"Refused when it shouldn't have": "যদি উপযুক্ত নয়, তবে রেজিগেনেট করা হচ্ছে",
 	"Regenerate": "রেজিগেনেট করুন",
 	"Regenerate": "রেজিগেনেট করুন",
 	"Release Notes": "রিলিজ নোটসমূহ",
 	"Release Notes": "রিলিজ নোটসমূহ",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "রোজ পাইন",
 	"Rosé Pine": "রোজ পাইন",
 	"Rosé Pine Dawn": "ভোরের রোজ পাইন",
 	"Rosé Pine Dawn": "ভোরের রোজ পাইন",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "সংরক্ষণ",
 	"Save": "সংরক্ষণ",
 	"Save & Create": "সংরক্ষণ এবং তৈরি করুন",
 	"Save & Create": "সংরক্ষণ এবং তৈরি করুন",
 	"Save & Update": "সংরক্ষণ এবং আপডেট করুন",
 	"Save & Update": "সংরক্ষণ এবং আপডেট করুন",
@@ -407,12 +420,14 @@
 	"See what's new": "নতুন কী আছে দেখুন",
 	"See what's new": "নতুন কী আছে দেখুন",
 	"Seed": "সীড",
 	"Seed": "সীড",
 	"Select a base model": "একটি বেস মডেল নির্বাচন করুন",
 	"Select a base model": "একটি বেস মডেল নির্বাচন করুন",
+	"Select a engine": "",
 	"Select a mode": "একটি মডেল নির্বাচন করুন",
 	"Select a mode": "একটি মডেল নির্বাচন করুন",
 	"Select a model": "একটি মডেল নির্বাচন করুন",
 	"Select a model": "একটি মডেল নির্বাচন করুন",
 	"Select a pipeline": "একটি পাইপলাইন নির্বাচন করুন",
 	"Select a pipeline": "একটি পাইপলাইন নির্বাচন করুন",
 	"Select a pipeline url": "একটি পাইপলাইন URL নির্বাচন করুন",
 	"Select a pipeline url": "একটি পাইপলাইন URL নির্বাচন করুন",
 	"Select an Ollama instance": "একটি Ollama ইন্সট্যান্স নির্বাচন করুন",
 	"Select an Ollama instance": "একটি Ollama ইন্সট্যান্স নির্বাচন করুন",
 	"Select model": "মডেল নির্বাচন করুন",
 	"Select model": "মডেল নির্বাচন করুন",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "নির্বাচিত মডেল(গুলি) চিত্র ইনপুট সমর্থন করে না",
 	"Selected model(s) do not support image inputs": "নির্বাচিত মডেল(গুলি) চিত্র ইনপুট সমর্থন করে না",
 	"Send": "পাঠান",
 	"Send": "পাঠান",
 	"Send a Message": "একটি মেসেজ পাঠান",
 	"Send a Message": "একটি মেসেজ পাঠান",
@@ -449,7 +464,6 @@
 	"Source": "উৎস",
 	"Source": "উৎস",
 	"Speech recognition error: {{error}}": "স্পিচ রিকগনিশনে সমস্যা: {{error}}",
 	"Speech recognition error: {{error}}": "স্পিচ রিকগনিশনে সমস্যা: {{error}}",
 	"Speech-to-Text Engine": "স্পিচ-টু-টেক্সট ইঞ্জিন",
 	"Speech-to-Text Engine": "স্পিচ-টু-টেক্সট ইঞ্জিন",
-	"SpeechRecognition API is not supported in this browser.": "এই ব্রাউজার স্পিচরিকগনিশন এপিআই সাপোর্ট করে না।",
 	"Stop Sequence": "সিকোয়েন্স থামান",
 	"Stop Sequence": "সিকোয়েন্স থামান",
 	"STT Settings": "STT সেটিংস",
 	"STT Settings": "STT সেটিংস",
 	"Submit": "সাবমিট",
 	"Submit": "সাবমিট",
@@ -481,6 +495,7 @@
 	"to": "প্রতি",
 	"to": "প্রতি",
 	"To access the available model names for downloading,": "ডাউনলোডের জন্য এভেইলএবল মডেলের নামগুলো এক্সেস করতে,",
 	"To access the available model names for downloading,": "ডাউনলোডের জন্য এভেইলএবল মডেলের নামগুলো এক্সেস করতে,",
 	"To access the GGUF models available for downloading,": "ডাউলোডের জন্য এভেইলএবল GGUF মডেলগুলো এক্সেস করতে,",
 	"To access the GGUF models available for downloading,": "ডাউলোডের জন্য এভেইলএবল GGUF মডেলগুলো এক্সেস করতে,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "চ্যাট ইনপুটে",
 	"to chat input.": "চ্যাট ইনপুটে",
 	"Today": "আজ",
 	"Today": "আজ",
 	"Toggle settings": "সেটিংস টোগল",
 	"Toggle settings": "সেটিংস টোগল",
@@ -497,6 +512,7 @@
 	"Update password": "পাসওয়ার্ড আপডেট করুন",
 	"Update password": "পাসওয়ার্ড আপডেট করুন",
 	"Upload a GGUF model": "একটি GGUF মডেল আপলোড করুন",
 	"Upload a GGUF model": "একটি GGUF মডেল আপলোড করুন",
 	"Upload Files": "ফাইল আপলোড করুন",
 	"Upload Files": "ফাইল আপলোড করুন",
+	"Upload Pipeline": "",
 	"Upload Progress": "আপলোড হচ্ছে",
 	"Upload Progress": "আপলোড হচ্ছে",
 	"URL Mode": "ইউআরএল মোড",
 	"URL Mode": "ইউআরএল মোড",
 	"Use '#' in the prompt input to load and select your documents.": "আপনার ডকুমেন্টসমূহ নির্বাচন করার জন্য আপনার প্রম্পট ইনপুটে '# ব্যবহার করুন।",
 	"Use '#' in the prompt input to load and select your documents.": "আপনার ডকুমেন্টসমূহ নির্বাচন করার জন্য আপনার প্রম্পট ইনপুটে '# ব্যবহার করুন।",
@@ -515,6 +531,7 @@
 	"Warning": "সতর্কীকরণ",
 	"Warning": "সতর্কীকরণ",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "সতর্কীকরণ: আপনি যদি আপনার এম্বেডিং মডেল আপডেট বা পরিবর্তন করেন, তাহলে আপনাকে সমস্ত নথি পুনরায় আমদানি করতে হবে।.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "সতর্কীকরণ: আপনি যদি আপনার এম্বেডিং মডেল আপডেট বা পরিবর্তন করেন, তাহলে আপনাকে সমস্ত নথি পুনরায় আমদানি করতে হবে।.",
 	"Web": "ওয়েব",
 	"Web": "ওয়েব",
+	"Web API": "",
 	"Web Loader Settings": "ওয়েব লোডার সেটিংস",
 	"Web Loader Settings": "ওয়েব লোডার সেটিংস",
 	"Web Params": "ওয়েব প্যারামিটারসমূহ",
 	"Web Params": "ওয়েব প্যারামিটারসমূহ",
 	"Web Search": "ওয়েব অনুসন্ধান",
 	"Web Search": "ওয়েব অনুসন্ধান",
@@ -525,18 +542,19 @@
 	"WebUI will make requests to": "WebUI যেখানে রিকোয়েস্ট পাঠাবে",
 	"WebUI will make requests to": "WebUI যেখানে রিকোয়েস্ট পাঠাবে",
 	"What’s New in": "এতে নতুন কী",
 	"What’s New in": "এতে নতুন কী",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "যদি হিস্টোরি বন্ধ থাকে তাহলে এই ব্রাউজারের নতুন চ্যাটগুলো আপনার কোন ডিভাইসের হিস্টোরিতেই দেখা যাবে না।",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "যদি হিস্টোরি বন্ধ থাকে তাহলে এই ব্রাউজারের নতুন চ্যাটগুলো আপনার কোন ডিভাইসের হিস্টোরিতেই দেখা যাবে না।",
-	"Whisper (Local)": "Whisper (লোকাল)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "ওয়ার্কস্পেস",
 	"Workspace": "ওয়ার্কস্পেস",
 	"Write a prompt suggestion (e.g. Who are you?)": "একটি প্রম্পট সাজেশন লিখুন (যেমন Who are you?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "একটি প্রম্পট সাজেশন লিখুন (যেমন Who are you?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "৫০ শব্দের মধ্যে [topic or keyword] এর একটি সারসংক্ষেপ লিখুন।",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "৫০ শব্দের মধ্যে [topic or keyword] এর একটি সারসংক্ষেপ লিখুন।",
 	"Yesterday": "আগামী",
 	"Yesterday": "আগামী",
 	"You": "আপনি",
 	"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 clone a base model": "আপনি একটি বেস মডেল ক্লোন করতে পারবেন না",
 	"You cannot clone a base model": "আপনি একটি বেস মডেল ক্লোন করতে পারবেন না",
 	"You have no archived conversations.": "আপনার কোনও আর্কাইভ করা কথোপকথন নেই।",
 	"You have no archived conversations.": "আপনার কোনও আর্কাইভ করা কথোপকথন নেই।",
 	"You have shared this chat": "আপনি এই চ্যাটটি শেয়ার করেছেন",
 	"You have shared this chat": "আপনি এই চ্যাটটি শেয়ার করেছেন",
 	"You're a helpful assistant.": "আপনি একজন উপকারী এসিস্ট্যান্ট",
 	"You're a helpful assistant.": "আপনি একজন উপকারী এসিস্ট্যান্ট",
 	"You're now logged in.": "আপনি এখন লগইন করা অবস্থায় আছেন",
 	"You're now logged in.": "আপনি এখন লগইন করা অবস্থায় আছেন",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "YouTube",
 	"Youtube": "YouTube",
 	"Youtube Loader Settings": "YouTube লোডার সেটিংস"
 	"Youtube Loader Settings": "YouTube লোডার সেটিংস"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "un usuari",
 	"a user": "un usuari",
 	"About": "Sobre",
 	"About": "Sobre",
 	"Account": "Compte",
 	"Account": "Compte",
+	"Account Activation Pending": "",
 	"Accurate information": "Informació precisa",
 	"Accurate information": "Informació precisa",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Afegir",
 	"Add": "Afegir",
@@ -29,6 +30,7 @@
 	"Add User": "Afegir Usuari",
 	"Add User": "Afegir Usuari",
 	"Adjusting these settings will apply changes universally to all users.": "Ajustar aquests paràmetres aplicarà canvis de manera universal a tots els usuaris.",
 	"Adjusting these settings will apply changes universally to all users.": "Ajustar aquests paràmetres aplicarà canvis de manera universal a tots els usuaris.",
 	"admin": "administrador",
 	"admin": "administrador",
+	"Admin": "",
 	"Admin Panel": "Panell d'Administració",
 	"Admin Panel": "Panell d'Administració",
 	"Admin Settings": "Configuració d'Administració",
 	"Admin Settings": "Configuració d'Administració",
 	"Advanced Parameters": "Paràmetres Avançats",
 	"Advanced Parameters": "Paràmetres Avançats",
@@ -59,7 +61,6 @@
 	"Audio": "Àudio",
 	"Audio": "Àudio",
 	"August": "Agost",
 	"August": "Agost",
 	"Auto-playback response": "Resposta de reproducció automàtica",
 	"Auto-playback response": "Resposta de reproducció automàtica",
-	"Auto-send input after 3 sec.": "Enviar entrada automàticament després de 3 segons",
 	"AUTOMATIC1111 Base URL": "URL Base AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL": "URL Base AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL is required.": "Es requereix l'URL Base AUTOMATIC1111.",
 	"AUTOMATIC1111 Base URL is required.": "Es requereix l'URL Base AUTOMATIC1111.",
 	"available!": "disponible!",
 	"available!": "disponible!",
@@ -71,6 +72,7 @@
 	"Being lazy": "Ser l'estupidez",
 	"Being lazy": "Ser l'estupidez",
 	"Brave Search API Key": "Clau API Brave Search",
 	"Brave Search API Key": "Clau API Brave Search",
 	"Bypass SSL verification for Websites": "Desactivar la verificació SSL per a l'accés a l'Internet",
 	"Bypass SSL verification for Websites": "Desactivar la verificació SSL per a l'accés a l'Internet",
+	"Call": "",
 	"Cancel": "Cancel·la",
 	"Cancel": "Cancel·la",
 	"Capabilities": "Capacitats",
 	"Capabilities": "Capacitats",
 	"Change Password": "Canvia la Contrasenya",
 	"Change Password": "Canvia la Contrasenya",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Paràmetres de Blocs",
 	"Chunk Params": "Paràmetres de Blocs",
 	"Chunk Size": "Mida del Bloc",
 	"Chunk Size": "Mida del Bloc",
 	"Citation": "Citació",
 	"Citation": "Citació",
+	"Clear memory": "",
 	"Click here for help.": "Fes clic aquí per ajuda.",
 	"Click here for help.": "Fes clic aquí per ajuda.",
 	"Click here to": "Fes clic aquí per",
 	"Click here to": "Fes clic aquí per",
 	"Click here to select": "Fes clic aquí per seleccionar",
 	"Click here to select": "Fes clic aquí per seleccionar",
 	"Click here to select a csv file.": "Fes clic aquí per seleccionar un fitxer csv.",
 	"Click here to select a csv file.": "Fes clic aquí per seleccionar un fitxer csv.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Fes clic aquí per seleccionar documents.",
 	"Click here to select documents.": "Fes clic aquí per seleccionar documents.",
 	"click here.": "fes clic aquí.",
 	"click here.": "fes clic aquí.",
 	"Click on the user role button to change a user's role.": "Fes clic al botó de rol d'usuari per canviar el rol d'un usuari.",
 	"Click on the user role button to change a user's role.": "Fes clic al botó de rol d'usuari per canviar el rol d'un usuari.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Sol·licituds simultànies",
 	"Concurrent Requests": "Sol·licituds simultànies",
 	"Confirm Password": "Confirma la Contrasenya",
 	"Confirm Password": "Confirma la Contrasenya",
 	"Connections": "Connexions",
 	"Connections": "Connexions",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Contingut",
 	"Content": "Contingut",
 	"Context Length": "Longitud del Context",
 	"Context Length": "Longitud del Context",
 	"Continue Response": "Continua la Resposta",
 	"Continue Response": "Continua la Resposta",
-	"Conversation Mode": "Mode de Conversa",
 	"Copied shared chat URL to clipboard!": "S'ha copiat l'URL compartida al porta-retalls!",
 	"Copied shared chat URL to clipboard!": "S'ha copiat l'URL compartida al porta-retalls!",
 	"Copy": "Copiar",
 	"Copy": "Copiar",
 	"Copy last code block": "Copia l'últim bloc de codi",
 	"Copy last code block": "Copia l'últim bloc de codi",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Per defecte (Automatic1111)",
 	"Default (Automatic1111)": "Per defecte (Automatic1111)",
 	"Default (SentenceTransformers)": "Per defecte (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Per defecte (SentenceTransformers)",
 	"Default (Web API)": "Per defecte (Web API)",
 	"Default (Web API)": "Per defecte (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "Model per defecte",
 	"Default Model": "Model per defecte",
 	"Default model updated": "Model per defecte actualitzat",
 	"Default model updated": "Model per defecte actualitzat",
 	"Default Prompt Suggestions": "Suggeriments de Prompt Per Defecte",
 	"Default Prompt Suggestions": "Suggeriments de Prompt Per Defecte",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Descobreix un prompt",
 	"Discover a prompt": "Descobreix un prompt",
 	"Discover, download, and explore custom prompts": "Descobreix, descarrega i explora prompts personalitzats",
 	"Discover, download, and explore custom prompts": "Descobreix, descarrega i explora prompts personalitzats",
 	"Discover, download, and explore model presets": "Descobreix, descarrega i explora presets de models",
 	"Discover, download, and explore model presets": "Descobreix, descarrega i explora presets de models",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Mostra el nom d'usuari en lloc de 'Tu' al Xat",
 	"Display the username instead of You in the Chat": "Mostra el nom d'usuari en lloc de 'Tu' al Xat",
 	"Document": "Document",
 	"Document": "Document",
 	"Document Settings": "Configuració de Documents",
 	"Document Settings": "Configuració de Documents",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Exporta el Mapatge de Documents",
 	"Export Documents Mapping": "Exporta el Mapatge de Documents",
 	"Export Models": "Models d'exportació",
 	"Export Models": "Models d'exportació",
 	"Export Prompts": "Exporta Prompts",
 	"Export Prompts": "Exporta Prompts",
+	"External Models": "",
 	"Failed to create API Key.": "No s'ha pogut crear la clau d'API.",
 	"Failed to create API Key.": "No s'ha pogut crear la clau d'API.",
 	"Failed to read clipboard contents": "No s'ha pogut llegir el contingut del porta-retalls",
 	"Failed to read clipboard contents": "No s'ha pogut llegir el contingut del porta-retalls",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "Informació",
 	"Info": "Informació",
 	"Input commands": "Entra ordres",
 	"Input commands": "Entra ordres",
 	"Install from Github URL": "Instal·leu des de l'URL de Github",
 	"Install from Github URL": "Instal·leu des de l'URL de Github",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Interfície",
 	"Interface": "Interfície",
 	"Invalid Tag": "Etiqueta Inválida",
 	"Invalid Tag": "Etiqueta Inválida",
 	"January": "Gener",
 	"January": "Gener",
@@ -267,11 +275,12 @@
 	"Language": "Idioma",
 	"Language": "Idioma",
 	"Last Active": "Últim Actiu",
 	"Last Active": "Últim Actiu",
 	"Light": "Clar",
 	"Light": "Clar",
-	"Listening...": "Escoltant...",
 	"LLMs can make mistakes. Verify important information.": "Els LLMs poden cometre errors. Verifica la informació important.",
 	"LLMs can make mistakes. Verify important information.": "Els LLMs poden cometre errors. Verifica la informació important.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Creat per la Comunitat OpenWebUI",
 	"Made by OpenWebUI Community": "Creat per la Comunitat OpenWebUI",
 	"Make sure to enclose them with": "Assegura't d'envoltar-los amb",
 	"Make sure to enclose them with": "Assegura't d'envoltar-los amb",
+	"Manage": "",
 	"Manage Models": "Gestiona Models",
 	"Manage Models": "Gestiona Models",
 	"Manage Ollama Models": "Gestiona Models Ollama",
 	"Manage Ollama Models": "Gestiona Models Ollama",
 	"Manage Pipelines": "Gestionar canonades",
 	"Manage Pipelines": "Gestionar canonades",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "API d'Ollama",
 	"Ollama API": "API d'Ollama",
 	"Ollama API disabled": "L'API d'Ollama desactivada",
 	"Ollama API disabled": "L'API d'Ollama desactivada",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Versió d'Ollama",
 	"Ollama Version": "Versió d'Ollama",
 	"On": "Activat",
 	"On": "Activat",
 	"Only": "Només",
 	"Only": "Només",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "Document PDF (.pdf)",
 	"PDF document (.pdf)": "Document PDF (.pdf)",
 	"PDF Extract Images (OCR)": "Extreu Imatges de PDF (OCR)",
 	"PDF Extract Images (OCR)": "Extreu Imatges de PDF (OCR)",
 	"pending": "pendent",
 	"pending": "pendent",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Permís denegat en accedir al micròfon: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Permís denegat en accedir al micròfon: {{error}}",
 	"Personalization": "Personalització",
 	"Personalization": "Personalització",
 	"Pipelines": "Canonades",
 	"Pipelines": "Canonades",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Llegiu al voltant",
 	"Read Aloud": "Llegiu al voltant",
 	"Record voice": "Enregistra veu",
 	"Record voice": "Enregistra veu",
 	"Redirecting you to OpenWebUI Community": "Redirigint-te a la Comunitat OpenWebUI",
 	"Redirecting you to OpenWebUI Community": "Redirigint-te a la Comunitat OpenWebUI",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Refusat quan no hauria d'haver-ho",
 	"Refused when it shouldn't have": "Refusat quan no hauria d'haver-ho",
 	"Regenerate": "Regenerar",
 	"Regenerate": "Regenerar",
 	"Release Notes": "Notes de la Versió",
 	"Release Notes": "Notes de la Versió",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Albada Rosé Pine",
 	"Rosé Pine Dawn": "Albada Rosé Pine",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "Guarda",
 	"Save": "Guarda",
 	"Save & Create": "Guarda i Crea",
 	"Save & Create": "Guarda i Crea",
 	"Save & Update": "Guarda i Actualitza",
 	"Save & Update": "Guarda i Actualitza",
@@ -408,12 +421,14 @@
 	"See what's new": "Veure novetats",
 	"See what's new": "Veure novetats",
 	"Seed": "Llavor",
 	"Seed": "Llavor",
 	"Select a base model": "Seleccionar un model base",
 	"Select a base model": "Seleccionar un model base",
+	"Select a engine": "",
 	"Select a mode": "Selecciona un mode",
 	"Select a mode": "Selecciona un mode",
 	"Select a model": "Selecciona un model",
 	"Select a model": "Selecciona un model",
 	"Select a pipeline": "Seleccioneu una canonada",
 	"Select a pipeline": "Seleccioneu una canonada",
 	"Select a pipeline url": "Seleccionar un URL de canonada",
 	"Select a pipeline url": "Seleccionar un URL de canonada",
 	"Select an Ollama instance": "Selecciona una instància d'Ollama",
 	"Select an Ollama instance": "Selecciona una instància d'Ollama",
 	"Select model": "Selecciona un model",
 	"Select model": "Selecciona un model",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "Els models seleccionats no admeten l'entrada d'imatges",
 	"Selected model(s) do not support image inputs": "Els models seleccionats no admeten l'entrada d'imatges",
 	"Send": "Envia",
 	"Send": "Envia",
 	"Send a Message": "Envia un Missatge",
 	"Send a Message": "Envia un Missatge",
@@ -450,7 +465,6 @@
 	"Source": "Font",
 	"Source": "Font",
 	"Speech recognition error: {{error}}": "Error de reconeixement de veu: {{error}}",
 	"Speech recognition error: {{error}}": "Error de reconeixement de veu: {{error}}",
 	"Speech-to-Text Engine": "Motor de Veu a Text",
 	"Speech-to-Text Engine": "Motor de Veu a Text",
-	"SpeechRecognition API is not supported in this browser.": "L'API de Reconèixer Veu no és compatible amb aquest navegador.",
 	"Stop Sequence": "Atura Seqüència",
 	"Stop Sequence": "Atura Seqüència",
 	"STT Settings": "Configuracions STT",
 	"STT Settings": "Configuracions STT",
 	"Submit": "Envia",
 	"Submit": "Envia",
@@ -482,6 +496,7 @@
 	"to": "a",
 	"to": "a",
 	"To access the available model names for downloading,": "Per accedir als noms dels models disponibles per descarregar,",
 	"To access the available model names for downloading,": "Per accedir als noms dels models disponibles per descarregar,",
 	"To access the GGUF models available for downloading,": "Per accedir als models GGUF disponibles per descarregar,",
 	"To access the GGUF models available for downloading,": "Per accedir als models GGUF disponibles per descarregar,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "a l'entrada del xat.",
 	"to chat input.": "a l'entrada del xat.",
 	"Today": "Avui",
 	"Today": "Avui",
 	"Toggle settings": "Commuta configuracions",
 	"Toggle settings": "Commuta configuracions",
@@ -498,6 +513,7 @@
 	"Update password": "Actualitza contrasenya",
 	"Update password": "Actualitza contrasenya",
 	"Upload a GGUF model": "Puja un model GGUF",
 	"Upload a GGUF model": "Puja un model GGUF",
 	"Upload Files": "Pujar fitxers",
 	"Upload Files": "Pujar fitxers",
+	"Upload Pipeline": "",
 	"Upload Progress": "Progrés de Càrrega",
 	"Upload Progress": "Progrés de Càrrega",
 	"URL Mode": "Mode URL",
 	"URL Mode": "Mode URL",
 	"Use '#' in the prompt input to load and select your documents.": "Utilitza '#' a l'entrada del prompt per carregar i seleccionar els teus documents.",
 	"Use '#' in the prompt input to load and select your documents.": "Utilitza '#' a l'entrada del prompt per carregar i seleccionar els teus documents.",
@@ -516,6 +532,7 @@
 	"Warning": "Advertiment",
 	"Warning": "Advertiment",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Avís: Si actualitzeu o canvieu el model d'incrustació, haureu de tornar a importar tots els documents.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Avís: Si actualitzeu o canvieu el model d'incrustació, haureu de tornar a importar tots els documents.",
 	"Web": "Web",
 	"Web": "Web",
+	"Web API": "",
 	"Web Loader Settings": "Configuració del carregador web",
 	"Web Loader Settings": "Configuració del carregador web",
 	"Web Params": "Paràmetres web",
 	"Web Params": "Paràmetres web",
 	"Web Search": "Cercador web",
 	"Web Search": "Cercador web",
@@ -526,18 +543,19 @@
 	"WebUI will make requests to": "WebUI farà peticions a",
 	"WebUI will make requests to": "WebUI farà peticions a",
 	"What’s New in": "Què hi ha de Nou en",
 	"What’s New in": "Què hi ha de Nou en",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Quan l'historial està desactivat, els nous xats en aquest navegador no apareixeran en el teu historial en cap dels teus dispositius.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Quan l'historial està desactivat, els nous xats en aquest navegador no apareixeran en el teu historial en cap dels teus dispositius.",
-	"Whisper (Local)": "Whisper (Local)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "Treball",
 	"Workspace": "Treball",
 	"Write a prompt suggestion (e.g. Who are you?)": "Escriu una suggerència de prompt (p. ex. Qui ets tu?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Escriu una suggerència de prompt (p. ex. Qui ets tu?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Escriu un resum en 50 paraules que resumeixi [tema o paraula clau].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Escriu un resum en 50 paraules que resumeixi [tema o paraula clau].",
 	"Yesterday": "Ayer",
 	"Yesterday": "Ayer",
 	"You": "Tu",
 	"You": "Tu",
+	"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 clone a base model": "No es pot clonar un model base",
 	"You cannot clone a base model": "No es pot clonar un model base",
 	"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",
 	"You're a helpful assistant.": "Ets un assistent útil.",
 	"You're a helpful assistant.": "Ets un assistent útil.",
 	"You're now logged in.": "Ara estàs connectat.",
 	"You're now logged in.": "Ara estàs connectat.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Configuració del carregador de Youtube"
 	"Youtube Loader Settings": "Configuració del carregador de Youtube"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "usa ka user",
 	"a user": "usa ka user",
 	"About": "Mahitungod sa",
 	"About": "Mahitungod sa",
 	"Account": "Account",
 	"Account": "Account",
+	"Account Activation Pending": "",
 	"Accurate information": "",
 	"Accurate information": "",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "",
 	"Add": "",
@@ -29,6 +30,7 @@
 	"Add User": "",
 	"Add User": "",
 	"Adjusting these settings will apply changes universally to all users.": "Ang pag-adjust niini nga mga setting magamit ang mga pagbag-o sa tanan nga tiggamit.",
 	"Adjusting these settings will apply changes universally to all users.": "Ang pag-adjust niini nga mga setting magamit ang mga pagbag-o sa tanan nga tiggamit.",
 	"admin": "Administrator",
 	"admin": "Administrator",
+	"Admin": "",
 	"Admin Panel": "Admin Panel",
 	"Admin Panel": "Admin Panel",
 	"Admin Settings": "Mga setting sa administratibo",
 	"Admin Settings": "Mga setting sa administratibo",
 	"Advanced Parameters": "advanced settings",
 	"Advanced Parameters": "advanced settings",
@@ -59,7 +61,6 @@
 	"Audio": "Audio",
 	"Audio": "Audio",
 	"August": "",
 	"August": "",
 	"Auto-playback response": "Autoplay nga tubag",
 	"Auto-playback response": "Autoplay nga tubag",
-	"Auto-send input after 3 sec.": "Awtomatikong ipadala ang entry pagkahuman sa 3 segundos.",
 	"AUTOMATIC1111 Base URL": "Base URL AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL": "Base URL AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL is required.": "Ang AUTOMATIC1111 base URL gikinahanglan.",
 	"AUTOMATIC1111 Base URL is required.": "Ang AUTOMATIC1111 base URL gikinahanglan.",
 	"available!": "magamit!",
 	"available!": "magamit!",
@@ -71,6 +72,7 @@
 	"Being lazy": "",
 	"Being lazy": "",
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
 	"Bypass SSL verification for Websites": "",
 	"Bypass SSL verification for Websites": "",
+	"Call": "",
 	"Cancel": "Pagkanselar",
 	"Cancel": "Pagkanselar",
 	"Capabilities": "",
 	"Capabilities": "",
 	"Change Password": "Usba ang password",
 	"Change Password": "Usba ang password",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Mga Setting sa Block",
 	"Chunk Params": "Mga Setting sa Block",
 	"Chunk Size": "Gidak-on sa block",
 	"Chunk Size": "Gidak-on sa block",
 	"Citation": "Mga kinutlo",
 	"Citation": "Mga kinutlo",
+	"Clear memory": "",
 	"Click here for help.": "I-klik dinhi alang sa tabang.",
 	"Click here for help.": "I-klik dinhi alang sa tabang.",
 	"Click here to": "",
 	"Click here to": "",
 	"Click here to select": "I-klik dinhi aron makapili",
 	"Click here to select": "I-klik dinhi aron makapili",
 	"Click here to select a csv file.": "",
 	"Click here to select a csv file.": "",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Pag-klik dinhi aron mapili ang mga dokumento.",
 	"Click here to select documents.": "Pag-klik dinhi aron mapili ang mga dokumento.",
 	"click here.": "I-klik dinhi.",
 	"click here.": "I-klik dinhi.",
 	"Click on the user role button to change a user's role.": "I-klik ang User Role button aron usbon ang role sa user.",
 	"Click on the user role button to change a user's role.": "I-klik ang User Role button aron usbon ang role sa user.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "",
 	"Concurrent Requests": "",
 	"Confirm Password": "Kumpirma ang password",
 	"Confirm Password": "Kumpirma ang password",
 	"Connections": "Mga koneksyon",
 	"Connections": "Mga koneksyon",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Kontento",
 	"Content": "Kontento",
 	"Context Length": "Ang gitas-on sa konteksto",
 	"Context Length": "Ang gitas-on sa konteksto",
 	"Continue Response": "",
 	"Continue Response": "",
-	"Conversation Mode": "Talk mode",
 	"Copied shared chat URL to clipboard!": "",
 	"Copied shared chat URL to clipboard!": "",
 	"Copy": "",
 	"Copy": "",
 	"Copy last code block": "Kopyaha ang katapusang bloke sa code",
 	"Copy last code block": "Kopyaha ang katapusang bloke sa code",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Default (Awtomatiko1111)",
 	"Default (Automatic1111)": "Default (Awtomatiko1111)",
 	"Default (SentenceTransformers)": "",
 	"Default (SentenceTransformers)": "",
 	"Default (Web API)": "Default (Web API)",
 	"Default (Web API)": "Default (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "",
 	"Default Model": "",
 	"Default model updated": "Gi-update nga default template",
 	"Default model updated": "Gi-update nga default template",
 	"Default Prompt Suggestions": "Default nga prompt nga mga sugyot",
 	"Default Prompt Suggestions": "Default nga prompt nga mga sugyot",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Pagkaplag usa ka prompt",
 	"Discover a prompt": "Pagkaplag usa ka prompt",
 	"Discover, download, and explore custom prompts": "Pagdiskubre, pag-download ug pagsuhid sa mga naandan nga pag-aghat",
 	"Discover, download, and explore custom prompts": "Pagdiskubre, pag-download ug pagsuhid sa mga naandan nga pag-aghat",
 	"Discover, download, and explore model presets": "Pagdiskobre, pag-download, ug pagsuhid sa mga preset sa template",
 	"Discover, download, and explore model presets": "Pagdiskobre, pag-download, ug pagsuhid sa mga preset sa template",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Ipakita ang username imbes nga 'Ikaw' sa Panaghisgutan",
 	"Display the username instead of You in the Chat": "Ipakita ang username imbes nga 'Ikaw' sa Panaghisgutan",
 	"Document": "Dokumento",
 	"Document": "Dokumento",
 	"Document Settings": "Mga Setting sa Dokumento",
 	"Document Settings": "Mga Setting sa Dokumento",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "I-export ang pagmapa sa dokumento",
 	"Export Documents Mapping": "I-export ang pagmapa sa dokumento",
 	"Export Models": "",
 	"Export Models": "",
 	"Export Prompts": "Export prompts",
 	"Export Prompts": "Export prompts",
+	"External Models": "",
 	"Failed to create API Key.": "",
 	"Failed to create API Key.": "",
 	"Failed to read clipboard contents": "Napakyas sa pagbasa sa sulod sa clipboard",
 	"Failed to read clipboard contents": "Napakyas sa pagbasa sa sulod sa clipboard",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "",
 	"Info": "",
 	"Input commands": "Pagsulod sa input commands",
 	"Input commands": "Pagsulod sa input commands",
 	"Install from Github URL": "",
 	"Install from Github URL": "",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Interface",
 	"Interface": "Interface",
 	"Invalid Tag": "",
 	"Invalid Tag": "",
 	"January": "",
 	"January": "",
@@ -267,11 +275,12 @@
 	"Language": "Pinulongan",
 	"Language": "Pinulongan",
 	"Last Active": "",
 	"Last Active": "",
 	"Light": "Kahayag",
 	"Light": "Kahayag",
-	"Listening...": "Paminaw...",
 	"LLMs can make mistakes. Verify important information.": "Ang mga LLM mahimong masayop. ",
 	"LLMs can make mistakes. Verify important information.": "Ang mga LLM mahimong masayop. ",
+	"Local Models": "",
 	"LTR": "",
 	"LTR": "",
 	"Made by OpenWebUI Community": "Gihimo sa komunidad sa OpenWebUI",
 	"Made by OpenWebUI Community": "Gihimo sa komunidad sa OpenWebUI",
 	"Make sure to enclose them with": "Siguruha nga palibutan sila",
 	"Make sure to enclose them with": "Siguruha nga palibutan sila",
+	"Manage": "",
 	"Manage Models": "Pagdumala sa mga templates",
 	"Manage Models": "Pagdumala sa mga templates",
 	"Manage Ollama Models": "Pagdumala sa mga modelo sa Ollama",
 	"Manage Ollama Models": "Pagdumala sa mga modelo sa Ollama",
 	"Manage Pipelines": "",
 	"Manage Pipelines": "",
@@ -323,6 +332,7 @@
 	"Ollama": "",
 	"Ollama": "",
 	"Ollama API": "",
 	"Ollama API": "",
 	"Ollama API disabled": "",
 	"Ollama API disabled": "",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Ollama nga bersyon",
 	"Ollama Version": "Ollama nga bersyon",
 	"On": "Gipaandar",
 	"On": "Gipaandar",
 	"Only": "Lamang",
 	"Only": "Lamang",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "",
 	"PDF document (.pdf)": "",
 	"PDF Extract Images (OCR)": "PDF Image Extraction (OCR)",
 	"PDF Extract Images (OCR)": "PDF Image Extraction (OCR)",
 	"pending": "gipugngan",
 	"pending": "gipugngan",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Gidili ang pagtugot sa dihang nag-access sa mikropono: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Gidili ang pagtugot sa dihang nag-access sa mikropono: {{error}}",
 	"Personalization": "",
 	"Personalization": "",
 	"Pipelines": "",
 	"Pipelines": "",
@@ -367,6 +378,7 @@
 	"Read Aloud": "",
 	"Read Aloud": "",
 	"Record voice": "Irekord ang tingog",
 	"Record voice": "Irekord ang tingog",
 	"Redirecting you to OpenWebUI Community": "Gi-redirect ka sa komunidad sa OpenWebUI",
 	"Redirecting you to OpenWebUI Community": "Gi-redirect ka sa komunidad sa OpenWebUI",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "",
 	"Refused when it shouldn't have": "",
 	"Regenerate": "",
 	"Regenerate": "",
 	"Release Notes": "Release Notes",
 	"Release Notes": "Release Notes",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Aube Pine Rosé",
 	"Rosé Pine Dawn": "Aube Pine Rosé",
 	"RTL": "",
 	"RTL": "",
+	"Running": "",
 	"Save": "Tipigi",
 	"Save": "Tipigi",
 	"Save & Create": "I-save ug Paghimo",
 	"Save & Create": "I-save ug Paghimo",
 	"Save & Update": "I-save ug I-update",
 	"Save & Update": "I-save ug I-update",
@@ -407,12 +420,14 @@
 	"See what's new": "Tan-awa unsay bag-o",
 	"See what's new": "Tan-awa unsay bag-o",
 	"Seed": "Binhi",
 	"Seed": "Binhi",
 	"Select a base model": "",
 	"Select a base model": "",
+	"Select a engine": "",
 	"Select a mode": "Pagpili og mode",
 	"Select a mode": "Pagpili og mode",
 	"Select a model": "Pagpili og modelo",
 	"Select a model": "Pagpili og modelo",
 	"Select a pipeline": "",
 	"Select a pipeline": "",
 	"Select a pipeline url": "",
 	"Select a pipeline url": "",
 	"Select an Ollama instance": "Pagpili usa ka pananglitan sa Ollama",
 	"Select an Ollama instance": "Pagpili usa ka pananglitan sa Ollama",
 	"Select model": "Pagpili og modelo",
 	"Select model": "Pagpili og modelo",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "",
 	"Selected model(s) do not support image inputs": "",
 	"Send": "",
 	"Send": "",
 	"Send a Message": "Magpadala ug mensahe",
 	"Send a Message": "Magpadala ug mensahe",
@@ -449,7 +464,6 @@
 	"Source": "Tinubdan",
 	"Source": "Tinubdan",
 	"Speech recognition error: {{error}}": "Sayop sa pag-ila sa tingog: {{error}}",
 	"Speech recognition error: {{error}}": "Sayop sa pag-ila sa tingog: {{error}}",
 	"Speech-to-Text Engine": "Engine sa pag-ila sa tingog",
 	"Speech-to-Text Engine": "Engine sa pag-ila sa tingog",
-	"SpeechRecognition API is not supported in this browser.": "Ang SpeechRecognition API wala gisuportahan niini nga browser.",
 	"Stop Sequence": "Pagkasunod-sunod sa pagsira",
 	"Stop Sequence": "Pagkasunod-sunod sa pagsira",
 	"STT Settings": "Mga setting sa STT",
 	"STT Settings": "Mga setting sa STT",
 	"Submit": "Isumite",
 	"Submit": "Isumite",
@@ -481,6 +495,7 @@
 	"to": "adunay",
 	"to": "adunay",
 	"To access the available model names for downloading,": "Aron ma-access ang mga ngalan sa modelo nga ma-download,",
 	"To access the available model names for downloading,": "Aron ma-access ang mga ngalan sa modelo nga ma-download,",
 	"To access the GGUF models available for downloading,": "Aron ma-access ang mga modelo sa GGUF nga magamit alang sa pag-download,",
 	"To access the GGUF models available for downloading,": "Aron ma-access ang mga modelo sa GGUF nga magamit alang sa pag-download,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "sa entrada sa iring.",
 	"to chat input.": "sa entrada sa iring.",
 	"Today": "",
 	"Today": "",
 	"Toggle settings": "I-toggle ang mga setting",
 	"Toggle settings": "I-toggle ang mga setting",
@@ -497,6 +512,7 @@
 	"Update password": "I-update ang password",
 	"Update password": "I-update ang password",
 	"Upload a GGUF model": "Pag-upload ug modelo sa GGUF",
 	"Upload a GGUF model": "Pag-upload ug modelo sa GGUF",
 	"Upload Files": "",
 	"Upload Files": "",
+	"Upload Pipeline": "",
 	"Upload Progress": "Pag-uswag sa Pag-upload",
 	"Upload Progress": "Pag-uswag sa Pag-upload",
 	"URL Mode": "URL mode",
 	"URL Mode": "URL mode",
 	"Use '#' in the prompt input to load and select your documents.": "Gamita ang '#' sa dali nga pagsulod aron makarga ug mapili ang imong mga dokumento.",
 	"Use '#' in the prompt input to load and select your documents.": "Gamita ang '#' sa dali nga pagsulod aron makarga ug mapili ang imong mga dokumento.",
@@ -515,6 +531,7 @@
 	"Warning": "",
 	"Warning": "",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
 	"Web": "Web",
 	"Web": "Web",
+	"Web API": "",
 	"Web Loader Settings": "",
 	"Web Loader Settings": "",
 	"Web Params": "",
 	"Web Params": "",
 	"Web Search": "",
 	"Web Search": "",
@@ -525,18 +542,19 @@
 	"WebUI will make requests to": "Ang WebUI maghimo mga hangyo sa",
 	"WebUI will make requests to": "Ang WebUI maghimo mga hangyo sa",
 	"What’s New in": "Unsay bag-o sa",
 	"What’s New in": "Unsay bag-o sa",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Kung ang kasaysayan gipalong, ang mga bag-ong chat sa kini nga browser dili makita sa imong kasaysayan sa bisan unsang mga aparato.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Kung ang kasaysayan gipalong, ang mga bag-ong chat sa kini nga browser dili makita sa imong kasaysayan sa bisan unsang mga aparato.",
-	"Whisper (Local)": "Whisper (Lokal)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "",
 	"Workspace": "",
 	"Write a prompt suggestion (e.g. Who are you?)": "Pagsulat og gisugyot nga prompt (eg. Kinsa ka?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Pagsulat og gisugyot nga prompt (eg. Kinsa ka?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Pagsulat og 50 ka pulong nga summary nga nagsumaryo [topic o keyword].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Pagsulat og 50 ka pulong nga summary nga nagsumaryo [topic o keyword].",
 	"Yesterday": "",
 	"Yesterday": "",
 	"You": "",
 	"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 clone a base model": "",
 	"You cannot clone a base model": "",
 	"You have no archived conversations.": "",
 	"You have no archived conversations.": "",
 	"You have shared this chat": "",
 	"You have shared this chat": "",
 	"You're a helpful assistant.": "Usa ka ka mapuslanon nga katabang",
 	"You're a helpful assistant.": "Usa ka ka mapuslanon nga katabang",
 	"You're now logged in.": "Konektado ka na karon.",
 	"You're now logged in.": "Konektado ka na karon.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "",
 	"Youtube": "",
 	"Youtube Loader Settings": ""
 	"Youtube Loader Settings": ""
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "ein Benutzer",
 	"a user": "ein Benutzer",
 	"About": "Über",
 	"About": "Über",
 	"Account": "Account",
 	"Account": "Account",
+	"Account Activation Pending": "",
 	"Accurate information": "Genaue Information",
 	"Accurate information": "Genaue Information",
 	"Active Users": "Aktive Benutzer",
 	"Active Users": "Aktive Benutzer",
 	"Add": "Hinzufügen",
 	"Add": "Hinzufügen",
@@ -22,7 +23,6 @@
 	"Add custom prompt": "Eigenen Prompt hinzufügen",
 	"Add custom prompt": "Eigenen Prompt hinzufügen",
 	"Add Docs": "Dokumente hinzufügen",
 	"Add Docs": "Dokumente hinzufügen",
 	"Add Files": "Dateien hinzufügen",
 	"Add Files": "Dateien hinzufügen",
-	"Add memory": "Memory hinzufügen",
 	"Add Memory": "Speicher hinzufügen",
 	"Add Memory": "Speicher hinzufügen",
 	"Add message": "Nachricht eingeben",
 	"Add message": "Nachricht eingeben",
 	"Add Model": "Modell hinzufügen",
 	"Add Model": "Modell hinzufügen",
@@ -30,6 +30,7 @@
 	"Add User": "User hinzufügen",
 	"Add User": "User hinzufügen",
 	"Adjusting these settings will apply changes universally to all users.": "Das Anpassen dieser Einstellungen wirkt sich universell auf alle Benutzer aus.",
 	"Adjusting these settings will apply changes universally to all users.": "Das Anpassen dieser Einstellungen wirkt sich universell auf alle Benutzer aus.",
 	"admin": "Administrator",
 	"admin": "Administrator",
+	"Admin": "",
 	"Admin Panel": "Admin Panel",
 	"Admin Panel": "Admin Panel",
 	"Admin Settings": "Admin Einstellungen",
 	"Admin Settings": "Admin Einstellungen",
 	"Advanced Parameters": "Erweiterte Parameter",
 	"Advanced Parameters": "Erweiterte Parameter",
@@ -60,7 +61,6 @@
 	"Audio": "Audio",
 	"Audio": "Audio",
 	"August": "August",
 	"August": "August",
 	"Auto-playback response": "Automatische Wiedergabe der Antwort",
 	"Auto-playback response": "Automatische Wiedergabe der Antwort",
-	"Auto-send input after 3 sec.": "Automatisches Senden der Eingabe nach 3 Sek",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Basis URL",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Basis URL",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Basis URL wird benötigt",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Basis URL wird benötigt",
 	"available!": "verfügbar!",
 	"available!": "verfügbar!",
@@ -72,6 +72,7 @@
 	"Being lazy": "Faul sein",
 	"Being lazy": "Faul sein",
 	"Brave Search API Key": "API-Schlüssel für die Brave-Suche",
 	"Brave Search API Key": "API-Schlüssel für die Brave-Suche",
 	"Bypass SSL verification for Websites": "Bypass SSL-Verifizierung für Websites",
 	"Bypass SSL verification for Websites": "Bypass SSL-Verifizierung für Websites",
+	"Call": "",
 	"Cancel": "Abbrechen",
 	"Cancel": "Abbrechen",
 	"Capabilities": "Fähigkeiten",
 	"Capabilities": "Fähigkeiten",
 	"Change Password": "Passwort ändern",
 	"Change Password": "Passwort ändern",
@@ -94,6 +95,7 @@
 	"Click here to": "Klicke hier, um",
 	"Click here to": "Klicke hier, um",
 	"Click here to select": "Klicke hier um auszuwählen",
 	"Click here to select": "Klicke hier um auszuwählen",
 	"Click here to select a csv file.": "Klicke hier um eine CSV-Datei auszuwählen.",
 	"Click here to select a csv file.": "Klicke hier um eine CSV-Datei auszuwählen.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Klicke hier um Dokumente auszuwählen",
 	"Click here to select documents.": "Klicke hier um Dokumente auszuwählen",
 	"click here.": "hier klicken.",
 	"click here.": "hier klicken.",
 	"Click on the user role button to change a user's role.": "Klicke auf die Benutzerrollenschaltfläche, um die Rolle eines Benutzers zu ändern.",
 	"Click on the user role button to change a user's role.": "Klicke auf die Benutzerrollenschaltfläche, um die Rolle eines Benutzers zu ändern.",
@@ -107,10 +109,10 @@
 	"Concurrent Requests": "Gleichzeitige Anforderungen",
 	"Concurrent Requests": "Gleichzeitige Anforderungen",
 	"Confirm Password": "Passwort bestätigen",
 	"Confirm Password": "Passwort bestätigen",
 	"Connections": "Verbindungen",
 	"Connections": "Verbindungen",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Info",
 	"Content": "Info",
 	"Context Length": "Context Length",
 	"Context Length": "Context Length",
 	"Continue Response": "Antwort fortsetzen",
 	"Continue Response": "Antwort fortsetzen",
-	"Conversation Mode": "Konversationsmodus",
 	"Copied shared chat URL to clipboard!": "Geteilte Chat-URL in die Zwischenablage kopiert!",
 	"Copied shared chat URL to clipboard!": "Geteilte Chat-URL in die Zwischenablage kopiert!",
 	"Copy": "Kopieren",
 	"Copy": "Kopieren",
 	"Copy last code block": "Letzten Codeblock kopieren",
 	"Copy last code block": "Letzten Codeblock kopieren",
@@ -124,7 +126,6 @@
 	"Create new secret key": "Neuen API Schlüssel erstellen",
 	"Create new secret key": "Neuen API Schlüssel erstellen",
 	"Created at": "Erstellt am",
 	"Created at": "Erstellt am",
 	"Created At": "Erstellt am",
 	"Created At": "Erstellt am",
-	"Created by": "Erstellt von",
 	"Current Model": "Aktuelles Modell",
 	"Current Model": "Aktuelles Modell",
 	"Current Password": "Aktuelles Passwort",
 	"Current Password": "Aktuelles Passwort",
 	"Custom": "Benutzerdefiniert",
 	"Custom": "Benutzerdefiniert",
@@ -136,6 +137,7 @@
 	"Default (Automatic1111)": "Standard (Automatic1111)",
 	"Default (Automatic1111)": "Standard (Automatic1111)",
 	"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
 	"Default (Web API)": "Standard (Web-API)",
 	"Default (Web API)": "Standard (Web-API)",
+	"Default (Whisper)": "",
 	"Default Model": "Standardmodell",
 	"Default Model": "Standardmodell",
 	"Default model updated": "Standardmodell aktualisiert",
 	"Default model updated": "Standardmodell aktualisiert",
 	"Default Prompt Suggestions": "Standard-Prompt-Vorschläge",
 	"Default Prompt Suggestions": "Standard-Prompt-Vorschläge",
@@ -217,6 +219,7 @@
 	"Export Documents Mapping": "Dokumentenmapping exportieren",
 	"Export Documents Mapping": "Dokumentenmapping exportieren",
 	"Export Models": "Modelle exportieren",
 	"Export Models": "Modelle exportieren",
 	"Export Prompts": "Prompts exportieren",
 	"Export Prompts": "Prompts exportieren",
+	"External Models": "",
 	"Failed to create API Key.": "API Key erstellen fehlgeschlagen",
 	"Failed to create API Key.": "API Key erstellen fehlgeschlagen",
 	"Failed to read clipboard contents": "Fehler beim Lesen des Zwischenablageninhalts",
 	"Failed to read clipboard contents": "Fehler beim Lesen des Zwischenablageninhalts",
 	"Failed to update settings": "Fehler beim Aktualisieren der Einstellungen",
 	"Failed to update settings": "Fehler beim Aktualisieren der Einstellungen",
@@ -256,6 +259,7 @@
 	"Info": "Info",
 	"Info": "Info",
 	"Input commands": "Eingabebefehle",
 	"Input commands": "Eingabebefehle",
 	"Install from Github URL": "Installieren Sie von der Github-URL",
 	"Install from Github URL": "Installieren Sie von der Github-URL",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Benutzeroberfläche",
 	"Interface": "Benutzeroberfläche",
 	"Invalid Tag": "Ungültiger Tag",
 	"Invalid Tag": "Ungültiger Tag",
 	"January": "Januar",
 	"January": "Januar",
@@ -271,8 +275,8 @@
 	"Language": "Sprache",
 	"Language": "Sprache",
 	"Last Active": "Zuletzt aktiv",
 	"Last Active": "Zuletzt aktiv",
 	"Light": "Hell",
 	"Light": "Hell",
-	"Listening...": "Hören...",
 	"LLMs can make mistakes. Verify important information.": "LLMs können Fehler machen. Überprüfe wichtige Informationen.",
 	"LLMs can make mistakes. Verify important information.": "LLMs können Fehler machen. Überprüfe wichtige Informationen.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Von der OpenWebUI-Community",
 	"Made by OpenWebUI Community": "Von der OpenWebUI-Community",
 	"Make sure to enclose them with": "Formatiere deine Variablen mit:",
 	"Make sure to enclose them with": "Formatiere deine Variablen mit:",
@@ -328,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama-API",
 	"Ollama API": "Ollama-API",
 	"Ollama API disabled": "Ollama-API deaktiviert",
 	"Ollama API disabled": "Ollama-API deaktiviert",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Ollama-Version",
 	"Ollama Version": "Ollama-Version",
 	"On": "Ein",
 	"On": "Ein",
 	"Only": "Nur",
 	"Only": "Nur",
@@ -350,6 +355,7 @@
 	"PDF document (.pdf)": "PDF-Dokument (.pdf)",
 	"PDF document (.pdf)": "PDF-Dokument (.pdf)",
 	"PDF Extract Images (OCR)": "Text von Bildern aus PDFs extrahieren (OCR)",
 	"PDF Extract Images (OCR)": "Text von Bildern aus PDFs extrahieren (OCR)",
 	"pending": "ausstehend",
 	"pending": "ausstehend",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Zugriff auf das Mikrofon verweigert: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Zugriff auf das Mikrofon verweigert: {{error}}",
 	"Personalization": "Personalisierung",
 	"Personalization": "Personalisierung",
 	"Pipelines": "Pipelines",
 	"Pipelines": "Pipelines",
@@ -357,8 +363,8 @@
 	"Plain text (.txt)": "Nur Text (.txt)",
 	"Plain text (.txt)": "Nur Text (.txt)",
 	"Playground": "Testumgebung",
 	"Playground": "Testumgebung",
 	"Positive attitude": "Positive Einstellung",
 	"Positive attitude": "Positive Einstellung",
-	"Previous 7 days": "Vorherige 7 Tage",
 	"Previous 30 days": "Vorherige 30 Tage",
 	"Previous 30 days": "Vorherige 30 Tage",
+	"Previous 7 days": "Vorherige 7 Tage",
 	"Profile Image": "Profilbild",
 	"Profile Image": "Profilbild",
 	"Prompt": "Prompt",
 	"Prompt": "Prompt",
 	"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (z.B. Erzähle mir eine interessante Tatsache über das Römische Reich.",
 	"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (z.B. Erzähle mir eine interessante Tatsache über das Römische Reich.",
@@ -372,6 +378,7 @@
 	"Read Aloud": "Vorlesen",
 	"Read Aloud": "Vorlesen",
 	"Record voice": "Stimme aufnehmen",
 	"Record voice": "Stimme aufnehmen",
 	"Redirecting you to OpenWebUI Community": "Du wirst zur OpenWebUI-Community weitergeleitet",
 	"Redirecting you to OpenWebUI Community": "Du wirst zur OpenWebUI-Community weitergeleitet",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Abgelehnt, obwohl es nicht hätte sein sollen.",
 	"Refused when it shouldn't have": "Abgelehnt, obwohl es nicht hätte sein sollen.",
 	"Regenerate": "Neu generieren",
 	"Regenerate": "Neu generieren",
 	"Release Notes": "Versionshinweise",
 	"Release Notes": "Versionshinweise",
@@ -420,6 +427,7 @@
 	"Select a pipeline url": "Auswählen einer Pipeline-URL",
 	"Select a pipeline url": "Auswählen einer Pipeline-URL",
 	"Select an Ollama instance": "Eine Ollama Instanz auswählen",
 	"Select an Ollama instance": "Eine Ollama Instanz auswählen",
 	"Select model": "Modell auswählen",
 	"Select model": "Modell auswählen",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "Ausgewählte Modelle unterstützen keine Bildeingaben",
 	"Selected model(s) do not support image inputs": "Ausgewählte Modelle unterstützen keine Bildeingaben",
 	"Send": "Senden",
 	"Send": "Senden",
 	"Send a Message": "Eine Nachricht senden",
 	"Send a Message": "Eine Nachricht senden",
@@ -456,7 +464,6 @@
 	"Source": "Quellen",
 	"Source": "Quellen",
 	"Speech recognition error: {{error}}": "Spracherkennungsfehler: {{error}}",
 	"Speech recognition error: {{error}}": "Spracherkennungsfehler: {{error}}",
 	"Speech-to-Text Engine": "Sprache-zu-Text-Engine",
 	"Speech-to-Text Engine": "Sprache-zu-Text-Engine",
-	"SpeechRecognition API is not supported in this browser.": "Die Spracherkennungs-API wird in diesem Browser nicht unterstützt.",
 	"Stop Sequence": "Stop Sequence",
 	"Stop Sequence": "Stop Sequence",
 	"STT Settings": "STT-Einstellungen",
 	"STT Settings": "STT-Einstellungen",
 	"Submit": "Senden",
 	"Submit": "Senden",
@@ -488,6 +495,7 @@
 	"to": "für",
 	"to": "für",
 	"To access the available model names for downloading,": "Um auf die verfügbaren Modellnamen zum Herunterladen zuzugreifen,",
 	"To access the available model names for downloading,": "Um auf die verfügbaren Modellnamen zum Herunterladen zuzugreifen,",
 	"To access the GGUF models available for downloading,": "Um auf die verfügbaren GGUF Modelle zum Herunterladen zuzugreifen",
 	"To access the GGUF models available for downloading,": "Um auf die verfügbaren GGUF Modelle zum Herunterladen zuzugreifen",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "to chat input.",
 	"to chat input.": "to chat input.",
 	"Today": "Heute",
 	"Today": "Heute",
 	"Toggle settings": "Einstellungen umschalten",
 	"Toggle settings": "Einstellungen umschalten",
@@ -504,6 +512,7 @@
 	"Update password": "Passwort aktualisieren",
 	"Update password": "Passwort aktualisieren",
 	"Upload a GGUF model": "GGUF Model hochladen",
 	"Upload a GGUF model": "GGUF Model hochladen",
 	"Upload Files": "Dateien hochladen",
 	"Upload Files": "Dateien hochladen",
+	"Upload Pipeline": "",
 	"Upload Progress": "Upload Progress",
 	"Upload Progress": "Upload Progress",
 	"URL Mode": "URL Modus",
 	"URL Mode": "URL Modus",
 	"Use '#' in the prompt input to load and select your documents.": "Verwende '#' in der Prompt-Eingabe, um deine Dokumente zu laden und auszuwählen.",
 	"Use '#' in the prompt input to load and select your documents.": "Verwende '#' in der Prompt-Eingabe, um deine Dokumente zu laden und auszuwählen.",
@@ -522,6 +531,7 @@
 	"Warning": "Warnung",
 	"Warning": "Warnung",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Warnung: Wenn du dein Einbettungsmodell aktualisierst oder änderst, musst du alle Dokumente erneut importieren.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Warnung: Wenn du dein Einbettungsmodell aktualisierst oder änderst, musst du alle Dokumente erneut importieren.",
 	"Web": "Web",
 	"Web": "Web",
+	"Web API": "",
 	"Web Loader Settings": "Web Loader Einstellungen",
 	"Web Loader Settings": "Web Loader Einstellungen",
 	"Web Params": "Web Parameter",
 	"Web Params": "Web Parameter",
 	"Web Search": "Websuche",
 	"Web Search": "Websuche",
@@ -532,7 +542,6 @@
 	"WebUI will make requests to": "Wenn aktiviert sendet WebUI externe Anfragen an",
 	"WebUI will make requests to": "Wenn aktiviert sendet WebUI externe Anfragen an",
 	"What’s New in": "Was gibt's Neues in",
 	"What’s New in": "Was gibt's Neues in",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Wenn die Historie ausgeschaltet ist, werden neue Chats nicht in deiner Historie auf deine Geräte angezeigt.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Wenn die Historie ausgeschaltet ist, werden neue Chats nicht in deiner Historie auf deine Geräte angezeigt.",
-	"Whisper (Local)": "Whisper (Lokal)",
 	"Widescreen Mode": "Widescreen Modus",
 	"Widescreen Mode": "Widescreen Modus",
 	"Workspace": "Arbeitsbereich",
 	"Workspace": "Arbeitsbereich",
 	"Write a prompt suggestion (e.g. Who are you?)": "Gebe einen Prompt-Vorschlag ein (z.B. Wer bist du?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Gebe einen Prompt-Vorschlag ein (z.B. Wer bist du?)",
@@ -545,6 +554,7 @@
 	"You have shared this chat": "Du hast diesen Chat",
 	"You have shared this chat": "Du hast diesen Chat",
 	"You're a helpful assistant.": "Du bist ein hilfreicher Assistent.",
 	"You're a helpful assistant.": "Du bist ein hilfreicher Assistent.",
 	"You're now logged in.": "Du bist nun eingeloggt.",
 	"You're now logged in.": "Du bist nun eingeloggt.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "YouTube",
 	"Youtube": "YouTube",
 	"Youtube Loader Settings": "YouTube-Ladeeinstellungen"
 	"Youtube Loader Settings": "YouTube-Ladeeinstellungen"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "such user",
 	"a user": "such user",
 	"About": "Much About",
 	"About": "Much About",
 	"Account": "Account",
 	"Account": "Account",
+	"Account Activation Pending": "",
 	"Accurate information": "",
 	"Accurate information": "",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "",
 	"Add": "",
@@ -29,6 +30,7 @@
 	"Add User": "",
 	"Add User": "",
 	"Adjusting these settings will apply changes universally to all users.": "Adjusting these settings will apply changes to all users. Such universal, very wow.",
 	"Adjusting these settings will apply changes universally to all users.": "Adjusting these settings will apply changes to all users. Such universal, very wow.",
 	"admin": "admin",
 	"admin": "admin",
+	"Admin": "",
 	"Admin Panel": "Admin Panel",
 	"Admin Panel": "Admin Panel",
 	"Admin Settings": "Admin Settings",
 	"Admin Settings": "Admin Settings",
 	"Advanced Parameters": "Advanced Parameters",
 	"Advanced Parameters": "Advanced Parameters",
@@ -59,7 +61,6 @@
 	"Audio": "Audio",
 	"Audio": "Audio",
 	"August": "",
 	"August": "",
 	"Auto-playback response": "Auto-playback response",
 	"Auto-playback response": "Auto-playback response",
-	"Auto-send input after 3 sec.": "Auto-send after 3 sec.",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Base URL",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Base URL",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Base URL is required.",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Base URL is required.",
 	"available!": "available! So excite!",
 	"available!": "available! So excite!",
@@ -71,6 +72,7 @@
 	"Being lazy": "",
 	"Being lazy": "",
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
 	"Bypass SSL verification for Websites": "",
 	"Bypass SSL verification for Websites": "",
+	"Call": "",
 	"Cancel": "Cancel",
 	"Cancel": "Cancel",
 	"Capabilities": "",
 	"Capabilities": "",
 	"Change Password": "Change Password",
 	"Change Password": "Change Password",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Chunk Params",
 	"Chunk Params": "Chunk Params",
 	"Chunk Size": "Chunk Size",
 	"Chunk Size": "Chunk Size",
 	"Citation": "",
 	"Citation": "",
+	"Clear memory": "",
 	"Click here for help.": "Click for help. Much assist.",
 	"Click here for help.": "Click for help. Much assist.",
 	"Click here to": "",
 	"Click here to": "",
 	"Click here to select": "Click to select",
 	"Click here to select": "Click to select",
 	"Click here to select a csv file.": "",
 	"Click here to select a csv file.": "",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Click to select documents",
 	"Click here to select documents.": "Click to select documents",
 	"click here.": "click here. Such click.",
 	"click here.": "click here. Such click.",
 	"Click on the user role button to change a user's role.": "Click user role button to change role.",
 	"Click on the user role button to change a user's role.": "Click user role button to change role.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "",
 	"Concurrent Requests": "",
 	"Confirm Password": "Confirm Password",
 	"Confirm Password": "Confirm Password",
 	"Connections": "Connections",
 	"Connections": "Connections",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Content",
 	"Content": "Content",
 	"Context Length": "Context Length",
 	"Context Length": "Context Length",
 	"Continue Response": "",
 	"Continue Response": "",
-	"Conversation Mode": "Conversation Mode",
 	"Copied shared chat URL to clipboard!": "",
 	"Copied shared chat URL to clipboard!": "",
 	"Copy": "",
 	"Copy": "",
 	"Copy last code block": "Copy last code block",
 	"Copy last code block": "Copy last code block",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Default (Automatic1111)",
 	"Default (Automatic1111)": "Default (Automatic1111)",
 	"Default (SentenceTransformers)": "",
 	"Default (SentenceTransformers)": "",
 	"Default (Web API)": "Default (Web API)",
 	"Default (Web API)": "Default (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "",
 	"Default Model": "",
 	"Default model updated": "Default model much updated",
 	"Default model updated": "Default model much updated",
 	"Default Prompt Suggestions": "Default Prompt Suggestions",
 	"Default Prompt Suggestions": "Default Prompt Suggestions",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Discover a prompt",
 	"Discover a prompt": "Discover a prompt",
 	"Discover, download, and explore custom prompts": "Discover, download, and explore custom prompts",
 	"Discover, download, and explore custom prompts": "Discover, download, and explore custom prompts",
 	"Discover, download, and explore model presets": "Discover, download, and explore model presets",
 	"Discover, download, and explore model presets": "Discover, download, and explore model presets",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Display username instead of You in Chat",
 	"Display the username instead of You in the Chat": "Display username instead of You in Chat",
 	"Document": "Document",
 	"Document": "Document",
 	"Document Settings": "Document Settings",
 	"Document Settings": "Document Settings",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Export Mappings of Dogos",
 	"Export Documents Mapping": "Export Mappings of Dogos",
 	"Export Models": "",
 	"Export Models": "",
 	"Export Prompts": "Export Promptos",
 	"Export Prompts": "Export Promptos",
+	"External Models": "",
 	"Failed to create API Key.": "",
 	"Failed to create API Key.": "",
 	"Failed to read clipboard contents": "Failed to read clipboard borks",
 	"Failed to read clipboard contents": "Failed to read clipboard borks",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "",
 	"Info": "",
 	"Input commands": "Input commands",
 	"Input commands": "Input commands",
 	"Install from Github URL": "",
 	"Install from Github URL": "",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Interface",
 	"Interface": "Interface",
 	"Invalid Tag": "",
 	"Invalid Tag": "",
 	"January": "",
 	"January": "",
@@ -267,11 +275,12 @@
 	"Language": "Doge Speak",
 	"Language": "Doge Speak",
 	"Last Active": "",
 	"Last Active": "",
 	"Light": "Light",
 	"Light": "Light",
-	"Listening...": "Listening...",
 	"LLMs can make mistakes. Verify important information.": "LLMs can make borks. Verify important info.",
 	"LLMs can make mistakes. Verify important information.": "LLMs can make borks. Verify important info.",
+	"Local Models": "",
 	"LTR": "",
 	"LTR": "",
 	"Made by OpenWebUI Community": "Made by OpenWebUI Community",
 	"Made by OpenWebUI Community": "Made by OpenWebUI Community",
 	"Make sure to enclose them with": "Make sure to enclose them with",
 	"Make sure to enclose them with": "Make sure to enclose them with",
+	"Manage": "",
 	"Manage Models": "Manage Wowdels",
 	"Manage Models": "Manage Wowdels",
 	"Manage Ollama Models": "Manage Ollama Wowdels",
 	"Manage Ollama Models": "Manage Ollama Wowdels",
 	"Manage Pipelines": "",
 	"Manage Pipelines": "",
@@ -323,6 +332,7 @@
 	"Ollama": "",
 	"Ollama": "",
 	"Ollama API": "",
 	"Ollama API": "",
 	"Ollama API disabled": "",
 	"Ollama API disabled": "",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Ollama Version",
 	"Ollama Version": "Ollama Version",
 	"On": "On",
 	"On": "On",
 	"Only": "Only",
 	"Only": "Only",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "",
 	"PDF document (.pdf)": "",
 	"PDF Extract Images (OCR)": "PDF Extract Wowmages (OCR)",
 	"PDF Extract Images (OCR)": "PDF Extract Wowmages (OCR)",
 	"pending": "pending",
 	"pending": "pending",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Permission denied when accessing microphone: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Permission denied when accessing microphone: {{error}}",
 	"Personalization": "Personalization",
 	"Personalization": "Personalization",
 	"Pipelines": "",
 	"Pipelines": "",
@@ -367,6 +378,7 @@
 	"Read Aloud": "",
 	"Read Aloud": "",
 	"Record voice": "Record Bark",
 	"Record voice": "Record Bark",
 	"Redirecting you to OpenWebUI Community": "Redirecting you to OpenWebUI Community",
 	"Redirecting you to OpenWebUI Community": "Redirecting you to OpenWebUI Community",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "",
 	"Refused when it shouldn't have": "",
 	"Regenerate": "",
 	"Regenerate": "",
 	"Release Notes": "Release Borks",
 	"Release Notes": "Release Borks",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "",
 	"RTL": "",
+	"Running": "",
 	"Save": "Save much wow",
 	"Save": "Save much wow",
 	"Save & Create": "Save & Create much create",
 	"Save & Create": "Save & Create much create",
 	"Save & Update": "Save & Update much update",
 	"Save & Update": "Save & Update much update",
@@ -407,12 +420,14 @@
 	"See what's new": "See what's new so amaze",
 	"See what's new": "See what's new so amaze",
 	"Seed": "Seed very plant",
 	"Seed": "Seed very plant",
 	"Select a base model": "",
 	"Select a base model": "",
+	"Select a engine": "",
 	"Select a mode": "Select a mode very choose",
 	"Select a mode": "Select a mode very choose",
 	"Select a model": "Select a model much choice",
 	"Select a model": "Select a model much choice",
 	"Select a pipeline": "",
 	"Select a pipeline": "",
 	"Select a pipeline url": "",
 	"Select a pipeline url": "",
 	"Select an Ollama instance": "Select an Ollama instance very choose",
 	"Select an Ollama instance": "Select an Ollama instance very choose",
 	"Select model": "Select model much choice",
 	"Select model": "Select model much choice",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "",
 	"Selected model(s) do not support image inputs": "",
 	"Send": "",
 	"Send": "",
 	"Send a Message": "Send a Message much message",
 	"Send a Message": "Send a Message much message",
@@ -449,7 +464,6 @@
 	"Source": "Source",
 	"Source": "Source",
 	"Speech recognition error: {{error}}": "Speech recognition error: {{error}} so error",
 	"Speech recognition error: {{error}}": "Speech recognition error: {{error}} so error",
 	"Speech-to-Text Engine": "Speech-to-Text Engine much speak",
 	"Speech-to-Text Engine": "Speech-to-Text Engine much speak",
-	"SpeechRecognition API is not supported in this browser.": "SpeechRecognition API is not supported in this browser. Much sad.",
 	"Stop Sequence": "Stop Sequence much stop",
 	"Stop Sequence": "Stop Sequence much stop",
 	"STT Settings": "STT Settings very settings",
 	"STT Settings": "STT Settings very settings",
 	"Submit": "Submit much submit",
 	"Submit": "Submit much submit",
@@ -481,6 +495,7 @@
 	"to": "to very to",
 	"to": "to very to",
 	"To access the available model names for downloading,": "To access the available model names for downloading, much access",
 	"To access the available model names for downloading,": "To access the available model names for downloading, much access",
 	"To access the GGUF models available for downloading,": "To access the GGUF models available for downloading, much access",
 	"To access the GGUF models available for downloading,": "To access the GGUF models available for downloading, much access",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "to chat input. Very chat.",
 	"to chat input.": "to chat input. Very chat.",
 	"Today": "",
 	"Today": "",
 	"Toggle settings": "Toggle settings much toggle",
 	"Toggle settings": "Toggle settings much toggle",
@@ -497,6 +512,7 @@
 	"Update password": "Update password much change",
 	"Update password": "Update password much change",
 	"Upload a GGUF model": "Upload a GGUF model very upload",
 	"Upload a GGUF model": "Upload a GGUF model very upload",
 	"Upload Files": "",
 	"Upload Files": "",
+	"Upload Pipeline": "",
 	"Upload Progress": "Upload Progress much progress",
 	"Upload Progress": "Upload Progress much progress",
 	"URL Mode": "URL Mode much mode",
 	"URL Mode": "URL Mode much mode",
 	"Use '#' in the prompt input to load and select your documents.": "Use '#' in the prompt input to load and select your documents. Much use.",
 	"Use '#' in the prompt input to load and select your documents.": "Use '#' in the prompt input to load and select your documents. Much use.",
@@ -515,6 +531,7 @@
 	"Warning": "",
 	"Warning": "",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
 	"Web": "Web very web",
 	"Web": "Web very web",
+	"Web API": "",
 	"Web Loader Settings": "",
 	"Web Loader Settings": "",
 	"Web Params": "",
 	"Web Params": "",
 	"Web Search": "",
 	"Web Search": "",
@@ -525,18 +542,19 @@
 	"WebUI will make requests to": "WebUI will make requests to much request",
 	"WebUI will make requests to": "WebUI will make requests to much request",
 	"What’s New in": "What’s New in much new",
 	"What’s New in": "What’s New in much new",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "When history is turned off, new chats on this browser won't appear in your history on any of your devices. Much history.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "When history is turned off, new chats on this browser won't appear in your history on any of your devices. Much history.",
-	"Whisper (Local)": "Whisper (Local) much whisper",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "",
 	"Workspace": "",
 	"Write a prompt suggestion (e.g. Who are you?)": "Write a prompt suggestion (e.g. Who are you?) much suggest",
 	"Write a prompt suggestion (e.g. Who are you?)": "Write a prompt suggestion (e.g. Who are you?) much suggest",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Write a summary in 50 words that summarizes [topic or keyword]. Much summarize.",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Write a summary in 50 words that summarizes [topic or keyword]. Much summarize.",
 	"Yesterday": "",
 	"Yesterday": "",
 	"You": "",
 	"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 clone a base model": "",
 	"You cannot clone a base model": "",
 	"You have no archived conversations.": "",
 	"You have no archived conversations.": "",
 	"You have shared this chat": "",
 	"You have shared this chat": "",
 	"You're a helpful assistant.": "You're a helpful assistant. Much helpful.",
 	"You're a helpful assistant.": "You're a helpful assistant. Much helpful.",
 	"You're now logged in.": "You're now logged in. Much logged.",
 	"You're now logged in.": "You're now logged in. Much logged.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "",
 	"Youtube": "",
 	"Youtube Loader Settings": ""
 	"Youtube Loader Settings": ""
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "",
 	"a user": "",
 	"About": "",
 	"About": "",
 	"Account": "",
 	"Account": "",
+	"Account Activation Pending": "",
 	"Accurate information": "",
 	"Accurate information": "",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "",
 	"Add": "",
@@ -29,6 +30,7 @@
 	"Add User": "",
 	"Add User": "",
 	"Adjusting these settings will apply changes universally to all users.": "",
 	"Adjusting these settings will apply changes universally to all users.": "",
 	"admin": "",
 	"admin": "",
+	"Admin": "",
 	"Admin Panel": "",
 	"Admin Panel": "",
 	"Admin Settings": "",
 	"Admin Settings": "",
 	"Advanced Parameters": "",
 	"Advanced Parameters": "",
@@ -59,7 +61,6 @@
 	"Audio": "",
 	"Audio": "",
 	"August": "",
 	"August": "",
 	"Auto-playback response": "",
 	"Auto-playback response": "",
-	"Auto-send input after 3 sec.": "",
 	"AUTOMATIC1111 Base URL": "",
 	"AUTOMATIC1111 Base URL": "",
 	"AUTOMATIC1111 Base URL is required.": "",
 	"AUTOMATIC1111 Base URL is required.": "",
 	"available!": "",
 	"available!": "",
@@ -71,6 +72,7 @@
 	"Being lazy": "",
 	"Being lazy": "",
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
 	"Bypass SSL verification for Websites": "",
 	"Bypass SSL verification for Websites": "",
+	"Call": "",
 	"Cancel": "",
 	"Cancel": "",
 	"Capabilities": "",
 	"Capabilities": "",
 	"Change Password": "",
 	"Change Password": "",
@@ -88,10 +90,12 @@
 	"Chunk Params": "",
 	"Chunk Params": "",
 	"Chunk Size": "",
 	"Chunk Size": "",
 	"Citation": "",
 	"Citation": "",
+	"Clear memory": "",
 	"Click here for help.": "",
 	"Click here for help.": "",
 	"Click here to": "",
 	"Click here to": "",
 	"Click here to select": "",
 	"Click here to select": "",
 	"Click here to select a csv file.": "",
 	"Click here to select a csv file.": "",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "",
 	"Click here to select documents.": "",
 	"click here.": "",
 	"click here.": "",
 	"Click on the user role button to change a user's role.": "",
 	"Click on the user role button to change a user's role.": "",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "",
 	"Concurrent Requests": "",
 	"Confirm Password": "",
 	"Confirm Password": "",
 	"Connections": "",
 	"Connections": "",
+	"Contact Admin for WebUI Access": "",
 	"Content": "",
 	"Content": "",
 	"Context Length": "",
 	"Context Length": "",
 	"Continue Response": "",
 	"Continue Response": "",
-	"Conversation Mode": "",
 	"Copied shared chat URL to clipboard!": "",
 	"Copied shared chat URL to clipboard!": "",
 	"Copy": "",
 	"Copy": "",
 	"Copy last code block": "",
 	"Copy last code block": "",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "",
 	"Default (Automatic1111)": "",
 	"Default (SentenceTransformers)": "",
 	"Default (SentenceTransformers)": "",
 	"Default (Web API)": "",
 	"Default (Web API)": "",
+	"Default (Whisper)": "",
 	"Default Model": "",
 	"Default Model": "",
 	"Default model updated": "",
 	"Default model updated": "",
 	"Default Prompt Suggestions": "",
 	"Default Prompt Suggestions": "",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "",
 	"Discover a prompt": "",
 	"Discover, download, and explore custom prompts": "",
 	"Discover, download, and explore custom prompts": "",
 	"Discover, download, and explore model presets": "",
 	"Discover, download, and explore model presets": "",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "",
 	"Display the username instead of You in the Chat": "",
 	"Document": "",
 	"Document": "",
 	"Document Settings": "",
 	"Document Settings": "",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "",
 	"Export Documents Mapping": "",
 	"Export Models": "",
 	"Export Models": "",
 	"Export Prompts": "",
 	"Export Prompts": "",
+	"External Models": "",
 	"Failed to create API Key.": "",
 	"Failed to create API Key.": "",
 	"Failed to read clipboard contents": "",
 	"Failed to read clipboard contents": "",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "",
 	"Info": "",
 	"Input commands": "",
 	"Input commands": "",
 	"Install from Github URL": "",
 	"Install from Github URL": "",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "",
 	"Interface": "",
 	"Invalid Tag": "",
 	"Invalid Tag": "",
 	"January": "",
 	"January": "",
@@ -267,11 +275,12 @@
 	"Language": "",
 	"Language": "",
 	"Last Active": "",
 	"Last Active": "",
 	"Light": "",
 	"Light": "",
-	"Listening...": "",
 	"LLMs can make mistakes. Verify important information.": "",
 	"LLMs can make mistakes. Verify important information.": "",
+	"Local Models": "",
 	"LTR": "",
 	"LTR": "",
 	"Made by OpenWebUI Community": "",
 	"Made by OpenWebUI Community": "",
 	"Make sure to enclose them with": "",
 	"Make sure to enclose them with": "",
+	"Manage": "",
 	"Manage Models": "",
 	"Manage Models": "",
 	"Manage Ollama Models": "",
 	"Manage Ollama Models": "",
 	"Manage Pipelines": "",
 	"Manage Pipelines": "",
@@ -323,6 +332,7 @@
 	"Ollama": "",
 	"Ollama": "",
 	"Ollama API": "",
 	"Ollama API": "",
 	"Ollama API disabled": "",
 	"Ollama API disabled": "",
+	"Ollama API is disabled": "",
 	"Ollama Version": "",
 	"Ollama Version": "",
 	"On": "",
 	"On": "",
 	"Only": "",
 	"Only": "",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "",
 	"PDF document (.pdf)": "",
 	"PDF Extract Images (OCR)": "",
 	"PDF Extract Images (OCR)": "",
 	"pending": "",
 	"pending": "",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "",
 	"Permission denied when accessing microphone: {{error}}": "",
 	"Personalization": "",
 	"Personalization": "",
 	"Pipelines": "",
 	"Pipelines": "",
@@ -367,6 +378,7 @@
 	"Read Aloud": "",
 	"Read Aloud": "",
 	"Record voice": "",
 	"Record voice": "",
 	"Redirecting you to OpenWebUI Community": "",
 	"Redirecting you to OpenWebUI Community": "",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "",
 	"Refused when it shouldn't have": "",
 	"Regenerate": "",
 	"Regenerate": "",
 	"Release Notes": "",
 	"Release Notes": "",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "",
 	"Rosé Pine": "",
 	"Rosé Pine Dawn": "",
 	"Rosé Pine Dawn": "",
 	"RTL": "",
 	"RTL": "",
+	"Running": "",
 	"Save": "",
 	"Save": "",
 	"Save & Create": "",
 	"Save & Create": "",
 	"Save & Update": "",
 	"Save & Update": "",
@@ -407,12 +420,14 @@
 	"See what's new": "",
 	"See what's new": "",
 	"Seed": "",
 	"Seed": "",
 	"Select a base model": "",
 	"Select a base model": "",
+	"Select a engine": "",
 	"Select a mode": "",
 	"Select a mode": "",
 	"Select a model": "",
 	"Select a model": "",
 	"Select a pipeline": "",
 	"Select a pipeline": "",
 	"Select a pipeline url": "",
 	"Select a pipeline url": "",
 	"Select an Ollama instance": "",
 	"Select an Ollama instance": "",
 	"Select model": "",
 	"Select model": "",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "",
 	"Selected model(s) do not support image inputs": "",
 	"Send": "",
 	"Send": "",
 	"Send a Message": "",
 	"Send a Message": "",
@@ -449,7 +464,6 @@
 	"Source": "",
 	"Source": "",
 	"Speech recognition error: {{error}}": "",
 	"Speech recognition error: {{error}}": "",
 	"Speech-to-Text Engine": "",
 	"Speech-to-Text Engine": "",
-	"SpeechRecognition API is not supported in this browser.": "",
 	"Stop Sequence": "",
 	"Stop Sequence": "",
 	"STT Settings": "",
 	"STT Settings": "",
 	"Submit": "",
 	"Submit": "",
@@ -481,6 +495,7 @@
 	"to": "",
 	"to": "",
 	"To access the available model names for downloading,": "",
 	"To access the available model names for downloading,": "",
 	"To access the GGUF models available for downloading,": "",
 	"To access the GGUF models available for downloading,": "",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "",
 	"to chat input.": "",
 	"Today": "",
 	"Today": "",
 	"Toggle settings": "",
 	"Toggle settings": "",
@@ -497,6 +512,7 @@
 	"Update password": "",
 	"Update password": "",
 	"Upload a GGUF model": "",
 	"Upload a GGUF model": "",
 	"Upload Files": "",
 	"Upload Files": "",
+	"Upload Pipeline": "",
 	"Upload Progress": "",
 	"Upload Progress": "",
 	"URL Mode": "",
 	"URL Mode": "",
 	"Use '#' in the prompt input to load and select your documents.": "",
 	"Use '#' in the prompt input to load and select your documents.": "",
@@ -515,6 +531,7 @@
 	"Warning": "",
 	"Warning": "",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
 	"Web": "",
 	"Web": "",
+	"Web API": "",
 	"Web Loader Settings": "",
 	"Web Loader Settings": "",
 	"Web Params": "",
 	"Web Params": "",
 	"Web Search": "",
 	"Web Search": "",
@@ -525,18 +542,19 @@
 	"WebUI will make requests to": "",
 	"WebUI will make requests to": "",
 	"What’s New in": "",
 	"What’s New in": "",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "",
-	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "",
 	"Workspace": "",
 	"Write a prompt suggestion (e.g. Who are you?)": "",
 	"Write a prompt suggestion (e.g. Who are you?)": "",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "",
 	"Yesterday": "",
 	"Yesterday": "",
 	"You": "",
 	"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 clone a base model": "",
 	"You cannot clone a base model": "",
 	"You have no archived conversations.": "",
 	"You have no archived conversations.": "",
 	"You have shared this chat": "",
 	"You have shared this chat": "",
 	"You're a helpful assistant.": "",
 	"You're a helpful assistant.": "",
 	"You're now logged in.": "",
 	"You're now logged in.": "",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "",
 	"Youtube": "",
 	"Youtube Loader Settings": ""
 	"Youtube Loader Settings": ""
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "",
 	"a user": "",
 	"About": "",
 	"About": "",
 	"Account": "",
 	"Account": "",
+	"Account Activation Pending": "",
 	"Accurate information": "",
 	"Accurate information": "",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "",
 	"Add": "",
@@ -29,6 +30,7 @@
 	"Add User": "",
 	"Add User": "",
 	"Adjusting these settings will apply changes universally to all users.": "",
 	"Adjusting these settings will apply changes universally to all users.": "",
 	"admin": "",
 	"admin": "",
+	"Admin": "",
 	"Admin Panel": "",
 	"Admin Panel": "",
 	"Admin Settings": "",
 	"Admin Settings": "",
 	"Advanced Parameters": "",
 	"Advanced Parameters": "",
@@ -59,7 +61,6 @@
 	"Audio": "",
 	"Audio": "",
 	"August": "",
 	"August": "",
 	"Auto-playback response": "",
 	"Auto-playback response": "",
-	"Auto-send input after 3 sec.": "",
 	"AUTOMATIC1111 Base URL": "",
 	"AUTOMATIC1111 Base URL": "",
 	"AUTOMATIC1111 Base URL is required.": "",
 	"AUTOMATIC1111 Base URL is required.": "",
 	"available!": "",
 	"available!": "",
@@ -71,6 +72,7 @@
 	"Being lazy": "",
 	"Being lazy": "",
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
 	"Bypass SSL verification for Websites": "",
 	"Bypass SSL verification for Websites": "",
+	"Call": "",
 	"Cancel": "",
 	"Cancel": "",
 	"Capabilities": "",
 	"Capabilities": "",
 	"Change Password": "",
 	"Change Password": "",
@@ -88,10 +90,12 @@
 	"Chunk Params": "",
 	"Chunk Params": "",
 	"Chunk Size": "",
 	"Chunk Size": "",
 	"Citation": "",
 	"Citation": "",
+	"Clear memory": "",
 	"Click here for help.": "",
 	"Click here for help.": "",
 	"Click here to": "",
 	"Click here to": "",
 	"Click here to select": "",
 	"Click here to select": "",
 	"Click here to select a csv file.": "",
 	"Click here to select a csv file.": "",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "",
 	"Click here to select documents.": "",
 	"click here.": "",
 	"click here.": "",
 	"Click on the user role button to change a user's role.": "",
 	"Click on the user role button to change a user's role.": "",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "",
 	"Concurrent Requests": "",
 	"Confirm Password": "",
 	"Confirm Password": "",
 	"Connections": "",
 	"Connections": "",
+	"Contact Admin for WebUI Access": "",
 	"Content": "",
 	"Content": "",
 	"Context Length": "",
 	"Context Length": "",
 	"Continue Response": "",
 	"Continue Response": "",
-	"Conversation Mode": "",
 	"Copied shared chat URL to clipboard!": "",
 	"Copied shared chat URL to clipboard!": "",
 	"Copy": "",
 	"Copy": "",
 	"Copy last code block": "",
 	"Copy last code block": "",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "",
 	"Default (Automatic1111)": "",
 	"Default (SentenceTransformers)": "",
 	"Default (SentenceTransformers)": "",
 	"Default (Web API)": "",
 	"Default (Web API)": "",
+	"Default (Whisper)": "",
 	"Default Model": "",
 	"Default Model": "",
 	"Default model updated": "",
 	"Default model updated": "",
 	"Default Prompt Suggestions": "",
 	"Default Prompt Suggestions": "",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "",
 	"Discover a prompt": "",
 	"Discover, download, and explore custom prompts": "",
 	"Discover, download, and explore custom prompts": "",
 	"Discover, download, and explore model presets": "",
 	"Discover, download, and explore model presets": "",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "",
 	"Display the username instead of You in the Chat": "",
 	"Document": "",
 	"Document": "",
 	"Document Settings": "",
 	"Document Settings": "",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "",
 	"Export Documents Mapping": "",
 	"Export Models": "",
 	"Export Models": "",
 	"Export Prompts": "",
 	"Export Prompts": "",
+	"External Models": "",
 	"Failed to create API Key.": "",
 	"Failed to create API Key.": "",
 	"Failed to read clipboard contents": "",
 	"Failed to read clipboard contents": "",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "",
 	"Info": "",
 	"Input commands": "",
 	"Input commands": "",
 	"Install from Github URL": "",
 	"Install from Github URL": "",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "",
 	"Interface": "",
 	"Invalid Tag": "",
 	"Invalid Tag": "",
 	"January": "",
 	"January": "",
@@ -267,11 +275,12 @@
 	"Language": "",
 	"Language": "",
 	"Last Active": "",
 	"Last Active": "",
 	"Light": "",
 	"Light": "",
-	"Listening...": "",
 	"LLMs can make mistakes. Verify important information.": "",
 	"LLMs can make mistakes. Verify important information.": "",
+	"Local Models": "",
 	"LTR": "",
 	"LTR": "",
 	"Made by OpenWebUI Community": "",
 	"Made by OpenWebUI Community": "",
 	"Make sure to enclose them with": "",
 	"Make sure to enclose them with": "",
+	"Manage": "",
 	"Manage Models": "",
 	"Manage Models": "",
 	"Manage Ollama Models": "",
 	"Manage Ollama Models": "",
 	"Manage Pipelines": "",
 	"Manage Pipelines": "",
@@ -323,6 +332,7 @@
 	"Ollama": "",
 	"Ollama": "",
 	"Ollama API": "",
 	"Ollama API": "",
 	"Ollama API disabled": "",
 	"Ollama API disabled": "",
+	"Ollama API is disabled": "",
 	"Ollama Version": "",
 	"Ollama Version": "",
 	"On": "",
 	"On": "",
 	"Only": "",
 	"Only": "",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "",
 	"PDF document (.pdf)": "",
 	"PDF Extract Images (OCR)": "",
 	"PDF Extract Images (OCR)": "",
 	"pending": "",
 	"pending": "",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "",
 	"Permission denied when accessing microphone: {{error}}": "",
 	"Personalization": "",
 	"Personalization": "",
 	"Pipelines": "",
 	"Pipelines": "",
@@ -367,6 +378,7 @@
 	"Read Aloud": "",
 	"Read Aloud": "",
 	"Record voice": "",
 	"Record voice": "",
 	"Redirecting you to OpenWebUI Community": "",
 	"Redirecting you to OpenWebUI Community": "",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "",
 	"Refused when it shouldn't have": "",
 	"Regenerate": "",
 	"Regenerate": "",
 	"Release Notes": "",
 	"Release Notes": "",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "",
 	"Rosé Pine": "",
 	"Rosé Pine Dawn": "",
 	"Rosé Pine Dawn": "",
 	"RTL": "",
 	"RTL": "",
+	"Running": "",
 	"Save": "",
 	"Save": "",
 	"Save & Create": "",
 	"Save & Create": "",
 	"Save & Update": "",
 	"Save & Update": "",
@@ -407,12 +420,14 @@
 	"See what's new": "",
 	"See what's new": "",
 	"Seed": "",
 	"Seed": "",
 	"Select a base model": "",
 	"Select a base model": "",
+	"Select a engine": "",
 	"Select a mode": "",
 	"Select a mode": "",
 	"Select a model": "",
 	"Select a model": "",
 	"Select a pipeline": "",
 	"Select a pipeline": "",
 	"Select a pipeline url": "",
 	"Select a pipeline url": "",
 	"Select an Ollama instance": "",
 	"Select an Ollama instance": "",
 	"Select model": "",
 	"Select model": "",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "",
 	"Selected model(s) do not support image inputs": "",
 	"Send": "",
 	"Send": "",
 	"Send a Message": "",
 	"Send a Message": "",
@@ -449,7 +464,6 @@
 	"Source": "",
 	"Source": "",
 	"Speech recognition error: {{error}}": "",
 	"Speech recognition error: {{error}}": "",
 	"Speech-to-Text Engine": "",
 	"Speech-to-Text Engine": "",
-	"SpeechRecognition API is not supported in this browser.": "",
 	"Stop Sequence": "",
 	"Stop Sequence": "",
 	"STT Settings": "",
 	"STT Settings": "",
 	"Submit": "",
 	"Submit": "",
@@ -481,6 +495,7 @@
 	"to": "",
 	"to": "",
 	"To access the available model names for downloading,": "",
 	"To access the available model names for downloading,": "",
 	"To access the GGUF models available for downloading,": "",
 	"To access the GGUF models available for downloading,": "",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "",
 	"to chat input.": "",
 	"Today": "",
 	"Today": "",
 	"Toggle settings": "",
 	"Toggle settings": "",
@@ -497,6 +512,7 @@
 	"Update password": "",
 	"Update password": "",
 	"Upload a GGUF model": "",
 	"Upload a GGUF model": "",
 	"Upload Files": "",
 	"Upload Files": "",
+	"Upload Pipeline": "",
 	"Upload Progress": "",
 	"Upload Progress": "",
 	"URL Mode": "",
 	"URL Mode": "",
 	"Use '#' in the prompt input to load and select your documents.": "",
 	"Use '#' in the prompt input to load and select your documents.": "",
@@ -515,6 +531,7 @@
 	"Warning": "",
 	"Warning": "",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
 	"Web": "",
 	"Web": "",
+	"Web API": "",
 	"Web Loader Settings": "",
 	"Web Loader Settings": "",
 	"Web Params": "",
 	"Web Params": "",
 	"Web Search": "",
 	"Web Search": "",
@@ -525,18 +542,19 @@
 	"WebUI will make requests to": "",
 	"WebUI will make requests to": "",
 	"What’s New in": "",
 	"What’s New in": "",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "",
-	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "",
 	"Workspace": "",
 	"Write a prompt suggestion (e.g. Who are you?)": "",
 	"Write a prompt suggestion (e.g. Who are you?)": "",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "",
 	"Yesterday": "",
 	"Yesterday": "",
 	"You": "",
 	"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 clone a base model": "",
 	"You cannot clone a base model": "",
 	"You have no archived conversations.": "",
 	"You have no archived conversations.": "",
 	"You have shared this chat": "",
 	"You have shared this chat": "",
 	"You're a helpful assistant.": "",
 	"You're a helpful assistant.": "",
 	"You're now logged in.": "",
 	"You're now logged in.": "",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "",
 	"Youtube": "",
 	"Youtube Loader Settings": ""
 	"Youtube Loader Settings": ""
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "un usuario",
 	"a user": "un usuario",
 	"About": "Sobre nosotros",
 	"About": "Sobre nosotros",
 	"Account": "Cuenta",
 	"Account": "Cuenta",
+	"Account Activation Pending": "",
 	"Accurate information": "Información precisa",
 	"Accurate information": "Información precisa",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Agregar",
 	"Add": "Agregar",
@@ -29,6 +30,7 @@
 	"Add User": "Agregar Usuario",
 	"Add User": "Agregar Usuario",
 	"Adjusting these settings will apply changes universally to all users.": "Ajustar estas opciones aplicará los cambios universalmente a todos los usuarios.",
 	"Adjusting these settings will apply changes universally to all users.": "Ajustar estas opciones aplicará los cambios universalmente a todos los usuarios.",
 	"admin": "admin",
 	"admin": "admin",
+	"Admin": "",
 	"Admin Panel": "Panel de Administración",
 	"Admin Panel": "Panel de Administración",
 	"Admin Settings": "Configuración de Administrador",
 	"Admin Settings": "Configuración de Administrador",
 	"Advanced Parameters": "Parámetros Avanzados",
 	"Advanced Parameters": "Parámetros Avanzados",
@@ -59,7 +61,6 @@
 	"Audio": "Audio",
 	"Audio": "Audio",
 	"August": "Agosto",
 	"August": "Agosto",
 	"Auto-playback response": "Respuesta de reproducción automática",
 	"Auto-playback response": "Respuesta de reproducción automática",
-	"Auto-send input after 3 sec.": "Envía la información entrada automáticamente luego de 3 segundos.",
 	"AUTOMATIC1111 Base URL": "Dirección URL de AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL": "Dirección URL de AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL is required.": "La dirección URL de AUTOMATIC1111 es requerida.",
 	"AUTOMATIC1111 Base URL is required.": "La dirección URL de AUTOMATIC1111 es requerida.",
 	"available!": "¡disponible!",
 	"available!": "¡disponible!",
@@ -71,6 +72,7 @@
 	"Being lazy": "Ser perezoso",
 	"Being lazy": "Ser perezoso",
 	"Brave Search API Key": "Clave de API de Brave Search",
 	"Brave Search API Key": "Clave de API de Brave Search",
 	"Bypass SSL verification for Websites": "Desactivar la verificación SSL para sitios web",
 	"Bypass SSL verification for Websites": "Desactivar la verificación SSL para sitios web",
+	"Call": "",
 	"Cancel": "Cancelar",
 	"Cancel": "Cancelar",
 	"Capabilities": "Capacidades",
 	"Capabilities": "Capacidades",
 	"Change Password": "Cambia la Contraseña",
 	"Change Password": "Cambia la Contraseña",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Parámetros de fragmentos",
 	"Chunk Params": "Parámetros de fragmentos",
 	"Chunk Size": "Tamaño de fragmentos",
 	"Chunk Size": "Tamaño de fragmentos",
 	"Citation": "Cita",
 	"Citation": "Cita",
+	"Clear memory": "",
 	"Click here for help.": "Presiona aquí para obtener ayuda.",
 	"Click here for help.": "Presiona aquí para obtener ayuda.",
 	"Click here to": "Presiona aquí para",
 	"Click here to": "Presiona aquí para",
 	"Click here to select": "Presiona aquí para seleccionar",
 	"Click here to select": "Presiona aquí para seleccionar",
 	"Click here to select a csv file.": "Presiona aquí para seleccionar un archivo csv.",
 	"Click here to select a csv file.": "Presiona aquí para seleccionar un archivo csv.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Presiona aquí para seleccionar documentos",
 	"Click here to select documents.": "Presiona aquí para seleccionar documentos",
 	"click here.": "Presiona aquí.",
 	"click here.": "Presiona aquí.",
 	"Click on the user role button to change a user's role.": "Presiona en el botón de roles del usuario para cambiar su rol.",
 	"Click on the user role button to change a user's role.": "Presiona en el botón de roles del usuario para cambiar su rol.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Solicitudes simultáneas",
 	"Concurrent Requests": "Solicitudes simultáneas",
 	"Confirm Password": "Confirmar Contraseña",
 	"Confirm Password": "Confirmar Contraseña",
 	"Connections": "Conexiones",
 	"Connections": "Conexiones",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Contenido",
 	"Content": "Contenido",
 	"Context Length": "Longitud del contexto",
 	"Context Length": "Longitud del contexto",
 	"Continue Response": "Continuar Respuesta",
 	"Continue Response": "Continuar Respuesta",
-	"Conversation Mode": "Modo de Conversación",
 	"Copied shared chat URL to clipboard!": "¡URL de chat compartido copiado al portapapeles!",
 	"Copied shared chat URL to clipboard!": "¡URL de chat compartido copiado al portapapeles!",
 	"Copy": "Copiar",
 	"Copy": "Copiar",
 	"Copy last code block": "Copia el último bloque de código",
 	"Copy last code block": "Copia el último bloque de código",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Por defecto (Automatic1111)",
 	"Default (Automatic1111)": "Por defecto (Automatic1111)",
 	"Default (SentenceTransformers)": "Por defecto (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Por defecto (SentenceTransformers)",
 	"Default (Web API)": "Por defecto (Web API)",
 	"Default (Web API)": "Por defecto (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "Modelo predeterminado",
 	"Default Model": "Modelo predeterminado",
 	"Default model updated": "El modelo por defecto ha sido actualizado",
 	"Default model updated": "El modelo por defecto ha sido actualizado",
 	"Default Prompt Suggestions": "Sugerencias de mensajes por defecto",
 	"Default Prompt Suggestions": "Sugerencias de mensajes por defecto",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Descubre un Prompt",
 	"Discover a prompt": "Descubre un Prompt",
 	"Discover, download, and explore custom prompts": "Descubre, descarga, y explora Prompts personalizados",
 	"Discover, download, and explore custom prompts": "Descubre, descarga, y explora Prompts personalizados",
 	"Discover, download, and explore model presets": "Descubre, descarga y explora ajustes preestablecidos de modelos",
 	"Discover, download, and explore model presets": "Descubre, descarga y explora ajustes preestablecidos de modelos",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Mostrar el nombre de usuario en lugar de Usted en el chat",
 	"Display the username instead of You in the Chat": "Mostrar el nombre de usuario en lugar de Usted en el chat",
 	"Document": "Documento",
 	"Document": "Documento",
 	"Document Settings": "Configuración del Documento",
 	"Document Settings": "Configuración del Documento",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Exportar el mapeo de documentos",
 	"Export Documents Mapping": "Exportar el mapeo de documentos",
 	"Export Models": "Modelos de exportación",
 	"Export Models": "Modelos de exportación",
 	"Export Prompts": "Exportar Prompts",
 	"Export Prompts": "Exportar Prompts",
+	"External Models": "",
 	"Failed to create API Key.": "No se pudo crear la clave API.",
 	"Failed to create API Key.": "No se pudo crear la clave API.",
 	"Failed to read clipboard contents": "No se pudo leer el contenido del portapapeles",
 	"Failed to read clipboard contents": "No se pudo leer el contenido del portapapeles",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "Información",
 	"Info": "Información",
 	"Input commands": "Ingresar comandos",
 	"Input commands": "Ingresar comandos",
 	"Install from Github URL": "Instalar desde la URL de Github",
 	"Install from Github URL": "Instalar desde la URL de Github",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Interfaz",
 	"Interface": "Interfaz",
 	"Invalid Tag": "Etiqueta Inválida",
 	"Invalid Tag": "Etiqueta Inválida",
 	"January": "Enero",
 	"January": "Enero",
@@ -267,11 +275,12 @@
 	"Language": "Lenguaje",
 	"Language": "Lenguaje",
 	"Last Active": "Última Actividad",
 	"Last Active": "Última Actividad",
 	"Light": "Claro",
 	"Light": "Claro",
-	"Listening...": "Escuchando...",
 	"LLMs can make mistakes. Verify important information.": "Los LLM pueden cometer errores. Verifica la información importante.",
 	"LLMs can make mistakes. Verify important information.": "Los LLM pueden cometer errores. Verifica la información importante.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Hecho por la comunidad de OpenWebUI",
 	"Made by OpenWebUI Community": "Hecho por la comunidad de OpenWebUI",
 	"Make sure to enclose them with": "Asegúrese de adjuntarlos con",
 	"Make sure to enclose them with": "Asegúrese de adjuntarlos con",
+	"Manage": "",
 	"Manage Models": "Administrar Modelos",
 	"Manage Models": "Administrar Modelos",
 	"Manage Ollama Models": "Administrar Modelos Ollama",
 	"Manage Ollama Models": "Administrar Modelos Ollama",
 	"Manage Pipelines": "Administrar canalizaciones",
 	"Manage Pipelines": "Administrar canalizaciones",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "API de Ollama deshabilitada",
 	"Ollama API disabled": "API de Ollama deshabilitada",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Versión de Ollama",
 	"Ollama Version": "Versión de Ollama",
 	"On": "Activado",
 	"On": "Activado",
 	"Only": "Solamente",
 	"Only": "Solamente",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF document (.pdf)",
 	"PDF document (.pdf)": "PDF document (.pdf)",
 	"PDF Extract Images (OCR)": "Extraer imágenes de PDF (OCR)",
 	"PDF Extract Images (OCR)": "Extraer imágenes de PDF (OCR)",
 	"pending": "pendiente",
 	"pending": "pendiente",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Permiso denegado al acceder al micrófono: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Permiso denegado al acceder al micrófono: {{error}}",
 	"Personalization": "Personalización",
 	"Personalization": "Personalización",
 	"Pipelines": "Tuberías",
 	"Pipelines": "Tuberías",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Leer al oído",
 	"Read Aloud": "Leer al oído",
 	"Record voice": "Grabar voz",
 	"Record voice": "Grabar voz",
 	"Redirecting you to OpenWebUI Community": "Redireccionándote a la comunidad OpenWebUI",
 	"Redirecting you to OpenWebUI Community": "Redireccionándote a la comunidad OpenWebUI",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Rechazado cuando no debería",
 	"Refused when it shouldn't have": "Rechazado cuando no debería",
 	"Regenerate": "Regenerar",
 	"Regenerate": "Regenerar",
 	"Release Notes": "Notas de la versión",
 	"Release Notes": "Notas de la versión",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "Guardar",
 	"Save": "Guardar",
 	"Save & Create": "Guardar y Crear",
 	"Save & Create": "Guardar y Crear",
 	"Save & Update": "Guardar y Actualizar",
 	"Save & Update": "Guardar y Actualizar",
@@ -408,12 +421,14 @@
 	"See what's new": "Ver las novedades",
 	"See what's new": "Ver las novedades",
 	"Seed": "Seed",
 	"Seed": "Seed",
 	"Select a base model": "Seleccionar un modelo base",
 	"Select a base model": "Seleccionar un modelo base",
+	"Select a engine": "",
 	"Select a mode": "Selecciona un modo",
 	"Select a mode": "Selecciona un modo",
 	"Select a model": "Selecciona un modelo",
 	"Select a model": "Selecciona un modelo",
 	"Select a pipeline": "Selección de una canalización",
 	"Select a pipeline": "Selección de una canalización",
 	"Select a pipeline url": "Selección de una dirección URL de canalización",
 	"Select a pipeline url": "Selección de una dirección URL de canalización",
 	"Select an Ollama instance": "Seleccione una instancia de Ollama",
 	"Select an Ollama instance": "Seleccione una instancia de Ollama",
 	"Select model": "Selecciona un modelo",
 	"Select model": "Selecciona un modelo",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "Los modelos seleccionados no admiten entradas de imagen",
 	"Selected model(s) do not support image inputs": "Los modelos seleccionados no admiten entradas de imagen",
 	"Send": "Enviar",
 	"Send": "Enviar",
 	"Send a Message": "Enviar un Mensaje",
 	"Send a Message": "Enviar un Mensaje",
@@ -450,7 +465,6 @@
 	"Source": "Fuente",
 	"Source": "Fuente",
 	"Speech recognition error: {{error}}": "Error de reconocimiento de voz: {{error}}",
 	"Speech recognition error: {{error}}": "Error de reconocimiento de voz: {{error}}",
 	"Speech-to-Text Engine": "Motor de voz a texto",
 	"Speech-to-Text Engine": "Motor de voz a texto",
-	"SpeechRecognition API is not supported in this browser.": "La API SpeechRecognition no es compatible con este navegador.",
 	"Stop Sequence": "Detener secuencia",
 	"Stop Sequence": "Detener secuencia",
 	"STT Settings": "Configuraciones de STT",
 	"STT Settings": "Configuraciones de STT",
 	"Submit": "Enviar",
 	"Submit": "Enviar",
@@ -482,6 +496,7 @@
 	"to": "para",
 	"to": "para",
 	"To access the available model names for downloading,": "Para acceder a los nombres de modelos disponibles para descargar,",
 	"To access the available model names for downloading,": "Para acceder a los nombres de modelos disponibles para descargar,",
 	"To access the GGUF models available for downloading,": "Para acceder a los modelos GGUF disponibles para descargar,",
 	"To access the GGUF models available for downloading,": "Para acceder a los modelos GGUF disponibles para descargar,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "a la entrada del chat.",
 	"to chat input.": "a la entrada del chat.",
 	"Today": "Hoy",
 	"Today": "Hoy",
 	"Toggle settings": "Alternar configuración",
 	"Toggle settings": "Alternar configuración",
@@ -498,6 +513,7 @@
 	"Update password": "Actualizar contraseña",
 	"Update password": "Actualizar contraseña",
 	"Upload a GGUF model": "Subir un modelo GGUF",
 	"Upload a GGUF model": "Subir un modelo GGUF",
 	"Upload Files": "Subir archivos",
 	"Upload Files": "Subir archivos",
+	"Upload Pipeline": "",
 	"Upload Progress": "Progreso de carga",
 	"Upload Progress": "Progreso de carga",
 	"URL Mode": "Modo de URL",
 	"URL Mode": "Modo de URL",
 	"Use '#' in the prompt input to load and select your documents.": "Utilice '#' en el prompt para cargar y seleccionar sus documentos.",
 	"Use '#' in the prompt input to load and select your documents.": "Utilice '#' en el prompt para cargar y seleccionar sus documentos.",
@@ -516,6 +532,7 @@
 	"Warning": "Advertencia",
 	"Warning": "Advertencia",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Advertencia: Si actualiza o cambia su modelo de inserción, necesitará volver a importar todos los documentos.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Advertencia: Si actualiza o cambia su modelo de inserción, necesitará volver a importar todos los documentos.",
 	"Web": "Web",
 	"Web": "Web",
+	"Web API": "",
 	"Web Loader Settings": "Web Loader Settings",
 	"Web Loader Settings": "Web Loader Settings",
 	"Web Params": "Web Params",
 	"Web Params": "Web Params",
 	"Web Search": "Búsqueda en la Web",
 	"Web Search": "Búsqueda en la Web",
@@ -526,18 +543,19 @@
 	"WebUI will make requests to": "WebUI realizará solicitudes a",
 	"WebUI will make requests to": "WebUI realizará solicitudes a",
 	"What’s New in": "Novedades en",
 	"What’s New in": "Novedades en",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Cuando el historial está desactivado, los nuevos chats en este navegador no aparecerán en el historial de ninguno de sus dispositivos..",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Cuando el historial está desactivado, los nuevos chats en este navegador no aparecerán en el historial de ninguno de sus dispositivos..",
-	"Whisper (Local)": "Whisper (Local)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "Espacio de trabajo",
 	"Workspace": "Espacio de trabajo",
 	"Write a prompt suggestion (e.g. Who are you?)": "Escribe una sugerencia para un prompt (por ejemplo, ¿quién eres?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Escribe una sugerencia para un prompt (por ejemplo, ¿quién eres?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Escribe un resumen en 50 palabras que resuma [tema o palabra clave].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Escribe un resumen en 50 palabras que resuma [tema o palabra clave].",
 	"Yesterday": "Ayer",
 	"Yesterday": "Ayer",
 	"You": "Usted",
 	"You": "Usted",
+	"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 clone a base model": "No se puede clonar un modelo base",
 	"You cannot clone a base model": "No se puede clonar un modelo base",
 	"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",
 	"You're a helpful assistant.": "Usted es un asistente útil.",
 	"You're a helpful assistant.": "Usted es un asistente útil.",
 	"You're now logged in.": "Usted ahora está conectado.",
 	"You're now logged in.": "Usted ahora está conectado.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Configuración del cargador de Youtube"
 	"Youtube Loader Settings": "Configuración del cargador de Youtube"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "یک کاربر",
 	"a user": "یک کاربر",
 	"About": "درباره",
 	"About": "درباره",
 	"Account": "حساب کاربری",
 	"Account": "حساب کاربری",
+	"Account Activation Pending": "",
 	"Accurate information": "اطلاعات دقیق",
 	"Accurate information": "اطلاعات دقیق",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "اضافه کردن",
 	"Add": "اضافه کردن",
@@ -29,6 +30,7 @@
 	"Add User": "اضافه کردن کاربر",
 	"Add User": "اضافه کردن کاربر",
 	"Adjusting these settings will apply changes universally to all users.": "با تنظیم این تنظیمات، تغییرات به طور کلی برای همه کاربران اعمال می شود.",
 	"Adjusting these settings will apply changes universally to all users.": "با تنظیم این تنظیمات، تغییرات به طور کلی برای همه کاربران اعمال می شود.",
 	"admin": "مدیر",
 	"admin": "مدیر",
+	"Admin": "",
 	"Admin Panel": "پنل مدیریت",
 	"Admin Panel": "پنل مدیریت",
 	"Admin Settings": "تنظیمات مدیریت",
 	"Admin Settings": "تنظیمات مدیریت",
 	"Advanced Parameters": "پارامترهای پیشرفته",
 	"Advanced Parameters": "پارامترهای پیشرفته",
@@ -59,7 +61,6 @@
 	"Audio": "صدا",
 	"Audio": "صدا",
 	"August": "آگوست",
 	"August": "آگوست",
 	"Auto-playback response": "پخش خودکار پاسخ ",
 	"Auto-playback response": "پخش خودکار پاسخ ",
-	"Auto-send input after 3 sec.": "به طور خودکار ورودی را پس از 3 ثانیه ارسال کن.",
 	"AUTOMATIC1111 Base URL": "پایه URL AUTOMATIC1111 ",
 	"AUTOMATIC1111 Base URL": "پایه URL AUTOMATIC1111 ",
 	"AUTOMATIC1111 Base URL is required.": "به URL پایه AUTOMATIC1111 مورد نیاز است.",
 	"AUTOMATIC1111 Base URL is required.": "به URL پایه AUTOMATIC1111 مورد نیاز است.",
 	"available!": "در دسترس!",
 	"available!": "در دسترس!",
@@ -71,6 +72,7 @@
 	"Being lazy": "حالت سازنده",
 	"Being lazy": "حالت سازنده",
 	"Brave Search API Key": "کلید API جستجوی شجاع",
 	"Brave Search API Key": "کلید API جستجوی شجاع",
 	"Bypass SSL verification for Websites": "عبور از تأیید SSL برای وب سایت ها",
 	"Bypass SSL verification for Websites": "عبور از تأیید SSL برای وب سایت ها",
+	"Call": "",
 	"Cancel": "لغو",
 	"Cancel": "لغو",
 	"Capabilities": "قابلیت",
 	"Capabilities": "قابلیت",
 	"Change Password": "تغییر رمز عبور",
 	"Change Password": "تغییر رمز عبور",
@@ -88,10 +90,12 @@
 	"Chunk Params": "پارامترهای تکه",
 	"Chunk Params": "پارامترهای تکه",
 	"Chunk Size": "اندازه تکه",
 	"Chunk Size": "اندازه تکه",
 	"Citation": "استناد",
 	"Citation": "استناد",
+	"Clear memory": "",
 	"Click here for help.": "برای کمک اینجا را کلیک کنید.",
 	"Click here for help.": "برای کمک اینجا را کلیک کنید.",
 	"Click here to": "برای کمک اینجا را کلیک کنید.",
 	"Click here to": "برای کمک اینجا را کلیک کنید.",
 	"Click here to select": "برای انتخاب اینجا کلیک کنید",
 	"Click here to select": "برای انتخاب اینجا کلیک کنید",
 	"Click here to select a csv file.": "برای انتخاب یک فایل csv اینجا را کلیک کنید.",
 	"Click here to select a csv file.": "برای انتخاب یک فایل csv اینجا را کلیک کنید.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "برای انتخاب اسناد اینجا را کلیک کنید.",
 	"Click here to select documents.": "برای انتخاب اسناد اینجا را کلیک کنید.",
 	"click here.": "اینجا کلیک کنید.",
 	"click here.": "اینجا کلیک کنید.",
 	"Click on the user role button to change a user's role.": "برای تغییر نقش کاربر، روی دکمه نقش کاربر کلیک کنید.",
 	"Click on the user role button to change a user's role.": "برای تغییر نقش کاربر، روی دکمه نقش کاربر کلیک کنید.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "درخواست های همزمان",
 	"Concurrent Requests": "درخواست های همزمان",
 	"Confirm Password": "تایید رمز عبور",
 	"Confirm Password": "تایید رمز عبور",
 	"Connections": "ارتباطات",
 	"Connections": "ارتباطات",
+	"Contact Admin for WebUI Access": "",
 	"Content": "محتوا",
 	"Content": "محتوا",
 	"Context Length": "طول زمینه",
 	"Context Length": "طول زمینه",
 	"Continue Response": "ادامه پاسخ",
 	"Continue Response": "ادامه پاسخ",
-	"Conversation Mode": "حالت مکالمه",
 	"Copied shared chat URL to clipboard!": "URL چت به کلیپ بورد کپی شد!",
 	"Copied shared chat URL to clipboard!": "URL چت به کلیپ بورد کپی شد!",
 	"Copy": "کپی",
 	"Copy": "کپی",
 	"Copy last code block": "کپی آخرین بلوک کد",
 	"Copy last code block": "کپی آخرین بلوک کد",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "پیشفرض (Automatic1111)",
 	"Default (Automatic1111)": "پیشفرض (Automatic1111)",
 	"Default (SentenceTransformers)": "پیشفرض (SentenceTransformers)",
 	"Default (SentenceTransformers)": "پیشفرض (SentenceTransformers)",
 	"Default (Web API)": "پیشفرض (Web API)",
 	"Default (Web API)": "پیشفرض (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "مدل پیشفرض",
 	"Default Model": "مدل پیشفرض",
 	"Default model updated": "مدل پیشفرض به\u200cروزرسانی شد",
 	"Default model updated": "مدل پیشفرض به\u200cروزرسانی شد",
 	"Default Prompt Suggestions": "پیشنهادات پرامپت پیش فرض",
 	"Default Prompt Suggestions": "پیشنهادات پرامپت پیش فرض",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "یک اعلان را کشف کنید",
 	"Discover a prompt": "یک اعلان را کشف کنید",
 	"Discover, download, and explore custom prompts": "پرامپت\u200cهای سفارشی را کشف، دانلود و کاوش کنید",
 	"Discover, download, and explore custom prompts": "پرامپت\u200cهای سفارشی را کشف، دانلود و کاوش کنید",
 	"Discover, download, and explore model presets": "پیش تنظیمات مدل را کشف، دانلود و کاوش کنید",
 	"Discover, download, and explore model presets": "پیش تنظیمات مدل را کشف، دانلود و کاوش کنید",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "نمایش نام کاربری به جای «شما» در چت",
 	"Display the username instead of You in the Chat": "نمایش نام کاربری به جای «شما» در چت",
 	"Document": "سند",
 	"Document": "سند",
 	"Document Settings": "تنظیمات سند",
 	"Document Settings": "تنظیمات سند",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "اکسپورت از نگاشت اسناد",
 	"Export Documents Mapping": "اکسپورت از نگاشت اسناد",
 	"Export Models": "مدل های صادرات",
 	"Export Models": "مدل های صادرات",
 	"Export Prompts": "اکسپورت از پرامپت\u200cها",
 	"Export Prompts": "اکسپورت از پرامپت\u200cها",
+	"External Models": "",
 	"Failed to create API Key.": "ایجاد کلید API با خطا مواجه شد.",
 	"Failed to create API Key.": "ایجاد کلید API با خطا مواجه شد.",
 	"Failed to read clipboard contents": "خواندن محتوای کلیپ بورد ناموفق بود",
 	"Failed to read clipboard contents": "خواندن محتوای کلیپ بورد ناموفق بود",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "اطلاعات",
 	"Info": "اطلاعات",
 	"Input commands": "ورودی دستورات",
 	"Input commands": "ورودی دستورات",
 	"Install from Github URL": "نصب از ادرس Github",
 	"Install from Github URL": "نصب از ادرس Github",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "رابط",
 	"Interface": "رابط",
 	"Invalid Tag": "تگ نامعتبر",
 	"Invalid Tag": "تگ نامعتبر",
 	"January": "ژانویه",
 	"January": "ژانویه",
@@ -267,11 +275,12 @@
 	"Language": "زبان",
 	"Language": "زبان",
 	"Last Active": "آخرین فعال",
 	"Last Active": "آخرین فعال",
 	"Light": "روشن",
 	"Light": "روشن",
-	"Listening...": "در حال گوش دادن...",
 	"LLMs can make mistakes. Verify important information.": "مدل\u200cهای زبانی بزرگ می\u200cتوانند اشتباه کنند. اطلاعات مهم را راستی\u200cآزمایی کنید.",
 	"LLMs can make mistakes. Verify important information.": "مدل\u200cهای زبانی بزرگ می\u200cتوانند اشتباه کنند. اطلاعات مهم را راستی\u200cآزمایی کنید.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "ساخته شده توسط OpenWebUI Community",
 	"Made by OpenWebUI Community": "ساخته شده توسط OpenWebUI Community",
 	"Make sure to enclose them with": "مطمئن شوید که آنها را با این محصور کنید:",
 	"Make sure to enclose them with": "مطمئن شوید که آنها را با این محصور کنید:",
+	"Manage": "",
 	"Manage Models": "مدیریت مدل\u200cها",
 	"Manage Models": "مدیریت مدل\u200cها",
 	"Manage Ollama Models": "مدیریت مدل\u200cهای اولاما",
 	"Manage Ollama Models": "مدیریت مدل\u200cهای اولاما",
 	"Manage Pipelines": "مدیریت خطوط لوله",
 	"Manage Pipelines": "مدیریت خطوط لوله",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "API Ollama غیرفعال شد",
 	"Ollama API disabled": "API Ollama غیرفعال شد",
+	"Ollama API is disabled": "",
 	"Ollama Version": "نسخه اولاما",
 	"Ollama Version": "نسخه اولاما",
 	"On": "روشن",
 	"On": "روشن",
 	"Only": "فقط",
 	"Only": "فقط",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF سند (.pdf)",
 	"PDF document (.pdf)": "PDF سند (.pdf)",
 	"PDF Extract Images (OCR)": "استخراج تصاویر از PDF (OCR)",
 	"PDF Extract Images (OCR)": "استخراج تصاویر از PDF (OCR)",
 	"pending": "در انتظار",
 	"pending": "در انتظار",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "هنگام دسترسی به میکروفون، اجازه داده نشد: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "هنگام دسترسی به میکروفون، اجازه داده نشد: {{error}}",
 	"Personalization": "شخصی سازی",
 	"Personalization": "شخصی سازی",
 	"Pipelines": "خط لوله",
 	"Pipelines": "خط لوله",
@@ -367,6 +378,7 @@
 	"Read Aloud": "خواندن به صورت صوتی",
 	"Read Aloud": "خواندن به صورت صوتی",
 	"Record voice": "ضبط صدا",
 	"Record voice": "ضبط صدا",
 	"Redirecting you to OpenWebUI Community": "در حال هدایت به OpenWebUI Community",
 	"Redirecting you to OpenWebUI Community": "در حال هدایت به OpenWebUI Community",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "رد شده زمانی که باید نباشد",
 	"Refused when it shouldn't have": "رد شده زمانی که باید نباشد",
 	"Regenerate": "ری\u200cسازی",
 	"Regenerate": "ری\u200cسازی",
 	"Release Notes": "یادداشت\u200cهای انتشار",
 	"Release Notes": "یادداشت\u200cهای انتشار",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "ذخیره",
 	"Save": "ذخیره",
 	"Save & Create": "ذخیره و ایجاد",
 	"Save & Create": "ذخیره و ایجاد",
 	"Save & Update": "ذخیره و به\u200cروزرسانی",
 	"Save & Update": "ذخیره و به\u200cروزرسانی",
@@ -407,12 +420,14 @@
 	"See what's new": "ببینید موارد جدید چه بوده",
 	"See what's new": "ببینید موارد جدید چه بوده",
 	"Seed": "Seed",
 	"Seed": "Seed",
 	"Select a base model": "انتخاب یک مدل پایه",
 	"Select a base model": "انتخاب یک مدل پایه",
+	"Select a engine": "",
 	"Select a mode": "یک حالت انتخاب کنید",
 	"Select a mode": "یک حالت انتخاب کنید",
 	"Select a model": "انتخاب یک مدل",
 	"Select a model": "انتخاب یک مدل",
 	"Select a pipeline": "انتخاب یک خط لوله",
 	"Select a pipeline": "انتخاب یک خط لوله",
 	"Select a pipeline url": "یک ادرس خط لوله را انتخاب کنید",
 	"Select a pipeline url": "یک ادرس خط لوله را انتخاب کنید",
 	"Select an Ollama instance": "انتخاب یک نمونه از اولاما",
 	"Select an Ollama instance": "انتخاب یک نمونه از اولاما",
 	"Select model": "انتخاب یک مدل",
 	"Select model": "انتخاب یک مدل",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "مدل) های (انتخاب شده ورودیهای تصویر را پشتیبانی نمیکند",
 	"Selected model(s) do not support image inputs": "مدل) های (انتخاب شده ورودیهای تصویر را پشتیبانی نمیکند",
 	"Send": "ارسال",
 	"Send": "ارسال",
 	"Send a Message": "ارسال یک پیام",
 	"Send a Message": "ارسال یک پیام",
@@ -449,7 +464,6 @@
 	"Source": "منبع",
 	"Source": "منبع",
 	"Speech recognition error: {{error}}": "خطای تشخیص گفتار: {{error}}",
 	"Speech recognition error: {{error}}": "خطای تشخیص گفتار: {{error}}",
 	"Speech-to-Text Engine": "موتور گفتار به متن",
 	"Speech-to-Text Engine": "موتور گفتار به متن",
-	"SpeechRecognition API is not supported in this browser.": "API تشخیص گفتار در این مرورگر پشتیبانی نمی شود.",
 	"Stop Sequence": "توالی توقف",
 	"Stop Sequence": "توالی توقف",
 	"STT Settings": "STT تنظیمات",
 	"STT Settings": "STT تنظیمات",
 	"Submit": "ارسال",
 	"Submit": "ارسال",
@@ -481,6 +495,7 @@
 	"to": "به",
 	"to": "به",
 	"To access the available model names for downloading,": "برای دسترسی به نام مدل های موجود برای دانلود،",
 	"To access the available model names for downloading,": "برای دسترسی به نام مدل های موجود برای دانلود،",
 	"To access the GGUF models available for downloading,": "برای دسترسی به مدل\u200cهای GGUF موجود برای دانلود،",
 	"To access the GGUF models available for downloading,": "برای دسترسی به مدل\u200cهای GGUF موجود برای دانلود،",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "در ورودی گپ.",
 	"to chat input.": "در ورودی گپ.",
 	"Today": "امروز",
 	"Today": "امروز",
 	"Toggle settings": "نمایش/عدم نمایش تنظیمات",
 	"Toggle settings": "نمایش/عدم نمایش تنظیمات",
@@ -497,6 +512,7 @@
 	"Update password": "به روزرسانی رمزعبور",
 	"Update password": "به روزرسانی رمزعبور",
 	"Upload a GGUF model": "آپلود یک مدل GGUF",
 	"Upload a GGUF model": "آپلود یک مدل GGUF",
 	"Upload Files": "بارگذاری پروندهها",
 	"Upload Files": "بارگذاری پروندهها",
+	"Upload Pipeline": "",
 	"Upload Progress": "پیشرفت آپلود",
 	"Upload Progress": "پیشرفت آپلود",
 	"URL Mode": "حالت URL",
 	"URL Mode": "حالت URL",
 	"Use '#' in the prompt input to load and select your documents.": "در پرامپت از '#' برای لود و انتخاب اسناد خود استفاده کنید.",
 	"Use '#' in the prompt input to load and select your documents.": "در پرامپت از '#' برای لود و انتخاب اسناد خود استفاده کنید.",
@@ -515,6 +531,7 @@
 	"Warning": "هشدار",
 	"Warning": "هشدار",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "هشدار: اگر شما به روز کنید یا تغییر دهید مدل شما، باید تمام سند ها را مجددا وارد کنید.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "هشدار: اگر شما به روز کنید یا تغییر دهید مدل شما، باید تمام سند ها را مجددا وارد کنید.",
 	"Web": "وب",
 	"Web": "وب",
+	"Web API": "",
 	"Web Loader Settings": "تنظیمات لودر وب",
 	"Web Loader Settings": "تنظیمات لودر وب",
 	"Web Params": "پارامترهای وب",
 	"Web Params": "پارامترهای وب",
 	"Web Search": "جستجوی وب",
 	"Web Search": "جستجوی وب",
@@ -525,18 +542,19 @@
 	"WebUI will make requests to": "WebUI درخواست\u200cها را ارسال خواهد کرد به",
 	"WebUI will make requests to": "WebUI درخواست\u200cها را ارسال خواهد کرد به",
 	"What’s New in": "موارد جدید در",
 	"What’s New in": "موارد جدید در",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "وقتی سابقه خاموش است، چت\u200cهای جدید در این مرورگر در سابقه شما در هیچ یک از دستگاه\u200cهایتان ظاهر نمی\u200cشوند.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "وقتی سابقه خاموش است، چت\u200cهای جدید در این مرورگر در سابقه شما در هیچ یک از دستگاه\u200cهایتان ظاهر نمی\u200cشوند.",
-	"Whisper (Local)": "ویسپر (محلی)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "محیط کار",
 	"Workspace": "محیط کار",
 	"Write a prompt suggestion (e.g. Who are you?)": "یک پیشنهاد پرامپت بنویسید (مثلاً شما کی هستید؟)",
 	"Write a prompt suggestion (e.g. Who are you?)": "یک پیشنهاد پرامپت بنویسید (مثلاً شما کی هستید؟)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "خلاصه ای در 50 کلمه بنویسید که [موضوع یا کلمه کلیدی] را خلاصه کند.",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "خلاصه ای در 50 کلمه بنویسید که [موضوع یا کلمه کلیدی] را خلاصه کند.",
 	"Yesterday": "دیروز",
 	"Yesterday": "دیروز",
 	"You": "شما",
 	"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 clone a base model": "شما نمیتوانید یک مدل پایه را کلون کنید",
 	"You cannot clone a base model": "شما نمیتوانید یک مدل پایه را کلون کنید",
 	"You have no archived conversations.": "شما هیچ گفتگوی ذخیره شده ندارید.",
 	"You have no archived conversations.": "شما هیچ گفتگوی ذخیره شده ندارید.",
 	"You have shared this chat": "شما این گفتگو را به اشتراک گذاشته اید",
 	"You have shared this chat": "شما این گفتگو را به اشتراک گذاشته اید",
 	"You're a helpful assistant.": "تو یک دستیار سودمند هستی.",
 	"You're a helpful assistant.": "تو یک دستیار سودمند هستی.",
 	"You're now logged in.": "شما اکنون وارد شده\u200cاید.",
 	"You're now logged in.": "شما اکنون وارد شده\u200cاید.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "یوتیوب",
 	"Youtube": "یوتیوب",
 	"Youtube Loader Settings": "تنظیمات لودر یوتیوب"
 	"Youtube Loader Settings": "تنظیمات لودر یوتیوب"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "käyttäjä",
 	"a user": "käyttäjä",
 	"About": "Tietoja",
 	"About": "Tietoja",
 	"Account": "Tili",
 	"Account": "Tili",
+	"Account Activation Pending": "",
 	"Accurate information": "Tarkkaa tietoa",
 	"Accurate information": "Tarkkaa tietoa",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Lisää",
 	"Add": "Lisää",
@@ -29,6 +30,7 @@
 	"Add User": "Lisää käyttäjä",
 	"Add User": "Lisää käyttäjä",
 	"Adjusting these settings will apply changes universally to all users.": "Näiden asetusten säätäminen vaikuttaa kaikkiin käyttäjiin.",
 	"Adjusting these settings will apply changes universally to all users.": "Näiden asetusten säätäminen vaikuttaa kaikkiin käyttäjiin.",
 	"admin": "hallinta",
 	"admin": "hallinta",
+	"Admin": "",
 	"Admin Panel": "Hallintapaneeli",
 	"Admin Panel": "Hallintapaneeli",
 	"Admin Settings": "Hallinta-asetukset",
 	"Admin Settings": "Hallinta-asetukset",
 	"Advanced Parameters": "Edistyneet parametrit",
 	"Advanced Parameters": "Edistyneet parametrit",
@@ -59,7 +61,6 @@
 	"Audio": "Ääni",
 	"Audio": "Ääni",
 	"August": "elokuu",
 	"August": "elokuu",
 	"Auto-playback response": "Soita vastaus automaattisesti",
 	"Auto-playback response": "Soita vastaus automaattisesti",
-	"Auto-send input after 3 sec.": "Lähetä syöte automaattisesti 3 sekunnin kuluttua",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111-perus-URL",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111-perus-URL",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111-perus-URL vaaditaan.",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111-perus-URL vaaditaan.",
 	"available!": "saatavilla!",
 	"available!": "saatavilla!",
@@ -71,6 +72,7 @@
 	"Being lazy": "Oli laiska",
 	"Being lazy": "Oli laiska",
 	"Brave Search API Key": "Brave Search API -avain",
 	"Brave Search API Key": "Brave Search API -avain",
 	"Bypass SSL verification for Websites": "Ohita SSL-varmennus verkkosivustoille",
 	"Bypass SSL verification for Websites": "Ohita SSL-varmennus verkkosivustoille",
+	"Call": "",
 	"Cancel": "Peruuta",
 	"Cancel": "Peruuta",
 	"Capabilities": "Ominaisuuksia",
 	"Capabilities": "Ominaisuuksia",
 	"Change Password": "Vaihda salasana",
 	"Change Password": "Vaihda salasana",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Osien parametrit",
 	"Chunk Params": "Osien parametrit",
 	"Chunk Size": "Osien koko",
 	"Chunk Size": "Osien koko",
 	"Citation": "Sitaatti",
 	"Citation": "Sitaatti",
+	"Clear memory": "",
 	"Click here for help.": "Klikkaa tästä saadaksesi apua.",
 	"Click here for help.": "Klikkaa tästä saadaksesi apua.",
 	"Click here to": "Klikkaa tästä",
 	"Click here to": "Klikkaa tästä",
 	"Click here to select": "Klikkaa tästä valitaksesi",
 	"Click here to select": "Klikkaa tästä valitaksesi",
 	"Click here to select a csv file.": "Klikkaa tästä valitaksesi CSV-tiedosto.",
 	"Click here to select a csv file.": "Klikkaa tästä valitaksesi CSV-tiedosto.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Klikkaa tästä valitaksesi asiakirjoja.",
 	"Click here to select documents.": "Klikkaa tästä valitaksesi asiakirjoja.",
 	"click here.": "klikkaa tästä.",
 	"click here.": "klikkaa tästä.",
 	"Click on the user role button to change a user's role.": "Klikkaa käyttäjän roolipainiketta vaihtaaksesi käyttäjän roolia.",
 	"Click on the user role button to change a user's role.": "Klikkaa käyttäjän roolipainiketta vaihtaaksesi käyttäjän roolia.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Samanaikaiset pyynnöt",
 	"Concurrent Requests": "Samanaikaiset pyynnöt",
 	"Confirm Password": "Vahvista salasana",
 	"Confirm Password": "Vahvista salasana",
 	"Connections": "Yhteydet",
 	"Connections": "Yhteydet",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Sisältö",
 	"Content": "Sisältö",
 	"Context Length": "Kontekstin pituus",
 	"Context Length": "Kontekstin pituus",
 	"Continue Response": "Jatka vastausta",
 	"Continue Response": "Jatka vastausta",
-	"Conversation Mode": "Keskustelutila",
 	"Copied shared chat URL to clipboard!": "Jaettu keskustelulinkki kopioitu leikepöydälle!",
 	"Copied shared chat URL to clipboard!": "Jaettu keskustelulinkki kopioitu leikepöydälle!",
 	"Copy": "Kopioi",
 	"Copy": "Kopioi",
 	"Copy last code block": "Kopioi viimeisin koodilohko",
 	"Copy last code block": "Kopioi viimeisin koodilohko",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Oletus (AUTOMATIC1111)",
 	"Default (Automatic1111)": "Oletus (AUTOMATIC1111)",
 	"Default (SentenceTransformers)": "Oletus (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Oletus (SentenceTransformers)",
 	"Default (Web API)": "Oletus (web-API)",
 	"Default (Web API)": "Oletus (web-API)",
+	"Default (Whisper)": "",
 	"Default Model": "Oletusmalli",
 	"Default Model": "Oletusmalli",
 	"Default model updated": "Oletusmalli päivitetty",
 	"Default model updated": "Oletusmalli päivitetty",
 	"Default Prompt Suggestions": "Oletuskehotteiden ehdotukset",
 	"Default Prompt Suggestions": "Oletuskehotteiden ehdotukset",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Löydä kehote",
 	"Discover a prompt": "Löydä kehote",
 	"Discover, download, and explore custom prompts": "Löydä ja lataa mukautettuja kehotteita",
 	"Discover, download, and explore custom prompts": "Löydä ja lataa mukautettuja kehotteita",
 	"Discover, download, and explore model presets": "Löydä ja lataa mallien esiasetuksia",
 	"Discover, download, and explore model presets": "Löydä ja lataa mallien esiasetuksia",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Näytä käyttäjänimi keskustelussa",
 	"Display the username instead of You in the Chat": "Näytä käyttäjänimi keskustelussa",
 	"Document": "Asiakirja",
 	"Document": "Asiakirja",
 	"Document Settings": "Asiakirja-asetukset",
 	"Document Settings": "Asiakirja-asetukset",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Vie asiakirjakartoitus",
 	"Export Documents Mapping": "Vie asiakirjakartoitus",
 	"Export Models": "Vie malleja",
 	"Export Models": "Vie malleja",
 	"Export Prompts": "Vie kehotteet",
 	"Export Prompts": "Vie kehotteet",
+	"External Models": "",
 	"Failed to create API Key.": "API-avaimen luonti epäonnistui.",
 	"Failed to create API Key.": "API-avaimen luonti epäonnistui.",
 	"Failed to read clipboard contents": "Leikepöydän sisällön lukeminen epäonnistui",
 	"Failed to read clipboard contents": "Leikepöydän sisällön lukeminen epäonnistui",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "Info",
 	"Info": "Info",
 	"Input commands": "Syötä komennot",
 	"Input commands": "Syötä komennot",
 	"Install from Github URL": "Asenna Githubin URL-osoitteesta",
 	"Install from Github URL": "Asenna Githubin URL-osoitteesta",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Käyttöliittymä",
 	"Interface": "Käyttöliittymä",
 	"Invalid Tag": "Virheellinen tagi",
 	"Invalid Tag": "Virheellinen tagi",
 	"January": "tammikuu",
 	"January": "tammikuu",
@@ -267,11 +275,12 @@
 	"Language": "Kieli",
 	"Language": "Kieli",
 	"Last Active": "Viimeksi aktiivinen",
 	"Last Active": "Viimeksi aktiivinen",
 	"Light": "Vaalea",
 	"Light": "Vaalea",
-	"Listening...": "Kuunnellaan...",
 	"LLMs can make mistakes. Verify important information.": "Kielimallit voivat tehdä virheitä. Varmista tärkeät tiedot.",
 	"LLMs can make mistakes. Verify important information.": "Kielimallit voivat tehdä virheitä. Varmista tärkeät tiedot.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Tehnyt OpenWebUI-yhteisö",
 	"Made by OpenWebUI Community": "Tehnyt OpenWebUI-yhteisö",
 	"Make sure to enclose them with": "Varmista, että suljet ne",
 	"Make sure to enclose them with": "Varmista, että suljet ne",
+	"Manage": "",
 	"Manage Models": "Hallitse malleja",
 	"Manage Models": "Hallitse malleja",
 	"Manage Ollama Models": "Hallitse Ollama-malleja",
 	"Manage Ollama Models": "Hallitse Ollama-malleja",
 	"Manage Pipelines": "Hallitse putkia",
 	"Manage Pipelines": "Hallitse putkia",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "Ollama API poistettu käytöstä",
 	"Ollama API disabled": "Ollama API poistettu käytöstä",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Ollama-versio",
 	"Ollama Version": "Ollama-versio",
 	"On": "Päällä",
 	"On": "Päällä",
 	"Only": "Vain",
 	"Only": "Vain",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF-tiedosto (.pdf)",
 	"PDF document (.pdf)": "PDF-tiedosto (.pdf)",
 	"PDF Extract Images (OCR)": "PDF-tiedoston kuvien erottelu (OCR)",
 	"PDF Extract Images (OCR)": "PDF-tiedoston kuvien erottelu (OCR)",
 	"pending": "odottaa",
 	"pending": "odottaa",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Mikrofonin käyttöoikeus evätty: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Mikrofonin käyttöoikeus evätty: {{error}}",
 	"Personalization": "Henkilökohtaisuus",
 	"Personalization": "Henkilökohtaisuus",
 	"Pipelines": "Putkistot",
 	"Pipelines": "Putkistot",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Lue ääneen",
 	"Read Aloud": "Lue ääneen",
 	"Record voice": "Nauhoita ääni",
 	"Record voice": "Nauhoita ääni",
 	"Redirecting you to OpenWebUI Community": "Ohjataan sinut OpenWebUI-yhteisöön",
 	"Redirecting you to OpenWebUI Community": "Ohjataan sinut OpenWebUI-yhteisöön",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Kieltäytyi, vaikka ei olisi pitänyt",
 	"Refused when it shouldn't have": "Kieltäytyi, vaikka ei olisi pitänyt",
 	"Regenerate": "Uudelleenluo",
 	"Regenerate": "Uudelleenluo",
 	"Release Notes": "Julkaisutiedot",
 	"Release Notes": "Julkaisutiedot",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosee-mänty",
 	"Rosé Pine": "Rosee-mänty",
 	"Rosé Pine Dawn": "Aamuinen Rosee-mänty",
 	"Rosé Pine Dawn": "Aamuinen Rosee-mänty",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "Tallenna",
 	"Save": "Tallenna",
 	"Save & Create": "Tallenna ja luo",
 	"Save & Create": "Tallenna ja luo",
 	"Save & Update": "Tallenna ja päivitä",
 	"Save & Update": "Tallenna ja päivitä",
@@ -407,12 +420,14 @@
 	"See what's new": "Katso, mitä uutta",
 	"See what's new": "Katso, mitä uutta",
 	"Seed": "Siemen",
 	"Seed": "Siemen",
 	"Select a base model": "Valitse perusmalli",
 	"Select a base model": "Valitse perusmalli",
+	"Select a engine": "",
 	"Select a mode": "Valitse tila",
 	"Select a mode": "Valitse tila",
 	"Select a model": "Valitse malli",
 	"Select a model": "Valitse malli",
 	"Select a pipeline": "Valitse putki",
 	"Select a pipeline": "Valitse putki",
 	"Select a pipeline url": "Valitse putken URL-osoite",
 	"Select a pipeline url": "Valitse putken URL-osoite",
 	"Select an Ollama instance": "Valitse Ollama-instanssi",
 	"Select an Ollama instance": "Valitse Ollama-instanssi",
 	"Select model": "Valitse malli",
 	"Select model": "Valitse malli",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "Valitut mallit eivät tue kuvasyötteitä",
 	"Selected model(s) do not support image inputs": "Valitut mallit eivät tue kuvasyötteitä",
 	"Send": "Lähetä",
 	"Send": "Lähetä",
 	"Send a Message": "Lähetä viesti",
 	"Send a Message": "Lähetä viesti",
@@ -449,7 +464,6 @@
 	"Source": "Lähde",
 	"Source": "Lähde",
 	"Speech recognition error: {{error}}": "Puheentunnistusvirhe: {{error}}",
 	"Speech recognition error: {{error}}": "Puheentunnistusvirhe: {{error}}",
 	"Speech-to-Text Engine": "Puheentunnistusmoottori",
 	"Speech-to-Text Engine": "Puheentunnistusmoottori",
-	"SpeechRecognition API is not supported in this browser.": "SpeechRecognition-rajapinta ei ole tuettu tässä selaimessa.",
 	"Stop Sequence": "Lopetussekvenssi",
 	"Stop Sequence": "Lopetussekvenssi",
 	"STT Settings": "Puheentunnistusasetukset",
 	"STT Settings": "Puheentunnistusasetukset",
 	"Submit": "Lähetä",
 	"Submit": "Lähetä",
@@ -481,6 +495,7 @@
 	"to": "->",
 	"to": "->",
 	"To access the available model names for downloading,": "Päästäksesi käsiksi ladattavissa oleviin mallinimiin,",
 	"To access the available model names for downloading,": "Päästäksesi käsiksi ladattavissa oleviin mallinimiin,",
 	"To access the GGUF models available for downloading,": "Päästäksesi käsiksi ladattavissa oleviin GGUF-malleihin,",
 	"To access the GGUF models available for downloading,": "Päästäksesi käsiksi ladattavissa oleviin GGUF-malleihin,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "keskustelusyötteeseen.",
 	"to chat input.": "keskustelusyötteeseen.",
 	"Today": "Tänään",
 	"Today": "Tänään",
 	"Toggle settings": "Kytke asetukset",
 	"Toggle settings": "Kytke asetukset",
@@ -497,6 +512,7 @@
 	"Update password": "Päivitä salasana",
 	"Update password": "Päivitä salasana",
 	"Upload a GGUF model": "Lataa GGUF-malli",
 	"Upload a GGUF model": "Lataa GGUF-malli",
 	"Upload Files": "Lataa tiedostoja",
 	"Upload Files": "Lataa tiedostoja",
+	"Upload Pipeline": "",
 	"Upload Progress": "Latauksen eteneminen",
 	"Upload Progress": "Latauksen eteneminen",
 	"URL Mode": "URL-tila",
 	"URL Mode": "URL-tila",
 	"Use '#' in the prompt input to load and select your documents.": "Käytä '#' syötteessä ladataksesi ja valitaksesi asiakirjoja.",
 	"Use '#' in the prompt input to load and select your documents.": "Käytä '#' syötteessä ladataksesi ja valitaksesi asiakirjoja.",
@@ -515,6 +531,7 @@
 	"Warning": "Varoitus",
 	"Warning": "Varoitus",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Varoitus: Jos päivität tai vaihdat upotusmallia, sinun on tuotava kaikki asiakirjat uudelleen.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Varoitus: Jos päivität tai vaihdat upotusmallia, sinun on tuotava kaikki asiakirjat uudelleen.",
 	"Web": "Web",
 	"Web": "Web",
+	"Web API": "",
 	"Web Loader Settings": "Web Loader asetukset",
 	"Web Loader Settings": "Web Loader asetukset",
 	"Web Params": "Web-parametrit",
 	"Web Params": "Web-parametrit",
 	"Web Search": "Web-haku",
 	"Web Search": "Web-haku",
@@ -525,18 +542,19 @@
 	"WebUI will make requests to": "WebUI tekee pyyntöjä",
 	"WebUI will make requests to": "WebUI tekee pyyntöjä",
 	"What’s New in": "Mitä uutta",
 	"What’s New in": "Mitä uutta",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Kun historia on pois päältä, uudet keskustelut tässä selaimessa eivät näy historiassasi millään laitteellasi.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Kun historia on pois päältä, uudet keskustelut tässä selaimessa eivät näy historiassasi millään laitteellasi.",
-	"Whisper (Local)": "Whisper (paikallinen)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "Työtilat",
 	"Workspace": "Työtilat",
 	"Write a prompt suggestion (e.g. Who are you?)": "Kirjoita ehdotettu kehote (esim. Kuka olet?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Kirjoita ehdotettu kehote (esim. Kuka olet?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Kirjoita 50 sanan yhteenveto, joka tiivistää [aihe tai avainsana].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Kirjoita 50 sanan yhteenveto, joka tiivistää [aihe tai avainsana].",
 	"Yesterday": "Eilen",
 	"Yesterday": "Eilen",
 	"You": "Sinä",
 	"You": "Sinä",
+	"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 clone a base model": "Perusmallia ei voi kloonata",
 	"You cannot clone a base model": "Perusmallia ei voi kloonata",
 	"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",
 	"You're a helpful assistant.": "Olet avulias apulainen.",
 	"You're a helpful assistant.": "Olet avulias apulainen.",
 	"You're now logged in.": "Olet nyt kirjautunut sisään.",
 	"You're now logged in.": "Olet nyt kirjautunut sisään.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube Loader-asetukset"
 	"Youtube Loader Settings": "Youtube Loader-asetukset"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "un utilisateur",
 	"a user": "un utilisateur",
 	"About": "À propos",
 	"About": "À propos",
 	"Account": "Compte",
 	"Account": "Compte",
+	"Account Activation Pending": "",
 	"Accurate information": "Information précise",
 	"Accurate information": "Information précise",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Ajouter",
 	"Add": "Ajouter",
@@ -29,6 +30,7 @@
 	"Add User": "Ajouter un utilisateur",
 	"Add User": "Ajouter un utilisateur",
 	"Adjusting these settings will apply changes universally to all users.": "L'ajustement de ces paramètres appliquera les changements à tous les utilisateurs.",
 	"Adjusting these settings will apply changes universally to all users.": "L'ajustement de ces paramètres appliquera les changements à tous les utilisateurs.",
 	"admin": "Administrateur",
 	"admin": "Administrateur",
+	"Admin": "",
 	"Admin Panel": "Panneau d'administration",
 	"Admin Panel": "Panneau d'administration",
 	"Admin Settings": "Paramètres d'administration",
 	"Admin Settings": "Paramètres d'administration",
 	"Advanced Parameters": "Paramètres avancés",
 	"Advanced Parameters": "Paramètres avancés",
@@ -59,7 +61,6 @@
 	"Audio": "Audio",
 	"Audio": "Audio",
 	"August": "Août",
 	"August": "Août",
 	"Auto-playback response": "Réponse en lecture automatique",
 	"Auto-playback response": "Réponse en lecture automatique",
-	"Auto-send input after 3 sec.": "Envoyer automatiquement l'entrée après 3 sec.",
 	"AUTOMATIC1111 Base URL": "URL de base AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL": "URL de base AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL is required.": "L'URL de base AUTOMATIC1111 est requise.",
 	"AUTOMATIC1111 Base URL is required.": "L'URL de base AUTOMATIC1111 est requise.",
 	"available!": "disponible !",
 	"available!": "disponible !",
@@ -71,6 +72,7 @@
 	"Being lazy": "En manque de temps",
 	"Being lazy": "En manque de temps",
 	"Brave Search API Key": "Clé d’API de recherche brave",
 	"Brave Search API Key": "Clé d’API de recherche brave",
 	"Bypass SSL verification for Websites": "Parcourir la vérification SSL pour les sites Web",
 	"Bypass SSL verification for Websites": "Parcourir la vérification SSL pour les sites Web",
+	"Call": "",
 	"Cancel": "Annuler",
 	"Cancel": "Annuler",
 	"Capabilities": "Capacités",
 	"Capabilities": "Capacités",
 	"Change Password": "Changer le mot de passe",
 	"Change Password": "Changer le mot de passe",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Paramètres de bloc",
 	"Chunk Params": "Paramètres de bloc",
 	"Chunk Size": "Taille de bloc",
 	"Chunk Size": "Taille de bloc",
 	"Citation": "Citations",
 	"Citation": "Citations",
+	"Clear memory": "",
 	"Click here for help.": "Cliquez ici pour de l'aide.",
 	"Click here for help.": "Cliquez ici pour de l'aide.",
 	"Click here to": "Cliquez ici pour",
 	"Click here to": "Cliquez ici pour",
 	"Click here to select": "Cliquez ici pour sélectionner",
 	"Click here to select": "Cliquez ici pour sélectionner",
 	"Click here to select a csv file.": "Cliquez ici pour sélectionner un fichier csv.",
 	"Click here to select a csv file.": "Cliquez ici pour sélectionner un fichier csv.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Cliquez ici pour sélectionner des documents.",
 	"Click here to select documents.": "Cliquez ici pour sélectionner des documents.",
 	"click here.": "cliquez ici.",
 	"click here.": "cliquez ici.",
 	"Click on the user role button to change a user's role.": "Cliquez sur le bouton de rôle d'utilisateur pour changer le rôle d'un utilisateur.",
 	"Click on the user role button to change a user's role.": "Cliquez sur le bouton de rôle d'utilisateur pour changer le rôle d'un utilisateur.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Demandes simultanées",
 	"Concurrent Requests": "Demandes simultanées",
 	"Confirm Password": "Confirmer le mot de passe",
 	"Confirm Password": "Confirmer le mot de passe",
 	"Connections": "Connexions",
 	"Connections": "Connexions",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Contenu",
 	"Content": "Contenu",
 	"Context Length": "Longueur du contexte",
 	"Context Length": "Longueur du contexte",
 	"Continue Response": "Continuer la réponse",
 	"Continue Response": "Continuer la réponse",
-	"Conversation Mode": "Mode de conversation",
 	"Copied shared chat URL to clipboard!": "URL de chat partagé copié dans le presse-papier !",
 	"Copied shared chat URL to clipboard!": "URL de chat partagé copié dans le presse-papier !",
 	"Copy": "Copier",
 	"Copy": "Copier",
 	"Copy last code block": "Copier le dernier bloc de code",
 	"Copy last code block": "Copier le dernier bloc de code",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Par défaut (Automatic1111)",
 	"Default (Automatic1111)": "Par défaut (Automatic1111)",
 	"Default (SentenceTransformers)": "Par défaut (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Par défaut (SentenceTransformers)",
 	"Default (Web API)": "Par défaut (API Web)",
 	"Default (Web API)": "Par défaut (API Web)",
+	"Default (Whisper)": "",
 	"Default Model": "Modèle par défaut",
 	"Default Model": "Modèle par défaut",
 	"Default model updated": "Modèle par défaut mis à jour",
 	"Default model updated": "Modèle par défaut mis à jour",
 	"Default Prompt Suggestions": "Suggestions de prompt par défaut",
 	"Default Prompt Suggestions": "Suggestions de prompt par défaut",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Découvrir un prompt",
 	"Discover a prompt": "Découvrir un prompt",
 	"Discover, download, and explore custom prompts": "Découvrir, télécharger et explorer des prompts personnalisés",
 	"Discover, download, and explore custom prompts": "Découvrir, télécharger et explorer des prompts personnalisés",
 	"Discover, download, and explore model presets": "Découvrir, télécharger et explorer des préconfigurations de modèles",
 	"Discover, download, and explore model presets": "Découvrir, télécharger et explorer des préconfigurations de modèles",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Afficher le nom d'utilisateur au lieu de 'Vous' dans la Discussion",
 	"Display the username instead of You in the Chat": "Afficher le nom d'utilisateur au lieu de 'Vous' dans la Discussion",
 	"Document": "Document",
 	"Document": "Document",
 	"Document Settings": "Paramètres du document",
 	"Document Settings": "Paramètres du document",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Exporter le mappage des documents",
 	"Export Documents Mapping": "Exporter le mappage des documents",
 	"Export Models": "Modèles d’exportation",
 	"Export Models": "Modèles d’exportation",
 	"Export Prompts": "Exporter les prompts",
 	"Export Prompts": "Exporter les prompts",
+	"External Models": "",
 	"Failed to create API Key.": "Impossible de créer la clé API.",
 	"Failed to create API Key.": "Impossible de créer la clé API.",
 	"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
 	"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "L’info",
 	"Info": "L’info",
 	"Input commands": "Entrez des commandes d'entrée",
 	"Input commands": "Entrez des commandes d'entrée",
 	"Install from Github URL": "Installer à partir de l’URL Github",
 	"Install from Github URL": "Installer à partir de l’URL Github",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Interface",
 	"Interface": "Interface",
 	"Invalid Tag": "Tag invalide",
 	"Invalid Tag": "Tag invalide",
 	"January": "Janvier",
 	"January": "Janvier",
@@ -267,11 +275,12 @@
 	"Language": "Langue",
 	"Language": "Langue",
 	"Last Active": "Dernière activité",
 	"Last Active": "Dernière activité",
 	"Light": "Lumière",
 	"Light": "Lumière",
-	"Listening...": "Écoute...",
 	"LLMs can make mistakes. Verify important information.": "Les LLMs peuvent faire des erreurs. Vérifiez les informations importantes.",
 	"LLMs can make mistakes. Verify important information.": "Les LLMs peuvent faire des erreurs. Vérifiez les informations importantes.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Réalisé par la communauté OpenWebUI",
 	"Made by OpenWebUI Community": "Réalisé par la communauté OpenWebUI",
 	"Make sure to enclose them with": "Assurez-vous de les entourer avec",
 	"Make sure to enclose them with": "Assurez-vous de les entourer avec",
+	"Manage": "",
 	"Manage Models": "Gérer les modèles",
 	"Manage Models": "Gérer les modèles",
 	"Manage Ollama Models": "Gérer les modèles Ollama",
 	"Manage Ollama Models": "Gérer les modèles Ollama",
 	"Manage Pipelines": "Gérer les pipelines",
 	"Manage Pipelines": "Gérer les pipelines",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "API Ollama désactivée",
 	"Ollama API disabled": "API Ollama désactivée",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Version Ollama",
 	"Ollama Version": "Version Ollama",
 	"On": "Activé",
 	"On": "Activé",
 	"Only": "Seulement",
 	"Only": "Seulement",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "Document PDF (.pdf)",
 	"PDF document (.pdf)": "Document PDF (.pdf)",
 	"PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)",
 	"PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)",
 	"pending": "en attente",
 	"pending": "en attente",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Permission refusée lors de l'accès au microphone : {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Permission refusée lors de l'accès au microphone : {{error}}",
 	"Personalization": "Personnalisation",
 	"Personalization": "Personnalisation",
 	"Pipelines": "Pipelines",
 	"Pipelines": "Pipelines",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Lire à l'échelle",
 	"Read Aloud": "Lire à l'échelle",
 	"Record voice": "Enregistrer la voix",
 	"Record voice": "Enregistrer la voix",
 	"Redirecting you to OpenWebUI Community": "Vous redirige vers la communauté OpenWebUI",
 	"Redirecting you to OpenWebUI Community": "Vous redirige vers la communauté OpenWebUI",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Refusé quand il ne devrait pas l'être",
 	"Refused when it shouldn't have": "Refusé quand il ne devrait pas l'être",
 	"Regenerate": "Régénérer",
 	"Regenerate": "Régénérer",
 	"Release Notes": "Notes de version",
 	"Release Notes": "Notes de version",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Pin Rosé",
 	"Rosé Pine": "Pin Rosé",
 	"Rosé Pine Dawn": "Aube Pin Rosé",
 	"Rosé Pine Dawn": "Aube Pin Rosé",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "Enregistrer",
 	"Save": "Enregistrer",
 	"Save & Create": "Enregistrer & Créer",
 	"Save & Create": "Enregistrer & Créer",
 	"Save & Update": "Enregistrer & Mettre à jour",
 	"Save & Update": "Enregistrer & Mettre à jour",
@@ -408,12 +421,14 @@
 	"See what's new": "Voir les nouveautés",
 	"See what's new": "Voir les nouveautés",
 	"Seed": "Graine",
 	"Seed": "Graine",
 	"Select a base model": "Sélectionner un modèle de base",
 	"Select a base model": "Sélectionner un modèle de base",
+	"Select a engine": "",
 	"Select a mode": "Sélectionnez un mode",
 	"Select a mode": "Sélectionnez un mode",
 	"Select a model": "Sélectionnez un modèle",
 	"Select a model": "Sélectionnez un modèle",
 	"Select a pipeline": "Sélectionner un pipeline",
 	"Select a pipeline": "Sélectionner un pipeline",
 	"Select a pipeline url": "Sélectionnez une URL de pipeline",
 	"Select a pipeline url": "Sélectionnez une URL de pipeline",
 	"Select an Ollama instance": "Sélectionner une instance Ollama",
 	"Select an Ollama instance": "Sélectionner une instance Ollama",
 	"Select model": "Sélectionnez un modèle",
 	"Select model": "Sélectionnez un modèle",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "Les modèles sélectionnés ne prennent pas en charge les entrées d’image",
 	"Selected model(s) do not support image inputs": "Les modèles sélectionnés ne prennent pas en charge les entrées d’image",
 	"Send": "Envoyer",
 	"Send": "Envoyer",
 	"Send a Message": "Envoyer un message",
 	"Send a Message": "Envoyer un message",
@@ -450,7 +465,6 @@
 	"Source": "Source",
 	"Source": "Source",
 	"Speech recognition error: {{error}}": "Erreur de reconnaissance vocale : {{error}}",
 	"Speech recognition error: {{error}}": "Erreur de reconnaissance vocale : {{error}}",
 	"Speech-to-Text Engine": "Moteur reconnaissance vocale",
 	"Speech-to-Text Engine": "Moteur reconnaissance vocale",
-	"SpeechRecognition API is not supported in this browser.": "L'API SpeechRecognition n'est pas prise en charge dans ce navigateur.",
 	"Stop Sequence": "Séquence d'arrêt",
 	"Stop Sequence": "Séquence d'arrêt",
 	"STT Settings": "Paramètres de STT",
 	"STT Settings": "Paramètres de STT",
 	"Submit": "Soumettre",
 	"Submit": "Soumettre",
@@ -482,6 +496,7 @@
 	"to": "à",
 	"to": "à",
 	"To access the available model names for downloading,": "Pour accéder aux noms de modèles disponibles pour le téléchargement,",
 	"To access the available model names for downloading,": "Pour accéder aux noms de modèles disponibles pour le téléchargement,",
 	"To access the GGUF models available for downloading,": "Pour accéder aux modèles GGUF disponibles pour le téléchargement,",
 	"To access the GGUF models available for downloading,": "Pour accéder aux modèles GGUF disponibles pour le téléchargement,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "à l'entrée du chat.",
 	"to chat input.": "à l'entrée du chat.",
 	"Today": "Aujourd'hui",
 	"Today": "Aujourd'hui",
 	"Toggle settings": "Basculer les paramètres",
 	"Toggle settings": "Basculer les paramètres",
@@ -498,6 +513,7 @@
 	"Update password": "Mettre à jour le mot de passe",
 	"Update password": "Mettre à jour le mot de passe",
 	"Upload a GGUF model": "Téléverser un modèle GGUF",
 	"Upload a GGUF model": "Téléverser un modèle GGUF",
 	"Upload Files": "Télécharger des fichiers",
 	"Upload Files": "Télécharger des fichiers",
+	"Upload Pipeline": "",
 	"Upload Progress": "Progression du Téléversement",
 	"Upload Progress": "Progression du Téléversement",
 	"URL Mode": "Mode URL",
 	"URL Mode": "Mode URL",
 	"Use '#' in the prompt input to load and select your documents.": "Utilisez '#' dans l'entrée de prompt pour charger et sélectionner vos documents.",
 	"Use '#' in the prompt input to load and select your documents.": "Utilisez '#' dans l'entrée de prompt pour charger et sélectionner vos documents.",
@@ -516,6 +532,7 @@
 	"Warning": "Avertissement",
 	"Warning": "Avertissement",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Attention : Si vous mettez à jour ou changez votre modèle d'intégration, vous devrez réimporter tous les documents.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Attention : Si vous mettez à jour ou changez votre modèle d'intégration, vous devrez réimporter tous les documents.",
 	"Web": "Web",
 	"Web": "Web",
+	"Web API": "",
 	"Web Loader Settings": "Paramètres du chargeur Web",
 	"Web Loader Settings": "Paramètres du chargeur Web",
 	"Web Params": "Paramètres Web",
 	"Web Params": "Paramètres Web",
 	"Web Search": "Recherche sur le Web",
 	"Web Search": "Recherche sur le Web",
@@ -526,18 +543,19 @@
 	"WebUI will make requests to": "WebUI effectuera des demandes à",
 	"WebUI will make requests to": "WebUI effectuera des demandes à",
 	"What’s New in": "Quoi de neuf dans",
 	"What’s New in": "Quoi de neuf dans",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Lorsque l'historique est désactivé, les nouvelles discussions sur ce navigateur n'apparaîtront pas dans votre historique sur aucun de vos appareils.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Lorsque l'historique est désactivé, les nouvelles discussions sur ce navigateur n'apparaîtront pas dans votre historique sur aucun de vos appareils.",
-	"Whisper (Local)": "Whisper (Local)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "Espace de travail",
 	"Workspace": "Espace de travail",
 	"Write a prompt suggestion (e.g. Who are you?)": "Rédigez une suggestion de prompt (p. ex. Qui êtes-vous ?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Rédigez une suggestion de prompt (p. ex. Qui êtes-vous ?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Rédigez un résumé en 50 mots qui résume [sujet ou mot-clé].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Rédigez un résumé en 50 mots qui résume [sujet ou mot-clé].",
 	"Yesterday": "hier",
 	"Yesterday": "hier",
 	"You": "Vous",
 	"You": "Vous",
+	"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 clone a base model": "Vous ne pouvez pas cloner un modèle de base",
 	"You cannot clone a base model": "Vous ne pouvez pas cloner un modèle de base",
 	"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",
 	"You're a helpful assistant.": "Vous êtes un assistant utile",
 	"You're a helpful assistant.": "Vous êtes un assistant utile",
 	"You're now logged in.": "Vous êtes maintenant connecté.",
 	"You're now logged in.": "Vous êtes maintenant connecté.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Paramètres du chargeur Youtube"
 	"Youtube Loader Settings": "Paramètres du chargeur Youtube"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "un utilisateur",
 	"a user": "un utilisateur",
 	"About": "À Propos",
 	"About": "À Propos",
 	"Account": "Compte",
 	"Account": "Compte",
+	"Account Activation Pending": "",
 	"Accurate information": "Information précise",
 	"Accurate information": "Information précise",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Ajouter",
 	"Add": "Ajouter",
@@ -29,6 +30,7 @@
 	"Add User": "Ajouter un Utilisateur",
 	"Add User": "Ajouter un Utilisateur",
 	"Adjusting these settings will apply changes universally to all users.": "L'ajustement de ces paramètres appliquera les changements à tous les utilisateurs.",
 	"Adjusting these settings will apply changes universally to all users.": "L'ajustement de ces paramètres appliquera les changements à tous les utilisateurs.",
 	"admin": "admin",
 	"admin": "admin",
+	"Admin": "",
 	"Admin Panel": "Panneau d'Administration",
 	"Admin Panel": "Panneau d'Administration",
 	"Admin Settings": "Paramètres d'Administration",
 	"Admin Settings": "Paramètres d'Administration",
 	"Advanced Parameters": "Paramètres Avancés",
 	"Advanced Parameters": "Paramètres Avancés",
@@ -59,7 +61,6 @@
 	"Audio": "Audio",
 	"Audio": "Audio",
 	"August": "Août",
 	"August": "Août",
 	"Auto-playback response": "Réponse en lecture automatique",
 	"Auto-playback response": "Réponse en lecture automatique",
-	"Auto-send input after 3 sec.": "Envoyer automatiquement l'entrée après 3 sec.",
 	"AUTOMATIC1111 Base URL": "URL de base AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL": "URL de base AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL is required.": "L'URL de base AUTOMATIC1111 est requise.",
 	"AUTOMATIC1111 Base URL is required.": "L'URL de base AUTOMATIC1111 est requise.",
 	"available!": "disponible !",
 	"available!": "disponible !",
@@ -71,6 +72,7 @@
 	"Being lazy": "Est paresseux",
 	"Being lazy": "Est paresseux",
 	"Brave Search API Key": "Clé API Brave Search",
 	"Brave Search API Key": "Clé API Brave Search",
 	"Bypass SSL verification for Websites": "Contourner la vérification SSL pour les sites Web.",
 	"Bypass SSL verification for Websites": "Contourner la vérification SSL pour les sites Web.",
+	"Call": "",
 	"Cancel": "Annuler",
 	"Cancel": "Annuler",
 	"Capabilities": "Capacités",
 	"Capabilities": "Capacités",
 	"Change Password": "Changer le mot de passe",
 	"Change Password": "Changer le mot de passe",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Paramètres de bloc",
 	"Chunk Params": "Paramètres de bloc",
 	"Chunk Size": "Taille de bloc",
 	"Chunk Size": "Taille de bloc",
 	"Citation": "Citation",
 	"Citation": "Citation",
+	"Clear memory": "",
 	"Click here for help.": "Cliquez ici pour de l'aide.",
 	"Click here for help.": "Cliquez ici pour de l'aide.",
 	"Click here to": "Cliquez ici pour",
 	"Click here to": "Cliquez ici pour",
 	"Click here to select": "Cliquez ici pour sélectionner",
 	"Click here to select": "Cliquez ici pour sélectionner",
 	"Click here to select a csv file.": "Cliquez ici pour sélectionner un fichier csv.",
 	"Click here to select a csv file.": "Cliquez ici pour sélectionner un fichier csv.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Cliquez ici pour sélectionner des documents.",
 	"Click here to select documents.": "Cliquez ici pour sélectionner des documents.",
 	"click here.": "cliquez ici.",
 	"click here.": "cliquez ici.",
 	"Click on the user role button to change a user's role.": "Cliquez sur le bouton de rôle d'utilisateur pour changer le rôle d'un utilisateur.",
 	"Click on the user role button to change a user's role.": "Cliquez sur le bouton de rôle d'utilisateur pour changer le rôle d'un utilisateur.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Demandes simultanées",
 	"Concurrent Requests": "Demandes simultanées",
 	"Confirm Password": "Confirmer le mot de passe",
 	"Confirm Password": "Confirmer le mot de passe",
 	"Connections": "Connexions",
 	"Connections": "Connexions",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Contenu",
 	"Content": "Contenu",
 	"Context Length": "Longueur du contexte",
 	"Context Length": "Longueur du contexte",
 	"Continue Response": "Continuer la Réponse",
 	"Continue Response": "Continuer la Réponse",
-	"Conversation Mode": "Mode de conversation",
 	"Copied shared chat URL to clipboard!": "URL du chat copié dans le presse-papiers !",
 	"Copied shared chat URL to clipboard!": "URL du chat copié dans le presse-papiers !",
 	"Copy": "Copier",
 	"Copy": "Copier",
 	"Copy last code block": "Copier le dernier bloc de code",
 	"Copy last code block": "Copier le dernier bloc de code",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Par défaut (Automatic1111)",
 	"Default (Automatic1111)": "Par défaut (Automatic1111)",
 	"Default (SentenceTransformers)": "Par défaut (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Par défaut (SentenceTransformers)",
 	"Default (Web API)": "Par défaut (API Web)",
 	"Default (Web API)": "Par défaut (API Web)",
+	"Default (Whisper)": "",
 	"Default Model": "Modèle par défaut",
 	"Default Model": "Modèle par défaut",
 	"Default model updated": "Modèle par défaut mis à jour",
 	"Default model updated": "Modèle par défaut mis à jour",
 	"Default Prompt Suggestions": "Suggestions de prompt par défaut",
 	"Default Prompt Suggestions": "Suggestions de prompt par défaut",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Découvrir un prompt",
 	"Discover a prompt": "Découvrir un prompt",
 	"Discover, download, and explore custom prompts": "Découvrir, télécharger et explorer des prompts personnalisés",
 	"Discover, download, and explore custom prompts": "Découvrir, télécharger et explorer des prompts personnalisés",
 	"Discover, download, and explore model presets": "Découvrir, télécharger et explorer des préconfigurations de modèles",
 	"Discover, download, and explore model presets": "Découvrir, télécharger et explorer des préconfigurations de modèles",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Afficher le nom d'utilisateur au lieu de 'Vous' dans le Chat",
 	"Display the username instead of You in the Chat": "Afficher le nom d'utilisateur au lieu de 'Vous' dans le Chat",
 	"Document": "Document",
 	"Document": "Document",
 	"Document Settings": "Paramètres du document",
 	"Document Settings": "Paramètres du document",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Exporter la Correspondance des Documents",
 	"Export Documents Mapping": "Exporter la Correspondance des Documents",
 	"Export Models": "Exporter les Modèles",
 	"Export Models": "Exporter les Modèles",
 	"Export Prompts": "Exporter les Prompts",
 	"Export Prompts": "Exporter les Prompts",
+	"External Models": "",
 	"Failed to create API Key.": "Échec de la création de la clé d'API.",
 	"Failed to create API Key.": "Échec de la création de la clé d'API.",
 	"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
 	"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "Info",
 	"Info": "Info",
 	"Input commands": "Entrez les commandes d'entrée",
 	"Input commands": "Entrez les commandes d'entrée",
 	"Install from Github URL": "Installer à partir de l’URL Github",
 	"Install from Github URL": "Installer à partir de l’URL Github",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Interface",
 	"Interface": "Interface",
 	"Invalid Tag": "Tag Invalide",
 	"Invalid Tag": "Tag Invalide",
 	"January": "Janvier",
 	"January": "Janvier",
@@ -267,11 +275,12 @@
 	"Language": "Langue",
 	"Language": "Langue",
 	"Last Active": "Dernier Activité",
 	"Last Active": "Dernier Activité",
 	"Light": "Clair",
 	"Light": "Clair",
-	"Listening...": "Écoute...",
 	"LLMs can make mistakes. Verify important information.": "Les LLMs peuvent faire des erreurs. Vérifiez les informations importantes.",
 	"LLMs can make mistakes. Verify important information.": "Les LLMs peuvent faire des erreurs. Vérifiez les informations importantes.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Réalisé par la communauté OpenWebUI",
 	"Made by OpenWebUI Community": "Réalisé par la communauté OpenWebUI",
 	"Make sure to enclose them with": "Assurez-vous de les entourer avec",
 	"Make sure to enclose them with": "Assurez-vous de les entourer avec",
+	"Manage": "",
 	"Manage Models": "Gérer les modèles",
 	"Manage Models": "Gérer les modèles",
 	"Manage Ollama Models": "Gérer les modèles Ollama",
 	"Manage Ollama Models": "Gérer les modèles Ollama",
 	"Manage Pipelines": "Gérer les pipelines",
 	"Manage Pipelines": "Gérer les pipelines",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "API Ollama",
 	"Ollama API": "API Ollama",
 	"Ollama API disabled": "API Ollama désactivée",
 	"Ollama API disabled": "API Ollama désactivée",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Version Ollama",
 	"Ollama Version": "Version Ollama",
 	"On": "Activé",
 	"On": "Activé",
 	"Only": "Seulement",
 	"Only": "Seulement",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "Document PDF (.pdf)",
 	"PDF document (.pdf)": "Document PDF (.pdf)",
 	"PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)",
 	"PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)",
 	"pending": "en attente",
 	"pending": "en attente",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Permission refusée lors de l'accès au microphone : {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Permission refusée lors de l'accès au microphone : {{error}}",
 	"Personalization": "Personnalisation",
 	"Personalization": "Personnalisation",
 	"Pipelines": "Pipelines",
 	"Pipelines": "Pipelines",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Lire à Voix Haute",
 	"Read Aloud": "Lire à Voix Haute",
 	"Record voice": "Enregistrer la voix",
 	"Record voice": "Enregistrer la voix",
 	"Redirecting you to OpenWebUI Community": "Redirection vers la communauté OpenWebUI",
 	"Redirecting you to OpenWebUI Community": "Redirection vers la communauté OpenWebUI",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Refuse quand il ne devrait pas",
 	"Refused when it shouldn't have": "Refuse quand il ne devrait pas",
 	"Regenerate": "Regénérer",
 	"Regenerate": "Regénérer",
 	"Release Notes": "Notes de Version",
 	"Release Notes": "Notes de Version",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Pin Rosé",
 	"Rosé Pine": "Pin Rosé",
 	"Rosé Pine Dawn": "Aube Pin Rosé",
 	"Rosé Pine Dawn": "Aube Pin Rosé",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "Enregistrer",
 	"Save": "Enregistrer",
 	"Save & Create": "Enregistrer & Créer",
 	"Save & Create": "Enregistrer & Créer",
 	"Save & Update": "Enregistrer & Mettre à jour",
 	"Save & Update": "Enregistrer & Mettre à jour",
@@ -408,12 +421,14 @@
 	"See what's new": "Voir les nouveautés",
 	"See what's new": "Voir les nouveautés",
 	"Seed": "Graine",
 	"Seed": "Graine",
 	"Select a base model": "Sélectionner un modèle de base",
 	"Select a base model": "Sélectionner un modèle de base",
+	"Select a engine": "",
 	"Select a mode": "Sélectionner un mode",
 	"Select a mode": "Sélectionner un mode",
 	"Select a model": "Sélectionner un modèle",
 	"Select a model": "Sélectionner un modèle",
 	"Select a pipeline": "Sélectionner un pipeline",
 	"Select a pipeline": "Sélectionner un pipeline",
 	"Select a pipeline url": "Sélectionnez une URL de pipeline",
 	"Select a pipeline url": "Sélectionnez une URL de pipeline",
 	"Select an Ollama instance": "Sélectionner une instance Ollama",
 	"Select an Ollama instance": "Sélectionner une instance Ollama",
 	"Select model": "Sélectionner un modèle",
 	"Select model": "Sélectionner un modèle",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "Modèle(s) séléctionés ne supportent pas les entrées images",
 	"Selected model(s) do not support image inputs": "Modèle(s) séléctionés ne supportent pas les entrées images",
 	"Send": "Envoyer",
 	"Send": "Envoyer",
 	"Send a Message": "Envoyer un message",
 	"Send a Message": "Envoyer un message",
@@ -450,7 +465,6 @@
 	"Source": "Source",
 	"Source": "Source",
 	"Speech recognition error: {{error}}": "Erreur de reconnaissance vocale : {{error}}",
 	"Speech recognition error: {{error}}": "Erreur de reconnaissance vocale : {{error}}",
 	"Speech-to-Text Engine": "Moteur de Reconnaissance Vocale",
 	"Speech-to-Text Engine": "Moteur de Reconnaissance Vocale",
-	"SpeechRecognition API is not supported in this browser.": "L'API SpeechRecognition n'est pas prise en charge dans ce navigateur.",
 	"Stop Sequence": "Séquence d'Arrêt",
 	"Stop Sequence": "Séquence d'Arrêt",
 	"STT Settings": "Paramètres STT",
 	"STT Settings": "Paramètres STT",
 	"Submit": "Envoyer",
 	"Submit": "Envoyer",
@@ -482,6 +496,7 @@
 	"to": "à",
 	"to": "à",
 	"To access the available model names for downloading,": "Pour accéder aux noms de modèles disponibles pour le téléchargement,",
 	"To access the available model names for downloading,": "Pour accéder aux noms de modèles disponibles pour le téléchargement,",
 	"To access the GGUF models available for downloading,": "Pour accéder aux modèles GGUF disponibles pour le téléchargement,",
 	"To access the GGUF models available for downloading,": "Pour accéder aux modèles GGUF disponibles pour le téléchargement,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "à l'entrée du chat.",
 	"to chat input.": "à l'entrée du chat.",
 	"Today": "Aujourd'hui",
 	"Today": "Aujourd'hui",
 	"Toggle settings": "Basculer les paramètres",
 	"Toggle settings": "Basculer les paramètres",
@@ -498,6 +513,7 @@
 	"Update password": "Mettre à Jour le Mot de Passe",
 	"Update password": "Mettre à Jour le Mot de Passe",
 	"Upload a GGUF model": "Téléverser un modèle GGUF",
 	"Upload a GGUF model": "Téléverser un modèle GGUF",
 	"Upload Files": "Télécharger des fichiers",
 	"Upload Files": "Télécharger des fichiers",
+	"Upload Pipeline": "",
 	"Upload Progress": "Progression du Téléversement",
 	"Upload Progress": "Progression du Téléversement",
 	"URL Mode": "Mode URL",
 	"URL Mode": "Mode URL",
 	"Use '#' in the prompt input to load and select your documents.": "Utilisez '#' dans l'entrée du prompt pour charger et sélectionner vos documents.",
 	"Use '#' in the prompt input to load and select your documents.": "Utilisez '#' dans l'entrée du prompt pour charger et sélectionner vos documents.",
@@ -516,6 +532,7 @@
 	"Warning": "Avertissement",
 	"Warning": "Avertissement",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Avertissement : Si vous mettez à jour ou modifier votre modèle d'embedding, vous devrez réimporter tous les documents.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Avertissement : Si vous mettez à jour ou modifier votre modèle d'embedding, vous devrez réimporter tous les documents.",
 	"Web": "Web",
 	"Web": "Web",
+	"Web API": "",
 	"Web Loader Settings": "Paramètres du Chargeur Web",
 	"Web Loader Settings": "Paramètres du Chargeur Web",
 	"Web Params": "Paramètres Web",
 	"Web Params": "Paramètres Web",
 	"Web Search": "Recherche sur le Web",
 	"Web Search": "Recherche sur le Web",
@@ -526,18 +543,19 @@
 	"WebUI will make requests to": "WebUI effectuera des demandes à",
 	"WebUI will make requests to": "WebUI effectuera des demandes à",
 	"What’s New in": "Quoi de neuf dans",
 	"What’s New in": "Quoi de neuf dans",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Lorsque l'historique est désactivé, les nouveaux chats sur ce navigateur n'apparaîtront pas dans votre historique sur aucun de vos appareils.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Lorsque l'historique est désactivé, les nouveaux chats sur ce navigateur n'apparaîtront pas dans votre historique sur aucun de vos appareils.",
-	"Whisper (Local)": "Whisper (Local)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "Espace de Travail",
 	"Workspace": "Espace de Travail",
 	"Write a prompt suggestion (e.g. Who are you?)": "Écrivez une suggestion de prompt (e.x. Qui est-tu ?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Écrivez une suggestion de prompt (e.x. Qui est-tu ?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Ecrivez un résumé en 50 mots qui résume [sujet ou mot-clé]",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Ecrivez un résumé en 50 mots qui résume [sujet ou mot-clé]",
 	"Yesterday": "Hier",
 	"Yesterday": "Hier",
 	"You": "Vous",
 	"You": "Vous",
+	"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 clone a base model": "Vous ne pouvez pas cloner un modèle de base",
 	"You cannot clone a base model": "Vous ne pouvez pas cloner un modèle de base",
 	"You have no archived conversations.": "Vous n'avez pas de conversations archivées",
 	"You have no archived conversations.": "Vous n'avez pas de conversations archivées",
 	"You have shared this chat": "Vous avez partagé ce chat",
 	"You have shared this chat": "Vous avez partagé ce chat",
 	"You're a helpful assistant.": "Vous êtes un assistant utile.",
 	"You're a helpful assistant.": "Vous êtes un assistant utile.",
 	"You're now logged in.": "Vous êtes maintenant connecté.",
 	"You're now logged in.": "Vous êtes maintenant connecté.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Paramètres du Chargeur YouTube"
 	"Youtube Loader Settings": "Paramètres du Chargeur YouTube"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "משתמש",
 	"a user": "משתמש",
 	"About": "אודות",
 	"About": "אודות",
 	"Account": "חשבון",
 	"Account": "חשבון",
+	"Account Activation Pending": "",
 	"Accurate information": "מידע מדויק",
 	"Accurate information": "מידע מדויק",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "הוסף",
 	"Add": "הוסף",
@@ -29,6 +30,7 @@
 	"Add User": "הוסף משתמש",
 	"Add User": "הוסף משתמש",
 	"Adjusting these settings will apply changes universally to all users.": "התאמת הגדרות אלו תחול על כל המשתמשים.",
 	"Adjusting these settings will apply changes universally to all users.": "התאמת הגדרות אלו תחול על כל המשתמשים.",
 	"admin": "מנהל",
 	"admin": "מנהל",
+	"Admin": "",
 	"Admin Panel": "לוח בקרה למנהל",
 	"Admin Panel": "לוח בקרה למנהל",
 	"Admin Settings": "הגדרות מנהל",
 	"Admin Settings": "הגדרות מנהל",
 	"Advanced Parameters": "פרמטרים מתקדמים",
 	"Advanced Parameters": "פרמטרים מתקדמים",
@@ -59,7 +61,6 @@
 	"Audio": "אודיו",
 	"Audio": "אודיו",
 	"August": "אוגוסט",
 	"August": "אוגוסט",
 	"Auto-playback response": "תגובת השמעה אוטומטית",
 	"Auto-playback response": "תגובת השמעה אוטומטית",
-	"Auto-send input after 3 sec.": "שליחת קלט אוטומטית אחרי 3 שניות",
 	"AUTOMATIC1111 Base URL": "כתובת URL בסיסית של AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL": "כתובת URL בסיסית של AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL is required.": "נדרשת כתובת URL בסיסית של AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL is required.": "נדרשת כתובת URL בסיסית של AUTOMATIC1111",
 	"available!": "זמין!",
 	"available!": "זמין!",
@@ -71,6 +72,7 @@
 	"Being lazy": "להיות עצלן",
 	"Being lazy": "להיות עצלן",
 	"Brave Search API Key": "מפתח API של חיפוש אמיץ",
 	"Brave Search API Key": "מפתח API של חיפוש אמיץ",
 	"Bypass SSL verification for Websites": "עקוף אימות SSL עבור אתרים",
 	"Bypass SSL verification for Websites": "עקוף אימות SSL עבור אתרים",
+	"Call": "",
 	"Cancel": "בטל",
 	"Cancel": "בטל",
 	"Capabilities": "יכולות",
 	"Capabilities": "יכולות",
 	"Change Password": "שנה סיסמה",
 	"Change Password": "שנה סיסמה",
@@ -88,10 +90,12 @@
 	"Chunk Params": "פרמטרי נתונים",
 	"Chunk Params": "פרמטרי נתונים",
 	"Chunk Size": "גודל נתונים",
 	"Chunk Size": "גודל נתונים",
 	"Citation": "ציטוט",
 	"Citation": "ציטוט",
+	"Clear memory": "",
 	"Click here for help.": "לחץ כאן לעזרה.",
 	"Click here for help.": "לחץ כאן לעזרה.",
 	"Click here to": "לחץ כאן כדי",
 	"Click here to": "לחץ כאן כדי",
 	"Click here to select": "לחץ כאן לבחירה",
 	"Click here to select": "לחץ כאן לבחירה",
 	"Click here to select a csv file.": "לחץ כאן לבחירת קובץ csv.",
 	"Click here to select a csv file.": "לחץ כאן לבחירת קובץ csv.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "לחץ כאן לבחירת מסמכים.",
 	"Click here to select documents.": "לחץ כאן לבחירת מסמכים.",
 	"click here.": "לחץ כאן.",
 	"click here.": "לחץ כאן.",
 	"Click on the user role button to change a user's role.": "לחץ על כפתור תפקיד המשתמש כדי לשנות את תפקיד המשתמש.",
 	"Click on the user role button to change a user's role.": "לחץ על כפתור תפקיד המשתמש כדי לשנות את תפקיד המשתמש.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "בקשות בו-זמניות",
 	"Concurrent Requests": "בקשות בו-זמניות",
 	"Confirm Password": "אשר סיסמה",
 	"Confirm Password": "אשר סיסמה",
 	"Connections": "חיבורים",
 	"Connections": "חיבורים",
+	"Contact Admin for WebUI Access": "",
 	"Content": "תוכן",
 	"Content": "תוכן",
 	"Context Length": "אורך הקשר",
 	"Context Length": "אורך הקשר",
 	"Continue Response": "המשך תגובה",
 	"Continue Response": "המשך תגובה",
-	"Conversation Mode": "מצב שיחה",
 	"Copied shared chat URL to clipboard!": "העתקת כתובת URL של צ'אט משותף ללוח!",
 	"Copied shared chat URL to clipboard!": "העתקת כתובת URL של צ'אט משותף ללוח!",
 	"Copy": "העתק",
 	"Copy": "העתק",
 	"Copy last code block": "העתק את בלוק הקוד האחרון",
 	"Copy last code block": "העתק את בלוק הקוד האחרון",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "ברירת מחדל (Automatic1111)",
 	"Default (Automatic1111)": "ברירת מחדל (Automatic1111)",
 	"Default (SentenceTransformers)": "ברירת מחדל (SentenceTransformers)",
 	"Default (SentenceTransformers)": "ברירת מחדל (SentenceTransformers)",
 	"Default (Web API)": "ברירת מחדל (Web API)",
 	"Default (Web API)": "ברירת מחדל (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "מודל ברירת מחדל",
 	"Default Model": "מודל ברירת מחדל",
 	"Default model updated": "המודל המוגדר כברירת מחדל עודכן",
 	"Default model updated": "המודל המוגדר כברירת מחדל עודכן",
 	"Default Prompt Suggestions": "הצעות ברירת מחדל לפקודות",
 	"Default Prompt Suggestions": "הצעות ברירת מחדל לפקודות",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "גלה פקודה",
 	"Discover a prompt": "גלה פקודה",
 	"Discover, download, and explore custom prompts": "גלה, הורד, וחקור פקודות מותאמות אישית",
 	"Discover, download, and explore custom prompts": "גלה, הורד, וחקור פקודות מותאמות אישית",
 	"Discover, download, and explore model presets": "גלה, הורד, וחקור הגדרות מודל מוגדרות מראש",
 	"Discover, download, and explore model presets": "גלה, הורד, וחקור הגדרות מודל מוגדרות מראש",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "הצג את שם המשתמש במקום 'אתה' בצ'אט",
 	"Display the username instead of You in the Chat": "הצג את שם המשתמש במקום 'אתה' בצ'אט",
 	"Document": "מסמך",
 	"Document": "מסמך",
 	"Document Settings": "הגדרות מסמך",
 	"Document Settings": "הגדרות מסמך",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "ייצוא מיפוי מסמכים",
 	"Export Documents Mapping": "ייצוא מיפוי מסמכים",
 	"Export Models": "ייצוא מודלים",
 	"Export Models": "ייצוא מודלים",
 	"Export Prompts": "ייצוא פקודות",
 	"Export Prompts": "ייצוא פקודות",
+	"External Models": "",
 	"Failed to create API Key.": "יצירת מפתח API נכשלה.",
 	"Failed to create API Key.": "יצירת מפתח API נכשלה.",
 	"Failed to read clipboard contents": "קריאת תוכן הלוח נכשלה",
 	"Failed to read clipboard contents": "קריאת תוכן הלוח נכשלה",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "מידע",
 	"Info": "מידע",
 	"Input commands": "פקודות קלט",
 	"Input commands": "פקודות קלט",
 	"Install from Github URL": "התקן מכתובת URL של Github",
 	"Install from Github URL": "התקן מכתובת URL של Github",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "ממשק",
 	"Interface": "ממשק",
 	"Invalid Tag": "תג לא חוקי",
 	"Invalid Tag": "תג לא חוקי",
 	"January": "ינואר",
 	"January": "ינואר",
@@ -267,11 +275,12 @@
 	"Language": "שפה",
 	"Language": "שפה",
 	"Last Active": "פעיל לאחרונה",
 	"Last Active": "פעיל לאחרונה",
 	"Light": "בהיר",
 	"Light": "בהיר",
-	"Listening...": "מאזין...",
 	"LLMs can make mistakes. Verify important information.": "מודלים בשפה טבעית יכולים לטעות. אמת מידע חשוב.",
 	"LLMs can make mistakes. Verify important information.": "מודלים בשפה טבעית יכולים לטעות. אמת מידע חשוב.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "נוצר על ידי קהילת OpenWebUI",
 	"Made by OpenWebUI Community": "נוצר על ידי קהילת OpenWebUI",
 	"Make sure to enclose them with": "ודא להקיף אותם עם",
 	"Make sure to enclose them with": "ודא להקיף אותם עם",
+	"Manage": "",
 	"Manage Models": "נהל מודלים",
 	"Manage Models": "נהל מודלים",
 	"Manage Ollama Models": "נהל מודלים של Ollama",
 	"Manage Ollama Models": "נהל מודלים של Ollama",
 	"Manage Pipelines": "ניהול צינורות",
 	"Manage Pipelines": "ניהול צינורות",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "Ollama API מושבת",
 	"Ollama API disabled": "Ollama API מושבת",
+	"Ollama API is disabled": "",
 	"Ollama Version": "גרסת Ollama",
 	"Ollama Version": "גרסת Ollama",
 	"On": "פועל",
 	"On": "פועל",
 	"Only": "רק",
 	"Only": "רק",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "מסמך PDF (.pdf)",
 	"PDF document (.pdf)": "מסמך PDF (.pdf)",
 	"PDF Extract Images (OCR)": "חילוץ תמונות מ-PDF (OCR)",
 	"PDF Extract Images (OCR)": "חילוץ תמונות מ-PDF (OCR)",
 	"pending": "ממתין",
 	"pending": "ממתין",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "ההרשאה נדחתה בעת גישה למיקרופון: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "ההרשאה נדחתה בעת גישה למיקרופון: {{error}}",
 	"Personalization": "תאור",
 	"Personalization": "תאור",
 	"Pipelines": "צינורות",
 	"Pipelines": "צינורות",
@@ -367,6 +378,7 @@
 	"Read Aloud": "קרא בקול",
 	"Read Aloud": "קרא בקול",
 	"Record voice": "הקלט קול",
 	"Record voice": "הקלט קול",
 	"Redirecting you to OpenWebUI Community": "מפנה אותך לקהילת OpenWebUI",
 	"Redirecting you to OpenWebUI Community": "מפנה אותך לקהילת OpenWebUI",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "נדחה כאשר לא היה צריך",
 	"Refused when it shouldn't have": "נדחה כאשר לא היה צריך",
 	"Regenerate": "הפק מחדש",
 	"Regenerate": "הפק מחדש",
 	"Release Notes": "הערות שחרור",
 	"Release Notes": "הערות שחרור",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "שמור",
 	"Save": "שמור",
 	"Save & Create": "שמור וצור",
 	"Save & Create": "שמור וצור",
 	"Save & Update": "שמור ועדכן",
 	"Save & Update": "שמור ועדכן",
@@ -408,12 +421,14 @@
 	"See what's new": "ראה מה חדש",
 	"See what's new": "ראה מה חדש",
 	"Seed": "זרע",
 	"Seed": "זרע",
 	"Select a base model": "בחירת מודל בסיס",
 	"Select a base model": "בחירת מודל בסיס",
+	"Select a engine": "",
 	"Select a mode": "בחר מצב",
 	"Select a mode": "בחר מצב",
 	"Select a model": "בחר מודל",
 	"Select a model": "בחר מודל",
 	"Select a pipeline": "בחר קו צינור",
 	"Select a pipeline": "בחר קו צינור",
 	"Select a pipeline url": "בחר כתובת URL של קו צינור",
 	"Select a pipeline url": "בחר כתובת URL של קו צינור",
 	"Select an Ollama instance": "בחר מופע של Ollama",
 	"Select an Ollama instance": "בחר מופע של Ollama",
 	"Select model": "בחר מודל",
 	"Select model": "בחר מודל",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "דגמים נבחרים אינם תומכים בקלט תמונה",
 	"Selected model(s) do not support image inputs": "דגמים נבחרים אינם תומכים בקלט תמונה",
 	"Send": "שלח",
 	"Send": "שלח",
 	"Send a Message": "שלח הודעה",
 	"Send a Message": "שלח הודעה",
@@ -450,7 +465,6 @@
 	"Source": "מקור",
 	"Source": "מקור",
 	"Speech recognition error: {{error}}": "שגיאת תחקור שמע: {{error}}",
 	"Speech recognition error: {{error}}": "שגיאת תחקור שמע: {{error}}",
 	"Speech-to-Text Engine": "מנוע תחקור שמע",
 	"Speech-to-Text Engine": "מנוע תחקור שמע",
-	"SpeechRecognition API is not supported in this browser.": "מנוע תחקור שמע אינו נתמך בדפדפן זה.",
 	"Stop Sequence": "סידור עצירה",
 	"Stop Sequence": "סידור עצירה",
 	"STT Settings": "הגדרות חקירה של TTS",
 	"STT Settings": "הגדרות חקירה של TTS",
 	"Submit": "שלח",
 	"Submit": "שלח",
@@ -482,6 +496,7 @@
 	"to": "ל",
 	"to": "ל",
 	"To access the available model names for downloading,": "כדי לגשת לשמות הדגמים הזמינים להורדה,",
 	"To access the available model names for downloading,": "כדי לגשת לשמות הדגמים הזמינים להורדה,",
 	"To access the GGUF models available for downloading,": "כדי לגשת לדגמי GGUF הזמינים להורדה,",
 	"To access the GGUF models available for downloading,": "כדי לגשת לדגמי GGUF הזמינים להורדה,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "לקלטת שיחה.",
 	"to chat input.": "לקלטת שיחה.",
 	"Today": "היום",
 	"Today": "היום",
 	"Toggle settings": "החלפת מצב של הגדרות",
 	"Toggle settings": "החלפת מצב של הגדרות",
@@ -498,6 +513,7 @@
 	"Update password": "עדכן סיסמה",
 	"Update password": "עדכן סיסמה",
 	"Upload a GGUF model": "העלה מודל GGUF",
 	"Upload a GGUF model": "העלה מודל GGUF",
 	"Upload Files": "העלאת קבצים",
 	"Upload Files": "העלאת קבצים",
+	"Upload Pipeline": "",
 	"Upload Progress": "תקדמות העלאה",
 	"Upload Progress": "תקדמות העלאה",
 	"URL Mode": "מצב URL",
 	"URL Mode": "מצב URL",
 	"Use '#' in the prompt input to load and select your documents.": "השתמש ב- '#' בקלט הבקשה כדי לטעון ולבחור את המסמכים שלך.",
 	"Use '#' in the prompt input to load and select your documents.": "השתמש ב- '#' בקלט הבקשה כדי לטעון ולבחור את המסמכים שלך.",
@@ -516,6 +532,7 @@
 	"Warning": "אזהרה",
 	"Warning": "אזהרה",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "אזהרה: אם תעדכן או תשנה את מודל ההטבעה שלך, יהיה עליך לייבא מחדש את כל המסמכים.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "אזהרה: אם תעדכן או תשנה את מודל ההטבעה שלך, יהיה עליך לייבא מחדש את כל המסמכים.",
 	"Web": "רשת",
 	"Web": "רשת",
+	"Web API": "",
 	"Web Loader Settings": "הגדרות טעינת אתר",
 	"Web Loader Settings": "הגדרות טעינת אתר",
 	"Web Params": "פרמטרים Web",
 	"Web Params": "פרמטרים Web",
 	"Web Search": "חיפוש באינטרנט",
 	"Web Search": "חיפוש באינטרנט",
@@ -526,18 +543,19 @@
 	"WebUI will make requests to": "WebUI יבקש לבקש",
 	"WebUI will make requests to": "WebUI יבקש לבקש",
 	"What’s New in": "מה חדש ב",
 	"What’s New in": "מה חדש ב",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "כאשר ההיסטוריה מושבתת, צ'אטים חדשים בדפדפן זה לא יופיעו בהיסטוריה שלך באף אחד מהמכשירים שלך.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "כאשר ההיסטוריה מושבתת, צ'אטים חדשים בדפדפן זה לא יופיעו בהיסטוריה שלך באף אחד מהמכשירים שלך.",
-	"Whisper (Local)": "ושפה (מקומית)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "סביבה",
 	"Workspace": "סביבה",
 	"Write a prompt suggestion (e.g. Who are you?)": "כתוב הצעה מהירה (למשל, מי אתה?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "כתוב הצעה מהירה (למשל, מי אתה?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "כתוב סיכום ב-50 מילים שמסכם [נושא או מילת מפתח].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "כתוב סיכום ב-50 מילים שמסכם [נושא או מילת מפתח].",
 	"Yesterday": "אתמול",
 	"Yesterday": "אתמול",
 	"You": "אתה",
 	"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 clone a base model": "לא ניתן לשכפל מודל בסיס",
 	"You cannot clone a base model": "לא ניתן לשכפל מודל בסיס",
 	"You have no archived conversations.": "אין לך שיחות בארכיון.",
 	"You have no archived conversations.": "אין לך שיחות בארכיון.",
 	"You have shared this chat": "שיתפת את השיחה הזו",
 	"You have shared this chat": "שיתפת את השיחה הזו",
 	"You're a helpful assistant.": "אתה עוזר מועיל.",
 	"You're a helpful assistant.": "אתה עוזר מועיל.",
 	"You're now logged in.": "כעת אתה מחובר.",
 	"You're now logged in.": "כעת אתה מחובר.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "הגדרות Youtube Loader"
 	"Youtube Loader Settings": "הגדרות Youtube Loader"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "एक उपयोगकर्ता",
 	"a user": "एक उपयोगकर्ता",
 	"About": "हमारे बारे में",
 	"About": "हमारे बारे में",
 	"Account": "खाता",
 	"Account": "खाता",
+	"Account Activation Pending": "",
 	"Accurate information": "सटीक जानकारी",
 	"Accurate information": "सटीक जानकारी",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "जोड़ें",
 	"Add": "जोड़ें",
@@ -29,6 +30,7 @@
 	"Add User": "उपयोगकर्ता जोड़ें",
 	"Add User": "उपयोगकर्ता जोड़ें",
 	"Adjusting these settings will apply changes universally to all users.": "इन सेटिंग्स को समायोजित करने से परिवर्तन सभी उपयोगकर्ताओं पर सार्वभौमिक रूप से लागू होंगे।",
 	"Adjusting these settings will apply changes universally to all users.": "इन सेटिंग्स को समायोजित करने से परिवर्तन सभी उपयोगकर्ताओं पर सार्वभौमिक रूप से लागू होंगे।",
 	"admin": "व्यवस्थापक",
 	"admin": "व्यवस्थापक",
+	"Admin": "",
 	"Admin Panel": "व्यवस्थापक पैनल",
 	"Admin Panel": "व्यवस्थापक पैनल",
 	"Admin Settings": "व्यवस्थापक सेटिंग्स",
 	"Admin Settings": "व्यवस्थापक सेटिंग्स",
 	"Advanced Parameters": "उन्नत पैरामीटर",
 	"Advanced Parameters": "उन्नत पैरामीटर",
@@ -59,7 +61,6 @@
 	"Audio": "ऑडियो",
 	"Audio": "ऑडियो",
 	"August": "अगस्त",
 	"August": "अगस्त",
 	"Auto-playback response": "ऑटो-प्लेबैक प्रतिक्रिया",
 	"Auto-playback response": "ऑटो-प्लेबैक प्रतिक्रिया",
-	"Auto-send input after 3 sec.": "3 सेकंड के बाद स्वचालित रूप से इनपुट भेजें।",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 बेस यूआरएल",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 बेस यूआरएल",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 का बेस यूआरएल आवश्यक है।",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 का बेस यूआरएल आवश्यक है।",
 	"available!": "उपलब्ध!",
 	"available!": "उपलब्ध!",
@@ -71,6 +72,7 @@
 	"Being lazy": "आलसी होना",
 	"Being lazy": "आलसी होना",
 	"Brave Search API Key": "Brave सर्च एपीआई कुंजी",
 	"Brave Search API Key": "Brave सर्च एपीआई कुंजी",
 	"Bypass SSL verification for Websites": "वेबसाइटों के लिए SSL सुनिश्चिती को छोड़ें",
 	"Bypass SSL verification for Websites": "वेबसाइटों के लिए SSL सुनिश्चिती को छोड़ें",
+	"Call": "",
 	"Cancel": "रद्द करें",
 	"Cancel": "रद्द करें",
 	"Capabilities": "क्षमताओं",
 	"Capabilities": "क्षमताओं",
 	"Change Password": "पासवर्ड बदलें",
 	"Change Password": "पासवर्ड बदलें",
@@ -88,10 +90,12 @@
 	"Chunk Params": "चंक पैरामीटर्स",
 	"Chunk Params": "चंक पैरामीटर्स",
 	"Chunk Size": "चंक आकार",
 	"Chunk Size": "चंक आकार",
 	"Citation": "उद्धरण",
 	"Citation": "उद्धरण",
+	"Clear memory": "",
 	"Click here for help.": "सहायता के लिए यहां क्लिक करें।",
 	"Click here for help.": "सहायता के लिए यहां क्लिक करें।",
 	"Click here to": "यहां क्लिक करें",
 	"Click here to": "यहां क्लिक करें",
 	"Click here to select": "चयन करने के लिए यहां क्लिक करें।",
 	"Click here to select": "चयन करने के लिए यहां क्लिक करें।",
 	"Click here to select a csv file.": "सीएसवी फ़ाइल का चयन करने के लिए यहां क्लिक करें।",
 	"Click here to select a csv file.": "सीएसवी फ़ाइल का चयन करने के लिए यहां क्लिक करें।",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "दस्तावेज़ चुनने के लिए यहां क्लिक करें।",
 	"Click here to select documents.": "दस्तावेज़ चुनने के लिए यहां क्लिक करें।",
 	"click here.": "यहाँ क्लिक करें।",
 	"click here.": "यहाँ क्लिक करें।",
 	"Click on the user role button to change a user's role.": "उपयोगकर्ता की भूमिका बदलने के लिए उपयोगकर्ता भूमिका बटन पर क्लिक करें।",
 	"Click on the user role button to change a user's role.": "उपयोगकर्ता की भूमिका बदलने के लिए उपयोगकर्ता भूमिका बटन पर क्लिक करें।",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "समवर्ती अनुरोध",
 	"Concurrent Requests": "समवर्ती अनुरोध",
 	"Confirm Password": "पासवर्ड की पुष्टि कीजिये",
 	"Confirm Password": "पासवर्ड की पुष्टि कीजिये",
 	"Connections": "सम्बन्ध",
 	"Connections": "सम्बन्ध",
+	"Contact Admin for WebUI Access": "",
 	"Content": "सामग्री",
 	"Content": "सामग्री",
 	"Context Length": "प्रसंग की लंबाई",
 	"Context Length": "प्रसंग की लंबाई",
 	"Continue Response": "प्रतिक्रिया जारी रखें",
 	"Continue Response": "प्रतिक्रिया जारी रखें",
-	"Conversation Mode": "बातचीत का मॉड",
 	"Copied shared chat URL to clipboard!": "साझा चैट URL को क्लिपबोर्ड पर कॉपी किया गया!",
 	"Copied shared chat URL to clipboard!": "साझा चैट URL को क्लिपबोर्ड पर कॉपी किया गया!",
 	"Copy": "कॉपी",
 	"Copy": "कॉपी",
 	"Copy last code block": "अंतिम कोड ब्लॉक कॉपी करें",
 	"Copy last code block": "अंतिम कोड ब्लॉक कॉपी करें",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "डिफ़ॉल्ट (Automatic1111)",
 	"Default (Automatic1111)": "डिफ़ॉल्ट (Automatic1111)",
 	"Default (SentenceTransformers)": "डिफ़ॉल्ट (SentenceTransformers)",
 	"Default (SentenceTransformers)": "डिफ़ॉल्ट (SentenceTransformers)",
 	"Default (Web API)": "डिफ़ॉल्ट (Web API)",
 	"Default (Web API)": "डिफ़ॉल्ट (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "डिफ़ॉल्ट मॉडल",
 	"Default Model": "डिफ़ॉल्ट मॉडल",
 	"Default model updated": "डिफ़ॉल्ट मॉडल अपडेट किया गया",
 	"Default model updated": "डिफ़ॉल्ट मॉडल अपडेट किया गया",
 	"Default Prompt Suggestions": "डिफ़ॉल्ट प्रॉम्प्ट सुझाव",
 	"Default Prompt Suggestions": "डिफ़ॉल्ट प्रॉम्प्ट सुझाव",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "प्रॉम्प्ट खोजें",
 	"Discover a prompt": "प्रॉम्प्ट खोजें",
 	"Discover, download, and explore custom prompts": "कस्टम प्रॉम्प्ट को खोजें, डाउनलोड करें और एक्सप्लोर करें",
 	"Discover, download, and explore custom prompts": "कस्टम प्रॉम्प्ट को खोजें, डाउनलोड करें और एक्सप्लोर करें",
 	"Discover, download, and explore model presets": "मॉडल प्रीसेट खोजें, डाउनलोड करें और एक्सप्लोर करें",
 	"Discover, download, and explore model presets": "मॉडल प्रीसेट खोजें, डाउनलोड करें और एक्सप्लोर करें",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "चैट में 'आप' के स्थान पर उपयोगकर्ता नाम प्रदर्शित करें",
 	"Display the username instead of You in the Chat": "चैट में 'आप' के स्थान पर उपयोगकर्ता नाम प्रदर्शित करें",
 	"Document": "दस्तावेज़",
 	"Document": "दस्तावेज़",
 	"Document Settings": "दस्तावेज़ सेटिंग्स",
 	"Document Settings": "दस्तावेज़ सेटिंग्स",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "निर्यात दस्तावेज़ मैपिंग",
 	"Export Documents Mapping": "निर्यात दस्तावेज़ मैपिंग",
 	"Export Models": "निर्यात मॉडल",
 	"Export Models": "निर्यात मॉडल",
 	"Export Prompts": "प्रॉम्प्ट निर्यात करें",
 	"Export Prompts": "प्रॉम्प्ट निर्यात करें",
+	"External Models": "",
 	"Failed to create API Key.": "एपीआई कुंजी बनाने में विफल.",
 	"Failed to create API Key.": "एपीआई कुंजी बनाने में विफल.",
 	"Failed to read clipboard contents": "क्लिपबोर्ड सामग्री पढ़ने में विफल",
 	"Failed to read clipboard contents": "क्लिपबोर्ड सामग्री पढ़ने में विफल",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "सूचना-विषयक",
 	"Info": "सूचना-विषयक",
 	"Input commands": "इनपुट क命",
 	"Input commands": "इनपुट क命",
 	"Install from Github URL": "Github URL से इंस्टॉल करें",
 	"Install from Github URL": "Github URL से इंस्टॉल करें",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "इंटरफेस",
 	"Interface": "इंटरफेस",
 	"Invalid Tag": "अवैध टैग",
 	"Invalid Tag": "अवैध टैग",
 	"January": "जनवरी",
 	"January": "जनवरी",
@@ -267,11 +275,12 @@
 	"Language": "भाषा",
 	"Language": "भाषा",
 	"Last Active": "पिछली बार सक्रिय",
 	"Last Active": "पिछली बार सक्रिय",
 	"Light": "सुन",
 	"Light": "सुन",
-	"Listening...": "सुन रहा हूँ...",
 	"LLMs can make mistakes. Verify important information.": "एलएलएम गलतियाँ कर सकते हैं। महत्वपूर्ण जानकारी सत्यापित करें.",
 	"LLMs can make mistakes. Verify important information.": "एलएलएम गलतियाँ कर सकते हैं। महत्वपूर्ण जानकारी सत्यापित करें.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "OpenWebUI समुदाय द्वारा निर्मित",
 	"Made by OpenWebUI Community": "OpenWebUI समुदाय द्वारा निर्मित",
 	"Make sure to enclose them with": "उन्हें संलग्न करना सुनिश्चित करें",
 	"Make sure to enclose them with": "उन्हें संलग्न करना सुनिश्चित करें",
+	"Manage": "",
 	"Manage Models": "मॉडल प्रबंधित करें",
 	"Manage Models": "मॉडल प्रबंधित करें",
 	"Manage Ollama Models": "Ollama मॉडल प्रबंधित करें",
 	"Manage Ollama Models": "Ollama मॉडल प्रबंधित करें",
 	"Manage Pipelines": "पाइपलाइनों का प्रबंधन करें",
 	"Manage Pipelines": "पाइपलाइनों का प्रबंधन करें",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "ओलामा एपीआई",
 	"Ollama API": "ओलामा एपीआई",
 	"Ollama API disabled": "ओलामा एपीआई अक्षम",
 	"Ollama API disabled": "ओलामा एपीआई अक्षम",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Ollama Version",
 	"Ollama Version": "Ollama Version",
 	"On": "चालू",
 	"On": "चालू",
 	"Only": "केवल",
 	"Only": "केवल",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF दस्तावेज़ (.pdf)",
 	"PDF document (.pdf)": "PDF दस्तावेज़ (.pdf)",
 	"PDF Extract Images (OCR)": "PDF छवियाँ निकालें (OCR)",
 	"PDF Extract Images (OCR)": "PDF छवियाँ निकालें (OCR)",
 	"pending": "लंबित",
 	"pending": "लंबित",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "माइक्रोफ़ोन तक पहुँचने पर अनुमति अस्वीकृत: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "माइक्रोफ़ोन तक पहुँचने पर अनुमति अस्वीकृत: {{error}}",
 	"Personalization": "पेरसनलाइज़मेंट",
 	"Personalization": "पेरसनलाइज़मेंट",
 	"Pipelines": "पाइपलाइनों",
 	"Pipelines": "पाइपलाइनों",
@@ -367,6 +378,7 @@
 	"Read Aloud": "जोर से पढ़ें",
 	"Read Aloud": "जोर से पढ़ें",
 	"Record voice": "आवाज रिकॉर्ड करना",
 	"Record voice": "आवाज रिकॉर्ड करना",
 	"Redirecting you to OpenWebUI Community": "आपको OpenWebUI समुदाय पर पुनर्निर्देशित किया जा रहा है",
 	"Redirecting you to OpenWebUI Community": "आपको OpenWebUI समुदाय पर पुनर्निर्देशित किया जा रहा है",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "जब ऐसा नहीं होना चाहिए था तो मना कर दिया",
 	"Refused when it shouldn't have": "जब ऐसा नहीं होना चाहिए था तो मना कर दिया",
 	"Regenerate": "पुनः जेनरेट",
 	"Regenerate": "पुनः जेनरेट",
 	"Release Notes": "रिलीज नोट्स",
 	"Release Notes": "रिलीज नोट्स",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "रोसे पिन",
 	"Rosé Pine": "रोसे पिन",
 	"Rosé Pine Dawn": "रोसे पिन डेन",
 	"Rosé Pine Dawn": "रोसे पिन डेन",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "सहेजें",
 	"Save": "सहेजें",
 	"Save & Create": "सहेजें और बनाएं",
 	"Save & Create": "सहेजें और बनाएं",
 	"Save & Update": "सहेजें और अपडेट करें",
 	"Save & Update": "सहेजें और अपडेट करें",
@@ -407,12 +420,14 @@
 	"See what's new": "देखें, क्या नया है",
 	"See what's new": "देखें, क्या नया है",
 	"Seed": "सीड्\u200c",
 	"Seed": "सीड्\u200c",
 	"Select a base model": "एक आधार मॉडल का चयन करें",
 	"Select a base model": "एक आधार मॉडल का चयन करें",
+	"Select a engine": "",
 	"Select a mode": "एक मोड चुनें",
 	"Select a mode": "एक मोड चुनें",
 	"Select a model": "एक मॉडल चुनें",
 	"Select a model": "एक मॉडल चुनें",
 	"Select a pipeline": "एक पाइपलाइन का चयन करें",
 	"Select a pipeline": "एक पाइपलाइन का चयन करें",
 	"Select a pipeline url": "एक पाइपलाइन url चुनें",
 	"Select a pipeline url": "एक पाइपलाइन url चुनें",
 	"Select an Ollama instance": "एक Ollama Instance चुनें",
 	"Select an Ollama instance": "एक Ollama Instance चुनें",
 	"Select model": "मॉडल चुनें",
 	"Select model": "मॉडल चुनें",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "चयनित मॉडल छवि इनपुट का समर्थन नहीं करते हैं",
 	"Selected model(s) do not support image inputs": "चयनित मॉडल छवि इनपुट का समर्थन नहीं करते हैं",
 	"Send": "भेज",
 	"Send": "भेज",
 	"Send a Message": "एक संदेश भेजो",
 	"Send a Message": "एक संदेश भेजो",
@@ -449,7 +464,6 @@
 	"Source": "स्रोत",
 	"Source": "स्रोत",
 	"Speech recognition error: {{error}}": "वाक् पहचान त्रुटि: {{error}}",
 	"Speech recognition error: {{error}}": "वाक् पहचान त्रुटि: {{error}}",
 	"Speech-to-Text Engine": "वाक्-से-पाठ इंजन",
 	"Speech-to-Text Engine": "वाक्-से-पाठ इंजन",
-	"SpeechRecognition API is not supported in this browser.": "इस ब्राउज़र में SpeechRecognition API समर्थित नहीं है",
 	"Stop Sequence": "अनुक्रम रोकें",
 	"Stop Sequence": "अनुक्रम रोकें",
 	"STT Settings": "STT सेटिंग्स ",
 	"STT Settings": "STT सेटिंग्स ",
 	"Submit": "सबमिट करें",
 	"Submit": "सबमिट करें",
@@ -481,6 +495,7 @@
 	"to": "तक",
 	"to": "तक",
 	"To access the available model names for downloading,": "डाउनलोड करने के लिए उपलब्ध मॉडल नामों तक पहुंचने के लिए,",
 	"To access the available model names for downloading,": "डाउनलोड करने के लिए उपलब्ध मॉडल नामों तक पहुंचने के लिए,",
 	"To access the GGUF models available for downloading,": "डाउनलोडिंग के लिए उपलब्ध GGUF मॉडल तक पहुँचने के लिए,",
 	"To access the GGUF models available for downloading,": "डाउनलोडिंग के लिए उपलब्ध GGUF मॉडल तक पहुँचने के लिए,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "इनपुट चैट करने के लिए.",
 	"to chat input.": "इनपुट चैट करने के लिए.",
 	"Today": "आज",
 	"Today": "आज",
 	"Toggle settings": "सेटिंग्स टॉगल करें",
 	"Toggle settings": "सेटिंग्स टॉगल करें",
@@ -497,6 +512,7 @@
 	"Update password": "पासवर्ड अपडेट करें",
 	"Update password": "पासवर्ड अपडेट करें",
 	"Upload a GGUF model": "GGUF मॉडल अपलोड करें",
 	"Upload a GGUF model": "GGUF मॉडल अपलोड करें",
 	"Upload Files": "फ़ाइलें अपलोड करें",
 	"Upload Files": "फ़ाइलें अपलोड करें",
+	"Upload Pipeline": "",
 	"Upload Progress": "प्रगति अपलोड करें",
 	"Upload Progress": "प्रगति अपलोड करें",
 	"URL Mode": "URL मोड",
 	"URL Mode": "URL मोड",
 	"Use '#' in the prompt input to load and select your documents.": "अपने दस्तावेज़ों को लोड करने और चुनने के लिए शीघ्र इनपुट में '#' का उपयोग करें।",
 	"Use '#' in the prompt input to load and select your documents.": "अपने दस्तावेज़ों को लोड करने और चुनने के लिए शीघ्र इनपुट में '#' का उपयोग करें।",
@@ -515,6 +531,7 @@
 	"Warning": "चेतावनी",
 	"Warning": "चेतावनी",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "चेतावनी: यदि आप अपने एम्बेडिंग मॉडल को अपडेट या बदलते हैं, तो आपको सभी दस्तावेज़ों को फिर से आयात करने की आवश्यकता होगी।",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "चेतावनी: यदि आप अपने एम्बेडिंग मॉडल को अपडेट या बदलते हैं, तो आपको सभी दस्तावेज़ों को फिर से आयात करने की आवश्यकता होगी।",
 	"Web": "वेब",
 	"Web": "वेब",
+	"Web API": "",
 	"Web Loader Settings": "वेब लोडर सेटिंग्स",
 	"Web Loader Settings": "वेब लोडर सेटिंग्स",
 	"Web Params": "वेब पैरामीटर",
 	"Web Params": "वेब पैरामीटर",
 	"Web Search": "वेब खोज",
 	"Web Search": "वेब खोज",
@@ -525,18 +542,19 @@
 	"WebUI will make requests to": "WebUI अनुरोध करेगा",
 	"WebUI will make requests to": "WebUI अनुरोध करेगा",
 	"What’s New in": "इसमें नया क्या है",
 	"What’s New in": "इसमें नया क्या है",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "जब इतिहास बंद हो जाता है, तो इस ब्राउज़र पर नई चैट आपके किसी भी डिवाइस पर इतिहास में दिखाई नहीं देंगी।",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "जब इतिहास बंद हो जाता है, तो इस ब्राउज़र पर नई चैट आपके किसी भी डिवाइस पर इतिहास में दिखाई नहीं देंगी।",
-	"Whisper (Local)": "Whisper (स्थानीय)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "वर्कस्पेस",
 	"Workspace": "वर्कस्पेस",
 	"Write a prompt suggestion (e.g. Who are you?)": "एक त्वरित सुझाव लिखें (जैसे कि आप कौन हैं?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "एक त्वरित सुझाव लिखें (जैसे कि आप कौन हैं?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "50 शब्दों में एक सारांश लिखें जो [विषय या कीवर्ड] का सारांश प्रस्तुत करता हो।",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "50 शब्दों में एक सारांश लिखें जो [विषय या कीवर्ड] का सारांश प्रस्तुत करता हो।",
 	"Yesterday": "कल",
 	"Yesterday": "कल",
 	"You": "आप",
 	"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 clone a base model": "आप बेस मॉडल का क्लोन नहीं बना सकते",
 	"You cannot clone a base model": "आप बेस मॉडल का क्लोन नहीं बना सकते",
 	"You have no archived conversations.": "आपको कोई अंकित चैट नहीं है।",
 	"You have no archived conversations.": "आपको कोई अंकित चैट नहीं है।",
 	"You have shared this chat": "आपने इस चैट को शेयर किया है",
 	"You have shared this chat": "आपने इस चैट को शेयर किया है",
 	"You're a helpful assistant.": "आप एक सहायक सहायक हैं",
 	"You're a helpful assistant.": "आप एक सहायक सहायक हैं",
 	"You're now logged in.": "अब आप लॉग इन हो गए हैं",
 	"You're now logged in.": "अब आप लॉग इन हो गए हैं",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "यूट्यूब लोडर सेटिंग्स"
 	"Youtube Loader Settings": "यूट्यूब लोडर सेटिंग्स"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "korisnik",
 	"a user": "korisnik",
 	"About": "O aplikaciji",
 	"About": "O aplikaciji",
 	"Account": "Račun",
 	"Account": "Račun",
+	"Account Activation Pending": "",
 	"Accurate information": "Točne informacije",
 	"Accurate information": "Točne informacije",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Dodaj",
 	"Add": "Dodaj",
@@ -29,6 +30,7 @@
 	"Add User": "Dodaj korisnika",
 	"Add User": "Dodaj korisnika",
 	"Adjusting these settings will apply changes universally to all users.": "Podešavanje će se primijeniti univerzalno na sve korisnike.",
 	"Adjusting these settings will apply changes universally to all users.": "Podešavanje će se primijeniti univerzalno na sve korisnike.",
 	"admin": "administrator",
 	"admin": "administrator",
+	"Admin": "",
 	"Admin Panel": "Administratorska ploča",
 	"Admin Panel": "Administratorska ploča",
 	"Admin Settings": "Administratorske postavke",
 	"Admin Settings": "Administratorske postavke",
 	"Advanced Parameters": "Napredni parametri",
 	"Advanced Parameters": "Napredni parametri",
@@ -59,7 +61,6 @@
 	"Audio": "Audio",
 	"Audio": "Audio",
 	"August": "Kolovoz",
 	"August": "Kolovoz",
 	"Auto-playback response": "Automatska reprodukcija odgovora",
 	"Auto-playback response": "Automatska reprodukcija odgovora",
-	"Auto-send input after 3 sec.": "Automatsko slanje unosa nakon 3 sek.",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 osnovni URL",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 osnovni URL",
 	"AUTOMATIC1111 Base URL is required.": "Potreban je AUTOMATIC1111 osnovni URL.",
 	"AUTOMATIC1111 Base URL is required.": "Potreban je AUTOMATIC1111 osnovni URL.",
 	"available!": "dostupno!",
 	"available!": "dostupno!",
@@ -71,6 +72,7 @@
 	"Being lazy": "Biti lijen",
 	"Being lazy": "Biti lijen",
 	"Brave Search API Key": "Ključ API-ja za hrabro pretraživanje",
 	"Brave Search API Key": "Ključ API-ja za hrabro pretraživanje",
 	"Bypass SSL verification for Websites": "Zaobiđi SSL provjeru za web stranice",
 	"Bypass SSL verification for Websites": "Zaobiđi SSL provjeru za web stranice",
+	"Call": "",
 	"Cancel": "Otkaži",
 	"Cancel": "Otkaži",
 	"Capabilities": "Mogućnosti",
 	"Capabilities": "Mogućnosti",
 	"Change Password": "Promijeni lozinku",
 	"Change Password": "Promijeni lozinku",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Parametri dijelova",
 	"Chunk Params": "Parametri dijelova",
 	"Chunk Size": "Veličina dijela",
 	"Chunk Size": "Veličina dijela",
 	"Citation": "Citiranje",
 	"Citation": "Citiranje",
+	"Clear memory": "",
 	"Click here for help.": "Kliknite ovdje za pomoć.",
 	"Click here for help.": "Kliknite ovdje za pomoć.",
 	"Click here to": "Kliknite ovdje za",
 	"Click here to": "Kliknite ovdje za",
 	"Click here to select": "Kliknite ovdje za odabir",
 	"Click here to select": "Kliknite ovdje za odabir",
 	"Click here to select a csv file.": "Kliknite ovdje da odaberete csv datoteku.",
 	"Click here to select a csv file.": "Kliknite ovdje da odaberete csv datoteku.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Kliknite ovdje da odaberete dokumente.",
 	"Click here to select documents.": "Kliknite ovdje da odaberete dokumente.",
 	"click here.": "kliknite ovdje.",
 	"click here.": "kliknite ovdje.",
 	"Click on the user role button to change a user's role.": "Kliknite na gumb uloge korisnika za promjenu uloge korisnika.",
 	"Click on the user role button to change a user's role.": "Kliknite na gumb uloge korisnika za promjenu uloge korisnika.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Istodobni zahtjevi",
 	"Concurrent Requests": "Istodobni zahtjevi",
 	"Confirm Password": "Potvrdite lozinku",
 	"Confirm Password": "Potvrdite lozinku",
 	"Connections": "Povezivanja",
 	"Connections": "Povezivanja",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Sadržaj",
 	"Content": "Sadržaj",
 	"Context Length": "Dužina konteksta",
 	"Context Length": "Dužina konteksta",
 	"Continue Response": "Nastavi odgovor",
 	"Continue Response": "Nastavi odgovor",
-	"Conversation Mode": "Način razgovora",
 	"Copied shared chat URL to clipboard!": "URL dijeljenog razgovora kopiran u međuspremnik!",
 	"Copied shared chat URL to clipboard!": "URL dijeljenog razgovora kopiran u međuspremnik!",
 	"Copy": "Kopiraj",
 	"Copy": "Kopiraj",
 	"Copy last code block": "Kopiraj zadnji blok koda",
 	"Copy last code block": "Kopiraj zadnji blok koda",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Zadano (Automatic1111)",
 	"Default (Automatic1111)": "Zadano (Automatic1111)",
 	"Default (SentenceTransformers)": "Zadano (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Zadano (SentenceTransformers)",
 	"Default (Web API)": "Zadano (Web API)",
 	"Default (Web API)": "Zadano (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "Zadani model",
 	"Default Model": "Zadani model",
 	"Default model updated": "Zadani model ažuriran",
 	"Default model updated": "Zadani model ažuriran",
 	"Default Prompt Suggestions": "Zadani prijedlozi prompta",
 	"Default Prompt Suggestions": "Zadani prijedlozi prompta",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Otkrijte prompt",
 	"Discover a prompt": "Otkrijte prompt",
 	"Discover, download, and explore custom prompts": "Otkrijte, preuzmite i istražite prilagođene prompte",
 	"Discover, download, and explore custom prompts": "Otkrijte, preuzmite i istražite prilagođene prompte",
 	"Discover, download, and explore model presets": "Otkrijte, preuzmite i istražite unaprijed postavljene modele",
 	"Discover, download, and explore model presets": "Otkrijte, preuzmite i istražite unaprijed postavljene modele",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Prikaži korisničko ime umjesto Vas u razgovoru",
 	"Display the username instead of You in the Chat": "Prikaži korisničko ime umjesto Vas u razgovoru",
 	"Document": "Dokument",
 	"Document": "Dokument",
 	"Document Settings": "Postavke dokumenta",
 	"Document Settings": "Postavke dokumenta",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Izvoz mapiranja dokumenata",
 	"Export Documents Mapping": "Izvoz mapiranja dokumenata",
 	"Export Models": "Izvezi modele",
 	"Export Models": "Izvezi modele",
 	"Export Prompts": "Izvoz prompta",
 	"Export Prompts": "Izvoz prompta",
+	"External Models": "",
 	"Failed to create API Key.": "Neuspješno stvaranje API ključa.",
 	"Failed to create API Key.": "Neuspješno stvaranje API ključa.",
 	"Failed to read clipboard contents": "Neuspješno čitanje sadržaja međuspremnika",
 	"Failed to read clipboard contents": "Neuspješno čitanje sadržaja međuspremnika",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "Informacije",
 	"Info": "Informacije",
 	"Input commands": "Unos naredbi",
 	"Input commands": "Unos naredbi",
 	"Install from Github URL": "Instaliraj s Github URL-a",
 	"Install from Github URL": "Instaliraj s Github URL-a",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Sučelje",
 	"Interface": "Sučelje",
 	"Invalid Tag": "Nevažeća oznaka",
 	"Invalid Tag": "Nevažeća oznaka",
 	"January": "Siječanj",
 	"January": "Siječanj",
@@ -267,11 +275,12 @@
 	"Language": "Jezik",
 	"Language": "Jezik",
 	"Last Active": "Zadnja aktivnost",
 	"Last Active": "Zadnja aktivnost",
 	"Light": "Svijetlo",
 	"Light": "Svijetlo",
-	"Listening...": "Slušam...",
 	"LLMs can make mistakes. Verify important information.": "LLM-ovi mogu pogriješiti. Provjerite važne informacije.",
 	"LLMs can make mistakes. Verify important information.": "LLM-ovi mogu pogriješiti. Provjerite važne informacije.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Izradio OpenWebUI Community",
 	"Made by OpenWebUI Community": "Izradio OpenWebUI Community",
 	"Make sure to enclose them with": "Provjerite da ih zatvorite s",
 	"Make sure to enclose them with": "Provjerite da ih zatvorite s",
+	"Manage": "",
 	"Manage Models": "Upravljanje modelima",
 	"Manage Models": "Upravljanje modelima",
 	"Manage Ollama Models": "Upravljanje Ollama modelima",
 	"Manage Ollama Models": "Upravljanje Ollama modelima",
 	"Manage Pipelines": "Upravljanje cjevovodima",
 	"Manage Pipelines": "Upravljanje cjevovodima",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "Ollama API je onemogućen",
 	"Ollama API disabled": "Ollama API je onemogućen",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Ollama verzija",
 	"Ollama Version": "Ollama verzija",
 	"On": "Uključeno",
 	"On": "Uključeno",
 	"Only": "Samo",
 	"Only": "Samo",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF dokument (.pdf)",
 	"PDF document (.pdf)": "PDF dokument (.pdf)",
 	"PDF Extract Images (OCR)": "PDF izdvajanje slika (OCR)",
 	"PDF Extract Images (OCR)": "PDF izdvajanje slika (OCR)",
 	"pending": "u tijeku",
 	"pending": "u tijeku",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Pristup mikrofonu odbijen: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Pristup mikrofonu odbijen: {{error}}",
 	"Personalization": "Prilagodba",
 	"Personalization": "Prilagodba",
 	"Pipelines": "Cjevovodima",
 	"Pipelines": "Cjevovodima",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Čitaj naglas",
 	"Read Aloud": "Čitaj naglas",
 	"Record voice": "Snimanje glasa",
 	"Record voice": "Snimanje glasa",
 	"Redirecting you to OpenWebUI Community": "Preusmjeravanje na OpenWebUI zajednicu",
 	"Redirecting you to OpenWebUI Community": "Preusmjeravanje na OpenWebUI zajednicu",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Odbijen kada nije trebao biti",
 	"Refused when it shouldn't have": "Odbijen kada nije trebao biti",
 	"Regenerate": "Regeneriraj",
 	"Regenerate": "Regeneriraj",
 	"Release Notes": "Bilješke o izdanju",
 	"Release Notes": "Bilješke o izdanju",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "Spremi",
 	"Save": "Spremi",
 	"Save & Create": "Spremi i stvori",
 	"Save & Create": "Spremi i stvori",
 	"Save & Update": "Spremi i ažuriraj",
 	"Save & Update": "Spremi i ažuriraj",
@@ -408,12 +421,14 @@
 	"See what's new": "Pogledajte što je novo",
 	"See what's new": "Pogledajte što je novo",
 	"Seed": "Sjeme",
 	"Seed": "Sjeme",
 	"Select a base model": "Odabir osnovnog modela",
 	"Select a base model": "Odabir osnovnog modela",
+	"Select a engine": "",
 	"Select a mode": "Odaberite način",
 	"Select a mode": "Odaberite način",
 	"Select a model": "Odaberite model",
 	"Select a model": "Odaberite model",
 	"Select a pipeline": "Odabir kanala",
 	"Select a pipeline": "Odabir kanala",
 	"Select a pipeline url": "Odabir URL-a kanala",
 	"Select a pipeline url": "Odabir URL-a kanala",
 	"Select an Ollama instance": "Odaberite Ollama instancu",
 	"Select an Ollama instance": "Odaberite Ollama instancu",
 	"Select model": "Odaberite model",
 	"Select model": "Odaberite model",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "Odabrani modeli ne podržavaju unose slika",
 	"Selected model(s) do not support image inputs": "Odabrani modeli ne podržavaju unose slika",
 	"Send": "Pošalji",
 	"Send": "Pošalji",
 	"Send a Message": "Pošaljite poruku",
 	"Send a Message": "Pošaljite poruku",
@@ -450,7 +465,6 @@
 	"Source": "Izvor",
 	"Source": "Izvor",
 	"Speech recognition error: {{error}}": "Pogreška prepoznavanja govora: {{error}}",
 	"Speech recognition error: {{error}}": "Pogreška prepoznavanja govora: {{error}}",
 	"Speech-to-Text Engine": "Stroj za prepoznavanje govora",
 	"Speech-to-Text Engine": "Stroj za prepoznavanje govora",
-	"SpeechRecognition API is not supported in this browser.": "API za prepoznavanje govora nije podržan u ovom pregledniku.",
 	"Stop Sequence": "Zaustavi sekvencu",
 	"Stop Sequence": "Zaustavi sekvencu",
 	"STT Settings": "STT postavke",
 	"STT Settings": "STT postavke",
 	"Submit": "Pošalji",
 	"Submit": "Pošalji",
@@ -482,6 +496,7 @@
 	"to": "do",
 	"to": "do",
 	"To access the available model names for downloading,": "Za pristup dostupnim nazivima modela za preuzimanje,",
 	"To access the available model names for downloading,": "Za pristup dostupnim nazivima modela za preuzimanje,",
 	"To access the GGUF models available for downloading,": "Za pristup GGUF modelima dostupnim za preuzimanje,",
 	"To access the GGUF models available for downloading,": "Za pristup GGUF modelima dostupnim za preuzimanje,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "u unos razgovora.",
 	"to chat input.": "u unos razgovora.",
 	"Today": "Danas",
 	"Today": "Danas",
 	"Toggle settings": "Prebaci postavke",
 	"Toggle settings": "Prebaci postavke",
@@ -498,6 +513,7 @@
 	"Update password": "Ažuriraj lozinku",
 	"Update password": "Ažuriraj lozinku",
 	"Upload a GGUF model": "Učitaj GGUF model",
 	"Upload a GGUF model": "Učitaj GGUF model",
 	"Upload Files": "Prenesi datoteke",
 	"Upload Files": "Prenesi datoteke",
+	"Upload Pipeline": "",
 	"Upload Progress": "Napredak učitavanja",
 	"Upload Progress": "Napredak učitavanja",
 	"URL Mode": "URL način",
 	"URL Mode": "URL način",
 	"Use '#' in the prompt input to load and select your documents.": "Koristite '#' u unosu prompta za učitavanje i odabir vaših dokumenata.",
 	"Use '#' in the prompt input to load and select your documents.": "Koristite '#' u unosu prompta za učitavanje i odabir vaših dokumenata.",
@@ -516,6 +532,7 @@
 	"Warning": "Upozorenje",
 	"Warning": "Upozorenje",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Upozorenje: Ako ažurirate ili promijenite svoj model za umetanje, morat ćete ponovno uvesti sve dokumente.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Upozorenje: Ako ažurirate ili promijenite svoj model za umetanje, morat ćete ponovno uvesti sve dokumente.",
 	"Web": "Web",
 	"Web": "Web",
+	"Web API": "",
 	"Web Loader Settings": "Postavke web učitavanja",
 	"Web Loader Settings": "Postavke web učitavanja",
 	"Web Params": "Web parametri",
 	"Web Params": "Web parametri",
 	"Web Search": "Web-pretraživanje",
 	"Web Search": "Web-pretraživanje",
@@ -526,18 +543,19 @@
 	"WebUI will make requests to": "WebUI će slati zahtjeve na",
 	"WebUI will make requests to": "WebUI će slati zahtjeve na",
 	"What’s New in": "Što je novo u",
 	"What’s New in": "Što je novo u",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Kada je povijest isključena, novi razgovori na ovom pregledniku neće se pojaviti u vašoj povijesti na bilo kojem od vaših uređaja.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Kada je povijest isključena, novi razgovori na ovom pregledniku neće se pojaviti u vašoj povijesti na bilo kojem od vaših uređaja.",
-	"Whisper (Local)": "Whisper (lokalno)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "Radna ploča",
 	"Workspace": "Radna ploča",
 	"Write a prompt suggestion (e.g. Who are you?)": "Napišite prijedlog prompta (npr. Tko si ti?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Napišite prijedlog prompta (npr. Tko si ti?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Napišite sažetak u 50 riječi koji sažima [temu ili ključnu riječ].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Napišite sažetak u 50 riječi koji sažima [temu ili ključnu riječ].",
 	"Yesterday": "Jučer",
 	"Yesterday": "Jučer",
 	"You": "Vi",
 	"You": "Vi",
+	"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 clone a base model": "Ne možete klonirati osnovni model",
 	"You cannot clone a base model": "Ne možete klonirati osnovni model",
 	"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",
 	"You're a helpful assistant.": "Vi ste korisni asistent.",
 	"You're a helpful assistant.": "Vi ste korisni asistent.",
 	"You're now logged in.": "Sada ste prijavljeni.",
 	"You're now logged in.": "Sada ste prijavljeni.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "YouTube",
 	"Youtube": "YouTube",
 	"Youtube Loader Settings": "YouTube postavke učitavanja"
 	"Youtube Loader Settings": "YouTube postavke učitavanja"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "un utente",
 	"a user": "un utente",
 	"About": "Informazioni",
 	"About": "Informazioni",
 	"Account": "Account",
 	"Account": "Account",
+	"Account Activation Pending": "",
 	"Accurate information": "Informazioni accurate",
 	"Accurate information": "Informazioni accurate",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Aggiungi",
 	"Add": "Aggiungi",
@@ -29,6 +30,7 @@
 	"Add User": "Aggiungi utente",
 	"Add User": "Aggiungi utente",
 	"Adjusting these settings will apply changes universally to all users.": "La modifica di queste impostazioni applicherà le modifiche universalmente a tutti gli utenti.",
 	"Adjusting these settings will apply changes universally to all users.": "La modifica di queste impostazioni applicherà le modifiche universalmente a tutti gli utenti.",
 	"admin": "amministratore",
 	"admin": "amministratore",
+	"Admin": "",
 	"Admin Panel": "Pannello di amministrazione",
 	"Admin Panel": "Pannello di amministrazione",
 	"Admin Settings": "Impostazioni amministratore",
 	"Admin Settings": "Impostazioni amministratore",
 	"Advanced Parameters": "Parametri avanzati",
 	"Advanced Parameters": "Parametri avanzati",
@@ -59,7 +61,6 @@
 	"Audio": "Audio",
 	"Audio": "Audio",
 	"August": "Agosto",
 	"August": "Agosto",
 	"Auto-playback response": "Riproduzione automatica della risposta",
 	"Auto-playback response": "Riproduzione automatica della risposta",
-	"Auto-send input after 3 sec.": "Invio automatico dell'input dopo 3 secondi.",
 	"AUTOMATIC1111 Base URL": "URL base AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL": "URL base AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL is required.": "L'URL base AUTOMATIC1111 è obbligatorio.",
 	"AUTOMATIC1111 Base URL is required.": "L'URL base AUTOMATIC1111 è obbligatorio.",
 	"available!": "disponibile!",
 	"available!": "disponibile!",
@@ -71,6 +72,7 @@
 	"Being lazy": "Essere pigri",
 	"Being lazy": "Essere pigri",
 	"Brave Search API Key": "Chiave API di ricerca Brave",
 	"Brave Search API Key": "Chiave API di ricerca Brave",
 	"Bypass SSL verification for Websites": "Aggira la verifica SSL per i siti web",
 	"Bypass SSL verification for Websites": "Aggira la verifica SSL per i siti web",
+	"Call": "",
 	"Cancel": "Annulla",
 	"Cancel": "Annulla",
 	"Capabilities": "Funzionalità",
 	"Capabilities": "Funzionalità",
 	"Change Password": "Cambia password",
 	"Change Password": "Cambia password",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Parametri chunk",
 	"Chunk Params": "Parametri chunk",
 	"Chunk Size": "Dimensione chunk",
 	"Chunk Size": "Dimensione chunk",
 	"Citation": "Citazione",
 	"Citation": "Citazione",
+	"Clear memory": "",
 	"Click here for help.": "Clicca qui per aiuto.",
 	"Click here for help.": "Clicca qui per aiuto.",
 	"Click here to": "Clicca qui per",
 	"Click here to": "Clicca qui per",
 	"Click here to select": "Clicca qui per selezionare",
 	"Click here to select": "Clicca qui per selezionare",
 	"Click here to select a csv file.": "Clicca qui per selezionare un file csv.",
 	"Click here to select a csv file.": "Clicca qui per selezionare un file csv.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Clicca qui per selezionare i documenti.",
 	"Click here to select documents.": "Clicca qui per selezionare i documenti.",
 	"click here.": "clicca qui.",
 	"click here.": "clicca qui.",
 	"Click on the user role button to change a user's role.": "Clicca sul pulsante del ruolo utente per modificare il ruolo di un utente.",
 	"Click on the user role button to change a user's role.": "Clicca sul pulsante del ruolo utente per modificare il ruolo di un utente.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Richieste simultanee",
 	"Concurrent Requests": "Richieste simultanee",
 	"Confirm Password": "Conferma password",
 	"Confirm Password": "Conferma password",
 	"Connections": "Connessioni",
 	"Connections": "Connessioni",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Contenuto",
 	"Content": "Contenuto",
 	"Context Length": "Lunghezza contesto",
 	"Context Length": "Lunghezza contesto",
 	"Continue Response": "Continua risposta",
 	"Continue Response": "Continua risposta",
-	"Conversation Mode": "Modalità conversazione",
 	"Copied shared chat URL to clipboard!": "URL della chat condivisa copiato negli appunti!",
 	"Copied shared chat URL to clipboard!": "URL della chat condivisa copiato negli appunti!",
 	"Copy": "Copia",
 	"Copy": "Copia",
 	"Copy last code block": "Copia ultimo blocco di codice",
 	"Copy last code block": "Copia ultimo blocco di codice",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Predefinito (Automatic1111)",
 	"Default (Automatic1111)": "Predefinito (Automatic1111)",
 	"Default (SentenceTransformers)": "Predefinito (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Predefinito (SentenceTransformers)",
 	"Default (Web API)": "Predefinito (API Web)",
 	"Default (Web API)": "Predefinito (API Web)",
+	"Default (Whisper)": "",
 	"Default Model": "Modello di default",
 	"Default Model": "Modello di default",
 	"Default model updated": "Modello predefinito aggiornato",
 	"Default model updated": "Modello predefinito aggiornato",
 	"Default Prompt Suggestions": "Suggerimenti prompt predefiniti",
 	"Default Prompt Suggestions": "Suggerimenti prompt predefiniti",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Scopri un prompt",
 	"Discover a prompt": "Scopri un prompt",
 	"Discover, download, and explore custom prompts": "Scopri, scarica ed esplora prompt personalizzati",
 	"Discover, download, and explore custom prompts": "Scopri, scarica ed esplora prompt personalizzati",
 	"Discover, download, and explore model presets": "Scopri, scarica ed esplora i preset del modello",
 	"Discover, download, and explore model presets": "Scopri, scarica ed esplora i preset del modello",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Visualizza il nome utente invece di Tu nella chat",
 	"Display the username instead of You in the Chat": "Visualizza il nome utente invece di Tu nella chat",
 	"Document": "Documento",
 	"Document": "Documento",
 	"Document Settings": "Impostazioni documento",
 	"Document Settings": "Impostazioni documento",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Esporta mappatura documenti",
 	"Export Documents Mapping": "Esporta mappatura documenti",
 	"Export Models": "Esporta modelli",
 	"Export Models": "Esporta modelli",
 	"Export Prompts": "Esporta prompt",
 	"Export Prompts": "Esporta prompt",
+	"External Models": "",
 	"Failed to create API Key.": "Impossibile creare la chiave API.",
 	"Failed to create API Key.": "Impossibile creare la chiave API.",
 	"Failed to read clipboard contents": "Impossibile leggere il contenuto degli appunti",
 	"Failed to read clipboard contents": "Impossibile leggere il contenuto degli appunti",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "Informazioni",
 	"Info": "Informazioni",
 	"Input commands": "Comandi di input",
 	"Input commands": "Comandi di input",
 	"Install from Github URL": "Eseguire l'installazione dall'URL di Github",
 	"Install from Github URL": "Eseguire l'installazione dall'URL di Github",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Interfaccia",
 	"Interface": "Interfaccia",
 	"Invalid Tag": "Tag non valido",
 	"Invalid Tag": "Tag non valido",
 	"January": "Gennaio",
 	"January": "Gennaio",
@@ -267,11 +275,12 @@
 	"Language": "Lingua",
 	"Language": "Lingua",
 	"Last Active": "Ultima attività",
 	"Last Active": "Ultima attività",
 	"Light": "Chiaro",
 	"Light": "Chiaro",
-	"Listening...": "Ascolto...",
 	"LLMs can make mistakes. Verify important information.": "Gli LLM possono commettere errori. Verifica le informazioni importanti.",
 	"LLMs can make mistakes. Verify important information.": "Gli LLM possono commettere errori. Verifica le informazioni importanti.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Realizzato dalla comunità OpenWebUI",
 	"Made by OpenWebUI Community": "Realizzato dalla comunità OpenWebUI",
 	"Make sure to enclose them with": "Assicurati di racchiuderli con",
 	"Make sure to enclose them with": "Assicurati di racchiuderli con",
+	"Manage": "",
 	"Manage Models": "Gestisci modelli",
 	"Manage Models": "Gestisci modelli",
 	"Manage Ollama Models": "Gestisci modelli Ollama",
 	"Manage Ollama Models": "Gestisci modelli Ollama",
 	"Manage Pipelines": "Gestire le pipeline",
 	"Manage Pipelines": "Gestire le pipeline",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "API Ollama disabilitata",
 	"Ollama API disabled": "API Ollama disabilitata",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Versione Ollama",
 	"Ollama Version": "Versione Ollama",
 	"On": "Attivato",
 	"On": "Attivato",
 	"Only": "Solo",
 	"Only": "Solo",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "Documento PDF (.pdf)",
 	"PDF document (.pdf)": "Documento PDF (.pdf)",
 	"PDF Extract Images (OCR)": "Estrazione immagini PDF (OCR)",
 	"PDF Extract Images (OCR)": "Estrazione immagini PDF (OCR)",
 	"pending": "in sospeso",
 	"pending": "in sospeso",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Autorizzazione negata durante l'accesso al microfono: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Autorizzazione negata durante l'accesso al microfono: {{error}}",
 	"Personalization": "Personalizzazione",
 	"Personalization": "Personalizzazione",
 	"Pipelines": "Condutture",
 	"Pipelines": "Condutture",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Leggi ad alta voce",
 	"Read Aloud": "Leggi ad alta voce",
 	"Record voice": "Registra voce",
 	"Record voice": "Registra voce",
 	"Redirecting you to OpenWebUI Community": "Reindirizzamento alla comunità OpenWebUI",
 	"Redirecting you to OpenWebUI Community": "Reindirizzamento alla comunità OpenWebUI",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Rifiutato quando non avrebbe dovuto",
 	"Refused when it shouldn't have": "Rifiutato quando non avrebbe dovuto",
 	"Regenerate": "Rigenera",
 	"Regenerate": "Rigenera",
 	"Release Notes": "Note di rilascio",
 	"Release Notes": "Note di rilascio",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "Salva",
 	"Save": "Salva",
 	"Save & Create": "Salva e crea",
 	"Save & Create": "Salva e crea",
 	"Save & Update": "Salva e aggiorna",
 	"Save & Update": "Salva e aggiorna",
@@ -408,12 +421,14 @@
 	"See what's new": "Guarda le novità",
 	"See what's new": "Guarda le novità",
 	"Seed": "Seme",
 	"Seed": "Seme",
 	"Select a base model": "Selezionare un modello di base",
 	"Select a base model": "Selezionare un modello di base",
+	"Select a engine": "",
 	"Select a mode": "Seleziona una modalità",
 	"Select a mode": "Seleziona una modalità",
 	"Select a model": "Seleziona un modello",
 	"Select a model": "Seleziona un modello",
 	"Select a pipeline": "Selezionare una tubazione",
 	"Select a pipeline": "Selezionare una tubazione",
 	"Select a pipeline url": "Selezionare l'URL di una pipeline",
 	"Select a pipeline url": "Selezionare l'URL di una pipeline",
 	"Select an Ollama instance": "Seleziona un'istanza Ollama",
 	"Select an Ollama instance": "Seleziona un'istanza Ollama",
 	"Select model": "Seleziona modello",
 	"Select model": "Seleziona modello",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "I modelli selezionati non supportano l'input di immagini",
 	"Selected model(s) do not support image inputs": "I modelli selezionati non supportano l'input di immagini",
 	"Send": "Invia",
 	"Send": "Invia",
 	"Send a Message": "Invia un messaggio",
 	"Send a Message": "Invia un messaggio",
@@ -450,7 +465,6 @@
 	"Source": "Fonte",
 	"Source": "Fonte",
 	"Speech recognition error: {{error}}": "Errore di riconoscimento vocale: {{error}}",
 	"Speech recognition error: {{error}}": "Errore di riconoscimento vocale: {{error}}",
 	"Speech-to-Text Engine": "Motore da voce a testo",
 	"Speech-to-Text Engine": "Motore da voce a testo",
-	"SpeechRecognition API is not supported in this browser.": "L'API SpeechRecognition non è supportata in questo browser.",
 	"Stop Sequence": "Sequenza di arresto",
 	"Stop Sequence": "Sequenza di arresto",
 	"STT Settings": "Impostazioni STT",
 	"STT Settings": "Impostazioni STT",
 	"Submit": "Invia",
 	"Submit": "Invia",
@@ -482,6 +496,7 @@
 	"to": "a",
 	"to": "a",
 	"To access the available model names for downloading,": "Per accedere ai nomi dei modelli disponibili per il download,",
 	"To access the available model names for downloading,": "Per accedere ai nomi dei modelli disponibili per il download,",
 	"To access the GGUF models available for downloading,": "Per accedere ai modelli GGUF disponibili per il download,",
 	"To access the GGUF models available for downloading,": "Per accedere ai modelli GGUF disponibili per il download,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "all'input della chat.",
 	"to chat input.": "all'input della chat.",
 	"Today": "Oggi",
 	"Today": "Oggi",
 	"Toggle settings": "Attiva/disattiva impostazioni",
 	"Toggle settings": "Attiva/disattiva impostazioni",
@@ -498,6 +513,7 @@
 	"Update password": "Aggiorna password",
 	"Update password": "Aggiorna password",
 	"Upload a GGUF model": "Carica un modello GGUF",
 	"Upload a GGUF model": "Carica un modello GGUF",
 	"Upload Files": "Carica file",
 	"Upload Files": "Carica file",
+	"Upload Pipeline": "",
 	"Upload Progress": "Avanzamento caricamento",
 	"Upload Progress": "Avanzamento caricamento",
 	"URL Mode": "Modalità URL",
 	"URL Mode": "Modalità URL",
 	"Use '#' in the prompt input to load and select your documents.": "Usa '#' nell'input del prompt per caricare e selezionare i tuoi documenti.",
 	"Use '#' in the prompt input to load and select your documents.": "Usa '#' nell'input del prompt per caricare e selezionare i tuoi documenti.",
@@ -516,6 +532,7 @@
 	"Warning": "Avvertimento",
 	"Warning": "Avvertimento",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Attenzione: se aggiorni o cambi il tuo modello di embedding, dovrai reimportare tutti i documenti.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Attenzione: se aggiorni o cambi il tuo modello di embedding, dovrai reimportare tutti i documenti.",
 	"Web": "Web",
 	"Web": "Web",
+	"Web API": "",
 	"Web Loader Settings": "Impostazioni del caricatore Web",
 	"Web Loader Settings": "Impostazioni del caricatore Web",
 	"Web Params": "Parametri Web",
 	"Web Params": "Parametri Web",
 	"Web Search": "Ricerca sul Web",
 	"Web Search": "Ricerca sul Web",
@@ -526,18 +543,19 @@
 	"WebUI will make requests to": "WebUI effettuerà richieste a",
 	"WebUI will make requests to": "WebUI effettuerà richieste a",
 	"What’s New in": "Novità in",
 	"What’s New in": "Novità in",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Quando la cronologia è disattivata, le nuove chat su questo browser non verranno visualizzate nella cronologia su nessuno dei tuoi dispositivi.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Quando la cronologia è disattivata, le nuove chat su questo browser non verranno visualizzate nella cronologia su nessuno dei tuoi dispositivi.",
-	"Whisper (Local)": "Whisper (locale)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "Area di lavoro",
 	"Workspace": "Area di lavoro",
 	"Write a prompt suggestion (e.g. Who are you?)": "Scrivi un suggerimento per il prompt (ad esempio Chi sei?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Scrivi un suggerimento per il prompt (ad esempio Chi sei?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Scrivi un riassunto in 50 parole che riassume [argomento o parola chiave].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Scrivi un riassunto in 50 parole che riassume [argomento o parola chiave].",
 	"Yesterday": "Ieri",
 	"Yesterday": "Ieri",
 	"You": "Tu",
 	"You": "Tu",
+	"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 clone a base model": "Non è possibile clonare un modello di base",
 	"You cannot clone a base model": "Non è possibile clonare un modello di base",
 	"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",
 	"You're a helpful assistant.": "Sei un assistente utile.",
 	"You're a helpful assistant.": "Sei un assistente utile.",
 	"You're now logged in.": "Ora hai effettuato l'accesso.",
 	"You're now logged in.": "Ora hai effettuato l'accesso.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Impostazioni del caricatore Youtube"
 	"Youtube Loader Settings": "Impostazioni del caricatore Youtube"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "ユーザー",
 	"a user": "ユーザー",
 	"About": "概要",
 	"About": "概要",
 	"Account": "アカウント",
 	"Account": "アカウント",
+	"Account Activation Pending": "",
 	"Accurate information": "情報の正確性",
 	"Accurate information": "情報の正確性",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "追加",
 	"Add": "追加",
@@ -29,6 +30,7 @@
 	"Add User": "ユーザーを追加",
 	"Add User": "ユーザーを追加",
 	"Adjusting these settings will apply changes universally to all users.": "これらの設定を調整すると、すべてのユーザーに普遍的に変更が適用されます。",
 	"Adjusting these settings will apply changes universally to all users.": "これらの設定を調整すると、すべてのユーザーに普遍的に変更が適用されます。",
 	"admin": "管理者",
 	"admin": "管理者",
+	"Admin": "",
 	"Admin Panel": "管理者パネル",
 	"Admin Panel": "管理者パネル",
 	"Admin Settings": "管理者設定",
 	"Admin Settings": "管理者設定",
 	"Advanced Parameters": "詳細パラメーター",
 	"Advanced Parameters": "詳細パラメーター",
@@ -59,7 +61,6 @@
 	"Audio": "オーディオ",
 	"Audio": "オーディオ",
 	"August": "8月",
 	"August": "8月",
 	"Auto-playback response": "応答の自動再生",
 	"Auto-playback response": "応答の自動再生",
-	"Auto-send input after 3 sec.": "3 秒後に自動的に出力を送信",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 ベース URL",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 ベース URL",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ベース URL が必要です。",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ベース URL が必要です。",
 	"available!": "利用可能!",
 	"available!": "利用可能!",
@@ -71,6 +72,7 @@
 	"Being lazy": "怠惰な",
 	"Being lazy": "怠惰な",
 	"Brave Search API Key": "Brave Search APIキー",
 	"Brave Search API Key": "Brave Search APIキー",
 	"Bypass SSL verification for Websites": "SSL 検証をバイパスする",
 	"Bypass SSL verification for Websites": "SSL 検証をバイパスする",
+	"Call": "",
 	"Cancel": "キャンセル",
 	"Cancel": "キャンセル",
 	"Capabilities": "資格",
 	"Capabilities": "資格",
 	"Change Password": "パスワードを変更",
 	"Change Password": "パスワードを変更",
@@ -88,10 +90,12 @@
 	"Chunk Params": "チャンクパラメーター",
 	"Chunk Params": "チャンクパラメーター",
 	"Chunk Size": "チャンクサイズ",
 	"Chunk Size": "チャンクサイズ",
 	"Citation": "引用文",
 	"Citation": "引用文",
+	"Clear memory": "",
 	"Click here for help.": "ヘルプについてはここをクリックしてください。",
 	"Click here for help.": "ヘルプについてはここをクリックしてください。",
 	"Click here to": "ここをクリックして",
 	"Click here to": "ここをクリックして",
 	"Click here to select": "選択するにはここをクリックしてください",
 	"Click here to select": "選択するにはここをクリックしてください",
 	"Click here to select a csv file.": "CSVファイルを選択するにはここをクリックしてください。",
 	"Click here to select a csv file.": "CSVファイルを選択するにはここをクリックしてください。",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "ドキュメントを選択するにはここをクリックしてください。",
 	"Click here to select documents.": "ドキュメントを選択するにはここをクリックしてください。",
 	"click here.": "ここをクリックしてください。",
 	"click here.": "ここをクリックしてください。",
 	"Click on the user role button to change a user's role.": "ユーザーの役割を変更するには、ユーザー役割ボタンをクリックしてください。",
 	"Click on the user role button to change a user's role.": "ユーザーの役割を変更するには、ユーザー役割ボタンをクリックしてください。",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "コンカレント要求",
 	"Concurrent Requests": "コンカレント要求",
 	"Confirm Password": "パスワードを確認",
 	"Confirm Password": "パスワードを確認",
 	"Connections": "接続",
 	"Connections": "接続",
+	"Contact Admin for WebUI Access": "",
 	"Content": "コンテンツ",
 	"Content": "コンテンツ",
 	"Context Length": "コンテキストの長さ",
 	"Context Length": "コンテキストの長さ",
 	"Continue Response": "続きの応答",
 	"Continue Response": "続きの応答",
-	"Conversation Mode": "会話モード",
 	"Copied shared chat URL to clipboard!": "共有チャットURLをクリップボードにコピーしました!",
 	"Copied shared chat URL to clipboard!": "共有チャットURLをクリップボードにコピーしました!",
 	"Copy": "コピー",
 	"Copy": "コピー",
 	"Copy last code block": "最後のコードブロックをコピー",
 	"Copy last code block": "最後のコードブロックをコピー",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "デフォルト (Automatic1111)",
 	"Default (Automatic1111)": "デフォルト (Automatic1111)",
 	"Default (SentenceTransformers)": "デフォルト (SentenceTransformers)",
 	"Default (SentenceTransformers)": "デフォルト (SentenceTransformers)",
 	"Default (Web API)": "デフォルト (Web API)",
 	"Default (Web API)": "デフォルト (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "デフォルトモデル",
 	"Default Model": "デフォルトモデル",
 	"Default model updated": "デフォルトモデルが更新されました",
 	"Default model updated": "デフォルトモデルが更新されました",
 	"Default Prompt Suggestions": "デフォルトのプロンプトの提案",
 	"Default Prompt Suggestions": "デフォルトのプロンプトの提案",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "プロンプトを見つける",
 	"Discover a prompt": "プロンプトを見つける",
 	"Discover, download, and explore custom prompts": "カスタムプロンプトを見つけて、ダウンロードして、探索",
 	"Discover, download, and explore custom prompts": "カスタムプロンプトを見つけて、ダウンロードして、探索",
 	"Discover, download, and explore model presets": "モデルプリセットを見つけて、ダウンロードして、探索",
 	"Discover, download, and explore model presets": "モデルプリセットを見つけて、ダウンロードして、探索",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "チャットで「あなた」の代わりにユーザー名を表示",
 	"Display the username instead of You in the Chat": "チャットで「あなた」の代わりにユーザー名を表示",
 	"Document": "ドキュメント",
 	"Document": "ドキュメント",
 	"Document Settings": "ドキュメント設定",
 	"Document Settings": "ドキュメント設定",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "ドキュメントマッピングをエクスポート",
 	"Export Documents Mapping": "ドキュメントマッピングをエクスポート",
 	"Export Models": "モデルのエクスポート",
 	"Export Models": "モデルのエクスポート",
 	"Export Prompts": "プロンプトをエクスポート",
 	"Export Prompts": "プロンプトをエクスポート",
+	"External Models": "",
 	"Failed to create API Key.": "APIキーの作成に失敗しました。",
 	"Failed to create API Key.": "APIキーの作成に失敗しました。",
 	"Failed to read clipboard contents": "クリップボードの内容を読み取れませんでした",
 	"Failed to read clipboard contents": "クリップボードの内容を読み取れませんでした",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "情報",
 	"Info": "情報",
 	"Input commands": "入力コマンド",
 	"Input commands": "入力コマンド",
 	"Install from Github URL": "Github URLからインストール",
 	"Install from Github URL": "Github URLからインストール",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "インターフェース",
 	"Interface": "インターフェース",
 	"Invalid Tag": "無効なタグ",
 	"Invalid Tag": "無効なタグ",
 	"January": "1月",
 	"January": "1月",
@@ -267,11 +275,12 @@
 	"Language": "言語",
 	"Language": "言語",
 	"Last Active": "最終アクティブ",
 	"Last Active": "最終アクティブ",
 	"Light": "ライト",
 	"Light": "ライト",
-	"Listening...": "聞いています...",
 	"LLMs can make mistakes. Verify important information.": "LLM は間違いを犯す可能性があります。重要な情報を検証してください。",
 	"LLMs can make mistakes. Verify important information.": "LLM は間違いを犯す可能性があります。重要な情報を検証してください。",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "OpenWebUI コミュニティによって作成",
 	"Made by OpenWebUI Community": "OpenWebUI コミュニティによって作成",
 	"Make sure to enclose them with": "必ず次で囲んでください",
 	"Make sure to enclose them with": "必ず次で囲んでください",
+	"Manage": "",
 	"Manage Models": "モデルを管理",
 	"Manage Models": "モデルを管理",
 	"Manage Ollama Models": "Ollama モデルを管理",
 	"Manage Ollama Models": "Ollama モデルを管理",
 	"Manage Pipelines": "パイプラインの管理",
 	"Manage Pipelines": "パイプラインの管理",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "Ollama API が無効になっています",
 	"Ollama API disabled": "Ollama API が無効になっています",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Ollama バージョン",
 	"Ollama Version": "Ollama バージョン",
 	"On": "オン",
 	"On": "オン",
 	"Only": "のみ",
 	"Only": "のみ",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF ドキュメント (.pdf)",
 	"PDF document (.pdf)": "PDF ドキュメント (.pdf)",
 	"PDF Extract Images (OCR)": "PDF 画像抽出 (OCR)",
 	"PDF Extract Images (OCR)": "PDF 画像抽出 (OCR)",
 	"pending": "保留中",
 	"pending": "保留中",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "マイクへのアクセス時に権限が拒否されました: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "マイクへのアクセス時に権限が拒否されました: {{error}}",
 	"Personalization": "個人化",
 	"Personalization": "個人化",
 	"Pipelines": "パイプライン",
 	"Pipelines": "パイプライン",
@@ -367,6 +378,7 @@
 	"Read Aloud": "読み上げ",
 	"Read Aloud": "読み上げ",
 	"Record voice": "音声を録音",
 	"Record voice": "音声を録音",
 	"Redirecting you to OpenWebUI Community": "OpenWebUI コミュニティにリダイレクトしています",
 	"Redirecting you to OpenWebUI Community": "OpenWebUI コミュニティにリダイレクトしています",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "許可されないのに許可されました",
 	"Refused when it shouldn't have": "許可されないのに許可されました",
 	"Regenerate": "再生成",
 	"Regenerate": "再生成",
 	"Release Notes": "リリースノート",
 	"Release Notes": "リリースノート",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "保存",
 	"Save": "保存",
 	"Save & Create": "保存して作成",
 	"Save & Create": "保存して作成",
 	"Save & Update": "保存して更新",
 	"Save & Update": "保存して更新",
@@ -406,12 +419,14 @@
 	"See what's new": "新機能を見る",
 	"See what's new": "新機能を見る",
 	"Seed": "シード",
 	"Seed": "シード",
 	"Select a base model": "基本モデルの選択",
 	"Select a base model": "基本モデルの選択",
+	"Select a engine": "",
 	"Select a mode": "モードを選択",
 	"Select a mode": "モードを選択",
 	"Select a model": "モデルを選択",
 	"Select a model": "モデルを選択",
 	"Select a pipeline": "パイプラインの選択",
 	"Select a pipeline": "パイプラインの選択",
 	"Select a pipeline url": "パイプラインの URL を選択する",
 	"Select a pipeline url": "パイプラインの URL を選択する",
 	"Select an Ollama instance": "Ollama インスタンスを選択",
 	"Select an Ollama instance": "Ollama インスタンスを選択",
 	"Select model": "モデルを選択",
 	"Select model": "モデルを選択",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "一部のモデルは画像入力をサポートしていません",
 	"Selected model(s) do not support image inputs": "一部のモデルは画像入力をサポートしていません",
 	"Send": "送信",
 	"Send": "送信",
 	"Send a Message": "メッセージを送信",
 	"Send a Message": "メッセージを送信",
@@ -448,7 +463,6 @@
 	"Source": "ソース",
 	"Source": "ソース",
 	"Speech recognition error: {{error}}": "音声認識エラー: {{error}}",
 	"Speech recognition error: {{error}}": "音声認識エラー: {{error}}",
 	"Speech-to-Text Engine": "音声テキスト変換エンジン",
 	"Speech-to-Text Engine": "音声テキスト変換エンジン",
-	"SpeechRecognition API is not supported in this browser.": "このブラウザでは SpeechRecognition API がサポートされていません。",
 	"Stop Sequence": "ストップシーケンス",
 	"Stop Sequence": "ストップシーケンス",
 	"STT Settings": "STT 設定",
 	"STT Settings": "STT 設定",
 	"Submit": "送信",
 	"Submit": "送信",
@@ -480,6 +494,7 @@
 	"to": "まで",
 	"to": "まで",
 	"To access the available model names for downloading,": "ダウンロード可能なモデル名にアクセスするには、",
 	"To access the available model names for downloading,": "ダウンロード可能なモデル名にアクセスするには、",
 	"To access the GGUF models available for downloading,": "ダウンロード可能な GGUF モデルにアクセスするには、",
 	"To access the GGUF models available for downloading,": "ダウンロード可能な GGUF モデルにアクセスするには、",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "チャット入力へ。",
 	"to chat input.": "チャット入力へ。",
 	"Today": "今日",
 	"Today": "今日",
 	"Toggle settings": "設定を切り替え",
 	"Toggle settings": "設定を切り替え",
@@ -496,6 +511,7 @@
 	"Update password": "パスワードを更新",
 	"Update password": "パスワードを更新",
 	"Upload a GGUF model": "GGUF モデルをアップロード",
 	"Upload a GGUF model": "GGUF モデルをアップロード",
 	"Upload Files": "ファイルのアップロード",
 	"Upload Files": "ファイルのアップロード",
+	"Upload Pipeline": "",
 	"Upload Progress": "アップロードの進行状況",
 	"Upload Progress": "アップロードの進行状況",
 	"URL Mode": "URL モード",
 	"URL Mode": "URL モード",
 	"Use '#' in the prompt input to load and select your documents.": "プロンプト入力で '#' を使用して、ドキュメントを読み込んで選択します。",
 	"Use '#' in the prompt input to load and select your documents.": "プロンプト入力で '#' を使用して、ドキュメントを読み込んで選択します。",
@@ -514,6 +530,7 @@
 	"Warning": "警告",
 	"Warning": "警告",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "警告: 埋め込みモデルを更新または変更した場合は、すべてのドキュメントを再インポートする必要があります。",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "警告: 埋め込みモデルを更新または変更した場合は、すべてのドキュメントを再インポートする必要があります。",
 	"Web": "ウェブ",
 	"Web": "ウェブ",
+	"Web API": "",
 	"Web Loader Settings": "Web 読み込み設定",
 	"Web Loader Settings": "Web 読み込み設定",
 	"Web Params": "Web パラメータ",
 	"Web Params": "Web パラメータ",
 	"Web Search": "ウェブ検索",
 	"Web Search": "ウェブ検索",
@@ -524,18 +541,19 @@
 	"WebUI will make requests to": "WebUI は次に対してリクエストを行います",
 	"WebUI will make requests to": "WebUI は次に対してリクエストを行います",
 	"What’s New in": "新機能",
 	"What’s New in": "新機能",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "履歴が無効になっている場合、このブラウザでの新しいチャットは、どのデバイスの履歴にも表示されません。",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "履歴が無効になっている場合、このブラウザでの新しいチャットは、どのデバイスの履歴にも表示されません。",
-	"Whisper (Local)": "Whisper (ローカル)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "ワークスペース",
 	"Workspace": "ワークスペース",
 	"Write a prompt suggestion (e.g. Who are you?)": "プロンプトの提案を書いてください (例: あなたは誰ですか?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "プロンプトの提案を書いてください (例: あなたは誰ですか?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "[トピックまたはキーワード] を要約する 50 語の概要を書いてください。",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "[トピックまたはキーワード] を要約する 50 語の概要を書いてください。",
 	"Yesterday": "昨日",
 	"Yesterday": "昨日",
 	"You": "あなた",
 	"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 clone a base model": "基本モデルのクローンを作成できない",
 	"You cannot clone a base model": "基本モデルのクローンを作成できない",
 	"You have no archived conversations.": "これまでにアーカイブされた会話はありません。",
 	"You have no archived conversations.": "これまでにアーカイブされた会話はありません。",
 	"You have shared this chat": "このチャットを共有しました",
 	"You have shared this chat": "このチャットを共有しました",
 	"You're a helpful assistant.": "あなたは役に立つアシスタントです。",
 	"You're a helpful assistant.": "あなたは役に立つアシスタントです。",
 	"You're now logged in.": "ログインしました。",
 	"You're now logged in.": "ログインしました。",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "YouTube",
 	"Youtube": "YouTube",
 	"Youtube Loader Settings": "Youtubeローダー設定"
 	"Youtube Loader Settings": "Youtubeローダー設定"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "მომხმარებელი",
 	"a user": "მომხმარებელი",
 	"About": "შესახებ",
 	"About": "შესახებ",
 	"Account": "ანგარიში",
 	"Account": "ანგარიში",
+	"Account Activation Pending": "",
 	"Accurate information": "დიდი ინფორმაცია",
 	"Accurate information": "დიდი ინფორმაცია",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "დამატება",
 	"Add": "დამატება",
@@ -29,6 +30,7 @@
 	"Add User": "მომხმარებლის დამატება",
 	"Add User": "მომხმარებლის დამატება",
 	"Adjusting these settings will apply changes universally to all users.": "ამ პარამეტრების რეგულირება ცვლილებებს უნივერსალურად გამოიყენებს ყველა მომხმარებლისთვის",
 	"Adjusting these settings will apply changes universally to all users.": "ამ პარამეტრების რეგულირება ცვლილებებს უნივერსალურად გამოიყენებს ყველა მომხმარებლისთვის",
 	"admin": "ადმინისტრატორი",
 	"admin": "ადმინისტრატორი",
+	"Admin": "",
 	"Admin Panel": "ადმინ პანელი",
 	"Admin Panel": "ადმინ პანელი",
 	"Admin Settings": "ადმინისტრატორის ხელსაწყოები",
 	"Admin Settings": "ადმინისტრატორის ხელსაწყოები",
 	"Advanced Parameters": "დამატებითი პარამეტრები",
 	"Advanced Parameters": "დამატებითი პარამეტრები",
@@ -59,7 +61,6 @@
 	"Audio": "ხმოვანი",
 	"Audio": "ხმოვანი",
 	"August": "აგვისტო",
 	"August": "აგვისტო",
 	"Auto-playback response": "ავტომატური დაკვრის პასუხი",
 	"Auto-playback response": "ავტომატური დაკვრის პასუხი",
-	"Auto-send input after 3 sec.": "შეყვანის ავტომატური გაგზავნა 3 წამის შემდეგ ",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 საბაზისო მისამართი",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 საბაზისო მისამართი",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 საბაზისო მისამართი აუცილებელია",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 საბაზისო მისამართი აუცილებელია",
 	"available!": "ხელმისაწვდომია!",
 	"available!": "ხელმისაწვდომია!",
@@ -71,6 +72,7 @@
 	"Being lazy": "ჩაიტყვევა",
 	"Being lazy": "ჩაიტყვევა",
 	"Brave Search API Key": "Brave Search API გასაღები",
 	"Brave Search API Key": "Brave Search API გასაღები",
 	"Bypass SSL verification for Websites": "SSL-ის ვერიფიკაციის გააუქმება ვებსაიტებზე",
 	"Bypass SSL verification for Websites": "SSL-ის ვერიფიკაციის გააუქმება ვებსაიტებზე",
+	"Call": "",
 	"Cancel": "გაუქმება",
 	"Cancel": "გაუქმება",
 	"Capabilities": "შესაძლებლობები",
 	"Capabilities": "შესაძლებლობები",
 	"Change Password": "პაროლის შეცვლა",
 	"Change Password": "პაროლის შეცვლა",
@@ -88,10 +90,12 @@
 	"Chunk Params": "გადახურვის პარამეტრები",
 	"Chunk Params": "გადახურვის პარამეტრები",
 	"Chunk Size": "გადახურვის ზომა",
 	"Chunk Size": "გადახურვის ზომა",
 	"Citation": "ციტატა",
 	"Citation": "ციტატა",
+	"Clear memory": "",
 	"Click here for help.": "დახმარებისთვის, დააკლიკე აქ",
 	"Click here for help.": "დახმარებისთვის, დააკლიკე აქ",
 	"Click here to": "დააკლიკე აქ",
 	"Click here to": "დააკლიკე აქ",
 	"Click here to select": "ასარჩევად, დააკლიკე აქ",
 	"Click here to select": "ასარჩევად, დააკლიკე აქ",
 	"Click here to select a csv file.": "ასარჩევად, დააკლიკე აქ",
 	"Click here to select a csv file.": "ასარჩევად, დააკლიკე აქ",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "დოკუმენტების ასარჩევად, დააკლიკე აქ",
 	"Click here to select documents.": "დოკუმენტების ასარჩევად, დააკლიკე აქ",
 	"click here.": "დააკლიკე აქ",
 	"click here.": "დააკლიკე აქ",
 	"Click on the user role button to change a user's role.": "დააკლიკეთ მომხმარებლის როლის ღილაკს რომ შეცვალოთ მომხმარების როლი",
 	"Click on the user role button to change a user's role.": "დააკლიკეთ მომხმარებლის როლის ღილაკს რომ შეცვალოთ მომხმარების როლი",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "თანმხლები მოთხოვნები",
 	"Concurrent Requests": "თანმხლები მოთხოვნები",
 	"Confirm Password": "პაროლის დამოწმება",
 	"Confirm Password": "პაროლის დამოწმება",
 	"Connections": "კავშირები",
 	"Connections": "კავშირები",
+	"Contact Admin for WebUI Access": "",
 	"Content": "კონტენტი",
 	"Content": "კონტენტი",
 	"Context Length": "კონტექსტის სიგრძე",
 	"Context Length": "კონტექსტის სიგრძე",
 	"Continue Response": "პასუხის გაგრძელება",
 	"Continue Response": "პასუხის გაგრძელება",
-	"Conversation Mode": "საუბრი რეჟიმი",
 	"Copied shared chat URL to clipboard!": "ყავს ჩათის URL-ი კლიპბორდში!",
 	"Copied shared chat URL to clipboard!": "ყავს ჩათის URL-ი კლიპბორდში!",
 	"Copy": "კოპირება",
 	"Copy": "კოპირება",
 	"Copy last code block": "ბოლო ბლოკის კოპირება",
 	"Copy last code block": "ბოლო ბლოკის კოპირება",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "დეფოლტ (Automatic1111)",
 	"Default (Automatic1111)": "დეფოლტ (Automatic1111)",
 	"Default (SentenceTransformers)": "დეფოლტ (SentenceTransformers)",
 	"Default (SentenceTransformers)": "დეფოლტ (SentenceTransformers)",
 	"Default (Web API)": "დეფოლტ (Web API)",
 	"Default (Web API)": "დეფოლტ (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "ნაგულისხმები მოდელი",
 	"Default Model": "ნაგულისხმები მოდელი",
 	"Default model updated": "დეფოლტ მოდელი განახლებულია",
 	"Default model updated": "დეფოლტ მოდელი განახლებულია",
 	"Default Prompt Suggestions": "დეფოლტ პრომპტი პირველი პირველი",
 	"Default Prompt Suggestions": "დეფოლტ პრომპტი პირველი პირველი",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "აღმოაჩინეთ მოთხოვნა",
 	"Discover a prompt": "აღმოაჩინეთ მოთხოვნა",
 	"Discover, download, and explore custom prompts": "აღმოაჩინეთ, ჩამოტვირთეთ და შეისწავლეთ მორგებული მოთხოვნები",
 	"Discover, download, and explore custom prompts": "აღმოაჩინეთ, ჩამოტვირთეთ და შეისწავლეთ მორგებული მოთხოვნები",
 	"Discover, download, and explore model presets": "აღმოაჩინეთ, ჩამოტვირთეთ და შეისწავლეთ მოდელის წინასწარ პარამეტრები",
 	"Discover, download, and explore model presets": "აღმოაჩინეთ, ჩამოტვირთეთ და შეისწავლეთ მოდელის წინასწარ პარამეტრები",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "ჩატში აჩვენე მომხმარებლის სახელი თქვენს ნაცვლად",
 	"Display the username instead of You in the Chat": "ჩატში აჩვენე მომხმარებლის სახელი თქვენს ნაცვლად",
 	"Document": "დოკუმენტი",
 	"Document": "დოკუმენტი",
 	"Document Settings": "დოკუმენტის პარამეტრები",
 	"Document Settings": "დოკუმენტის პარამეტრები",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "დოკუმენტების კავშირის ექსპორტი",
 	"Export Documents Mapping": "დოკუმენტების კავშირის ექსპორტი",
 	"Export Models": "ექსპორტის მოდელები",
 	"Export Models": "ექსპორტის მოდელები",
 	"Export Prompts": "მოთხოვნების ექსპორტი",
 	"Export Prompts": "მოთხოვნების ექსპორტი",
+	"External Models": "",
 	"Failed to create API Key.": "API ღილაკის შექმნა ვერ მოხერხდა.",
 	"Failed to create API Key.": "API ღილაკის შექმნა ვერ მოხერხდა.",
 	"Failed to read clipboard contents": "ბუფერში შიგთავსის წაკითხვა ვერ მოხერხდა",
 	"Failed to read clipboard contents": "ბუფერში შიგთავსის წაკითხვა ვერ მოხერხდა",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "ინფორმაცია",
 	"Info": "ინფორმაცია",
 	"Input commands": "შეყვანით ბრძანებებს",
 	"Input commands": "შეყვანით ბრძანებებს",
 	"Install from Github URL": "დააინსტალირეთ Github URL- დან",
 	"Install from Github URL": "დააინსტალირეთ Github URL- დან",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "ინტერფეისი",
 	"Interface": "ინტერფეისი",
 	"Invalid Tag": "არასწორი ტეგი",
 	"Invalid Tag": "არასწორი ტეგი",
 	"January": "იანვარი",
 	"January": "იანვარი",
@@ -267,11 +275,12 @@
 	"Language": "ენა",
 	"Language": "ენა",
 	"Last Active": "ბოლო აქტიური",
 	"Last Active": "ბოლო აქტიური",
 	"Light": "მსუბუქი",
 	"Light": "მსუბუქი",
-	"Listening...": "გისმენ...",
 	"LLMs can make mistakes. Verify important information.": "შესაძლოა LLM-ებმა შეცდომები დაუშვან. გადაამოწმეთ მნიშვნელოვანი ინფორმაცია.",
 	"LLMs can make mistakes. Verify important information.": "შესაძლოა LLM-ებმა შეცდომები დაუშვან. გადაამოწმეთ მნიშვნელოვანი ინფორმაცია.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "დამზადებულია OpenWebUI საზოგადოების მიერ",
 	"Made by OpenWebUI Community": "დამზადებულია OpenWebUI საზოგადოების მიერ",
 	"Make sure to enclose them with": "დარწმუნდით, რომ დაურთეთ ისინი",
 	"Make sure to enclose them with": "დარწმუნდით, რომ დაურთეთ ისინი",
+	"Manage": "",
 	"Manage Models": "მოდელების მართვა",
 	"Manage Models": "მოდელების მართვა",
 	"Manage Ollama Models": "Ollama მოდელების მართვა",
 	"Manage Ollama Models": "Ollama მოდელების მართვა",
 	"Manage Pipelines": "მილსადენების მართვა",
 	"Manage Pipelines": "მილსადენების მართვა",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "Ollama API გამორთულია",
 	"Ollama API disabled": "Ollama API გამორთულია",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Ollama ვერსია",
 	"Ollama Version": "Ollama ვერსია",
 	"On": "ჩართვა",
 	"On": "ჩართვა",
 	"Only": "მხოლოდ",
 	"Only": "მხოლოდ",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF დოკუმენტი (.pdf)",
 	"PDF document (.pdf)": "PDF დოკუმენტი (.pdf)",
 	"PDF Extract Images (OCR)": "PDF იდან ამოღებული სურათები (OCR)",
 	"PDF Extract Images (OCR)": "PDF იდან ამოღებული სურათები (OCR)",
 	"pending": "ლოდინის რეჟიმშია",
 	"pending": "ლოდინის რეჟიმშია",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "ნებართვა უარყოფილია მიკროფონზე წვდომისას: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "ნებართვა უარყოფილია მიკროფონზე წვდომისას: {{error}}",
 	"Personalization": "პერსონალიზაცია",
 	"Personalization": "პერსონალიზაცია",
 	"Pipelines": "მილსადენები",
 	"Pipelines": "მილსადენები",
@@ -367,6 +378,7 @@
 	"Read Aloud": "ხმის ჩაწერა",
 	"Read Aloud": "ხმის ჩაწერა",
 	"Record voice": "ხმის ჩაწერა",
 	"Record voice": "ხმის ჩაწერა",
 	"Redirecting you to OpenWebUI Community": "გადამისამართდებით OpenWebUI საზოგადოებაში",
 	"Redirecting you to OpenWebUI Community": "გადამისამართდებით OpenWebUI საზოგადოებაში",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "უარა, როგორც უნდა იყოს",
 	"Refused when it shouldn't have": "უარა, როგორც უნდა იყოს",
 	"Regenerate": "ხელახლა გენერირება",
 	"Regenerate": "ხელახლა გენერირება",
 	"Release Notes": "Გამოშვების შენიშვნები",
 	"Release Notes": "Გამოშვების შენიშვნები",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "ვარდისფერი ფიჭვის ხე",
 	"Rosé Pine": "ვარდისფერი ფიჭვის ხე",
 	"Rosé Pine Dawn": "ვარდისფერი ფიჭვის გარიჟრაჟი",
 	"Rosé Pine Dawn": "ვარდისფერი ფიჭვის გარიჟრაჟი",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "შენახვა",
 	"Save": "შენახვა",
 	"Save & Create": "დამახსოვრება და შექმნა",
 	"Save & Create": "დამახსოვრება და შექმნა",
 	"Save & Update": "დამახსოვრება და განახლება",
 	"Save & Update": "დამახსოვრება და განახლება",
@@ -407,12 +420,14 @@
 	"See what's new": "სიახლეების ნახვა",
 	"See what's new": "სიახლეების ნახვა",
 	"Seed": "სიდი",
 	"Seed": "სიდი",
 	"Select a base model": "აირჩიეთ ბაზის მოდელი",
 	"Select a base model": "აირჩიეთ ბაზის მოდელი",
+	"Select a engine": "",
 	"Select a mode": "რეჟიმის არჩევა",
 	"Select a mode": "რეჟიმის არჩევა",
 	"Select a model": "მოდელის არჩევა",
 	"Select a model": "მოდელის არჩევა",
 	"Select a pipeline": "აირჩიეთ მილსადენი",
 	"Select a pipeline": "აირჩიეთ მილსადენი",
 	"Select a pipeline url": "აირჩიეთ მილსადენის url",
 	"Select a pipeline url": "აირჩიეთ მილსადენის url",
 	"Select an Ollama instance": "Ollama ინსტანსის არჩევა",
 	"Select an Ollama instance": "Ollama ინსტანსის არჩევა",
 	"Select model": "მოდელის არჩევა",
 	"Select model": "მოდელის არჩევა",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "შერჩეული მოდელი (ებ) ი არ უჭერს მხარს გამოსახულების შეყვანას",
 	"Selected model(s) do not support image inputs": "შერჩეული მოდელი (ებ) ი არ უჭერს მხარს გამოსახულების შეყვანას",
 	"Send": "გაგზავნა",
 	"Send": "გაგზავნა",
 	"Send a Message": "შეტყობინების გაგზავნა",
 	"Send a Message": "შეტყობინების გაგზავნა",
@@ -449,7 +464,6 @@
 	"Source": "წყარო",
 	"Source": "წყარო",
 	"Speech recognition error: {{error}}": "მეტყველების ამოცნობის შეცდომა: {{error}}",
 	"Speech recognition error: {{error}}": "მეტყველების ამოცნობის შეცდომა: {{error}}",
 	"Speech-to-Text Engine": "ხმოვან-ტექსტური ძრავი",
 	"Speech-to-Text Engine": "ხმოვან-ტექსტური ძრავი",
-	"SpeechRecognition API is not supported in this browser.": "მეტყველების ამოცნობის API არ არის მხარდაჭერილი ამ ბრაუზერში.",
 	"Stop Sequence": "შეჩერების თანმიმდევრობა",
 	"Stop Sequence": "შეჩერების თანმიმდევრობა",
 	"STT Settings": "მეტყველების ამოცნობის პარამეტრები",
 	"STT Settings": "მეტყველების ამოცნობის პარამეტრები",
 	"Submit": "გაგზავნა",
 	"Submit": "გაგზავნა",
@@ -481,6 +495,7 @@
 	"to": "ში",
 	"to": "ში",
 	"To access the available model names for downloading,": "ჩამოტვირთვისთვის ხელმისაწვდომი მოდელების სახელებზე წვდომისთვის",
 	"To access the available model names for downloading,": "ჩამოტვირთვისთვის ხელმისაწვდომი მოდელების სახელებზე წვდომისთვის",
 	"To access the GGUF models available for downloading,": "ჩასატვირთად ხელმისაწვდომი GGUF მოდელებზე წვდომისთვის",
 	"To access the GGUF models available for downloading,": "ჩასატვირთად ხელმისაწვდომი GGUF მოდელებზე წვდომისთვის",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "ჩატში",
 	"to chat input.": "ჩატში",
 	"Today": "დღეს",
 	"Today": "დღეს",
 	"Toggle settings": "პარამეტრების გადართვა",
 	"Toggle settings": "პარამეტრების გადართვა",
@@ -497,6 +512,7 @@
 	"Update password": "პაროლის განახლება",
 	"Update password": "პაროლის განახლება",
 	"Upload a GGUF model": "GGUF მოდელის ატვირთვა",
 	"Upload a GGUF model": "GGUF მოდელის ატვირთვა",
 	"Upload Files": "ატვირთეთ ფაილები",
 	"Upload Files": "ატვირთეთ ფაილები",
+	"Upload Pipeline": "",
 	"Upload Progress": "პროგრესის ატვირთვა",
 	"Upload Progress": "პროგრესის ატვირთვა",
 	"URL Mode": "URL რეჟიმი",
 	"URL Mode": "URL რეჟიმი",
 	"Use '#' in the prompt input to load and select your documents.": "პრომტში გამოიყენე '#' რომელიც გაიტანს დოკუმენტებს",
 	"Use '#' in the prompt input to load and select your documents.": "პრომტში გამოიყენე '#' რომელიც გაიტანს დოკუმენტებს",
@@ -515,6 +531,7 @@
 	"Warning": "გაფრთხილება",
 	"Warning": "გაფრთხილება",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "გაფრთხილება: თუ განაახლებთ ან შეცვლით ჩანერგვის მოდელს, მოგიწევთ ყველა დოკუმენტის ხელახლა იმპორტი.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "გაფრთხილება: თუ განაახლებთ ან შეცვლით ჩანერგვის მოდელს, მოგიწევთ ყველა დოკუმენტის ხელახლა იმპორტი.",
 	"Web": "ვები",
 	"Web": "ვები",
+	"Web API": "",
 	"Web Loader Settings": "ვების ჩატარების პარამეტრები",
 	"Web Loader Settings": "ვების ჩატარების პარამეტრები",
 	"Web Params": "ვების პარამეტრები",
 	"Web Params": "ვების პარამეტრები",
 	"Web Search": "ვებ ძებნა",
 	"Web Search": "ვებ ძებნა",
@@ -525,18 +542,19 @@
 	"WebUI will make requests to": "WebUI გამოგიგზავნით მოთხოვნებს",
 	"WebUI will make requests to": "WebUI გამოგიგზავნით მოთხოვნებს",
 	"What’s New in": "რა არის ახალი",
 	"What’s New in": "რა არის ახალი",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "როდესაც ისტორია გამორთულია, ახალი ჩეთები ამ ბრაუზერში არ გამოჩნდება თქვენს ისტორიაში არცერთ მოწყობილობაზე.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "როდესაც ისტორია გამორთულია, ახალი ჩეთები ამ ბრაუზერში არ გამოჩნდება თქვენს ისტორიაში არცერთ მოწყობილობაზე.",
-	"Whisper (Local)": "ჩურჩული (ადგილობრივი)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "ვულერი",
 	"Workspace": "ვულერი",
 	"Write a prompt suggestion (e.g. Who are you?)": "დაწერეთ მოკლე წინადადება (მაგ. ვინ ხარ?",
 	"Write a prompt suggestion (e.g. Who are you?)": "დაწერეთ მოკლე წინადადება (მაგ. ვინ ხარ?",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "დაწერეთ რეზიუმე 50 სიტყვით, რომელიც აჯამებს [თემას ან საკვანძო სიტყვას].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "დაწერეთ რეზიუმე 50 სიტყვით, რომელიც აჯამებს [თემას ან საკვანძო სიტყვას].",
 	"Yesterday": "აღდგენა",
 	"Yesterday": "აღდგენა",
 	"You": "ჩემი",
 	"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 clone a base model": "თქვენ არ შეგიძლიათ ბაზის მოდელის კლონირება",
 	"You cannot clone a base model": "თქვენ არ შეგიძლიათ ბაზის მოდელის კლონირება",
 	"You have no archived conversations.": "არ ხართ არქივირებული განხილვები.",
 	"You have no archived conversations.": "არ ხართ არქივირებული განხილვები.",
 	"You have shared this chat": "ამ ჩატის გააგზავნა",
 	"You have shared this chat": "ამ ჩატის გააგზავნა",
 	"You're a helpful assistant.": "თქვენ სასარგებლო ასისტენტი ხართ.",
 	"You're a helpful assistant.": "თქვენ სასარგებლო ასისტენტი ხართ.",
 	"You're now logged in.": "თქვენ შესული ხართ.",
 	"You're now logged in.": "თქვენ შესული ხართ.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube Loader Settings"
 	"Youtube Loader Settings": "Youtube Loader Settings"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "사용자",
 	"a user": "사용자",
 	"About": "소개",
 	"About": "소개",
 	"Account": "계정",
 	"Account": "계정",
+	"Account Activation Pending": "",
 	"Accurate information": "정확한 정보",
 	"Accurate information": "정확한 정보",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "추가",
 	"Add": "추가",
@@ -29,6 +30,7 @@
 	"Add User": "사용자 추가",
 	"Add User": "사용자 추가",
 	"Adjusting these settings will apply changes universally to all users.": "이 설정을 조정하면 모든 사용자에게 적용됩니다.",
 	"Adjusting these settings will apply changes universally to all users.": "이 설정을 조정하면 모든 사용자에게 적용됩니다.",
 	"admin": "관리자",
 	"admin": "관리자",
+	"Admin": "",
 	"Admin Panel": "관리자 패널",
 	"Admin Panel": "관리자 패널",
 	"Admin Settings": "관리자 설정",
 	"Admin Settings": "관리자 설정",
 	"Advanced Parameters": "고급 매개변수",
 	"Advanced Parameters": "고급 매개변수",
@@ -59,7 +61,6 @@
 	"Audio": "오디오",
 	"Audio": "오디오",
 	"August": "8월",
 	"August": "8월",
 	"Auto-playback response": "응답 자동 재생",
 	"Auto-playback response": "응답 자동 재생",
-	"Auto-send input after 3 sec.": "3초 후 입력 자동 전송",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Base URL",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Base URL",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Base URL이 필요합니다.",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Base URL이 필요합니다.",
 	"available!": "사용 가능!",
 	"available!": "사용 가능!",
@@ -71,6 +72,7 @@
 	"Being lazy": "게으름 피우기",
 	"Being lazy": "게으름 피우기",
 	"Brave Search API Key": "Brave Search API 키",
 	"Brave Search API Key": "Brave Search API 키",
 	"Bypass SSL verification for Websites": "SSL 검증을 무시하려면 웹 사이트를 선택하세요.",
 	"Bypass SSL verification for Websites": "SSL 검증을 무시하려면 웹 사이트를 선택하세요.",
+	"Call": "",
 	"Cancel": "취소",
 	"Cancel": "취소",
 	"Capabilities": "기능",
 	"Capabilities": "기능",
 	"Change Password": "비밀번호 변경",
 	"Change Password": "비밀번호 변경",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Chunk Params",
 	"Chunk Params": "Chunk Params",
 	"Chunk Size": "Chunk Size",
 	"Chunk Size": "Chunk Size",
 	"Citation": "인용",
 	"Citation": "인용",
+	"Clear memory": "",
 	"Click here for help.": "도움말을 보려면 여기를 클릭하세요.",
 	"Click here for help.": "도움말을 보려면 여기를 클릭하세요.",
 	"Click here to": "여기를 클릭하면",
 	"Click here to": "여기를 클릭하면",
 	"Click here to select": "선택하려면 여기를 클릭하세요.",
 	"Click here to select": "선택하려면 여기를 클릭하세요.",
 	"Click here to select a csv file.": "csv 파일을 선택하려면 여기를 클릭하세요.",
 	"Click here to select a csv file.": "csv 파일을 선택하려면 여기를 클릭하세요.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "문서를 선택하려면 여기를 클릭하세요.",
 	"Click here to select documents.": "문서를 선택하려면 여기를 클릭하세요.",
 	"click here.": "여기를 클릭하세요.",
 	"click here.": "여기를 클릭하세요.",
 	"Click on the user role button to change a user's role.": "사용자 역할 버튼을 클릭하여 사용자의 역할을 변경하세요.",
 	"Click on the user role button to change a user's role.": "사용자 역할 버튼을 클릭하여 사용자의 역할을 변경하세요.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "동시 요청",
 	"Concurrent Requests": "동시 요청",
 	"Confirm Password": "비밀번호 확인",
 	"Confirm Password": "비밀번호 확인",
 	"Connections": "연결",
 	"Connections": "연결",
+	"Contact Admin for WebUI Access": "",
 	"Content": "내용",
 	"Content": "내용",
 	"Context Length": "내용 길이",
 	"Context Length": "내용 길이",
 	"Continue Response": "대화 계속",
 	"Continue Response": "대화 계속",
-	"Conversation Mode": "대화 모드",
 	"Copied shared chat URL to clipboard!": "공유 채팅 URL이 클립보드에 복사되었습니다!",
 	"Copied shared chat URL to clipboard!": "공유 채팅 URL이 클립보드에 복사되었습니다!",
 	"Copy": "복사",
 	"Copy": "복사",
 	"Copy last code block": "마지막 코드 블록 복사",
 	"Copy last code block": "마지막 코드 블록 복사",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "기본값 (Automatic1111)",
 	"Default (Automatic1111)": "기본값 (Automatic1111)",
 	"Default (SentenceTransformers)": "기본값 (SentenceTransformers)",
 	"Default (SentenceTransformers)": "기본값 (SentenceTransformers)",
 	"Default (Web API)": "기본값 (Web API)",
 	"Default (Web API)": "기본값 (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "기본 모델",
 	"Default Model": "기본 모델",
 	"Default model updated": "기본 모델이 업데이트되었습니다.",
 	"Default model updated": "기본 모델이 업데이트되었습니다.",
 	"Default Prompt Suggestions": "기본 프롬프트 제안",
 	"Default Prompt Suggestions": "기본 프롬프트 제안",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "프롬프트 검색",
 	"Discover a prompt": "프롬프트 검색",
 	"Discover, download, and explore custom prompts": "사용자 정의 프롬프트 검색, 다운로드 및 탐색",
 	"Discover, download, and explore custom prompts": "사용자 정의 프롬프트 검색, 다운로드 및 탐색",
 	"Discover, download, and explore model presets": "모델 사전 설정 검색, 다운로드 및 탐색",
 	"Discover, download, and explore model presets": "모델 사전 설정 검색, 다운로드 및 탐색",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "채팅에서 'You' 대신 사용자 이름 표시",
 	"Display the username instead of You in the Chat": "채팅에서 'You' 대신 사용자 이름 표시",
 	"Document": "문서",
 	"Document": "문서",
 	"Document Settings": "문서 설정",
 	"Document Settings": "문서 설정",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "문서 매핑 내보내기",
 	"Export Documents Mapping": "문서 매핑 내보내기",
 	"Export Models": "모델 내보내기",
 	"Export Models": "모델 내보내기",
 	"Export Prompts": "프롬프트 내보내기",
 	"Export Prompts": "프롬프트 내보내기",
+	"External Models": "",
 	"Failed to create API Key.": "API 키 생성에 실패했습니다.",
 	"Failed to create API Key.": "API 키 생성에 실패했습니다.",
 	"Failed to read clipboard contents": "클립보드 내용을 읽는 데 실패했습니다.",
 	"Failed to read clipboard contents": "클립보드 내용을 읽는 데 실패했습니다.",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "정보",
 	"Info": "정보",
 	"Input commands": "입력 명령",
 	"Input commands": "입력 명령",
 	"Install from Github URL": "Github URL에서 설치",
 	"Install from Github URL": "Github URL에서 설치",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "인터페이스",
 	"Interface": "인터페이스",
 	"Invalid Tag": "잘못된 태그",
 	"Invalid Tag": "잘못된 태그",
 	"January": "1월",
 	"January": "1월",
@@ -267,11 +275,12 @@
 	"Language": "언어",
 	"Language": "언어",
 	"Last Active": "최근 활동",
 	"Last Active": "최근 활동",
 	"Light": "밝음",
 	"Light": "밝음",
-	"Listening...": "청취 중...",
 	"LLMs can make mistakes. Verify important information.": "LLM은 실수를 할 수 있습니다. 중요한 정보를 확인하세요.",
 	"LLMs can make mistakes. Verify important information.": "LLM은 실수를 할 수 있습니다. 중요한 정보를 확인하세요.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "OpenWebUI 커뮤니티에서 제작",
 	"Made by OpenWebUI Community": "OpenWebUI 커뮤니티에서 제작",
 	"Make sure to enclose them with": "다음으로 묶는 것을 잊지 마세요:",
 	"Make sure to enclose them with": "다음으로 묶는 것을 잊지 마세요:",
+	"Manage": "",
 	"Manage Models": "모델 관리",
 	"Manage Models": "모델 관리",
 	"Manage Ollama Models": "Ollama 모델 관리",
 	"Manage Ollama Models": "Ollama 모델 관리",
 	"Manage Pipelines": "파이프라인 관리",
 	"Manage Pipelines": "파이프라인 관리",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "올라마 API",
 	"Ollama API": "올라마 API",
 	"Ollama API disabled": "Ollama API 사용 안 함",
 	"Ollama API disabled": "Ollama API 사용 안 함",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Ollama 버전",
 	"Ollama Version": "Ollama 버전",
 	"On": "켜기",
 	"On": "켜기",
 	"Only": "오직",
 	"Only": "오직",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF 문서 (.pdf)",
 	"PDF document (.pdf)": "PDF 문서 (.pdf)",
 	"PDF Extract Images (OCR)": "PDF에서 이미지 추출 (OCR)",
 	"PDF Extract Images (OCR)": "PDF에서 이미지 추출 (OCR)",
 	"pending": "보류 중",
 	"pending": "보류 중",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "마이크 액세스가 거부되었습니다: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "마이크 액세스가 거부되었습니다: {{error}}",
 	"Personalization": "개인화",
 	"Personalization": "개인화",
 	"Pipelines": "파이프라인",
 	"Pipelines": "파이프라인",
@@ -367,6 +378,7 @@
 	"Read Aloud": "읽어주기",
 	"Read Aloud": "읽어주기",
 	"Record voice": "음성 녹음",
 	"Record voice": "음성 녹음",
 	"Redirecting you to OpenWebUI Community": "OpenWebUI 커뮤니티로 리디렉션하는 중",
 	"Redirecting you to OpenWebUI Community": "OpenWebUI 커뮤니티로 리디렉션하는 중",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "허용되지 않았지만 허용되어야 합니다.",
 	"Refused when it shouldn't have": "허용되지 않았지만 허용되어야 합니다.",
 	"Regenerate": "재생성",
 	"Regenerate": "재생성",
 	"Release Notes": "릴리스 노트",
 	"Release Notes": "릴리스 노트",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "로제 파인",
 	"Rosé Pine": "로제 파인",
 	"Rosé Pine Dawn": "로제 파인 던",
 	"Rosé Pine Dawn": "로제 파인 던",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "저장",
 	"Save": "저장",
 	"Save & Create": "저장 및 생성",
 	"Save & Create": "저장 및 생성",
 	"Save & Update": "저장 및 업데이트",
 	"Save & Update": "저장 및 업데이트",
@@ -406,12 +419,14 @@
 	"See what's new": "새로운 기능 보기",
 	"See what's new": "새로운 기능 보기",
 	"Seed": "시드",
 	"Seed": "시드",
 	"Select a base model": "기본 모델 선택",
 	"Select a base model": "기본 모델 선택",
+	"Select a engine": "",
 	"Select a mode": "모드 선택",
 	"Select a mode": "모드 선택",
 	"Select a model": "모델 선택",
 	"Select a model": "모델 선택",
 	"Select a pipeline": "파이프라인 선택",
 	"Select a pipeline": "파이프라인 선택",
 	"Select a pipeline url": "파이프라인 URL 선택",
 	"Select a pipeline url": "파이프라인 URL 선택",
 	"Select an Ollama instance": "Ollama 인스턴스 선택",
 	"Select an Ollama instance": "Ollama 인스턴스 선택",
 	"Select model": "모델 선택",
 	"Select model": "모델 선택",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "선택한 모델은 이미지 입력을 지원하지 않습니다.",
 	"Selected model(s) do not support image inputs": "선택한 모델은 이미지 입력을 지원하지 않습니다.",
 	"Send": "보내기",
 	"Send": "보내기",
 	"Send a Message": "메시지 보내기",
 	"Send a Message": "메시지 보내기",
@@ -448,7 +463,6 @@
 	"Source": "출처",
 	"Source": "출처",
 	"Speech recognition error: {{error}}": "음성 인식 오류: {{error}}",
 	"Speech recognition error: {{error}}": "음성 인식 오류: {{error}}",
 	"Speech-to-Text Engine": "음성-텍스트 엔진",
 	"Speech-to-Text Engine": "음성-텍스트 엔진",
-	"SpeechRecognition API is not supported in this browser.": "이 브라우저에서는 SpeechRecognition API를 지원하지 않습니다.",
 	"Stop Sequence": "중지 시퀀스",
 	"Stop Sequence": "중지 시퀀스",
 	"STT Settings": "STT 설정",
 	"STT Settings": "STT 설정",
 	"Submit": "제출",
 	"Submit": "제출",
@@ -480,6 +494,7 @@
 	"to": "~까지",
 	"to": "~까지",
 	"To access the available model names for downloading,": "다운로드 가능한 모델명을 확인하려면,",
 	"To access the available model names for downloading,": "다운로드 가능한 모델명을 확인하려면,",
 	"To access the GGUF models available for downloading,": "다운로드 가능한 GGUF 모델을 확인하려면,",
 	"To access the GGUF models available for downloading,": "다운로드 가능한 GGUF 모델을 확인하려면,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "채팅 입력으로.",
 	"to chat input.": "채팅 입력으로.",
 	"Today": "오늘",
 	"Today": "오늘",
 	"Toggle settings": "설정 전환",
 	"Toggle settings": "설정 전환",
@@ -496,6 +511,7 @@
 	"Update password": "비밀번호 업데이트",
 	"Update password": "비밀번호 업데이트",
 	"Upload a GGUF model": "GGUF 모델 업로드",
 	"Upload a GGUF model": "GGUF 모델 업로드",
 	"Upload Files": "파일 업로드",
 	"Upload Files": "파일 업로드",
+	"Upload Pipeline": "",
 	"Upload Progress": "업로드 진행 상황",
 	"Upload Progress": "업로드 진행 상황",
 	"URL Mode": "URL 모드",
 	"URL Mode": "URL 모드",
 	"Use '#' in the prompt input to load and select your documents.": "프롬프트 입력에서 '#'를 사용하여 문서를 로드하고 선택하세요.",
 	"Use '#' in the prompt input to load and select your documents.": "프롬프트 입력에서 '#'를 사용하여 문서를 로드하고 선택하세요.",
@@ -514,6 +530,7 @@
 	"Warning": "경고",
 	"Warning": "경고",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "웹 로더를 업데이트하거나 변경할 경우 모든 문서를 다시 가져와야 합니다.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "웹 로더를 업데이트하거나 변경할 경우 모든 문서를 다시 가져와야 합니다.",
 	"Web": "웹",
 	"Web": "웹",
+	"Web API": "",
 	"Web Loader Settings": "웹 로더 설정",
 	"Web Loader Settings": "웹 로더 설정",
 	"Web Params": "웹 파라미터",
 	"Web Params": "웹 파라미터",
 	"Web Search": "웹 검색",
 	"Web Search": "웹 검색",
@@ -524,18 +541,19 @@
 	"WebUI will make requests to": "WebUI가 요청할 대상:",
 	"WebUI will make requests to": "WebUI가 요청할 대상:",
 	"What’s New in": "새로운 기능:",
 	"What’s New in": "새로운 기능:",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "기록 기능이 꺼져 있으면 이 브라우저의 새 채팅이 다른 장치의 채팅 기록에 나타나지 않습니다.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "기록 기능이 꺼져 있으면 이 브라우저의 새 채팅이 다른 장치의 채팅 기록에 나타나지 않습니다.",
-	"Whisper (Local)": "위스퍼 (Local)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "워크스페이스",
 	"Workspace": "워크스페이스",
 	"Write a prompt suggestion (e.g. Who are you?)": "프롬프트 제안 작성 (예: 당신은 누구인가요?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "프롬프트 제안 작성 (예: 당신은 누구인가요?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "[주제 또는 키워드]에 대한 50단어 요약문 작성.",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "[주제 또는 키워드]에 대한 50단어 요약문 작성.",
 	"Yesterday": "어제",
 	"Yesterday": "어제",
 	"You": "당신",
 	"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 clone a base model": "기본 모델은 복제할 수 없습니다",
 	"You cannot clone a base model": "기본 모델은 복제할 수 없습니다",
 	"You have no archived conversations.": "채팅을 아카이브한 적이 없습니다.",
 	"You have no archived conversations.": "채팅을 아카이브한 적이 없습니다.",
 	"You have shared this chat": "이 채팅을 공유했습니다.",
 	"You have shared this chat": "이 채팅을 공유했습니다.",
 	"You're a helpful assistant.": "당신은 유용한 어시스턴트입니다.",
 	"You're a helpful assistant.": "당신은 유용한 어시스턴트입니다.",
 	"You're now logged in.": "로그인되었습니다.",
 	"You're now logged in.": "로그인되었습니다.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "유튜브",
 	"Youtube": "유튜브",
 	"Youtube Loader Settings": "유튜브 로더 설정"
 	"Youtube Loader Settings": "유튜브 로더 설정"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "naudotojas",
 	"a user": "naudotojas",
 	"About": "Apie",
 	"About": "Apie",
 	"Account": "Paskyra",
 	"Account": "Paskyra",
+	"Account Activation Pending": "",
 	"Accurate information": "Tiksli informacija",
 	"Accurate information": "Tiksli informacija",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "",
 	"Add": "",
@@ -29,6 +30,7 @@
 	"Add User": "Pridėti naudotoją",
 	"Add User": "Pridėti naudotoją",
 	"Adjusting these settings will apply changes universally to all users.": "Šių nustatymų pakeitimas bus pritakytas visiems naudotojams.",
 	"Adjusting these settings will apply changes universally to all users.": "Šių nustatymų pakeitimas bus pritakytas visiems naudotojams.",
 	"admin": "Administratorius",
 	"admin": "Administratorius",
+	"Admin": "",
 	"Admin Panel": "Administratorių panelė",
 	"Admin Panel": "Administratorių panelė",
 	"Admin Settings": "Administratorių nustatymai",
 	"Admin Settings": "Administratorių nustatymai",
 	"Advanced Parameters": "Gilieji nustatymai",
 	"Advanced Parameters": "Gilieji nustatymai",
@@ -59,7 +61,6 @@
 	"Audio": "Audio įrašas",
 	"Audio": "Audio įrašas",
 	"August": "Rugpjūtis",
 	"August": "Rugpjūtis",
 	"Auto-playback response": "Automatinis atsakymo skaitymas",
 	"Auto-playback response": "Automatinis atsakymo skaitymas",
-	"Auto-send input after 3 sec.": "Automatiškai išsiųsti įvestį po 3 sek.",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 bazės nuoroda",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 bazės nuoroda",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 bazės nuoroda reikalinga.",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 bazės nuoroda reikalinga.",
 	"available!": "prieinama!",
 	"available!": "prieinama!",
@@ -71,6 +72,7 @@
 	"Being lazy": "Būvimas tingiu",
 	"Being lazy": "Būvimas tingiu",
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
 	"Bypass SSL verification for Websites": "Išvengti SSL patikros puslapiams",
 	"Bypass SSL verification for Websites": "Išvengti SSL patikros puslapiams",
+	"Call": "",
 	"Cancel": "Atšaukti",
 	"Cancel": "Atšaukti",
 	"Capabilities": "",
 	"Capabilities": "",
 	"Change Password": "Keisti slaptažodį",
 	"Change Password": "Keisti slaptažodį",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Blokų nustatymai",
 	"Chunk Params": "Blokų nustatymai",
 	"Chunk Size": "Blokų dydis",
 	"Chunk Size": "Blokų dydis",
 	"Citation": "Citata",
 	"Citation": "Citata",
+	"Clear memory": "",
 	"Click here for help.": "Paspauskite čia dėl pagalbos.",
 	"Click here for help.": "Paspauskite čia dėl pagalbos.",
 	"Click here to": "Paspauskite čia, kad:",
 	"Click here to": "Paspauskite čia, kad:",
 	"Click here to select": "Spauskite čia norėdami pasirinkti",
 	"Click here to select": "Spauskite čia norėdami pasirinkti",
 	"Click here to select a csv file.": "Spauskite čia tam, kad pasirinkti csv failą",
 	"Click here to select a csv file.": "Spauskite čia tam, kad pasirinkti csv failą",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Spauskite čia norėdami pasirinkti dokumentus.",
 	"Click here to select documents.": "Spauskite čia norėdami pasirinkti dokumentus.",
 	"click here.": "paspauskite čia.",
 	"click here.": "paspauskite čia.",
 	"Click on the user role button to change a user's role.": "Paspauskite ant naudotojo rolės mygtuko tam, kad pakeisti naudotojo rolę.",
 	"Click on the user role button to change a user's role.": "Paspauskite ant naudotojo rolės mygtuko tam, kad pakeisti naudotojo rolę.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "",
 	"Concurrent Requests": "",
 	"Confirm Password": "Patvirtinkite slaptažodį",
 	"Confirm Password": "Patvirtinkite slaptažodį",
 	"Connections": "Ryšiai",
 	"Connections": "Ryšiai",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Turinys",
 	"Content": "Turinys",
 	"Context Length": "Konteksto ilgis",
 	"Context Length": "Konteksto ilgis",
 	"Continue Response": "Tęsti atsakymą",
 	"Continue Response": "Tęsti atsakymą",
-	"Conversation Mode": "Pokalbio metodas",
 	"Copied shared chat URL to clipboard!": "Nukopijavote pokalbio nuorodą",
 	"Copied shared chat URL to clipboard!": "Nukopijavote pokalbio nuorodą",
 	"Copy": "Kopijuoti",
 	"Copy": "Kopijuoti",
 	"Copy last code block": "Kopijuoti paskutinį kodo bloką",
 	"Copy last code block": "Kopijuoti paskutinį kodo bloką",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Numatytasis (Automatic1111)",
 	"Default (Automatic1111)": "Numatytasis (Automatic1111)",
 	"Default (SentenceTransformers)": "Numatytasis (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Numatytasis (SentenceTransformers)",
 	"Default (Web API)": "Numatytasis (API Web)",
 	"Default (Web API)": "Numatytasis (API Web)",
+	"Default (Whisper)": "",
 	"Default Model": "",
 	"Default Model": "",
 	"Default model updated": "Numatytasis modelis atnaujintas",
 	"Default model updated": "Numatytasis modelis atnaujintas",
 	"Default Prompt Suggestions": "Numatytieji užklausų pasiūlymai",
 	"Default Prompt Suggestions": "Numatytieji užklausų pasiūlymai",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Atrasti užklausas",
 	"Discover a prompt": "Atrasti užklausas",
 	"Discover, download, and explore custom prompts": "Atrasti ir parsisiųsti užklausas",
 	"Discover, download, and explore custom prompts": "Atrasti ir parsisiųsti užklausas",
 	"Discover, download, and explore model presets": "Atrasti ir parsisiųsti modelių konfigūracija",
 	"Discover, download, and explore model presets": "Atrasti ir parsisiųsti modelių konfigūracija",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Rodyti naudotojo vardą vietoje žodžio Jūs pokalbyje",
 	"Display the username instead of You in the Chat": "Rodyti naudotojo vardą vietoje žodžio Jūs pokalbyje",
 	"Document": "Dokumentas",
 	"Document": "Dokumentas",
 	"Document Settings": "Dokumento nuostatos",
 	"Document Settings": "Dokumento nuostatos",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Eksportuoti dokumentų žemėlapį",
 	"Export Documents Mapping": "Eksportuoti dokumentų žemėlapį",
 	"Export Models": "",
 	"Export Models": "",
 	"Export Prompts": "Eksportuoti užklausas",
 	"Export Prompts": "Eksportuoti užklausas",
+	"External Models": "",
 	"Failed to create API Key.": "Nepavyko sukurti API rakto",
 	"Failed to create API Key.": "Nepavyko sukurti API rakto",
 	"Failed to read clipboard contents": "Nepavyko perskaityti kopijuoklės",
 	"Failed to read clipboard contents": "Nepavyko perskaityti kopijuoklės",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "",
 	"Info": "",
 	"Input commands": "Įvesties komandos",
 	"Input commands": "Įvesties komandos",
 	"Install from Github URL": "",
 	"Install from Github URL": "",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Sąsaja",
 	"Interface": "Sąsaja",
 	"Invalid Tag": "Neteisinga žyma",
 	"Invalid Tag": "Neteisinga žyma",
 	"January": "Sausis",
 	"January": "Sausis",
@@ -267,11 +275,12 @@
 	"Language": "Kalba",
 	"Language": "Kalba",
 	"Last Active": "Paskutinį kartą aktyvus",
 	"Last Active": "Paskutinį kartą aktyvus",
 	"Light": "Šviesus",
 	"Light": "Šviesus",
-	"Listening...": "Klauso...",
 	"LLMs can make mistakes. Verify important information.": "Dideli kalbos modeliai gali klysti. Patikrinkite atsakymų teisingumą.",
 	"LLMs can make mistakes. Verify important information.": "Dideli kalbos modeliai gali klysti. Patikrinkite atsakymų teisingumą.",
+	"Local Models": "",
 	"LTR": "",
 	"LTR": "",
 	"Made by OpenWebUI Community": "Sukurta OpenWebUI bendruomenės",
 	"Made by OpenWebUI Community": "Sukurta OpenWebUI bendruomenės",
 	"Make sure to enclose them with": "Užtikrinktie, kad įtraukiate viduje:",
 	"Make sure to enclose them with": "Užtikrinktie, kad įtraukiate viduje:",
+	"Manage": "",
 	"Manage Models": "Tvarkyti modelius",
 	"Manage Models": "Tvarkyti modelius",
 	"Manage Ollama Models": "Tvarkyti Ollama modelius",
 	"Manage Ollama Models": "Tvarkyti Ollama modelius",
 	"Manage Pipelines": "",
 	"Manage Pipelines": "",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "",
 	"Ollama API": "",
 	"Ollama API disabled": "",
 	"Ollama API disabled": "",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Ollama versija",
 	"Ollama Version": "Ollama versija",
 	"On": "Aktyvuota",
 	"On": "Aktyvuota",
 	"Only": "Tiktais",
 	"Only": "Tiktais",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF dokumentas (.pdf)",
 	"PDF document (.pdf)": "PDF dokumentas (.pdf)",
 	"PDF Extract Images (OCR)": "PDF paveikslėlių skaitymas (OCR)",
 	"PDF Extract Images (OCR)": "PDF paveikslėlių skaitymas (OCR)",
 	"pending": "laukiama",
 	"pending": "laukiama",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Leidimas naudoti mikrofoną atmestas: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Leidimas naudoti mikrofoną atmestas: {{error}}",
 	"Personalization": "",
 	"Personalization": "",
 	"Pipelines": "",
 	"Pipelines": "",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Skaityti garsiai",
 	"Read Aloud": "Skaityti garsiai",
 	"Record voice": "Įrašyti balsą",
 	"Record voice": "Įrašyti balsą",
 	"Redirecting you to OpenWebUI Community": "Perkeliam Jus į OpenWebUI bendruomenę",
 	"Redirecting you to OpenWebUI Community": "Perkeliam Jus į OpenWebUI bendruomenę",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Atmesta kai neturėtų būti atmesta",
 	"Refused when it shouldn't have": "Atmesta kai neturėtų būti atmesta",
 	"Regenerate": "Generuoti iš naujo",
 	"Regenerate": "Generuoti iš naujo",
 	"Release Notes": "Naujovės",
 	"Release Notes": "Naujovės",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "",
 	"RTL": "",
+	"Running": "",
 	"Save": "Išsaugoti",
 	"Save": "Išsaugoti",
 	"Save & Create": "Išsaugoti ir sukurti",
 	"Save & Create": "Išsaugoti ir sukurti",
 	"Save & Update": "Išsaugoti ir atnaujinti",
 	"Save & Update": "Išsaugoti ir atnaujinti",
@@ -409,12 +422,14 @@
 	"See what's new": "Žiūrėti naujoves",
 	"See what's new": "Žiūrėti naujoves",
 	"Seed": "Sėkla",
 	"Seed": "Sėkla",
 	"Select a base model": "",
 	"Select a base model": "",
+	"Select a engine": "",
 	"Select a mode": "Pasirinkti režimą",
 	"Select a mode": "Pasirinkti režimą",
 	"Select a model": "Pasirinkti modelį",
 	"Select a model": "Pasirinkti modelį",
 	"Select a pipeline": "",
 	"Select a pipeline": "",
 	"Select a pipeline url": "",
 	"Select a pipeline url": "",
 	"Select an Ollama instance": "Pasirinkti Ollama instanciją",
 	"Select an Ollama instance": "Pasirinkti Ollama instanciją",
 	"Select model": "Pasirinkti modelį",
 	"Select model": "Pasirinkti modelį",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "",
 	"Selected model(s) do not support image inputs": "",
 	"Send": "",
 	"Send": "",
 	"Send a Message": "Siųsti žinutę",
 	"Send a Message": "Siųsti žinutę",
@@ -451,7 +466,6 @@
 	"Source": "Šaltinis",
 	"Source": "Šaltinis",
 	"Speech recognition error: {{error}}": "Balso atpažinimo problema: {{error}}",
 	"Speech recognition error: {{error}}": "Balso atpažinimo problema: {{error}}",
 	"Speech-to-Text Engine": "Balso atpažinimo modelis",
 	"Speech-to-Text Engine": "Balso atpažinimo modelis",
-	"SpeechRecognition API is not supported in this browser.": "Šioje naršyklėje negalimas balso atpažinimas.",
 	"Stop Sequence": "Baigt sekvenciją",
 	"Stop Sequence": "Baigt sekvenciją",
 	"STT Settings": "STT nustatymai",
 	"STT Settings": "STT nustatymai",
 	"Submit": "Pateikti",
 	"Submit": "Pateikti",
@@ -483,6 +497,7 @@
 	"to": "kam",
 	"to": "kam",
 	"To access the available model names for downloading,": "Tam, kad prieiti prie galimų parsisiųsti modelių",
 	"To access the available model names for downloading,": "Tam, kad prieiti prie galimų parsisiųsti modelių",
 	"To access the GGUF models available for downloading,": "Tam, kad prieiti prie galimų parsisiųsti GGUF,",
 	"To access the GGUF models available for downloading,": "Tam, kad prieiti prie galimų parsisiųsti GGUF,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "į pokalbio įvestį",
 	"to chat input.": "į pokalbio įvestį",
 	"Today": "Šiandien",
 	"Today": "Šiandien",
 	"Toggle settings": "Atverti/užverti parametrus",
 	"Toggle settings": "Atverti/užverti parametrus",
@@ -499,6 +514,7 @@
 	"Update password": "Atnaujinti slaptažodį",
 	"Update password": "Atnaujinti slaptažodį",
 	"Upload a GGUF model": "Parsisiųsti GGUF modelį",
 	"Upload a GGUF model": "Parsisiųsti GGUF modelį",
 	"Upload Files": "",
 	"Upload Files": "",
+	"Upload Pipeline": "",
 	"Upload Progress": "Įkėlimo progresas",
 	"Upload Progress": "Įkėlimo progresas",
 	"URL Mode": "URL režimas",
 	"URL Mode": "URL režimas",
 	"Use '#' in the prompt input to load and select your documents.": "Naudokite '#' norėdami naudoti dokumentą.",
 	"Use '#' in the prompt input to load and select your documents.": "Naudokite '#' norėdami naudoti dokumentą.",
@@ -517,6 +533,7 @@
 	"Warning": "",
 	"Warning": "",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Jei pakeisite embedding modelį, turėsite reimportuoti visus dokumentus",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Jei pakeisite embedding modelį, turėsite reimportuoti visus dokumentus",
 	"Web": "Web",
 	"Web": "Web",
+	"Web API": "",
 	"Web Loader Settings": "Web krovimo nustatymai",
 	"Web Loader Settings": "Web krovimo nustatymai",
 	"Web Params": "Web nustatymai",
 	"Web Params": "Web nustatymai",
 	"Web Search": "",
 	"Web Search": "",
@@ -527,18 +544,19 @@
 	"WebUI will make requests to": "WebUI vykdys užklausas",
 	"WebUI will make requests to": "WebUI vykdys užklausas",
 	"What’s New in": "Kas naujo",
 	"What’s New in": "Kas naujo",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Kai istorija išjungta, pokalbiai neatsiras jūsų istorijoje.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Kai istorija išjungta, pokalbiai neatsiras jūsų istorijoje.",
-	"Whisper (Local)": "Whisper (lokalus)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "",
 	"Workspace": "",
 	"Write a prompt suggestion (e.g. Who are you?)": "Parašykite užklausą",
 	"Write a prompt suggestion (e.g. Who are you?)": "Parašykite užklausą",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Parašyk santrumpą trumpesnę nei 50 žodžių šiam tekstui: [tekstas]",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Parašyk santrumpą trumpesnę nei 50 žodžių šiam tekstui: [tekstas]",
 	"Yesterday": "Vakar",
 	"Yesterday": "Vakar",
 	"You": "Jūs",
 	"You": "Jūs",
+	"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 clone a base model": "",
 	"You cannot clone a base model": "",
 	"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",
 	"You're a helpful assistant.": "Esi asistentas.",
 	"You're a helpful assistant.": "Esi asistentas.",
 	"You're now logged in.": "Esate prisijungę.",
 	"You're now logged in.": "Esate prisijungę.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube krovimo nustatymai"
 	"Youtube Loader Settings": "Youtube krovimo nustatymai"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "en bruker",
 	"a user": "en bruker",
 	"About": "Om",
 	"About": "Om",
 	"Account": "Konto",
 	"Account": "Konto",
+	"Account Activation Pending": "",
 	"Accurate information": "Nøyaktig informasjon",
 	"Accurate information": "Nøyaktig informasjon",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Legg til",
 	"Add": "Legg til",
@@ -29,6 +30,7 @@
 	"Add User": "Legg til bruker",
 	"Add User": "Legg til bruker",
 	"Adjusting these settings will apply changes universally to all users.": "Justering av disse innstillingene vil gjelde universelt for alle brukere.",
 	"Adjusting these settings will apply changes universally to all users.": "Justering av disse innstillingene vil gjelde universelt for alle brukere.",
 	"admin": "administrator",
 	"admin": "administrator",
+	"Admin": "",
 	"Admin Panel": "Administrasjonspanel",
 	"Admin Panel": "Administrasjonspanel",
 	"Admin Settings": "Administrasjonsinnstillinger",
 	"Admin Settings": "Administrasjonsinnstillinger",
 	"Advanced Parameters": "Avanserte parametere",
 	"Advanced Parameters": "Avanserte parametere",
@@ -59,7 +61,6 @@
 	"Audio": "Lyd",
 	"Audio": "Lyd",
 	"August": "August",
 	"August": "August",
 	"Auto-playback response": "Automatisk avspilling av svar",
 	"Auto-playback response": "Automatisk avspilling av svar",
-	"Auto-send input after 3 sec.": "Send automatisk input etter 3 sek.",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Grunn-URL",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Grunn-URL",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Grunn-URL kreves.",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Grunn-URL kreves.",
 	"available!": "tilgjengelig!",
 	"available!": "tilgjengelig!",
@@ -71,6 +72,7 @@
 	"Being lazy": "Er lat",
 	"Being lazy": "Er lat",
 	"Brave Search API Key": "Brave Search API-nøkkel",
 	"Brave Search API Key": "Brave Search API-nøkkel",
 	"Bypass SSL verification for Websites": "Omgå SSL-verifisering for nettsteder",
 	"Bypass SSL verification for Websites": "Omgå SSL-verifisering for nettsteder",
+	"Call": "",
 	"Cancel": "Avbryt",
 	"Cancel": "Avbryt",
 	"Capabilities": "Muligheter",
 	"Capabilities": "Muligheter",
 	"Change Password": "Endre passord",
 	"Change Password": "Endre passord",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Chunk-parametere",
 	"Chunk Params": "Chunk-parametere",
 	"Chunk Size": "Chunk-størrelse",
 	"Chunk Size": "Chunk-størrelse",
 	"Citation": "Sitering",
 	"Citation": "Sitering",
+	"Clear memory": "",
 	"Click here for help.": "Klikk her for hjelp.",
 	"Click here for help.": "Klikk her for hjelp.",
 	"Click here to": "Klikk her for å",
 	"Click here to": "Klikk her for å",
 	"Click here to select": "Klikk her for å velge",
 	"Click here to select": "Klikk her for å velge",
 	"Click here to select a csv file.": "Klikk her for å velge en csv-fil.",
 	"Click here to select a csv file.": "Klikk her for å velge en csv-fil.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Klikk her for å velge dokumenter.",
 	"Click here to select documents.": "Klikk her for å velge dokumenter.",
 	"click here.": "klikk her.",
 	"click here.": "klikk her.",
 	"Click on the user role button to change a user's role.": "Klikk på brukerrolle-knappen for å endre en brukers rolle.",
 	"Click on the user role button to change a user's role.": "Klikk på brukerrolle-knappen for å endre en brukers rolle.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Samtidige forespørsler",
 	"Concurrent Requests": "Samtidige forespørsler",
 	"Confirm Password": "Bekreft passord",
 	"Confirm Password": "Bekreft passord",
 	"Connections": "Tilkoblinger",
 	"Connections": "Tilkoblinger",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Innhold",
 	"Content": "Innhold",
 	"Context Length": "Kontekstlengde",
 	"Context Length": "Kontekstlengde",
 	"Continue Response": "Fortsett svar",
 	"Continue Response": "Fortsett svar",
-	"Conversation Mode": "Samtalemodus",
 	"Copied shared chat URL to clipboard!": "Kopiert delt chat-URL til utklippstavlen!",
 	"Copied shared chat URL to clipboard!": "Kopiert delt chat-URL til utklippstavlen!",
 	"Copy": "Kopier",
 	"Copy": "Kopier",
 	"Copy last code block": "Kopier siste kodeblokk",
 	"Copy last code block": "Kopier siste kodeblokk",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Standard (Automatic1111)",
 	"Default (Automatic1111)": "Standard (Automatic1111)",
 	"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
 	"Default (Web API)": "Standard (Web API)",
 	"Default (Web API)": "Standard (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "Standardmodell",
 	"Default Model": "Standardmodell",
 	"Default model updated": "Standardmodell oppdatert",
 	"Default model updated": "Standardmodell oppdatert",
 	"Default Prompt Suggestions": "Standard promptforslag",
 	"Default Prompt Suggestions": "Standard promptforslag",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Oppdag en prompt",
 	"Discover a prompt": "Oppdag en prompt",
 	"Discover, download, and explore custom prompts": "Oppdag, last ned og utforsk egendefinerte prompts",
 	"Discover, download, and explore custom prompts": "Oppdag, last ned og utforsk egendefinerte prompts",
 	"Discover, download, and explore model presets": "Oppdag, last ned og utforsk modellforhåndsinnstillinger",
 	"Discover, download, and explore model presets": "Oppdag, last ned og utforsk modellforhåndsinnstillinger",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Vis brukernavnet i stedet for Du i chatten",
 	"Display the username instead of You in the Chat": "Vis brukernavnet i stedet for Du i chatten",
 	"Document": "Dokument",
 	"Document": "Dokument",
 	"Document Settings": "Dokumentinnstillinger",
 	"Document Settings": "Dokumentinnstillinger",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Eksporter dokumentkartlegging",
 	"Export Documents Mapping": "Eksporter dokumentkartlegging",
 	"Export Models": "Eksporter modeller",
 	"Export Models": "Eksporter modeller",
 	"Export Prompts": "Eksporter prompts",
 	"Export Prompts": "Eksporter prompts",
+	"External Models": "",
 	"Failed to create API Key.": "Kunne ikke opprette API-nøkkel.",
 	"Failed to create API Key.": "Kunne ikke opprette API-nøkkel.",
 	"Failed to read clipboard contents": "Kunne ikke lese utklippstavleinnhold",
 	"Failed to read clipboard contents": "Kunne ikke lese utklippstavleinnhold",
 	"Failed to update settings": "Kunne ikke oppdatere innstillinger",
 	"Failed to update settings": "Kunne ikke oppdatere innstillinger",
@@ -252,6 +259,7 @@
 	"Info": "Info",
 	"Info": "Info",
 	"Input commands": "Inntast kommandoer",
 	"Input commands": "Inntast kommandoer",
 	"Install from Github URL": "Installer fra Github-URL",
 	"Install from Github URL": "Installer fra Github-URL",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Grensesnitt",
 	"Interface": "Grensesnitt",
 	"Invalid Tag": "Ugyldig tag",
 	"Invalid Tag": "Ugyldig tag",
 	"January": "Januar",
 	"January": "Januar",
@@ -267,11 +275,12 @@
 	"Language": "Språk",
 	"Language": "Språk",
 	"Last Active": "Sist aktiv",
 	"Last Active": "Sist aktiv",
 	"Light": "Lys",
 	"Light": "Lys",
-	"Listening...": "Lytter...",
 	"LLMs can make mistakes. Verify important information.": "LLM-er kan gjøre feil. Verifiser viktig informasjon.",
 	"LLMs can make mistakes. Verify important information.": "LLM-er kan gjøre feil. Verifiser viktig informasjon.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Laget av OpenWebUI-fellesskapet",
 	"Made by OpenWebUI Community": "Laget av OpenWebUI-fellesskapet",
 	"Make sure to enclose them with": "Sørg for å omslutte dem med",
 	"Make sure to enclose them with": "Sørg for å omslutte dem med",
+	"Manage": "",
 	"Manage Models": "Administrer modeller",
 	"Manage Models": "Administrer modeller",
 	"Manage Ollama Models": "Administrer Ollama-modeller",
 	"Manage Ollama Models": "Administrer Ollama-modeller",
 	"Manage Pipelines": "Administrer pipelines",
 	"Manage Pipelines": "Administrer pipelines",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "Ollama API deaktivert",
 	"Ollama API disabled": "Ollama API deaktivert",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Ollama versjon",
 	"Ollama Version": "Ollama versjon",
 	"On": "På",
 	"On": "På",
 	"Only": "Kun",
 	"Only": "Kun",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF-dokument (.pdf)",
 	"PDF document (.pdf)": "PDF-dokument (.pdf)",
 	"PDF Extract Images (OCR)": "PDF-ekstraktbilder (OCR)",
 	"PDF Extract Images (OCR)": "PDF-ekstraktbilder (OCR)",
 	"pending": "avventer",
 	"pending": "avventer",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Tillatelse nektet ved tilgang til mikrofon: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Tillatelse nektet ved tilgang til mikrofon: {{error}}",
 	"Personalization": "Personalisering",
 	"Personalization": "Personalisering",
 	"Pipelines": "Pipelines",
 	"Pipelines": "Pipelines",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Les høyt",
 	"Read Aloud": "Les høyt",
 	"Record voice": "Ta opp stemme",
 	"Record voice": "Ta opp stemme",
 	"Redirecting you to OpenWebUI Community": "Omdirigerer deg til OpenWebUI-fellesskapet",
 	"Redirecting you to OpenWebUI Community": "Omdirigerer deg til OpenWebUI-fellesskapet",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Avvist når det ikke skulle ha vært det",
 	"Refused when it shouldn't have": "Avvist når det ikke skulle ha vært det",
 	"Regenerate": "Regenerer",
 	"Regenerate": "Regenerer",
 	"Release Notes": "Utgivelsesnotater",
 	"Release Notes": "Utgivelsesnotater",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "Lagre",
 	"Save": "Lagre",
 	"Save & Create": "Lagre og opprett",
 	"Save & Create": "Lagre og opprett",
 	"Save & Update": "Lagre og oppdater",
 	"Save & Update": "Lagre og oppdater",
@@ -407,12 +420,14 @@
 	"See what's new": "Se hva som er nytt",
 	"See what's new": "Se hva som er nytt",
 	"Seed": "Seed",
 	"Seed": "Seed",
 	"Select a base model": "Velg en grunnmodell",
 	"Select a base model": "Velg en grunnmodell",
+	"Select a engine": "",
 	"Select a mode": "Velg en modus",
 	"Select a mode": "Velg en modus",
 	"Select a model": "Velg en modell",
 	"Select a model": "Velg en modell",
 	"Select a pipeline": "Velg en pipeline",
 	"Select a pipeline": "Velg en pipeline",
 	"Select a pipeline url": "Velg en pipeline-URL",
 	"Select a pipeline url": "Velg en pipeline-URL",
 	"Select an Ollama instance": "Velg en Ollama-instans",
 	"Select an Ollama instance": "Velg en Ollama-instans",
 	"Select model": "Velg modell",
 	"Select model": "Velg modell",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "Valgte modell(er) støtter ikke bildeforslag",
 	"Selected model(s) do not support image inputs": "Valgte modell(er) støtter ikke bildeforslag",
 	"Send": "Send",
 	"Send": "Send",
 	"Send a Message": "Send en melding",
 	"Send a Message": "Send en melding",
@@ -449,7 +464,6 @@
 	"Source": "Kilde",
 	"Source": "Kilde",
 	"Speech recognition error: {{error}}": "Feil ved talegjenkjenning: {{error}}",
 	"Speech recognition error: {{error}}": "Feil ved talegjenkjenning: {{error}}",
 	"Speech-to-Text Engine": "Tale-til-tekst-motor",
 	"Speech-to-Text Engine": "Tale-til-tekst-motor",
-	"SpeechRecognition API is not supported in this browser.": "SpeechRecognition API støttes ikke i denne nettleseren.",
 	"Stop Sequence": "Stoppsekvens",
 	"Stop Sequence": "Stoppsekvens",
 	"STT Settings": "STT-innstillinger",
 	"STT Settings": "STT-innstillinger",
 	"Submit": "Send inn",
 	"Submit": "Send inn",
@@ -481,6 +495,7 @@
 	"to": "til",
 	"to": "til",
 	"To access the available model names for downloading,": "For å få tilgang til tilgjengelige modelnavn for nedlasting,",
 	"To access the available model names for downloading,": "For å få tilgang til tilgjengelige modelnavn for nedlasting,",
 	"To access the GGUF models available for downloading,": "For å få tilgang til GGUF-modellene som er tilgjengelige for nedlasting,",
 	"To access the GGUF models available for downloading,": "For å få tilgang til GGUF-modellene som er tilgjengelige for nedlasting,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "til chatinput.",
 	"to chat input.": "til chatinput.",
 	"Today": "I dag",
 	"Today": "I dag",
 	"Toggle settings": "Veksle innstillinger",
 	"Toggle settings": "Veksle innstillinger",
@@ -497,6 +512,7 @@
 	"Update password": "Oppdater passord",
 	"Update password": "Oppdater passord",
 	"Upload a GGUF model": "Last opp en GGUF-modell",
 	"Upload a GGUF model": "Last opp en GGUF-modell",
 	"Upload Files": "Last opp filer",
 	"Upload Files": "Last opp filer",
+	"Upload Pipeline": "",
 	"Upload Progress": "Opplastingsfremdrift",
 	"Upload Progress": "Opplastingsfremdrift",
 	"URL Mode": "URL-modus",
 	"URL Mode": "URL-modus",
 	"Use '#' in the prompt input to load and select your documents.": "Bruk '#' i prompt-input for å laste og velge dokumentene dine.",
 	"Use '#' in the prompt input to load and select your documents.": "Bruk '#' i prompt-input for å laste og velge dokumentene dine.",
@@ -515,6 +531,7 @@
 	"Warning": "Advarsel",
 	"Warning": "Advarsel",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Advarsel: Hvis du oppdaterer eller endrer embedding-modellen din, må du re-importere alle dokumenter.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Advarsel: Hvis du oppdaterer eller endrer embedding-modellen din, må du re-importere alle dokumenter.",
 	"Web": "Web",
 	"Web": "Web",
+	"Web API": "",
 	"Web Loader Settings": "Web-lasterinnstillinger",
 	"Web Loader Settings": "Web-lasterinnstillinger",
 	"Web Params": "Web-parametere",
 	"Web Params": "Web-parametere",
 	"Web Search": "Websøk",
 	"Web Search": "Websøk",
@@ -525,18 +542,19 @@
 	"WebUI will make requests to": "WebUI vil gjøre forespørsler til",
 	"WebUI will make requests to": "WebUI vil gjøre forespørsler til",
 	"What’s New in": "Hva er nytt i",
 	"What’s New in": "Hva er nytt i",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Når historikken er slått av, vil nye chatter på denne nettleseren ikke vises i historikken din på noen av enhetene dine.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Når historikken er slått av, vil nye chatter på denne nettleseren ikke vises i historikken din på noen av enhetene dine.",
-	"Whisper (Local)": "Whisper (lokal)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "Arbeidsområde",
 	"Workspace": "Arbeidsområde",
 	"Write a prompt suggestion (e.g. Who are you?)": "Skriv et promptforslag (f.eks. Hvem er du?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Skriv et promptforslag (f.eks. Hvem er du?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Skriv et sammendrag på 50 ord som oppsummerer [emne eller nøkkelord].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Skriv et sammendrag på 50 ord som oppsummerer [emne eller nøkkelord].",
 	"Yesterday": "I går",
 	"Yesterday": "I går",
 	"You": "Du",
 	"You": "Du",
+	"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 clone a base model": "Du kan ikke klone en grunnmodell",
 	"You cannot clone a base model": "Du kan ikke klone en grunnmodell",
 	"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",
 	"You're a helpful assistant.": "Du er en hjelpsom assistent.",
 	"You're a helpful assistant.": "Du er en hjelpsom assistent.",
 	"You're now logged in.": "Du er nå logget inn.",
 	"You're now logged in.": "Du er nå logget inn.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube-lasterinnstillinger"
 	"Youtube Loader Settings": "Youtube-lasterinnstillinger"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "een gebruiker",
 	"a user": "een gebruiker",
 	"About": "Over",
 	"About": "Over",
 	"Account": "Account",
 	"Account": "Account",
+	"Account Activation Pending": "",
 	"Accurate information": "Accurate informatie",
 	"Accurate information": "Accurate informatie",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Toevoegen",
 	"Add": "Toevoegen",
@@ -29,6 +30,7 @@
 	"Add User": "Voeg Gebruiker toe",
 	"Add User": "Voeg Gebruiker toe",
 	"Adjusting these settings will apply changes universally to all users.": "Het aanpassen van deze instellingen zal universeel worden toegepast op alle gebruikers.",
 	"Adjusting these settings will apply changes universally to all users.": "Het aanpassen van deze instellingen zal universeel worden toegepast op alle gebruikers.",
 	"admin": "admin",
 	"admin": "admin",
+	"Admin": "",
 	"Admin Panel": "Administratieve Paneel",
 	"Admin Panel": "Administratieve Paneel",
 	"Admin Settings": "Administratieve Settings",
 	"Admin Settings": "Administratieve Settings",
 	"Advanced Parameters": "Geavanceerde Parameters",
 	"Advanced Parameters": "Geavanceerde Parameters",
@@ -59,7 +61,6 @@
 	"Audio": "Audio",
 	"Audio": "Audio",
 	"August": "Augustus",
 	"August": "Augustus",
 	"Auto-playback response": "Automatisch afspelen van antwoord",
 	"Auto-playback response": "Automatisch afspelen van antwoord",
-	"Auto-send input after 3 sec.": "Automatisch verzenden van input na 3 sec.",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Base URL",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Base URL",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Basis URL is verplicht",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Basis URL is verplicht",
 	"available!": "beschikbaar!",
 	"available!": "beschikbaar!",
@@ -71,6 +72,7 @@
 	"Being lazy": "Lustig zijn",
 	"Being lazy": "Lustig zijn",
 	"Brave Search API Key": "Brave Search API-sleutel",
 	"Brave Search API Key": "Brave Search API-sleutel",
 	"Bypass SSL verification for Websites": "SSL-verificatie omzeilen voor websites",
 	"Bypass SSL verification for Websites": "SSL-verificatie omzeilen voor websites",
+	"Call": "",
 	"Cancel": "Annuleren",
 	"Cancel": "Annuleren",
 	"Capabilities": "Mogelijkheden",
 	"Capabilities": "Mogelijkheden",
 	"Change Password": "Wijzig Wachtwoord",
 	"Change Password": "Wijzig Wachtwoord",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Chunk Params",
 	"Chunk Params": "Chunk Params",
 	"Chunk Size": "Chunk Grootte",
 	"Chunk Size": "Chunk Grootte",
 	"Citation": "Citaat",
 	"Citation": "Citaat",
+	"Clear memory": "",
 	"Click here for help.": "Klik hier voor hulp.",
 	"Click here for help.": "Klik hier voor hulp.",
 	"Click here to": "Klik hier om",
 	"Click here to": "Klik hier om",
 	"Click here to select": "Klik hier om te selecteren",
 	"Click here to select": "Klik hier om te selecteren",
 	"Click here to select a csv file.": "Klik hier om een csv file te selecteren.",
 	"Click here to select a csv file.": "Klik hier om een csv file te selecteren.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Klik hier om documenten te selecteren",
 	"Click here to select documents.": "Klik hier om documenten te selecteren",
 	"click here.": "klik hier.",
 	"click here.": "klik hier.",
 	"Click on the user role button to change a user's role.": "Klik op de gebruikersrol knop om de rol van een gebruiker te wijzigen.",
 	"Click on the user role button to change a user's role.": "Klik op de gebruikersrol knop om de rol van een gebruiker te wijzigen.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Gelijktijdige verzoeken",
 	"Concurrent Requests": "Gelijktijdige verzoeken",
 	"Confirm Password": "Bevestig Wachtwoord",
 	"Confirm Password": "Bevestig Wachtwoord",
 	"Connections": "Verbindingen",
 	"Connections": "Verbindingen",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Inhoud",
 	"Content": "Inhoud",
 	"Context Length": "Context Lengte",
 	"Context Length": "Context Lengte",
 	"Continue Response": "Doorgaan met Antwoord",
 	"Continue Response": "Doorgaan met Antwoord",
-	"Conversation Mode": "Gespreksmodus",
 	"Copied shared chat URL to clipboard!": "URL van gedeelde gesprekspagina gekopieerd naar klembord!",
 	"Copied shared chat URL to clipboard!": "URL van gedeelde gesprekspagina gekopieerd naar klembord!",
 	"Copy": "Kopieer",
 	"Copy": "Kopieer",
 	"Copy last code block": "Kopieer laatste code blok",
 	"Copy last code block": "Kopieer laatste code blok",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Standaard (Automatic1111)",
 	"Default (Automatic1111)": "Standaard (Automatic1111)",
 	"Default (SentenceTransformers)": "Standaard (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Standaard (SentenceTransformers)",
 	"Default (Web API)": "Standaard (Web API)",
 	"Default (Web API)": "Standaard (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "Standaard model",
 	"Default Model": "Standaard model",
 	"Default model updated": "Standaard model bijgewerkt",
 	"Default model updated": "Standaard model bijgewerkt",
 	"Default Prompt Suggestions": "Standaard Prompt Suggesties",
 	"Default Prompt Suggestions": "Standaard Prompt Suggesties",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Ontdek een prompt",
 	"Discover a prompt": "Ontdek een prompt",
 	"Discover, download, and explore custom prompts": "Ontdek, download en verken aangepaste prompts",
 	"Discover, download, and explore custom prompts": "Ontdek, download en verken aangepaste prompts",
 	"Discover, download, and explore model presets": "Ontdek, download en verken model presets",
 	"Discover, download, and explore model presets": "Ontdek, download en verken model presets",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Toon de gebruikersnaam in plaats van Jij in de Chat",
 	"Display the username instead of You in the Chat": "Toon de gebruikersnaam in plaats van Jij in de Chat",
 	"Document": "Document",
 	"Document": "Document",
 	"Document Settings": "Document Instellingen",
 	"Document Settings": "Document Instellingen",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Exporteer Documenten Mapping",
 	"Export Documents Mapping": "Exporteer Documenten Mapping",
 	"Export Models": "Modellen exporteren",
 	"Export Models": "Modellen exporteren",
 	"Export Prompts": "Exporteer Prompts",
 	"Export Prompts": "Exporteer Prompts",
+	"External Models": "",
 	"Failed to create API Key.": "Kan API Key niet aanmaken.",
 	"Failed to create API Key.": "Kan API Key niet aanmaken.",
 	"Failed to read clipboard contents": "Kan klembord inhoud niet lezen",
 	"Failed to read clipboard contents": "Kan klembord inhoud niet lezen",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "Info",
 	"Info": "Info",
 	"Input commands": "Voer commando's in",
 	"Input commands": "Voer commando's in",
 	"Install from Github URL": "Installeren vanaf Github-URL",
 	"Install from Github URL": "Installeren vanaf Github-URL",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Interface",
 	"Interface": "Interface",
 	"Invalid Tag": "Ongeldige Tag",
 	"Invalid Tag": "Ongeldige Tag",
 	"January": "Januari",
 	"January": "Januari",
@@ -267,11 +275,12 @@
 	"Language": "Taal",
 	"Language": "Taal",
 	"Last Active": "Laatst Actief",
 	"Last Active": "Laatst Actief",
 	"Light": "Licht",
 	"Light": "Licht",
-	"Listening...": "Luisteren...",
 	"LLMs can make mistakes. Verify important information.": "LLMs kunnen fouten maken. Verifieer belangrijke informatie.",
 	"LLMs can make mistakes. Verify important information.": "LLMs kunnen fouten maken. Verifieer belangrijke informatie.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Gemaakt door OpenWebUI Community",
 	"Made by OpenWebUI Community": "Gemaakt door OpenWebUI Community",
 	"Make sure to enclose them with": "Zorg ervoor dat je ze omringt met",
 	"Make sure to enclose them with": "Zorg ervoor dat je ze omringt met",
+	"Manage": "",
 	"Manage Models": "Beheer Modellen",
 	"Manage Models": "Beheer Modellen",
 	"Manage Ollama Models": "Beheer Ollama Modellen",
 	"Manage Ollama Models": "Beheer Ollama Modellen",
 	"Manage Pipelines": "Pijplijnen beheren",
 	"Manage Pipelines": "Pijplijnen beheren",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "Ollama API uitgeschakeld",
 	"Ollama API disabled": "Ollama API uitgeschakeld",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Ollama Versie",
 	"Ollama Version": "Ollama Versie",
 	"On": "Aan",
 	"On": "Aan",
 	"Only": "Alleen",
 	"Only": "Alleen",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF document (.pdf)",
 	"PDF document (.pdf)": "PDF document (.pdf)",
 	"PDF Extract Images (OCR)": "PDF Extract Afbeeldingen (OCR)",
 	"PDF Extract Images (OCR)": "PDF Extract Afbeeldingen (OCR)",
 	"pending": "wachtend",
 	"pending": "wachtend",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Toestemming geweigerd bij toegang tot microfoon: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Toestemming geweigerd bij toegang tot microfoon: {{error}}",
 	"Personalization": "Personalisatie",
 	"Personalization": "Personalisatie",
 	"Pipelines": "Pijpleidingen",
 	"Pipelines": "Pijpleidingen",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Voorlezen",
 	"Read Aloud": "Voorlezen",
 	"Record voice": "Neem stem op",
 	"Record voice": "Neem stem op",
 	"Redirecting you to OpenWebUI Community": "Je wordt doorgestuurd naar OpenWebUI Community",
 	"Redirecting you to OpenWebUI Community": "Je wordt doorgestuurd naar OpenWebUI Community",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Geweigerd terwijl het niet had moeten",
 	"Refused when it shouldn't have": "Geweigerd terwijl het niet had moeten",
 	"Regenerate": "Regenereren",
 	"Regenerate": "Regenereren",
 	"Release Notes": "Release Notes",
 	"Release Notes": "Release Notes",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "Opslaan",
 	"Save": "Opslaan",
 	"Save & Create": "Opslaan & Creëren",
 	"Save & Create": "Opslaan & Creëren",
 	"Save & Update": "Opslaan & Bijwerken",
 	"Save & Update": "Opslaan & Bijwerken",
@@ -407,12 +420,14 @@
 	"See what's new": "Zie wat er nieuw is",
 	"See what's new": "Zie wat er nieuw is",
 	"Seed": "Seed",
 	"Seed": "Seed",
 	"Select a base model": "Selecteer een basismodel",
 	"Select a base model": "Selecteer een basismodel",
+	"Select a engine": "",
 	"Select a mode": "Selecteer een modus",
 	"Select a mode": "Selecteer een modus",
 	"Select a model": "Selecteer een model",
 	"Select a model": "Selecteer een model",
 	"Select a pipeline": "Selecteer een pijplijn",
 	"Select a pipeline": "Selecteer een pijplijn",
 	"Select a pipeline url": "Selecteer een pijplijn-URL",
 	"Select a pipeline url": "Selecteer een pijplijn-URL",
 	"Select an Ollama instance": "Selecteer een Ollama instantie",
 	"Select an Ollama instance": "Selecteer een Ollama instantie",
 	"Select model": "Selecteer een model",
 	"Select model": "Selecteer een model",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "Geselecteerde modellen ondersteunen geen beeldinvoer",
 	"Selected model(s) do not support image inputs": "Geselecteerde modellen ondersteunen geen beeldinvoer",
 	"Send": "Verzenden",
 	"Send": "Verzenden",
 	"Send a Message": "Stuur een Bericht",
 	"Send a Message": "Stuur een Bericht",
@@ -449,7 +464,6 @@
 	"Source": "Bron",
 	"Source": "Bron",
 	"Speech recognition error: {{error}}": "Spraakherkenning fout: {{error}}",
 	"Speech recognition error: {{error}}": "Spraakherkenning fout: {{error}}",
 	"Speech-to-Text Engine": "Spraak-naar-tekst Engine",
 	"Speech-to-Text Engine": "Spraak-naar-tekst Engine",
-	"SpeechRecognition API is not supported in this browser.": "SpeechRecognition API wordt niet ondersteund in deze browser.",
 	"Stop Sequence": "Stop Sequentie",
 	"Stop Sequence": "Stop Sequentie",
 	"STT Settings": "STT Instellingen",
 	"STT Settings": "STT Instellingen",
 	"Submit": "Verzenden",
 	"Submit": "Verzenden",
@@ -481,6 +495,7 @@
 	"to": "naar",
 	"to": "naar",
 	"To access the available model names for downloading,": "Om de beschikbare modelnamen voor downloaden te openen,",
 	"To access the available model names for downloading,": "Om de beschikbare modelnamen voor downloaden te openen,",
 	"To access the GGUF models available for downloading,": "Om toegang te krijgen tot de GGUF modellen die beschikbaar zijn voor downloaden,",
 	"To access the GGUF models available for downloading,": "Om toegang te krijgen tot de GGUF modellen die beschikbaar zijn voor downloaden,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "naar chat input.",
 	"to chat input.": "naar chat input.",
 	"Today": "Vandaag",
 	"Today": "Vandaag",
 	"Toggle settings": "Wissel instellingen",
 	"Toggle settings": "Wissel instellingen",
@@ -497,6 +512,7 @@
 	"Update password": "Wijzig wachtwoord",
 	"Update password": "Wijzig wachtwoord",
 	"Upload a GGUF model": "Upload een GGUF model",
 	"Upload a GGUF model": "Upload een GGUF model",
 	"Upload Files": "Bestanden uploaden",
 	"Upload Files": "Bestanden uploaden",
+	"Upload Pipeline": "",
 	"Upload Progress": "Upload Voortgang",
 	"Upload Progress": "Upload Voortgang",
 	"URL Mode": "URL Modus",
 	"URL Mode": "URL Modus",
 	"Use '#' in the prompt input to load and select your documents.": "Gebruik '#' in de prompt input om je documenten te laden en te selecteren.",
 	"Use '#' in the prompt input to load and select your documents.": "Gebruik '#' in de prompt input om je documenten te laden en te selecteren.",
@@ -515,6 +531,7 @@
 	"Warning": "Waarschuwing",
 	"Warning": "Waarschuwing",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Warning: Als je de embedding model bijwerkt of wijzigt, moet je alle documenten opnieuw importeren.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Warning: Als je de embedding model bijwerkt of wijzigt, moet je alle documenten opnieuw importeren.",
 	"Web": "Web",
 	"Web": "Web",
+	"Web API": "",
 	"Web Loader Settings": "Web Loader instellingen",
 	"Web Loader Settings": "Web Loader instellingen",
 	"Web Params": "Web Params",
 	"Web Params": "Web Params",
 	"Web Search": "Zoeken op het web",
 	"Web Search": "Zoeken op het web",
@@ -525,18 +542,19 @@
 	"WebUI will make requests to": "WebUI zal verzoeken doen naar",
 	"WebUI will make requests to": "WebUI zal verzoeken doen naar",
 	"What’s New in": "Wat is nieuw in",
 	"What’s New in": "Wat is nieuw in",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Wanneer geschiedenis is uitgeschakeld, zullen nieuwe chats op deze browser niet verschijnen in je geschiedenis op een van je apparaten.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Wanneer geschiedenis is uitgeschakeld, zullen nieuwe chats op deze browser niet verschijnen in je geschiedenis op een van je apparaten.",
-	"Whisper (Local)": "Fluister (Lokaal)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "Werkruimte",
 	"Workspace": "Werkruimte",
 	"Write a prompt suggestion (e.g. Who are you?)": "Schrijf een prompt suggestie (bijv. Wie ben je?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Schrijf een prompt suggestie (bijv. Wie ben je?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Schrijf een samenvatting in 50 woorden die [onderwerp of trefwoord] samenvat.",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Schrijf een samenvatting in 50 woorden die [onderwerp of trefwoord] samenvat.",
 	"Yesterday": "gisteren",
 	"Yesterday": "gisteren",
 	"You": "U",
 	"You": "U",
+	"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 clone a base model": "U kunt een basismodel niet klonen",
 	"You cannot clone a base model": "U kunt een basismodel niet klonen",
 	"You have no archived conversations.": "U heeft geen gearchiveerde gesprekken.",
 	"You have no archived conversations.": "U heeft geen gearchiveerde gesprekken.",
 	"You have shared this chat": "U heeft dit gesprek gedeeld",
 	"You have shared this chat": "U heeft dit gesprek gedeeld",
 	"You're a helpful assistant.": "Jij bent een behulpzame assistent.",
 	"You're a helpful assistant.": "Jij bent een behulpzame assistent.",
 	"You're now logged in.": "Je bent nu ingelogd.",
 	"You're now logged in.": "Je bent nu ingelogd.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube-laderinstellingen"
 	"Youtube Loader Settings": "Youtube-laderinstellingen"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "ਇੱਕ ਉਪਭੋਗਤਾ",
 	"a user": "ਇੱਕ ਉਪਭੋਗਤਾ",
 	"About": "ਬਾਰੇ",
 	"About": "ਬਾਰੇ",
 	"Account": "ਖਾਤਾ",
 	"Account": "ਖਾਤਾ",
+	"Account Activation Pending": "",
 	"Accurate information": "ਸਹੀ ਜਾਣਕਾਰੀ",
 	"Accurate information": "ਸਹੀ ਜਾਣਕਾਰੀ",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "ਸ਼ਾਮਲ ਕਰੋ",
 	"Add": "ਸ਼ਾਮਲ ਕਰੋ",
@@ -29,6 +30,7 @@
 	"Add User": "ਉਪਭੋਗਤਾ ਸ਼ਾਮਲ ਕਰੋ",
 	"Add User": "ਉਪਭੋਗਤਾ ਸ਼ਾਮਲ ਕਰੋ",
 	"Adjusting these settings will apply changes universally to all users.": "ਇਹ ਸੈਟਿੰਗਾਂ ਨੂੰ ਠੀਕ ਕਰਨ ਨਾਲ ਸਾਰੇ ਉਪਭੋਗਤਾਵਾਂ ਲਈ ਬਦਲਾਅ ਲਾਗੂ ਹੋਣਗੇ।",
 	"Adjusting these settings will apply changes universally to all users.": "ਇਹ ਸੈਟਿੰਗਾਂ ਨੂੰ ਠੀਕ ਕਰਨ ਨਾਲ ਸਾਰੇ ਉਪਭੋਗਤਾਵਾਂ ਲਈ ਬਦਲਾਅ ਲਾਗੂ ਹੋਣਗੇ।",
 	"admin": "ਪ੍ਰਬੰਧਕ",
 	"admin": "ਪ੍ਰਬੰਧਕ",
+	"Admin": "",
 	"Admin Panel": "ਪ੍ਰਬੰਧਕ ਪੈਨਲ",
 	"Admin Panel": "ਪ੍ਰਬੰਧਕ ਪੈਨਲ",
 	"Admin Settings": "ਪ੍ਰਬੰਧਕ ਸੈਟਿੰਗਾਂ",
 	"Admin Settings": "ਪ੍ਰਬੰਧਕ ਸੈਟਿੰਗਾਂ",
 	"Advanced Parameters": "ਉੱਚ ਸਤਰ ਦੇ ਪੈਰਾਮੀਟਰ",
 	"Advanced Parameters": "ਉੱਚ ਸਤਰ ਦੇ ਪੈਰਾਮੀਟਰ",
@@ -59,7 +61,6 @@
 	"Audio": "ਆਡੀਓ",
 	"Audio": "ਆਡੀਓ",
 	"August": "ਅਗਸਤ",
 	"August": "ਅਗਸਤ",
 	"Auto-playback response": "ਆਟੋ-ਪਲੇਬੈਕ ਜਵਾਬ",
 	"Auto-playback response": "ਆਟੋ-ਪਲੇਬੈਕ ਜਵਾਬ",
-	"Auto-send input after 3 sec.": "3 ਸਕਿੰਟ ਬਾਅਦ ਆਟੋ-ਭੇਜੋ ਇਨਪੁਟ",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 ਬੇਸ URL",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 ਬੇਸ URL",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ਬੇਸ URL ਦੀ ਲੋੜ ਹੈ।",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ਬੇਸ URL ਦੀ ਲੋੜ ਹੈ।",
 	"available!": "ਉਪਲਬਧ ਹੈ!",
 	"available!": "ਉਪਲਬਧ ਹੈ!",
@@ -71,6 +72,7 @@
 	"Being lazy": "ਆਲਸੀ ਹੋਣਾ",
 	"Being lazy": "ਆਲਸੀ ਹੋਣਾ",
 	"Brave Search API Key": "ਬਹਾਦਰ ਖੋਜ API ਕੁੰਜੀ",
 	"Brave Search API Key": "ਬਹਾਦਰ ਖੋਜ API ਕੁੰਜੀ",
 	"Bypass SSL verification for Websites": "ਵੈਬਸਾਈਟਾਂ ਲਈ SSL ਪ੍ਰਮਾਣਿਕਤਾ ਨੂੰ ਬਾਈਪਾਸ ਕਰੋ",
 	"Bypass SSL verification for Websites": "ਵੈਬਸਾਈਟਾਂ ਲਈ SSL ਪ੍ਰਮਾਣਿਕਤਾ ਨੂੰ ਬਾਈਪਾਸ ਕਰੋ",
+	"Call": "",
 	"Cancel": "ਰੱਦ ਕਰੋ",
 	"Cancel": "ਰੱਦ ਕਰੋ",
 	"Capabilities": "ਸਮਰੱਥਾਵਾਂ",
 	"Capabilities": "ਸਮਰੱਥਾਵਾਂ",
 	"Change Password": "ਪਾਸਵਰਡ ਬਦਲੋ",
 	"Change Password": "ਪਾਸਵਰਡ ਬਦਲੋ",
@@ -88,10 +90,12 @@
 	"Chunk Params": "ਚੰਕ ਪੈਰਾਮੀਟਰ",
 	"Chunk Params": "ਚੰਕ ਪੈਰਾਮੀਟਰ",
 	"Chunk Size": "ਚੰਕ ਆਕਾਰ",
 	"Chunk Size": "ਚੰਕ ਆਕਾਰ",
 	"Citation": "ਹਵਾਲਾ",
 	"Citation": "ਹਵਾਲਾ",
+	"Clear memory": "",
 	"Click here for help.": "ਮਦਦ ਲਈ ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ।",
 	"Click here for help.": "ਮਦਦ ਲਈ ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ।",
 	"Click here to": "ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ",
 	"Click here to": "ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ",
 	"Click here to select": "ਚੁਣਨ ਲਈ ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ",
 	"Click here to select": "ਚੁਣਨ ਲਈ ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ",
 	"Click here to select a csv file.": "CSV ਫਾਈਲ ਚੁਣਨ ਲਈ ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ।",
 	"Click here to select a csv file.": "CSV ਫਾਈਲ ਚੁਣਨ ਲਈ ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ।",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "ਡਾਕੂਮੈਂਟ ਚੁਣਨ ਲਈ ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ।",
 	"Click here to select documents.": "ਡਾਕੂਮੈਂਟ ਚੁਣਨ ਲਈ ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ।",
 	"click here.": "ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ।",
 	"click here.": "ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ।",
 	"Click on the user role button to change a user's role.": "ਉਪਭੋਗਤਾ ਦੀ ਭੂਮਿਕਾ ਬਦਲਣ ਲਈ ਉਪਭੋਗਤਾ ਭੂਮਿਕਾ ਬਟਨ 'ਤੇ ਕਲਿੱਕ ਕਰੋ।",
 	"Click on the user role button to change a user's role.": "ਉਪਭੋਗਤਾ ਦੀ ਭੂਮਿਕਾ ਬਦਲਣ ਲਈ ਉਪਭੋਗਤਾ ਭੂਮਿਕਾ ਬਟਨ 'ਤੇ ਕਲਿੱਕ ਕਰੋ।",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "ਸਮਕਾਲੀ ਬੇਨਤੀਆਂ",
 	"Concurrent Requests": "ਸਮਕਾਲੀ ਬੇਨਤੀਆਂ",
 	"Confirm Password": "ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ",
 	"Confirm Password": "ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ",
 	"Connections": "ਕਨੈਕਸ਼ਨ",
 	"Connections": "ਕਨੈਕਸ਼ਨ",
+	"Contact Admin for WebUI Access": "",
 	"Content": "ਸਮੱਗਰੀ",
 	"Content": "ਸਮੱਗਰੀ",
 	"Context Length": "ਸੰਦਰਭ ਲੰਬਾਈ",
 	"Context Length": "ਸੰਦਰਭ ਲੰਬਾਈ",
 	"Continue Response": "ਜਵਾਬ ਜਾਰੀ ਰੱਖੋ",
 	"Continue Response": "ਜਵਾਬ ਜਾਰੀ ਰੱਖੋ",
-	"Conversation Mode": "ਗੱਲਬਾਤ ਮੋਡ",
 	"Copied shared chat URL to clipboard!": "ਸਾਂਝੇ ਕੀਤੇ ਗੱਲਬਾਤ URL ਨੂੰ ਕਲਿੱਪਬੋਰਡ 'ਤੇ ਕਾਪੀ ਕਰ ਦਿੱਤਾ!",
 	"Copied shared chat URL to clipboard!": "ਸਾਂਝੇ ਕੀਤੇ ਗੱਲਬਾਤ URL ਨੂੰ ਕਲਿੱਪਬੋਰਡ 'ਤੇ ਕਾਪੀ ਕਰ ਦਿੱਤਾ!",
 	"Copy": "ਕਾਪੀ ਕਰੋ",
 	"Copy": "ਕਾਪੀ ਕਰੋ",
 	"Copy last code block": "ਆਖਰੀ ਕੋਡ ਬਲਾਕ ਨੂੰ ਕਾਪੀ ਕਰੋ",
 	"Copy last code block": "ਆਖਰੀ ਕੋਡ ਬਲਾਕ ਨੂੰ ਕਾਪੀ ਕਰੋ",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "ਮੂਲ (Automatic1111)",
 	"Default (Automatic1111)": "ਮੂਲ (Automatic1111)",
 	"Default (SentenceTransformers)": "ਮੂਲ (ਸੈਂਟੈਂਸਟ੍ਰਾਂਸਫਾਰਮਰਸ)",
 	"Default (SentenceTransformers)": "ਮੂਲ (ਸੈਂਟੈਂਸਟ੍ਰਾਂਸਫਾਰਮਰਸ)",
 	"Default (Web API)": "ਮੂਲ (ਵੈਬ API)",
 	"Default (Web API)": "ਮੂਲ (ਵੈਬ API)",
+	"Default (Whisper)": "",
 	"Default Model": "ਡਿਫਾਲਟ ਮਾਡਲ",
 	"Default Model": "ਡਿਫਾਲਟ ਮਾਡਲ",
 	"Default model updated": "ਮੂਲ ਮਾਡਲ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ",
 	"Default model updated": "ਮੂਲ ਮਾਡਲ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ",
 	"Default Prompt Suggestions": "ਮੂਲ ਪ੍ਰੰਪਟ ਸੁਝਾਅ",
 	"Default Prompt Suggestions": "ਮੂਲ ਪ੍ਰੰਪਟ ਸੁਝਾਅ",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "ਇੱਕ ਪ੍ਰੰਪਟ ਖੋਜੋ",
 	"Discover a prompt": "ਇੱਕ ਪ੍ਰੰਪਟ ਖੋਜੋ",
 	"Discover, download, and explore custom prompts": "ਕਸਟਮ ਪ੍ਰੰਪਟਾਂ ਨੂੰ ਖੋਜੋ, ਡਾਊਨਲੋਡ ਕਰੋ ਅਤੇ ਪੜਚੋਲ ਕਰੋ",
 	"Discover, download, and explore custom prompts": "ਕਸਟਮ ਪ੍ਰੰਪਟਾਂ ਨੂੰ ਖੋਜੋ, ਡਾਊਨਲੋਡ ਕਰੋ ਅਤੇ ਪੜਚੋਲ ਕਰੋ",
 	"Discover, download, and explore model presets": "ਮਾਡਲ ਪ੍ਰੀਸੈਟਾਂ ਨੂੰ ਖੋਜੋ, ਡਾਊਨਲੋਡ ਕਰੋ ਅਤੇ ਪੜਚੋਲ ਕਰੋ",
 	"Discover, download, and explore model presets": "ਮਾਡਲ ਪ੍ਰੀਸੈਟਾਂ ਨੂੰ ਖੋਜੋ, ਡਾਊਨਲੋਡ ਕਰੋ ਅਤੇ ਪੜਚੋਲ ਕਰੋ",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "ਗੱਲਬਾਤ 'ਚ ਤੁਹਾਡੇ ਸਥਾਨ 'ਤੇ ਉਪਭੋਗਤਾ ਨਾਮ ਦਿਖਾਓ",
 	"Display the username instead of You in the Chat": "ਗੱਲਬਾਤ 'ਚ ਤੁਹਾਡੇ ਸਥਾਨ 'ਤੇ ਉਪਭੋਗਤਾ ਨਾਮ ਦਿਖਾਓ",
 	"Document": "ਡਾਕੂਮੈਂਟ",
 	"Document": "ਡਾਕੂਮੈਂਟ",
 	"Document Settings": "ਡਾਕੂਮੈਂਟ ਸੈਟਿੰਗਾਂ",
 	"Document Settings": "ਡਾਕੂਮੈਂਟ ਸੈਟਿੰਗਾਂ",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "ਡਾਕੂਮੈਂਟ ਮੈਪਿੰਗ ਨਿਰਯਾਤ ਕਰੋ",
 	"Export Documents Mapping": "ਡਾਕੂਮੈਂਟ ਮੈਪਿੰਗ ਨਿਰਯਾਤ ਕਰੋ",
 	"Export Models": "ਨਿਰਯਾਤ ਮਾਡਲ",
 	"Export Models": "ਨਿਰਯਾਤ ਮਾਡਲ",
 	"Export Prompts": "ਪ੍ਰੰਪਟ ਨਿਰਯਾਤ ਕਰੋ",
 	"Export Prompts": "ਪ੍ਰੰਪਟ ਨਿਰਯਾਤ ਕਰੋ",
+	"External Models": "",
 	"Failed to create API Key.": "API ਕੁੰਜੀ ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ।",
 	"Failed to create API Key.": "API ਕੁੰਜੀ ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ।",
 	"Failed to read clipboard contents": "ਕਲਿੱਪਬੋਰਡ ਸਮੱਗਰੀ ਪੜ੍ਹਣ ਵਿੱਚ ਅਸਫਲ",
 	"Failed to read clipboard contents": "ਕਲਿੱਪਬੋਰਡ ਸਮੱਗਰੀ ਪੜ੍ਹਣ ਵਿੱਚ ਅਸਫਲ",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "ਜਾਣਕਾਰੀ",
 	"Info": "ਜਾਣਕਾਰੀ",
 	"Input commands": "ਇਨਪੁਟ ਕਮਾਂਡਾਂ",
 	"Input commands": "ਇਨਪੁਟ ਕਮਾਂਡਾਂ",
 	"Install from Github URL": "Github URL ਤੋਂ ਇੰਸਟਾਲ ਕਰੋ",
 	"Install from Github URL": "Github URL ਤੋਂ ਇੰਸਟਾਲ ਕਰੋ",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "ਇੰਟਰਫੇਸ",
 	"Interface": "ਇੰਟਰਫੇਸ",
 	"Invalid Tag": "ਗਲਤ ਟੈਗ",
 	"Invalid Tag": "ਗਲਤ ਟੈਗ",
 	"January": "ਜਨਵਰੀ",
 	"January": "ਜਨਵਰੀ",
@@ -267,11 +275,12 @@
 	"Language": "ਭਾਸ਼ਾ",
 	"Language": "ਭਾਸ਼ਾ",
 	"Last Active": "ਆਖਰੀ ਸਰਗਰਮ",
 	"Last Active": "ਆਖਰੀ ਸਰਗਰਮ",
 	"Light": "ਹਲਕਾ",
 	"Light": "ਹਲਕਾ",
-	"Listening...": "ਸੁਣ ਰਿਹਾ ਹੈ...",
 	"LLMs can make mistakes. Verify important information.": "LLMs ਗਲਤੀਆਂ ਕਰ ਸਕਦੇ ਹਨ। ਮਹੱਤਵਪੂਰਨ ਜਾਣਕਾਰੀ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ।",
 	"LLMs can make mistakes. Verify important information.": "LLMs ਗਲਤੀਆਂ ਕਰ ਸਕਦੇ ਹਨ। ਮਹੱਤਵਪੂਰਨ ਜਾਣਕਾਰੀ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ।",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਦੁਆਰਾ ਬਣਾਇਆ ਗਿਆ",
 	"Made by OpenWebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਦੁਆਰਾ ਬਣਾਇਆ ਗਿਆ",
 	"Make sure to enclose them with": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਉਨ੍ਹਾਂ ਨੂੰ ਘੇਰੋ",
 	"Make sure to enclose them with": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਉਨ੍ਹਾਂ ਨੂੰ ਘੇਰੋ",
+	"Manage": "",
 	"Manage Models": "ਮਾਡਲਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰੋ",
 	"Manage Models": "ਮਾਡਲਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰੋ",
 	"Manage Ollama Models": "ਓਲਾਮਾ ਮਾਡਲਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰੋ",
 	"Manage Ollama Models": "ਓਲਾਮਾ ਮਾਡਲਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰੋ",
 	"Manage Pipelines": "ਪਾਈਪਲਾਈਨਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰੋ",
 	"Manage Pipelines": "ਪਾਈਪਲਾਈਨਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰੋ",
@@ -323,6 +332,7 @@
 	"Ollama": "ਓਲਾਮਾ",
 	"Ollama": "ਓਲਾਮਾ",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "Ollama API ਅਸਮਰੱਥ",
 	"Ollama API disabled": "Ollama API ਅਸਮਰੱਥ",
+	"Ollama API is disabled": "",
 	"Ollama Version": "ਓਲਾਮਾ ਵਰਜਨ",
 	"Ollama Version": "ਓਲਾਮਾ ਵਰਜਨ",
 	"On": "ਚਾਲੂ",
 	"On": "ਚਾਲੂ",
 	"Only": "ਸਿਰਫ਼",
 	"Only": "ਸਿਰਫ਼",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF ਡਾਕੂਮੈਂਟ (.pdf)",
 	"PDF document (.pdf)": "PDF ਡਾਕੂਮੈਂਟ (.pdf)",
 	"PDF Extract Images (OCR)": "PDF ਚਿੱਤਰ ਕੱਢੋ (OCR)",
 	"PDF Extract Images (OCR)": "PDF ਚਿੱਤਰ ਕੱਢੋ (OCR)",
 	"pending": "ਬਕਾਇਆ",
 	"pending": "ਬਕਾਇਆ",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "ਮਾਈਕ੍ਰੋਫ਼ੋਨ ਤੱਕ ਪਹੁੰਚਣ ਸਮੇਂ ਆਗਿਆ ਰੱਦ ਕੀਤੀ ਗਈ: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "ਮਾਈਕ੍ਰੋਫ਼ੋਨ ਤੱਕ ਪਹੁੰਚਣ ਸਮੇਂ ਆਗਿਆ ਰੱਦ ਕੀਤੀ ਗਈ: {{error}}",
 	"Personalization": "ਪਰਸੋਨਲਿਸ਼ਮ",
 	"Personalization": "ਪਰਸੋਨਲਿਸ਼ਮ",
 	"Pipelines": "ਪਾਈਪਲਾਈਨਾਂ",
 	"Pipelines": "ਪਾਈਪਲਾਈਨਾਂ",
@@ -367,6 +378,7 @@
 	"Read Aloud": "ਜੋਰ ਨਾਲ ਪੜ੍ਹੋ",
 	"Read Aloud": "ਜੋਰ ਨਾਲ ਪੜ੍ਹੋ",
 	"Record voice": "ਆਵਾਜ਼ ਰਿਕਾਰਡ ਕਰੋ",
 	"Record voice": "ਆਵਾਜ਼ ਰਿਕਾਰਡ ਕਰੋ",
 	"Redirecting you to OpenWebUI Community": "ਤੁਹਾਨੂੰ ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਵੱਲ ਰੀਡਾਇਰੈਕਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ",
 	"Redirecting you to OpenWebUI Community": "ਤੁਹਾਨੂੰ ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਵੱਲ ਰੀਡਾਇਰੈਕਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "ਜਦੋਂ ਇਹ ਨਹੀਂ ਹੋਣਾ ਚਾਹੀਦਾ ਸੀ ਤਾਂ ਇਨਕਾਰ ਕੀਤਾ",
 	"Refused when it shouldn't have": "ਜਦੋਂ ਇਹ ਨਹੀਂ ਹੋਣਾ ਚਾਹੀਦਾ ਸੀ ਤਾਂ ਇਨਕਾਰ ਕੀਤਾ",
 	"Regenerate": "ਮੁੜ ਬਣਾਓ",
 	"Regenerate": "ਮੁੜ ਬਣਾਓ",
 	"Release Notes": "ਰਿਲੀਜ਼ ਨੋਟਸ",
 	"Release Notes": "ਰਿਲੀਜ਼ ਨੋਟਸ",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "ਰੋਜ਼ ਪਾਈਨ",
 	"Rosé Pine": "ਰੋਜ਼ ਪਾਈਨ",
 	"Rosé Pine Dawn": "ਰੋਜ਼ ਪਾਈਨ ਡਾਨ",
 	"Rosé Pine Dawn": "ਰੋਜ਼ ਪਾਈਨ ਡਾਨ",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "ਸੰਭਾਲੋ",
 	"Save": "ਸੰਭਾਲੋ",
 	"Save & Create": "ਸੰਭਾਲੋ ਅਤੇ ਬਣਾਓ",
 	"Save & Create": "ਸੰਭਾਲੋ ਅਤੇ ਬਣਾਓ",
 	"Save & Update": "ਸੰਭਾਲੋ ਅਤੇ ਅੱਪਡੇਟ ਕਰੋ",
 	"Save & Update": "ਸੰਭਾਲੋ ਅਤੇ ਅੱਪਡੇਟ ਕਰੋ",
@@ -407,12 +420,14 @@
 	"See what's new": "ਨਵਾਂ ਕੀ ਹੈ ਵੇਖੋ",
 	"See what's new": "ਨਵਾਂ ਕੀ ਹੈ ਵੇਖੋ",
 	"Seed": "ਬੀਜ",
 	"Seed": "ਬੀਜ",
 	"Select a base model": "ਆਧਾਰ ਮਾਡਲ ਚੁਣੋ",
 	"Select a base model": "ਆਧਾਰ ਮਾਡਲ ਚੁਣੋ",
+	"Select a engine": "",
 	"Select a mode": "ਇੱਕ ਮੋਡ ਚੁਣੋ",
 	"Select a mode": "ਇੱਕ ਮੋਡ ਚੁਣੋ",
 	"Select a model": "ਇੱਕ ਮਾਡਲ ਚੁਣੋ",
 	"Select a model": "ਇੱਕ ਮਾਡਲ ਚੁਣੋ",
 	"Select a pipeline": "ਪਾਈਪਲਾਈਨ ਚੁਣੋ",
 	"Select a pipeline": "ਪਾਈਪਲਾਈਨ ਚੁਣੋ",
 	"Select a pipeline url": "ਪਾਈਪਲਾਈਨ URL ਚੁਣੋ",
 	"Select a pipeline url": "ਪਾਈਪਲਾਈਨ URL ਚੁਣੋ",
 	"Select an Ollama instance": "ਇੱਕ ਓਲਾਮਾ ਇੰਸਟੈਂਸ ਚੁਣੋ",
 	"Select an Ollama instance": "ਇੱਕ ਓਲਾਮਾ ਇੰਸਟੈਂਸ ਚੁਣੋ",
 	"Select model": "ਮਾਡਲ ਚੁਣੋ",
 	"Select model": "ਮਾਡਲ ਚੁਣੋ",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "ਚੁਣੇ ਗਏ ਮਾਡਲ(ਆਂ) ਚਿੱਤਰ ਇਨਪੁੱਟਾਂ ਦਾ ਸਮਰਥਨ ਨਹੀਂ ਕਰਦੇ",
 	"Selected model(s) do not support image inputs": "ਚੁਣੇ ਗਏ ਮਾਡਲ(ਆਂ) ਚਿੱਤਰ ਇਨਪੁੱਟਾਂ ਦਾ ਸਮਰਥਨ ਨਹੀਂ ਕਰਦੇ",
 	"Send": "ਭੇਜੋ",
 	"Send": "ਭੇਜੋ",
 	"Send a Message": "ਇੱਕ ਸੁਨੇਹਾ ਭੇਜੋ",
 	"Send a Message": "ਇੱਕ ਸੁਨੇਹਾ ਭੇਜੋ",
@@ -449,7 +464,6 @@
 	"Source": "ਸਰੋਤ",
 	"Source": "ਸਰੋਤ",
 	"Speech recognition error: {{error}}": "ਬੋਲ ਪਛਾਣ ਗਲਤੀ: {{error}}",
 	"Speech recognition error: {{error}}": "ਬੋਲ ਪਛਾਣ ਗਲਤੀ: {{error}}",
 	"Speech-to-Text Engine": "ਬੋਲ-ਤੋਂ-ਪਾਠ ਇੰਜਣ",
 	"Speech-to-Text Engine": "ਬੋਲ-ਤੋਂ-ਪਾਠ ਇੰਜਣ",
-	"SpeechRecognition API is not supported in this browser.": "ਇਸ ਬ੍ਰਾਊਜ਼ਰ ਵਿੱਚ SpeechRecognition API ਸਮਰਥਿਤ ਨਹੀਂ ਹੈ।",
 	"Stop Sequence": "ਰੋਕੋ ਕ੍ਰਮ",
 	"Stop Sequence": "ਰੋਕੋ ਕ੍ਰਮ",
 	"STT Settings": "STT ਸੈਟਿੰਗਾਂ",
 	"STT Settings": "STT ਸੈਟਿੰਗਾਂ",
 	"Submit": "ਜਮ੍ਹਾਂ ਕਰੋ",
 	"Submit": "ਜਮ੍ਹਾਂ ਕਰੋ",
@@ -481,6 +495,7 @@
 	"to": "ਨੂੰ",
 	"to": "ਨੂੰ",
 	"To access the available model names for downloading,": "ਡਾਊਨਲੋਡ ਕਰਨ ਲਈ ਉਪਲਬਧ ਮਾਡਲ ਨਾਮਾਂ ਤੱਕ ਪਹੁੰਚਣ ਲਈ,",
 	"To access the available model names for downloading,": "ਡਾਊਨਲੋਡ ਕਰਨ ਲਈ ਉਪਲਬਧ ਮਾਡਲ ਨਾਮਾਂ ਤੱਕ ਪਹੁੰਚਣ ਲਈ,",
 	"To access the GGUF models available for downloading,": "ਡਾਊਨਲੋਡ ਕਰਨ ਲਈ ਉਪਲਬਧ GGUF ਮਾਡਲਾਂ ਤੱਕ ਪਹੁੰਚਣ ਲਈ,",
 	"To access the GGUF models available for downloading,": "ਡਾਊਨਲੋਡ ਕਰਨ ਲਈ ਉਪਲਬਧ GGUF ਮਾਡਲਾਂ ਤੱਕ ਪਹੁੰਚਣ ਲਈ,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "ਗੱਲਬਾਤ ਇਨਪੁਟ ਲਈ।",
 	"to chat input.": "ਗੱਲਬਾਤ ਇਨਪੁਟ ਲਈ।",
 	"Today": "ਅੱਜ",
 	"Today": "ਅੱਜ",
 	"Toggle settings": "ਸੈਟਿੰਗਾਂ ਟੌਗਲ ਕਰੋ",
 	"Toggle settings": "ਸੈਟਿੰਗਾਂ ਟੌਗਲ ਕਰੋ",
@@ -497,6 +512,7 @@
 	"Update password": "ਪਾਸਵਰਡ ਅੱਪਡੇਟ ਕਰੋ",
 	"Update password": "ਪਾਸਵਰਡ ਅੱਪਡੇਟ ਕਰੋ",
 	"Upload a GGUF model": "ਇੱਕ GGUF ਮਾਡਲ ਅਪਲੋਡ ਕਰੋ",
 	"Upload a GGUF model": "ਇੱਕ GGUF ਮਾਡਲ ਅਪਲੋਡ ਕਰੋ",
 	"Upload Files": "ਫਾਇਲਾਂ ਅੱਪਲੋਡ ਕਰੋ",
 	"Upload Files": "ਫਾਇਲਾਂ ਅੱਪਲੋਡ ਕਰੋ",
+	"Upload Pipeline": "",
 	"Upload Progress": "ਅਪਲੋਡ ਪ੍ਰਗਤੀ",
 	"Upload Progress": "ਅਪਲੋਡ ਪ੍ਰਗਤੀ",
 	"URL Mode": "URL ਮੋਡ",
 	"URL Mode": "URL ਮੋਡ",
 	"Use '#' in the prompt input to load and select your documents.": "ਆਪਣੇ ਡਾਕੂਮੈਂਟ ਲੋਡ ਅਤੇ ਚੁਣਨ ਲਈ ਪ੍ਰੰਪਟ ਇਨਪੁਟ ਵਿੱਚ '#' ਵਰਤੋ।",
 	"Use '#' in the prompt input to load and select your documents.": "ਆਪਣੇ ਡਾਕੂਮੈਂਟ ਲੋਡ ਅਤੇ ਚੁਣਨ ਲਈ ਪ੍ਰੰਪਟ ਇਨਪੁਟ ਵਿੱਚ '#' ਵਰਤੋ।",
@@ -515,6 +531,7 @@
 	"Warning": "ਚੇਤਾਵਨੀ",
 	"Warning": "ਚੇਤਾਵਨੀ",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "ਚੇਤਾਵਨੀ: ਜੇ ਤੁਸੀਂ ਆਪਣਾ ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਅੱਪਡੇਟ ਜਾਂ ਬਦਲਦੇ ਹੋ, ਤਾਂ ਤੁਹਾਨੂੰ ਸਾਰੇ ਡਾਕੂਮੈਂਟ ਮੁੜ ਆਯਾਤ ਕਰਨ ਦੀ ਲੋੜ ਹੋਵੇਗੀ।",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "ਚੇਤਾਵਨੀ: ਜੇ ਤੁਸੀਂ ਆਪਣਾ ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਅੱਪਡੇਟ ਜਾਂ ਬਦਲਦੇ ਹੋ, ਤਾਂ ਤੁਹਾਨੂੰ ਸਾਰੇ ਡਾਕੂਮੈਂਟ ਮੁੜ ਆਯਾਤ ਕਰਨ ਦੀ ਲੋੜ ਹੋਵੇਗੀ।",
 	"Web": "ਵੈਬ",
 	"Web": "ਵੈਬ",
+	"Web API": "",
 	"Web Loader Settings": "ਵੈਬ ਲੋਡਰ ਸੈਟਿੰਗਾਂ",
 	"Web Loader Settings": "ਵੈਬ ਲੋਡਰ ਸੈਟਿੰਗਾਂ",
 	"Web Params": "ਵੈਬ ਪੈਰਾਮੀਟਰ",
 	"Web Params": "ਵੈਬ ਪੈਰਾਮੀਟਰ",
 	"Web Search": "ਵੈੱਬ ਖੋਜ",
 	"Web Search": "ਵੈੱਬ ਖੋਜ",
@@ -525,18 +542,19 @@
 	"WebUI will make requests to": "ਵੈਬਯੂਆਈ ਬੇਨਤੀਆਂ ਕਰੇਗਾ",
 	"WebUI will make requests to": "ਵੈਬਯੂਆਈ ਬੇਨਤੀਆਂ ਕਰੇਗਾ",
 	"What’s New in": "ਨਵਾਂ ਕੀ ਹੈ",
 	"What’s New in": "ਨਵਾਂ ਕੀ ਹੈ",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "ਜਦੋਂ ਇਤਿਹਾਸ ਬੰਦ ਹੁੰਦਾ ਹੈ, ਤਾਂ ਇਸ ਬ੍ਰਾਊਜ਼ਰ 'ਤੇ ਨਵੀਆਂ ਗੱਲਾਂ ਤੁਹਾਡੇ ਕਿਸੇ ਵੀ ਜੰਤਰ 'ਤੇ ਤੁਹਾਡੇ ਇਤਿਹਾਸ ਵਿੱਚ ਨਹੀਂ ਆਉਣਗੀਆਂ।",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "ਜਦੋਂ ਇਤਿਹਾਸ ਬੰਦ ਹੁੰਦਾ ਹੈ, ਤਾਂ ਇਸ ਬ੍ਰਾਊਜ਼ਰ 'ਤੇ ਨਵੀਆਂ ਗੱਲਾਂ ਤੁਹਾਡੇ ਕਿਸੇ ਵੀ ਜੰਤਰ 'ਤੇ ਤੁਹਾਡੇ ਇਤਿਹਾਸ ਵਿੱਚ ਨਹੀਂ ਆਉਣਗੀਆਂ।",
-	"Whisper (Local)": "ਵਿਸਪਰ (ਸਥਾਨਕ)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "ਕਾਰਜਸਥਲ",
 	"Workspace": "ਕਾਰਜਸਥਲ",
 	"Write a prompt suggestion (e.g. Who are you?)": "ਇੱਕ ਪ੍ਰੰਪਟ ਸੁਝਾਅ ਲਿਖੋ (ਉਦਾਹਰਣ ਲਈ ਤੁਸੀਂ ਕੌਣ ਹੋ?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "ਇੱਕ ਪ੍ਰੰਪਟ ਸੁਝਾਅ ਲਿਖੋ (ਉਦਾਹਰਣ ਲਈ ਤੁਸੀਂ ਕੌਣ ਹੋ?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "50 ਸ਼ਬਦਾਂ ਵਿੱਚ ਇੱਕ ਸੰਖੇਪ ਲਿਖੋ ਜੋ [ਵਿਸ਼ਾ ਜਾਂ ਕੁੰਜੀ ਸ਼ਬਦ] ਨੂੰ ਸੰਖੇਪ ਕਰਦਾ ਹੈ।",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "50 ਸ਼ਬਦਾਂ ਵਿੱਚ ਇੱਕ ਸੰਖੇਪ ਲਿਖੋ ਜੋ [ਵਿਸ਼ਾ ਜਾਂ ਕੁੰਜੀ ਸ਼ਬਦ] ਨੂੰ ਸੰਖੇਪ ਕਰਦਾ ਹੈ।",
 	"Yesterday": "ਕੱਲ੍ਹ",
 	"Yesterday": "ਕੱਲ੍ਹ",
 	"You": "ਤੁਸੀਂ",
 	"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 clone a base model": "ਤੁਸੀਂ ਆਧਾਰ ਮਾਡਲ ਨੂੰ ਕਲੋਨ ਨਹੀਂ ਕਰ ਸਕਦੇ",
 	"You cannot clone a base model": "ਤੁਸੀਂ ਆਧਾਰ ਮਾਡਲ ਨੂੰ ਕਲੋਨ ਨਹੀਂ ਕਰ ਸਕਦੇ",
 	"You have no archived conversations.": "ਤੁਹਾਡੇ ਕੋਲ ਕੋਈ ਆਰਕਾਈਵ ਕੀਤੀਆਂ ਗੱਲਾਂ ਨਹੀਂ ਹਨ।",
 	"You have no archived conversations.": "ਤੁਹਾਡੇ ਕੋਲ ਕੋਈ ਆਰਕਾਈਵ ਕੀਤੀਆਂ ਗੱਲਾਂ ਨਹੀਂ ਹਨ।",
 	"You have shared this chat": "ਤੁਸੀਂ ਇਹ ਗੱਲਬਾਤ ਸਾਂਝੀ ਕੀਤੀ ਹੈ",
 	"You have shared this chat": "ਤੁਸੀਂ ਇਹ ਗੱਲਬਾਤ ਸਾਂਝੀ ਕੀਤੀ ਹੈ",
 	"You're a helpful assistant.": "ਤੁਸੀਂ ਇੱਕ ਮਦਦਗਾਰ ਸਹਾਇਕ ਹੋ।",
 	"You're a helpful assistant.": "ਤੁਸੀਂ ਇੱਕ ਮਦਦਗਾਰ ਸਹਾਇਕ ਹੋ।",
 	"You're now logged in.": "ਤੁਸੀਂ ਹੁਣ ਲੌਗ ਇਨ ਹੋ ਗਏ ਹੋ।",
 	"You're now logged in.": "ਤੁਸੀਂ ਹੁਣ ਲੌਗ ਇਨ ਹੋ ਗਏ ਹੋ।",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "ਯੂਟਿਊਬ",
 	"Youtube": "ਯੂਟਿਊਬ",
 	"Youtube Loader Settings": "ਯੂਟਿਊਬ ਲੋਡਰ ਸੈਟਿੰਗਾਂ"
 	"Youtube Loader Settings": "ਯੂਟਿਊਬ ਲੋਡਰ ਸੈਟਿੰਗਾਂ"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "użytkownik",
 	"a user": "użytkownik",
 	"About": "O nas",
 	"About": "O nas",
 	"Account": "Konto",
 	"Account": "Konto",
+	"Account Activation Pending": "",
 	"Accurate information": "Dokładna informacja",
 	"Accurate information": "Dokładna informacja",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Dodaj",
 	"Add": "Dodaj",
@@ -29,6 +30,7 @@
 	"Add User": "Dodaj użytkownika",
 	"Add User": "Dodaj użytkownika",
 	"Adjusting these settings will apply changes universally to all users.": "Dostosowanie tych ustawień spowoduje zastosowanie zmian uniwersalnie do wszystkich użytkowników.",
 	"Adjusting these settings will apply changes universally to all users.": "Dostosowanie tych ustawień spowoduje zastosowanie zmian uniwersalnie do wszystkich użytkowników.",
 	"admin": "admin",
 	"admin": "admin",
+	"Admin": "",
 	"Admin Panel": "Panel administracyjny",
 	"Admin Panel": "Panel administracyjny",
 	"Admin Settings": "Ustawienia administratora",
 	"Admin Settings": "Ustawienia administratora",
 	"Advanced Parameters": "Zaawansowane parametry",
 	"Advanced Parameters": "Zaawansowane parametry",
@@ -59,7 +61,6 @@
 	"Audio": "Dźwięk",
 	"Audio": "Dźwięk",
 	"August": "Sierpień",
 	"August": "Sierpień",
 	"Auto-playback response": "Odtwarzanie automatyczne odpowiedzi",
 	"Auto-playback response": "Odtwarzanie automatyczne odpowiedzi",
-	"Auto-send input after 3 sec.": "Wysyłanie automatyczne po 3 sek.",
 	"AUTOMATIC1111 Base URL": "Podstawowy adres URL AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL": "Podstawowy adres URL AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL is required.": "Podstawowy adres URL AUTOMATIC1111 jest wymagany.",
 	"AUTOMATIC1111 Base URL is required.": "Podstawowy adres URL AUTOMATIC1111 jest wymagany.",
 	"available!": "dostępny!",
 	"available!": "dostępny!",
@@ -71,6 +72,7 @@
 	"Being lazy": "Jest leniwy",
 	"Being lazy": "Jest leniwy",
 	"Brave Search API Key": "Klucz API wyszukiwania Brave",
 	"Brave Search API Key": "Klucz API wyszukiwania Brave",
 	"Bypass SSL verification for Websites": "Pomiń weryfikację SSL dla stron webowych",
 	"Bypass SSL verification for Websites": "Pomiń weryfikację SSL dla stron webowych",
+	"Call": "",
 	"Cancel": "Anuluj",
 	"Cancel": "Anuluj",
 	"Capabilities": "Możliwości",
 	"Capabilities": "Możliwości",
 	"Change Password": "Zmień hasło",
 	"Change Password": "Zmień hasło",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Parametry bloku",
 	"Chunk Params": "Parametry bloku",
 	"Chunk Size": "Rozmiar bloku",
 	"Chunk Size": "Rozmiar bloku",
 	"Citation": "Cytat",
 	"Citation": "Cytat",
+	"Clear memory": "",
 	"Click here for help.": "Kliknij tutaj, aby uzyskać pomoc.",
 	"Click here for help.": "Kliknij tutaj, aby uzyskać pomoc.",
 	"Click here to": "Kliknij tutaj, żeby",
 	"Click here to": "Kliknij tutaj, żeby",
 	"Click here to select": "Kliknij tutaj, aby wybrać",
 	"Click here to select": "Kliknij tutaj, aby wybrać",
 	"Click here to select a csv file.": "Kliknij tutaj, żeby wybrać plik CSV",
 	"Click here to select a csv file.": "Kliknij tutaj, żeby wybrać plik CSV",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Kliknij tutaj, aby wybrać dokumenty.",
 	"Click here to select documents.": "Kliknij tutaj, aby wybrać dokumenty.",
 	"click here.": "kliknij tutaj.",
 	"click here.": "kliknij tutaj.",
 	"Click on the user role button to change a user's role.": "Kliknij przycisk roli użytkownika, aby zmienić rolę użytkownika.",
 	"Click on the user role button to change a user's role.": "Kliknij przycisk roli użytkownika, aby zmienić rolę użytkownika.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Równoczesne żądania",
 	"Concurrent Requests": "Równoczesne żądania",
 	"Confirm Password": "Potwierdź hasło",
 	"Confirm Password": "Potwierdź hasło",
 	"Connections": "Połączenia",
 	"Connections": "Połączenia",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Zawartość",
 	"Content": "Zawartość",
 	"Context Length": "Długość kontekstu",
 	"Context Length": "Długość kontekstu",
 	"Continue Response": "Kontynuuj odpowiedź",
 	"Continue Response": "Kontynuuj odpowiedź",
-	"Conversation Mode": "Tryb rozmowy",
 	"Copied shared chat URL to clipboard!": "Skopiowano URL czatu do schowka!",
 	"Copied shared chat URL to clipboard!": "Skopiowano URL czatu do schowka!",
 	"Copy": "Kopiuj",
 	"Copy": "Kopiuj",
 	"Copy last code block": "Skopiuj ostatni blok kodu",
 	"Copy last code block": "Skopiuj ostatni blok kodu",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Domyślny (Automatic1111)",
 	"Default (Automatic1111)": "Domyślny (Automatic1111)",
 	"Default (SentenceTransformers)": "Domyślny (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Domyślny (SentenceTransformers)",
 	"Default (Web API)": "Domyślny (Web API)",
 	"Default (Web API)": "Domyślny (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "Model domyślny",
 	"Default Model": "Model domyślny",
 	"Default model updated": "Domyślny model zaktualizowany",
 	"Default model updated": "Domyślny model zaktualizowany",
 	"Default Prompt Suggestions": "Domyślne sugestie promptów",
 	"Default Prompt Suggestions": "Domyślne sugestie promptów",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Odkryj prompt",
 	"Discover a prompt": "Odkryj prompt",
 	"Discover, download, and explore custom prompts": "Odkryj, pobierz i eksploruj niestandardowe prompty",
 	"Discover, download, and explore custom prompts": "Odkryj, pobierz i eksploruj niestandardowe prompty",
 	"Discover, download, and explore model presets": "Odkryj, pobierz i eksploruj ustawienia modeli",
 	"Discover, download, and explore model presets": "Odkryj, pobierz i eksploruj ustawienia modeli",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Wyświetl nazwę użytkownika zamiast Ty w czacie",
 	"Display the username instead of You in the Chat": "Wyświetl nazwę użytkownika zamiast Ty w czacie",
 	"Document": "Dokument",
 	"Document": "Dokument",
 	"Document Settings": "Ustawienia dokumentu",
 	"Document Settings": "Ustawienia dokumentu",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Eksportuj mapowanie dokumentów",
 	"Export Documents Mapping": "Eksportuj mapowanie dokumentów",
 	"Export Models": "Eksportuj modele",
 	"Export Models": "Eksportuj modele",
 	"Export Prompts": "Eksportuj prompty",
 	"Export Prompts": "Eksportuj prompty",
+	"External Models": "",
 	"Failed to create API Key.": "Nie udało się utworzyć klucza API.",
 	"Failed to create API Key.": "Nie udało się utworzyć klucza API.",
 	"Failed to read clipboard contents": "Nie udało się odczytać zawartości schowka",
 	"Failed to read clipboard contents": "Nie udało się odczytać zawartości schowka",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "Informacji",
 	"Info": "Informacji",
 	"Input commands": "Wprowadź komendy",
 	"Input commands": "Wprowadź komendy",
 	"Install from Github URL": "Instalowanie z adresu URL usługi Github",
 	"Install from Github URL": "Instalowanie z adresu URL usługi Github",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Interfejs",
 	"Interface": "Interfejs",
 	"Invalid Tag": "Nieprawidłowy tag",
 	"Invalid Tag": "Nieprawidłowy tag",
 	"January": "Styczeń",
 	"January": "Styczeń",
@@ -267,11 +275,12 @@
 	"Language": "Język",
 	"Language": "Język",
 	"Last Active": "Ostatnio aktywny",
 	"Last Active": "Ostatnio aktywny",
 	"Light": "Jasny",
 	"Light": "Jasny",
-	"Listening...": "Nasłuchiwanie...",
 	"LLMs can make mistakes. Verify important information.": "LLMy mogą popełniać błędy. Zweryfikuj ważne informacje.",
 	"LLMs can make mistakes. Verify important information.": "LLMy mogą popełniać błędy. Zweryfikuj ważne informacje.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Stworzone przez społeczność OpenWebUI",
 	"Made by OpenWebUI Community": "Stworzone przez społeczność OpenWebUI",
 	"Make sure to enclose them with": "Upewnij się, że są one zamknięte w",
 	"Make sure to enclose them with": "Upewnij się, że są one zamknięte w",
+	"Manage": "",
 	"Manage Models": "Zarządzaj modelami",
 	"Manage Models": "Zarządzaj modelami",
 	"Manage Ollama Models": "Zarządzaj modelami Ollama",
 	"Manage Ollama Models": "Zarządzaj modelami Ollama",
 	"Manage Pipelines": "Zarządzanie potokami",
 	"Manage Pipelines": "Zarządzanie potokami",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "Interfejs API Ollama wyłączony",
 	"Ollama API disabled": "Interfejs API Ollama wyłączony",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Wersja Ollama",
 	"Ollama Version": "Wersja Ollama",
 	"On": "Włączony",
 	"On": "Włączony",
 	"Only": "Tylko",
 	"Only": "Tylko",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "Dokument PDF (.pdf)",
 	"PDF document (.pdf)": "Dokument PDF (.pdf)",
 	"PDF Extract Images (OCR)": "PDF Wyodrębnij obrazy (OCR)",
 	"PDF Extract Images (OCR)": "PDF Wyodrębnij obrazy (OCR)",
 	"pending": "oczekujące",
 	"pending": "oczekujące",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Odmowa dostępu do mikrofonu: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Odmowa dostępu do mikrofonu: {{error}}",
 	"Personalization": "Personalizacja",
 	"Personalization": "Personalizacja",
 	"Pipelines": "Rurociągów",
 	"Pipelines": "Rurociągów",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Czytaj na głos",
 	"Read Aloud": "Czytaj na głos",
 	"Record voice": "Nagraj głos",
 	"Record voice": "Nagraj głos",
 	"Redirecting you to OpenWebUI Community": "Przekierowujemy Cię do społeczności OpenWebUI",
 	"Redirecting you to OpenWebUI Community": "Przekierowujemy Cię do społeczności OpenWebUI",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Odmówił, kiedy nie powinien",
 	"Refused when it shouldn't have": "Odmówił, kiedy nie powinien",
 	"Regenerate": "Generuj ponownie",
 	"Regenerate": "Generuj ponownie",
 	"Release Notes": "Notatki wydania",
 	"Release Notes": "Notatki wydania",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "RLT",
 	"RTL": "RLT",
+	"Running": "",
 	"Save": "Zapisz",
 	"Save": "Zapisz",
 	"Save & Create": "Zapisz i utwórz",
 	"Save & Create": "Zapisz i utwórz",
 	"Save & Update": "Zapisz i zaktualizuj",
 	"Save & Update": "Zapisz i zaktualizuj",
@@ -409,12 +422,14 @@
 	"See what's new": "Zobacz co nowego",
 	"See what's new": "Zobacz co nowego",
 	"Seed": "Seed",
 	"Seed": "Seed",
 	"Select a base model": "Wybieranie modelu bazowego",
 	"Select a base model": "Wybieranie modelu bazowego",
+	"Select a engine": "",
 	"Select a mode": "Wybierz tryb",
 	"Select a mode": "Wybierz tryb",
 	"Select a model": "Wybierz model",
 	"Select a model": "Wybierz model",
 	"Select a pipeline": "Wybieranie potoku",
 	"Select a pipeline": "Wybieranie potoku",
 	"Select a pipeline url": "Wybieranie adresu URL potoku",
 	"Select a pipeline url": "Wybieranie adresu URL potoku",
 	"Select an Ollama instance": "Wybierz instancję Ollama",
 	"Select an Ollama instance": "Wybierz instancję Ollama",
 	"Select model": "Wybierz model",
 	"Select model": "Wybierz model",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "Wybrane modele nie obsługują danych wejściowych obrazu",
 	"Selected model(s) do not support image inputs": "Wybrane modele nie obsługują danych wejściowych obrazu",
 	"Send": "Wyślij",
 	"Send": "Wyślij",
 	"Send a Message": "Wyślij Wiadomość",
 	"Send a Message": "Wyślij Wiadomość",
@@ -451,7 +466,6 @@
 	"Source": "Źródło",
 	"Source": "Źródło",
 	"Speech recognition error: {{error}}": "Błąd rozpoznawania mowy: {{error}}",
 	"Speech recognition error: {{error}}": "Błąd rozpoznawania mowy: {{error}}",
 	"Speech-to-Text Engine": "Silnik mowy na tekst",
 	"Speech-to-Text Engine": "Silnik mowy na tekst",
-	"SpeechRecognition API is not supported in this browser.": "API Rozpoznawania Mowy nie jest obsługiwane w tej przeglądarce.",
 	"Stop Sequence": "Zatrzymaj sekwencję",
 	"Stop Sequence": "Zatrzymaj sekwencję",
 	"STT Settings": "Ustawienia STT",
 	"STT Settings": "Ustawienia STT",
 	"Submit": "Zatwierdź",
 	"Submit": "Zatwierdź",
@@ -483,6 +497,7 @@
 	"to": "do",
 	"to": "do",
 	"To access the available model names for downloading,": "Aby uzyskać dostęp do dostępnych nazw modeli do pobrania,",
 	"To access the available model names for downloading,": "Aby uzyskać dostęp do dostępnych nazw modeli do pobrania,",
 	"To access the GGUF models available for downloading,": "Aby uzyskać dostęp do dostępnych modeli GGUF do pobrania,",
 	"To access the GGUF models available for downloading,": "Aby uzyskać dostęp do dostępnych modeli GGUF do pobrania,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "do pola wprowadzania czatu.",
 	"to chat input.": "do pola wprowadzania czatu.",
 	"Today": "Dzisiaj",
 	"Today": "Dzisiaj",
 	"Toggle settings": "Przełącz ustawienia",
 	"Toggle settings": "Przełącz ustawienia",
@@ -499,6 +514,7 @@
 	"Update password": "Aktualizacja hasła",
 	"Update password": "Aktualizacja hasła",
 	"Upload a GGUF model": "Prześlij model GGUF",
 	"Upload a GGUF model": "Prześlij model GGUF",
 	"Upload Files": "Prześlij pliki",
 	"Upload Files": "Prześlij pliki",
+	"Upload Pipeline": "",
 	"Upload Progress": "Postęp przesyłania",
 	"Upload Progress": "Postęp przesyłania",
 	"URL Mode": "Tryb adresu URL",
 	"URL Mode": "Tryb adresu URL",
 	"Use '#' in the prompt input to load and select your documents.": "Użyj '#' w polu wprowadzania polecenia, aby załadować i wybrać swoje dokumenty.",
 	"Use '#' in the prompt input to load and select your documents.": "Użyj '#' w polu wprowadzania polecenia, aby załadować i wybrać swoje dokumenty.",
@@ -517,6 +533,7 @@
 	"Warning": "Ostrzeżenie",
 	"Warning": "Ostrzeżenie",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Uwaga: Jeśli uaktualnisz lub zmienisz model osadzania, będziesz musiał ponownie zaimportować wszystkie dokumenty.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Uwaga: Jeśli uaktualnisz lub zmienisz model osadzania, będziesz musiał ponownie zaimportować wszystkie dokumenty.",
 	"Web": "Sieć",
 	"Web": "Sieć",
+	"Web API": "",
 	"Web Loader Settings": "Ustawienia pobierania z sieci",
 	"Web Loader Settings": "Ustawienia pobierania z sieci",
 	"Web Params": "Parametry sieci",
 	"Web Params": "Parametry sieci",
 	"Web Search": "Wyszukiwarka w Internecie",
 	"Web Search": "Wyszukiwarka w Internecie",
@@ -527,18 +544,19 @@
 	"WebUI will make requests to": "Interfejs sieciowy będzie wysyłał żądania do",
 	"WebUI will make requests to": "Interfejs sieciowy będzie wysyłał żądania do",
 	"What’s New in": "Co nowego w",
 	"What’s New in": "Co nowego w",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Kiedy historia jest wyłączona, nowe czaty na tej przeglądarce nie będą widoczne w historii na żadnym z twoich urządzeń.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Kiedy historia jest wyłączona, nowe czaty na tej przeglądarce nie będą widoczne w historii na żadnym z twoich urządzeń.",
-	"Whisper (Local)": "Whisper (Lokalnie)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "Obszar roboczy",
 	"Workspace": "Obszar roboczy",
 	"Write a prompt suggestion (e.g. Who are you?)": "Napisz sugestię do polecenia (np. Kim jesteś?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Napisz sugestię do polecenia (np. Kim jesteś?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Napisz podsumowanie w 50 słowach, które podsumowuje [temat lub słowo kluczowe].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Napisz podsumowanie w 50 słowach, które podsumowuje [temat lub słowo kluczowe].",
 	"Yesterday": "Wczoraj",
 	"Yesterday": "Wczoraj",
 	"You": "Ty",
 	"You": "Ty",
+	"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 clone a base model": "Nie można sklonować modelu podstawowego",
 	"You cannot clone a base model": "Nie można sklonować modelu podstawowego",
 	"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",
 	"You're a helpful assistant.": "Jesteś pomocnym asystentem.",
 	"You're a helpful assistant.": "Jesteś pomocnym asystentem.",
 	"You're now logged in.": "Jesteś teraz zalogowany.",
 	"You're now logged in.": "Jesteś teraz zalogowany.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Ustawienia pobierania z Youtube"
 	"Youtube Loader Settings": "Ustawienia pobierania z Youtube"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "um usuário",
 	"a user": "um usuário",
 	"About": "Sobre",
 	"About": "Sobre",
 	"Account": "Conta",
 	"Account": "Conta",
+	"Account Activation Pending": "",
 	"Accurate information": "Informações precisas",
 	"Accurate information": "Informações precisas",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Adicionar",
 	"Add": "Adicionar",
@@ -29,6 +30,7 @@
 	"Add User": "Adicionar Usuário",
 	"Add User": "Adicionar Usuário",
 	"Adjusting these settings will apply changes universally to all users.": "Ajustar essas configurações aplicará alterações universalmente a todos os usuários.",
 	"Adjusting these settings will apply changes universally to all users.": "Ajustar essas configurações aplicará alterações universalmente a todos os usuários.",
 	"admin": "administrador",
 	"admin": "administrador",
+	"Admin": "",
 	"Admin Panel": "Painel do Administrador",
 	"Admin Panel": "Painel do Administrador",
 	"Admin Settings": "Configurações do Administrador",
 	"Admin Settings": "Configurações do Administrador",
 	"Advanced Parameters": "Parâmetros Avançados",
 	"Advanced Parameters": "Parâmetros Avançados",
@@ -59,7 +61,6 @@
 	"Audio": "Áudio",
 	"Audio": "Áudio",
 	"August": "Agosto",
 	"August": "Agosto",
 	"Auto-playback response": "Reprodução automática da resposta",
 	"Auto-playback response": "Reprodução automática da resposta",
-	"Auto-send input after 3 sec.": "Enviar entrada automaticamente após 3 segundos.",
 	"AUTOMATIC1111 Base URL": "URL Base do AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL": "URL Base do AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL is required.": "A URL Base do AUTOMATIC1111 é obrigatória.",
 	"AUTOMATIC1111 Base URL is required.": "A URL Base do AUTOMATIC1111 é obrigatória.",
 	"available!": "disponível!",
 	"available!": "disponível!",
@@ -71,6 +72,7 @@
 	"Being lazy": "Ser preguiçoso",
 	"Being lazy": "Ser preguiçoso",
 	"Brave Search API Key": "Chave da API de pesquisa do Brave",
 	"Brave Search API Key": "Chave da API de pesquisa do Brave",
 	"Bypass SSL verification for Websites": "Ignorar verificação SSL para sites",
 	"Bypass SSL verification for Websites": "Ignorar verificação SSL para sites",
+	"Call": "",
 	"Cancel": "Cancelar",
 	"Cancel": "Cancelar",
 	"Capabilities": "Capacidades",
 	"Capabilities": "Capacidades",
 	"Change Password": "Alterar Senha",
 	"Change Password": "Alterar Senha",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Parâmetros de Fragmento",
 	"Chunk Params": "Parâmetros de Fragmento",
 	"Chunk Size": "Tamanho do Fragmento",
 	"Chunk Size": "Tamanho do Fragmento",
 	"Citation": "Citação",
 	"Citation": "Citação",
+	"Clear memory": "",
 	"Click here for help.": "Clique aqui para obter ajuda.",
 	"Click here for help.": "Clique aqui para obter ajuda.",
 	"Click here to": "Clique aqui para",
 	"Click here to": "Clique aqui para",
 	"Click here to select": "Clique aqui para selecionar",
 	"Click here to select": "Clique aqui para selecionar",
 	"Click here to select a csv file.": "Clique aqui para selecionar um arquivo csv.",
 	"Click here to select a csv file.": "Clique aqui para selecionar um arquivo csv.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Clique aqui para selecionar documentos.",
 	"Click here to select documents.": "Clique aqui para selecionar documentos.",
 	"click here.": "clique aqui.",
 	"click here.": "clique aqui.",
 	"Click on the user role button to change a user's role.": "Clique no botão de função do usuário para alterar a função de um usuário.",
 	"Click on the user role button to change a user's role.": "Clique no botão de função do usuário para alterar a função de um usuário.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Solicitações simultâneas",
 	"Concurrent Requests": "Solicitações simultâneas",
 	"Confirm Password": "Confirmar Senha",
 	"Confirm Password": "Confirmar Senha",
 	"Connections": "Conexões",
 	"Connections": "Conexões",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Conteúdo",
 	"Content": "Conteúdo",
 	"Context Length": "Comprimento do Contexto",
 	"Context Length": "Comprimento do Contexto",
 	"Continue Response": "Continuar resposta",
 	"Continue Response": "Continuar resposta",
-	"Conversation Mode": "Modo de Conversa",
 	"Copied shared chat URL to clipboard!": "URL de bate-papo compartilhado copiada com sucesso!",
 	"Copied shared chat URL to clipboard!": "URL de bate-papo compartilhado copiada com sucesso!",
 	"Copy": "Copiar",
 	"Copy": "Copiar",
 	"Copy last code block": "Copiar último bloco de código",
 	"Copy last code block": "Copiar último bloco de código",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Padrão (Automatic1111)",
 	"Default (Automatic1111)": "Padrão (Automatic1111)",
 	"Default (SentenceTransformers)": "Padrão (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Padrão (SentenceTransformers)",
 	"Default (Web API)": "Padrão (API Web)",
 	"Default (Web API)": "Padrão (API Web)",
+	"Default (Whisper)": "",
 	"Default Model": "Modelo padrão",
 	"Default Model": "Modelo padrão",
 	"Default model updated": "Modelo padrão atualizado",
 	"Default model updated": "Modelo padrão atualizado",
 	"Default Prompt Suggestions": "Sugestões de Prompt Padrão",
 	"Default Prompt Suggestions": "Sugestões de Prompt Padrão",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Descobrir um prompt",
 	"Discover a prompt": "Descobrir um prompt",
 	"Discover, download, and explore custom prompts": "Descubra, baixe e explore prompts personalizados",
 	"Discover, download, and explore custom prompts": "Descubra, baixe e explore prompts personalizados",
 	"Discover, download, and explore model presets": "Descubra, baixe e explore predefinições de modelo",
 	"Discover, download, and explore model presets": "Descubra, baixe e explore predefinições de modelo",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Exibir o nome de usuário em vez de Você no Bate-papo",
 	"Display the username instead of You in the Chat": "Exibir o nome de usuário em vez de Você no Bate-papo",
 	"Document": "Documento",
 	"Document": "Documento",
 	"Document Settings": "Configurações de Documento",
 	"Document Settings": "Configurações de Documento",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Exportar Mapeamento de Documentos",
 	"Export Documents Mapping": "Exportar Mapeamento de Documentos",
 	"Export Models": "Modelos de Exportação",
 	"Export Models": "Modelos de Exportação",
 	"Export Prompts": "Exportar Prompts",
 	"Export Prompts": "Exportar Prompts",
+	"External Models": "",
 	"Failed to create API Key.": "Falha ao criar a Chave da API.",
 	"Failed to create API Key.": "Falha ao criar a Chave da API.",
 	"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
 	"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "Informação",
 	"Info": "Informação",
 	"Input commands": "Comandos de entrada",
 	"Input commands": "Comandos de entrada",
 	"Install from Github URL": "Instalar a partir do URL do Github",
 	"Install from Github URL": "Instalar a partir do URL do Github",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Interface",
 	"Interface": "Interface",
 	"Invalid Tag": "Etiqueta Inválida",
 	"Invalid Tag": "Etiqueta Inválida",
 	"January": "Janeiro",
 	"January": "Janeiro",
@@ -267,11 +275,12 @@
 	"Language": "Idioma",
 	"Language": "Idioma",
 	"Last Active": "Último Ativo",
 	"Last Active": "Último Ativo",
 	"Light": "Claro",
 	"Light": "Claro",
-	"Listening...": "Ouvindo...",
 	"LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.",
 	"LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Feito pela Comunidade OpenWebUI",
 	"Made by OpenWebUI Community": "Feito pela Comunidade OpenWebUI",
 	"Make sure to enclose them with": "Certifique-se de colocá-los entre",
 	"Make sure to enclose them with": "Certifique-se de colocá-los entre",
+	"Manage": "",
 	"Manage Models": "Gerenciar Modelos",
 	"Manage Models": "Gerenciar Modelos",
 	"Manage Ollama Models": "Gerenciar Modelos Ollama",
 	"Manage Ollama Models": "Gerenciar Modelos Ollama",
 	"Manage Pipelines": "Gerenciar pipelines",
 	"Manage Pipelines": "Gerenciar pipelines",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "API Ollama desativada",
 	"Ollama API disabled": "API Ollama desativada",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Versão do Ollama",
 	"Ollama Version": "Versão do Ollama",
 	"On": "Ligado",
 	"On": "Ligado",
 	"Only": "Somente",
 	"Only": "Somente",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "Documento PDF (.pdf)",
 	"PDF document (.pdf)": "Documento PDF (.pdf)",
 	"PDF Extract Images (OCR)": "Extrair Imagens de PDF (OCR)",
 	"PDF Extract Images (OCR)": "Extrair Imagens de PDF (OCR)",
 	"pending": "pendente",
 	"pending": "pendente",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Permissão negada ao acessar o microfone: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Permissão negada ao acessar o microfone: {{error}}",
 	"Personalization": "Personalização",
 	"Personalization": "Personalização",
 	"Pipelines": "Pipelines",
 	"Pipelines": "Pipelines",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Ler em Voz Alta",
 	"Read Aloud": "Ler em Voz Alta",
 	"Record voice": "Gravar voz",
 	"Record voice": "Gravar voz",
 	"Redirecting you to OpenWebUI Community": "Redirecionando você para a Comunidade OpenWebUI",
 	"Redirecting you to OpenWebUI Community": "Redirecionando você para a Comunidade OpenWebUI",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Recusado quando não deveria",
 	"Refused when it shouldn't have": "Recusado quando não deveria",
 	"Regenerate": "Regenerar",
 	"Regenerate": "Regenerar",
 	"Release Notes": "Notas de Lançamento",
 	"Release Notes": "Notas de Lançamento",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "Salvar",
 	"Save": "Salvar",
 	"Save & Create": "Salvar e Criar",
 	"Save & Create": "Salvar e Criar",
 	"Save & Update": "Salvar e Atualizar",
 	"Save & Update": "Salvar e Atualizar",
@@ -408,12 +421,14 @@
 	"See what's new": "Veja o que há de novo",
 	"See what's new": "Veja o que há de novo",
 	"Seed": "Semente",
 	"Seed": "Semente",
 	"Select a base model": "Selecione um modelo base",
 	"Select a base model": "Selecione um modelo base",
+	"Select a engine": "",
 	"Select a mode": "Selecione um modo",
 	"Select a mode": "Selecione um modo",
 	"Select a model": "Selecione um modelo",
 	"Select a model": "Selecione um modelo",
 	"Select a pipeline": "Selecione um pipeline",
 	"Select a pipeline": "Selecione um pipeline",
 	"Select a pipeline url": "Selecione uma URL de pipeline",
 	"Select a pipeline url": "Selecione uma URL de pipeline",
 	"Select an Ollama instance": "Selecione uma instância Ollama",
 	"Select an Ollama instance": "Selecione uma instância Ollama",
 	"Select model": "Selecione um modelo",
 	"Select model": "Selecione um modelo",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "O(s) modelo(s) selecionado(s) não suporta(m) entrada(s) de imagem",
 	"Selected model(s) do not support image inputs": "O(s) modelo(s) selecionado(s) não suporta(m) entrada(s) de imagem",
 	"Send": "Enviar",
 	"Send": "Enviar",
 	"Send a Message": "Enviar uma Mensagem",
 	"Send a Message": "Enviar uma Mensagem",
@@ -450,7 +465,6 @@
 	"Source": "Fonte",
 	"Source": "Fonte",
 	"Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}",
 	"Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}",
 	"Speech-to-Text Engine": "Mecanismo de Fala para Texto",
 	"Speech-to-Text Engine": "Mecanismo de Fala para Texto",
-	"SpeechRecognition API is not supported in this browser.": "A API SpeechRecognition não é suportada neste navegador.",
 	"Stop Sequence": "Sequência de Parada",
 	"Stop Sequence": "Sequência de Parada",
 	"STT Settings": "Configurações STT",
 	"STT Settings": "Configurações STT",
 	"Submit": "Enviar",
 	"Submit": "Enviar",
@@ -482,6 +496,7 @@
 	"to": "para",
 	"to": "para",
 	"To access the available model names for downloading,": "Para acessar os nomes de modelo disponíveis para download,",
 	"To access the available model names for downloading,": "Para acessar os nomes de modelo disponíveis para download,",
 	"To access the GGUF models available for downloading,": "Para acessar os modelos GGUF disponíveis para download,",
 	"To access the GGUF models available for downloading,": "Para acessar os modelos GGUF disponíveis para download,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "para a entrada de bate-papo.",
 	"to chat input.": "para a entrada de bate-papo.",
 	"Today": "Hoje",
 	"Today": "Hoje",
 	"Toggle settings": "Alternar configurações",
 	"Toggle settings": "Alternar configurações",
@@ -498,6 +513,7 @@
 	"Update password": "Atualizar senha",
 	"Update password": "Atualizar senha",
 	"Upload a GGUF model": "Carregar um modelo GGUF",
 	"Upload a GGUF model": "Carregar um modelo GGUF",
 	"Upload Files": "Carregar arquivos",
 	"Upload Files": "Carregar arquivos",
+	"Upload Pipeline": "",
 	"Upload Progress": "Progresso do Carregamento",
 	"Upload Progress": "Progresso do Carregamento",
 	"URL Mode": "Modo de URL",
 	"URL Mode": "Modo de URL",
 	"Use '#' in the prompt input to load and select your documents.": "Use '#' na entrada do prompt para carregar e selecionar seus documentos.",
 	"Use '#' in the prompt input to load and select your documents.": "Use '#' na entrada do prompt para carregar e selecionar seus documentos.",
@@ -516,6 +532,7 @@
 	"Warning": "Aviso",
 	"Warning": "Aviso",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Aviso: Se você atualizar ou alterar seu modelo de incorporação, você precisará reimportar todos os documentos.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Aviso: Se você atualizar ou alterar seu modelo de incorporação, você precisará reimportar todos os documentos.",
 	"Web": "Web",
 	"Web": "Web",
+	"Web API": "",
 	"Web Loader Settings": "Configurações do Carregador da Web",
 	"Web Loader Settings": "Configurações do Carregador da Web",
 	"Web Params": "Parâmetros da Web",
 	"Web Params": "Parâmetros da Web",
 	"Web Search": "Pesquisa na Web",
 	"Web Search": "Pesquisa na Web",
@@ -526,18 +543,19 @@
 	"WebUI will make requests to": "WebUI fará solicitações para",
 	"WebUI will make requests to": "WebUI fará solicitações para",
 	"What’s New in": "O que há de novo em",
 	"What’s New in": "O que há de novo em",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Quando o histórico está desativado, novos bate-papos neste navegador não aparecerão em seu histórico em nenhum dos seus dispositivos.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Quando o histórico está desativado, novos bate-papos neste navegador não aparecerão em seu histórico em nenhum dos seus dispositivos.",
-	"Whisper (Local)": "Whisper (Local)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "Espaço de trabalho",
 	"Workspace": "Espaço de trabalho",
 	"Write a prompt suggestion (e.g. Who are you?)": "Escreva uma sugestão de prompt (por exemplo, Quem é você?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Escreva uma sugestão de prompt (por exemplo, Quem é você?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Escreva um resumo em 50 palavras que resuma [tópico ou palavra-chave].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Escreva um resumo em 50 palavras que resuma [tópico ou palavra-chave].",
 	"Yesterday": "Ontem",
 	"Yesterday": "Ontem",
 	"You": "Você",
 	"You": "Você",
+	"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 clone a base model": "Não é possível clonar um modelo base",
 	"You cannot clone a base model": "Não é possível clonar um modelo base",
 	"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 esta conversa",
 	"You have shared this chat": "Você compartilhou esta conversa",
 	"You're a helpful assistant.": "Você é um assistente útil.",
 	"You're a helpful assistant.": "Você é um assistente útil.",
 	"You're now logged in.": "Você está conectado agora.",
 	"You're now logged in.": "Você está conectado agora.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Configurações do carregador do Youtube"
 	"Youtube Loader Settings": "Configurações do carregador do Youtube"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "um usuário",
 	"a user": "um usuário",
 	"About": "Sobre",
 	"About": "Sobre",
 	"Account": "Conta",
 	"Account": "Conta",
+	"Account Activation Pending": "",
 	"Accurate information": "Informações precisas",
 	"Accurate information": "Informações precisas",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Adicionar",
 	"Add": "Adicionar",
@@ -29,6 +30,7 @@
 	"Add User": "Adicionar Usuário",
 	"Add User": "Adicionar Usuário",
 	"Adjusting these settings will apply changes universally to all users.": "Ajustar essas configurações aplicará alterações universalmente a todos os usuários.",
 	"Adjusting these settings will apply changes universally to all users.": "Ajustar essas configurações aplicará alterações universalmente a todos os usuários.",
 	"admin": "administrador",
 	"admin": "administrador",
+	"Admin": "",
 	"Admin Panel": "Painel do Administrador",
 	"Admin Panel": "Painel do Administrador",
 	"Admin Settings": "Configurações do Administrador",
 	"Admin Settings": "Configurações do Administrador",
 	"Advanced Parameters": "Parâmetros Avançados",
 	"Advanced Parameters": "Parâmetros Avançados",
@@ -59,7 +61,6 @@
 	"Audio": "Áudio",
 	"Audio": "Áudio",
 	"August": "Agosto",
 	"August": "Agosto",
 	"Auto-playback response": "Reprodução automática da resposta",
 	"Auto-playback response": "Reprodução automática da resposta",
-	"Auto-send input after 3 sec.": "Enviar entrada automaticamente após 3 segundos.",
 	"AUTOMATIC1111 Base URL": "URL Base do AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL": "URL Base do AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL is required.": "A URL Base do AUTOMATIC1111 é obrigatória.",
 	"AUTOMATIC1111 Base URL is required.": "A URL Base do AUTOMATIC1111 é obrigatória.",
 	"available!": "disponível!",
 	"available!": "disponível!",
@@ -71,6 +72,7 @@
 	"Being lazy": "Ser preguiçoso",
 	"Being lazy": "Ser preguiçoso",
 	"Brave Search API Key": "Chave da API de Pesquisa Admirável",
 	"Brave Search API Key": "Chave da API de Pesquisa Admirável",
 	"Bypass SSL verification for Websites": "Ignorar verificação SSL para sites",
 	"Bypass SSL verification for Websites": "Ignorar verificação SSL para sites",
+	"Call": "",
 	"Cancel": "Cancelar",
 	"Cancel": "Cancelar",
 	"Capabilities": "Capacidades",
 	"Capabilities": "Capacidades",
 	"Change Password": "Alterar Senha",
 	"Change Password": "Alterar Senha",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Parâmetros de Fragmento",
 	"Chunk Params": "Parâmetros de Fragmento",
 	"Chunk Size": "Tamanho do Fragmento",
 	"Chunk Size": "Tamanho do Fragmento",
 	"Citation": "Citação",
 	"Citation": "Citação",
+	"Clear memory": "",
 	"Click here for help.": "Clique aqui para obter ajuda.",
 	"Click here for help.": "Clique aqui para obter ajuda.",
 	"Click here to": "Clique aqui para",
 	"Click here to": "Clique aqui para",
 	"Click here to select": "Clique aqui para selecionar",
 	"Click here to select": "Clique aqui para selecionar",
 	"Click here to select a csv file.": "Clique aqui para selecionar um arquivo csv.",
 	"Click here to select a csv file.": "Clique aqui para selecionar um arquivo csv.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Clique aqui para selecionar documentos.",
 	"Click here to select documents.": "Clique aqui para selecionar documentos.",
 	"click here.": "clique aqui.",
 	"click here.": "clique aqui.",
 	"Click on the user role button to change a user's role.": "Clique no botão de função do usuário para alterar a função de um usuário.",
 	"Click on the user role button to change a user's role.": "Clique no botão de função do usuário para alterar a função de um usuário.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Solicitações simultâneas",
 	"Concurrent Requests": "Solicitações simultâneas",
 	"Confirm Password": "Confirmar Senha",
 	"Confirm Password": "Confirmar Senha",
 	"Connections": "Conexões",
 	"Connections": "Conexões",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Conteúdo",
 	"Content": "Conteúdo",
 	"Context Length": "Comprimento do Contexto",
 	"Context Length": "Comprimento do Contexto",
 	"Continue Response": "Continuar resposta",
 	"Continue Response": "Continuar resposta",
-	"Conversation Mode": "Modo de Conversa",
 	"Copied shared chat URL to clipboard!": "URL de bate-papo compartilhado copiada com sucesso!",
 	"Copied shared chat URL to clipboard!": "URL de bate-papo compartilhado copiada com sucesso!",
 	"Copy": "Copiar",
 	"Copy": "Copiar",
 	"Copy last code block": "Copiar último bloco de código",
 	"Copy last code block": "Copiar último bloco de código",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Padrão (Automatic1111)",
 	"Default (Automatic1111)": "Padrão (Automatic1111)",
 	"Default (SentenceTransformers)": "Padrão (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Padrão (SentenceTransformers)",
 	"Default (Web API)": "Padrão (API Web)",
 	"Default (Web API)": "Padrão (API Web)",
+	"Default (Whisper)": "",
 	"Default Model": "Modelo padrão",
 	"Default Model": "Modelo padrão",
 	"Default model updated": "Modelo padrão atualizado",
 	"Default model updated": "Modelo padrão atualizado",
 	"Default Prompt Suggestions": "Sugestões de Prompt Padrão",
 	"Default Prompt Suggestions": "Sugestões de Prompt Padrão",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Descobrir um prompt",
 	"Discover a prompt": "Descobrir um prompt",
 	"Discover, download, and explore custom prompts": "Descubra, baixe e explore prompts personalizados",
 	"Discover, download, and explore custom prompts": "Descubra, baixe e explore prompts personalizados",
 	"Discover, download, and explore model presets": "Descubra, baixe e explore predefinições de modelo",
 	"Discover, download, and explore model presets": "Descubra, baixe e explore predefinições de modelo",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Exibir o nome de usuário em vez de Você no Bate-papo",
 	"Display the username instead of You in the Chat": "Exibir o nome de usuário em vez de Você no Bate-papo",
 	"Document": "Documento",
 	"Document": "Documento",
 	"Document Settings": "Configurações de Documento",
 	"Document Settings": "Configurações de Documento",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Exportar Mapeamento de Documentos",
 	"Export Documents Mapping": "Exportar Mapeamento de Documentos",
 	"Export Models": "Modelos de Exportação",
 	"Export Models": "Modelos de Exportação",
 	"Export Prompts": "Exportar Prompts",
 	"Export Prompts": "Exportar Prompts",
+	"External Models": "",
 	"Failed to create API Key.": "Falha ao criar a Chave da API.",
 	"Failed to create API Key.": "Falha ao criar a Chave da API.",
 	"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
 	"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "Informação",
 	"Info": "Informação",
 	"Input commands": "Comandos de entrada",
 	"Input commands": "Comandos de entrada",
 	"Install from Github URL": "Instalar a partir do URL do Github",
 	"Install from Github URL": "Instalar a partir do URL do Github",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Interface",
 	"Interface": "Interface",
 	"Invalid Tag": "Etiqueta Inválida",
 	"Invalid Tag": "Etiqueta Inválida",
 	"January": "Janeiro",
 	"January": "Janeiro",
@@ -267,11 +275,12 @@
 	"Language": "Idioma",
 	"Language": "Idioma",
 	"Last Active": "Último Ativo",
 	"Last Active": "Último Ativo",
 	"Light": "Claro",
 	"Light": "Claro",
-	"Listening...": "Ouvindo...",
 	"LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.",
 	"LLMs can make mistakes. Verify important information.": "LLMs podem cometer erros. Verifique informações importantes.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Feito pela Comunidade OpenWebUI",
 	"Made by OpenWebUI Community": "Feito pela Comunidade OpenWebUI",
 	"Make sure to enclose them with": "Certifique-se de colocá-los entre",
 	"Make sure to enclose them with": "Certifique-se de colocá-los entre",
+	"Manage": "",
 	"Manage Models": "Gerenciar Modelos",
 	"Manage Models": "Gerenciar Modelos",
 	"Manage Ollama Models": "Gerenciar Modelos Ollama",
 	"Manage Ollama Models": "Gerenciar Modelos Ollama",
 	"Manage Pipelines": "Gerenciar pipelines",
 	"Manage Pipelines": "Gerenciar pipelines",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "API do Ollama desativada",
 	"Ollama API disabled": "API do Ollama desativada",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Versão do Ollama",
 	"Ollama Version": "Versão do Ollama",
 	"On": "Ligado",
 	"On": "Ligado",
 	"Only": "Somente",
 	"Only": "Somente",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "Documento PDF (.pdf)",
 	"PDF document (.pdf)": "Documento PDF (.pdf)",
 	"PDF Extract Images (OCR)": "Extrair Imagens de PDF (OCR)",
 	"PDF Extract Images (OCR)": "Extrair Imagens de PDF (OCR)",
 	"pending": "pendente",
 	"pending": "pendente",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Permissão negada ao acessar o microfone: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Permissão negada ao acessar o microfone: {{error}}",
 	"Personalization": "Personalização",
 	"Personalization": "Personalização",
 	"Pipelines": "Condutas",
 	"Pipelines": "Condutas",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Ler em Voz Alta",
 	"Read Aloud": "Ler em Voz Alta",
 	"Record voice": "Gravar voz",
 	"Record voice": "Gravar voz",
 	"Redirecting you to OpenWebUI Community": "Redirecionando você para a Comunidade OpenWebUI",
 	"Redirecting you to OpenWebUI Community": "Redirecionando você para a Comunidade OpenWebUI",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Recusado quando não deveria",
 	"Refused when it shouldn't have": "Recusado quando não deveria",
 	"Regenerate": "Regenerar",
 	"Regenerate": "Regenerar",
 	"Release Notes": "Notas de Lançamento",
 	"Release Notes": "Notas de Lançamento",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "Salvar",
 	"Save": "Salvar",
 	"Save & Create": "Salvar e Criar",
 	"Save & Create": "Salvar e Criar",
 	"Save & Update": "Salvar e Atualizar",
 	"Save & Update": "Salvar e Atualizar",
@@ -408,12 +421,14 @@
 	"See what's new": "Veja o que há de novo",
 	"See what's new": "Veja o que há de novo",
 	"Seed": "Semente",
 	"Seed": "Semente",
 	"Select a base model": "Selecione um modelo base",
 	"Select a base model": "Selecione um modelo base",
+	"Select a engine": "",
 	"Select a mode": "Selecione um modo",
 	"Select a mode": "Selecione um modo",
 	"Select a model": "Selecione um modelo",
 	"Select a model": "Selecione um modelo",
 	"Select a pipeline": "Selecione um pipeline",
 	"Select a pipeline": "Selecione um pipeline",
 	"Select a pipeline url": "Selecione um URL de pipeline",
 	"Select a pipeline url": "Selecione um URL de pipeline",
 	"Select an Ollama instance": "Selecione uma instância Ollama",
 	"Select an Ollama instance": "Selecione uma instância Ollama",
 	"Select model": "Selecione um modelo",
 	"Select model": "Selecione um modelo",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "O(s) modelo(s) selecionado(s) não suporta(m) entradas de imagem",
 	"Selected model(s) do not support image inputs": "O(s) modelo(s) selecionado(s) não suporta(m) entradas de imagem",
 	"Send": "Enviar",
 	"Send": "Enviar",
 	"Send a Message": "Enviar uma Mensagem",
 	"Send a Message": "Enviar uma Mensagem",
@@ -450,7 +465,6 @@
 	"Source": "Fonte",
 	"Source": "Fonte",
 	"Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}",
 	"Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}",
 	"Speech-to-Text Engine": "Mecanismo de Fala para Texto",
 	"Speech-to-Text Engine": "Mecanismo de Fala para Texto",
-	"SpeechRecognition API is not supported in this browser.": "A API SpeechRecognition não é suportada neste navegador.",
 	"Stop Sequence": "Sequência de Parada",
 	"Stop Sequence": "Sequência de Parada",
 	"STT Settings": "Configurações STT",
 	"STT Settings": "Configurações STT",
 	"Submit": "Enviar",
 	"Submit": "Enviar",
@@ -482,6 +496,7 @@
 	"to": "para",
 	"to": "para",
 	"To access the available model names for downloading,": "Para acessar os nomes de modelo disponíveis para download,",
 	"To access the available model names for downloading,": "Para acessar os nomes de modelo disponíveis para download,",
 	"To access the GGUF models available for downloading,": "Para acessar os modelos GGUF disponíveis para download,",
 	"To access the GGUF models available for downloading,": "Para acessar os modelos GGUF disponíveis para download,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "para a entrada de bate-papo.",
 	"to chat input.": "para a entrada de bate-papo.",
 	"Today": "Hoje",
 	"Today": "Hoje",
 	"Toggle settings": "Alternar configurações",
 	"Toggle settings": "Alternar configurações",
@@ -498,6 +513,7 @@
 	"Update password": "Atualizar senha",
 	"Update password": "Atualizar senha",
 	"Upload a GGUF model": "Carregar um modelo GGUF",
 	"Upload a GGUF model": "Carregar um modelo GGUF",
 	"Upload Files": "Carregar ficheiros",
 	"Upload Files": "Carregar ficheiros",
+	"Upload Pipeline": "",
 	"Upload Progress": "Progresso do Carregamento",
 	"Upload Progress": "Progresso do Carregamento",
 	"URL Mode": "Modo de URL",
 	"URL Mode": "Modo de URL",
 	"Use '#' in the prompt input to load and select your documents.": "Use '#' na entrada do prompt para carregar e selecionar seus documentos.",
 	"Use '#' in the prompt input to load and select your documents.": "Use '#' na entrada do prompt para carregar e selecionar seus documentos.",
@@ -516,6 +532,7 @@
 	"Warning": "Advertência",
 	"Warning": "Advertência",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Aviso: Se você atualizar ou alterar seu modelo de vetorização, você precisará reimportar todos os documentos.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Aviso: Se você atualizar ou alterar seu modelo de vetorização, você precisará reimportar todos os documentos.",
 	"Web": "Web",
 	"Web": "Web",
+	"Web API": "",
 	"Web Loader Settings": "Configurações do Carregador da Web",
 	"Web Loader Settings": "Configurações do Carregador da Web",
 	"Web Params": "Parâmetros da Web",
 	"Web Params": "Parâmetros da Web",
 	"Web Search": "Pesquisa na Web",
 	"Web Search": "Pesquisa na Web",
@@ -526,18 +543,19 @@
 	"WebUI will make requests to": "WebUI fará solicitações para",
 	"WebUI will make requests to": "WebUI fará solicitações para",
 	"What’s New in": "O que há de novo em",
 	"What’s New in": "O que há de novo em",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Quando o histórico está desativado, novos bate-papos neste navegador não aparecerão em seu histórico em nenhum dos seus dispositivos.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Quando o histórico está desativado, novos bate-papos neste navegador não aparecerão em seu histórico em nenhum dos seus dispositivos.",
-	"Whisper (Local)": "Whisper (Local)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "Espaço de Trabalho",
 	"Workspace": "Espaço de Trabalho",
 	"Write a prompt suggestion (e.g. Who are you?)": "Escreva uma sugestão de prompt (por exemplo, Quem é você?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Escreva uma sugestão de prompt (por exemplo, Quem é você?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Escreva um resumo em 50 palavras que resuma [tópico ou palavra-chave].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Escreva um resumo em 50 palavras que resuma [tópico ou palavra-chave].",
 	"Yesterday": "Ontem",
 	"Yesterday": "Ontem",
 	"You": "Você",
 	"You": "Você",
+	"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 clone a base model": "Não é possível clonar um modelo base",
 	"You cannot clone a base model": "Não é possível clonar um modelo base",
 	"You have no archived conversations.": "Você não tem bate-papos arquivados.",
 	"You have no archived conversations.": "Você não tem bate-papos arquivados.",
 	"You have shared this chat": "Você compartilhou este bate-papo",
 	"You have shared this chat": "Você compartilhou este bate-papo",
 	"You're a helpful assistant.": "Você é um assistente útil.",
 	"You're a helpful assistant.": "Você é um assistente útil.",
 	"You're now logged in.": "Você está conectado agora.",
 	"You're now logged in.": "Você está conectado agora.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Configurações do Carregador do Youtube"
 	"Youtube Loader Settings": "Configurações do Carregador do Youtube"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "пользователь",
 	"a user": "пользователь",
 	"About": "Об",
 	"About": "Об",
 	"Account": "Аккаунт",
 	"Account": "Аккаунт",
+	"Account Activation Pending": "",
 	"Accurate information": "Точная информация",
 	"Accurate information": "Точная информация",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Добавить",
 	"Add": "Добавить",
@@ -29,6 +30,7 @@
 	"Add User": "Добавьте пользователя",
 	"Add User": "Добавьте пользователя",
 	"Adjusting these settings will apply changes universally to all users.": "Регулирующий этих настроек приведет к изменениям для все пользователей.",
 	"Adjusting these settings will apply changes universally to all users.": "Регулирующий этих настроек приведет к изменениям для все пользователей.",
 	"admin": "админ",
 	"admin": "админ",
+	"Admin": "",
 	"Admin Panel": "Панель админ",
 	"Admin Panel": "Панель админ",
 	"Admin Settings": "Настройки админ",
 	"Admin Settings": "Настройки админ",
 	"Advanced Parameters": "Расширенные Параметры",
 	"Advanced Parameters": "Расширенные Параметры",
@@ -59,7 +61,6 @@
 	"Audio": "Аудио",
 	"Audio": "Аудио",
 	"August": "Август",
 	"August": "Август",
 	"Auto-playback response": "Автоматическое воспроизведение ответа",
 	"Auto-playback response": "Автоматическое воспроизведение ответа",
-	"Auto-send input after 3 sec.": "Автоматическая отправка ввода через 3 секунды.",
 	"AUTOMATIC1111 Base URL": "Базовый адрес URL AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL": "Базовый адрес URL AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Необходима базовый адрес URL.",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Необходима базовый адрес URL.",
 	"available!": "доступный!",
 	"available!": "доступный!",
@@ -71,6 +72,7 @@
 	"Being lazy": "ленивый",
 	"Being lazy": "ленивый",
 	"Brave Search API Key": "Ключ API поиска Brave",
 	"Brave Search API Key": "Ключ API поиска Brave",
 	"Bypass SSL verification for Websites": "Обход SSL-проверки для веб-сайтов",
 	"Bypass SSL verification for Websites": "Обход SSL-проверки для веб-сайтов",
+	"Call": "",
 	"Cancel": "Аннулировать",
 	"Cancel": "Аннулировать",
 	"Capabilities": "Возможности",
 	"Capabilities": "Возможности",
 	"Change Password": "Изменить пароль",
 	"Change Password": "Изменить пароль",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Параметры фрагментов",
 	"Chunk Params": "Параметры фрагментов",
 	"Chunk Size": "Размер фрагмента",
 	"Chunk Size": "Размер фрагмента",
 	"Citation": "Цитата",
 	"Citation": "Цитата",
+	"Clear memory": "",
 	"Click here for help.": "Нажмите здесь для помощи.",
 	"Click here for help.": "Нажмите здесь для помощи.",
 	"Click here to": "Нажмите здесь чтобы",
 	"Click here to": "Нажмите здесь чтобы",
 	"Click here to select": "Нажмите тут чтобы выберите",
 	"Click here to select": "Нажмите тут чтобы выберите",
 	"Click here to select a csv file.": "Нажмите здесь чтобы выбрать файл csv.",
 	"Click here to select a csv file.": "Нажмите здесь чтобы выбрать файл csv.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Нажмите здесь чтобы выберите документы.",
 	"Click here to select documents.": "Нажмите здесь чтобы выберите документы.",
 	"click here.": "нажмите здесь.",
 	"click here.": "нажмите здесь.",
 	"Click on the user role button to change a user's role.": "Нажмите кнопку роли пользователя чтобы изменить роль пользователя.",
 	"Click on the user role button to change a user's role.": "Нажмите кнопку роли пользователя чтобы изменить роль пользователя.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Одновременные запросы",
 	"Concurrent Requests": "Одновременные запросы",
 	"Confirm Password": "Подтвердите пароль",
 	"Confirm Password": "Подтвердите пароль",
 	"Connections": "Соединение",
 	"Connections": "Соединение",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Содержание",
 	"Content": "Содержание",
 	"Context Length": "Длина контексту",
 	"Context Length": "Длина контексту",
 	"Continue Response": "Продолжить ответ",
 	"Continue Response": "Продолжить ответ",
-	"Conversation Mode": "Режим разговора",
 	"Copied shared chat URL to clipboard!": "Копирование общей ссылки чат в буфер обмена!",
 	"Copied shared chat URL to clipboard!": "Копирование общей ссылки чат в буфер обмена!",
 	"Copy": "Копировать",
 	"Copy": "Копировать",
 	"Copy last code block": "Копировать последний блок кода",
 	"Copy last code block": "Копировать последний блок кода",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "По умолчанию (Automatic1111)",
 	"Default (Automatic1111)": "По умолчанию (Automatic1111)",
 	"Default (SentenceTransformers)": "По умолчанию (SentenceTransformers)",
 	"Default (SentenceTransformers)": "По умолчанию (SentenceTransformers)",
 	"Default (Web API)": "По умолчанию (Web API)",
 	"Default (Web API)": "По умолчанию (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "Модель по умолчанию",
 	"Default Model": "Модель по умолчанию",
 	"Default model updated": "Модель по умолчанию обновлена",
 	"Default model updated": "Модель по умолчанию обновлена",
 	"Default Prompt Suggestions": "Предложения промтов по умолчанию",
 	"Default Prompt Suggestions": "Предложения промтов по умолчанию",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Найти промт",
 	"Discover a prompt": "Найти промт",
 	"Discover, download, and explore custom prompts": "Находите, загружайте и исследуйте настраиваемые промты",
 	"Discover, download, and explore custom prompts": "Находите, загружайте и исследуйте настраиваемые промты",
 	"Discover, download, and explore model presets": "Находите, загружайте и исследуйте предустановки модели",
 	"Discover, download, and explore model presets": "Находите, загружайте и исследуйте предустановки модели",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Отображать имя пользователя вместо 'Вы' в чате",
 	"Display the username instead of You in the Chat": "Отображать имя пользователя вместо 'Вы' в чате",
 	"Document": "Документ",
 	"Document": "Документ",
 	"Document Settings": "Настройки документа",
 	"Document Settings": "Настройки документа",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Экспортировать отображение документов",
 	"Export Documents Mapping": "Экспортировать отображение документов",
 	"Export Models": "Экспорт моделей",
 	"Export Models": "Экспорт моделей",
 	"Export Prompts": "Экспортировать промты",
 	"Export Prompts": "Экспортировать промты",
+	"External Models": "",
 	"Failed to create API Key.": "Не удалось создать ключ API.",
 	"Failed to create API Key.": "Не удалось создать ключ API.",
 	"Failed to read clipboard contents": "Не удалось прочитать содержимое буфера обмена",
 	"Failed to read clipboard contents": "Не удалось прочитать содержимое буфера обмена",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "Информация",
 	"Info": "Информация",
 	"Input commands": "Введите команды",
 	"Input commands": "Введите команды",
 	"Install from Github URL": "Установка с URL-адреса Github",
 	"Install from Github URL": "Установка с URL-адреса Github",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Интерфейс",
 	"Interface": "Интерфейс",
 	"Invalid Tag": "Недопустимый тег",
 	"Invalid Tag": "Недопустимый тег",
 	"January": "Январь",
 	"January": "Январь",
@@ -267,11 +275,12 @@
 	"Language": "Язык",
 	"Language": "Язык",
 	"Last Active": "Последний активный",
 	"Last Active": "Последний активный",
 	"Light": "Светлый",
 	"Light": "Светлый",
-	"Listening...": "Слушаю...",
 	"LLMs can make mistakes. Verify important information.": "LLMs могут допускать ошибки. Проверяйте важную информацию.",
 	"LLMs can make mistakes. Verify important information.": "LLMs могут допускать ошибки. Проверяйте важную информацию.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Сделано сообществом OpenWebUI",
 	"Made by OpenWebUI Community": "Сделано сообществом OpenWebUI",
 	"Make sure to enclose them with": "Убедитесь, что они заключены в",
 	"Make sure to enclose them with": "Убедитесь, что они заключены в",
+	"Manage": "",
 	"Manage Models": "Управление моделями",
 	"Manage Models": "Управление моделями",
 	"Manage Ollama Models": "Управление моделями Ollama",
 	"Manage Ollama Models": "Управление моделями Ollama",
 	"Manage Pipelines": "Управление конвейерами",
 	"Manage Pipelines": "Управление конвейерами",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "Ollama API отключен",
 	"Ollama API disabled": "Ollama API отключен",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Версия Ollama",
 	"Ollama Version": "Версия Ollama",
 	"On": "Включено.",
 	"On": "Включено.",
 	"Only": "Только",
 	"Only": "Только",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF-документ (.pdf)",
 	"PDF document (.pdf)": "PDF-документ (.pdf)",
 	"PDF Extract Images (OCR)": "Извлечение изображений из PDF (OCR)",
 	"PDF Extract Images (OCR)": "Извлечение изображений из PDF (OCR)",
 	"pending": "ожидание",
 	"pending": "ожидание",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Отказано в доступе к микрофону: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Отказано в доступе к микрофону: {{error}}",
 	"Personalization": "Персонализация",
 	"Personalization": "Персонализация",
 	"Pipelines": "Трубопроводов",
 	"Pipelines": "Трубопроводов",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Прочитать вслух",
 	"Read Aloud": "Прочитать вслух",
 	"Record voice": "Записать голос",
 	"Record voice": "Записать голос",
 	"Redirecting you to OpenWebUI Community": "Перенаправляем вас в сообщество OpenWebUI",
 	"Redirecting you to OpenWebUI Community": "Перенаправляем вас в сообщество OpenWebUI",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Отказано в доступе, когда это не должно было произойти.",
 	"Refused when it shouldn't have": "Отказано в доступе, когда это не должно было произойти.",
 	"Regenerate": "Перезаписать",
 	"Regenerate": "Перезаписать",
 	"Release Notes": "Примечания к выпуску",
 	"Release Notes": "Примечания к выпуску",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Розовое сосновое дерево",
 	"Rosé Pine": "Розовое сосновое дерево",
 	"Rosé Pine Dawn": "Розовое сосновое дерево рассвет",
 	"Rosé Pine Dawn": "Розовое сосновое дерево рассвет",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "Сохранить",
 	"Save": "Сохранить",
 	"Save & Create": "Сохранить и создать",
 	"Save & Create": "Сохранить и создать",
 	"Save & Update": "Сохранить и обновить",
 	"Save & Update": "Сохранить и обновить",
@@ -409,12 +422,14 @@
 	"See what's new": "Посмотреть, что нового",
 	"See what's new": "Посмотреть, что нового",
 	"Seed": "Сид",
 	"Seed": "Сид",
 	"Select a base model": "Выбор базовой модели",
 	"Select a base model": "Выбор базовой модели",
+	"Select a engine": "",
 	"Select a mode": "Выберите режим",
 	"Select a mode": "Выберите режим",
 	"Select a model": "Выберите модель",
 	"Select a model": "Выберите модель",
 	"Select a pipeline": "Выбор конвейера",
 	"Select a pipeline": "Выбор конвейера",
 	"Select a pipeline url": "Выберите URL-адрес конвейера",
 	"Select a pipeline url": "Выберите URL-адрес конвейера",
 	"Select an Ollama instance": "Выберите экземпляр Ollama",
 	"Select an Ollama instance": "Выберите экземпляр Ollama",
 	"Select model": "Выберите модель",
 	"Select model": "Выберите модель",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "Выбранные модели не поддерживают ввод изображений",
 	"Selected model(s) do not support image inputs": "Выбранные модели не поддерживают ввод изображений",
 	"Send": "Отправить",
 	"Send": "Отправить",
 	"Send a Message": "Отправить сообщение",
 	"Send a Message": "Отправить сообщение",
@@ -451,7 +466,6 @@
 	"Source": "Источник",
 	"Source": "Источник",
 	"Speech recognition error: {{error}}": "Ошибка распознавания речи: {{error}}",
 	"Speech recognition error: {{error}}": "Ошибка распознавания речи: {{error}}",
 	"Speech-to-Text Engine": "Система распознавания речи",
 	"Speech-to-Text Engine": "Система распознавания речи",
-	"SpeechRecognition API is not supported in this browser.": "API распознавания речи не поддерживается в этом браузере.",
 	"Stop Sequence": "Последовательность остановки",
 	"Stop Sequence": "Последовательность остановки",
 	"STT Settings": "Настройки распознавания речи",
 	"STT Settings": "Настройки распознавания речи",
 	"Submit": "Отправить",
 	"Submit": "Отправить",
@@ -483,6 +497,7 @@
 	"to": "в",
 	"to": "в",
 	"To access the available model names for downloading,": "Чтобы получить доступ к доступным для загрузки именам моделей,",
 	"To access the available model names for downloading,": "Чтобы получить доступ к доступным для загрузки именам моделей,",
 	"To access the GGUF models available for downloading,": "Чтобы получить доступ к моделям GGUF, доступным для загрузки,",
 	"To access the GGUF models available for downloading,": "Чтобы получить доступ к моделям GGUF, доступным для загрузки,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "в чате.",
 	"to chat input.": "в чате.",
 	"Today": "Сегодня",
 	"Today": "Сегодня",
 	"Toggle settings": "Переключить настройки",
 	"Toggle settings": "Переключить настройки",
@@ -499,6 +514,7 @@
 	"Update password": "Обновить пароль",
 	"Update password": "Обновить пароль",
 	"Upload a GGUF model": "Загрузить модель GGUF",
 	"Upload a GGUF model": "Загрузить модель GGUF",
 	"Upload Files": "Загрузка файлов",
 	"Upload Files": "Загрузка файлов",
+	"Upload Pipeline": "",
 	"Upload Progress": "Прогресс загрузки",
 	"Upload Progress": "Прогресс загрузки",
 	"URL Mode": "Режим URL",
 	"URL Mode": "Режим URL",
 	"Use '#' in the prompt input to load and select your documents.": "Используйте '#' в поле ввода промпта для загрузки и выбора ваших документов.",
 	"Use '#' in the prompt input to load and select your documents.": "Используйте '#' в поле ввода промпта для загрузки и выбора ваших документов.",
@@ -517,6 +533,7 @@
 	"Warning": "Предупреждение",
 	"Warning": "Предупреждение",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Предупреждение: Если вы обновите или измените модель эмбеддинга, вам нужно будет повторно импортировать все документы.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Предупреждение: Если вы обновите или измените модель эмбеддинга, вам нужно будет повторно импортировать все документы.",
 	"Web": "Веб",
 	"Web": "Веб",
+	"Web API": "",
 	"Web Loader Settings": "Настройки загрузчика Web",
 	"Web Loader Settings": "Настройки загрузчика Web",
 	"Web Params": "Параметры Web",
 	"Web Params": "Параметры Web",
 	"Web Search": "Веб-поиск",
 	"Web Search": "Веб-поиск",
@@ -527,18 +544,19 @@
 	"WebUI will make requests to": "WebUI будет отправлять запросы на",
 	"WebUI will make requests to": "WebUI будет отправлять запросы на",
 	"What’s New in": "Что нового в",
 	"What’s New in": "Что нового в",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Когда история отключена, новые чаты в этом браузере не будут отображаться в вашей истории на любом из ваших устройств.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Когда история отключена, новые чаты в этом браузере не будут отображаться в вашей истории на любом из ваших устройств.",
-	"Whisper (Local)": "Шепот (локальный)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "Рабочая область",
 	"Workspace": "Рабочая область",
 	"Write a prompt suggestion (e.g. Who are you?)": "Напишите предложение промпта (например, Кто вы?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Напишите предложение промпта (например, Кто вы?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Напишите резюме в 50 словах, которое кратко описывает [тему или ключевое слово].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Напишите резюме в 50 словах, которое кратко описывает [тему или ключевое слово].",
 	"Yesterday": "Вчера",
 	"Yesterday": "Вчера",
 	"You": "Вы",
 	"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 clone a base model": "Клонировать базовую модель невозможно",
 	"You cannot clone a base model": "Клонировать базовую модель невозможно",
 	"You have no archived conversations.": "У вас нет архивированных бесед.",
 	"You have no archived conversations.": "У вас нет архивированных бесед.",
 	"You have shared this chat": "Вы поделились этим чатом",
 	"You have shared this chat": "Вы поделились этим чатом",
 	"You're a helpful assistant.": "Вы полезный ассистент.",
 	"You're a helpful assistant.": "Вы полезный ассистент.",
 	"You're now logged in.": "Вы вошли в систему.",
 	"You're now logged in.": "Вы вошли в систему.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Ютуб",
 	"Youtube": "Ютуб",
 	"Youtube Loader Settings": "Настройки загрузчика YouTube"
 	"Youtube Loader Settings": "Настройки загрузчика YouTube"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "корисник",
 	"a user": "корисник",
 	"About": "О нама",
 	"About": "О нама",
 	"Account": "Налог",
 	"Account": "Налог",
+	"Account Activation Pending": "",
 	"Accurate information": "Прецизне информације",
 	"Accurate information": "Прецизне информације",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Додај",
 	"Add": "Додај",
@@ -29,6 +30,7 @@
 	"Add User": "Додај корисника",
 	"Add User": "Додај корисника",
 	"Adjusting these settings will apply changes universally to all users.": "Прилагођавање ових подешавања ће применити промене на све кориснике.",
 	"Adjusting these settings will apply changes universally to all users.": "Прилагођавање ових подешавања ће применити промене на све кориснике.",
 	"admin": "админ",
 	"admin": "админ",
+	"Admin": "",
 	"Admin Panel": "Админ табла",
 	"Admin Panel": "Админ табла",
 	"Admin Settings": "Админ подешавања",
 	"Admin Settings": "Админ подешавања",
 	"Advanced Parameters": "Напредни параметри",
 	"Advanced Parameters": "Напредни параметри",
@@ -59,7 +61,6 @@
 	"Audio": "Звук",
 	"Audio": "Звук",
 	"August": "Август",
 	"August": "Август",
 	"Auto-playback response": "Самостално пуштање одговора",
 	"Auto-playback response": "Самостално пуштање одговора",
-	"Auto-send input after 3 sec.": "Самостално слање уноса након 3 сек.",
 	"AUTOMATIC1111 Base URL": "Основна адреса за AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL": "Основна адреса за AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL is required.": "Потребна је основна адреса за AUTOMATIC1111.",
 	"AUTOMATIC1111 Base URL is required.": "Потребна је основна адреса за AUTOMATIC1111.",
 	"available!": "доступно!",
 	"available!": "доступно!",
@@ -71,6 +72,7 @@
 	"Being lazy": "Бити лењ",
 	"Being lazy": "Бити лењ",
 	"Brave Search API Key": "Апи кључ за храбру претрагу",
 	"Brave Search API Key": "Апи кључ за храбру претрагу",
 	"Bypass SSL verification for Websites": "Заобиђи SSL потврђивање за веб странице",
 	"Bypass SSL verification for Websites": "Заобиђи SSL потврђивање за веб странице",
+	"Call": "",
 	"Cancel": "Откажи",
 	"Cancel": "Откажи",
 	"Capabilities": "Могућности",
 	"Capabilities": "Могућности",
 	"Change Password": "Промени лозинку",
 	"Change Password": "Промени лозинку",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Параметри делова",
 	"Chunk Params": "Параметри делова",
 	"Chunk Size": "Величина дела",
 	"Chunk Size": "Величина дела",
 	"Citation": "Цитат",
 	"Citation": "Цитат",
+	"Clear memory": "",
 	"Click here for help.": "Кликните овде за помоћ.",
 	"Click here for help.": "Кликните овде за помоћ.",
 	"Click here to": "Кликните овде да",
 	"Click here to": "Кликните овде да",
 	"Click here to select": "Кликните овде да изаберете",
 	"Click here to select": "Кликните овде да изаберете",
 	"Click here to select a csv file.": "Кликните овде да изаберете csv датотеку.",
 	"Click here to select a csv file.": "Кликните овде да изаберете csv датотеку.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Кликните овде да изаберете документе.",
 	"Click here to select documents.": "Кликните овде да изаберете документе.",
 	"click here.": "кликните овде.",
 	"click here.": "кликните овде.",
 	"Click on the user role button to change a user's role.": "Кликните на дугме за улогу корисника да промените улогу корисника.",
 	"Click on the user role button to change a user's role.": "Кликните на дугме за улогу корисника да промените улогу корисника.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Упоредни захтеви",
 	"Concurrent Requests": "Упоредни захтеви",
 	"Confirm Password": "Потврди лозинку",
 	"Confirm Password": "Потврди лозинку",
 	"Connections": "Везе",
 	"Connections": "Везе",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Садржај",
 	"Content": "Садржај",
 	"Context Length": "Дужина контекста",
 	"Context Length": "Дужина контекста",
 	"Continue Response": "Настави одговор",
 	"Continue Response": "Настави одговор",
-	"Conversation Mode": "Режим разговарања",
 	"Copied shared chat URL to clipboard!": "Адреса дељеног ћаскања ископирана у оставу!",
 	"Copied shared chat URL to clipboard!": "Адреса дељеног ћаскања ископирана у оставу!",
 	"Copy": "Копирај",
 	"Copy": "Копирај",
 	"Copy last code block": "Копирај последњи блок кода",
 	"Copy last code block": "Копирај последњи блок кода",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Подразумевано (Automatic1111)",
 	"Default (Automatic1111)": "Подразумевано (Automatic1111)",
 	"Default (SentenceTransformers)": "Подразумевано (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Подразумевано (SentenceTransformers)",
 	"Default (Web API)": "Подразумевано (Web API)",
 	"Default (Web API)": "Подразумевано (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "Подразумевани модел",
 	"Default Model": "Подразумевани модел",
 	"Default model updated": "Подразумевани модел ажуриран",
 	"Default model updated": "Подразумевани модел ажуриран",
 	"Default Prompt Suggestions": "Подразумевани предлози упита",
 	"Default Prompt Suggestions": "Подразумевани предлози упита",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Откриј упит",
 	"Discover a prompt": "Откриј упит",
 	"Discover, download, and explore custom prompts": "Откријте, преузмите и истражите прилагођене упите",
 	"Discover, download, and explore custom prompts": "Откријте, преузмите и истражите прилагођене упите",
 	"Discover, download, and explore model presets": "Откријте, преузмите и истражите образце модела",
 	"Discover, download, and explore model presets": "Откријте, преузмите и истражите образце модела",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Прикажи корисничко име уместо Ти у чату",
 	"Display the username instead of You in the Chat": "Прикажи корисничко име уместо Ти у чату",
 	"Document": "Документ",
 	"Document": "Документ",
 	"Document Settings": "Подешавања документа",
 	"Document Settings": "Подешавања документа",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Извези мапирање докумената",
 	"Export Documents Mapping": "Извези мапирање докумената",
 	"Export Models": "Извези моделе",
 	"Export Models": "Извези моделе",
 	"Export Prompts": "Извези упите",
 	"Export Prompts": "Извези упите",
+	"External Models": "",
 	"Failed to create API Key.": "Неуспешно стварање API кључа.",
 	"Failed to create API Key.": "Неуспешно стварање API кључа.",
 	"Failed to read clipboard contents": "Неуспешно читање садржаја оставе",
 	"Failed to read clipboard contents": "Неуспешно читање садржаја оставе",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "Инфо",
 	"Info": "Инфо",
 	"Input commands": "Унеси наредбе",
 	"Input commands": "Унеси наредбе",
 	"Install from Github URL": "Инсталирај из Гитхуб УРЛ адресе",
 	"Install from Github URL": "Инсталирај из Гитхуб УРЛ адресе",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Изглед",
 	"Interface": "Изглед",
 	"Invalid Tag": "Неисправна ознака",
 	"Invalid Tag": "Неисправна ознака",
 	"January": "Јануар",
 	"January": "Јануар",
@@ -267,11 +275,12 @@
 	"Language": "Језик",
 	"Language": "Језик",
 	"Last Active": "Последња активност",
 	"Last Active": "Последња активност",
 	"Light": "Светла",
 	"Light": "Светла",
-	"Listening...": "Слушам...",
 	"LLMs can make mistakes. Verify important information.": "ВЈМ-ови (LLM-ови) могу правити грешке. Проверите важне податке.",
 	"LLMs can make mistakes. Verify important information.": "ВЈМ-ови (LLM-ови) могу правити грешке. Проверите важне податке.",
+	"Local Models": "",
 	"LTR": "ЛНД",
 	"LTR": "ЛНД",
 	"Made by OpenWebUI Community": "Израдила OpenWebUI заједница",
 	"Made by OpenWebUI Community": "Израдила OpenWebUI заједница",
 	"Make sure to enclose them with": "Уверите се да их затворите са",
 	"Make sure to enclose them with": "Уверите се да их затворите са",
+	"Manage": "",
 	"Manage Models": "Управљај моделима",
 	"Manage Models": "Управљај моделима",
 	"Manage Ollama Models": "Управљај Ollama моделима",
 	"Manage Ollama Models": "Управљај Ollama моделима",
 	"Manage Pipelines": "Управљање цевоводима",
 	"Manage Pipelines": "Управљање цевоводима",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Оллама АПИ",
 	"Ollama API": "Оллама АПИ",
 	"Ollama API disabled": "Оллама АПИ онемогућен",
 	"Ollama API disabled": "Оллама АПИ онемогућен",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Издање Ollama-е",
 	"Ollama Version": "Издање Ollama-е",
 	"On": "Укључено",
 	"On": "Укључено",
 	"Only": "Само",
 	"Only": "Само",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF документ (.pdf)",
 	"PDF document (.pdf)": "PDF документ (.pdf)",
 	"PDF Extract Images (OCR)": "Извлачење PDF слика (OCR)",
 	"PDF Extract Images (OCR)": "Извлачење PDF слика (OCR)",
 	"pending": "на чекању",
 	"pending": "на чекању",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Приступ микрофону је одбијен: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Приступ микрофону је одбијен: {{error}}",
 	"Personalization": "Прилагођавање",
 	"Personalization": "Прилагођавање",
 	"Pipelines": "Цевоводи",
 	"Pipelines": "Цевоводи",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Прочитај наглас",
 	"Read Aloud": "Прочитај наглас",
 	"Record voice": "Сними глас",
 	"Record voice": "Сними глас",
 	"Redirecting you to OpenWebUI Community": "Преусмеравање на OpenWebUI заједницу",
 	"Redirecting you to OpenWebUI Community": "Преусмеравање на OpenWebUI заједницу",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Одбијено када није требало",
 	"Refused when it shouldn't have": "Одбијено када није требало",
 	"Regenerate": "Регенериши",
 	"Regenerate": "Регенериши",
 	"Release Notes": "Напомене о издању",
 	"Release Notes": "Напомене о издању",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "ДНЛ",
 	"RTL": "ДНЛ",
+	"Running": "",
 	"Save": "Сачувај",
 	"Save": "Сачувај",
 	"Save & Create": "Сачувај и направи",
 	"Save & Create": "Сачувај и направи",
 	"Save & Update": "Сачувај и ажурирај",
 	"Save & Update": "Сачувај и ажурирај",
@@ -408,12 +421,14 @@
 	"See what's new": "Погледај шта је ново",
 	"See what's new": "Погледај шта је ново",
 	"Seed": "Семе",
 	"Seed": "Семе",
 	"Select a base model": "Избор основног модела",
 	"Select a base model": "Избор основног модела",
+	"Select a engine": "",
 	"Select a mode": "Изабери режим",
 	"Select a mode": "Изабери режим",
 	"Select a model": "Изабери модел",
 	"Select a model": "Изабери модел",
 	"Select a pipeline": "Избор цевовода",
 	"Select a pipeline": "Избор цевовода",
 	"Select a pipeline url": "Избор урл адресе цевовода",
 	"Select a pipeline url": "Избор урл адресе цевовода",
 	"Select an Ollama instance": "Изабери Ollama инстанцу",
 	"Select an Ollama instance": "Изабери Ollama инстанцу",
 	"Select model": "Изабери модел",
 	"Select model": "Изабери модел",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "Изабрани модели не подржавају уносе слика",
 	"Selected model(s) do not support image inputs": "Изабрани модели не подржавају уносе слика",
 	"Send": "Пошаљи",
 	"Send": "Пошаљи",
 	"Send a Message": "Пошаљи поруку",
 	"Send a Message": "Пошаљи поруку",
@@ -450,7 +465,6 @@
 	"Source": "Извор",
 	"Source": "Извор",
 	"Speech recognition error: {{error}}": "Грешка у препознавању говора: {{error}}",
 	"Speech recognition error: {{error}}": "Грешка у препознавању говора: {{error}}",
 	"Speech-to-Text Engine": "Мотор за говор у текст",
 	"Speech-to-Text Engine": "Мотор за говор у текст",
-	"SpeechRecognition API is not supported in this browser.": "API за препознавање говора није подржан у овом прегледачу.",
 	"Stop Sequence": "Секвенца заустављања",
 	"Stop Sequence": "Секвенца заустављања",
 	"STT Settings": "STT подешавања",
 	"STT Settings": "STT подешавања",
 	"Submit": "Пошаљи",
 	"Submit": "Пошаљи",
@@ -482,6 +496,7 @@
 	"to": "до",
 	"to": "до",
 	"To access the available model names for downloading,": "Да бисте приступили доступним именима модела за преузимање,",
 	"To access the available model names for downloading,": "Да бисте приступили доступним именима модела за преузимање,",
 	"To access the GGUF models available for downloading,": "Да бисте приступили GGUF моделима доступним за преузимање,",
 	"To access the GGUF models available for downloading,": "Да бисте приступили GGUF моделима доступним за преузимање,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "у унос ћаскања.",
 	"to chat input.": "у унос ћаскања.",
 	"Today": "Данас",
 	"Today": "Данас",
 	"Toggle settings": "Пребаци подешавања",
 	"Toggle settings": "Пребаци подешавања",
@@ -498,6 +513,7 @@
 	"Update password": "Ажурирај лозинку",
 	"Update password": "Ажурирај лозинку",
 	"Upload a GGUF model": "Отпреми GGUF модел",
 	"Upload a GGUF model": "Отпреми GGUF модел",
 	"Upload Files": "Отпремање датотека",
 	"Upload Files": "Отпремање датотека",
+	"Upload Pipeline": "",
 	"Upload Progress": "Напредак отпремања",
 	"Upload Progress": "Напредак отпремања",
 	"URL Mode": "Режим адресе",
 	"URL Mode": "Режим адресе",
 	"Use '#' in the prompt input to load and select your documents.": "Користи '#' у уносу упита да учитате и изаберете ваше документе.",
 	"Use '#' in the prompt input to load and select your documents.": "Користи '#' у уносу упита да учитате и изаберете ваше документе.",
@@ -516,6 +532,7 @@
 	"Warning": "Упозорење",
 	"Warning": "Упозорење",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Упозорење: ако ажурирате или промените ваш модел уградње, мораћете поново да увезете све документе.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Упозорење: ако ажурирате или промените ваш модел уградње, мораћете поново да увезете све документе.",
 	"Web": "Веб",
 	"Web": "Веб",
+	"Web API": "",
 	"Web Loader Settings": "Подешавања веб учитавача",
 	"Web Loader Settings": "Подешавања веб учитавача",
 	"Web Params": "Веб параметри",
 	"Web Params": "Веб параметри",
 	"Web Search": "Wеб претрага",
 	"Web Search": "Wеб претрага",
@@ -526,18 +543,19 @@
 	"WebUI will make requests to": "Веб интерфејс ће слати захтеве на",
 	"WebUI will make requests to": "Веб интерфејс ће слати захтеве на",
 	"What’s New in": "Шта је ново у",
 	"What’s New in": "Шта је ново у",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Када је историја искључена, нова ћаскања у овом прегледачу неће се појавити у вашој историји на било ком вашем уређају.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Када је историја искључена, нова ћаскања у овом прегледачу неће се појавити у вашој историји на било ком вашем уређају.",
-	"Whisper (Local)": "Whisper (локално)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "Радни простор",
 	"Workspace": "Радни простор",
 	"Write a prompt suggestion (e.g. Who are you?)": "Напишите предлог упита (нпр. „ко си ти?“)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Напишите предлог упита (нпр. „ко си ти?“)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Напишите сажетак у 50 речи који резимира [тему или кључну реч].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Напишите сажетак у 50 речи који резимира [тему или кључну реч].",
 	"Yesterday": "Јуче",
 	"Yesterday": "Јуче",
 	"You": "Ти",
 	"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 clone a base model": "Не можеш клонирати основни модел",
 	"You cannot clone a base model": "Не можеш клонирати основни модел",
 	"You have no archived conversations.": "Немате архивиране разговоре.",
 	"You have no archived conversations.": "Немате архивиране разговоре.",
 	"You have shared this chat": "Поделили сте ово ћаскање",
 	"You have shared this chat": "Поделили сте ово ћаскање",
 	"You're a helpful assistant.": "Ти си користан помоћник.",
 	"You're a helpful assistant.": "Ти си користан помоћник.",
 	"You're now logged in.": "Сада сте пријављени.",
 	"You're now logged in.": "Сада сте пријављени.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Јутјуб",
 	"Youtube": "Јутјуб",
 	"Youtube Loader Settings": "Подешавања Јутјуб учитавача"
 	"Youtube Loader Settings": "Подешавања Јутјуб учитавача"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "en användare",
 	"a user": "en användare",
 	"About": "Om",
 	"About": "Om",
 	"Account": "Konto",
 	"Account": "Konto",
+	"Account Activation Pending": "",
 	"Accurate information": "Exakt information",
 	"Accurate information": "Exakt information",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Lägg till",
 	"Add": "Lägg till",
@@ -29,6 +30,7 @@
 	"Add User": "Lägg till användare",
 	"Add User": "Lägg till användare",
 	"Adjusting these settings will apply changes universally to all users.": "Justering av dessa inställningar kommer att tillämpa ändringar universellt för alla användare.",
 	"Adjusting these settings will apply changes universally to all users.": "Justering av dessa inställningar kommer att tillämpa ändringar universellt för alla användare.",
 	"admin": "administratör",
 	"admin": "administratör",
+	"Admin": "",
 	"Admin Panel": "Administrationspanel",
 	"Admin Panel": "Administrationspanel",
 	"Admin Settings": "Administratörsinställningar",
 	"Admin Settings": "Administratörsinställningar",
 	"Advanced Parameters": "Avancerade parametrar",
 	"Advanced Parameters": "Avancerade parametrar",
@@ -59,7 +61,6 @@
 	"Audio": "Ljud",
 	"Audio": "Ljud",
 	"August": "Augusti",
 	"August": "Augusti",
 	"Auto-playback response": "Automatisk uppspelning",
 	"Auto-playback response": "Automatisk uppspelning",
-	"Auto-send input after 3 sec.": "Skicka automatiskt indata efter 3 sek.",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 bas-URL",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 bas-URL",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 bas-URL krävs.",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 bas-URL krävs.",
 	"available!": "tillgänglig!",
 	"available!": "tillgänglig!",
@@ -71,6 +72,7 @@
 	"Being lazy": "Lägg till",
 	"Being lazy": "Lägg till",
 	"Brave Search API Key": "API-nyckel för modig sökning",
 	"Brave Search API Key": "API-nyckel för modig sökning",
 	"Bypass SSL verification for Websites": "Kringgå SSL-verifiering för webbplatser",
 	"Bypass SSL verification for Websites": "Kringgå SSL-verifiering för webbplatser",
+	"Call": "",
 	"Cancel": "Avbryt",
 	"Cancel": "Avbryt",
 	"Capabilities": "Kapacitet",
 	"Capabilities": "Kapacitet",
 	"Change Password": "Ändra lösenord",
 	"Change Password": "Ändra lösenord",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Chunk-parametrar",
 	"Chunk Params": "Chunk-parametrar",
 	"Chunk Size": "Chunk-storlek",
 	"Chunk Size": "Chunk-storlek",
 	"Citation": "Citat",
 	"Citation": "Citat",
+	"Clear memory": "",
 	"Click here for help.": "Klicka här för hjälp.",
 	"Click here for help.": "Klicka här för hjälp.",
 	"Click here to": "Klicka här för att",
 	"Click here to": "Klicka här för att",
 	"Click here to select": "Klicka här för att välja",
 	"Click here to select": "Klicka här för att välja",
 	"Click here to select a csv file.": "Klicka här för att välja en csv-fil.",
 	"Click here to select a csv file.": "Klicka här för att välja en csv-fil.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Klicka här för att välja dokument.",
 	"Click here to select documents.": "Klicka här för att välja dokument.",
 	"click here.": "klicka här.",
 	"click here.": "klicka här.",
 	"Click on the user role button to change a user's role.": "Klicka på knappen för användarroll för att ändra en användares roll.",
 	"Click on the user role button to change a user's role.": "Klicka på knappen för användarroll för att ändra en användares roll.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Samtidiga begäranden",
 	"Concurrent Requests": "Samtidiga begäranden",
 	"Confirm Password": "Bekräfta lösenord",
 	"Confirm Password": "Bekräfta lösenord",
 	"Connections": "Anslutningar",
 	"Connections": "Anslutningar",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Innehåll",
 	"Content": "Innehåll",
 	"Context Length": "Kontextlängd",
 	"Context Length": "Kontextlängd",
 	"Continue Response": "Fortsätt svar",
 	"Continue Response": "Fortsätt svar",
-	"Conversation Mode": "Samtalsläge",
 	"Copied shared chat URL to clipboard!": "Kopierad delad chatt-URL till urklipp!",
 	"Copied shared chat URL to clipboard!": "Kopierad delad chatt-URL till urklipp!",
 	"Copy": "Kopiera",
 	"Copy": "Kopiera",
 	"Copy last code block": "Kopiera sista kodblock",
 	"Copy last code block": "Kopiera sista kodblock",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Standard (Automatic1111)",
 	"Default (Automatic1111)": "Standard (Automatic1111)",
 	"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
 	"Default (Web API)": "Standard (Web API)",
 	"Default (Web API)": "Standard (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "Standardmodell",
 	"Default Model": "Standardmodell",
 	"Default model updated": "Standardmodell uppdaterad",
 	"Default model updated": "Standardmodell uppdaterad",
 	"Default Prompt Suggestions": "Standardpromptförslag",
 	"Default Prompt Suggestions": "Standardpromptförslag",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Upptäck en prompt",
 	"Discover a prompt": "Upptäck en prompt",
 	"Discover, download, and explore custom prompts": "Upptäck, ladda ner och utforska anpassade prompts",
 	"Discover, download, and explore custom prompts": "Upptäck, ladda ner och utforska anpassade prompts",
 	"Discover, download, and explore model presets": "Upptäck, ladda ner och utforska modellförinställningar",
 	"Discover, download, and explore model presets": "Upptäck, ladda ner och utforska modellförinställningar",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Visa användarnamnet istället för du i chatten",
 	"Display the username instead of You in the Chat": "Visa användarnamnet istället för du i chatten",
 	"Document": "Dokument",
 	"Document": "Dokument",
 	"Document Settings": "Dokumentinställningar",
 	"Document Settings": "Dokumentinställningar",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Exportera dokumentmappning",
 	"Export Documents Mapping": "Exportera dokumentmappning",
 	"Export Models": "Exportera modeller",
 	"Export Models": "Exportera modeller",
 	"Export Prompts": "Exportera prompts",
 	"Export Prompts": "Exportera prompts",
+	"External Models": "",
 	"Failed to create API Key.": "Misslyckades med att skapa API-nyckel.",
 	"Failed to create API Key.": "Misslyckades med att skapa API-nyckel.",
 	"Failed to read clipboard contents": "Misslyckades med att läsa urklippsinnehåll",
 	"Failed to read clipboard contents": "Misslyckades med att läsa urklippsinnehåll",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "Information",
 	"Info": "Information",
 	"Input commands": "Indatakommandon",
 	"Input commands": "Indatakommandon",
 	"Install from Github URL": "Installera från Github-URL",
 	"Install from Github URL": "Installera från Github-URL",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Gränssnitt",
 	"Interface": "Gränssnitt",
 	"Invalid Tag": "Ogiltig tagg",
 	"Invalid Tag": "Ogiltig tagg",
 	"January": "januar",
 	"January": "januar",
@@ -267,11 +275,12 @@
 	"Language": "Språk",
 	"Language": "Språk",
 	"Last Active": "Senast aktiv",
 	"Last Active": "Senast aktiv",
 	"Light": "Ljus",
 	"Light": "Ljus",
-	"Listening...": "Lyssnar...",
 	"LLMs can make mistakes. Verify important information.": "LLM:er kan göra misstag. Verifiera viktig information.",
 	"LLMs can make mistakes. Verify important information.": "LLM:er kan göra misstag. Verifiera viktig information.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Skapad av OpenWebUI Community",
 	"Made by OpenWebUI Community": "Skapad av OpenWebUI Community",
 	"Make sure to enclose them with": "Se till att bifoga dem med",
 	"Make sure to enclose them with": "Se till att bifoga dem med",
+	"Manage": "",
 	"Manage Models": "Hantera modeller",
 	"Manage Models": "Hantera modeller",
 	"Manage Ollama Models": "Hantera Ollama-modeller",
 	"Manage Ollama Models": "Hantera Ollama-modeller",
 	"Manage Pipelines": "Hantera pipelines",
 	"Manage Pipelines": "Hantera pipelines",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "Ollama API inaktiverat",
 	"Ollama API disabled": "Ollama API inaktiverat",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Ollama-version",
 	"Ollama Version": "Ollama-version",
 	"On": "På",
 	"On": "På",
 	"Only": "Endast",
 	"Only": "Endast",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF-dokument (.pdf)",
 	"PDF document (.pdf)": "PDF-dokument (.pdf)",
 	"PDF Extract Images (OCR)": "PDF Extrahera bilder (OCR)",
 	"PDF Extract Images (OCR)": "PDF Extrahera bilder (OCR)",
 	"pending": "väntande",
 	"pending": "väntande",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Tillstånd nekades vid åtkomst till mikrofon: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Tillstånd nekades vid åtkomst till mikrofon: {{error}}",
 	"Personalization": "Personalisering",
 	"Personalization": "Personalisering",
 	"Pipelines": "Rörledningar",
 	"Pipelines": "Rörledningar",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Läs igenom",
 	"Read Aloud": "Läs igenom",
 	"Record voice": "Spela in röst",
 	"Record voice": "Spela in röst",
 	"Redirecting you to OpenWebUI Community": "Omdirigerar dig till OpenWebUI Community",
 	"Redirecting you to OpenWebUI Community": "Omdirigerar dig till OpenWebUI Community",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Avvisades när det inte borde ha",
 	"Refused when it shouldn't have": "Avvisades när det inte borde ha",
 	"Regenerate": "Regenerera",
 	"Regenerate": "Regenerera",
 	"Release Notes": "Versionsinformation",
 	"Release Notes": "Versionsinformation",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "Spara",
 	"Save": "Spara",
 	"Save & Create": "Spara och skapa",
 	"Save & Create": "Spara och skapa",
 	"Save & Update": "Spara och uppdatera",
 	"Save & Update": "Spara och uppdatera",
@@ -407,12 +420,14 @@
 	"See what's new": "Se vad som är nytt",
 	"See what's new": "Se vad som är nytt",
 	"Seed": "Seed",
 	"Seed": "Seed",
 	"Select a base model": "Välj en basmodell",
 	"Select a base model": "Välj en basmodell",
+	"Select a engine": "",
 	"Select a mode": "Välj ett läge",
 	"Select a mode": "Välj ett läge",
 	"Select a model": "Välj en modell",
 	"Select a model": "Välj en modell",
 	"Select a pipeline": "Välj en pipeline",
 	"Select a pipeline": "Välj en pipeline",
 	"Select a pipeline url": "Välj en pipeline-URL",
 	"Select a pipeline url": "Välj en pipeline-URL",
 	"Select an Ollama instance": "Välj en Ollama-instans",
 	"Select an Ollama instance": "Välj en Ollama-instans",
 	"Select model": "Välj en modell",
 	"Select model": "Välj en modell",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "Valda modeller stöder inte bildinmatningar",
 	"Selected model(s) do not support image inputs": "Valda modeller stöder inte bildinmatningar",
 	"Send": "Skicka",
 	"Send": "Skicka",
 	"Send a Message": "Skicka ett meddelande",
 	"Send a Message": "Skicka ett meddelande",
@@ -449,7 +464,6 @@
 	"Source": "Källa",
 	"Source": "Källa",
 	"Speech recognition error: {{error}}": "Fel vid taligenkänning: {{error}}",
 	"Speech recognition error: {{error}}": "Fel vid taligenkänning: {{error}}",
 	"Speech-to-Text Engine": "Tal-till-text-motor",
 	"Speech-to-Text Engine": "Tal-till-text-motor",
-	"SpeechRecognition API is not supported in this browser.": "SpeechRecognition API stöds inte i denna webbläsare.",
 	"Stop Sequence": "Stoppsekvens",
 	"Stop Sequence": "Stoppsekvens",
 	"STT Settings": "STT-inställningar",
 	"STT Settings": "STT-inställningar",
 	"Submit": "Skicka in",
 	"Submit": "Skicka in",
@@ -481,6 +495,7 @@
 	"to": "till",
 	"to": "till",
 	"To access the available model names for downloading,": "För att komma åt de tillgängliga modellnamnen för nedladdning,",
 	"To access the available model names for downloading,": "För att komma åt de tillgängliga modellnamnen för nedladdning,",
 	"To access the GGUF models available for downloading,": "För att komma åt de GGUF-modeller som finns tillgängliga för nedladdning,",
 	"To access the GGUF models available for downloading,": "För att komma åt de GGUF-modeller som finns tillgängliga för nedladdning,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "till chattinmatning.",
 	"to chat input.": "till chattinmatning.",
 	"Today": "Idag",
 	"Today": "Idag",
 	"Toggle settings": "Växla inställningar",
 	"Toggle settings": "Växla inställningar",
@@ -497,6 +512,7 @@
 	"Update password": "Uppdatera lösenord",
 	"Update password": "Uppdatera lösenord",
 	"Upload a GGUF model": "Ladda upp en GGUF-modell",
 	"Upload a GGUF model": "Ladda upp en GGUF-modell",
 	"Upload Files": "Ladda upp filer",
 	"Upload Files": "Ladda upp filer",
+	"Upload Pipeline": "",
 	"Upload Progress": "Uppladdningsförlopp",
 	"Upload Progress": "Uppladdningsförlopp",
 	"URL Mode": "URL-läge",
 	"URL Mode": "URL-läge",
 	"Use '#' in the prompt input to load and select your documents.": "Använd '#' i promptinmatningen för att ladda och välja dina dokument.",
 	"Use '#' in the prompt input to load and select your documents.": "Använd '#' i promptinmatningen för att ladda och välja dina dokument.",
@@ -515,6 +531,7 @@
 	"Warning": "Varning",
 	"Warning": "Varning",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Varning: Om du uppdaterar eller ändrar din embedding modell måste du importera alla dokument igen.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Varning: Om du uppdaterar eller ändrar din embedding modell måste du importera alla dokument igen.",
 	"Web": "Webb",
 	"Web": "Webb",
+	"Web API": "",
 	"Web Loader Settings": "Web Loader-inställningar",
 	"Web Loader Settings": "Web Loader-inställningar",
 	"Web Params": "Web-parametrar",
 	"Web Params": "Web-parametrar",
 	"Web Search": "Webbsökning",
 	"Web Search": "Webbsökning",
@@ -525,18 +542,19 @@
 	"WebUI will make requests to": "WebUI kommer att skicka förfrågningar till",
 	"WebUI will make requests to": "WebUI kommer att skicka förfrågningar till",
 	"What’s New in": "Vad är nytt i",
 	"What’s New in": "Vad är nytt i",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "När historiken är avstängd visas inte nya chattar i denna webbläsare i din historik på någon av dina enheter.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "När historiken är avstängd visas inte nya chattar i denna webbläsare i din historik på någon av dina enheter.",
-	"Whisper (Local)": "Whisper (lokal)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "arbetsyta",
 	"Workspace": "arbetsyta",
 	"Write a prompt suggestion (e.g. Who are you?)": "Skriv ett förslag (t.ex. Vem är du?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Skriv ett förslag (t.ex. Vem är du?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Skriv en sammanfattning på 50 ord som sammanfattar [ämne eller nyckelord].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Skriv en sammanfattning på 50 ord som sammanfattar [ämne eller nyckelord].",
 	"Yesterday": "Igenom",
 	"Yesterday": "Igenom",
 	"You": "du",
 	"You": "du",
+	"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 clone a base model": "Du kan inte klona en basmodell",
 	"You cannot clone a base model": "Du kan inte klona en basmodell",
 	"You have no archived conversations.": "Du har inga arkiverade konversationer.",
 	"You have no archived conversations.": "Du har inga arkiverade konversationer.",
 	"You have shared this chat": "Du har delat denna chatt",
 	"You have shared this chat": "Du har delat denna chatt",
 	"You're a helpful assistant.": "Du är en hjälpsam assistent.",
 	"You're a helpful assistant.": "Du är en hjälpsam assistent.",
 	"You're now logged in.": "Du är nu inloggad.",
 	"You're now logged in.": "Du är nu inloggad.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube Loader-inställningar"
 	"Youtube Loader Settings": "Youtube Loader-inställningar"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "",
 	"a user": "",
 	"About": "",
 	"About": "",
 	"Account": "",
 	"Account": "",
+	"Account Activation Pending": "",
 	"Accurate information": "",
 	"Accurate information": "",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "",
 	"Add": "",
@@ -29,6 +30,7 @@
 	"Add User": "",
 	"Add User": "",
 	"Adjusting these settings will apply changes universally to all users.": "",
 	"Adjusting these settings will apply changes universally to all users.": "",
 	"admin": "",
 	"admin": "",
+	"Admin": "",
 	"Admin Panel": "",
 	"Admin Panel": "",
 	"Admin Settings": "",
 	"Admin Settings": "",
 	"Advanced Parameters": "",
 	"Advanced Parameters": "",
@@ -59,7 +61,6 @@
 	"Audio": "",
 	"Audio": "",
 	"August": "",
 	"August": "",
 	"Auto-playback response": "",
 	"Auto-playback response": "",
-	"Auto-send input after 3 sec.": "",
 	"AUTOMATIC1111 Base URL": "",
 	"AUTOMATIC1111 Base URL": "",
 	"AUTOMATIC1111 Base URL is required.": "",
 	"AUTOMATIC1111 Base URL is required.": "",
 	"available!": "",
 	"available!": "",
@@ -71,6 +72,7 @@
 	"Being lazy": "",
 	"Being lazy": "",
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
 	"Bypass SSL verification for Websites": "",
 	"Bypass SSL verification for Websites": "",
+	"Call": "",
 	"Cancel": "",
 	"Cancel": "",
 	"Capabilities": "",
 	"Capabilities": "",
 	"Change Password": "",
 	"Change Password": "",
@@ -88,10 +90,12 @@
 	"Chunk Params": "",
 	"Chunk Params": "",
 	"Chunk Size": "",
 	"Chunk Size": "",
 	"Citation": "",
 	"Citation": "",
+	"Clear memory": "",
 	"Click here for help.": "",
 	"Click here for help.": "",
 	"Click here to": "",
 	"Click here to": "",
 	"Click here to select": "",
 	"Click here to select": "",
 	"Click here to select a csv file.": "",
 	"Click here to select a csv file.": "",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "",
 	"Click here to select documents.": "",
 	"click here.": "",
 	"click here.": "",
 	"Click on the user role button to change a user's role.": "",
 	"Click on the user role button to change a user's role.": "",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "",
 	"Concurrent Requests": "",
 	"Confirm Password": "",
 	"Confirm Password": "",
 	"Connections": "",
 	"Connections": "",
+	"Contact Admin for WebUI Access": "",
 	"Content": "",
 	"Content": "",
 	"Context Length": "",
 	"Context Length": "",
 	"Continue Response": "",
 	"Continue Response": "",
-	"Conversation Mode": "",
 	"Copied shared chat URL to clipboard!": "",
 	"Copied shared chat URL to clipboard!": "",
 	"Copy": "",
 	"Copy": "",
 	"Copy last code block": "",
 	"Copy last code block": "",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "",
 	"Default (Automatic1111)": "",
 	"Default (SentenceTransformers)": "",
 	"Default (SentenceTransformers)": "",
 	"Default (Web API)": "",
 	"Default (Web API)": "",
+	"Default (Whisper)": "",
 	"Default Model": "",
 	"Default Model": "",
 	"Default model updated": "",
 	"Default model updated": "",
 	"Default Prompt Suggestions": "",
 	"Default Prompt Suggestions": "",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "",
 	"Discover a prompt": "",
 	"Discover, download, and explore custom prompts": "",
 	"Discover, download, and explore custom prompts": "",
 	"Discover, download, and explore model presets": "",
 	"Discover, download, and explore model presets": "",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "",
 	"Display the username instead of You in the Chat": "",
 	"Document": "",
 	"Document": "",
 	"Document Settings": "",
 	"Document Settings": "",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "",
 	"Export Documents Mapping": "",
 	"Export Models": "",
 	"Export Models": "",
 	"Export Prompts": "",
 	"Export Prompts": "",
+	"External Models": "",
 	"Failed to create API Key.": "",
 	"Failed to create API Key.": "",
 	"Failed to read clipboard contents": "",
 	"Failed to read clipboard contents": "",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "",
 	"Info": "",
 	"Input commands": "",
 	"Input commands": "",
 	"Install from Github URL": "",
 	"Install from Github URL": "",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "",
 	"Interface": "",
 	"Invalid Tag": "",
 	"Invalid Tag": "",
 	"January": "",
 	"January": "",
@@ -267,11 +275,12 @@
 	"Language": "",
 	"Language": "",
 	"Last Active": "",
 	"Last Active": "",
 	"Light": "",
 	"Light": "",
-	"Listening...": "",
 	"LLMs can make mistakes. Verify important information.": "",
 	"LLMs can make mistakes. Verify important information.": "",
+	"Local Models": "",
 	"LTR": "",
 	"LTR": "",
 	"Made by OpenWebUI Community": "",
 	"Made by OpenWebUI Community": "",
 	"Make sure to enclose them with": "",
 	"Make sure to enclose them with": "",
+	"Manage": "",
 	"Manage Models": "",
 	"Manage Models": "",
 	"Manage Ollama Models": "",
 	"Manage Ollama Models": "",
 	"Manage Pipelines": "",
 	"Manage Pipelines": "",
@@ -323,6 +332,7 @@
 	"Ollama": "",
 	"Ollama": "",
 	"Ollama API": "",
 	"Ollama API": "",
 	"Ollama API disabled": "",
 	"Ollama API disabled": "",
+	"Ollama API is disabled": "",
 	"Ollama Version": "",
 	"Ollama Version": "",
 	"On": "",
 	"On": "",
 	"Only": "",
 	"Only": "",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "",
 	"PDF document (.pdf)": "",
 	"PDF Extract Images (OCR)": "",
 	"PDF Extract Images (OCR)": "",
 	"pending": "",
 	"pending": "",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "",
 	"Permission denied when accessing microphone: {{error}}": "",
 	"Personalization": "",
 	"Personalization": "",
 	"Pipelines": "",
 	"Pipelines": "",
@@ -367,6 +378,7 @@
 	"Read Aloud": "",
 	"Read Aloud": "",
 	"Record voice": "",
 	"Record voice": "",
 	"Redirecting you to OpenWebUI Community": "",
 	"Redirecting you to OpenWebUI Community": "",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "",
 	"Refused when it shouldn't have": "",
 	"Regenerate": "",
 	"Regenerate": "",
 	"Release Notes": "",
 	"Release Notes": "",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "",
 	"Rosé Pine": "",
 	"Rosé Pine Dawn": "",
 	"Rosé Pine Dawn": "",
 	"RTL": "",
 	"RTL": "",
+	"Running": "",
 	"Save": "",
 	"Save": "",
 	"Save & Create": "",
 	"Save & Create": "",
 	"Save & Update": "",
 	"Save & Update": "",
@@ -407,12 +420,14 @@
 	"See what's new": "",
 	"See what's new": "",
 	"Seed": "",
 	"Seed": "",
 	"Select a base model": "",
 	"Select a base model": "",
+	"Select a engine": "",
 	"Select a mode": "",
 	"Select a mode": "",
 	"Select a model": "",
 	"Select a model": "",
 	"Select a pipeline": "",
 	"Select a pipeline": "",
 	"Select a pipeline url": "",
 	"Select a pipeline url": "",
 	"Select an Ollama instance": "",
 	"Select an Ollama instance": "",
 	"Select model": "",
 	"Select model": "",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "",
 	"Selected model(s) do not support image inputs": "",
 	"Send": "",
 	"Send": "",
 	"Send a Message": "",
 	"Send a Message": "",
@@ -449,7 +464,6 @@
 	"Source": "",
 	"Source": "",
 	"Speech recognition error: {{error}}": "",
 	"Speech recognition error: {{error}}": "",
 	"Speech-to-Text Engine": "",
 	"Speech-to-Text Engine": "",
-	"SpeechRecognition API is not supported in this browser.": "",
 	"Stop Sequence": "",
 	"Stop Sequence": "",
 	"STT Settings": "",
 	"STT Settings": "",
 	"Submit": "",
 	"Submit": "",
@@ -481,6 +495,7 @@
 	"to": "",
 	"to": "",
 	"To access the available model names for downloading,": "",
 	"To access the available model names for downloading,": "",
 	"To access the GGUF models available for downloading,": "",
 	"To access the GGUF models available for downloading,": "",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "",
 	"to chat input.": "",
 	"Today": "",
 	"Today": "",
 	"Toggle settings": "",
 	"Toggle settings": "",
@@ -497,6 +512,7 @@
 	"Update password": "",
 	"Update password": "",
 	"Upload a GGUF model": "",
 	"Upload a GGUF model": "",
 	"Upload Files": "",
 	"Upload Files": "",
+	"Upload Pipeline": "",
 	"Upload Progress": "",
 	"Upload Progress": "",
 	"URL Mode": "",
 	"URL Mode": "",
 	"Use '#' in the prompt input to load and select your documents.": "",
 	"Use '#' in the prompt input to load and select your documents.": "",
@@ -515,6 +531,7 @@
 	"Warning": "",
 	"Warning": "",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
 	"Web": "",
 	"Web": "",
+	"Web API": "",
 	"Web Loader Settings": "",
 	"Web Loader Settings": "",
 	"Web Params": "",
 	"Web Params": "",
 	"Web Search": "",
 	"Web Search": "",
@@ -525,18 +542,19 @@
 	"WebUI will make requests to": "",
 	"WebUI will make requests to": "",
 	"What’s New in": "",
 	"What’s New in": "",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "",
-	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "",
 	"Workspace": "",
 	"Write a prompt suggestion (e.g. Who are you?)": "",
 	"Write a prompt suggestion (e.g. Who are you?)": "",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "",
 	"Yesterday": "",
 	"Yesterday": "",
 	"You": "",
 	"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 clone a base model": "",
 	"You cannot clone a base model": "",
 	"You have no archived conversations.": "",
 	"You have no archived conversations.": "",
 	"You have shared this chat": "",
 	"You have shared this chat": "",
 	"You're a helpful assistant.": "",
 	"You're a helpful assistant.": "",
 	"You're now logged in.": "",
 	"You're now logged in.": "",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "",
 	"Youtube": "",
 	"Youtube Loader Settings": ""
 	"Youtube Loader Settings": ""
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "bir kullanıcı",
 	"a user": "bir kullanıcı",
 	"About": "Hakkında",
 	"About": "Hakkında",
 	"Account": "Hesap",
 	"Account": "Hesap",
+	"Account Activation Pending": "",
 	"Accurate information": "Doğru bilgi",
 	"Accurate information": "Doğru bilgi",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Ekle",
 	"Add": "Ekle",
@@ -29,6 +30,7 @@
 	"Add User": "Kullanıcı Ekle",
 	"Add User": "Kullanıcı Ekle",
 	"Adjusting these settings will apply changes universally to all users.": "Bu ayarları ayarlamak değişiklikleri tüm kullanıcılara evrensel olarak uygular.",
 	"Adjusting these settings will apply changes universally to all users.": "Bu ayarları ayarlamak değişiklikleri tüm kullanıcılara evrensel olarak uygular.",
 	"admin": "yönetici",
 	"admin": "yönetici",
+	"Admin": "",
 	"Admin Panel": "Yönetici Paneli",
 	"Admin Panel": "Yönetici Paneli",
 	"Admin Settings": "Yönetici Ayarları",
 	"Admin Settings": "Yönetici Ayarları",
 	"Advanced Parameters": "Gelişmiş Parametreler",
 	"Advanced Parameters": "Gelişmiş Parametreler",
@@ -59,7 +61,6 @@
 	"Audio": "Ses",
 	"Audio": "Ses",
 	"August": "Ağustos",
 	"August": "Ağustos",
 	"Auto-playback response": "Yanıtı otomatik oynatma",
 	"Auto-playback response": "Yanıtı otomatik oynatma",
-	"Auto-send input after 3 sec.": "3 saniye sonra otomatik olarak gönder",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Temel URL",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Temel URL",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Temel URL gereklidir.",
 	"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Temel URL gereklidir.",
 	"available!": "mevcut!",
 	"available!": "mevcut!",
@@ -71,6 +72,7 @@
 	"Being lazy": "Tembelleşiyor",
 	"Being lazy": "Tembelleşiyor",
 	"Brave Search API Key": "Brave Search API Anahtarı",
 	"Brave Search API Key": "Brave Search API Anahtarı",
 	"Bypass SSL verification for Websites": "Web Siteleri için SSL doğrulamasını atlayın",
 	"Bypass SSL verification for Websites": "Web Siteleri için SSL doğrulamasını atlayın",
+	"Call": "",
 	"Cancel": "İptal",
 	"Cancel": "İptal",
 	"Capabilities": "Yetenekler",
 	"Capabilities": "Yetenekler",
 	"Change Password": "Parola Değiştir",
 	"Change Password": "Parola Değiştir",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Chunk Parametreleri",
 	"Chunk Params": "Chunk Parametreleri",
 	"Chunk Size": "Chunk Boyutu",
 	"Chunk Size": "Chunk Boyutu",
 	"Citation": "Alıntı",
 	"Citation": "Alıntı",
+	"Clear memory": "",
 	"Click here for help.": "Yardım için buraya tıklayın.",
 	"Click here for help.": "Yardım için buraya tıklayın.",
 	"Click here to": "Şunu yapmak için buraya tıklayın:",
 	"Click here to": "Şunu yapmak için buraya tıklayın:",
 	"Click here to select": "Seçmek için buraya tıklayın",
 	"Click here to select": "Seçmek için buraya tıklayın",
 	"Click here to select a csv file.": "Bir CSV dosyası seçmek için buraya tıklayın.",
 	"Click here to select a csv file.": "Bir CSV dosyası seçmek için buraya tıklayın.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Belgeleri seçmek için buraya tıklayın.",
 	"Click here to select documents.": "Belgeleri seçmek için buraya tıklayın.",
 	"click here.": "buraya tıklayın.",
 	"click here.": "buraya tıklayın.",
 	"Click on the user role button to change a user's role.": "Bir kullanıcının rolünü değiştirmek için kullanıcı rolü düğmesine tıklayın.",
 	"Click on the user role button to change a user's role.": "Bir kullanıcının rolünü değiştirmek için kullanıcı rolü düğmesine tıklayın.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Eşzamanlı İstekler",
 	"Concurrent Requests": "Eşzamanlı İstekler",
 	"Confirm Password": "Parolayı Onayla",
 	"Confirm Password": "Parolayı Onayla",
 	"Connections": "Bağlantılar",
 	"Connections": "Bağlantılar",
+	"Contact Admin for WebUI Access": "",
 	"Content": "İçerik",
 	"Content": "İçerik",
 	"Context Length": "Bağlam Uzunluğu",
 	"Context Length": "Bağlam Uzunluğu",
 	"Continue Response": "Yanıta Devam Et",
 	"Continue Response": "Yanıta Devam Et",
-	"Conversation Mode": "Sohbet Modu",
 	"Copied shared chat URL to clipboard!": "Paylaşılan sohbet URL'si panoya kopyalandı!",
 	"Copied shared chat URL to clipboard!": "Paylaşılan sohbet URL'si panoya kopyalandı!",
 	"Copy": "Kopyala",
 	"Copy": "Kopyala",
 	"Copy last code block": "Son kod bloğunu kopyala",
 	"Copy last code block": "Son kod bloğunu kopyala",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Varsayılan (Automatic1111)",
 	"Default (Automatic1111)": "Varsayılan (Automatic1111)",
 	"Default (SentenceTransformers)": "Varsayılan (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Varsayılan (SentenceTransformers)",
 	"Default (Web API)": "Varsayılan (Web API)",
 	"Default (Web API)": "Varsayılan (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "Varsayılan Model",
 	"Default Model": "Varsayılan Model",
 	"Default model updated": "Varsayılan model güncellendi",
 	"Default model updated": "Varsayılan model güncellendi",
 	"Default Prompt Suggestions": "Varsayılan Prompt Önerileri",
 	"Default Prompt Suggestions": "Varsayılan Prompt Önerileri",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Bir prompt keşfedin",
 	"Discover a prompt": "Bir prompt keşfedin",
 	"Discover, download, and explore custom prompts": "Özel promptları keşfedin, indirin ve inceleyin",
 	"Discover, download, and explore custom prompts": "Özel promptları keşfedin, indirin ve inceleyin",
 	"Discover, download, and explore model presets": "Model ön ayarlarını keşfedin, indirin ve inceleyin",
 	"Discover, download, and explore model presets": "Model ön ayarlarını keşfedin, indirin ve inceleyin",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Sohbet'te Siz yerine kullanıcı adını göster",
 	"Display the username instead of You in the Chat": "Sohbet'te Siz yerine kullanıcı adını göster",
 	"Document": "Belge",
 	"Document": "Belge",
 	"Document Settings": "Belge Ayarları",
 	"Document Settings": "Belge Ayarları",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Belge Eşlemesini Dışa Aktar",
 	"Export Documents Mapping": "Belge Eşlemesini Dışa Aktar",
 	"Export Models": "Modelleri Dışa Aktar",
 	"Export Models": "Modelleri Dışa Aktar",
 	"Export Prompts": "Promptları Dışa Aktar",
 	"Export Prompts": "Promptları Dışa Aktar",
+	"External Models": "",
 	"Failed to create API Key.": "API Anahtarı oluşturulamadı.",
 	"Failed to create API Key.": "API Anahtarı oluşturulamadı.",
 	"Failed to read clipboard contents": "Pano içeriği okunamadı",
 	"Failed to read clipboard contents": "Pano içeriği okunamadı",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "Bilgi",
 	"Info": "Bilgi",
 	"Input commands": "Giriş komutları",
 	"Input commands": "Giriş komutları",
 	"Install from Github URL": "Github URL'sinden yükleyin",
 	"Install from Github URL": "Github URL'sinden yükleyin",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Arayüz",
 	"Interface": "Arayüz",
 	"Invalid Tag": "Geçersiz etiket",
 	"Invalid Tag": "Geçersiz etiket",
 	"January": "Ocak",
 	"January": "Ocak",
@@ -267,11 +275,12 @@
 	"Language": "Dil",
 	"Language": "Dil",
 	"Last Active": "Son Aktivite",
 	"Last Active": "Son Aktivite",
 	"Light": "Açık",
 	"Light": "Açık",
-	"Listening...": "Dinleniyor...",
 	"LLMs can make mistakes. Verify important information.": "LLM'ler hata yapabilir. Önemli bilgileri doğrulayın.",
 	"LLMs can make mistakes. Verify important information.": "LLM'ler hata yapabilir. Önemli bilgileri doğrulayın.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "OpenWebUI Topluluğu tarafından yapılmıştır",
 	"Made by OpenWebUI Community": "OpenWebUI Topluluğu tarafından yapılmıştır",
 	"Make sure to enclose them with": "Değişkenlerinizi şu şekilde biçimlendirin:",
 	"Make sure to enclose them with": "Değişkenlerinizi şu şekilde biçimlendirin:",
+	"Manage": "",
 	"Manage Models": "Modelleri Yönet",
 	"Manage Models": "Modelleri Yönet",
 	"Manage Ollama Models": "Ollama Modellerini Yönet",
 	"Manage Ollama Models": "Ollama Modellerini Yönet",
 	"Manage Pipelines": "Pipeline'ları Yönet",
 	"Manage Pipelines": "Pipeline'ları Yönet",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "Ollama API'si devre dışı",
 	"Ollama API disabled": "Ollama API'si devre dışı",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Ollama Sürümü",
 	"Ollama Version": "Ollama Sürümü",
 	"On": "Açık",
 	"On": "Açık",
 	"Only": "Yalnızca",
 	"Only": "Yalnızca",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF belgesi (.pdf)",
 	"PDF document (.pdf)": "PDF belgesi (.pdf)",
 	"PDF Extract Images (OCR)": "PDF Görüntülerini Çıkart (OCR)",
 	"PDF Extract Images (OCR)": "PDF Görüntülerini Çıkart (OCR)",
 	"pending": "beklemede",
 	"pending": "beklemede",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Mikrofona erişim izni reddedildi: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Mikrofona erişim izni reddedildi: {{error}}",
 	"Personalization": "Kişiselleştirme",
 	"Personalization": "Kişiselleştirme",
 	"Pipelines": "Pipelinelar",
 	"Pipelines": "Pipelinelar",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Sesli Oku",
 	"Read Aloud": "Sesli Oku",
 	"Record voice": "Ses kaydı yap",
 	"Record voice": "Ses kaydı yap",
 	"Redirecting you to OpenWebUI Community": "OpenWebUI Topluluğuna yönlendiriliyorsunuz",
 	"Redirecting you to OpenWebUI Community": "OpenWebUI Topluluğuna yönlendiriliyorsunuz",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Reddedilmemesi gerekirken reddedildi",
 	"Refused when it shouldn't have": "Reddedilmemesi gerekirken reddedildi",
 	"Regenerate": "Tekrar Oluştur",
 	"Regenerate": "Tekrar Oluştur",
 	"Release Notes": "Sürüm Notları",
 	"Release Notes": "Sürüm Notları",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "Kaydet",
 	"Save": "Kaydet",
 	"Save & Create": "Kaydet ve Oluştur",
 	"Save & Create": "Kaydet ve Oluştur",
 	"Save & Update": "Kaydet ve Güncelle",
 	"Save & Update": "Kaydet ve Güncelle",
@@ -407,12 +420,14 @@
 	"See what's new": "Yeniliklere göz atın",
 	"See what's new": "Yeniliklere göz atın",
 	"Seed": "Seed",
 	"Seed": "Seed",
 	"Select a base model": "Bir temel model seç",
 	"Select a base model": "Bir temel model seç",
+	"Select a engine": "",
 	"Select a mode": "Bir mod seç",
 	"Select a mode": "Bir mod seç",
 	"Select a model": "Bir model seç",
 	"Select a model": "Bir model seç",
 	"Select a pipeline": "Bir pipeline seç",
 	"Select a pipeline": "Bir pipeline seç",
 	"Select a pipeline url": "Bir pipeline URL'si seç",
 	"Select a pipeline url": "Bir pipeline URL'si seç",
 	"Select an Ollama instance": "Bir Ollama örneği seçin",
 	"Select an Ollama instance": "Bir Ollama örneği seçin",
 	"Select model": "Model seç",
 	"Select model": "Model seç",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "Seçilen model(ler) görüntü girişlerini desteklemiyor",
 	"Selected model(s) do not support image inputs": "Seçilen model(ler) görüntü girişlerini desteklemiyor",
 	"Send": "Gönder",
 	"Send": "Gönder",
 	"Send a Message": "Bir Mesaj Gönder",
 	"Send a Message": "Bir Mesaj Gönder",
@@ -449,7 +464,6 @@
 	"Source": "Kaynak",
 	"Source": "Kaynak",
 	"Speech recognition error: {{error}}": "Konuşma tanıma hatası: {{error}}",
 	"Speech recognition error: {{error}}": "Konuşma tanıma hatası: {{error}}",
 	"Speech-to-Text Engine": "Konuşmadan Metne Motoru",
 	"Speech-to-Text Engine": "Konuşmadan Metne Motoru",
-	"SpeechRecognition API is not supported in this browser.": "SpeechRecognition API bu tarayıcıda desteklenmiyor.",
 	"Stop Sequence": "Diziyi Durdur",
 	"Stop Sequence": "Diziyi Durdur",
 	"STT Settings": "STT Ayarları",
 	"STT Settings": "STT Ayarları",
 	"Submit": "Gönder",
 	"Submit": "Gönder",
@@ -481,6 +495,7 @@
 	"to": "için",
 	"to": "için",
 	"To access the available model names for downloading,": "İndirilebilir mevcut model adlarına erişmek için,",
 	"To access the available model names for downloading,": "İndirilebilir mevcut model adlarına erişmek için,",
 	"To access the GGUF models available for downloading,": "İndirilebilir mevcut GGUF modellerine erişmek için,",
 	"To access the GGUF models available for downloading,": "İndirilebilir mevcut GGUF modellerine erişmek için,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "sohbet girişine.",
 	"to chat input.": "sohbet girişine.",
 	"Today": "Bugün",
 	"Today": "Bugün",
 	"Toggle settings": "Ayarları Aç/Kapat",
 	"Toggle settings": "Ayarları Aç/Kapat",
@@ -497,6 +512,7 @@
 	"Update password": "Parolayı Güncelle",
 	"Update password": "Parolayı Güncelle",
 	"Upload a GGUF model": "Bir GGUF modeli yükle",
 	"Upload a GGUF model": "Bir GGUF modeli yükle",
 	"Upload Files": "Dosyaları Yükle",
 	"Upload Files": "Dosyaları Yükle",
+	"Upload Pipeline": "",
 	"Upload Progress": "Yükleme İlerlemesi",
 	"Upload Progress": "Yükleme İlerlemesi",
 	"URL Mode": "URL Modu",
 	"URL Mode": "URL Modu",
 	"Use '#' in the prompt input to load and select your documents.": "Belgelerinizi yüklemek ve seçmek için promptda '#' kullanın.",
 	"Use '#' in the prompt input to load and select your documents.": "Belgelerinizi yüklemek ve seçmek için promptda '#' kullanın.",
@@ -515,6 +531,7 @@
 	"Warning": "Uyarı",
 	"Warning": "Uyarı",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Uyarı: Gömme modelinizi günceller veya değiştirirseniz, tüm belgeleri yeniden içe aktarmanız gerekecektir.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Uyarı: Gömme modelinizi günceller veya değiştirirseniz, tüm belgeleri yeniden içe aktarmanız gerekecektir.",
 	"Web": "Web",
 	"Web": "Web",
+	"Web API": "",
 	"Web Loader Settings": "Web Yükleyici Ayarları",
 	"Web Loader Settings": "Web Yükleyici Ayarları",
 	"Web Params": "Web Parametreleri",
 	"Web Params": "Web Parametreleri",
 	"Web Search": "Web Araması",
 	"Web Search": "Web Araması",
@@ -525,18 +542,19 @@
 	"WebUI will make requests to": "WebUI, isteklerde bulunacak:",
 	"WebUI will make requests to": "WebUI, isteklerde bulunacak:",
 	"What’s New in": "Yenilikler:",
 	"What’s New in": "Yenilikler:",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Geçmiş kapatıldığında, bu tarayıcıdaki yeni sohbetler hiçbir cihazınızdaki geçmişinizde görünmez.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Geçmiş kapatıldığında, bu tarayıcıdaki yeni sohbetler hiçbir cihazınızdaki geçmişinizde görünmez.",
-	"Whisper (Local)": "Whisper (Yerel)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "Çalışma Alanı",
 	"Workspace": "Çalışma Alanı",
 	"Write a prompt suggestion (e.g. Who are you?)": "Bir prompt önerisi yazın (örn. Sen kimsin?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Bir prompt önerisi yazın (örn. Sen kimsin?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "[Konuyu veya anahtar kelimeyi] özetleyen 50 kelimelik bir özet yazın.",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "[Konuyu veya anahtar kelimeyi] özetleyen 50 kelimelik bir özet yazın.",
 	"Yesterday": "Dün",
 	"Yesterday": "Dün",
 	"You": "Sen",
 	"You": "Sen",
+	"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 clone a base model": "Bir temel modeli klonlayamazsınız",
 	"You cannot clone a base model": "Bir temel modeli klonlayamazsınız",
 	"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",
 	"You're a helpful assistant.": "Sen yardımcı bir asistansın.",
 	"You're a helpful assistant.": "Sen yardımcı bir asistansın.",
 	"You're now logged in.": "Şimdi giriş yaptınız.",
 	"You're now logged in.": "Şimdi giriş yaptınız.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube Yükleyici Ayarları"
 	"Youtube Loader Settings": "Youtube Yükleyici Ayarları"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "користувача",
 	"a user": "користувача",
 	"About": "Про програму",
 	"About": "Про програму",
 	"Account": "Обліковий запис",
 	"Account": "Обліковий запис",
+	"Account Activation Pending": "",
 	"Accurate information": "Точна інформація",
 	"Accurate information": "Точна інформація",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Додати",
 	"Add": "Додати",
@@ -29,6 +30,7 @@
 	"Add User": "Додати користувача",
 	"Add User": "Додати користувача",
 	"Adjusting these settings will apply changes universally to all users.": "Зміни в цих налаштуваннях будуть застосовані для всіх користувачів.",
 	"Adjusting these settings will apply changes universally to all users.": "Зміни в цих налаштуваннях будуть застосовані для всіх користувачів.",
 	"admin": "адмін",
 	"admin": "адмін",
+	"Admin": "",
 	"Admin Panel": "Адмін-панель",
 	"Admin Panel": "Адмін-панель",
 	"Admin Settings": "Налаштування адміністратора",
 	"Admin Settings": "Налаштування адміністратора",
 	"Advanced Parameters": "Розширені параметри",
 	"Advanced Parameters": "Розширені параметри",
@@ -59,7 +61,6 @@
 	"Audio": "Аудіо",
 	"Audio": "Аудіо",
 	"August": "Серпень",
 	"August": "Серпень",
 	"Auto-playback response": "Автоматичне відтворення відповіді",
 	"Auto-playback response": "Автоматичне відтворення відповіді",
-	"Auto-send input after 3 sec.": "Автоматична відправка через 3 сек.",
 	"AUTOMATIC1111 Base URL": "URL-адреса AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL": "URL-адреса AUTOMATIC1111",
 	"AUTOMATIC1111 Base URL is required.": "Необхідна URL-адреса AUTOMATIC1111.",
 	"AUTOMATIC1111 Base URL is required.": "Необхідна URL-адреса AUTOMATIC1111.",
 	"available!": "доступно!",
 	"available!": "доступно!",
@@ -71,6 +72,7 @@
 	"Being lazy": "Не поспішати",
 	"Being lazy": "Не поспішати",
 	"Brave Search API Key": "Ключ API пошуку Brave",
 	"Brave Search API Key": "Ключ API пошуку Brave",
 	"Bypass SSL verification for Websites": "Обхід SSL-перевірки для веб-сайтів",
 	"Bypass SSL verification for Websites": "Обхід SSL-перевірки для веб-сайтів",
+	"Call": "",
 	"Cancel": "Скасувати",
 	"Cancel": "Скасувати",
 	"Capabilities": "Можливості",
 	"Capabilities": "Можливості",
 	"Change Password": "Змінити пароль",
 	"Change Password": "Змінити пароль",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Параметри фрагментів",
 	"Chunk Params": "Параметри фрагментів",
 	"Chunk Size": "Розмір фрагменту",
 	"Chunk Size": "Розмір фрагменту",
 	"Citation": "Цитування",
 	"Citation": "Цитування",
+	"Clear memory": "",
 	"Click here for help.": "Клацніть тут, щоб отримати допомогу.",
 	"Click here for help.": "Клацніть тут, щоб отримати допомогу.",
 	"Click here to": "Натисніть тут, щоб",
 	"Click here to": "Натисніть тут, щоб",
 	"Click here to select": "Натисніть тут, щоб вибрати",
 	"Click here to select": "Натисніть тут, щоб вибрати",
 	"Click here to select a csv file.": "Натисніть тут, щоб вибрати csv-файл.",
 	"Click here to select a csv file.": "Натисніть тут, щоб вибрати csv-файл.",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Натисніть тут, щоб вибрати документи.",
 	"Click here to select documents.": "Натисніть тут, щоб вибрати документи.",
 	"click here.": "клацніть тут.",
 	"click here.": "клацніть тут.",
 	"Click on the user role button to change a user's role.": "Натисніть кнопку ролі користувача, щоб змінити роль користувача.",
 	"Click on the user role button to change a user's role.": "Натисніть кнопку ролі користувача, щоб змінити роль користувача.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Одночасні запити",
 	"Concurrent Requests": "Одночасні запити",
 	"Confirm Password": "Підтвердіть пароль",
 	"Confirm Password": "Підтвердіть пароль",
 	"Connections": "З'єднання",
 	"Connections": "З'єднання",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Зміст",
 	"Content": "Зміст",
 	"Context Length": "Довжина контексту",
 	"Context Length": "Довжина контексту",
 	"Continue Response": "Продовжити відповідь",
 	"Continue Response": "Продовжити відповідь",
-	"Conversation Mode": "Режим розмови",
 	"Copied shared chat URL to clipboard!": "Скопійовано URL-адресу спільного чату в буфер обміну!",
 	"Copied shared chat URL to clipboard!": "Скопійовано URL-адресу спільного чату в буфер обміну!",
 	"Copy": "Копіювати",
 	"Copy": "Копіювати",
 	"Copy last code block": "Копіювати останній блок коду",
 	"Copy last code block": "Копіювати останній блок коду",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "За замовчуванням (Automatic1111)",
 	"Default (Automatic1111)": "За замовчуванням (Automatic1111)",
 	"Default (SentenceTransformers)": "За замовчуванням (SentenceTransformers)",
 	"Default (SentenceTransformers)": "За замовчуванням (SentenceTransformers)",
 	"Default (Web API)": "За замовчуванням (Web API)",
 	"Default (Web API)": "За замовчуванням (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "Модель за замовчуванням",
 	"Default Model": "Модель за замовчуванням",
 	"Default model updated": "Модель за замовчуванням оновлено",
 	"Default model updated": "Модель за замовчуванням оновлено",
 	"Default Prompt Suggestions": "Пропозиції промтів замовчуванням",
 	"Default Prompt Suggestions": "Пропозиції промтів замовчуванням",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Знайти промт",
 	"Discover a prompt": "Знайти промт",
 	"Discover, download, and explore custom prompts": "Знайдіть, завантажте та досліджуйте налаштовані промти",
 	"Discover, download, and explore custom prompts": "Знайдіть, завантажте та досліджуйте налаштовані промти",
 	"Discover, download, and explore model presets": "Знайдіть, завантажте та досліджуйте налаштовані налаштування моделі",
 	"Discover, download, and explore model presets": "Знайдіть, завантажте та досліджуйте налаштовані налаштування моделі",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Показувати ім'я користувача замість 'Ви' в чаті",
 	"Display the username instead of You in the Chat": "Показувати ім'я користувача замість 'Ви' в чаті",
 	"Document": "Документ",
 	"Document": "Документ",
 	"Document Settings": "Налаштування документа",
 	"Document Settings": "Налаштування документа",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Експортувати відображення документів",
 	"Export Documents Mapping": "Експортувати відображення документів",
 	"Export Models": "Експорт моделей",
 	"Export Models": "Експорт моделей",
 	"Export Prompts": "Експортувати промти",
 	"Export Prompts": "Експортувати промти",
+	"External Models": "",
 	"Failed to create API Key.": "Не вдалося створити API ключ.",
 	"Failed to create API Key.": "Не вдалося створити API ключ.",
 	"Failed to read clipboard contents": "Не вдалося прочитати вміст буфера обміну",
 	"Failed to read clipboard contents": "Не вдалося прочитати вміст буфера обміну",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "Інфо",
 	"Info": "Інфо",
 	"Input commands": "Команди вводу",
 	"Input commands": "Команди вводу",
 	"Install from Github URL": "Встановіть з URL-адреси Github",
 	"Install from Github URL": "Встановіть з URL-адреси Github",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Інтерфейс",
 	"Interface": "Інтерфейс",
 	"Invalid Tag": "Недійсний тег",
 	"Invalid Tag": "Недійсний тег",
 	"January": "Січень",
 	"January": "Січень",
@@ -267,11 +275,12 @@
 	"Language": "Мова",
 	"Language": "Мова",
 	"Last Active": "Остання активність",
 	"Last Active": "Остання активність",
 	"Light": "Світла",
 	"Light": "Світла",
-	"Listening...": "Слухаю...",
 	"LLMs can make mistakes. Verify important information.": "LLMs можуть помилятися. Перевірте важливу інформацію.",
 	"LLMs can make mistakes. Verify important information.": "LLMs можуть помилятися. Перевірте важливу інформацію.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Зроблено спільнотою OpenWebUI",
 	"Made by OpenWebUI Community": "Зроблено спільнотою OpenWebUI",
 	"Make sure to enclose them with": "Переконайтеся, що вони закриті",
 	"Make sure to enclose them with": "Переконайтеся, що вони закриті",
+	"Manage": "",
 	"Manage Models": "Керування моделями",
 	"Manage Models": "Керування моделями",
 	"Manage Ollama Models": "Керування моделями Ollama",
 	"Manage Ollama Models": "Керування моделями Ollama",
 	"Manage Pipelines": "Управління Pipelines",
 	"Manage Pipelines": "Управління Pipelines",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "Ollama API вимкнено",
 	"Ollama API disabled": "Ollama API вимкнено",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Версія Ollama",
 	"Ollama Version": "Версія Ollama",
 	"On": "Увімк",
 	"On": "Увімк",
 	"Only": "Тільки",
 	"Only": "Тільки",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF документ (.pdf)",
 	"PDF document (.pdf)": "PDF документ (.pdf)",
 	"PDF Extract Images (OCR)": "Розпізнавання зображень з PDF (OCR)",
 	"PDF Extract Images (OCR)": "Розпізнавання зображень з PDF (OCR)",
 	"pending": "на розгляді",
 	"pending": "на розгляді",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Доступ до мікрофона заборонено: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Доступ до мікрофона заборонено: {{error}}",
 	"Personalization": "Персоналізація",
 	"Personalization": "Персоналізація",
 	"Pipelines": "Pipelines",
 	"Pipelines": "Pipelines",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Читати вголос",
 	"Read Aloud": "Читати вголос",
 	"Record voice": "Записати голос",
 	"Record voice": "Записати голос",
 	"Redirecting you to OpenWebUI Community": "Перенаправляємо вас до спільноти OpenWebUI",
 	"Redirecting you to OpenWebUI Community": "Перенаправляємо вас до спільноти OpenWebUI",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Відмовив, коли не мав би",
 	"Refused when it shouldn't have": "Відмовив, коли не мав би",
 	"Regenerate": "Регенерувати",
 	"Regenerate": "Регенерувати",
 	"Release Notes": "Нотатки до випуску",
 	"Release Notes": "Нотатки до випуску",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "Зберегти",
 	"Save": "Зберегти",
 	"Save & Create": "Зберегти та створити",
 	"Save & Create": "Зберегти та створити",
 	"Save & Update": "Зберегти та оновити",
 	"Save & Update": "Зберегти та оновити",
@@ -409,12 +422,14 @@
 	"See what's new": "Подивіться, що нового",
 	"See what's new": "Подивіться, що нового",
 	"Seed": "Сід",
 	"Seed": "Сід",
 	"Select a base model": "Вибрати базову модель",
 	"Select a base model": "Вибрати базову модель",
+	"Select a engine": "",
 	"Select a mode": "Оберіть режим",
 	"Select a mode": "Оберіть режим",
 	"Select a model": "Виберіть модель",
 	"Select a model": "Виберіть модель",
 	"Select a pipeline": "Виберіть pipeline",
 	"Select a pipeline": "Виберіть pipeline",
 	"Select a pipeline url": "Виберіть адресу pipeline",
 	"Select a pipeline url": "Виберіть адресу pipeline",
 	"Select an Ollama instance": "Виберіть екземпляр Ollama",
 	"Select an Ollama instance": "Виберіть екземпляр Ollama",
 	"Select model": "Вибрати модель",
 	"Select model": "Вибрати модель",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "Вибрані модель(і) не підтримують вхідні зображення",
 	"Selected model(s) do not support image inputs": "Вибрані модель(і) не підтримують вхідні зображення",
 	"Send": "Надіслати",
 	"Send": "Надіслати",
 	"Send a Message": "Надіслати повідомлення",
 	"Send a Message": "Надіслати повідомлення",
@@ -451,7 +466,6 @@
 	"Source": "Джерело",
 	"Source": "Джерело",
 	"Speech recognition error: {{error}}": "Помилка розпізнавання мови: {{error}}",
 	"Speech recognition error: {{error}}": "Помилка розпізнавання мови: {{error}}",
 	"Speech-to-Text Engine": "Система розпізнавання мови",
 	"Speech-to-Text Engine": "Система розпізнавання мови",
-	"SpeechRecognition API is not supported in this browser.": "SpeechRecognition API не підтримується в цьому браузері.",
 	"Stop Sequence": "Символ зупинки",
 	"Stop Sequence": "Символ зупинки",
 	"STT Settings": "Налаштування STT",
 	"STT Settings": "Налаштування STT",
 	"Submit": "Надіслати",
 	"Submit": "Надіслати",
@@ -483,6 +497,7 @@
 	"to": "в",
 	"to": "в",
 	"To access the available model names for downloading,": "Щоб отримати доступ до назв доступних для завантаження моделей,",
 	"To access the available model names for downloading,": "Щоб отримати доступ до назв доступних для завантаження моделей,",
 	"To access the GGUF models available for downloading,": "Щоб отримати доступ до моделей GGUF, які можна завантажити,,",
 	"To access the GGUF models available for downloading,": "Щоб отримати доступ до моделей GGUF, які можна завантажити,,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "в чаті.",
 	"to chat input.": "в чаті.",
 	"Today": "Сьогодні",
 	"Today": "Сьогодні",
 	"Toggle settings": "Переключити налаштування",
 	"Toggle settings": "Переключити налаштування",
@@ -499,6 +514,7 @@
 	"Update password": "Оновити пароль",
 	"Update password": "Оновити пароль",
 	"Upload a GGUF model": "Завантажити GGUF модель",
 	"Upload a GGUF model": "Завантажити GGUF модель",
 	"Upload Files": "Завантажити файли",
 	"Upload Files": "Завантажити файли",
+	"Upload Pipeline": "",
 	"Upload Progress": "Прогрес завантаження",
 	"Upload Progress": "Прогрес завантаження",
 	"URL Mode": "Режим URL-адреси",
 	"URL Mode": "Режим URL-адреси",
 	"Use '#' in the prompt input to load and select your documents.": "Для введення промтів до веб-сторінок (URL) або вибору документів, будь ласка, використовуйте символ '#'.",
 	"Use '#' in the prompt input to load and select your documents.": "Для введення промтів до веб-сторінок (URL) або вибору документів, будь ласка, використовуйте символ '#'.",
@@ -517,6 +533,7 @@
 	"Warning": "Увага!",
 	"Warning": "Увага!",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Попередження: Якщо ви оновлюєте або змінюєте модель вбудовування, вам потрібно буде повторно імпортувати всі документи.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Попередження: Якщо ви оновлюєте або змінюєте модель вбудовування, вам потрібно буде повторно імпортувати всі документи.",
 	"Web": "Веб",
 	"Web": "Веб",
+	"Web API": "",
 	"Web Loader Settings": "Налаштування веб-завантажувача",
 	"Web Loader Settings": "Налаштування веб-завантажувача",
 	"Web Params": "Налаштування веб-завантажувача",
 	"Web Params": "Налаштування веб-завантажувача",
 	"Web Search": "Веб-пошук",
 	"Web Search": "Веб-пошук",
@@ -527,18 +544,19 @@
 	"WebUI will make requests to": "WebUI буде робити запити до",
 	"WebUI will make requests to": "WebUI буде робити запити до",
 	"What’s New in": "Що нового в",
 	"What’s New in": "Що нового в",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Коли історія вимкнена, нові чати в цьому браузері не будуть відображатися в історії на жодному з ваших пристроїв.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Коли історія вимкнена, нові чати в цьому браузері не будуть відображатися в історії на жодному з ваших пристроїв.",
-	"Whisper (Local)": "Whisper (локально)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "Робочий простір",
 	"Workspace": "Робочий простір",
 	"Write a prompt suggestion (e.g. Who are you?)": "Напишіть промт (напр., Хто ти?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Напишіть промт (напр., Хто ти?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Напишіть стислий зміст у 50 слів, який узагальнює [тема або ключове слово].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Напишіть стислий зміст у 50 слів, який узагальнює [тема або ключове слово].",
 	"Yesterday": "Вчора",
 	"Yesterday": "Вчора",
 	"You": "Ви",
 	"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 clone a base model": "Базову модель не можна клонувати",
 	"You cannot clone a base model": "Базову модель не можна клонувати",
 	"You have no archived conversations.": "У вас немає архівованих розмов.",
 	"You have no archived conversations.": "У вас немає архівованих розмов.",
 	"You have shared this chat": "Ви поділилися цим чатом",
 	"You have shared this chat": "Ви поділилися цим чатом",
 	"You're a helpful assistant.": "Ви корисний асистент.",
 	"You're a helpful assistant.": "Ви корисний асистент.",
 	"You're now logged in.": "Ви увійшли в систему.",
 	"You're now logged in.": "Ви увійшли в систему.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Налаштування завантажувача Youtube"
 	"Youtube Loader Settings": "Налаштування завантажувача Youtube"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "người sử dụng",
 	"a user": "người sử dụng",
 	"About": "Giới thiệu",
 	"About": "Giới thiệu",
 	"Account": "Tài khoản",
 	"Account": "Tài khoản",
+	"Account Activation Pending": "",
 	"Accurate information": "Thông tin chính xác",
 	"Accurate information": "Thông tin chính xác",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "Thêm",
 	"Add": "Thêm",
@@ -29,6 +30,7 @@
 	"Add User": "Thêm người dùng",
 	"Add User": "Thêm người dùng",
 	"Adjusting these settings will apply changes universally to all users.": "Các thay đổi cài đặt này sẽ áp dụng cho tất cả người sử dụng.",
 	"Adjusting these settings will apply changes universally to all users.": "Các thay đổi cài đặt này sẽ áp dụng cho tất cả người sử dụng.",
 	"admin": "quản trị viên",
 	"admin": "quản trị viên",
+	"Admin": "",
 	"Admin Panel": "Trang Quản trị",
 	"Admin Panel": "Trang Quản trị",
 	"Admin Settings": "Cài đặt hệ thống",
 	"Admin Settings": "Cài đặt hệ thống",
 	"Advanced Parameters": "Các tham số Nâng cao",
 	"Advanced Parameters": "Các tham số Nâng cao",
@@ -59,7 +61,6 @@
 	"Audio": "Âm thanh",
 	"Audio": "Âm thanh",
 	"August": "Tháng 8",
 	"August": "Tháng 8",
 	"Auto-playback response": "Tự động phát lại phản hồi (Auto-playback)",
 	"Auto-playback response": "Tự động phát lại phản hồi (Auto-playback)",
-	"Auto-send input after 3 sec.": "Tự động gửi đầu vào sau 3 giây.",
 	"AUTOMATIC1111 Base URL": "Đường dẫn kết nối tới AUTOMATIC1111 (Base URL)",
 	"AUTOMATIC1111 Base URL": "Đường dẫn kết nối tới AUTOMATIC1111 (Base URL)",
 	"AUTOMATIC1111 Base URL is required.": "Base URL của AUTOMATIC1111 là bắt buộc.",
 	"AUTOMATIC1111 Base URL is required.": "Base URL của AUTOMATIC1111 là bắt buộc.",
 	"available!": "có sẵn!",
 	"available!": "có sẵn!",
@@ -71,6 +72,7 @@
 	"Being lazy": "Lười biếng",
 	"Being lazy": "Lười biếng",
 	"Brave Search API Key": "Khóa API tìm kiếm dũng cảm",
 	"Brave Search API Key": "Khóa API tìm kiếm dũng cảm",
 	"Bypass SSL verification for Websites": "Bỏ qua xác thực SSL cho các trang web",
 	"Bypass SSL verification for Websites": "Bỏ qua xác thực SSL cho các trang web",
+	"Call": "",
 	"Cancel": "Hủy bỏ",
 	"Cancel": "Hủy bỏ",
 	"Capabilities": "Năng lực",
 	"Capabilities": "Năng lực",
 	"Change Password": "Đổi Mật khẩu",
 	"Change Password": "Đổi Mật khẩu",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Tham số khối (chunk)",
 	"Chunk Params": "Tham số khối (chunk)",
 	"Chunk Size": "Kích thước khối (size)",
 	"Chunk Size": "Kích thước khối (size)",
 	"Citation": "Trích dẫn",
 	"Citation": "Trích dẫn",
+	"Clear memory": "",
 	"Click here for help.": "Bấm vào đây để được trợ giúp.",
 	"Click here for help.": "Bấm vào đây để được trợ giúp.",
 	"Click here to": "Nhấn vào đây để",
 	"Click here to": "Nhấn vào đây để",
 	"Click here to select": "Bấm vào đây để chọn",
 	"Click here to select": "Bấm vào đây để chọn",
 	"Click here to select a csv file.": "Nhấn vào đây để chọn tệp csv",
 	"Click here to select a csv file.": "Nhấn vào đây để chọn tệp csv",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "Bấm vào đây để chọn tài liệu.",
 	"Click here to select documents.": "Bấm vào đây để chọn tài liệu.",
 	"click here.": "bấm vào đây.",
 	"click here.": "bấm vào đây.",
 	"Click on the user role button to change a user's role.": "Bấm vào nút trong cột VAI TRÒ để thay đổi quyền của người sử dụng.",
 	"Click on the user role button to change a user's role.": "Bấm vào nút trong cột VAI TRÒ để thay đổi quyền của người sử dụng.",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "Các truy vấn đồng thời",
 	"Concurrent Requests": "Các truy vấn đồng thời",
 	"Confirm Password": "Xác nhận Mật khẩu",
 	"Confirm Password": "Xác nhận Mật khẩu",
 	"Connections": "Kết nối",
 	"Connections": "Kết nối",
+	"Contact Admin for WebUI Access": "",
 	"Content": "Nội dung",
 	"Content": "Nội dung",
 	"Context Length": "Độ dài ngữ cảnh (Context Length)",
 	"Context Length": "Độ dài ngữ cảnh (Context Length)",
 	"Continue Response": "Tiếp tục trả lời",
 	"Continue Response": "Tiếp tục trả lời",
-	"Conversation Mode": "Chế độ hội thoại",
 	"Copied shared chat URL to clipboard!": "Đã sao chép link chia sẻ trò chuyện vào clipboard!",
 	"Copied shared chat URL to clipboard!": "Đã sao chép link chia sẻ trò chuyện vào clipboard!",
 	"Copy": "Sao chép",
 	"Copy": "Sao chép",
 	"Copy last code block": "Sao chép khối mã cuối cùng",
 	"Copy last code block": "Sao chép khối mã cuối cùng",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "Mặc định (Automatic1111)",
 	"Default (Automatic1111)": "Mặc định (Automatic1111)",
 	"Default (SentenceTransformers)": "Mặc định (SentenceTransformers)",
 	"Default (SentenceTransformers)": "Mặc định (SentenceTransformers)",
 	"Default (Web API)": "Mặc định (Web API)",
 	"Default (Web API)": "Mặc định (Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "Model mặc định",
 	"Default Model": "Model mặc định",
 	"Default model updated": "Mô hình mặc định đã được cập nhật",
 	"Default model updated": "Mô hình mặc định đã được cập nhật",
 	"Default Prompt Suggestions": "Đề xuất prompt mặc định",
 	"Default Prompt Suggestions": "Đề xuất prompt mặc định",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "Khám phá thêm prompt mới",
 	"Discover a prompt": "Khám phá thêm prompt mới",
 	"Discover, download, and explore custom prompts": "Tìm kiếm, tải về và khám phá thêm các prompt tùy chỉnh",
 	"Discover, download, and explore custom prompts": "Tìm kiếm, tải về và khám phá thêm các prompt tùy chỉnh",
 	"Discover, download, and explore model presets": "Tìm kiếm, tải về và khám phá thêm các thiết lập mô hình sẵn",
 	"Discover, download, and explore model presets": "Tìm kiếm, tải về và khám phá thêm các thiết lập mô hình sẵn",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "Hiển thị tên người sử dụng thay vì 'Bạn' trong nội dung chat",
 	"Display the username instead of You in the Chat": "Hiển thị tên người sử dụng thay vì 'Bạn' trong nội dung chat",
 	"Document": "Tài liệu",
 	"Document": "Tài liệu",
 	"Document Settings": "Cấu hình kho tài liệu",
 	"Document Settings": "Cấu hình kho tài liệu",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "Tải cấu trúc tài liệu về máy",
 	"Export Documents Mapping": "Tải cấu trúc tài liệu về máy",
 	"Export Models": "Tải Models về máy",
 	"Export Models": "Tải Models về máy",
 	"Export Prompts": "Tải các prompt về máy",
 	"Export Prompts": "Tải các prompt về máy",
+	"External Models": "",
 	"Failed to create API Key.": "Lỗi khởi tạo API Key",
 	"Failed to create API Key.": "Lỗi khởi tạo API Key",
 	"Failed to read clipboard contents": "Không thể đọc nội dung clipboard",
 	"Failed to read clipboard contents": "Không thể đọc nội dung clipboard",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "Thông tin",
 	"Info": "Thông tin",
 	"Input commands": "Nhập các câu lệnh",
 	"Input commands": "Nhập các câu lệnh",
 	"Install from Github URL": "Cài đặt từ Github URL",
 	"Install from Github URL": "Cài đặt từ Github URL",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "Giao diện",
 	"Interface": "Giao diện",
 	"Invalid Tag": "Tag không hợp lệ",
 	"Invalid Tag": "Tag không hợp lệ",
 	"January": "Tháng 1",
 	"January": "Tháng 1",
@@ -267,11 +275,12 @@
 	"Language": "Ngôn ngữ",
 	"Language": "Ngôn ngữ",
 	"Last Active": "Truy cập gần nhất",
 	"Last Active": "Truy cập gần nhất",
 	"Light": "Sáng",
 	"Light": "Sáng",
-	"Listening...": "Đang nghe...",
 	"LLMs can make mistakes. Verify important information.": "Hệ thống có thể tạo ra nội dung không chính xác hoặc sai. Hãy kiểm chứng kỹ lưỡng thông tin trước khi tiếp nhận và sử dụng.",
 	"LLMs can make mistakes. Verify important information.": "Hệ thống có thể tạo ra nội dung không chính xác hoặc sai. Hãy kiểm chứng kỹ lưỡng thông tin trước khi tiếp nhận và sử dụng.",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "Được tạo bởi Cộng đồng OpenWebUI",
 	"Made by OpenWebUI Community": "Được tạo bởi Cộng đồng OpenWebUI",
 	"Make sure to enclose them with": "Hãy chắc chắn bao quanh chúng bằng",
 	"Make sure to enclose them with": "Hãy chắc chắn bao quanh chúng bằng",
+	"Manage": "",
 	"Manage Models": "Quản lý mô hình",
 	"Manage Models": "Quản lý mô hình",
 	"Manage Ollama Models": "Quản lý mô hình với Ollama",
 	"Manage Ollama Models": "Quản lý mô hình với Ollama",
 	"Manage Pipelines": "Quản lý Pipelines",
 	"Manage Pipelines": "Quản lý Pipelines",
@@ -323,6 +332,7 @@
 	"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 disabled": "API Ollama bị vô hiệu hóa",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Phiên bản Ollama",
 	"Ollama Version": "Phiên bản Ollama",
 	"On": "Bật",
 	"On": "Bật",
 	"Only": "Only",
 	"Only": "Only",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "Tập tin PDF (.pdf)",
 	"PDF document (.pdf)": "Tập tin PDF (.pdf)",
 	"PDF Extract Images (OCR)": "Trích xuất ảnh từ PDF (OCR)",
 	"PDF Extract Images (OCR)": "Trích xuất ảnh từ PDF (OCR)",
 	"pending": "đang chờ phê duyệt",
 	"pending": "đang chờ phê duyệt",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "Quyền truy cập micrô bị từ chối: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Quyền truy cập micrô bị từ chối: {{error}}",
 	"Personalization": "Cá nhân hóa",
 	"Personalization": "Cá nhân hóa",
 	"Pipelines": "Đường ống",
 	"Pipelines": "Đường ống",
@@ -367,6 +378,7 @@
 	"Read Aloud": "Đọc ra loa",
 	"Read Aloud": "Đọc ra loa",
 	"Record voice": "Ghi âm",
 	"Record voice": "Ghi âm",
 	"Redirecting you to OpenWebUI Community": "Đang chuyển hướng bạn đến Cộng đồng OpenWebUI",
 	"Redirecting you to OpenWebUI Community": "Đang chuyển hướng bạn đến Cộng đồng OpenWebUI",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "Từ chối trả lời mà nhẽ không nên làm vậy",
 	"Refused when it shouldn't have": "Từ chối trả lời mà nhẽ không nên làm vậy",
 	"Regenerate": "Tạo sinh lại câu trả lời",
 	"Regenerate": "Tạo sinh lại câu trả lời",
 	"Release Notes": "Mô tả những cập nhật mới",
 	"Release Notes": "Mô tả những cập nhật mới",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "Lưu",
 	"Save": "Lưu",
 	"Save & Create": "Lưu & Tạo",
 	"Save & Create": "Lưu & Tạo",
 	"Save & Update": "Lưu & Cập nhật",
 	"Save & Update": "Lưu & Cập nhật",
@@ -406,12 +419,14 @@
 	"See what's new": "Xem những cập nhật mới",
 	"See what's new": "Xem những cập nhật mới",
 	"Seed": "Seed",
 	"Seed": "Seed",
 	"Select a base model": "Chọn một base model",
 	"Select a base model": "Chọn một base model",
+	"Select a engine": "",
 	"Select a mode": "Chọn một chế độ",
 	"Select a mode": "Chọn một chế độ",
 	"Select a model": "Chọn mô hình",
 	"Select a model": "Chọn mô hình",
 	"Select a pipeline": "Chọn một quy trình",
 	"Select a pipeline": "Chọn một quy trình",
 	"Select a pipeline url": "Chọn url quy trình",
 	"Select a pipeline url": "Chọn url quy trình",
 	"Select an Ollama instance": "Chọn một thực thể Ollama",
 	"Select an Ollama instance": "Chọn một thực thể Ollama",
 	"Select model": "Chọn model",
 	"Select model": "Chọn model",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "Model được lựa chọn không hỗ trợ đầu vào là hình ảnh",
 	"Selected model(s) do not support image inputs": "Model được lựa chọn không hỗ trợ đầu vào là hình ảnh",
 	"Send": "Gửi",
 	"Send": "Gửi",
 	"Send a Message": "Gửi yêu cầu",
 	"Send a Message": "Gửi yêu cầu",
@@ -448,7 +463,6 @@
 	"Source": "Nguồn",
 	"Source": "Nguồn",
 	"Speech recognition error: {{error}}": "Lỗi nhận dạng giọng nói: {{error}}",
 	"Speech recognition error: {{error}}": "Lỗi nhận dạng giọng nói: {{error}}",
 	"Speech-to-Text Engine": "Công cụ Nhận dạng Giọng nói",
 	"Speech-to-Text Engine": "Công cụ Nhận dạng Giọng nói",
-	"SpeechRecognition API is not supported in this browser.": "Trình duyệt này không hỗ trợ API Nhận dạng Giọng nói.",
 	"Stop Sequence": "Trình tự Dừng",
 	"Stop Sequence": "Trình tự Dừng",
 	"STT Settings": "Cài đặt Nhận dạng Giọng nói",
 	"STT Settings": "Cài đặt Nhận dạng Giọng nói",
 	"Submit": "Gửi",
 	"Submit": "Gửi",
@@ -480,6 +494,7 @@
 	"to": " - ",
 	"to": " - ",
 	"To access the available model names for downloading,": "Để truy cập các tên mô hình có sẵn để tải xuống,",
 	"To access the available model names for downloading,": "Để truy cập các tên mô hình có sẵn để tải xuống,",
 	"To access the GGUF models available for downloading,": "Để truy cập các mô hình GGUF có sẵn để tải xuống,",
 	"To access the GGUF models available for downloading,": "Để truy cập các mô hình GGUF có sẵn để tải xuống,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "đến đầu vào trò chuyện.",
 	"to chat input.": "đến đầu vào trò chuyện.",
 	"Today": "Hôm nay",
 	"Today": "Hôm nay",
 	"Toggle settings": "Bật/tắt cài đặt",
 	"Toggle settings": "Bật/tắt cài đặt",
@@ -496,6 +511,7 @@
 	"Update password": "Cập nhật mật khẩu",
 	"Update password": "Cập nhật mật khẩu",
 	"Upload a GGUF model": "Tải lên mô hình GGUF",
 	"Upload a GGUF model": "Tải lên mô hình GGUF",
 	"Upload Files": "Tải tệp lên máy chủ",
 	"Upload Files": "Tải tệp lên máy chủ",
+	"Upload Pipeline": "",
 	"Upload Progress": "Tiến trình tải tệp lên hệ thống",
 	"Upload Progress": "Tiến trình tải tệp lên hệ thống",
 	"URL Mode": "Chế độ URL",
 	"URL Mode": "Chế độ URL",
 	"Use '#' in the prompt input to load and select your documents.": "Sử dụng '#' trong đầu vào của prompt để tải về và lựa chọn tài liệu của bạn cần truy vấn.",
 	"Use '#' in the prompt input to load and select your documents.": "Sử dụng '#' trong đầu vào của prompt để tải về và lựa chọn tài liệu của bạn cần truy vấn.",
@@ -514,6 +530,7 @@
 	"Warning": "Cảnh báo",
 	"Warning": "Cảnh báo",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Cảnh báo: Nếu cập nhật hoặc thay đổi embedding model, bạn sẽ cần cập nhật lại tất cả tài liệu.",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Cảnh báo: Nếu cập nhật hoặc thay đổi embedding model, bạn sẽ cần cập nhật lại tất cả tài liệu.",
 	"Web": "Web",
 	"Web": "Web",
+	"Web API": "",
 	"Web Loader Settings": "Cài đặt Web Loader",
 	"Web Loader Settings": "Cài đặt Web Loader",
 	"Web Params": "Web Params",
 	"Web Params": "Web Params",
 	"Web Search": "Tìm kiếm Web",
 	"Web Search": "Tìm kiếm Web",
@@ -524,18 +541,19 @@
 	"WebUI will make requests to": "WebUI sẽ thực hiện các yêu cầu đến",
 	"WebUI will make requests to": "WebUI sẽ thực hiện các yêu cầu đến",
 	"What’s New in": "Thông tin mới về",
 	"What’s New in": "Thông tin mới về",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Khi chế độ lịch sử chat đã tắt, các nội dung chat mới trên trình duyệt này sẽ không xuất hiện trên bất kỳ thiết bị nào của bạn.",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Khi chế độ lịch sử chat đã tắt, các nội dung chat mới trên trình duyệt này sẽ không xuất hiện trên bất kỳ thiết bị nào của bạn.",
-	"Whisper (Local)": "Whisper (Local)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "Workspace",
 	"Workspace": "Workspace",
 	"Write a prompt suggestion (e.g. Who are you?)": "Hãy viết một prompt (vd: Bạn là ai?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "Hãy viết một prompt (vd: Bạn là ai?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Viết một tóm tắt trong vòng 50 từ cho [chủ đề hoặc từ khóa].",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Viết một tóm tắt trong vòng 50 từ cho [chủ đề hoặc từ khóa].",
 	"Yesterday": "Hôm qua",
 	"Yesterday": "Hôm qua",
 	"You": "Bạn",
 	"You": "Bạn",
+	"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 clone a base model": "Bạn không thể nhân bản base model",
 	"You cannot clone a base model": "Bạn không thể nhân bản base model",
 	"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",
 	"You're a helpful assistant.": "Bạn là một trợ lý hữu ích.",
 	"You're a helpful assistant.": "Bạn là một trợ lý hữu ích.",
 	"You're now logged in.": "Bạn đã đăng nhập.",
 	"You're now logged in.": "Bạn đã đăng nhập.",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Cài đặt Youtube Loader"
 	"Youtube Loader Settings": "Cài đặt Youtube Loader"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "用户",
 	"a user": "用户",
 	"About": "关于",
 	"About": "关于",
 	"Account": "账号",
 	"Account": "账号",
+	"Account Activation Pending": "账号待激活",
 	"Accurate information": "提供的信息很准确",
 	"Accurate information": "提供的信息很准确",
 	"Active Users": "当前在线用户",
 	"Active Users": "当前在线用户",
 	"Add": "添加",
 	"Add": "添加",
@@ -29,6 +30,7 @@
 	"Add User": "添加用户",
 	"Add User": "添加用户",
 	"Adjusting these settings will apply changes universally to all users.": "调整这些设置将会对所有用户应用更改。",
 	"Adjusting these settings will apply changes universally to all users.": "调整这些设置将会对所有用户应用更改。",
 	"admin": "管理员",
 	"admin": "管理员",
+	"Admin": "管理员联系方式",
 	"Admin Panel": "管理员面板",
 	"Admin Panel": "管理员面板",
 	"Admin Settings": "管理员设置",
 	"Admin Settings": "管理员设置",
 	"Advanced Parameters": "高级参数",
 	"Advanced Parameters": "高级参数",
@@ -59,7 +61,6 @@
 	"Audio": "语音",
 	"Audio": "语音",
 	"August": "八月",
 	"August": "八月",
 	"Auto-playback response": "自动念出回复内容",
 	"Auto-playback response": "自动念出回复内容",
-	"Auto-send input after 3 sec.": "3 秒后自动发送输入框内容",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 基础地址",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 基础地址",
 	"AUTOMATIC1111 Base URL is required.": "需要 AUTOMATIC1111 基础地址。",
 	"AUTOMATIC1111 Base URL is required.": "需要 AUTOMATIC1111 基础地址。",
 	"available!": "版本可用!",
 	"available!": "版本可用!",
@@ -71,6 +72,7 @@
 	"Being lazy": "懒惰",
 	"Being lazy": "懒惰",
 	"Brave Search API Key": "Brave Search API 密钥",
 	"Brave Search API Key": "Brave Search API 密钥",
 	"Bypass SSL verification for Websites": "绕过网站的 SSL 验证",
 	"Bypass SSL verification for Websites": "绕过网站的 SSL 验证",
+	"Call": "",
 	"Cancel": "取消",
 	"Cancel": "取消",
 	"Capabilities": "能力",
 	"Capabilities": "能力",
 	"Change Password": "更改密码",
 	"Change Password": "更改密码",
@@ -93,6 +95,7 @@
 	"Click here to": "单击",
 	"Click here to": "单击",
 	"Click here to select": "点击这里选择",
 	"Click here to select": "点击这里选择",
 	"Click here to select a csv file.": "单击此处选择 csv 文件。",
 	"Click here to select a csv file.": "单击此处选择 csv 文件。",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "单击选择文档",
 	"Click here to select documents.": "单击选择文档",
 	"click here.": "点击这里。",
 	"click here.": "点击这里。",
 	"Click on the user role button to change a user's role.": "点击角色前方的组别按钮以更改用户所属权限组。",
 	"Click on the user role button to change a user's role.": "点击角色前方的组别按钮以更改用户所属权限组。",
@@ -106,10 +109,10 @@
 	"Concurrent Requests": "并发请求",
 	"Concurrent Requests": "并发请求",
 	"Confirm Password": "确认密码",
 	"Confirm Password": "确认密码",
 	"Connections": "外部连接",
 	"Connections": "外部连接",
+	"Contact Admin for WebUI Access": "请联系管理员以获取访问权限",
 	"Content": "内容",
 	"Content": "内容",
 	"Context Length": "上下文长度",
 	"Context Length": "上下文长度",
 	"Continue Response": "继续生成",
 	"Continue Response": "继续生成",
-	"Conversation Mode": "连续对话模式",
 	"Copied shared chat URL to clipboard!": "已复制此对话分享链接至剪贴板!",
 	"Copied shared chat URL to clipboard!": "已复制此对话分享链接至剪贴板!",
 	"Copy": "复制",
 	"Copy": "复制",
 	"Copy last code block": "复制最后一个代码块中的代码",
 	"Copy last code block": "复制最后一个代码块中的代码",
@@ -123,7 +126,6 @@
 	"Create new secret key": "创建新安全密钥",
 	"Create new secret key": "创建新安全密钥",
 	"Created at": "创建于",
 	"Created at": "创建于",
 	"Created At": "创建于",
 	"Created At": "创建于",
-	"Created by": "作者",
 	"Current Model": "当前模型",
 	"Current Model": "当前模型",
 	"Current Password": "当前密码",
 	"Current Password": "当前密码",
 	"Custom": "自定义",
 	"Custom": "自定义",
@@ -135,6 +137,7 @@
 	"Default (Automatic1111)": "默认(Automatic1111)",
 	"Default (Automatic1111)": "默认(Automatic1111)",
 	"Default (SentenceTransformers)": "默认(SentenceTransformers)",
 	"Default (SentenceTransformers)": "默认(SentenceTransformers)",
 	"Default (Web API)": "默认(Web API)",
 	"Default (Web API)": "默认(Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "默认模型",
 	"Default Model": "默认模型",
 	"Default model updated": "默认模型已更新",
 	"Default model updated": "默认模型已更新",
 	"Default Prompt Suggestions": "默认提示词建议",
 	"Default Prompt Suggestions": "默认提示词建议",
@@ -216,6 +219,7 @@
 	"Export Documents Mapping": "导出文档映射",
 	"Export Documents Mapping": "导出文档映射",
 	"Export Models": "导出模型",
 	"Export Models": "导出模型",
 	"Export Prompts": "导出提示词",
 	"Export Prompts": "导出提示词",
+	"External Models": "外部模型",
 	"Failed to create API Key.": "无法创建 API 密钥。",
 	"Failed to create API Key.": "无法创建 API 密钥。",
 	"Failed to read clipboard contents": "无法读取剪贴板内容",
 	"Failed to read clipboard contents": "无法读取剪贴板内容",
 	"Failed to update settings": "无法更新设置",
 	"Failed to update settings": "无法更新设置",
@@ -255,6 +259,7 @@
 	"Info": "信息",
 	"Info": "信息",
 	"Input commands": "输入命令",
 	"Input commands": "输入命令",
 	"Install from Github URL": "从 Github URL 安装",
 	"Install from Github URL": "从 Github URL 安装",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "界面",
 	"Interface": "界面",
 	"Invalid Tag": "无效标签",
 	"Invalid Tag": "无效标签",
 	"January": "一月",
 	"January": "一月",
@@ -270,8 +275,8 @@
 	"Language": "语言",
 	"Language": "语言",
 	"Last Active": "最后在线时间",
 	"Last Active": "最后在线时间",
 	"Light": "浅色",
 	"Light": "浅色",
-	"Listening...": "正在倾听...",
 	"LLMs can make mistakes. Verify important information.": "大语言模型可能会生成误导性错误信息,请对关键信息加以验证。",
 	"LLMs can make mistakes. Verify important information.": "大语言模型可能会生成误导性错误信息,请对关键信息加以验证。",
+	"Local Models": "本地模型",
 	"LTR": "从左至右",
 	"LTR": "从左至右",
 	"Made by OpenWebUI Community": "由 OpenWebUI 社区制作",
 	"Made by OpenWebUI Community": "由 OpenWebUI 社区制作",
 	"Make sure to enclose them with": "确保将它们包含在内",
 	"Make sure to enclose them with": "确保将它们包含在内",
@@ -327,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "Ollama API 已禁用",
 	"Ollama API disabled": "Ollama API 已禁用",
+	"Ollama API is disabled": "Ollama API 已禁用",
 	"Ollama Version": "Ollama 版本",
 	"Ollama Version": "Ollama 版本",
 	"On": "开启",
 	"On": "开启",
 	"Only": "仅",
 	"Only": "仅",
@@ -349,6 +355,7 @@
 	"PDF document (.pdf)": "PDF 文档 (.pdf)",
 	"PDF document (.pdf)": "PDF 文档 (.pdf)",
 	"PDF Extract Images (OCR)": "PDF 图像处理 (使用 OCR)",
 	"PDF Extract Images (OCR)": "PDF 图像处理 (使用 OCR)",
 	"pending": "待激活",
 	"pending": "待激活",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "申请麦克风权限被拒绝:{{error}}",
 	"Permission denied when accessing microphone: {{error}}": "申请麦克风权限被拒绝:{{error}}",
 	"Personalization": "个性化",
 	"Personalization": "个性化",
 	"Pipelines": "Pipeline",
 	"Pipelines": "Pipeline",
@@ -371,6 +378,7 @@
 	"Read Aloud": "朗读",
 	"Read Aloud": "朗读",
 	"Record voice": "录音",
 	"Record voice": "录音",
 	"Redirecting you to OpenWebUI Community": "正在将您重定向到 OpenWebUI 社区",
 	"Redirecting you to OpenWebUI Community": "正在将您重定向到 OpenWebUI 社区",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "使用\"User\" (用户) 来指代自己(例如:“User 正在学习西班牙语”)",
 	"Refused when it shouldn't have": "无理拒绝",
 	"Refused when it shouldn't have": "无理拒绝",
 	"Regenerate": "重新生成",
 	"Regenerate": "重新生成",
 	"Release Notes": "更新日志",
 	"Release Notes": "更新日志",
@@ -418,6 +426,7 @@
 	"Select a pipeline url": "选择一个管道 URL",
 	"Select a pipeline url": "选择一个管道 URL",
 	"Select an Ollama instance": "选择一个 Ollama 实例",
 	"Select an Ollama instance": "选择一个 Ollama 实例",
 	"Select model": "选择模型",
 	"Select model": "选择模型",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "已选择的模型不支持发送图像",
 	"Selected model(s) do not support image inputs": "已选择的模型不支持发送图像",
 	"Send": "发送",
 	"Send": "发送",
 	"Send a Message": "输入消息",
 	"Send a Message": "输入消息",
@@ -454,7 +463,6 @@
 	"Source": "来源",
 	"Source": "来源",
 	"Speech recognition error: {{error}}": "语音识别错误:{{error}}",
 	"Speech recognition error: {{error}}": "语音识别错误:{{error}}",
 	"Speech-to-Text Engine": "语音转文本引擎",
 	"Speech-to-Text Engine": "语音转文本引擎",
-	"SpeechRecognition API is not supported in this browser.": "此浏览器不支持 SpeechRecognition API。",
 	"Stop Sequence": "停止序列 (Stop Sequence)",
 	"Stop Sequence": "停止序列 (Stop Sequence)",
 	"STT Settings": "语音转文本设置",
 	"STT Settings": "语音转文本设置",
 	"Submit": "提交",
 	"Submit": "提交",
@@ -486,6 +494,7 @@
 	"to": "到",
 	"to": "到",
 	"To access the available model names for downloading,": "要访问可下载的模型名称,",
 	"To access the available model names for downloading,": "要访问可下载的模型名称,",
 	"To access the GGUF models available for downloading,": "要访问可下载的 GGUF 模型,",
 	"To access the GGUF models available for downloading,": "要访问可下载的 GGUF 模型,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "请联系管理员以访问。管理员可以在后台管理面板中管理用户状态。",
 	"to chat input.": "到对话输入。",
 	"to chat input.": "到对话输入。",
 	"Today": "今天",
 	"Today": "今天",
 	"Toggle settings": "切换设置",
 	"Toggle settings": "切换设置",
@@ -502,6 +511,7 @@
 	"Update password": "更新密码",
 	"Update password": "更新密码",
 	"Upload a GGUF model": "上传一个 GGUF 模型",
 	"Upload a GGUF model": "上传一个 GGUF 模型",
 	"Upload Files": "上传文件",
 	"Upload Files": "上传文件",
+	"Upload Pipeline": "",
 	"Upload Progress": "上传进度",
 	"Upload Progress": "上传进度",
 	"URL Mode": "URL 模式",
 	"URL Mode": "URL 模式",
 	"Use '#' in the prompt input to load and select your documents.": "在输入框中输入'#'号来选择并附带你的文档。",
 	"Use '#' in the prompt input to load and select your documents.": "在输入框中输入'#'号来选择并附带你的文档。",
@@ -520,6 +530,7 @@
 	"Warning": "警告",
 	"Warning": "警告",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "警告:如果您修改了语义向量模型,则需要重新导入所有文档。",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "警告:如果您修改了语义向量模型,则需要重新导入所有文档。",
 	"Web": "网页",
 	"Web": "网页",
+	"Web API": "",
 	"Web Loader Settings": "网页爬取设置",
 	"Web Loader Settings": "网页爬取设置",
 	"Web Params": "网络爬取设置",
 	"Web Params": "网络爬取设置",
 	"Web Search": "网络搜索",
 	"Web Search": "网络搜索",
@@ -530,7 +541,6 @@
 	"WebUI will make requests to": "WebUI 将请求",
 	"WebUI will make requests to": "WebUI 将请求",
 	"What’s New in": "最近更新内容于",
 	"What’s New in": "最近更新内容于",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "当关闭历史记录功能时,在此浏览器上新的对话记录将不会同步到您其他设备的历史记录中。",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "当关闭历史记录功能时,在此浏览器上新的对话记录将不会同步到您其他设备的历史记录中。",
-	"Whisper (Local)": "Whisper(本地)",
 	"Widescreen Mode": "宽屏模式",
 	"Widescreen Mode": "宽屏模式",
 	"Workspace": "工作空间",
 	"Workspace": "工作空间",
 	"Write a prompt suggestion (e.g. Who are you?)": "写一个提示词建议(例如:你是谁?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "写一个提示词建议(例如:你是谁?)",
@@ -543,17 +553,7 @@
 	"You have shared this chat": "你之前已经分享过此",
 	"You have shared this chat": "你之前已经分享过此",
 	"You're a helpful assistant.": "你是一个有帮助的助手。",
 	"You're a helpful assistant.": "你是一个有帮助的助手。",
 	"You're now logged in.": "已登录。",
 	"You're now logged in.": "已登录。",
-	"Youtube": "YouTube",
-	"Youtube Loader Settings": "YouTube 爬取设置",
-	"Ollama API is disabled": "Ollama API 已禁用",
-	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "这是一个实验性功能,可能无法按预期运行,并随时可能更改。",
-	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "使用\"User\" (用户) 来指代自己(例如:“User 正在学习西班牙语”)",
-	"Local Models": "本地模型",
-	"External Models": "外部模型",
-	"Generate Image": "生成图像",
-	"Account Activation Pending": "账号待激活",
-	"Contact Admin for WebUI Access": "请联系管理员以获取访问权限",
 	"Your account status is currently pending activation.": "您的账号当前状态为待激活。",
 	"Your account status is currently pending activation.": "您的账号当前状态为待激活。",
-	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "请联系管理员以访问。管理员可以在后台管理面板中管理用户状态。",
-	"Admin": "管理员联系方式"
+	"Youtube": "YouTube",
+	"Youtube Loader Settings": "YouTube 爬取设置"
 }
 }

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

@@ -12,6 +12,7 @@
 	"a user": "使用者",
 	"a user": "使用者",
 	"About": "關於",
 	"About": "關於",
 	"Account": "帳號",
 	"Account": "帳號",
+	"Account Activation Pending": "",
 	"Accurate information": "準確信息",
 	"Accurate information": "準確信息",
 	"Active Users": "",
 	"Active Users": "",
 	"Add": "新增",
 	"Add": "新增",
@@ -29,6 +30,7 @@
 	"Add User": "新增用户",
 	"Add User": "新增用户",
 	"Adjusting these settings will apply changes universally to all users.": "調整這些設定將對所有使用者進行更改。",
 	"Adjusting these settings will apply changes universally to all users.": "調整這些設定將對所有使用者進行更改。",
 	"admin": "管理員",
 	"admin": "管理員",
+	"Admin": "",
 	"Admin Panel": "管理員控制台",
 	"Admin Panel": "管理員控制台",
 	"Admin Settings": "管理設定",
 	"Admin Settings": "管理設定",
 	"Advanced Parameters": "進階參數",
 	"Advanced Parameters": "進階參數",
@@ -59,7 +61,6 @@
 	"Audio": "音訊",
 	"Audio": "音訊",
 	"August": "8月",
 	"August": "8月",
 	"Auto-playback response": "自動播放回答",
 	"Auto-playback response": "自動播放回答",
-	"Auto-send input after 3 sec.": "3 秒後自動傳送輸入內容",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 基本 URL",
 	"AUTOMATIC1111 Base URL": "AUTOMATIC1111 基本 URL",
 	"AUTOMATIC1111 Base URL is required.": "需要 AUTOMATIC1111 基本 URL",
 	"AUTOMATIC1111 Base URL is required.": "需要 AUTOMATIC1111 基本 URL",
 	"available!": "可以使用!",
 	"available!": "可以使用!",
@@ -71,6 +72,7 @@
 	"Being lazy": "懶人模式",
 	"Being lazy": "懶人模式",
 	"Brave Search API Key": "搜尋 API Key",
 	"Brave Search API Key": "搜尋 API Key",
 	"Bypass SSL verification for Websites": "跳過 SSL 驗證",
 	"Bypass SSL verification for Websites": "跳過 SSL 驗證",
+	"Call": "",
 	"Cancel": "取消",
 	"Cancel": "取消",
 	"Capabilities": "功能",
 	"Capabilities": "功能",
 	"Change Password": "修改密碼",
 	"Change Password": "修改密碼",
@@ -88,10 +90,12 @@
 	"Chunk Params": "Chunk 參數",
 	"Chunk Params": "Chunk 參數",
 	"Chunk Size": "Chunk 大小",
 	"Chunk Size": "Chunk 大小",
 	"Citation": "引文",
 	"Citation": "引文",
+	"Clear memory": "",
 	"Click here for help.": "點擊這裡尋找幫助。",
 	"Click here for help.": "點擊這裡尋找幫助。",
 	"Click here to": "點擊這裡",
 	"Click here to": "點擊這裡",
 	"Click here to select": "點擊這裡選擇",
 	"Click here to select": "點擊這裡選擇",
 	"Click here to select a csv file.": "點擊這裡選擇 csv 檔案。",
 	"Click here to select a csv file.": "點擊這裡選擇 csv 檔案。",
+	"Click here to select a py file.": "",
 	"Click here to select documents.": "點擊這裡選擇文件。",
 	"Click here to select documents.": "點擊這裡選擇文件。",
 	"click here.": "點擊這裡。",
 	"click here.": "點擊這裡。",
 	"Click on the user role button to change a user's role.": "點擊使用者 Role 按鈕以更改使用者的 Role。",
 	"Click on the user role button to change a user's role.": "點擊使用者 Role 按鈕以更改使用者的 Role。",
@@ -105,10 +109,10 @@
 	"Concurrent Requests": "同時請求",
 	"Concurrent Requests": "同時請求",
 	"Confirm Password": "確認密碼",
 	"Confirm Password": "確認密碼",
 	"Connections": "連線",
 	"Connections": "連線",
+	"Contact Admin for WebUI Access": "",
 	"Content": "內容",
 	"Content": "內容",
 	"Context Length": "上下文長度",
 	"Context Length": "上下文長度",
 	"Continue Response": "繼續回答",
 	"Continue Response": "繼續回答",
-	"Conversation Mode": "對話模式",
 	"Copied shared chat URL to clipboard!": "已複製共享聊天連結到剪貼簿!",
 	"Copied shared chat URL to clipboard!": "已複製共享聊天連結到剪貼簿!",
 	"Copy": "複製",
 	"Copy": "複製",
 	"Copy last code block": "複製最後一個程式碼區塊",
 	"Copy last code block": "複製最後一個程式碼區塊",
@@ -133,6 +137,7 @@
 	"Default (Automatic1111)": "預設(Automatic1111)",
 	"Default (Automatic1111)": "預設(Automatic1111)",
 	"Default (SentenceTransformers)": "預設(SentenceTransformers)",
 	"Default (SentenceTransformers)": "預設(SentenceTransformers)",
 	"Default (Web API)": "預設(Web API)",
 	"Default (Web API)": "預設(Web API)",
+	"Default (Whisper)": "",
 	"Default Model": "預設模型",
 	"Default Model": "預設模型",
 	"Default model updated": "預設模型已更新",
 	"Default model updated": "預設模型已更新",
 	"Default Prompt Suggestions": "預設提示詞建議",
 	"Default Prompt Suggestions": "預設提示詞建議",
@@ -153,6 +158,7 @@
 	"Discover a prompt": "發現新提示詞",
 	"Discover a prompt": "發現新提示詞",
 	"Discover, download, and explore custom prompts": "發現、下載並探索他人設置的提示詞",
 	"Discover, download, and explore custom prompts": "發現、下載並探索他人設置的提示詞",
 	"Discover, download, and explore model presets": "發現、下載並探索他人設置的模型",
 	"Discover, download, and explore model presets": "發現、下載並探索他人設置的模型",
+	"Dismissible": "",
 	"Display the username instead of You in the Chat": "在聊天中顯示使用者名稱而不是「你」",
 	"Display the username instead of You in the Chat": "在聊天中顯示使用者名稱而不是「你」",
 	"Document": "文件",
 	"Document": "文件",
 	"Document Settings": "文件設定",
 	"Document Settings": "文件設定",
@@ -213,6 +219,7 @@
 	"Export Documents Mapping": "匯出文件映射",
 	"Export Documents Mapping": "匯出文件映射",
 	"Export Models": "匯出模型",
 	"Export Models": "匯出模型",
 	"Export Prompts": "匯出提示詞",
 	"Export Prompts": "匯出提示詞",
+	"External Models": "",
 	"Failed to create API Key.": "無法創建 API 金鑰。",
 	"Failed to create API Key.": "無法創建 API 金鑰。",
 	"Failed to read clipboard contents": "無法讀取剪貼簿內容",
 	"Failed to read clipboard contents": "無法讀取剪貼簿內容",
 	"Failed to update settings": "",
 	"Failed to update settings": "",
@@ -252,6 +259,7 @@
 	"Info": "資訊",
 	"Info": "資訊",
 	"Input commands": "輸入命令",
 	"Input commands": "輸入命令",
 	"Install from Github URL": "從 Github URL 安裝",
 	"Install from Github URL": "從 Github URL 安裝",
+	"Instant Auto-Send After Voice Transcription": "",
 	"Interface": "介面",
 	"Interface": "介面",
 	"Invalid Tag": "無效標籤",
 	"Invalid Tag": "無效標籤",
 	"January": "1月",
 	"January": "1月",
@@ -267,11 +275,12 @@
 	"Language": "語言",
 	"Language": "語言",
 	"Last Active": "最後活動",
 	"Last Active": "最後活動",
 	"Light": "亮色",
 	"Light": "亮色",
-	"Listening...": "正在聽取...",
 	"LLMs can make mistakes. Verify important information.": "LLM 可能會產生錯誤。請驗證重要資訊。",
 	"LLMs can make mistakes. Verify important information.": "LLM 可能會產生錯誤。請驗證重要資訊。",
+	"Local Models": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by OpenWebUI Community": "由 OpenWebUI 社區製作",
 	"Made by OpenWebUI Community": "由 OpenWebUI 社區製作",
 	"Make sure to enclose them with": "請確保變數有被以下符號框住:",
 	"Make sure to enclose them with": "請確保變數有被以下符號框住:",
+	"Manage": "",
 	"Manage Models": "管理模組",
 	"Manage Models": "管理模組",
 	"Manage Ollama Models": "管理 Ollama 模型",
 	"Manage Ollama Models": "管理 Ollama 模型",
 	"Manage Pipelines": "管理管道",
 	"Manage Pipelines": "管理管道",
@@ -323,6 +332,7 @@
 	"Ollama": "Ollama",
 	"Ollama": "Ollama",
 	"Ollama API": "Ollama API",
 	"Ollama API": "Ollama API",
 	"Ollama API disabled": "Ollama API 已禁用",
 	"Ollama API disabled": "Ollama API 已禁用",
+	"Ollama API is disabled": "",
 	"Ollama Version": "Ollama 版本",
 	"Ollama Version": "Ollama 版本",
 	"On": "開啟",
 	"On": "開啟",
 	"Only": "僅有",
 	"Only": "僅有",
@@ -345,6 +355,7 @@
 	"PDF document (.pdf)": "PDF 文件 (.pdf)",
 	"PDF document (.pdf)": "PDF 文件 (.pdf)",
 	"PDF Extract Images (OCR)": "PDF 圖像擷取(OCR 光學文字辨識)",
 	"PDF Extract Images (OCR)": "PDF 圖像擷取(OCR 光學文字辨識)",
 	"pending": "待審查",
 	"pending": "待審查",
+	"Permission denied when accessing media devices": "",
 	"Permission denied when accessing microphone: {{error}}": "存取麥克風時被拒絕權限:{{error}}",
 	"Permission denied when accessing microphone: {{error}}": "存取麥克風時被拒絕權限:{{error}}",
 	"Personalization": "個人化",
 	"Personalization": "個人化",
 	"Pipelines": "管線",
 	"Pipelines": "管線",
@@ -367,6 +378,7 @@
 	"Read Aloud": "讀出",
 	"Read Aloud": "讀出",
 	"Record voice": "錄音",
 	"Record voice": "錄音",
 	"Redirecting you to OpenWebUI Community": "將你重新導向到 OpenWebUI 社群",
 	"Redirecting you to OpenWebUI Community": "將你重新導向到 OpenWebUI 社群",
+	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"Refused when it shouldn't have": "拒絕時不該拒絕",
 	"Refused when it shouldn't have": "拒絕時不該拒絕",
 	"Regenerate": "重新生成",
 	"Regenerate": "重新生成",
 	"Release Notes": "發布說明",
 	"Release Notes": "發布說明",
@@ -385,6 +397,7 @@
 	"Rosé Pine": "玫瑰松",
 	"Rosé Pine": "玫瑰松",
 	"Rosé Pine Dawn": "黎明玫瑰松",
 	"Rosé Pine Dawn": "黎明玫瑰松",
 	"RTL": "RTL",
 	"RTL": "RTL",
+	"Running": "",
 	"Save": "儲存",
 	"Save": "儲存",
 	"Save & Create": "儲存並建立",
 	"Save & Create": "儲存並建立",
 	"Save & Update": "儲存並更新",
 	"Save & Update": "儲存並更新",
@@ -406,12 +419,14 @@
 	"See what's new": "查看最新內容",
 	"See what's new": "查看最新內容",
 	"Seed": "種子",
 	"Seed": "種子",
 	"Select a base model": "選擇基礎模型",
 	"Select a base model": "選擇基礎模型",
+	"Select a engine": "",
 	"Select a mode": "選擇模式",
 	"Select a mode": "選擇模式",
 	"Select a model": "選擇一個模型",
 	"Select a model": "選擇一個模型",
 	"Select a pipeline": "選擇管道",
 	"Select a pipeline": "選擇管道",
 	"Select a pipeline url": "選擇管道 URL",
 	"Select a pipeline url": "選擇管道 URL",
 	"Select an Ollama instance": "選擇 Ollama 實例",
 	"Select an Ollama instance": "選擇 Ollama 實例",
 	"Select model": "選擇模型",
 	"Select model": "選擇模型",
+	"Select only one model to call": "",
 	"Selected model(s) do not support image inputs": "已選擇模型不支持圖像輸入",
 	"Selected model(s) do not support image inputs": "已選擇模型不支持圖像輸入",
 	"Send": "傳送",
 	"Send": "傳送",
 	"Send a Message": "傳送訊息",
 	"Send a Message": "傳送訊息",
@@ -448,7 +463,6 @@
 	"Source": "來源",
 	"Source": "來源",
 	"Speech recognition error: {{error}}": "語音識別錯誤:{{error}}",
 	"Speech recognition error: {{error}}": "語音識別錯誤:{{error}}",
 	"Speech-to-Text Engine": "語音轉文字引擎",
 	"Speech-to-Text Engine": "語音轉文字引擎",
-	"SpeechRecognition API is not supported in this browser.": "此瀏覽器不支持 SpeechRecognition API。",
 	"Stop Sequence": "停止序列",
 	"Stop Sequence": "停止序列",
 	"STT Settings": "語音轉文字設定",
 	"STT Settings": "語音轉文字設定",
 	"Submit": "提交",
 	"Submit": "提交",
@@ -480,6 +494,7 @@
 	"to": "到",
 	"to": "到",
 	"To access the available model names for downloading,": "若想查看可供下載的模型名稱,",
 	"To access the available model names for downloading,": "若想查看可供下載的模型名稱,",
 	"To access the GGUF models available for downloading,": "若想查看可供下載的 GGUF 模型名稱,",
 	"To access the GGUF models available for downloading,": "若想查看可供下載的 GGUF 模型名稱,",
+	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
 	"to chat input.": "到聊天輸入框來啟動此命令。",
 	"to chat input.": "到聊天輸入框來啟動此命令。",
 	"Today": "今天",
 	"Today": "今天",
 	"Toggle settings": "切換設定",
 	"Toggle settings": "切換設定",
@@ -496,6 +511,7 @@
 	"Update password": "更新密碼",
 	"Update password": "更新密碼",
 	"Upload a GGUF model": "上傳一個 GGUF 模型",
 	"Upload a GGUF model": "上傳一個 GGUF 模型",
 	"Upload Files": "上傳文件",
 	"Upload Files": "上傳文件",
+	"Upload Pipeline": "",
 	"Upload Progress": "上傳進度",
 	"Upload Progress": "上傳進度",
 	"URL Mode": "URL 模式",
 	"URL Mode": "URL 模式",
 	"Use '#' in the prompt input to load and select your documents.": "在輸入框中輸入 '#' 以載入並選擇你的文件。",
 	"Use '#' in the prompt input to load and select your documents.": "在輸入框中輸入 '#' 以載入並選擇你的文件。",
@@ -514,6 +530,7 @@
 	"Warning": "警告",
 	"Warning": "警告",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "警告:如果更新或更改你的嵌入模型,則需要重新導入所有文件",
 	"Warning: If you update or change your embedding model, you will need to re-import all documents.": "警告:如果更新或更改你的嵌入模型,則需要重新導入所有文件",
 	"Web": "網頁",
 	"Web": "網頁",
+	"Web API": "",
 	"Web Loader Settings": "Web 載入器設定",
 	"Web Loader Settings": "Web 載入器設定",
 	"Web Params": "Web 參數",
 	"Web Params": "Web 參數",
 	"Web Search": "Web 搜尋",
 	"Web Search": "Web 搜尋",
@@ -524,18 +541,19 @@
 	"WebUI will make requests to": "WebUI 將會存取",
 	"WebUI will make requests to": "WebUI 將會存取",
 	"What’s New in": "全新內容",
 	"What’s New in": "全新內容",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "當歷史被關閉時,這個瀏覽器上的新聊天將不會出現在任何裝置的歷史記錄中",
 	"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "當歷史被關閉時,這個瀏覽器上的新聊天將不會出現在任何裝置的歷史記錄中",
-	"Whisper (Local)": "Whisper(本機)",
 	"Widescreen Mode": "",
 	"Widescreen Mode": "",
 	"Workspace": "工作區",
 	"Workspace": "工作區",
 	"Write a prompt suggestion (e.g. Who are you?)": "寫一個提示詞建議(例如:你是誰?)",
 	"Write a prompt suggestion (e.g. Who are you?)": "寫一個提示詞建議(例如:你是誰?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "寫一個 50 字的摘要來概括 [主題或關鍵詞]。",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "寫一個 50 字的摘要來概括 [主題或關鍵詞]。",
 	"Yesterday": "昨天",
 	"Yesterday": "昨天",
 	"You": "你",
 	"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 clone a base model": "你不能複製基礎模型",
 	"You cannot clone a base model": "你不能複製基礎模型",
 	"You have no archived conversations.": "你沒有任何已封存的對話",
 	"You have no archived conversations.": "你沒有任何已封存的對話",
 	"You have shared this chat": "你已分享此聊天",
 	"You have shared this chat": "你已分享此聊天",
 	"You're a helpful assistant.": "你是一位善於協助他人的助手。",
 	"You're a helpful assistant.": "你是一位善於協助他人的助手。",
 	"You're now logged in.": "已登入。",
 	"You're now logged in.": "已登入。",
+	"Your account status is currently pending activation.": "",
 	"Youtube": "Youtube",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube 載入器設定"
 	"Youtube Loader Settings": "Youtube 載入器設定"
 }
 }