Browse Source

chore: format

Timothy Jaeryang Baek 1 week ago
parent
commit
7753f57d42
55 changed files with 587 additions and 11 deletions
  1. 13 9
      backend/open_webui/retrieval/loaders/external_document.py
  2. 1 1
      src/lib/components/admin/Evaluations/Feedbacks.svelte
  3. 1 1
      src/lib/components/chat/ShortcutsModal.svelte
  4. 11 0
      src/lib/i18n/locales/ar-BH/translation.json
  5. 11 0
      src/lib/i18n/locales/ar/translation.json
  6. 11 0
      src/lib/i18n/locales/bg-BG/translation.json
  7. 11 0
      src/lib/i18n/locales/bn-BD/translation.json
  8. 11 0
      src/lib/i18n/locales/bo-TB/translation.json
  9. 11 0
      src/lib/i18n/locales/ca-ES/translation.json
  10. 11 0
      src/lib/i18n/locales/ceb-PH/translation.json
  11. 11 0
      src/lib/i18n/locales/cs-CZ/translation.json
  12. 11 0
      src/lib/i18n/locales/da-DK/translation.json
  13. 11 0
      src/lib/i18n/locales/de-DE/translation.json
  14. 11 0
      src/lib/i18n/locales/dg-DG/translation.json
  15. 11 0
      src/lib/i18n/locales/el-GR/translation.json
  16. 11 0
      src/lib/i18n/locales/en-GB/translation.json
  17. 11 0
      src/lib/i18n/locales/en-US/translation.json
  18. 11 0
      src/lib/i18n/locales/es-ES/translation.json
  19. 11 0
      src/lib/i18n/locales/et-EE/translation.json
  20. 11 0
      src/lib/i18n/locales/eu-ES/translation.json
  21. 11 0
      src/lib/i18n/locales/fa-IR/translation.json
  22. 11 0
      src/lib/i18n/locales/fi-FI/translation.json
  23. 11 0
      src/lib/i18n/locales/fr-CA/translation.json
  24. 11 0
      src/lib/i18n/locales/fr-FR/translation.json
  25. 11 0
      src/lib/i18n/locales/he-IL/translation.json
  26. 11 0
      src/lib/i18n/locales/hi-IN/translation.json
  27. 11 0
      src/lib/i18n/locales/hr-HR/translation.json
  28. 11 0
      src/lib/i18n/locales/hu-HU/translation.json
  29. 11 0
      src/lib/i18n/locales/id-ID/translation.json
  30. 11 0
      src/lib/i18n/locales/ie-GA/translation.json
  31. 11 0
      src/lib/i18n/locales/it-IT/translation.json
  32. 11 0
      src/lib/i18n/locales/ja-JP/translation.json
  33. 11 0
      src/lib/i18n/locales/ka-GE/translation.json
  34. 11 0
      src/lib/i18n/locales/ko-KR/translation.json
  35. 11 0
      src/lib/i18n/locales/lt-LT/translation.json
  36. 11 0
      src/lib/i18n/locales/ms-MY/translation.json
  37. 11 0
      src/lib/i18n/locales/nb-NO/translation.json
  38. 11 0
      src/lib/i18n/locales/nl-NL/translation.json
  39. 11 0
      src/lib/i18n/locales/pa-IN/translation.json
  40. 11 0
      src/lib/i18n/locales/pl-PL/translation.json
  41. 11 0
      src/lib/i18n/locales/pt-BR/translation.json
  42. 11 0
      src/lib/i18n/locales/pt-PT/translation.json
  43. 11 0
      src/lib/i18n/locales/ro-RO/translation.json
  44. 11 0
      src/lib/i18n/locales/ru-RU/translation.json
  45. 11 0
      src/lib/i18n/locales/sk-SK/translation.json
  46. 11 0
      src/lib/i18n/locales/sr-RS/translation.json
  47. 11 0
      src/lib/i18n/locales/sv-SE/translation.json
  48. 11 0
      src/lib/i18n/locales/th-TH/translation.json
  49. 11 0
      src/lib/i18n/locales/tk-TW/translation.json
  50. 11 0
      src/lib/i18n/locales/tr-TR/translation.json
  51. 11 0
      src/lib/i18n/locales/uk-UA/translation.json
  52. 11 0
      src/lib/i18n/locales/ur-PK/translation.json
  53. 11 0
      src/lib/i18n/locales/vi-VN/translation.json
  54. 11 0
      src/lib/i18n/locales/zh-CN/translation.json
  55. 11 0
      src/lib/i18n/locales/zh-TW/translation.json

+ 13 - 9
backend/open_webui/retrieval/loaders/external_document.py

@@ -40,7 +40,7 @@ class ExternalDocumentLoader(BaseLoader):
             headers["X-Filename"] = os.path.basename(self.file_path)
             headers["X-Filename"] = os.path.basename(self.file_path)
         except:
         except:
             pass
             pass
-        
+
         url = self.url
         url = self.url
         if url.endswith("/"):
         if url.endswith("/"):
             url = url[:-1]
             url = url[:-1]
@@ -52,7 +52,7 @@ class ExternalDocumentLoader(BaseLoader):
             raise Exception(f"Error connecting to endpoint: {e}")
             raise Exception(f"Error connecting to endpoint: {e}")
 
 
         if response.ok:
         if response.ok:
-            
+
             response_data = response.json()
             response_data = response.json()
             if response_data:
             if response_data:
                 if isinstance(response_data, dict):
                 if isinstance(response_data, dict):
@@ -65,15 +65,19 @@ class ExternalDocumentLoader(BaseLoader):
                 elif isinstance(response_data, list):
                 elif isinstance(response_data, list):
                     documents = []
                     documents = []
                     for document in response_data:
                     for document in response_data:
-                        documents.append(Document(
-                            page_content=document.get("page_content"),
-                            metadata=document.get("metadata"),
-                        ))
-                    return documents 
+                        documents.append(
+                            Document(
+                                page_content=document.get("page_content"),
+                                metadata=document.get("metadata"),
+                            )
+                        )
+                    return documents
                 else:
                 else:
                     raise Exception("Error loading document: Unable to parse content")
                     raise Exception("Error loading document: Unable to parse content")
-            
+
             else:
             else:
                 raise Exception("Error loading document: No content returned")
                 raise Exception("Error loading document: No content returned")
         else:
         else:
-            raise Exception(f"Error loading document: {response.status_code} {response.text}")
+            raise Exception(
+                f"Error loading document: {response.status_code} {response.text}"
+            )

+ 1 - 1
src/lib/components/admin/Evaluations/Feedbacks.svelte

@@ -93,7 +93,7 @@
 				return 0;
 				return 0;
 		}
 		}
 	});
 	});
-  
+
 	let showFeedbackModal = false;
 	let showFeedbackModal = false;
 	let selectedFeedback = null;
 	let selectedFeedback = null;
 
 

+ 1 - 1
src/lib/components/chat/ShortcutsModal.svelte

@@ -310,7 +310,7 @@
 			)}
 			)}
 		</div>
 		</div>
 		<div class=" flex justify-between dark:text-gray-300 px-5">
 		<div class=" flex justify-between dark:text-gray-300 px-5">
-			<div class=" text-lg font-medium self-center">{$i18n.t('Chat Input commands')}</div>
+			<div class=" text-lg font-medium self-center">{$i18n.t('Input commands')}</div>
 		</div>
 		</div>
 
 
 		<div class="flex flex-col md:flex-row w-full p-5 md:space-x-4 dark:text-gray-200">
 		<div class="flex flex-col md:flex-row w-full p-5 md:space-x-4 dark:text-gray-200">

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "فبراير",
 	"February": "فبراير",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "لا تتردد في إضافة تفاصيل محددة",
 	"Feel free to add specific details": "لا تتردد في إضافة تفاصيل محددة",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "من جهة اليسار إلى اليمين",
 	"LTR": "من جهة اليسار إلى اليمين",
 	"Made by Open WebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
 	"Made by Open WebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "تأكد من إرفاقها",
 	"Make sure to enclose them with": "تأكد من إرفاقها",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "",
 	"Manage": "",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama الاصدار",
 	"Ollama Version": "Ollama الاصدار",
 	"On": "تشغيل",
 	"On": "تشغيل",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "يُسمح فقط بالأحرف الأبجدية الرقمية والواصلات في سلسلة الأمر.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "يُسمح فقط بالأحرف الأبجدية الرقمية والواصلات في سلسلة الأمر.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "موقف ايجابي",
 	"Positive attitude": "موقف ايجابي",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "أخر 30 يوم",
 	"Previous 30 days": "أخر 30 يوم",
 	"Previous 7 days": "أخر 7 أيام",
 	"Previous 7 days": "أخر 7 أيام",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "أقراء لي",
 	"Read Aloud": "أقراء لي",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "سجل صوت",
 	"Record voice": "سجل صوت",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "إزالة",
 	"Remove": "إزالة",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "حذف الموديل",
 	"Remove Model": "حذف الموديل",
+	"Remove this tag from list": "",
 	"Rename": "إعادة تسمية",
 	"Rename": "إعادة تسمية",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "مشاركة الدردشة",
 	"Share Chat": "مشاركة الدردشة",
 	"Share to Open WebUI Community": "OpenWebUI شارك في مجتمع",
 	"Share to Open WebUI Community": "OpenWebUI شارك في مجتمع",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "عرض",
 	"Show": "عرض",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "{{error}} خطأ في التعرف على الكلام",
 	"Speech recognition error: {{error}}": "{{error}} خطأ في التعرف على الكلام",
 	"Speech-to-Text Engine": "محرك تحويل الكلام إلى نص",
 	"Speech-to-Text Engine": "محرك تحويل الكلام إلى نص",
 	"Stop": "",
 	"Stop": "",
+	"Stop Generating": "",
 	"Stop Sequence": "وقف التسلسل",
 	"Stop Sequence": "وقف التسلسل",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "فتح وأغلاق الاعدادات",
 	"Toggle settings": "فتح وأغلاق الاعدادات",
 	"Toggle sidebar": "فتح وأغلاق الشريط الجانبي",
 	"Toggle sidebar": "فتح وأغلاق الشريط الجانبي",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "",
 	"Tool created successfully": "",

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

@@ -591,6 +591,7 @@
 	"Features": "الميزات",
 	"Features": "الميزات",
 	"Features Permissions": "أذونات الميزات",
 	"Features Permissions": "أذونات الميزات",
 	"February": "فبراير",
 	"February": "فبراير",
+	"Feedback Details": "",
 	"Feedback History": "سجل الملاحظات",
 	"Feedback History": "سجل الملاحظات",
 	"Feedbacks": "الملاحظات",
 	"Feedbacks": "الملاحظات",
 	"Feel free to add specific details": "لا تتردد في إضافة تفاصيل محددة",
 	"Feel free to add specific details": "لا تتردد في إضافة تفاصيل محددة",
@@ -778,6 +779,7 @@
 	"Lost": "ضائع",
 	"Lost": "ضائع",
 	"LTR": "من جهة اليسار إلى اليمين",
 	"LTR": "من جهة اليسار إلى اليمين",
 	"Made by Open WebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
 	"Made by Open WebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "تأكد من إرفاقها",
 	"Make sure to enclose them with": "تأكد من إرفاقها",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "تأكد من تصدير ملف workflow.json بصيغة API من ComfyUI.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "تأكد من تصدير ملف workflow.json بصيغة API من ComfyUI.",
 	"Manage": "إدارة",
 	"Manage": "إدارة",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama الاصدار",
 	"Ollama Version": "Ollama الاصدار",
 	"On": "تشغيل",
 	"On": "تشغيل",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "يُسمح فقط بالحروف والأرقام والواصلات",
 	"Only alphanumeric characters and hyphens are allowed": "يُسمح فقط بالحروف والأرقام والواصلات",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "يُسمح فقط بالأحرف الأبجدية الرقمية والواصلات في سلسلة الأمر.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "يُسمح فقط بالأحرف الأبجدية الرقمية والواصلات في سلسلة الأمر.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "يمكن تعديل المجموعات فقط، أنشئ قاعدة معرفة جديدة لتعديل أو إضافة مستندات.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "يمكن تعديل المجموعات فقط، أنشئ قاعدة معرفة جديدة لتعديل أو إضافة مستندات.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "موقف ايجابي",
 	"Positive attitude": "موقف ايجابي",
 	"Prefix ID": "معرف البادئة",
 	"Prefix ID": "معرف البادئة",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "يُستخدم معرف البادئة لتفادي التعارض مع الاتصالات الأخرى من خلال إضافة بادئة إلى معرفات النماذج – اتركه فارغًا لتعطيله",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "يُستخدم معرف البادئة لتفادي التعارض مع الاتصالات الأخرى من خلال إضافة بادئة إلى معرفات النماذج – اتركه فارغًا لتعطيله",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "أخر 30 يوم",
 	"Previous 30 days": "أخر 30 يوم",
 	"Previous 7 days": "أخر 7 أيام",
 	"Previous 7 days": "أخر 7 أيام",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "إعادة ترتيب النماذج حسب تشابه الموضوع",
 	"Re-rank models by topic similarity": "إعادة ترتيب النماذج حسب تشابه الموضوع",
 	"Read": "قراءة",
 	"Read": "قراءة",
 	"Read Aloud": "أقراء لي",
 	"Read Aloud": "أقراء لي",
+	"Reason": "",
 	"Reasoning Effort": "جهد الاستدلال",
 	"Reasoning Effort": "جهد الاستدلال",
 	"Record": "",
 	"Record": "",
 	"Record voice": "سجل صوت",
 	"Record voice": "سجل صوت",
@@ -1020,7 +1026,9 @@
 	"Relevance": "الصلة",
 	"Relevance": "الصلة",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "إزالة",
 	"Remove": "إزالة",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "حذف الموديل",
 	"Remove Model": "حذف الموديل",
+	"Remove this tag from list": "",
 	"Rename": "إعادة تسمية",
 	"Rename": "إعادة تسمية",
 	"Reorder Models": "إعادة ترتيب النماذج",
 	"Reorder Models": "إعادة ترتيب النماذج",
 	"Reply in Thread": "الرد داخل سلسلة الرسائل",
 	"Reply in Thread": "الرد داخل سلسلة الرسائل",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "مشاركة الدردشة",
 	"Share Chat": "مشاركة الدردشة",
 	"Share to Open WebUI Community": "OpenWebUI شارك في مجتمع",
 	"Share to Open WebUI Community": "OpenWebUI شارك في مجتمع",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "عرض",
 	"Show": "عرض",
 	"Show \"What's New\" modal on login": "عرض نافذة \"ما الجديد\" عند تسجيل الدخول",
 	"Show \"What's New\" modal on login": "عرض نافذة \"ما الجديد\" عند تسجيل الدخول",
 	"Show Admin Details in Account Pending Overlay": "عرض تفاصيل المشرف في نافذة \"الحساب قيد الانتظار\"",
 	"Show Admin Details in Account Pending Overlay": "عرض تفاصيل المشرف في نافذة \"الحساب قيد الانتظار\"",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "{{error}} خطأ في التعرف على الكلام",
 	"Speech recognition error: {{error}}": "{{error}} خطأ في التعرف على الكلام",
 	"Speech-to-Text Engine": "محرك تحويل الكلام إلى نص",
 	"Speech-to-Text Engine": "محرك تحويل الكلام إلى نص",
 	"Stop": "إيقاف",
 	"Stop": "إيقاف",
+	"Stop Generating": "",
 	"Stop Sequence": "وقف التسلسل",
 	"Stop Sequence": "وقف التسلسل",
 	"Stream Chat Response": "بث استجابة الدردشة",
 	"Stream Chat Response": "بث استجابة الدردشة",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "فتح وأغلاق الاعدادات",
 	"Toggle settings": "فتح وأغلاق الاعدادات",
 	"Toggle sidebar": "فتح وأغلاق الشريط الجانبي",
 	"Toggle sidebar": "فتح وأغلاق الشريط الجانبي",
+	"Toggle whether current connection is active.": "",
 	"Token": "رمز",
 	"Token": "رمز",
 	"Too verbose": "مفرط في التفاصيل",
 	"Too verbose": "مفرط في التفاصيل",
 	"Tool created successfully": "تم إنشاء الأداة بنجاح",
 	"Tool created successfully": "تم إنشاء الأداة بنجاح",

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

@@ -591,6 +591,7 @@
 	"Features": "Функции",
 	"Features": "Функции",
 	"Features Permissions": "Разрешения за функции",
 	"Features Permissions": "Разрешения за функции",
 	"February": "Февруари",
 	"February": "Февруари",
+	"Feedback Details": "",
 	"Feedback History": "История на обратната връзка",
 	"Feedback History": "История на обратната връзка",
 	"Feedbacks": "Обратни връзки",
 	"Feedbacks": "Обратни връзки",
 	"Feel free to add specific details": "Не се колебайте да добавите конкретни детайли",
 	"Feel free to add specific details": "Не се колебайте да добавите конкретни детайли",
@@ -778,6 +779,7 @@
 	"Lost": "Изгубено",
 	"Lost": "Изгубено",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Направено от OpenWebUI общността",
 	"Made by Open WebUI Community": "Направено от OpenWebUI общността",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Уверете се, че сте заключени с",
 	"Make sure to enclose them with": "Уверете се, че сте заключени с",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Уверете се, че експортирате файл workflow.json като API формат от ComfyUI.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Уверете се, че експортирате файл workflow.json като API формат от ComfyUI.",
 	"Manage": "Управление",
 	"Manage": "Управление",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama Версия",
 	"Ollama Version": "Ollama Версия",
 	"On": "Вкл.",
 	"On": "Вкл.",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Разрешени са само буквено-цифрови знаци и тирета",
 	"Only alphanumeric characters and hyphens are allowed": "Разрешени са само буквено-цифрови знаци и тирета",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Само алфанумерични знаци и тире са разрешени в командния низ.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Само алфанумерични знаци и тире са разрешени в командния низ.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Само колекциите могат да бъдат редактирани, създайте нова база от знания, за да редактирате/добавяте документи.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Само колекциите могат да бъдат редактирани, създайте нова база от знания, за да редактирате/добавяте документи.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Позитивно отношение",
 	"Positive attitude": "Позитивно отношение",
 	"Prefix ID": "Префикс ID",
 	"Prefix ID": "Префикс ID",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Префикс ID се използва за избягване на конфликти с други връзки чрез добавяне на префикс към ID-тата на моделите - оставете празно, за да деактивирате",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Префикс ID се използва за избягване на конфликти с други връзки чрез добавяне на префикс към ID-тата на моделите - оставете празно, за да деактивирате",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Предишните 30 дни",
 	"Previous 30 days": "Предишните 30 дни",
 	"Previous 7 days": "Предишните 7 дни",
 	"Previous 7 days": "Предишните 7 дни",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Преоценка на моделите по сходство на темата",
 	"Re-rank models by topic similarity": "Преоценка на моделите по сходство на темата",
 	"Read": "Четене",
 	"Read": "Четене",
 	"Read Aloud": "Прочети на глас",
 	"Read Aloud": "Прочети на глас",
+	"Reason": "",
 	"Reasoning Effort": "Усилие за разсъждение",
 	"Reasoning Effort": "Усилие за разсъждение",
 	"Record": "Запиши",
 	"Record": "Запиши",
 	"Record voice": "Записване на глас",
 	"Record voice": "Записване на глас",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Релевантност",
 	"Relevance": "Релевантност",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Изтриване",
 	"Remove": "Изтриване",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Изтриване на модела",
 	"Remove Model": "Изтриване на модела",
+	"Remove this tag from list": "",
 	"Rename": "Преименуване",
 	"Rename": "Преименуване",
 	"Reorder Models": "Преорганизиране на моделите",
 	"Reorder Models": "Преорганизиране на моделите",
 	"Reply in Thread": "Отговори в тред",
 	"Reply in Thread": "Отговори в тред",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Подели Чат",
 	"Share Chat": "Подели Чат",
 	"Share to Open WebUI Community": "Споделете с OpenWebUI Общността",
 	"Share to Open WebUI Community": "Споделете с OpenWebUI Общността",
 	"Sharing Permissions": "Права за споделяне",
 	"Sharing Permissions": "Права за споделяне",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Покажи",
 	"Show": "Покажи",
 	"Show \"What's New\" modal on login": "Покажи модалния прозорец \"Какво е ново\" при вписване",
 	"Show \"What's New\" modal on login": "Покажи модалния прозорец \"Какво е ново\" при вписване",
 	"Show Admin Details in Account Pending Overlay": "Покажи детайлите на администратора в наслагването на изчакващ акаунт",
 	"Show Admin Details in Account Pending Overlay": "Покажи детайлите на администратора в наслагването на изчакващ акаунт",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Грешка при разпознаване на речта: {{error}}",
 	"Speech recognition error: {{error}}": "Грешка при разпознаване на речта: {{error}}",
 	"Speech-to-Text Engine": "Двигател за преобразуване на реч в текста",
 	"Speech-to-Text Engine": "Двигател за преобразуване на реч в текста",
 	"Stop": "Спри",
 	"Stop": "Спри",
+	"Stop Generating": "",
 	"Stop Sequence": "Стоп последователност",
 	"Stop Sequence": "Стоп последователност",
 	"Stream Chat Response": "Поточен чат отговор",
 	"Stream Chat Response": "Поточен чат отговор",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Превключване на настройките",
 	"Toggle settings": "Превключване на настройките",
 	"Toggle sidebar": "Превключване на страничната лента",
 	"Toggle sidebar": "Превключване на страничната лента",
+	"Toggle whether current connection is active.": "",
 	"Token": "Токен",
 	"Token": "Токен",
 	"Too verbose": "Прекалено многословно",
 	"Too verbose": "Прекалено многословно",
 	"Tool created successfully": "Инструментът е създаден успешно",
 	"Tool created successfully": "Инструментът е създаден успешно",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "ফেব্রুয়ারি",
 	"February": "ফেব্রুয়ারি",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "নির্দিষ্ট বিবরণ যোগ করতে বিনা দ্বিধায়",
 	"Feel free to add specific details": "নির্দিষ্ট বিবরণ যোগ করতে বিনা দ্বিধায়",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "OpenWebUI কমিউনিটিকর্তৃক নির্মিত",
 	"Made by Open WebUI Community": "OpenWebUI কমিউনিটিকর্তৃক নির্মিত",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "এটা দিয়ে বন্ধনী দিতে ভুলবেন না",
 	"Make sure to enclose them with": "এটা দিয়ে বন্ধনী দিতে ভুলবেন না",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "",
 	"Manage": "",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama ভার্সন",
 	"Ollama Version": "Ollama ভার্সন",
 	"On": "চালু",
 	"On": "চালু",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "কমান্ড স্ট্রিং-এ শুধুমাত্র ইংরেজি অক্ষর, সংখ্যা এবং হাইফেন ব্যবহার করা যাবে।",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "কমান্ড স্ট্রিং-এ শুধুমাত্র ইংরেজি অক্ষর, সংখ্যা এবং হাইফেন ব্যবহার করা যাবে।",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "পজিটিভ আক্রমণ",
 	"Positive attitude": "পজিটিভ আক্রমণ",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "পূর্ব ৩০ দিন",
 	"Previous 30 days": "পূর্ব ৩০ দিন",
 	"Previous 7 days": "পূর্ব ৭ দিন",
 	"Previous 7 days": "পূর্ব ৭ দিন",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "পড়াশোনা করুন",
 	"Read Aloud": "পড়াশোনা করুন",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "ভয়েস রেকর্ড করুন",
 	"Record voice": "ভয়েস রেকর্ড করুন",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "রিমুভ করুন",
 	"Remove": "রিমুভ করুন",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "মডেল রিমুভ করুন",
 	"Remove Model": "মডেল রিমুভ করুন",
+	"Remove this tag from list": "",
 	"Rename": "রেনেম",
 	"Rename": "রেনেম",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "চ্যাট শেয়ার করুন",
 	"Share Chat": "চ্যাট শেয়ার করুন",
 	"Share to Open WebUI Community": "OpenWebUI কমিউনিটিতে শেয়ার করুন",
 	"Share to Open WebUI Community": "OpenWebUI কমিউনিটিতে শেয়ার করুন",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "দেখান",
 	"Show": "দেখান",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "স্পিচ রিকগনিশনে সমস্যা: {{error}}",
 	"Speech recognition error: {{error}}": "স্পিচ রিকগনিশনে সমস্যা: {{error}}",
 	"Speech-to-Text Engine": "স্পিচ-টু-টেক্সট ইঞ্জিন",
 	"Speech-to-Text Engine": "স্পিচ-টু-টেক্সট ইঞ্জিন",
 	"Stop": "",
 	"Stop": "",
+	"Stop Generating": "",
 	"Stop Sequence": "সিকোয়েন্স থামান",
 	"Stop Sequence": "সিকোয়েন্স থামান",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "সেটিংস টোগল",
 	"Toggle settings": "সেটিংস টোগল",
 	"Toggle sidebar": "সাইডবার টোগল",
 	"Toggle sidebar": "সাইডবার টোগল",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "",
 	"Tool created successfully": "",

+ 11 - 0
src/lib/i18n/locales/bo-TB/translation.json

@@ -591,6 +591,7 @@
 	"Features": "ཁྱད་ཆོས།",
 	"Features": "ཁྱད་ཆོས།",
 	"Features Permissions": "ཁྱད་ཆོས་ཀྱི་དབང་ཚད།",
 	"Features Permissions": "ཁྱད་ཆོས་ཀྱི་དབང་ཚད།",
 	"February": "ཟླ་བ་གཉིས་པ།",
 	"February": "ཟླ་བ་གཉིས་པ།",
+	"Feedback Details": "",
 	"Feedback History": "བསམ་འཆར་གྱི་ལོ་རྒྱུས།",
 	"Feedback History": "བསམ་འཆར་གྱི་ལོ་རྒྱུས།",
 	"Feedbacks": "བསམ་འཆར།",
 	"Feedbacks": "བསམ་འཆར།",
 	"Feel free to add specific details": "ཞིབ་ཕྲ་ངེས་ཅན་སྣོན་པར་སེམས་ཁྲལ་མེད།",
 	"Feel free to add specific details": "ཞིབ་ཕྲ་ངེས་ཅན་སྣོན་པར་སེམས་ཁྲལ་མེད།",
@@ -778,6 +779,7 @@
 	"Lost": "བརླགས།",
 	"Lost": "བརླགས།",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Open WebUI སྤྱི་ཚོགས་ཀྱིས་བཟོས།",
 	"Made by Open WebUI Community": "Open WebUI སྤྱི་ཚོགས་ཀྱིས་བཟོས།",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "དེ་དག་འདིས་བསྐོར་བ་ཁག་ཐེག་བྱེད་པ།",
 	"Make sure to enclose them with": "དེ་དག་འདིས་བསྐོར་བ་ཁག་ཐེག་བྱེད་པ།",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "ComfyUI ནས་ workflow.json ཡིག་ཆ་ API བཀོད་པའི་ཐོག་ཕྱིར་གཏོང་བྱེད་པ་ཁག་ཐེག་བྱེད་པ།",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "ComfyUI ནས་ workflow.json ཡིག་ཆ་ API བཀོད་པའི་ཐོག་ཕྱིར་གཏོང་བྱེད་པ་ཁག་ཐེག་བྱེད་པ།",
 	"Manage": "དོ་དམ།",
 	"Manage": "དོ་དམ།",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama པར་གཞི།",
 	"Ollama Version": "Ollama པར་གཞི།",
 	"On": "ཁ་ཕྱེ་བ།",
 	"On": "ཁ་ཕྱེ་བ།",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "ཨང་ཀི་དང་དབྱིན་ཡིག་གི་ཡིག་འབྲུ་དང་སྦྲེལ་རྟགས་ཁོ་ན་ཆོག་པ།",
 	"Only alphanumeric characters and hyphens are allowed": "ཨང་ཀི་དང་དབྱིན་ཡིག་གི་ཡིག་འབྲུ་དང་སྦྲེལ་རྟགས་ཁོ་ན་ཆོག་པ།",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "བཀའ་བརྡའི་ཡིག་ཕྲེང་ནང་ཨང་ཀི་དང་དབྱིན་ཡིག་གི་ཡིག་འབྲུ་དང་སྦྲེལ་རྟགས་ཁོ་ན་ཆོག་པ།",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "བཀའ་བརྡའི་ཡིག་ཕྲེང་ནང་ཨང་ཀི་དང་དབྱིན་ཡིག་གི་ཡིག་འབྲུ་དང་སྦྲེལ་རྟགས་ཁོ་ན་ཆོག་པ།",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "བསྡུ་གསོག་ཁོ་ན་ཞུ་དག་བྱེད་ཐུབ། ཡིག་ཆ་ཞུ་དག་/སྣོན་པར་ཤེས་བྱའི་རྟེན་གཞི་གསར་པ་ཞིག་བཟོ་བ།",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "བསྡུ་གསོག་ཁོ་ན་ཞུ་དག་བྱེད་ཐུབ། ཡིག་ཆ་ཞུ་དག་/སྣོན་པར་ཤེས་བྱའི་རྟེན་གཞི་གསར་པ་ཞིག་བཟོ་བ།",
@@ -979,6 +983,7 @@
 	"Positive attitude": "ལྟ་སྟངས་དགེ་མཚན།",
 	"Positive attitude": "ལྟ་སྟངས་དགེ་མཚན།",
 	"Prefix ID": "སྔོན་སྦྱོར་ ID",
 	"Prefix ID": "སྔོན་སྦྱོར་ ID",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "སྔོན་སྦྱོར་ ID ནི་དཔེ་དབྱིབས་ཀྱི་ IDs ལ་སྔོན་སྦྱོར་ཞིག་སྣོན་ནས་སྦྲེལ་མཐུད་གཞན་དང་གདོང་ཐུག་ལས་གཡོལ་བར་བེད་སྤྱོད་བྱེད། - ནུས་མེད་བཏང་བར་སྟོང་པ་བཞག་པ།",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "སྔོན་སྦྱོར་ ID ནི་དཔེ་དབྱིབས་ཀྱི་ IDs ལ་སྔོན་སྦྱོར་ཞིག་སྣོན་ནས་སྦྲེལ་མཐུད་གཞན་དང་གདོང་ཐུག་ལས་གཡོལ་བར་བེད་སྤྱོད་བྱེད། - ནུས་མེད་བཏང་བར་སྟོང་པ་བཞག་པ།",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "ཉིན་ ༣༠ སྔོན་མ།",
 	"Previous 30 days": "ཉིན་ ༣༠ སྔོན་མ།",
 	"Previous 7 days": "ཉིན་ ༧ སྔོན་མ།",
 	"Previous 7 days": "ཉིན་ ༧ སྔོན་མ།",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "བརྗོད་གཞི་འདྲ་མཚུངས་ལྟར་དཔེ་དབྱིབས་བསྐྱར་སྒྲིག་བྱེད་པ།",
 	"Re-rank models by topic similarity": "བརྗོད་གཞི་འདྲ་མཚུངས་ལྟར་དཔེ་དབྱིབས་བསྐྱར་སྒྲིག་བྱེད་པ།",
 	"Read": "ཀློག་པ།",
 	"Read": "ཀློག་པ།",
 	"Read Aloud": "སྐད་གསལ་པོས་ཀློག་པ།",
 	"Read Aloud": "སྐད་གསལ་པོས་ཀློག་པ།",
+	"Reason": "",
 	"Reasoning Effort": "རྒྱུ་མཚན་འདྲེན་པའི་འབད་བརྩོན།",
 	"Reasoning Effort": "རྒྱུ་མཚན་འདྲེན་པའི་འབད་བརྩོན།",
 	"Record": "",
 	"Record": "",
 	"Record voice": "སྐད་སྒྲ་ཕབ་པ།",
 	"Record voice": "སྐད་སྒྲ་ཕབ་པ།",
@@ -1020,7 +1026,9 @@
 	"Relevance": "འབྲེལ་ཡོད་རང་བཞིན།",
 	"Relevance": "འབྲེལ་ཡོད་རང་བཞིན།",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "འདོར་བ།",
 	"Remove": "འདོར་བ།",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "དཔེ་དབྱིབས་འདོར་བ།",
 	"Remove Model": "དཔེ་དབྱིབས་འདོར་བ།",
+	"Remove this tag from list": "",
 	"Rename": "མིང་བསྐྱར་འདོགས།",
 	"Rename": "མིང་བསྐྱར་འདོགས།",
 	"Reorder Models": "དཔེ་དབྱིབས་བསྐྱར་སྒྲིག",
 	"Reorder Models": "དཔེ་དབྱིབས་བསྐྱར་སྒྲིག",
 	"Reply in Thread": "བརྗོད་གཞིའི་ནང་ལན་འདེབས།",
 	"Reply in Thread": "བརྗོད་གཞིའི་ནང་ལན་འདེབས།",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "ཁ་བརྡ་མཉམ་སྤྱོད།",
 	"Share Chat": "ཁ་བརྡ་མཉམ་སྤྱོད།",
 	"Share to Open WebUI Community": "Open WebUI སྤྱི་ཚོགས་ལ་མཉམ་སྤྱོད།",
 	"Share to Open WebUI Community": "Open WebUI སྤྱི་ཚོགས་ལ་མཉམ་སྤྱོད།",
 	"Sharing Permissions": "མཉམ་སྤྱོད་དབང་ཚད།",
 	"Sharing Permissions": "མཉམ་སྤྱོད་དབང་ཚད།",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "སྟོན་པ།",
 	"Show": "སྟོན་པ།",
 	"Show \"What's New\" modal on login": "ནང་འཛུལ་སྐབས་ \"གསར་པ་ཅི་ཡོད\" modal སྟོན་པ།",
 	"Show \"What's New\" modal on login": "ནང་འཛུལ་སྐབས་ \"གསར་པ་ཅི་ཡོད\" modal སྟོན་པ།",
 	"Show Admin Details in Account Pending Overlay": "རྩིས་ཁྲ་སྒུག་བཞིན་པའི་གཏོགས་ངོས་སུ་དོ་དམ་པའི་ཞིབ་ཕྲ་སྟོན་པ།",
 	"Show Admin Details in Account Pending Overlay": "རྩིས་ཁྲ་སྒུག་བཞིན་པའི་གཏོགས་ངོས་སུ་དོ་དམ་པའི་ཞིབ་ཕྲ་སྟོན་པ།",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "གཏམ་བཤད་ངོས་འཛིན་ནོར་འཁྲུལ།: {{error}}",
 	"Speech recognition error: {{error}}": "གཏམ་བཤད་ངོས་འཛིན་ནོར་འཁྲུལ།: {{error}}",
 	"Speech-to-Text Engine": "གཏམ་བཤད་ནས་ཡིག་རྐྱང་གི་འཕྲུལ་འཁོར།",
 	"Speech-to-Text Engine": "གཏམ་བཤད་ནས་ཡིག་རྐྱང་གི་འཕྲུལ་འཁོར།",
 	"Stop": "མཚམས་འཇོག",
 	"Stop": "མཚམས་འཇོག",
+	"Stop Generating": "",
 	"Stop Sequence": "མཚམས་འཇོག་རིམ་པ།",
 	"Stop Sequence": "མཚམས་འཇོག་རིམ་པ།",
 	"Stream Chat Response": "ཁ་བརྡའི་ལན་རྒྱུག་པ།",
 	"Stream Chat Response": "ཁ་བརྡའི་ལན་རྒྱུག་པ།",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "སྒྲིག་འགོད་བརྗེ་བ།",
 	"Toggle settings": "སྒྲིག་འགོད་བརྗེ་བ།",
 	"Toggle sidebar": "ཟུར་ངོས་བརྗེ་བ།",
 	"Toggle sidebar": "ཟུར་ངོས་བརྗེ་བ།",
+	"Toggle whether current connection is active.": "",
 	"Token": "ཊོཀ་ཀེན།",
 	"Token": "ཊོཀ་ཀེན།",
 	"Too verbose": "རིང་དྲགས།",
 	"Too verbose": "རིང་དྲགས།",
 	"Tool created successfully": "ལག་ཆ་ལེགས་པར་བཟོས་ཟིན།",
 	"Tool created successfully": "ལག་ཆ་ལེགས་པར་བཟོས་ཟིན།",

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

@@ -591,6 +591,7 @@
 	"Features": "Característiques",
 	"Features": "Característiques",
 	"Features Permissions": "Permisos de les característiques",
 	"Features Permissions": "Permisos de les característiques",
 	"February": "Febrer",
 	"February": "Febrer",
+	"Feedback Details": "",
 	"Feedback History": "Històric de comentaris",
 	"Feedback History": "Històric de comentaris",
 	"Feedbacks": "Comentaris",
 	"Feedbacks": "Comentaris",
 	"Feel free to add specific details": "Sent-te lliure d'afegir detalls específics",
 	"Feel free to add specific details": "Sent-te lliure d'afegir detalls específics",
@@ -778,6 +779,7 @@
 	"Lost": "Perdut",
 	"Lost": "Perdut",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Creat per la Comunitat OpenWebUI",
 	"Made by Open WebUI Community": "Creat per la Comunitat OpenWebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Assegura't d'envoltar-los amb",
 	"Make sure to enclose them with": "Assegura't d'envoltar-los amb",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Assegura't d'exportar un fitxer workflow.json com a format API des de ComfyUI.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Assegura't d'exportar un fitxer workflow.json com a format API des de ComfyUI.",
 	"Manage": "Gestionar",
 	"Manage": "Gestionar",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Versió d'Ollama",
 	"Ollama Version": "Versió d'Ollama",
 	"On": "Activat",
 	"On": "Activat",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Només es permeten caràcters alfanumèrics i guions",
 	"Only alphanumeric characters and hyphens are allowed": "Només es permeten caràcters alfanumèrics i guions",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Només es permeten caràcters alfanumèrics i guions en la comanda.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Només es permeten caràcters alfanumèrics i guions en la comanda.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Només es poden editar col·leccions, crea una nova base de coneixement per editar/afegir documents.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Només es poden editar col·leccions, crea una nova base de coneixement per editar/afegir documents.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Actitud positiva",
 	"Positive attitude": "Actitud positiva",
 	"Prefix ID": "Identificador del prefix",
 	"Prefix ID": "Identificador del prefix",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "L'identificador de prefix s'utilitza per evitar conflictes amb altres connexions afegint un prefix als ID de model; deixa'l en blanc per desactivar-lo.",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "L'identificador de prefix s'utilitza per evitar conflictes amb altres connexions afegint un prefix als ID de model; deixa'l en blanc per desactivar-lo.",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "30 dies anteriors",
 	"Previous 30 days": "30 dies anteriors",
 	"Previous 7 days": "7 dies anteriors",
 	"Previous 7 days": "7 dies anteriors",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Reclassificar els models per similitud de temes",
 	"Re-rank models by topic similarity": "Reclassificar els models per similitud de temes",
 	"Read": "Llegit",
 	"Read": "Llegit",
 	"Read Aloud": "Llegir en veu alta",
 	"Read Aloud": "Llegir en veu alta",
+	"Reason": "",
 	"Reasoning Effort": "Esforç de raonament",
 	"Reasoning Effort": "Esforç de raonament",
 	"Record": "Enregistrar",
 	"Record": "Enregistrar",
 	"Record voice": "Enregistrar la veu",
 	"Record voice": "Enregistrar la veu",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Rellevància",
 	"Relevance": "Rellevància",
 	"Relevance Threshold": "Límit de rellevància",
 	"Relevance Threshold": "Límit de rellevància",
 	"Remove": "Eliminar",
 	"Remove": "Eliminar",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Eliminar el model",
 	"Remove Model": "Eliminar el model",
+	"Remove this tag from list": "",
 	"Rename": "Canviar el nom",
 	"Rename": "Canviar el nom",
 	"Reorder Models": "Reordenar els models",
 	"Reorder Models": "Reordenar els models",
 	"Reply in Thread": "Respondre al fil",
 	"Reply in Thread": "Respondre al fil",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Compartir el xat",
 	"Share Chat": "Compartir el xat",
 	"Share to Open WebUI Community": "Compartir amb la comunitat OpenWebUI",
 	"Share to Open WebUI Community": "Compartir amb la comunitat OpenWebUI",
 	"Sharing Permissions": "Compartir els permisos",
 	"Sharing Permissions": "Compartir els permisos",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Mostrar",
 	"Show": "Mostrar",
 	"Show \"What's New\" modal on login": "Veure 'Què hi ha de nou' a l'entrada",
 	"Show \"What's New\" modal on login": "Veure 'Què hi ha de nou' a l'entrada",
 	"Show Admin Details in Account Pending Overlay": "Mostrar els detalls de l'administrador a la superposició del compte pendent",
 	"Show Admin Details in Account Pending Overlay": "Mostrar els detalls de l'administrador a la superposició del compte pendent",
@@ -1157,6 +1166,7 @@
 	"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",
 	"Stop": "Atura",
 	"Stop": "Atura",
+	"Stop Generating": "",
 	"Stop Sequence": "Atura la seqüència",
 	"Stop Sequence": "Atura la seqüència",
 	"Stream Chat Response": "Fer streaming de la resposta del xat",
 	"Stream Chat Response": "Fer streaming de la resposta del xat",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Alterna preferències",
 	"Toggle settings": "Alterna preferències",
 	"Toggle sidebar": "Alterna la barra lateral",
 	"Toggle sidebar": "Alterna la barra lateral",
+	"Toggle whether current connection is active.": "",
 	"Token": "Token",
 	"Token": "Token",
 	"Too verbose": "Massa explicit",
 	"Too verbose": "Massa explicit",
 	"Tool created successfully": "Eina creada correctament",
 	"Tool created successfully": "Eina creada correctament",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "",
 	"February": "",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "",
 	"Feel free to add specific details": "",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "",
 	"LTR": "",
 	"Made by Open WebUI Community": "Gihimo sa komunidad sa OpenWebUI",
 	"Made by Open WebUI Community": "Gihimo sa komunidad sa OpenWebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Siguruha nga palibutan sila",
 	"Make sure to enclose them with": "Siguruha nga palibutan sila",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "",
 	"Manage": "",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama nga bersyon",
 	"Ollama Version": "Ollama nga bersyon",
 	"On": "Gipaandar",
 	"On": "Gipaandar",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Ang alphanumeric nga mga karakter ug hyphen lang ang gitugotan sa command string.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Ang alphanumeric nga mga karakter ug hyphen lang ang gitugotan sa command string.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "",
 	"Positive attitude": "",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "",
 	"Previous 30 days": "",
 	"Previous 7 days": "",
 	"Previous 7 days": "",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "",
 	"Read Aloud": "",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Irekord ang tingog",
 	"Record voice": "Irekord ang tingog",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "",
 	"Remove": "",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "",
 	"Remove Model": "",
+	"Remove this tag from list": "",
 	"Rename": "",
 	"Rename": "",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "",
 	"Share Chat": "",
 	"Share to Open WebUI Community": "Ipakigbahin sa komunidad sa OpenWebUI",
 	"Share to Open WebUI Community": "Ipakigbahin sa komunidad sa OpenWebUI",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Pagpakita",
 	"Show": "Pagpakita",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
@@ -1157,6 +1166,7 @@
 	"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",
 	"Stop": "",
 	"Stop": "",
+	"Stop Generating": "",
 	"Stop Sequence": "Pagkasunod-sunod sa pagsira",
 	"Stop Sequence": "Pagkasunod-sunod sa pagsira",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "I-toggle ang mga setting",
 	"Toggle settings": "I-toggle ang mga setting",
 	"Toggle sidebar": "I-toggle ang sidebar",
 	"Toggle sidebar": "I-toggle ang sidebar",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "",
 	"Tool created successfully": "",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "Únor",
 	"February": "Únor",
+	"Feedback Details": "",
 	"Feedback History": "Historie zpětné vazby",
 	"Feedback History": "Historie zpětné vazby",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "Neváhejte přidat konkrétní detaily.",
 	"Feel free to add specific details": "Neváhejte přidat konkrétní detaily.",
@@ -778,6 +779,7 @@
 	"Lost": "Ztracený",
 	"Lost": "Ztracený",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Vytvořeno komunitou OpenWebUI",
 	"Made by Open WebUI Community": "Vytvořeno komunitou OpenWebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Ujistěte se, že jsou uzavřeny pomocí",
 	"Make sure to enclose them with": "Ujistěte se, že jsou uzavřeny pomocí",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Ujistěte se, že exportujete soubor workflow.json ve formátu API z ComfyUI.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Ujistěte se, že exportujete soubor workflow.json ve formátu API z ComfyUI.",
 	"Manage": "Spravovat",
 	"Manage": "Spravovat",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Verze Ollama",
 	"Ollama Version": "Verze Ollama",
 	"On": "Na",
 	"On": "Na",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Příkazový řetězec smí obsahovat pouze alfanumerické znaky a pomlčky.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Příkazový řetězec smí obsahovat pouze alfanumerické znaky a pomlčky.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Pouze kolekce mohou být upravovány, pro úpravu/přidání dokumentů vytvořte novou znalostní bázi.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Pouze kolekce mohou být upravovány, pro úpravu/přidání dokumentů vytvořte novou znalostní bázi.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Pozitivní přístup",
 	"Positive attitude": "Pozitivní přístup",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Předchozích 30 dnů",
 	"Previous 30 days": "Předchozích 30 dnů",
 	"Previous 7 days": "Předchozích 7 dní",
 	"Previous 7 days": "Předchozích 7 dní",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Znovu seřaďte modely podle podobnosti témat.",
 	"Re-rank models by topic similarity": "Znovu seřaďte modely podle podobnosti témat.",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "Číst nahlas",
 	"Read Aloud": "Číst nahlas",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Nahrát hlas",
 	"Record voice": "Nahrát hlas",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Relevance",
 	"Relevance": "Relevance",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Odebrat",
 	"Remove": "Odebrat",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Odebrat model",
 	"Remove Model": "Odebrat model",
+	"Remove this tag from list": "",
 	"Rename": "Přejmenovat",
 	"Rename": "Přejmenovat",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Sdílet chat",
 	"Share Chat": "Sdílet chat",
 	"Share to Open WebUI Community": "Sdílet s komunitou OpenWebUI",
 	"Share to Open WebUI Community": "Sdílet s komunitou OpenWebUI",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Zobrazit",
 	"Show": "Zobrazit",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Zobrazit podrobnosti administrátora v překryvném okně s čekajícím účtem",
 	"Show Admin Details in Account Pending Overlay": "Zobrazit podrobnosti administrátora v překryvném okně s čekajícím účtem",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Chyba rozpoznávání řeči: {{error}}",
 	"Speech recognition error: {{error}}": "Chyba rozpoznávání řeči: {{error}}",
 	"Speech-to-Text Engine": "Motor převodu řeči na text",
 	"Speech-to-Text Engine": "Motor převodu řeči na text",
 	"Stop": "Zastavit",
 	"Stop": "Zastavit",
+	"Stop Generating": "",
 	"Stop Sequence": "Sekvence Zastavení",
 	"Stop Sequence": "Sekvence Zastavení",
 	"Stream Chat Response": "Odezva chatu Stream",
 	"Stream Chat Response": "Odezva chatu Stream",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Přepnout nastavení",
 	"Toggle settings": "Přepnout nastavení",
 	"Toggle sidebar": "Přepnout postranní panel",
 	"Toggle sidebar": "Přepnout postranní panel",
+	"Toggle whether current connection is active.": "",
 	"Token": "Token",
 	"Token": "Token",
 	"Too verbose": "Příliš upovídané",
 	"Too verbose": "Příliš upovídané",
 	"Tool created successfully": "Nástroj byl úspěšně vytvořen.",
 	"Tool created successfully": "Nástroj byl úspěšně vytvořen.",

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

@@ -591,6 +591,7 @@
 	"Features": "Features",
 	"Features": "Features",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "Februar",
 	"February": "Februar",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "Feedback",
 	"Feedbacks": "Feedback",
 	"Feel free to add specific details": "Du er velkommen til at tilføje specifikke detaljer",
 	"Feel free to add specific details": "Du er velkommen til at tilføje specifikke detaljer",
@@ -778,6 +779,7 @@
 	"Lost": "Tabt",
 	"Lost": "Tabt",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Lavet af OpenWebUI Community",
 	"Made by Open WebUI Community": "Lavet af OpenWebUI Community",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Sørg for at omslutte dem med",
 	"Make sure to enclose them with": "Sørg for at omslutte dem med",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Sørg for at eksportere en workflow.json-fil som API-format fra ComfyUI.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Sørg for at eksportere en workflow.json-fil som API-format fra ComfyUI.",
 	"Manage": "Administrer",
 	"Manage": "Administrer",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama-version",
 	"Ollama Version": "Ollama-version",
 	"On": "Til",
 	"On": "Til",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Kun alfanumeriske tegn og bindestreger er tilladt",
 	"Only alphanumeric characters and hyphens are allowed": "Kun alfanumeriske tegn og bindestreger er tilladt",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Kun alfanumeriske tegn og bindestreger er tilladt i kommandostrengen.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Kun alfanumeriske tegn og bindestreger er tilladt i kommandostrengen.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Kun samlinger kan redigeres, opret en ny vidensbase for at redigere/tilføje dokumenter.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Kun samlinger kan redigeres, opret en ny vidensbase for at redigere/tilføje dokumenter.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Positiv holdning",
 	"Positive attitude": "Positiv holdning",
 	"Prefix ID": "Prefix ID",
 	"Prefix ID": "Prefix ID",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID bruges til at undgå konflikter med andre forbindelser ved at tilføje et prefix til model-ID'erne - lad være tom for at deaktivere",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID bruges til at undgå konflikter med andre forbindelser ved at tilføje et prefix til model-ID'erne - lad være tom for at deaktivere",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Seneste 30 dage",
 	"Previous 30 days": "Seneste 30 dage",
 	"Previous 7 days": "Seneste 7 dage",
 	"Previous 7 days": "Seneste 7 dage",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "Læs",
 	"Read": "Læs",
 	"Read Aloud": "Læs højt",
 	"Read Aloud": "Læs højt",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "Optag",
 	"Record": "Optag",
 	"Record voice": "Optag stemme",
 	"Record voice": "Optag stemme",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Fjern",
 	"Remove": "Fjern",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Fjern model",
 	"Remove Model": "Fjern model",
+	"Remove this tag from list": "",
 	"Rename": "Omdøb",
 	"Rename": "Omdøb",
 	"Reorder Models": "Omarranger modeller",
 	"Reorder Models": "Omarranger modeller",
 	"Reply in Thread": "Svar i tråd",
 	"Reply in Thread": "Svar i tråd",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Del chat",
 	"Share Chat": "Del chat",
 	"Share to Open WebUI Community": "Del til OpenWebUI Community",
 	"Share to Open WebUI Community": "Del til OpenWebUI Community",
 	"Sharing Permissions": "Delingstilladelser",
 	"Sharing Permissions": "Delingstilladelser",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Vis",
 	"Show": "Vis",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Vis administratordetaljer i overlay for ventende konto",
 	"Show Admin Details in Account Pending Overlay": "Vis administratordetaljer i overlay for ventende konto",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Talegenkendelsesfejl: {{error}}",
 	"Speech recognition error: {{error}}": "Talegenkendelsesfejl: {{error}}",
 	"Speech-to-Text Engine": "Tale-til-tekst-engine",
 	"Speech-to-Text Engine": "Tale-til-tekst-engine",
 	"Stop": "Stop",
 	"Stop": "Stop",
+	"Stop Generating": "",
 	"Stop Sequence": "Stopsekvens",
 	"Stop Sequence": "Stopsekvens",
 	"Stream Chat Response": "Stream chatsvar",
 	"Stream Chat Response": "Stream chatsvar",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Skift indstillinger",
 	"Toggle settings": "Skift indstillinger",
 	"Toggle sidebar": "Skift sidebjælke",
 	"Toggle sidebar": "Skift sidebjælke",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "For ordrigt",
 	"Too verbose": "For ordrigt",
 	"Tool created successfully": "Værktøj oprettet.",
 	"Tool created successfully": "Værktøj oprettet.",

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

@@ -591,6 +591,7 @@
 	"Features": "Funktionalitäten",
 	"Features": "Funktionalitäten",
 	"Features Permissions": "Funktionen-Berechtigungen",
 	"Features Permissions": "Funktionen-Berechtigungen",
 	"February": "Februar",
 	"February": "Februar",
+	"Feedback Details": "",
 	"Feedback History": "Feedback-Verlauf",
 	"Feedback History": "Feedback-Verlauf",
 	"Feedbacks": "Feedbacks",
 	"Feedbacks": "Feedbacks",
 	"Feel free to add specific details": "Fühlen Sie sich frei, spezifische Details hinzuzufügen",
 	"Feel free to add specific details": "Fühlen Sie sich frei, spezifische Details hinzuzufügen",
@@ -778,6 +779,7 @@
 	"Lost": "Verloren",
 	"Lost": "Verloren",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Von der OpenWebUI-Community",
 	"Made by Open WebUI Community": "Von der OpenWebUI-Community",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Umschließen Sie Variablen mit",
 	"Make sure to enclose them with": "Umschließen Sie Variablen mit",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Stellen Sie sicher, dass sie eine workflow.json-Datei im API-Format von ComfyUI exportieren.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Stellen Sie sicher, dass sie eine workflow.json-Datei im API-Format von ComfyUI exportieren.",
 	"Manage": "Verwalten",
 	"Manage": "Verwalten",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama-Version",
 	"Ollama Version": "Ollama-Version",
 	"On": "Ein",
 	"On": "Ein",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Nur alphanumerische Zeichen und Bindestriche sind erlaubt",
 	"Only alphanumeric characters and hyphens are allowed": "Nur alphanumerische Zeichen und Bindestriche sind erlaubt",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "In der Befehlszeichenfolge sind nur alphanumerische Zeichen und Bindestriche erlaubt.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "In der Befehlszeichenfolge sind nur alphanumerische Zeichen und Bindestriche erlaubt.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Nur Sammlungen können bearbeitet werden. Erstellen Sie eine neue Wissensbasis, um Dokumente zu bearbeiten/hinzuzufügen.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Nur Sammlungen können bearbeitet werden. Erstellen Sie eine neue Wissensbasis, um Dokumente zu bearbeiten/hinzuzufügen.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Positive Einstellung",
 	"Positive attitude": "Positive Einstellung",
 	"Prefix ID": "Präfix-ID",
 	"Prefix ID": "Präfix-ID",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix-ID wird verwendet, um Konflikte mit anderen Verbindungen zu vermeiden, indem ein Präfix zu den Modell-IDs hinzugefügt wird - leer lassen, um zu deaktivieren",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix-ID wird verwendet, um Konflikte mit anderen Verbindungen zu vermeiden, indem ein Präfix zu den Modell-IDs hinzugefügt wird - leer lassen, um zu deaktivieren",
+	"Prevent file creation": "",
 	"Preview": "Vorschau",
 	"Preview": "Vorschau",
 	"Previous 30 days": "Vorherige 30 Tage",
 	"Previous 30 days": "Vorherige 30 Tage",
 	"Previous 7 days": "Vorherige 7 Tage",
 	"Previous 7 days": "Vorherige 7 Tage",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Modelle nach thematischer Ähnlichkeit neu ordnen",
 	"Re-rank models by topic similarity": "Modelle nach thematischer Ähnlichkeit neu ordnen",
 	"Read": "Lesen",
 	"Read": "Lesen",
 	"Read Aloud": "Vorlesen",
 	"Read Aloud": "Vorlesen",
+	"Reason": "",
 	"Reasoning Effort": "Schlussfolgerungsaufwand",
 	"Reasoning Effort": "Schlussfolgerungsaufwand",
 	"Record": "Aufzeichnen",
 	"Record": "Aufzeichnen",
 	"Record voice": "Stimme aufnehmen",
 	"Record voice": "Stimme aufnehmen",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Relevanz",
 	"Relevance": "Relevanz",
 	"Relevance Threshold": "Relevanzschwelle",
 	"Relevance Threshold": "Relevanzschwelle",
 	"Remove": "Entfernen",
 	"Remove": "Entfernen",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Modell entfernen",
 	"Remove Model": "Modell entfernen",
+	"Remove this tag from list": "",
 	"Rename": "Umbenennen",
 	"Rename": "Umbenennen",
 	"Reorder Models": "Modelle neu anordnen",
 	"Reorder Models": "Modelle neu anordnen",
 	"Reply in Thread": "Im Thread antworten",
 	"Reply in Thread": "Im Thread antworten",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Chat teilen",
 	"Share Chat": "Chat teilen",
 	"Share to Open WebUI Community": "Mit OpenWebUI Community teilen",
 	"Share to Open WebUI Community": "Mit OpenWebUI Community teilen",
 	"Sharing Permissions": "Berechtigungen teilen",
 	"Sharing Permissions": "Berechtigungen teilen",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Anzeigen",
 	"Show": "Anzeigen",
 	"Show \"What's New\" modal on login": "\"Was gibt's Neues\"-Modal beim Anmelden anzeigen",
 	"Show \"What's New\" modal on login": "\"Was gibt's Neues\"-Modal beim Anmelden anzeigen",
 	"Show Admin Details in Account Pending Overlay": "Admin-Details im Account-Pending-Overlay anzeigen",
 	"Show Admin Details in Account Pending Overlay": "Admin-Details im Account-Pending-Overlay anzeigen",
@@ -1157,6 +1166,7 @@
 	"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",
 	"Stop": "Stop",
 	"Stop": "Stop",
+	"Stop Generating": "",
 	"Stop Sequence": "Stop-Sequenz",
 	"Stop Sequence": "Stop-Sequenz",
 	"Stream Chat Response": "Chat-Antwort streamen",
 	"Stream Chat Response": "Chat-Antwort streamen",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "Suche umschalten",
 	"Toggle search": "Suche umschalten",
 	"Toggle settings": "Einstellungen umschalten",
 	"Toggle settings": "Einstellungen umschalten",
 	"Toggle sidebar": "Seitenleiste umschalten",
 	"Toggle sidebar": "Seitenleiste umschalten",
+	"Toggle whether current connection is active.": "",
 	"Token": "Token",
 	"Token": "Token",
 	"Too verbose": "Zu ausführlich",
 	"Too verbose": "Zu ausführlich",
 	"Tool created successfully": "Werkzeug erfolgreich erstellt",
 	"Tool created successfully": "Werkzeug erfolgreich erstellt",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "",
 	"February": "",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "",
 	"Feel free to add specific details": "",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "",
 	"LTR": "",
 	"Made by Open WebUI Community": "Made by Open WebUI Community",
 	"Made by Open WebUI Community": "Made by Open WebUI Community",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Make sure to enclose them with",
 	"Make sure to enclose them with": "Make sure to enclose them with",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "",
 	"Manage": "",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama Version",
 	"Ollama Version": "Ollama Version",
 	"On": "On",
 	"On": "On",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Only wow characters and hyphens are allowed in the bork string.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Only wow characters and hyphens are allowed in the bork string.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "",
 	"Positive attitude": "",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "",
 	"Previous 30 days": "",
 	"Previous 7 days": "",
 	"Previous 7 days": "",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "",
 	"Read Aloud": "",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Record Bark",
 	"Record voice": "Record Bark",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "",
 	"Remove": "",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "",
 	"Remove Model": "",
+	"Remove this tag from list": "",
 	"Rename": "",
 	"Rename": "",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "",
 	"Share Chat": "",
 	"Share to Open WebUI Community": "Share to Open WebUI Community much community",
 	"Share to Open WebUI Community": "Share to Open WebUI Community much community",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Show much show",
 	"Show": "Show much show",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
@@ -1157,6 +1166,7 @@
 	"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",
 	"Stop": "",
 	"Stop": "",
+	"Stop Generating": "",
 	"Stop Sequence": "Stop Sequence much stop",
 	"Stop Sequence": "Stop Sequence much stop",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Toggle settings much toggle",
 	"Toggle settings": "Toggle settings much toggle",
 	"Toggle sidebar": "Toggle sidebar much toggle",
 	"Toggle sidebar": "Toggle sidebar much toggle",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "",
 	"Tool created successfully": "",

+ 11 - 0
src/lib/i18n/locales/el-GR/translation.json

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "Φεβρουάριος",
 	"February": "Φεβρουάριος",
+	"Feedback Details": "",
 	"Feedback History": "Ιστορικό Ανατροφοδότησης",
 	"Feedback History": "Ιστορικό Ανατροφοδότησης",
 	"Feedbacks": "Ανατροφοδοτήσεις",
 	"Feedbacks": "Ανατροφοδοτήσεις",
 	"Feel free to add specific details": "Νιώστε ελεύθεροι να προσθέσετε συγκεκριμένες λεπτομέρειες",
 	"Feel free to add specific details": "Νιώστε ελεύθεροι να προσθέσετε συγκεκριμένες λεπτομέρειες",
@@ -778,6 +779,7 @@
 	"Lost": "Χαμένος",
 	"Lost": "Χαμένος",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Δημιουργήθηκε από την Κοινότητα OpenWebUI",
 	"Made by Open WebUI Community": "Δημιουργήθηκε από την Κοινότητα OpenWebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Βεβαιωθείτε ότι τα περικλείετε με",
 	"Make sure to enclose them with": "Βεβαιωθείτε ότι τα περικλείετε με",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Βεβαιωθείτε ότι εξάγετε ένα αρχείο workflow.json ως μορφή API από το ComfyUI.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Βεβαιωθείτε ότι εξάγετε ένα αρχείο workflow.json ως μορφή API από το ComfyUI.",
 	"Manage": "Διαχείριση",
 	"Manage": "Διαχείριση",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Έκδοση Ollama",
 	"Ollama Version": "Έκδοση Ollama",
 	"On": "On",
 	"On": "On",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Επιτρέπονται μόνο αλφαριθμητικοί χαρακτήρες και παύλες",
 	"Only alphanumeric characters and hyphens are allowed": "Επιτρέπονται μόνο αλφαριθμητικοί χαρακτήρες και παύλες",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Επιτρέπονται μόνο αλφαριθμητικοί χαρακτήρες και παύλες στο string της εντολής.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Επιτρέπονται μόνο αλφαριθμητικοί χαρακτήρες και παύλες στο string της εντολής.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Μόνο συλλογές μπορούν να επεξεργαστούν, δημιουργήστε μια νέα βάση γνώσης για επεξεργασία/προσθήκη εγγράφων.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Μόνο συλλογές μπορούν να επεξεργαστούν, δημιουργήστε μια νέα βάση γνώσης για επεξεργασία/προσθήκη εγγράφων.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Θετική στάση",
 	"Positive attitude": "Θετική στάση",
 	"Prefix ID": "ID Προθέματος",
 	"Prefix ID": "ID Προθέματος",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Το ID Προθέματος χρησιμοποιείται για να αποφεύγονται συγκρούσεις με άλλες συνδέσεις προσθέτοντας ένα πρόθεμα στα IDs των μοντέλων - αφήστε κενό για απενεργοποίηση",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Το ID Προθέματος χρησιμοποιείται για να αποφεύγονται συγκρούσεις με άλλες συνδέσεις προσθέτοντας ένα πρόθεμα στα IDs των μοντέλων - αφήστε κενό για απενεργοποίηση",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Προηγούμενες 30 ημέρες",
 	"Previous 30 days": "Προηγούμενες 30 ημέρες",
 	"Previous 7 days": "Προηγούμενες 7 ημέρες",
 	"Previous 7 days": "Προηγούμενες 7 ημέρες",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Επανατάξη μοντέλων κατά ομοιότητα θέματος",
 	"Re-rank models by topic similarity": "Επανατάξη μοντέλων κατά ομοιότητα θέματος",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "Ανάγνωση Φωναχτά",
 	"Read Aloud": "Ανάγνωση Φωναχτά",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Εγγραφή φωνής",
 	"Record voice": "Εγγραφή φωνής",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Σχετικότητα",
 	"Relevance": "Σχετικότητα",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Αφαίρεση",
 	"Remove": "Αφαίρεση",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Αφαίρεση Μοντέλου",
 	"Remove Model": "Αφαίρεση Μοντέλου",
+	"Remove this tag from list": "",
 	"Rename": "Μετονομασία",
 	"Rename": "Μετονομασία",
 	"Reorder Models": "Επαναταξινόμηση Μοντέλων",
 	"Reorder Models": "Επαναταξινόμηση Μοντέλων",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Κοινή Χρήση Συνομιλίας",
 	"Share Chat": "Κοινή Χρήση Συνομιλίας",
 	"Share to Open WebUI Community": "Κοινή Χρήση στην Κοινότητα OpenWebUI",
 	"Share to Open WebUI Community": "Κοινή Χρήση στην Κοινότητα OpenWebUI",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Εμφάνιση",
 	"Show": "Εμφάνιση",
 	"Show \"What's New\" modal on login": "Εμφάνιση του παράθυρου \"Τι νέο υπάρχει\" κατά την είσοδο",
 	"Show \"What's New\" modal on login": "Εμφάνιση του παράθυρου \"Τι νέο υπάρχει\" κατά την είσοδο",
 	"Show Admin Details in Account Pending Overlay": "Εμφάνιση Λεπτομερειών Διαχειριστή στο Υπέρθεση Εκκρεμής Λογαριασμού",
 	"Show Admin Details in Account Pending Overlay": "Εμφάνιση Λεπτομερειών Διαχειριστή στο Υπέρθεση Εκκρεμής Λογαριασμού",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Σφάλμα αναγνώρισης ομιλίας: {{error}}",
 	"Speech recognition error: {{error}}": "Σφάλμα αναγνώρισης ομιλίας: {{error}}",
 	"Speech-to-Text Engine": "Μηχανή Speech-to-Text",
 	"Speech-to-Text Engine": "Μηχανή Speech-to-Text",
 	"Stop": "Σταμάτημα",
 	"Stop": "Σταμάτημα",
+	"Stop Generating": "",
 	"Stop Sequence": "Σειρά Παύσης",
 	"Stop Sequence": "Σειρά Παύσης",
 	"Stream Chat Response": "Συνομιλία Ροής Απάντησης",
 	"Stream Chat Response": "Συνομιλία Ροής Απάντησης",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Εναλλαγή ρυθμίσεων",
 	"Toggle settings": "Εναλλαγή ρυθμίσεων",
 	"Toggle sidebar": "Εναλλαγή πλαϊνού μενού",
 	"Toggle sidebar": "Εναλλαγή πλαϊνού μενού",
+	"Toggle whether current connection is active.": "",
 	"Token": "Token",
 	"Token": "Token",
 	"Too verbose": "Πολύ λεπτομερές",
 	"Too verbose": "Πολύ λεπτομερές",
 	"Tool created successfully": "Το εργαλείο δημιουργήθηκε με επιτυχία",
 	"Tool created successfully": "Το εργαλείο δημιουργήθηκε με επιτυχία",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "",
 	"February": "",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "",
 	"Feel free to add specific details": "",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "",
 	"LTR": "",
 	"Made by Open WebUI Community": "",
 	"Made by Open WebUI Community": "",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "",
 	"Make sure to enclose them with": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "",
 	"Manage": "",
@@ -899,6 +901,8 @@
 	"Ollama Version": "",
 	"Ollama Version": "",
 	"On": "",
 	"On": "",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "",
 	"Positive attitude": "",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "",
 	"Previous 30 days": "",
 	"Previous 7 days": "",
 	"Previous 7 days": "",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "",
 	"Read Aloud": "",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "",
 	"Record voice": "",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "",
 	"Remove": "",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "",
 	"Remove Model": "",
+	"Remove this tag from list": "",
 	"Rename": "",
 	"Rename": "",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "",
 	"Share Chat": "",
 	"Share to Open WebUI Community": "",
 	"Share to Open WebUI Community": "",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "",
 	"Show": "",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "",
 	"Speech recognition error: {{error}}": "",
 	"Speech-to-Text Engine": "",
 	"Speech-to-Text Engine": "",
 	"Stop": "",
 	"Stop": "",
+	"Stop Generating": "",
 	"Stop Sequence": "",
 	"Stop Sequence": "",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "",
 	"Toggle settings": "",
 	"Toggle sidebar": "",
 	"Toggle sidebar": "",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "",
 	"Tool created successfully": "",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "",
 	"February": "",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "",
 	"Feel free to add specific details": "",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "",
 	"LTR": "",
 	"Made by Open WebUI Community": "",
 	"Made by Open WebUI Community": "",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "",
 	"Make sure to enclose them with": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "",
 	"Manage": "",
@@ -899,6 +901,8 @@
 	"Ollama Version": "",
 	"Ollama Version": "",
 	"On": "",
 	"On": "",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "",
 	"Positive attitude": "",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "",
 	"Previous 30 days": "",
 	"Previous 7 days": "",
 	"Previous 7 days": "",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "",
 	"Read Aloud": "",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "",
 	"Record voice": "",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "",
 	"Remove": "",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "",
 	"Remove Model": "",
+	"Remove this tag from list": "",
 	"Rename": "",
 	"Rename": "",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "",
 	"Share Chat": "",
 	"Share to Open WebUI Community": "",
 	"Share to Open WebUI Community": "",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "",
 	"Show": "",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "",
 	"Speech recognition error: {{error}}": "",
 	"Speech-to-Text Engine": "",
 	"Speech-to-Text Engine": "",
 	"Stop": "",
 	"Stop": "",
+	"Stop Generating": "",
 	"Stop Sequence": "",
 	"Stop Sequence": "",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "",
 	"Toggle settings": "",
 	"Toggle sidebar": "",
 	"Toggle sidebar": "",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "",
 	"Tool created successfully": "",

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

@@ -591,6 +591,7 @@
 	"Features": "Características",
 	"Features": "Características",
 	"Features Permissions": "Permisos de las Características",
 	"Features Permissions": "Permisos de las Características",
 	"February": "Febrero",
 	"February": "Febrero",
+	"Feedback Details": "",
 	"Feedback History": "Historial de Opiniones",
 	"Feedback History": "Historial de Opiniones",
 	"Feedbacks": "Opiniones",
 	"Feedbacks": "Opiniones",
 	"Feel free to add specific details": "Añade libremente detalles específicos",
 	"Feel free to add specific details": "Añade libremente detalles específicos",
@@ -778,6 +779,7 @@
 	"Lost": "Perdido",
 	"Lost": "Perdido",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Creado por la Comunidad Open-WebUI",
 	"Made by Open WebUI Community": "Creado por la Comunidad Open-WebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Asegúrate de delimitarlos con",
 	"Make sure to enclose them with": "Asegúrate de delimitarlos con",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Asegúrate de exportar un archivo workflow.json en formato API desde ComfyUI.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Asegúrate de exportar un archivo workflow.json en formato API desde ComfyUI.",
 	"Manage": "Gestionar",
 	"Manage": "Gestionar",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Versión de Ollama",
 	"Ollama Version": "Versión de Ollama",
 	"On": "Activado",
 	"On": "Activado",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Sólo están permitidos caracteres alfanuméricos y guiones",
 	"Only alphanumeric characters and hyphens are allowed": "Sólo están permitidos caracteres alfanuméricos y guiones",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Sólo están permitidos en la cadena de comandos caracteres alfanuméricos y guiones.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Sólo están permitidos en la cadena de comandos caracteres alfanuméricos y guiones.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo se pueden editar las colecciones, para añadir/editar documentos hay que crear una nueva base de conocimientos",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo se pueden editar las colecciones, para añadir/editar documentos hay que crear una nueva base de conocimientos",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Actitud Positiva",
 	"Positive attitude": "Actitud Positiva",
 	"Prefix ID": "prefijo ID",
 	"Prefix ID": "prefijo ID",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "El prefijo ID se utiliza para evitar conflictos con otras conexiones al añadir un prefijo a los IDs de modelo, dejar vacío para deshabilitarlo",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "El prefijo ID se utiliza para evitar conflictos con otras conexiones al añadir un prefijo a los IDs de modelo, dejar vacío para deshabilitarlo",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "30 días previos",
 	"Previous 30 days": "30 días previos",
 	"Previous 7 days": "7 días previos",
 	"Previous 7 days": "7 días previos",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Reclasificar modelos por similitud temática",
 	"Re-rank models by topic similarity": "Reclasificar modelos por similitud temática",
 	"Read": "Leer",
 	"Read": "Leer",
 	"Read Aloud": "Leer en voz alta",
 	"Read Aloud": "Leer en voz alta",
+	"Reason": "",
 	"Reasoning Effort": "Esfuerzo del Razonamiento",
 	"Reasoning Effort": "Esfuerzo del Razonamiento",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Grabar voz",
 	"Record voice": "Grabar voz",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Relevancia",
 	"Relevance": "Relevancia",
 	"Relevance Threshold": "Umbral de Relevancia",
 	"Relevance Threshold": "Umbral de Relevancia",
 	"Remove": "Eliminar",
 	"Remove": "Eliminar",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Eliminar Modelo",
 	"Remove Model": "Eliminar Modelo",
+	"Remove this tag from list": "",
 	"Rename": "Renombrar",
 	"Rename": "Renombrar",
 	"Reorder Models": "Reordenar Modelos",
 	"Reorder Models": "Reordenar Modelos",
 	"Reply in Thread": "Responder en Hilo",
 	"Reply in Thread": "Responder en Hilo",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Compartir Chat",
 	"Share Chat": "Compartir Chat",
 	"Share to Open WebUI Community": "Compartir con la Comunidad Open-WebUI",
 	"Share to Open WebUI Community": "Compartir con la Comunidad Open-WebUI",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Mostrar",
 	"Show": "Mostrar",
 	"Show \"What's New\" modal on login": "Mostrar modal \"Qué hay de Nuevo\" al iniciar sesión",
 	"Show \"What's New\" modal on login": "Mostrar modal \"Qué hay de Nuevo\" al iniciar sesión",
 	"Show Admin Details in Account Pending Overlay": "Mostrar Detalles Admin en la sobrecapa de 'Cuenta Pendiente'",
 	"Show Admin Details in Account Pending Overlay": "Mostrar Detalles Admin en la sobrecapa de 'Cuenta Pendiente'",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Error en reconocimiento de voz: {{error}}",
 	"Speech recognition error: {{error}}": "Error en reconocimiento de voz: {{error}}",
 	"Speech-to-Text Engine": "Motor Voz a Texto(STT)",
 	"Speech-to-Text Engine": "Motor Voz a Texto(STT)",
 	"Stop": "Detener",
 	"Stop": "Detener",
+	"Stop Generating": "",
 	"Stop Sequence": "Secuencia de Parada",
 	"Stop Sequence": "Secuencia de Parada",
 	"Stream Chat Response": "Transmisión Directa de la  Respuesta del Chat",
 	"Stream Chat Response": "Transmisión Directa de la  Respuesta del Chat",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Alternar Ajustes",
 	"Toggle settings": "Alternar Ajustes",
 	"Toggle sidebar": "Alternar Barra Lateral",
 	"Toggle sidebar": "Alternar Barra Lateral",
+	"Toggle whether current connection is active.": "",
 	"Token": "Token",
 	"Token": "Token",
 	"Too verbose": "Demasiado detallado",
 	"Too verbose": "Demasiado detallado",
 	"Tool created successfully": "Herramienta creada correctamente",
 	"Tool created successfully": "Herramienta creada correctamente",

+ 11 - 0
src/lib/i18n/locales/et-EE/translation.json

@@ -591,6 +591,7 @@
 	"Features": "Funktsioonid",
 	"Features": "Funktsioonid",
 	"Features Permissions": "Funktsioonide õigused",
 	"Features Permissions": "Funktsioonide õigused",
 	"February": "Veebruar",
 	"February": "Veebruar",
+	"Feedback Details": "",
 	"Feedback History": "Tagasiside ajalugu",
 	"Feedback History": "Tagasiside ajalugu",
 	"Feedbacks": "Tagasisided",
 	"Feedbacks": "Tagasisided",
 	"Feel free to add specific details": "Võite lisada konkreetseid üksikasju",
 	"Feel free to add specific details": "Võite lisada konkreetseid üksikasju",
@@ -778,6 +779,7 @@
 	"Lost": "Kaotanud",
 	"Lost": "Kaotanud",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Loodud Open WebUI kogukonna poolt",
 	"Made by Open WebUI Community": "Loodud Open WebUI kogukonna poolt",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Veenduge, et need on ümbritsetud järgmisega:",
 	"Make sure to enclose them with": "Veenduge, et need on ümbritsetud järgmisega:",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Veenduge, et ekspordite workflow.json faili API formaadis ComfyUI-st.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Veenduge, et ekspordite workflow.json faili API formaadis ComfyUI-st.",
 	"Manage": "Halda",
 	"Manage": "Halda",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama versioon",
 	"Ollama Version": "Ollama versioon",
 	"On": "Sees",
 	"On": "Sees",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Lubatud on ainult tähtede-numbrite kombinatsioonid ja sidekriipsud",
 	"Only alphanumeric characters and hyphens are allowed": "Lubatud on ainult tähtede-numbrite kombinatsioonid ja sidekriipsud",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Käsustringis on lubatud ainult tähtede-numbrite kombinatsioonid ja sidekriipsud.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Käsustringis on lubatud ainult tähtede-numbrite kombinatsioonid ja sidekriipsud.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Muuta saab ainult kogusid, dokumentide muutmiseks/lisamiseks looge uus teadmiste baas.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Muuta saab ainult kogusid, dokumentide muutmiseks/lisamiseks looge uus teadmiste baas.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Positiivne suhtumine",
 	"Positive attitude": "Positiivne suhtumine",
 	"Prefix ID": "Prefiksi ID",
 	"Prefix ID": "Prefiksi ID",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiksi ID-d kasutatakse teiste ühendustega konfliktide vältimiseks, lisades mudeli ID-dele prefiksi - jätke tühjaks keelamiseks",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiksi ID-d kasutatakse teiste ühendustega konfliktide vältimiseks, lisades mudeli ID-dele prefiksi - jätke tühjaks keelamiseks",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Eelmised 30 päeva",
 	"Previous 30 days": "Eelmised 30 päeva",
 	"Previous 7 days": "Eelmised 7 päeva",
 	"Previous 7 days": "Eelmised 7 päeva",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Järjesta mudelid teema sarnasuse alusel ümber",
 	"Re-rank models by topic similarity": "Järjesta mudelid teema sarnasuse alusel ümber",
 	"Read": "Loe",
 	"Read": "Loe",
 	"Read Aloud": "Loe valjult",
 	"Read Aloud": "Loe valjult",
+	"Reason": "",
 	"Reasoning Effort": "Arutluspingutus",
 	"Reasoning Effort": "Arutluspingutus",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Salvesta hääl",
 	"Record voice": "Salvesta hääl",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Asjakohasus",
 	"Relevance": "Asjakohasus",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Eemalda",
 	"Remove": "Eemalda",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Eemalda mudel",
 	"Remove Model": "Eemalda mudel",
+	"Remove this tag from list": "",
 	"Rename": "Nimeta ümber",
 	"Rename": "Nimeta ümber",
 	"Reorder Models": "Muuda mudelite järjekorda",
 	"Reorder Models": "Muuda mudelite järjekorda",
 	"Reply in Thread": "Vasta lõimes",
 	"Reply in Thread": "Vasta lõimes",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Jaga vestlust",
 	"Share Chat": "Jaga vestlust",
 	"Share to Open WebUI Community": "Jaga Open WebUI kogukonnaga",
 	"Share to Open WebUI Community": "Jaga Open WebUI kogukonnaga",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Näita",
 	"Show": "Näita",
 	"Show \"What's New\" modal on login": "Näita \"Mis on uut\" modaalakent sisselogimisel",
 	"Show \"What's New\" modal on login": "Näita \"Mis on uut\" modaalakent sisselogimisel",
 	"Show Admin Details in Account Pending Overlay": "Näita administraatori üksikasju konto ootel kattekihil",
 	"Show Admin Details in Account Pending Overlay": "Näita administraatori üksikasju konto ootel kattekihil",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Kõnetuvastuse viga: {{error}}",
 	"Speech recognition error: {{error}}": "Kõnetuvastuse viga: {{error}}",
 	"Speech-to-Text Engine": "Kõne-tekstiks mootor",
 	"Speech-to-Text Engine": "Kõne-tekstiks mootor",
 	"Stop": "Peata",
 	"Stop": "Peata",
+	"Stop Generating": "",
 	"Stop Sequence": "Lõpetamise järjestus",
 	"Stop Sequence": "Lõpetamise järjestus",
 	"Stream Chat Response": "Voogedasta vestluse vastust",
 	"Stream Chat Response": "Voogedasta vestluse vastust",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Lülita seaded",
 	"Toggle settings": "Lülita seaded",
 	"Toggle sidebar": "Lülita külgriba",
 	"Toggle sidebar": "Lülita külgriba",
+	"Toggle whether current connection is active.": "",
 	"Token": "Token",
 	"Token": "Token",
 	"Too verbose": "Liiga paljusõnaline",
 	"Too verbose": "Liiga paljusõnaline",
 	"Tool created successfully": "Tööriist edukalt loodud",
 	"Tool created successfully": "Tööriist edukalt loodud",

+ 11 - 0
src/lib/i18n/locales/eu-ES/translation.json

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "Otsaila",
 	"February": "Otsaila",
+	"Feedback Details": "",
 	"Feedback History": "Feedbacken Historia",
 	"Feedback History": "Feedbacken Historia",
 	"Feedbacks": "Feedbackak",
 	"Feedbacks": "Feedbackak",
 	"Feel free to add specific details": "Gehitu xehetasun zehatzak nahi izanez gero",
 	"Feel free to add specific details": "Gehitu xehetasun zehatzak nahi izanez gero",
@@ -778,6 +779,7 @@
 	"Lost": "Galduta",
 	"Lost": "Galduta",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "OpenWebUI Komunitateak egina",
 	"Made by Open WebUI Community": "OpenWebUI Komunitateak egina",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Ziurtatu hauek gehitzen dituzula",
 	"Make sure to enclose them with": "Ziurtatu hauek gehitzen dituzula",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Ziurtatu workflow.json fitxategia API formatu gisa esportatzen duzula ComfyUI-tik.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Ziurtatu workflow.json fitxategia API formatu gisa esportatzen duzula ComfyUI-tik.",
 	"Manage": "Kudeatu",
 	"Manage": "Kudeatu",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama bertsioa",
 	"Ollama Version": "Ollama bertsioa",
 	"On": "Piztuta",
 	"On": "Piztuta",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Karaktere alfanumerikoak eta marratxoak soilik onartzen dira",
 	"Only alphanumeric characters and hyphens are allowed": "Karaktere alfanumerikoak eta marratxoak soilik onartzen dira",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Karaktere alfanumerikoak eta marratxoak soilik onartzen dira komando katean.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Karaktere alfanumerikoak eta marratxoak soilik onartzen dira komando katean.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Bildumak soilik edita daitezke, sortu ezagutza-base berri bat dokumentuak editatzeko/gehitzeko.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Bildumak soilik edita daitezke, sortu ezagutza-base berri bat dokumentuak editatzeko/gehitzeko.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Jarrera positiboa",
 	"Positive attitude": "Jarrera positiboa",
 	"Prefix ID": "Aurrizki ID",
 	"Prefix ID": "Aurrizki ID",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Aurrizki IDa erabiltzen da beste konexioekin gatazkak saihesteko modelo IDei aurrizki bat gehituz - utzi hutsik desgaitzeko",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Aurrizki IDa erabiltzen da beste konexioekin gatazkak saihesteko modelo IDei aurrizki bat gehituz - utzi hutsik desgaitzeko",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Aurreko 30 egunak",
 	"Previous 30 days": "Aurreko 30 egunak",
 	"Previous 7 days": "Aurreko 7 egunak",
 	"Previous 7 days": "Aurreko 7 egunak",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Berrantolatu modeloak gai antzekotasunaren arabera",
 	"Re-rank models by topic similarity": "Berrantolatu modeloak gai antzekotasunaren arabera",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "Irakurri ozen",
 	"Read Aloud": "Irakurri ozen",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Grabatu ahotsa",
 	"Record voice": "Grabatu ahotsa",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Garrantzia",
 	"Relevance": "Garrantzia",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Kendu",
 	"Remove": "Kendu",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Kendu modeloa",
 	"Remove Model": "Kendu modeloa",
+	"Remove this tag from list": "",
 	"Rename": "Berrizendatu",
 	"Rename": "Berrizendatu",
 	"Reorder Models": "Berrantolatu modeloak",
 	"Reorder Models": "Berrantolatu modeloak",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Partekatu txata",
 	"Share Chat": "Partekatu txata",
 	"Share to Open WebUI Community": "Partekatu OpenWebUI komunitatearekin",
 	"Share to Open WebUI Community": "Partekatu OpenWebUI komunitatearekin",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Erakutsi",
 	"Show": "Erakutsi",
 	"Show \"What's New\" modal on login": "Erakutsi \"Berritasunak\" modala saioa hastean",
 	"Show \"What's New\" modal on login": "Erakutsi \"Berritasunak\" modala saioa hastean",
 	"Show Admin Details in Account Pending Overlay": "Erakutsi administratzaile xehetasunak kontu zain geruzan",
 	"Show Admin Details in Account Pending Overlay": "Erakutsi administratzaile xehetasunak kontu zain geruzan",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Ahots ezagutze errorea: {{error}}",
 	"Speech recognition error: {{error}}": "Ahots ezagutze errorea: {{error}}",
 	"Speech-to-Text Engine": "Ahotsetik-testura motorra",
 	"Speech-to-Text Engine": "Ahotsetik-testura motorra",
 	"Stop": "Gelditu",
 	"Stop": "Gelditu",
+	"Stop Generating": "",
 	"Stop Sequence": "Gelditzeko sekuentzia",
 	"Stop Sequence": "Gelditzeko sekuentzia",
 	"Stream Chat Response": "Transmititu txat erantzuna",
 	"Stream Chat Response": "Transmititu txat erantzuna",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Aldatu ezarpenak",
 	"Toggle settings": "Aldatu ezarpenak",
 	"Toggle sidebar": "Aldatu alboko barra",
 	"Toggle sidebar": "Aldatu alboko barra",
+	"Toggle whether current connection is active.": "",
 	"Token": "Tokena",
 	"Token": "Tokena",
 	"Too verbose": "Luzeegia",
 	"Too verbose": "Luzeegia",
 	"Tool created successfully": "Tresna ongi sortu da",
 	"Tool created successfully": "Tresna ongi sortu da",

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

@@ -591,6 +591,7 @@
 	"Features": "ویژگی\u200cها",
 	"Features": "ویژگی\u200cها",
 	"Features Permissions": "مجوزهای ویژگی\u200cها",
 	"Features Permissions": "مجوزهای ویژگی\u200cها",
 	"February": "فوریه",
 	"February": "فوریه",
+	"Feedback Details": "",
 	"Feedback History": "تاریخچهٔ بازخورد",
 	"Feedback History": "تاریخچهٔ بازخورد",
 	"Feedbacks": "بازخوردها",
 	"Feedbacks": "بازخوردها",
 	"Feel free to add specific details": "اگر به دلخواه، معلومات خاصی اضافه کنید",
 	"Feel free to add specific details": "اگر به دلخواه، معلومات خاصی اضافه کنید",
@@ -778,6 +779,7 @@
 	"Lost": "گم شده",
 	"Lost": "گم شده",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "ساخته شده توسط OpenWebUI Community",
 	"Made by Open WebUI Community": "ساخته شده توسط OpenWebUI Community",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "مطمئن شوید که آنها را با این محصور کنید:",
 	"Make sure to enclose them with": "مطمئن شوید که آنها را با این محصور کنید:",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "مطمئن شوید که یک فایل workflow.json را به عنوان قالب API از ComfyUI صادر کنید.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "مطمئن شوید که یک فایل workflow.json را به عنوان قالب API از ComfyUI صادر کنید.",
 	"Manage": "مدیریت",
 	"Manage": "مدیریت",
@@ -899,6 +901,8 @@
 	"Ollama Version": "نسخه ollama",
 	"Ollama Version": "نسخه ollama",
 	"On": "روشن",
 	"On": "روشن",
 	"OneDrive": "وان\u200cدرایو",
 	"OneDrive": "وان\u200cدرایو",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "فقط حروف الفبا، اعداد و خط تیره مجاز هستند",
 	"Only alphanumeric characters and hyphens are allowed": "فقط حروف الفبا، اعداد و خط تیره مجاز هستند",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "فقط کاراکترهای الفبایی و خط فاصله در رشته فرمان مجاز هستند.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "فقط کاراکترهای الفبایی و خط فاصله در رشته فرمان مجاز هستند.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "فقط مجموعه\u200cها قابل ویرایش هستند، برای ویرایش/افزودن اسناد یک پایگاه دانش جدید ایجاد کنید.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "فقط مجموعه\u200cها قابل ویرایش هستند، برای ویرایش/افزودن اسناد یک پایگاه دانش جدید ایجاد کنید.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "نظرات مثبت",
 	"Positive attitude": "نظرات مثبت",
 	"Prefix ID": "شناسه پیشوند",
 	"Prefix ID": "شناسه پیشوند",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "شناسه پیشوند برای جلوگیری از تداخل با سایر اتصالات با افزودن پیشوند به شناسه\u200cهای مدل استفاده می\u200cشود - برای غیرفعال کردن خالی بگذارید",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "شناسه پیشوند برای جلوگیری از تداخل با سایر اتصالات با افزودن پیشوند به شناسه\u200cهای مدل استفاده می\u200cشود - برای غیرفعال کردن خالی بگذارید",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "30 روز قبل",
 	"Previous 30 days": "30 روز قبل",
 	"Previous 7 days": "7 روز قبل",
 	"Previous 7 days": "7 روز قبل",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "رتبه\u200cبندی مجدد مدل\u200cها براساس شباهت موضوعی",
 	"Re-rank models by topic similarity": "رتبه\u200cبندی مجدد مدل\u200cها براساس شباهت موضوعی",
 	"Read": "خواندن",
 	"Read": "خواندن",
 	"Read Aloud": "خواندن به صورت صوتی",
 	"Read Aloud": "خواندن به صورت صوتی",
+	"Reason": "",
 	"Reasoning Effort": "تلاش استدلال",
 	"Reasoning Effort": "تلاش استدلال",
 	"Record": "",
 	"Record": "",
 	"Record voice": "ضبط صدا",
 	"Record voice": "ضبط صدا",
@@ -1020,7 +1026,9 @@
 	"Relevance": "ارتباط",
 	"Relevance": "ارتباط",
 	"Relevance Threshold": "آستانه ارتباط",
 	"Relevance Threshold": "آستانه ارتباط",
 	"Remove": "حذف",
 	"Remove": "حذف",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "حذف مدل",
 	"Remove Model": "حذف مدل",
+	"Remove this tag from list": "",
 	"Rename": "تغییر نام",
 	"Rename": "تغییر نام",
 	"Reorder Models": "ترتیب مجدد مدل\u200cها",
 	"Reorder Models": "ترتیب مجدد مدل\u200cها",
 	"Reply in Thread": "پاسخ در رشته",
 	"Reply in Thread": "پاسخ در رشته",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "اشتراک\u200cگذاری چت",
 	"Share Chat": "اشتراک\u200cگذاری چت",
 	"Share to Open WebUI Community": "اشتراک گذاری با OpenWebUI Community",
 	"Share to Open WebUI Community": "اشتراک گذاری با OpenWebUI Community",
 	"Sharing Permissions": "مجوزهای اشتراک\u200cگذاری",
 	"Sharing Permissions": "مجوزهای اشتراک\u200cگذاری",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "نمایش",
 	"Show": "نمایش",
 	"Show \"What's New\" modal on login": "نمایش مودال \"موارد جدید\" هنگام ورود",
 	"Show \"What's New\" modal on login": "نمایش مودال \"موارد جدید\" هنگام ورود",
 	"Show Admin Details in Account Pending Overlay": "نمایش جزئیات مدیر در پوشش حساب در انتظار",
 	"Show Admin Details in Account Pending Overlay": "نمایش جزئیات مدیر در پوشش حساب در انتظار",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "خطای تشخیص گفتار: {{error}}",
 	"Speech recognition error: {{error}}": "خطای تشخیص گفتار: {{error}}",
 	"Speech-to-Text Engine": "موتور گفتار به متن",
 	"Speech-to-Text Engine": "موتور گفتار به متن",
 	"Stop": "توقف",
 	"Stop": "توقف",
+	"Stop Generating": "",
 	"Stop Sequence": "توقف توالی",
 	"Stop Sequence": "توقف توالی",
 	"Stream Chat Response": "پاسخ چت جریانی",
 	"Stream Chat Response": "پاسخ چت جریانی",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "نمایش/عدم نمایش تنظیمات",
 	"Toggle settings": "نمایش/عدم نمایش تنظیمات",
 	"Toggle sidebar": "نمایش/عدم نمایش نوار کناری",
 	"Toggle sidebar": "نمایش/عدم نمایش نوار کناری",
+	"Toggle whether current connection is active.": "",
 	"Token": "توکن",
 	"Token": "توکن",
 	"Too verbose": "خیلی طولانی",
 	"Too verbose": "خیلی طولانی",
 	"Tool created successfully": "ابزار با موفقیت ایجاد شد",
 	"Tool created successfully": "ابزار با موفقیت ایجاد شد",

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

@@ -591,6 +591,7 @@
 	"Features": "Ominaisuudet",
 	"Features": "Ominaisuudet",
 	"Features Permissions": "Ominaisuuksien käyttöoikeudet",
 	"Features Permissions": "Ominaisuuksien käyttöoikeudet",
 	"February": "helmikuu",
 	"February": "helmikuu",
+	"Feedback Details": "",
 	"Feedback History": "Palautehistoria",
 	"Feedback History": "Palautehistoria",
 	"Feedbacks": "Palautteet",
 	"Feedbacks": "Palautteet",
 	"Feel free to add specific details": "Voit lisätä tarkempia tietoja",
 	"Feel free to add specific details": "Voit lisätä tarkempia tietoja",
@@ -778,6 +779,7 @@
 	"Lost": "Mennyt",
 	"Lost": "Mennyt",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Tehnyt OpenWebUI-yhteisö",
 	"Made by Open WebUI Community": "Tehnyt OpenWebUI-yhteisö",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Varmista, että suljet ne",
 	"Make sure to enclose them with": "Varmista, että suljet ne",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Muista viedä workflow.json-tiedosto API-muodossa ComfyUI:sta.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Muista viedä workflow.json-tiedosto API-muodossa ComfyUI:sta.",
 	"Manage": "Hallitse",
 	"Manage": "Hallitse",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama-versio",
 	"Ollama Version": "Ollama-versio",
 	"On": "Päällä",
 	"On": "Päällä",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Vain kirjaimet, numerot ja väliviivat ovat sallittuja",
 	"Only alphanumeric characters and hyphens are allowed": "Vain kirjaimet, numerot ja väliviivat ovat sallittuja",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Vain kirjaimet, numerot ja väliviivat ovat sallittuja komentosarjassa.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Vain kirjaimet, numerot ja väliviivat ovat sallittuja komentosarjassa.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Vain kokoelmia voi muokata, luo uusi tietokanta muokataksesi/lisätäksesi asiakirjoja.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Vain kokoelmia voi muokata, luo uusi tietokanta muokataksesi/lisätäksesi asiakirjoja.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Positiivinen asenne",
 	"Positive attitude": "Positiivinen asenne",
 	"Prefix ID": "Etuliite-ID",
 	"Prefix ID": "Etuliite-ID",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Etuliite-ID:tä käytetään välttämään ristiriidat muiden yhteyksien kanssa lisäämällä etuliite mallitunnuksiin - jätä tyhjäksi, jos haluat ottaa sen pois käytöstä",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Etuliite-ID:tä käytetään välttämään ristiriidat muiden yhteyksien kanssa lisäämällä etuliite mallitunnuksiin - jätä tyhjäksi, jos haluat ottaa sen pois käytöstä",
+	"Prevent file creation": "",
 	"Preview": "Esikatselu",
 	"Preview": "Esikatselu",
 	"Previous 30 days": "Edelliset 30 päivää",
 	"Previous 30 days": "Edelliset 30 päivää",
 	"Previous 7 days": "Edelliset 7 päivää",
 	"Previous 7 days": "Edelliset 7 päivää",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Uudelleenjärjestä mallit aiheyhteyden mukaan",
 	"Re-rank models by topic similarity": "Uudelleenjärjestä mallit aiheyhteyden mukaan",
 	"Read": "Lue",
 	"Read": "Lue",
 	"Read Aloud": "Lue ääneen",
 	"Read Aloud": "Lue ääneen",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "Nauhoita",
 	"Record": "Nauhoita",
 	"Record voice": "Nauhoita ääntä",
 	"Record voice": "Nauhoita ääntä",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Relevanssi",
 	"Relevance": "Relevanssi",
 	"Relevance Threshold": "Relevanssikynnys",
 	"Relevance Threshold": "Relevanssikynnys",
 	"Remove": "Poista",
 	"Remove": "Poista",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Poista malli",
 	"Remove Model": "Poista malli",
+	"Remove this tag from list": "",
 	"Rename": "Nimeä uudelleen",
 	"Rename": "Nimeä uudelleen",
 	"Reorder Models": "Uudelleenjärjestä malleja",
 	"Reorder Models": "Uudelleenjärjestä malleja",
 	"Reply in Thread": "Vastauksia ",
 	"Reply in Thread": "Vastauksia ",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Jaa keskustelu",
 	"Share Chat": "Jaa keskustelu",
 	"Share to Open WebUI Community": "Jaa OpenWebUI-yhteisöön",
 	"Share to Open WebUI Community": "Jaa OpenWebUI-yhteisöön",
 	"Sharing Permissions": "Jako oikeudet",
 	"Sharing Permissions": "Jako oikeudet",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Näytä",
 	"Show": "Näytä",
 	"Show \"What's New\" modal on login": "Näytä \"Mitä uutta\" -modaali kirjautumisen yhteydessä",
 	"Show \"What's New\" modal on login": "Näytä \"Mitä uutta\" -modaali kirjautumisen yhteydessä",
 	"Show Admin Details in Account Pending Overlay": "Näytä ylläpitäjän tiedot odottavan tilin päällä",
 	"Show Admin Details in Account Pending Overlay": "Näytä ylläpitäjän tiedot odottavan tilin päällä",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Puheentunnistusvirhe: {{error}}",
 	"Speech recognition error: {{error}}": "Puheentunnistusvirhe: {{error}}",
 	"Speech-to-Text Engine": "Puheentunnistusmoottori",
 	"Speech-to-Text Engine": "Puheentunnistusmoottori",
 	"Stop": "Pysäytä",
 	"Stop": "Pysäytä",
+	"Stop Generating": "",
 	"Stop Sequence": "Lopetussekvenssi",
 	"Stop Sequence": "Lopetussekvenssi",
 	"Stream Chat Response": "Streamaa keskusteluvastaus",
 	"Stream Chat Response": "Streamaa keskusteluvastaus",
 	"Strip Existing OCR": "Poista olemassa oleva OCR",
 	"Strip Existing OCR": "Poista olemassa oleva OCR",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "Kytke haku",
 	"Toggle search": "Kytke haku",
 	"Toggle settings": "Kytke asetukset",
 	"Toggle settings": "Kytke asetukset",
 	"Toggle sidebar": "Kytke sivupalkki",
 	"Toggle sidebar": "Kytke sivupalkki",
+	"Toggle whether current connection is active.": "",
 	"Token": "Token",
 	"Token": "Token",
 	"Too verbose": "Liian puhelias",
 	"Too verbose": "Liian puhelias",
 	"Tool created successfully": "Työkalu luotu onnistuneesti",
 	"Tool created successfully": "Työkalu luotu onnistuneesti",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "Février",
 	"February": "Février",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "N'hésitez pas à ajouter des détails spécifiques",
 	"Feel free to add specific details": "N'hésitez pas à ajouter des détails spécifiques",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Réalisé par la communauté OpenWebUI",
 	"Made by Open WebUI Community": "Réalisé par la communauté OpenWebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Assurez-vous de les inclure dans",
 	"Make sure to enclose them with": "Assurez-vous de les inclure dans",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "Gérer",
 	"Manage": "Gérer",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Version Ollama améliorée",
 	"Ollama Version": "Version Ollama améliorée",
 	"On": "Activé",
 	"On": "Activé",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Seuls les caractères alphanumériques et les tirets sont autorisés dans la chaîne de commande.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Seuls les caractères alphanumériques et les tirets sont autorisés dans la chaîne de commande.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Attitude positive",
 	"Positive attitude": "Attitude positive",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "30 derniers jours",
 	"Previous 30 days": "30 derniers jours",
 	"Previous 7 days": "7 derniers jours",
 	"Previous 7 days": "7 derniers jours",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "Lire à haute voix",
 	"Read Aloud": "Lire à haute voix",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Enregistrer la voix",
 	"Record voice": "Enregistrer la voix",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Retirer",
 	"Remove": "Retirer",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Retirer le modèle",
 	"Remove Model": "Retirer le modèle",
+	"Remove this tag from list": "",
 	"Rename": "Renommer",
 	"Rename": "Renommer",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Partage de conversation",
 	"Share Chat": "Partage de conversation",
 	"Share to Open WebUI Community": "Partager avec la communauté OpenWebUI",
 	"Share to Open WebUI Community": "Partager avec la communauté OpenWebUI",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Montrer",
 	"Show": "Montrer",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Afficher les détails de l'administrateur dans la superposition en attente du compte",
 	"Show Admin Details in Account Pending Overlay": "Afficher les détails de l'administrateur dans la superposition en attente du compte",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Erreur de reconnaissance vocale\u00a0: {{error}}",
 	"Speech recognition error: {{error}}": "Erreur de reconnaissance vocale\u00a0: {{error}}",
 	"Speech-to-Text Engine": "Moteur de reconnaissance vocale",
 	"Speech-to-Text Engine": "Moteur de reconnaissance vocale",
 	"Stop": "",
 	"Stop": "",
+	"Stop Generating": "",
 	"Stop Sequence": "Séquence d'arrêt",
 	"Stop Sequence": "Séquence d'arrêt",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Basculer les paramètres",
 	"Toggle settings": "Basculer les paramètres",
 	"Toggle sidebar": "Basculer la barre latérale",
 	"Toggle sidebar": "Basculer la barre latérale",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "L'outil a été créé avec succès",
 	"Tool created successfully": "L'outil a été créé avec succès",

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

@@ -591,6 +591,7 @@
 	"Features": "Fonctionnalités",
 	"Features": "Fonctionnalités",
 	"Features Permissions": "Autorisations des fonctionnalités",
 	"Features Permissions": "Autorisations des fonctionnalités",
 	"February": "Février",
 	"February": "Février",
+	"Feedback Details": "",
 	"Feedback History": "Historique des avis",
 	"Feedback History": "Historique des avis",
 	"Feedbacks": "Avis",
 	"Feedbacks": "Avis",
 	"Feel free to add specific details": "N'hésitez pas à ajouter des détails spécifiques",
 	"Feel free to add specific details": "N'hésitez pas à ajouter des détails spécifiques",
@@ -778,6 +779,7 @@
 	"Lost": "Perdu",
 	"Lost": "Perdu",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Réalisé par la communauté OpenWebUI",
 	"Made by Open WebUI Community": "Réalisé par la communauté OpenWebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Assurez-vous de les inclure dans",
 	"Make sure to enclose them with": "Assurez-vous de les inclure dans",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Veillez à exporter un fichier workflow.json au format API depuis ComfyUI.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Veillez à exporter un fichier workflow.json au format API depuis ComfyUI.",
 	"Manage": "Gérer",
 	"Manage": "Gérer",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Version d'Ollama",
 	"Ollama Version": "Version d'Ollama",
 	"On": "Activé",
 	"On": "Activé",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Seuls les caractères alphanumériques et les tirets sont autorisés",
 	"Only alphanumeric characters and hyphens are allowed": "Seuls les caractères alphanumériques et les tirets sont autorisés",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Seuls les caractères alphanumériques et les tirets sont autorisés dans la chaîne de commande.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Seuls les caractères alphanumériques et les tirets sont autorisés dans la chaîne de commande.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Seules les collections peuvent être modifiées, créez une nouvelle base de connaissance pour modifier/ajouter des documents.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Seules les collections peuvent être modifiées, créez une nouvelle base de connaissance pour modifier/ajouter des documents.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Attitude positive",
 	"Positive attitude": "Attitude positive",
 	"Prefix ID": "ID de préfixe",
 	"Prefix ID": "ID de préfixe",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Le préfixe ID est utilisé pour éviter les conflits avec d'autres connexions en ajoutant un préfixe aux ID de modèle - laissez vide pour désactiver",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Le préfixe ID est utilisé pour éviter les conflits avec d'autres connexions en ajoutant un préfixe aux ID de modèle - laissez vide pour désactiver",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "30 derniers jours",
 	"Previous 30 days": "30 derniers jours",
 	"Previous 7 days": "7 derniers jours",
 	"Previous 7 days": "7 derniers jours",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Reclasser les modèles par similarité de sujet",
 	"Re-rank models by topic similarity": "Reclasser les modèles par similarité de sujet",
 	"Read": "Lire",
 	"Read": "Lire",
 	"Read Aloud": "Lire à haute voix",
 	"Read Aloud": "Lire à haute voix",
+	"Reason": "",
 	"Reasoning Effort": "Effort de raisonnement",
 	"Reasoning Effort": "Effort de raisonnement",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Enregistrer la voix",
 	"Record voice": "Enregistrer la voix",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Pertinence",
 	"Relevance": "Pertinence",
 	"Relevance Threshold": "Seuil de pertinence",
 	"Relevance Threshold": "Seuil de pertinence",
 	"Remove": "Retirer",
 	"Remove": "Retirer",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Retirer le modèle",
 	"Remove Model": "Retirer le modèle",
+	"Remove this tag from list": "",
 	"Rename": "Renommer",
 	"Rename": "Renommer",
 	"Reorder Models": "Réorganiser les modèles",
 	"Reorder Models": "Réorganiser les modèles",
 	"Reply in Thread": "Répondre dans le fil de discussion",
 	"Reply in Thread": "Répondre dans le fil de discussion",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Partage de conversation",
 	"Share Chat": "Partage de conversation",
 	"Share to Open WebUI Community": "Partager avec la communauté OpenWebUI",
 	"Share to Open WebUI Community": "Partager avec la communauté OpenWebUI",
 	"Sharing Permissions": "Autorisation de partage",
 	"Sharing Permissions": "Autorisation de partage",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Afficher",
 	"Show": "Afficher",
 	"Show \"What's New\" modal on login": "Afficher la fenêtre modale \"Quoi de neuf\" lors de la connexion",
 	"Show \"What's New\" modal on login": "Afficher la fenêtre modale \"Quoi de neuf\" lors de la connexion",
 	"Show Admin Details in Account Pending Overlay": "Afficher les coordonnées de l'administrateur aux comptes en attente",
 	"Show Admin Details in Account Pending Overlay": "Afficher les coordonnées de l'administrateur aux comptes en attente",
@@ -1157,6 +1166,7 @@
 	"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",
 	"Stop": "Stop",
 	"Stop": "Stop",
+	"Stop Generating": "",
 	"Stop Sequence": "Séquence d'arrêt",
 	"Stop Sequence": "Séquence d'arrêt",
 	"Stream Chat Response": "Streamer la réponse de la conversation",
 	"Stream Chat Response": "Streamer la réponse de la conversation",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Afficher/masquer les paramètres",
 	"Toggle settings": "Afficher/masquer les paramètres",
 	"Toggle sidebar": "Afficher/masquer la barre latérale",
 	"Toggle sidebar": "Afficher/masquer la barre latérale",
+	"Toggle whether current connection is active.": "",
 	"Token": "Token",
 	"Token": "Token",
 	"Too verbose": "Trop détaillé",
 	"Too verbose": "Trop détaillé",
 	"Tool created successfully": "L'outil a été créé avec succès",
 	"Tool created successfully": "L'outil a été créé avec succès",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "פברואר",
 	"February": "פברואר",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "נא להוסיף פרטים ספציפיים לפי רצון",
 	"Feel free to add specific details": "נא להוסיף פרטים ספציפיים לפי רצון",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "נוצר על ידי קהילת OpenWebUI",
 	"Made by Open WebUI Community": "נוצר על ידי קהילת OpenWebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "ודא להקיף אותם עם",
 	"Make sure to enclose them with": "ודא להקיף אותם עם",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "",
 	"Manage": "",
@@ -899,6 +901,8 @@
 	"Ollama Version": "גרסת Ollama",
 	"Ollama Version": "גרסת Ollama",
 	"On": "פועל",
 	"On": "פועל",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "רק תווים אלפאנומריים ומקפים מותרים במחרוזת הפקודה.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "רק תווים אלפאנומריים ומקפים מותרים במחרוזת הפקודה.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "גישה חיובית",
 	"Positive attitude": "גישה חיובית",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "30 הימים הקודמים",
 	"Previous 30 days": "30 הימים הקודמים",
 	"Previous 7 days": "7 הימים הקודמים",
 	"Previous 7 days": "7 הימים הקודמים",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "קרא בקול",
 	"Read Aloud": "קרא בקול",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "הקלט קול",
 	"Record voice": "הקלט קול",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "הסר",
 	"Remove": "הסר",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "הסר מודל",
 	"Remove Model": "הסר מודל",
+	"Remove this tag from list": "",
 	"Rename": "שנה שם",
 	"Rename": "שנה שם",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "שתף צ'אט",
 	"Share Chat": "שתף צ'אט",
 	"Share to Open WebUI Community": "שתף לקהילת OpenWebUI",
 	"Share to Open WebUI Community": "שתף לקהילת OpenWebUI",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "הצג",
 	"Show": "הצג",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "שגיאת תחקור שמע: {{error}}",
 	"Speech recognition error: {{error}}": "שגיאת תחקור שמע: {{error}}",
 	"Speech-to-Text Engine": "מנוע תחקור שמע",
 	"Speech-to-Text Engine": "מנוע תחקור שמע",
 	"Stop": "",
 	"Stop": "",
+	"Stop Generating": "",
 	"Stop Sequence": "סידור עצירה",
 	"Stop Sequence": "סידור עצירה",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "החלפת מצב של הגדרות",
 	"Toggle settings": "החלפת מצב של הגדרות",
 	"Toggle sidebar": "החלפת מצב של סרגל הצד",
 	"Toggle sidebar": "החלפת מצב של סרגל הצד",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "",
 	"Tool created successfully": "",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "फरवरी",
 	"February": "फरवरी",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "विशिष्ट विवरण जोड़ने के लिए स्वतंत्र महसूस करें",
 	"Feel free to add specific details": "विशिष्ट विवरण जोड़ने के लिए स्वतंत्र महसूस करें",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "OpenWebUI समुदाय द्वारा निर्मित",
 	"Made by Open WebUI Community": "OpenWebUI समुदाय द्वारा निर्मित",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "उन्हें संलग्न करना सुनिश्चित करें",
 	"Make sure to enclose them with": "उन्हें संलग्न करना सुनिश्चित करें",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "",
 	"Manage": "",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama Version",
 	"Ollama Version": "Ollama Version",
 	"On": "चालू",
 	"On": "चालू",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "कमांड स्ट्रिंग में केवल अल्फ़ान्यूमेरिक वर्ण और हाइफ़न की अनुमति है।",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "कमांड स्ट्रिंग में केवल अल्फ़ान्यूमेरिक वर्ण और हाइफ़न की अनुमति है।",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "सकारात्मक रवैया",
 	"Positive attitude": "सकारात्मक रवैया",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "पिछले 30 दिन",
 	"Previous 30 days": "पिछले 30 दिन",
 	"Previous 7 days": "पिछले 7 दिन",
 	"Previous 7 days": "पिछले 7 दिन",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "जोर से पढ़ें",
 	"Read Aloud": "जोर से पढ़ें",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "आवाज रिकॉर्ड करना",
 	"Record voice": "आवाज रिकॉर्ड करना",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "हटा दें",
 	"Remove": "हटा दें",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "मोडेल हटाएँ",
 	"Remove Model": "मोडेल हटाएँ",
+	"Remove this tag from list": "",
 	"Rename": "नाम बदलें",
 	"Rename": "नाम बदलें",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "चैट साझा करें",
 	"Share Chat": "चैट साझा करें",
 	"Share to Open WebUI Community": "OpenWebUI समुदाय में साझा करें",
 	"Share to Open WebUI Community": "OpenWebUI समुदाय में साझा करें",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "दिखाओ",
 	"Show": "दिखाओ",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "वाक् पहचान त्रुटि: {{error}}",
 	"Speech recognition error: {{error}}": "वाक् पहचान त्रुटि: {{error}}",
 	"Speech-to-Text Engine": "वाक्-से-पाठ इंजन",
 	"Speech-to-Text Engine": "वाक्-से-पाठ इंजन",
 	"Stop": "",
 	"Stop": "",
+	"Stop Generating": "",
 	"Stop Sequence": "अनुक्रम रोकें",
 	"Stop Sequence": "अनुक्रम रोकें",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "सेटिंग्स टॉगल करें",
 	"Toggle settings": "सेटिंग्स टॉगल करें",
 	"Toggle sidebar": "साइडबार टॉगल करें",
 	"Toggle sidebar": "साइडबार टॉगल करें",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "",
 	"Tool created successfully": "",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "Veljača",
 	"February": "Veljača",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "Slobodno dodajte specifične detalje",
 	"Feel free to add specific details": "Slobodno dodajte specifične detalje",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Izradio OpenWebUI Community",
 	"Made by Open WebUI Community": "Izradio OpenWebUI Community",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Provjerite da ih zatvorite s",
 	"Make sure to enclose them with": "Provjerite da ih zatvorite s",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "Upravljaj",
 	"Manage": "Upravljaj",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama verzija",
 	"Ollama Version": "Ollama verzija",
 	"On": "Uključeno",
 	"On": "Uključeno",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Samo alfanumerički znakovi i crtice su dopušteni u naredbenom nizu.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Samo alfanumerički znakovi i crtice su dopušteni u naredbenom nizu.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Pozitivan stav",
 	"Positive attitude": "Pozitivan stav",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Prethodnih 30 dana",
 	"Previous 30 days": "Prethodnih 30 dana",
 	"Previous 7 days": "Prethodnih 7 dana",
 	"Previous 7 days": "Prethodnih 7 dana",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "Čitaj naglas",
 	"Read Aloud": "Čitaj naglas",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Snimanje glasa",
 	"Record voice": "Snimanje glasa",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Ukloni",
 	"Remove": "Ukloni",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Ukloni model",
 	"Remove Model": "Ukloni model",
+	"Remove this tag from list": "",
 	"Rename": "Preimenuj",
 	"Rename": "Preimenuj",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Podijeli razgovor",
 	"Share Chat": "Podijeli razgovor",
 	"Share to Open WebUI Community": "Podijeli u OpenWebUI zajednici",
 	"Share to Open WebUI Community": "Podijeli u OpenWebUI zajednici",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Pokaži",
 	"Show": "Pokaži",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
@@ -1157,6 +1166,7 @@
 	"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",
 	"Stop": "",
 	"Stop": "",
+	"Stop Generating": "",
 	"Stop Sequence": "Zaustavi sekvencu",
 	"Stop Sequence": "Zaustavi sekvencu",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Prebaci postavke",
 	"Toggle settings": "Prebaci postavke",
 	"Toggle sidebar": "Prebaci bočnu traku",
 	"Toggle sidebar": "Prebaci bočnu traku",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "",
 	"Tool created successfully": "",

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

@@ -591,6 +591,7 @@
 	"Features": "Funkciók",
 	"Features": "Funkciók",
 	"Features Permissions": "Funkciók engedélyei",
 	"Features Permissions": "Funkciók engedélyei",
 	"February": "Február",
 	"February": "Február",
+	"Feedback Details": "",
 	"Feedback History": "Visszajelzés előzmények",
 	"Feedback History": "Visszajelzés előzmények",
 	"Feedbacks": "Visszajelzések",
 	"Feedbacks": "Visszajelzések",
 	"Feel free to add specific details": "Nyugodtan adj hozzá specifikus részleteket",
 	"Feel free to add specific details": "Nyugodtan adj hozzá specifikus részleteket",
@@ -778,6 +779,7 @@
 	"Lost": "Elveszett",
 	"Lost": "Elveszett",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Az OpenWebUI közösség által készítve",
 	"Made by Open WebUI Community": "Az OpenWebUI közösség által készítve",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Győződjön meg róla, hogy körülveszi őket",
 	"Make sure to enclose them with": "Győződjön meg róla, hogy körülveszi őket",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Győződjön meg róla, hogy exportál egy workflow.json fájlt API formátumban a ComfyUI-ból.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Győződjön meg róla, hogy exportál egy workflow.json fájlt API formátumban a ComfyUI-ból.",
 	"Manage": "Kezelés",
 	"Manage": "Kezelés",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama verzió",
 	"Ollama Version": "Ollama verzió",
 	"On": "Be",
 	"On": "Be",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Csak alfanumerikus karakterek és kötőjelek engedélyezettek",
 	"Only alphanumeric characters and hyphens are allowed": "Csak alfanumerikus karakterek és kötőjelek engedélyezettek",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Csak alfanumerikus karakterek és kötőjelek engedélyezettek a parancssorban.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Csak alfanumerikus karakterek és kötőjelek engedélyezettek a parancssorban.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Csak gyűjtemények szerkeszthetők, hozzon létre új tudásbázist dokumentumok szerkesztéséhez/hozzáadásához.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Csak gyűjtemények szerkeszthetők, hozzon létre új tudásbázist dokumentumok szerkesztéséhez/hozzáadásához.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Pozitív hozzáállás",
 	"Positive attitude": "Pozitív hozzáállás",
 	"Prefix ID": "Előtag azonosító",
 	"Prefix ID": "Előtag azonosító",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Az előtag azonosító a modell azonosítókhoz hozzáadott előtag segítségével elkerüli az egyéb kapcsolatokkal való ütközéseket - hagyja üresen a letiltáshoz",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Az előtag azonosító a modell azonosítókhoz hozzáadott előtag segítségével elkerüli az egyéb kapcsolatokkal való ütközéseket - hagyja üresen a letiltáshoz",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Előző 30 nap",
 	"Previous 30 days": "Előző 30 nap",
 	"Previous 7 days": "Előző 7 nap",
 	"Previous 7 days": "Előző 7 nap",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Modellek újrarangsorolása téma hasonlóság alapján",
 	"Re-rank models by topic similarity": "Modellek újrarangsorolása téma hasonlóság alapján",
 	"Read": "Olvasás",
 	"Read": "Olvasás",
 	"Read Aloud": "Felolvasás",
 	"Read Aloud": "Felolvasás",
+	"Reason": "",
 	"Reasoning Effort": "Érvelési erőfeszítés",
 	"Reasoning Effort": "Érvelési erőfeszítés",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Hang rögzítése",
 	"Record voice": "Hang rögzítése",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Relevancia",
 	"Relevance": "Relevancia",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Eltávolítás",
 	"Remove": "Eltávolítás",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Modell eltávolítása",
 	"Remove Model": "Modell eltávolítása",
+	"Remove this tag from list": "",
 	"Rename": "Átnevezés",
 	"Rename": "Átnevezés",
 	"Reorder Models": "Modellek átrendezése",
 	"Reorder Models": "Modellek átrendezése",
 	"Reply in Thread": "Válasz szálban",
 	"Reply in Thread": "Válasz szálban",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Beszélgetés megosztása",
 	"Share Chat": "Beszélgetés megosztása",
 	"Share to Open WebUI Community": "Megosztás az OpenWebUI közösséggel",
 	"Share to Open WebUI Community": "Megosztás az OpenWebUI közösséggel",
 	"Sharing Permissions": "Megosztási engedélyek",
 	"Sharing Permissions": "Megosztási engedélyek",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Mutat",
 	"Show": "Mutat",
 	"Show \"What's New\" modal on login": "\"Mi újság\" modal megjelenítése bejelentkezéskor",
 	"Show \"What's New\" modal on login": "\"Mi újság\" modal megjelenítése bejelentkezéskor",
 	"Show Admin Details in Account Pending Overlay": "Admin részletek megjelenítése a függő fiók átfedésben",
 	"Show Admin Details in Account Pending Overlay": "Admin részletek megjelenítése a függő fiók átfedésben",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Beszédfelismerési hiba: {{error}}",
 	"Speech recognition error: {{error}}": "Beszédfelismerési hiba: {{error}}",
 	"Speech-to-Text Engine": "Beszéd-szöveg motor",
 	"Speech-to-Text Engine": "Beszéd-szöveg motor",
 	"Stop": "Leállítás",
 	"Stop": "Leállítás",
+	"Stop Generating": "",
 	"Stop Sequence": "Leállítási szekvencia",
 	"Stop Sequence": "Leállítási szekvencia",
 	"Stream Chat Response": "Chat válasz streamelése",
 	"Stream Chat Response": "Chat válasz streamelése",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Beállítások be/ki",
 	"Toggle settings": "Beállítások be/ki",
 	"Toggle sidebar": "Oldalsáv be/ki",
 	"Toggle sidebar": "Oldalsáv be/ki",
+	"Toggle whether current connection is active.": "",
 	"Token": "Token",
 	"Token": "Token",
 	"Too verbose": "Túl bőbeszédű",
 	"Too verbose": "Túl bőbeszédű",
 	"Tool created successfully": "Eszköz sikeresen létrehozva",
 	"Tool created successfully": "Eszköz sikeresen létrehozva",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "Februari",
 	"February": "Februari",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "Jangan ragu untuk menambahkan detail spesifik",
 	"Feel free to add specific details": "Jangan ragu untuk menambahkan detail spesifik",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Dibuat oleh Komunitas OpenWebUI",
 	"Made by Open WebUI Community": "Dibuat oleh Komunitas OpenWebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Pastikan untuk melampirkannya dengan",
 	"Make sure to enclose them with": "Pastikan untuk melampirkannya dengan",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "Mengelola",
 	"Manage": "Mengelola",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Versi Ollama",
 	"Ollama Version": "Versi Ollama",
 	"On": "Aktif",
 	"On": "Aktif",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Hanya karakter alfanumerik dan tanda hubung yang diizinkan dalam string perintah.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Hanya karakter alfanumerik dan tanda hubung yang diizinkan dalam string perintah.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Sikap positif",
 	"Positive attitude": "Sikap positif",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "30 hari sebelumnya",
 	"Previous 30 days": "30 hari sebelumnya",
 	"Previous 7 days": "7 hari sebelumnya",
 	"Previous 7 days": "7 hari sebelumnya",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "Baca dengan Keras",
 	"Read Aloud": "Baca dengan Keras",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Rekam suara",
 	"Record voice": "Rekam suara",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Hapus",
 	"Remove": "Hapus",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Hapus Model",
 	"Remove Model": "Hapus Model",
+	"Remove this tag from list": "",
 	"Rename": "Ganti nama",
 	"Rename": "Ganti nama",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Bagikan Obrolan",
 	"Share Chat": "Bagikan Obrolan",
 	"Share to Open WebUI Community": "Bagikan ke Komunitas OpenWebUI",
 	"Share to Open WebUI Community": "Bagikan ke Komunitas OpenWebUI",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Tampilkan",
 	"Show": "Tampilkan",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Tampilkan Detail Admin di Hamparan Akun Tertunda",
 	"Show Admin Details in Account Pending Overlay": "Tampilkan Detail Admin di Hamparan Akun Tertunda",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Kesalahan pengenalan suara: {{error}}",
 	"Speech recognition error: {{error}}": "Kesalahan pengenalan suara: {{error}}",
 	"Speech-to-Text Engine": "Mesin Pengenal Ucapan ke Teks",
 	"Speech-to-Text Engine": "Mesin Pengenal Ucapan ke Teks",
 	"Stop": "",
 	"Stop": "",
+	"Stop Generating": "",
 	"Stop Sequence": "Hentikan Urutan",
 	"Stop Sequence": "Hentikan Urutan",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Beralih pengaturan",
 	"Toggle settings": "Beralih pengaturan",
 	"Toggle sidebar": "Beralih bilah sisi",
 	"Toggle sidebar": "Beralih bilah sisi",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "Alat berhasil dibuat",
 	"Tool created successfully": "Alat berhasil dibuat",

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

@@ -591,6 +591,7 @@
 	"Features": "Gnéithe",
 	"Features": "Gnéithe",
 	"Features Permissions": "Ceadanna Gnéithe",
 	"Features Permissions": "Ceadanna Gnéithe",
 	"February": "Feabhra",
 	"February": "Feabhra",
+	"Feedback Details": "",
 	"Feedback History": "Stair Aiseolais",
 	"Feedback History": "Stair Aiseolais",
 	"Feedbacks": "Aiseolas",
 	"Feedbacks": "Aiseolas",
 	"Feel free to add specific details": "Ná bíodh leisce ort sonraí ar leith a chur leis",
 	"Feel free to add specific details": "Ná bíodh leisce ort sonraí ar leith a chur leis",
@@ -778,6 +779,7 @@
 	"Lost": "Cailleadh",
 	"Lost": "Cailleadh",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Déanta ag OpenWebUI Community",
 	"Made by Open WebUI Community": "Déanta ag OpenWebUI Community",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Déan cinnte iad a cheangal le",
 	"Make sure to enclose them with": "Déan cinnte iad a cheangal le",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Déan cinnte comhad workflow.json a onnmhairiú mar fhormáid API ó ComfyUI.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Déan cinnte comhad workflow.json a onnmhairiú mar fhormáid API ó ComfyUI.",
 	"Manage": "Bainistiú",
 	"Manage": "Bainistiú",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Leagan Ollama",
 	"Ollama Version": "Leagan Ollama",
 	"On": "Ar",
 	"On": "Ar",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Ní cheadaítear ach carachtair alfa-uimhriúla agus fleiscíní",
 	"Only alphanumeric characters and hyphens are allowed": "Ní cheadaítear ach carachtair alfa-uimhriúla agus fleiscíní",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Ní cheadaítear ach carachtair alfauméireacha agus braithíní sa sreangán ordaithe.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Ní cheadaítear ach carachtair alfauméireacha agus braithíní sa sreangán ordaithe.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Ní féidir ach bailiúcháin a chur in eagar, bonn eolais nua a chruthú chun doiciméid a chur in eagar/a chur leis.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Ní féidir ach bailiúcháin a chur in eagar, bonn eolais nua a chruthú chun doiciméid a chur in eagar/a chur leis.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Dearcadh dearfach",
 	"Positive attitude": "Dearcadh dearfach",
 	"Prefix ID": "Aitheantas Réimír",
 	"Prefix ID": "Aitheantas Réimír",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Úsáidtear Aitheantas Réimír chun coinbhleachtaí le naisc eile a sheachaint trí réimír a chur le haitheantas na samhla - fág folamh le díchumasú",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Úsáidtear Aitheantas Réimír chun coinbhleachtaí le naisc eile a sheachaint trí réimír a chur le haitheantas na samhla - fág folamh le díchumasú",
+	"Prevent file creation": "",
 	"Preview": "Réamhamharc",
 	"Preview": "Réamhamharc",
 	"Previous 30 days": "30 lá roimhe seo",
 	"Previous 30 days": "30 lá roimhe seo",
 	"Previous 7 days": "7 lá roimhe seo",
 	"Previous 7 days": "7 lá roimhe seo",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Athrangaigh múnlaí de réir cosúlachta topaicí",
 	"Re-rank models by topic similarity": "Athrangaigh múnlaí de réir cosúlachta topaicí",
 	"Read": "Léigh",
 	"Read": "Léigh",
 	"Read Aloud": "Léigh Ard",
 	"Read Aloud": "Léigh Ard",
+	"Reason": "",
 	"Reasoning Effort": "Iarracht Réasúnúcháin",
 	"Reasoning Effort": "Iarracht Réasúnúcháin",
 	"Record": "Taifead",
 	"Record": "Taifead",
 	"Record voice": "Taifead guth",
 	"Record voice": "Taifead guth",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Ábharthacht",
 	"Relevance": "Ábharthacht",
 	"Relevance Threshold": "Tairseach Ábharthaíochta",
 	"Relevance Threshold": "Tairseach Ábharthaíochta",
 	"Remove": "Bain",
 	"Remove": "Bain",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Bain Múnla",
 	"Remove Model": "Bain Múnla",
+	"Remove this tag from list": "",
 	"Rename": "Athainmnigh",
 	"Rename": "Athainmnigh",
 	"Reorder Models": "Múnlaí Athordú",
 	"Reorder Models": "Múnlaí Athordú",
 	"Reply in Thread": "Freagra i Snáithe",
 	"Reply in Thread": "Freagra i Snáithe",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Comhroinn Comhrá",
 	"Share Chat": "Comhroinn Comhrá",
 	"Share to Open WebUI Community": "Comhroinn le Pobal OpenWebUI",
 	"Share to Open WebUI Community": "Comhroinn le Pobal OpenWebUI",
 	"Sharing Permissions": "Ceadanna a Roinnt",
 	"Sharing Permissions": "Ceadanna a Roinnt",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Taispeáin",
 	"Show": "Taispeáin",
 	"Show \"What's New\" modal on login": "Taispeáin módúil \"Cad atá Nua\" ar logáil isteach",
 	"Show \"What's New\" modal on login": "Taispeáin módúil \"Cad atá Nua\" ar logáil isteach",
 	"Show Admin Details in Account Pending Overlay": "Taispeáin Sonraí Riaracháin sa Chuntas ar Feitheamh Forleagan",
 	"Show Admin Details in Account Pending Overlay": "Taispeáin Sonraí Riaracháin sa Chuntas ar Feitheamh Forleagan",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Earráid aitheantais cainte: {{error}}",
 	"Speech recognition error: {{error}}": "Earráid aitheantais cainte: {{error}}",
 	"Speech-to-Text Engine": "Inneall Cainte-go-Téacs",
 	"Speech-to-Text Engine": "Inneall Cainte-go-Téacs",
 	"Stop": "Stad",
 	"Stop": "Stad",
+	"Stop Generating": "",
 	"Stop Sequence": "Stop Seicheamh",
 	"Stop Sequence": "Stop Seicheamh",
 	"Stream Chat Response": "Freagra Comhrá Sruth",
 	"Stream Chat Response": "Freagra Comhrá Sruth",
 	"Strip Existing OCR": "Bain OCR atá ann cheana",
 	"Strip Existing OCR": "Bain OCR atá ann cheana",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "Scoránaigh cuardach",
 	"Toggle search": "Scoránaigh cuardach",
 	"Toggle settings": "Socraigh socruithe",
 	"Toggle settings": "Socraigh socruithe",
 	"Toggle sidebar": "Athraigh barra taobh",
 	"Toggle sidebar": "Athraigh barra taobh",
+	"Toggle whether current connection is active.": "",
 	"Token": "Comhartha",
 	"Token": "Comhartha",
 	"Too verbose": "Ró-fhocal",
 	"Too verbose": "Ró-fhocal",
 	"Tool created successfully": "Uirlis cruthaithe go rathúil",
 	"Tool created successfully": "Uirlis cruthaithe go rathúil",

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

@@ -591,6 +591,7 @@
 	"Features": "Caratteristiche",
 	"Features": "Caratteristiche",
 	"Features Permissions": "Permessi delle funzionalità",
 	"Features Permissions": "Permessi delle funzionalità",
 	"February": "Febbraio",
 	"February": "Febbraio",
+	"Feedback Details": "",
 	"Feedback History": "Storico feedback",
 	"Feedback History": "Storico feedback",
 	"Feedbacks": "Feedback",
 	"Feedbacks": "Feedback",
 	"Feel free to add specific details": "Sentiti libero/a di aggiungere dettagli specifici",
 	"Feel free to add specific details": "Sentiti libero/a di aggiungere dettagli specifici",
@@ -778,6 +779,7 @@
 	"Lost": "Perso",
 	"Lost": "Perso",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Realizzato dalla Comunità Open WebUI",
 	"Made by Open WebUI Community": "Realizzato dalla Comunità Open WebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Assicurati di racchiuderli con",
 	"Make sure to enclose them with": "Assicurati di racchiuderli con",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Assicurati di esportare un file workflow.json come formato API da ComfyUI.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Assicurati di esportare un file workflow.json come formato API da ComfyUI.",
 	"Manage": "Gestisci",
 	"Manage": "Gestisci",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Versione Ollama",
 	"Ollama Version": "Versione Ollama",
 	"On": "Attivato",
 	"On": "Attivato",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Nella stringa di comando sono consentiti solo caratteri alfanumerici e trattini",
 	"Only alphanumeric characters and hyphens are allowed": "Nella stringa di comando sono consentiti solo caratteri alfanumerici e trattini",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Nella stringa di comando sono consentiti solo caratteri alfanumerici e trattini.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Nella stringa di comando sono consentiti solo caratteri alfanumerici e trattini.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo le collezioni possono essere modificate, crea una nuova base di conoscenza per modificare/aggiungere documenti.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo le collezioni possono essere modificate, crea una nuova base di conoscenza per modificare/aggiungere documenti.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Attitudine positiva",
 	"Positive attitude": "Attitudine positiva",
 	"Prefix ID": "ID prefisso",
 	"Prefix ID": "ID prefisso",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "L'ID prefisso viene utilizzato per evitare conflitti con altre connessioni aggiungendo un prefisso agli ID dei modelli - lasciare vuoto per disabilitare",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "L'ID prefisso viene utilizzato per evitare conflitti con altre connessioni aggiungendo un prefisso agli ID dei modelli - lasciare vuoto per disabilitare",
+	"Prevent file creation": "",
 	"Preview": "Anteprima",
 	"Preview": "Anteprima",
 	"Previous 30 days": "Ultimi 30 giorni",
 	"Previous 30 days": "Ultimi 30 giorni",
 	"Previous 7 days": "Ultimi 7 giorni",
 	"Previous 7 days": "Ultimi 7 giorni",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Riordina i modelli in base alla somiglianza degli argomenti",
 	"Re-rank models by topic similarity": "Riordina i modelli in base alla somiglianza degli argomenti",
 	"Read": "Leggi",
 	"Read": "Leggi",
 	"Read Aloud": "Leggi ad Alta Voce",
 	"Read Aloud": "Leggi ad Alta Voce",
+	"Reason": "",
 	"Reasoning Effort": "Sforzo di ragionamento",
 	"Reasoning Effort": "Sforzo di ragionamento",
 	"Record": "Registra",
 	"Record": "Registra",
 	"Record voice": "Registra voce",
 	"Record voice": "Registra voce",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Rilevanza",
 	"Relevance": "Rilevanza",
 	"Relevance Threshold": "Soglia di Rilevanza",
 	"Relevance Threshold": "Soglia di Rilevanza",
 	"Remove": "Rimuovi",
 	"Remove": "Rimuovi",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Rimuovi Modello",
 	"Remove Model": "Rimuovi Modello",
+	"Remove this tag from list": "",
 	"Rename": "Rinomina",
 	"Rename": "Rinomina",
 	"Reorder Models": "Riordina Modelli",
 	"Reorder Models": "Riordina Modelli",
 	"Reply in Thread": "Rispondi nel thread",
 	"Reply in Thread": "Rispondi nel thread",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Condividi chat",
 	"Share Chat": "Condividi chat",
 	"Share to Open WebUI Community": "Condividi con la comunità OpenWebUI",
 	"Share to Open WebUI Community": "Condividi con la comunità OpenWebUI",
 	"Sharing Permissions": "Condivisione dei permessi",
 	"Sharing Permissions": "Condivisione dei permessi",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Mostra",
 	"Show": "Mostra",
 	"Show \"What's New\" modal on login": "Mostra il modulo \"Novità\" al login",
 	"Show \"What's New\" modal on login": "Mostra il modulo \"Novità\" al login",
 	"Show Admin Details in Account Pending Overlay": "Mostra i dettagli dell'amministratore nella sovrapposizione dell'account in attesa",
 	"Show Admin Details in Account Pending Overlay": "Mostra i dettagli dell'amministratore nella sovrapposizione dell'account in attesa",
@@ -1157,6 +1166,7 @@
 	"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",
 	"Stop": "Arresta",
 	"Stop": "Arresta",
+	"Stop Generating": "",
 	"Stop Sequence": "Sequenza di arresto",
 	"Stop Sequence": "Sequenza di arresto",
 	"Stream Chat Response": "Stream risposta chat",
 	"Stream Chat Response": "Stream risposta chat",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Attiva/disattiva impostazioni",
 	"Toggle settings": "Attiva/disattiva impostazioni",
 	"Toggle sidebar": "Attiva/disattiva barra laterale",
 	"Toggle sidebar": "Attiva/disattiva barra laterale",
+	"Toggle whether current connection is active.": "",
 	"Token": "Token",
 	"Token": "Token",
 	"Too verbose": "Troppo prolisso",
 	"Too verbose": "Troppo prolisso",
 	"Tool created successfully": "Tool creato con successo",
 	"Tool created successfully": "Tool creato con successo",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "機能の許可",
 	"Features Permissions": "機能の許可",
 	"February": "2月",
 	"February": "2月",
+	"Feedback Details": "",
 	"Feedback History": "フィードバック履歴",
 	"Feedback History": "フィードバック履歴",
 	"Feedbacks": "フィードバック",
 	"Feedbacks": "フィードバック",
 	"Feel free to add specific details": "詳細を追加してください",
 	"Feel free to add specific details": "詳細を追加してください",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "OpenWebUI コミュニティによって作成",
 	"Made by Open WebUI Community": "OpenWebUI コミュニティによって作成",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "必ず次で囲んでください",
 	"Make sure to enclose them with": "必ず次で囲んでください",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "管理",
 	"Manage": "管理",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama バージョン",
 	"Ollama Version": "Ollama バージョン",
 	"On": "オン",
 	"On": "オン",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "英数字とハイフンのみが許可されています",
 	"Only alphanumeric characters and hyphens are allowed": "英数字とハイフンのみが許可されています",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "コマンド文字列には英数字とハイフンのみが許可されています。",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "コマンド文字列には英数字とハイフンのみが許可されています。",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "コレクションのみ編集できます。新しいナレッジベースを作成してドキュメントを編集/追加してください。",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "コレクションのみ編集できます。新しいナレッジベースを作成してドキュメントを編集/追加してください。",
@@ -979,6 +983,7 @@
 	"Positive attitude": "前向きな態度",
 	"Positive attitude": "前向きな態度",
 	"Prefix ID": "Prefix ID",
 	"Prefix ID": "Prefix ID",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID はモデル ID に接頭辞を追加することで、他の接続との競合を避けるために使用されます - 空の場合は無効にします",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID はモデル ID に接頭辞を追加することで、他の接続との競合を避けるために使用されます - 空の場合は無効にします",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "前の30日間",
 	"Previous 30 days": "前の30日間",
 	"Previous 7 days": "前の7日間",
 	"Previous 7 days": "前の7日間",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "トピックの類似性に基づいてモデルを再ランク付け",
 	"Re-rank models by topic similarity": "トピックの類似性に基づいてモデルを再ランク付け",
 	"Read": "読み込む",
 	"Read": "読み込む",
 	"Read Aloud": "読み上げ",
 	"Read Aloud": "読み上げ",
+	"Reason": "",
 	"Reasoning Effort": "推理の努力",
 	"Reasoning Effort": "推理の努力",
 	"Record": "録音",
 	"Record": "録音",
 	"Record voice": "音声を録音",
 	"Record voice": "音声を録音",
@@ -1020,7 +1026,9 @@
 	"Relevance": "関連性",
 	"Relevance": "関連性",
 	"Relevance Threshold": "関連性の閾値",
 	"Relevance Threshold": "関連性の閾値",
 	"Remove": "削除",
 	"Remove": "削除",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "モデルを削除",
 	"Remove Model": "モデルを削除",
+	"Remove this tag from list": "",
 	"Rename": "名前を変更",
 	"Rename": "名前を変更",
 	"Reorder Models": "モデルを並べ替え",
 	"Reorder Models": "モデルを並べ替え",
 	"Reply in Thread": "スレッドで返信",
 	"Reply in Thread": "スレッドで返信",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "チャットを共有",
 	"Share Chat": "チャットを共有",
 	"Share to Open WebUI Community": "OpenWebUI コミュニティに共有",
 	"Share to Open WebUI Community": "OpenWebUI コミュニティに共有",
 	"Sharing Permissions": "共有許可",
 	"Sharing Permissions": "共有許可",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "表示",
 	"Show": "表示",
 	"Show \"What's New\" modal on login": "ログイン時に「新しいこと」モーダルを表示",
 	"Show \"What's New\" modal on login": "ログイン時に「新しいこと」モーダルを表示",
 	"Show Admin Details in Account Pending Overlay": "アカウント保留中の管理者詳細を表示",
 	"Show Admin Details in Account Pending Overlay": "アカウント保留中の管理者詳細を表示",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "音声認識エラー: {{error}}",
 	"Speech recognition error: {{error}}": "音声認識エラー: {{error}}",
 	"Speech-to-Text Engine": "音声テキスト変換エンジン",
 	"Speech-to-Text Engine": "音声テキスト変換エンジン",
 	"Stop": "停止",
 	"Stop": "停止",
+	"Stop Generating": "",
 	"Stop Sequence": "ストップシーケンス",
 	"Stop Sequence": "ストップシーケンス",
 	"Stream Chat Response": "チャットレスポンスのストリーム",
 	"Stream Chat Response": "チャットレスポンスのストリーム",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "設定を切り替え",
 	"Toggle settings": "設定を切り替え",
 	"Toggle sidebar": "サイドバーを切り替え",
 	"Toggle sidebar": "サイドバーを切り替え",
+	"Toggle whether current connection is active.": "",
 	"Token": "トークン",
 	"Token": "トークン",
 	"Too verbose": "冗長すぎます",
 	"Too verbose": "冗長すぎます",
 	"Tool created successfully": "ツールが正常に作成されました",
 	"Tool created successfully": "ツールが正常に作成されました",

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

@@ -591,6 +591,7 @@
 	"Features": "მახასიათებლები",
 	"Features": "მახასიათებლები",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "თებერვალი",
 	"February": "თებერვალი",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "სპეციფიკური დეტალების დამატება პრობლემა არაა",
 	"Feel free to add specific details": "სპეციფიკური დეტალების დამატება პრობლემა არაა",
@@ -778,6 +779,7 @@
 	"Lost": "წაგება",
 	"Lost": "წაგება",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "შექმნილია OpenWebUI საზოგადოების მიერ",
 	"Made by Open WebUI Community": "შექმნილია OpenWebUI საზოგადოების მიერ",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "დარწმუნდით, რომ ჩასვით ისინი",
 	"Make sure to enclose them with": "დარწმუნდით, რომ ჩასვით ისინი",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "მართვა",
 	"Manage": "მართვა",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama ვერსია",
 	"Ollama Version": "Ollama ვერსია",
 	"On": "ჩართული",
 	"On": "ჩართული",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "ბრძანების სტრიქონში დაშვებულია, მხოლოდ, ალფარიცხვითი სიმბოლოები და ტირეები.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "ბრძანების სტრიქონში დაშვებულია, მხოლოდ, ალფარიცხვითი სიმბოლოები და ტირეები.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "პოზიტიური დამოკიდებულება",
 	"Positive attitude": "პოზიტიური დამოკიდებულება",
 	"Prefix ID": "პრეფიქსის ",
 	"Prefix ID": "პრეფიქსის ",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "წინა 30 დღე",
 	"Previous 30 days": "წინა 30 დღე",
 	"Previous 7 days": "წინა 7 დღე",
 	"Previous 7 days": "წინა 7 დღე",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "წაკითხვა",
 	"Read": "წაკითხვა",
 	"Read Aloud": "ხმამაღლა წაკითხვა",
 	"Read Aloud": "ხმამაღლა წაკითხვა",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "ხმის ჩაწერა",
 	"Record voice": "ხმის ჩაწერა",
@@ -1020,7 +1026,9 @@
 	"Relevance": "შესაბამისობა",
 	"Relevance": "შესაბამისობა",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "წაშლა",
 	"Remove": "წაშლა",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "მოდელის წაშლა",
 	"Remove Model": "მოდელის წაშლა",
+	"Remove this tag from list": "",
 	"Rename": "სახელის გადარქმევა",
 	"Rename": "სახელის გადარქმევა",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "ნაკადში პასუხი",
 	"Reply in Thread": "ნაკადში პასუხი",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "ჩატის გაზიარება",
 	"Share Chat": "ჩატის გაზიარება",
 	"Share to Open WebUI Community": "გაზიარება Open WebUI-ის საზოგადოებასთან",
 	"Share to Open WebUI Community": "გაზიარება Open WebUI-ის საზოგადოებასთან",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "ჩვენება",
 	"Show": "ჩვენება",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "საუბრის ამოცნობის შეცდომა: {{error}}",
 	"Speech recognition error: {{error}}": "საუბრის ამოცნობის შეცდომა: {{error}}",
 	"Speech-to-Text Engine": "საუბრიდან-ტექსტამდე-ის ძრავი",
 	"Speech-to-Text Engine": "საუბრიდან-ტექსტამდე-ის ძრავი",
 	"Stop": "გაჩერება",
 	"Stop": "გაჩერება",
+	"Stop Generating": "",
 	"Stop Sequence": "შეჩერების მიმდევრობა",
 	"Stop Sequence": "შეჩერების მიმდევრობა",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "პარამეტრების გადართვა",
 	"Toggle settings": "პარამეტრების გადართვა",
 	"Toggle sidebar": "გვერდითი ზოლის ჩართ/გამორთ",
 	"Toggle sidebar": "გვერდითი ზოლის ჩართ/გამორთ",
+	"Toggle whether current connection is active.": "",
 	"Token": "კოდი",
 	"Token": "კოდი",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "",
 	"Tool created successfully": "",

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

@@ -591,6 +591,7 @@
 	"Features": "기능",
 	"Features": "기능",
 	"Features Permissions": "기능 권한",
 	"Features Permissions": "기능 권한",
 	"February": "2월",
 	"February": "2월",
+	"Feedback Details": "",
 	"Feedback History": "피드백 기록",
 	"Feedback History": "피드백 기록",
 	"Feedbacks": "피드백",
 	"Feedbacks": "피드백",
 	"Feel free to add specific details": "자세한 내용을 자유롭게 추가하세요.",
 	"Feel free to add specific details": "자세한 내용을 자유롭게 추가하세요.",
@@ -778,6 +779,7 @@
 	"Lost": "패배",
 	"Lost": "패배",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "OpenWebUI 커뮤니티에 의해 개발됨",
 	"Made by Open WebUI Community": "OpenWebUI 커뮤니티에 의해 개발됨",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "꼭 다음으로 감싸세요:",
 	"Make sure to enclose them with": "꼭 다음으로 감싸세요:",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "꼭 workflow.json 파일을 ComfyUI의 API 형식대로 내보내세요",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "꼭 workflow.json 파일을 ComfyUI의 API 형식대로 내보내세요",
 	"Manage": "관리",
 	"Manage": "관리",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama 버전",
 	"Ollama Version": "Ollama 버전",
 	"On": "켜기",
 	"On": "켜기",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "영문자, 숫자 및 하이픈(-)만 허용됩니다.",
 	"Only alphanumeric characters and hyphens are allowed": "영문자, 숫자 및 하이픈(-)만 허용됩니다.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "명령어 문자열에는 영문자, 숫자 및 하이픈(-)만 허용됩니다.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "명령어 문자열에는 영문자, 숫자 및 하이픈(-)만 허용됩니다.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "가지고 있는 컬렉션만 수정 가능합니다, 새 지식 기반을 생성하여 문서를 수정 혹은 추가하십시오.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "가지고 있는 컬렉션만 수정 가능합니다, 새 지식 기반을 생성하여 문서를 수정 혹은 추가하십시오.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "긍정적인 자세",
 	"Positive attitude": "긍정적인 자세",
 	"Prefix ID": "Prefix ID",
 	"Prefix ID": "Prefix ID",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID는 모델 ID에 접두사를 추가하여 다른 연결과의 충돌을 방지하는 데 사용됩니다. - 비활성화하려면 비워 둡니다.",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID는 모델 ID에 접두사를 추가하여 다른 연결과의 충돌을 방지하는 데 사용됩니다. - 비활성화하려면 비워 둡니다.",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "이전 30일",
 	"Previous 30 days": "이전 30일",
 	"Previous 7 days": "이전 7일",
 	"Previous 7 days": "이전 7일",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "주제 유사성으로 모델을 재정렬하기",
 	"Re-rank models by topic similarity": "주제 유사성으로 모델을 재정렬하기",
 	"Read": "읽기",
 	"Read": "읽기",
 	"Read Aloud": "읽어주기",
 	"Read Aloud": "읽어주기",
+	"Reason": "",
 	"Reasoning Effort": "추론 난이도",
 	"Reasoning Effort": "추론 난이도",
 	"Record": "",
 	"Record": "",
 	"Record voice": "음성 녹음",
 	"Record voice": "음성 녹음",
@@ -1020,7 +1026,9 @@
 	"Relevance": "관련도",
 	"Relevance": "관련도",
 	"Relevance Threshold": "관련성 임계값",
 	"Relevance Threshold": "관련성 임계값",
 	"Remove": "삭제",
 	"Remove": "삭제",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "모델 삭제",
 	"Remove Model": "모델 삭제",
+	"Remove this tag from list": "",
 	"Rename": "이름 변경",
 	"Rename": "이름 변경",
 	"Reorder Models": "모델 재정렬",
 	"Reorder Models": "모델 재정렬",
 	"Reply in Thread": "스레드로 답장하기",
 	"Reply in Thread": "스레드로 답장하기",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "채팅 공유",
 	"Share Chat": "채팅 공유",
 	"Share to Open WebUI Community": "OpenWebUI 커뮤니티에 공유",
 	"Share to Open WebUI Community": "OpenWebUI 커뮤니티에 공유",
 	"Sharing Permissions": "권한 공유",
 	"Sharing Permissions": "권한 공유",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "보기",
 	"Show": "보기",
 	"Show \"What's New\" modal on login": "로그인시 \"새로운 기능\" 모달 보기",
 	"Show \"What's New\" modal on login": "로그인시 \"새로운 기능\" 모달 보기",
 	"Show Admin Details in Account Pending Overlay": "사용자용 계정 보류 설명창에, 관리자 상세 정보 노출",
 	"Show Admin Details in Account Pending Overlay": "사용자용 계정 보류 설명창에, 관리자 상세 정보 노출",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "음성 인식 오류: {{error}}",
 	"Speech recognition error: {{error}}": "음성 인식 오류: {{error}}",
 	"Speech-to-Text Engine": "음성-텍스트 변환 엔진",
 	"Speech-to-Text Engine": "음성-텍스트 변환 엔진",
 	"Stop": "정지",
 	"Stop": "정지",
+	"Stop Generating": "",
 	"Stop Sequence": "중지 시퀀스",
 	"Stop Sequence": "중지 시퀀스",
 	"Stream Chat Response": "스트림 채팅 응답",
 	"Stream Chat Response": "스트림 채팅 응답",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "검색 전환",
 	"Toggle search": "검색 전환",
 	"Toggle settings": "설정 전환",
 	"Toggle settings": "설정 전환",
 	"Toggle sidebar": "사이드바 전환",
 	"Toggle sidebar": "사이드바 전환",
+	"Toggle whether current connection is active.": "",
 	"Token": "토큰",
 	"Token": "토큰",
 	"Too verbose": "말이 너무 많음",
 	"Too verbose": "말이 너무 많음",
 	"Tool created successfully": "성공적으로 도구가 생성되었습니다.",
 	"Tool created successfully": "성공적으로 도구가 생성되었습니다.",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "Vasaris",
 	"February": "Vasaris",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "Galite pridėti specifinių detalių",
 	"Feel free to add specific details": "Galite pridėti specifinių detalių",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Sukurta OpenWebUI bendruomenės",
 	"Made by Open WebUI Community": "Sukurta OpenWebUI bendruomenės",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Užtikrinktie, kad įtraukiate viduje:",
 	"Make sure to enclose them with": "Užtikrinktie, kad įtraukiate viduje:",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "Tvarkyti",
 	"Manage": "Tvarkyti",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama versija",
 	"Ollama Version": "Ollama versija",
 	"On": "Aktyvuota",
 	"On": "Aktyvuota",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Leistinos tik raidės, skaičiai ir brūkšneliai.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Leistinos tik raidės, skaičiai ir brūkšneliai.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Pozityvus elgesys",
 	"Positive attitude": "Pozityvus elgesys",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Paskutinės 30 dienų",
 	"Previous 30 days": "Paskutinės 30 dienų",
 	"Previous 7 days": "Paskutinės 7 dienos",
 	"Previous 7 days": "Paskutinės 7 dienos",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "Skaityti garsiai",
 	"Read Aloud": "Skaityti garsiai",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Įrašyti balsą",
 	"Record voice": "Įrašyti balsą",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Pašalinti",
 	"Remove": "Pašalinti",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Pašalinti modelį",
 	"Remove Model": "Pašalinti modelį",
+	"Remove this tag from list": "",
 	"Rename": "Pervadinti",
 	"Rename": "Pervadinti",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Dalintis pokalbiu",
 	"Share Chat": "Dalintis pokalbiu",
 	"Share to Open WebUI Community": "Dalintis su OpenWebUI bendruomene",
 	"Share to Open WebUI Community": "Dalintis su OpenWebUI bendruomene",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Rodyti",
 	"Show": "Rodyti",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Rodyti administratoriaus duomenis laukiant paskyros patvirtinimo",
 	"Show Admin Details in Account Pending Overlay": "Rodyti administratoriaus duomenis laukiant paskyros patvirtinimo",
@@ -1157,6 +1166,7 @@
 	"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",
 	"Stop": "",
 	"Stop": "",
+	"Stop Generating": "",
 	"Stop Sequence": "Baigt sekvenciją",
 	"Stop Sequence": "Baigt sekvenciją",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Atverti/užverti parametrus",
 	"Toggle settings": "Atverti/užverti parametrus",
 	"Toggle sidebar": "Atverti/užverti šoninį meniu",
 	"Toggle sidebar": "Atverti/užverti šoninį meniu",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "Įrankis sukurtas sėkmingai",
 	"Tool created successfully": "Įrankis sukurtas sėkmingai",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "Febuari",
 	"February": "Febuari",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "Jangan ragu untuk menambah butiran khusus",
 	"Feel free to add specific details": "Jangan ragu untuk menambah butiran khusus",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Dicipta oleh Komuniti OpenWebUI",
 	"Made by Open WebUI Community": "Dicipta oleh Komuniti OpenWebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Pastikan untuk melampirkannya dengan",
 	"Make sure to enclose them with": "Pastikan untuk melampirkannya dengan",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "Urus",
 	"Manage": "Urus",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Versi Ollama",
 	"Ollama Version": "Versi Ollama",
 	"On": "Hidup",
 	"On": "Hidup",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Hanya aksara alfanumerik dan sempang dibenarkan dalam rentetan arahan.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Hanya aksara alfanumerik dan sempang dibenarkan dalam rentetan arahan.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Sikap positif",
 	"Positive attitude": "Sikap positif",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "30 hari sebelumnya",
 	"Previous 30 days": "30 hari sebelumnya",
 	"Previous 7 days": "7 hari sebelumnya",
 	"Previous 7 days": "7 hari sebelumnya",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "Baca dengan lantang",
 	"Read Aloud": "Baca dengan lantang",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Rakam suara",
 	"Record voice": "Rakam suara",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Hapuskan",
 	"Remove": "Hapuskan",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Hapuskan Model",
 	"Remove Model": "Hapuskan Model",
+	"Remove this tag from list": "",
 	"Rename": "Namakan Semula",
 	"Rename": "Namakan Semula",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Kongsi Perbualan",
 	"Share Chat": "Kongsi Perbualan",
 	"Share to Open WebUI Community": "Kongsi kepada Komuniti OpenWebUI",
 	"Share to Open WebUI Community": "Kongsi kepada Komuniti OpenWebUI",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Tunjukkan",
 	"Show": "Tunjukkan",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Tunjukkan Butiran Pentadbir dalam Akaun Menunggu Tindanan",
 	"Show Admin Details in Account Pending Overlay": "Tunjukkan Butiran Pentadbir dalam Akaun Menunggu Tindanan",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Ralat pengecaman pertuturan: {{error}}",
 	"Speech recognition error: {{error}}": "Ralat pengecaman pertuturan: {{error}}",
 	"Speech-to-Text Engine": "Enjin Ucapan-ke-Teks",
 	"Speech-to-Text Engine": "Enjin Ucapan-ke-Teks",
 	"Stop": "",
 	"Stop": "",
+	"Stop Generating": "",
 	"Stop Sequence": "Jujukan Henti",
 	"Stop Sequence": "Jujukan Henti",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Suis Tetapan ",
 	"Toggle settings": "Suis Tetapan ",
 	"Toggle sidebar": "Suis Bar Sisi",
 	"Toggle sidebar": "Suis Bar Sisi",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "Alat berjaya dibuat",
 	"Tool created successfully": "Alat berjaya dibuat",

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

@@ -591,6 +591,7 @@
 	"Features": "Funksjoner",
 	"Features": "Funksjoner",
 	"Features Permissions": "Tillatelser for funksjoner",
 	"Features Permissions": "Tillatelser for funksjoner",
 	"February": "februar",
 	"February": "februar",
+	"Feedback Details": "",
 	"Feedback History": "Tilbakemeldingslogg",
 	"Feedback History": "Tilbakemeldingslogg",
 	"Feedbacks": "Tilbakemeldinger",
 	"Feedbacks": "Tilbakemeldinger",
 	"Feel free to add specific details": "Legg gjerne til bestemte detaljer",
 	"Feel free to add specific details": "Legg gjerne til bestemte detaljer",
@@ -778,6 +779,7 @@
 	"Lost": "Tapt",
 	"Lost": "Tapt",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Laget av OpenWebUI-fellesskapet",
 	"Made by Open WebUI Community": "Laget av OpenWebUI-fellesskapet",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Sørg for å omslutte dem med",
 	"Make sure to enclose them with": "Sørg for å omslutte dem med",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Sørg for å eksportere en workflow.json-fil i API-formatet fra ComfyUI.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Sørg for å eksportere en workflow.json-fil i API-formatet fra ComfyUI.",
 	"Manage": "Administrer",
 	"Manage": "Administrer",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama-versjon",
 	"Ollama Version": "Ollama-versjon",
 	"On": "Aktivert",
 	"On": "Aktivert",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Bare alfanumeriske tegn og bindestreker er tillatt",
 	"Only alphanumeric characters and hyphens are allowed": "Bare alfanumeriske tegn og bindestreker er tillatt",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Bare alfanumeriske tegn og bindestreker er tillatt i kommandostrengen.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Bare alfanumeriske tegn og bindestreker er tillatt i kommandostrengen.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Bare samlinger kan redigeres, eller lag en ny kunnskapsbase for å kunne redigere / legge til dokumenter.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Bare samlinger kan redigeres, eller lag en ny kunnskapsbase for å kunne redigere / legge til dokumenter.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Positiv holdning",
 	"Positive attitude": "Positiv holdning",
 	"Prefix ID": "Prefiks-ID",
 	"Prefix ID": "Prefiks-ID",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiks-ID brukes for å unngå konflikter med andre tilkoblinger ved å legge til et prefiks til modell-ID-ene. La det stå tomt for å deaktivere",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiks-ID brukes for å unngå konflikter med andre tilkoblinger ved å legge til et prefiks til modell-ID-ene. La det stå tomt for å deaktivere",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Siste 30 dager",
 	"Previous 30 days": "Siste 30 dager",
 	"Previous 7 days": "Siste 7 dager",
 	"Previous 7 days": "Siste 7 dager",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Ny rangering av modeller etter emnelikhet",
 	"Re-rank models by topic similarity": "Ny rangering av modeller etter emnelikhet",
 	"Read": "Les",
 	"Read": "Les",
 	"Read Aloud": "Les høyt",
 	"Read Aloud": "Les høyt",
+	"Reason": "",
 	"Reasoning Effort": "Resonneringsinnsats",
 	"Reasoning Effort": "Resonneringsinnsats",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Ta opp tale",
 	"Record voice": "Ta opp tale",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Relevans",
 	"Relevance": "Relevans",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Fjern",
 	"Remove": "Fjern",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Fjern modell",
 	"Remove Model": "Fjern modell",
+	"Remove this tag from list": "",
 	"Rename": "Gi nytt navn",
 	"Rename": "Gi nytt navn",
 	"Reorder Models": "Sorter modeller på nytt",
 	"Reorder Models": "Sorter modeller på nytt",
 	"Reply in Thread": "Svar i tråd",
 	"Reply in Thread": "Svar i tråd",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Del chat",
 	"Share Chat": "Del chat",
 	"Share to Open WebUI Community": "Del med OpenWebUI-fellesskapet",
 	"Share to Open WebUI Community": "Del med OpenWebUI-fellesskapet",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Vis",
 	"Show": "Vis",
 	"Show \"What's New\" modal on login": "Vis \"Hva er nytt\"-modal ved innlogging",
 	"Show \"What's New\" modal on login": "Vis \"Hva er nytt\"-modal ved innlogging",
 	"Show Admin Details in Account Pending Overlay": "Vis administratordetaljer i ventende kontovisning",
 	"Show Admin Details in Account Pending Overlay": "Vis administratordetaljer i ventende kontovisning",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Feil ved talegjenkjenning: {{error}}",
 	"Speech recognition error: {{error}}": "Feil ved talegjenkjenning: {{error}}",
 	"Speech-to-Text Engine": "Motor for Tale-til-tekst",
 	"Speech-to-Text Engine": "Motor for Tale-til-tekst",
 	"Stop": "Stopp",
 	"Stop": "Stopp",
+	"Stop Generating": "",
 	"Stop Sequence": "Stoppsekvens",
 	"Stop Sequence": "Stoppsekvens",
 	"Stream Chat Response": "Strømme chat-svar",
 	"Stream Chat Response": "Strømme chat-svar",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Veksle innstillinger",
 	"Toggle settings": "Veksle innstillinger",
 	"Toggle sidebar": "Veksle sidefelt",
 	"Toggle sidebar": "Veksle sidefelt",
+	"Toggle whether current connection is active.": "",
 	"Token": "Token",
 	"Token": "Token",
 	"Too verbose": "For omfattende",
 	"Too verbose": "For omfattende",
 	"Tool created successfully": "Verktøy opprettet",
 	"Tool created successfully": "Verktøy opprettet",

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

@@ -591,6 +591,7 @@
 	"Features": "Functies",
 	"Features": "Functies",
 	"Features Permissions": "Functietoestemmingen",
 	"Features Permissions": "Functietoestemmingen",
 	"February": "Februari",
 	"February": "Februari",
+	"Feedback Details": "",
 	"Feedback History": "Feedback geschiedenis",
 	"Feedback History": "Feedback geschiedenis",
 	"Feedbacks": "Feedback",
 	"Feedbacks": "Feedback",
 	"Feel free to add specific details": "Voeg specifieke details toe",
 	"Feel free to add specific details": "Voeg specifieke details toe",
@@ -778,6 +779,7 @@
 	"Lost": "Verloren",
 	"Lost": "Verloren",
 	"LTR": "LNR",
 	"LTR": "LNR",
 	"Made by Open WebUI Community": "Gemaakt door OpenWebUI Community",
 	"Made by Open WebUI Community": "Gemaakt door OpenWebUI Community",
+	"Make password visible in the user interface": "",
 	"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",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Zorg ervoor dat je een workflow.json-bestand als API-formaat exporteert vanuit ComfyUI.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Zorg ervoor dat je een workflow.json-bestand als API-formaat exporteert vanuit ComfyUI.",
 	"Manage": "Beheren",
 	"Manage": "Beheren",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama Versie",
 	"Ollama Version": "Ollama Versie",
 	"On": "Aan",
 	"On": "Aan",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Alleen alfanumerieke tekens en koppeltekens zijn toegestaan",
 	"Only alphanumeric characters and hyphens are allowed": "Alleen alfanumerieke tekens en koppeltekens zijn toegestaan",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Alleen alfanumerieke karakters en streepjes zijn toegestaan in de commando string.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Alleen alfanumerieke karakters en streepjes zijn toegestaan in de commando string.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Alleen verzamelinge kunnen gewijzigd worden, maak een nieuwe kennisbank aan om bestanden aan te passen/toe te voegen",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Alleen verzamelinge kunnen gewijzigd worden, maak een nieuwe kennisbank aan om bestanden aan te passen/toe te voegen",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Positieve positie",
 	"Positive attitude": "Positieve positie",
 	"Prefix ID": "Voorvoegsel-ID",
 	"Prefix ID": "Voorvoegsel-ID",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Voorvoegsel-ID wordt gebruikt om conflicten met andere verbindingen te vermijden door een voorvoegsel aan het model-ID toe te voegen - laat leeg om uit te schakelen",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Voorvoegsel-ID wordt gebruikt om conflicten met andere verbindingen te vermijden door een voorvoegsel aan het model-ID toe te voegen - laat leeg om uit te schakelen",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Afgelopen 30 dagen",
 	"Previous 30 days": "Afgelopen 30 dagen",
 	"Previous 7 days": "Afgelopen 7 dagen",
 	"Previous 7 days": "Afgelopen 7 dagen",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Herrangschik modellen op basis van onderwerpsovereenkomst",
 	"Re-rank models by topic similarity": "Herrangschik modellen op basis van onderwerpsovereenkomst",
 	"Read": "Voorlezen",
 	"Read": "Voorlezen",
 	"Read Aloud": "Voorlezen",
 	"Read Aloud": "Voorlezen",
+	"Reason": "",
 	"Reasoning Effort": "Redeneerinspanning",
 	"Reasoning Effort": "Redeneerinspanning",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Neem stem op",
 	"Record voice": "Neem stem op",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Relevantie",
 	"Relevance": "Relevantie",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Verwijderen",
 	"Remove": "Verwijderen",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Verwijder model",
 	"Remove Model": "Verwijder model",
+	"Remove this tag from list": "",
 	"Rename": "Hernoemen",
 	"Rename": "Hernoemen",
 	"Reorder Models": "Herschik modellen",
 	"Reorder Models": "Herschik modellen",
 	"Reply in Thread": "Antwoord in draad",
 	"Reply in Thread": "Antwoord in draad",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Deel chat",
 	"Share Chat": "Deel chat",
 	"Share to Open WebUI Community": "Deel naar OpenWebUI-community",
 	"Share to Open WebUI Community": "Deel naar OpenWebUI-community",
 	"Sharing Permissions": "Deeltoestemmingen",
 	"Sharing Permissions": "Deeltoestemmingen",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Toon",
 	"Show": "Toon",
 	"Show \"What's New\" modal on login": "Toon \"Wat is nieuw\" bij inloggen",
 	"Show \"What's New\" modal on login": "Toon \"Wat is nieuw\" bij inloggen",
 	"Show Admin Details in Account Pending Overlay": "Admin-details weergeven in overlay in afwachting van account",
 	"Show Admin Details in Account Pending Overlay": "Admin-details weergeven in overlay in afwachting van account",
@@ -1157,6 +1166,7 @@
 	"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",
 	"Stop": "Stop",
 	"Stop": "Stop",
+	"Stop Generating": "",
 	"Stop Sequence": "Stopsequentie",
 	"Stop Sequence": "Stopsequentie",
 	"Stream Chat Response": "Stream chat-antwoord",
 	"Stream Chat Response": "Stream chat-antwoord",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Wissel instellingen",
 	"Toggle settings": "Wissel instellingen",
 	"Toggle sidebar": "Wissel sidebar",
 	"Toggle sidebar": "Wissel sidebar",
+	"Toggle whether current connection is active.": "",
 	"Token": "Token",
 	"Token": "Token",
 	"Too verbose": "Te langdradig",
 	"Too verbose": "Te langdradig",
 	"Tool created successfully": "Gereedschap succesvol aangemaakt",
 	"Tool created successfully": "Gereedschap succesvol aangemaakt",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "ਫਰਵਰੀ",
 	"February": "ਫਰਵਰੀ",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "ਖੁੱਲ੍ਹੇ ਦਿਲ ਨਾਲ ਖਾਸ ਵੇਰਵੇ ਸ਼ਾਮਲ ਕਰੋ",
 	"Feel free to add specific details": "ਖੁੱਲ੍ਹੇ ਦਿਲ ਨਾਲ ਖਾਸ ਵੇਰਵੇ ਸ਼ਾਮਲ ਕਰੋ",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਦੁਆਰਾ ਬਣਾਇਆ ਗਿਆ",
 	"Made by Open WebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਦੁਆਰਾ ਬਣਾਇਆ ਗਿਆ",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਉਨ੍ਹਾਂ ਨੂੰ ਘੇਰੋ",
 	"Make sure to enclose them with": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਉਨ੍ਹਾਂ ਨੂੰ ਘੇਰੋ",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "",
 	"Manage": "",
@@ -899,6 +901,8 @@
 	"Ollama Version": "ਓਲਾਮਾ ਵਰਜਨ",
 	"Ollama Version": "ਓਲਾਮਾ ਵਰਜਨ",
 	"On": "ਚਾਲੂ",
 	"On": "ਚਾਲੂ",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "ਕਮਾਂਡ ਸਤਰ ਵਿੱਚ ਸਿਰਫ਼ ਅਲਫ਼ਾਨਯੂਮੈਰਿਕ ਅੱਖਰ ਅਤੇ ਹਾਈਫਨ ਦੀ ਆਗਿਆ ਹੈ।",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "ਕਮਾਂਡ ਸਤਰ ਵਿੱਚ ਸਿਰਫ਼ ਅਲਫ਼ਾਨਯੂਮੈਰਿਕ ਅੱਖਰ ਅਤੇ ਹਾਈਫਨ ਦੀ ਆਗਿਆ ਹੈ।",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "ਸਕਾਰਾਤਮਕ ਰਵੱਈਆ",
 	"Positive attitude": "ਸਕਾਰਾਤਮਕ ਰਵੱਈਆ",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "ਪਿਛਲੇ 30 ਦਿਨ",
 	"Previous 30 days": "ਪਿਛਲੇ 30 ਦਿਨ",
 	"Previous 7 days": "ਪਿਛਲੇ 7 ਦਿਨ",
 	"Previous 7 days": "ਪਿਛਲੇ 7 ਦਿਨ",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "ਜੋਰ ਨਾਲ ਪੜ੍ਹੋ",
 	"Read Aloud": "ਜੋਰ ਨਾਲ ਪੜ੍ਹੋ",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "ਆਵਾਜ਼ ਰਿਕਾਰਡ ਕਰੋ",
 	"Record voice": "ਆਵਾਜ਼ ਰਿਕਾਰਡ ਕਰੋ",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "ਹਟਾਓ",
 	"Remove": "ਹਟਾਓ",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "ਮਾਡਲ ਹਟਾਓ",
 	"Remove Model": "ਮਾਡਲ ਹਟਾਓ",
+	"Remove this tag from list": "",
 	"Rename": "ਨਾਮ ਬਦਲੋ",
 	"Rename": "ਨਾਮ ਬਦਲੋ",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "ਗੱਲਬਾਤ ਸਾਂਝੀ ਕਰੋ",
 	"Share Chat": "ਗੱਲਬਾਤ ਸਾਂਝੀ ਕਰੋ",
 	"Share to Open WebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਨਾਲ ਸਾਂਝਾ ਕਰੋ",
 	"Share to Open WebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਨਾਲ ਸਾਂਝਾ ਕਰੋ",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "ਦਿਖਾਓ",
 	"Show": "ਦਿਖਾਓ",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "ਬੋਲ ਪਛਾਣ ਗਲਤੀ: {{error}}",
 	"Speech recognition error: {{error}}": "ਬੋਲ ਪਛਾਣ ਗਲਤੀ: {{error}}",
 	"Speech-to-Text Engine": "ਬੋਲ-ਤੋਂ-ਪਾਠ ਇੰਜਣ",
 	"Speech-to-Text Engine": "ਬੋਲ-ਤੋਂ-ਪਾਠ ਇੰਜਣ",
 	"Stop": "",
 	"Stop": "",
+	"Stop Generating": "",
 	"Stop Sequence": "ਰੋਕੋ ਕ੍ਰਮ",
 	"Stop Sequence": "ਰੋਕੋ ਕ੍ਰਮ",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "ਸੈਟਿੰਗਾਂ ਟੌਗਲ ਕਰੋ",
 	"Toggle settings": "ਸੈਟਿੰਗਾਂ ਟੌਗਲ ਕਰੋ",
 	"Toggle sidebar": "ਸਾਈਡਬਾਰ ਟੌਗਲ ਕਰੋ",
 	"Toggle sidebar": "ਸਾਈਡਬਾਰ ਟੌਗਲ ਕਰੋ",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "",
 	"Tool created successfully": "",

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

@@ -591,6 +591,7 @@
 	"Features": "Funkcje",
 	"Features": "Funkcje",
 	"Features Permissions": "Uprawnienia do funkcji",
 	"Features Permissions": "Uprawnienia do funkcji",
 	"February": "Luty",
 	"February": "Luty",
+	"Feedback Details": "",
 	"Feedback History": "Historia ocen",
 	"Feedback History": "Historia ocen",
 	"Feedbacks": "Oceny",
 	"Feedbacks": "Oceny",
 	"Feel free to add specific details": "Nie krępuj się dodawać szczegółów",
 	"Feel free to add specific details": "Nie krępuj się dodawać szczegółów",
@@ -778,6 +779,7 @@
 	"Lost": "Przegrał",
 	"Lost": "Przegrał",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Opracowane przez społeczność Open WebUI",
 	"Made by Open WebUI Community": "Opracowane przez społeczność Open WebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Upewnij się, że są one zawarte w",
 	"Make sure to enclose them with": "Upewnij się, że są one zawarte w",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Upewnij się, że wyeksportowałeś plik workflow.json w formacie API z ComfyUI.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Upewnij się, że wyeksportowałeś plik workflow.json w formacie API z ComfyUI.",
 	"Manage": "Zarządzaj",
 	"Manage": "Zarządzaj",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Wersja Ollama",
 	"Ollama Version": "Wersja Ollama",
 	"On": "Włączone",
 	"On": "Włączone",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Dozwolone są tylko znaki alfanumeryczne i myślniki",
 	"Only alphanumeric characters and hyphens are allowed": "Dozwolone są tylko znaki alfanumeryczne i myślniki",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "W komendzie dozwolone są wyłącznie znaki alfanumeryczne i myślniki.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "W komendzie dozwolone są wyłącznie znaki alfanumeryczne i myślniki.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Tylko kolekcje można edytować, utwórz nową bazę wiedzy, aby edytować/dodawać dokumenty.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Tylko kolekcje można edytować, utwórz nową bazę wiedzy, aby edytować/dodawać dokumenty.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Pozytywne nastawienie",
 	"Positive attitude": "Pozytywne nastawienie",
 	"Prefix ID": "Identyfikator prefiksu",
 	"Prefix ID": "Identyfikator prefiksu",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID prefiksu jest używane do unikania konfliktów z innymi połączeniami poprzez dodanie prefiksu do ID modelu - pozostaw puste, aby wyłączyć",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID prefiksu jest używane do unikania konfliktów z innymi połączeniami poprzez dodanie prefiksu do ID modelu - pozostaw puste, aby wyłączyć",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Ostatnie 30 dni",
 	"Previous 30 days": "Ostatnie 30 dni",
 	"Previous 7 days": "Ostatnie 7 dni",
 	"Previous 7 days": "Ostatnie 7 dni",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Ponowny ranking modeli według podobieństwa tematycznego",
 	"Re-rank models by topic similarity": "Ponowny ranking modeli według podobieństwa tematycznego",
 	"Read": "Czytaj",
 	"Read": "Czytaj",
 	"Read Aloud": "Czytaj na głos",
 	"Read Aloud": "Czytaj na głos",
+	"Reason": "",
 	"Reasoning Effort": "Wysiłek rozumowania",
 	"Reasoning Effort": "Wysiłek rozumowania",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Nagraj swój głos",
 	"Record voice": "Nagraj swój głos",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Trafność",
 	"Relevance": "Trafność",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Usuń",
 	"Remove": "Usuń",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Usuń model",
 	"Remove Model": "Usuń model",
+	"Remove this tag from list": "",
 	"Rename": "Zmień nazwę",
 	"Rename": "Zmień nazwę",
 	"Reorder Models": "Przeorganizuj modele",
 	"Reorder Models": "Przeorganizuj modele",
 	"Reply in Thread": "Odpowiedz w wątku",
 	"Reply in Thread": "Odpowiedz w wątku",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Udostępnij rozmowę",
 	"Share Chat": "Udostępnij rozmowę",
 	"Share to Open WebUI Community": "Udostępnij w społeczności OpenWebUI",
 	"Share to Open WebUI Community": "Udostępnij w społeczności OpenWebUI",
 	"Sharing Permissions": "Uprawnienia udostępniania",
 	"Sharing Permissions": "Uprawnienia udostępniania",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Wyświetl",
 	"Show": "Wyświetl",
 	"Show \"What's New\" modal on login": "Wyświetl okno dialogowe \"What's New\" podczas logowania",
 	"Show \"What's New\" modal on login": "Wyświetl okno dialogowe \"What's New\" podczas logowania",
 	"Show Admin Details in Account Pending Overlay": "Wyświetl szczegóły administratora w okienu informacyjnym o potrzebie zatwierdzenia przez administratora konta użytkownika",
 	"Show Admin Details in Account Pending Overlay": "Wyświetl szczegóły administratora w okienu informacyjnym o potrzebie zatwierdzenia przez administratora konta użytkownika",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Błąd rozpoznawania mowy: {{error}}",
 	"Speech recognition error: {{error}}": "Błąd rozpoznawania mowy: {{error}}",
 	"Speech-to-Text Engine": "Silnik konwersji mowy na tekst",
 	"Speech-to-Text Engine": "Silnik konwersji mowy na tekst",
 	"Stop": "Zatrzymaj",
 	"Stop": "Zatrzymaj",
+	"Stop Generating": "",
 	"Stop Sequence": "Zatrzymaj sekwencję",
 	"Stop Sequence": "Zatrzymaj sekwencję",
 	"Stream Chat Response": "Strumieniowanie odpowiedzi z czatu",
 	"Stream Chat Response": "Strumieniowanie odpowiedzi z czatu",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Przełącz opcje",
 	"Toggle settings": "Przełącz opcje",
 	"Toggle sidebar": "Przełącz pasek boczny",
 	"Toggle sidebar": "Przełącz pasek boczny",
+	"Toggle whether current connection is active.": "",
 	"Token": "Token",
 	"Token": "Token",
 	"Too verbose": "Zbyt rozwlekłe",
 	"Too verbose": "Zbyt rozwlekłe",
 	"Tool created successfully": "Narzędzie utworzone pomyślnie",
 	"Tool created successfully": "Narzędzie utworzone pomyślnie",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "Fevereiro",
 	"February": "Fevereiro",
+	"Feedback Details": "",
 	"Feedback History": "Histórico de comentários",
 	"Feedback History": "Histórico de comentários",
 	"Feedbacks": "Comentários",
 	"Feedbacks": "Comentários",
 	"Feel free to add specific details": "Sinta-se à vontade para adicionar detalhes específicos",
 	"Feel free to add specific details": "Sinta-se à vontade para adicionar detalhes específicos",
@@ -778,6 +779,7 @@
 	"Lost": "Perdeu",
 	"Lost": "Perdeu",
 	"LTR": "Esquerda para Direita",
 	"LTR": "Esquerda para Direita",
 	"Made by Open WebUI Community": "Feito pela Comunidade OpenWebUI",
 	"Made by Open WebUI Community": "Feito pela Comunidade OpenWebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Certifique-se de encerrá-los com",
 	"Make sure to enclose them with": "Certifique-se de encerrá-los com",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Certifique-se de exportar um arquivo workflow.json como o formato API do ComfyUI.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Certifique-se de exportar um arquivo workflow.json como o formato API do ComfyUI.",
 	"Manage": "Gerenciar",
 	"Manage": "Gerenciar",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Versão Ollama",
 	"Ollama Version": "Versão Ollama",
 	"On": "Ligado",
 	"On": "Ligado",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Somente caracteres alfanuméricos e hífens são permitidos",
 	"Only alphanumeric characters and hyphens are allowed": "Somente caracteres alfanuméricos e hífens são permitidos",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Apenas caracteres alfanuméricos e hífens são permitidos na string de comando.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Apenas caracteres alfanuméricos e hífens são permitidos na string de comando.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Somente coleções podem ser editadas. Crie uma nova base de conhecimento para editar/adicionar documentos.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Somente coleções podem ser editadas. Crie uma nova base de conhecimento para editar/adicionar documentos.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Atitude positiva",
 	"Positive attitude": "Atitude positiva",
 	"Prefix ID": "Prefixo ID",
 	"Prefix ID": "Prefixo ID",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "O ID de prefixo é utilizado para evitar conflitos com outras conexões, adicionando um prefixo aos IDs dos modelos - deixe em branco para desativar.",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "O ID de prefixo é utilizado para evitar conflitos com outras conexões, adicionando um prefixo aos IDs dos modelos - deixe em branco para desativar.",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Últimos 30 dias",
 	"Previous 30 days": "Últimos 30 dias",
 	"Previous 7 days": "Últimos 7 dias",
 	"Previous 7 days": "Últimos 7 dias",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Reclassificação de modelos por similaridade de tópico",
 	"Re-rank models by topic similarity": "Reclassificação de modelos por similaridade de tópico",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "Ler em Voz Alta",
 	"Read Aloud": "Ler em Voz Alta",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Gravar voz",
 	"Record voice": "Gravar voz",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Relevância",
 	"Relevance": "Relevância",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Remover",
 	"Remove": "Remover",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Remover Modelo",
 	"Remove Model": "Remover Modelo",
+	"Remove this tag from list": "",
 	"Rename": "Renomear",
 	"Rename": "Renomear",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Compartilhar Chat",
 	"Share Chat": "Compartilhar Chat",
 	"Share to Open WebUI Community": "Compartilhar com a Comunidade OpenWebUI",
 	"Share to Open WebUI Community": "Compartilhar com a Comunidade OpenWebUI",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Mostrar",
 	"Show": "Mostrar",
 	"Show \"What's New\" modal on login": "Mostrar \"O que há de Novo\" no login",
 	"Show \"What's New\" modal on login": "Mostrar \"O que há de Novo\" no login",
 	"Show Admin Details in Account Pending Overlay": "Mostrar Detalhes do Administrador na Sobreposição de Conta Pendentes",
 	"Show Admin Details in Account Pending Overlay": "Mostrar Detalhes do Administrador na Sobreposição de Conta Pendentes",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}",
 	"Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}",
 	"Speech-to-Text Engine": "Motor de Transcrição de Fala",
 	"Speech-to-Text Engine": "Motor de Transcrição de Fala",
 	"Stop": "Parar",
 	"Stop": "Parar",
+	"Stop Generating": "",
 	"Stop Sequence": "Sequência de Parada",
 	"Stop Sequence": "Sequência de Parada",
 	"Stream Chat Response": "Stream Resposta do Chat",
 	"Stream Chat Response": "Stream Resposta do Chat",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Alternar configurações",
 	"Toggle settings": "Alternar configurações",
 	"Toggle sidebar": "Alternar barra lateral",
 	"Toggle sidebar": "Alternar barra lateral",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "Muito detalhado",
 	"Too verbose": "Muito detalhado",
 	"Tool created successfully": "Ferramenta criada com sucesso",
 	"Tool created successfully": "Ferramenta criada com sucesso",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "Fevereiro",
 	"February": "Fevereiro",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "Sinta-se à vontade para adicionar detalhes específicos",
 	"Feel free to add specific details": "Sinta-se à vontade para adicionar detalhes específicos",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Feito pela Comunidade OpenWebUI",
 	"Made by Open WebUI Community": "Feito pela Comunidade OpenWebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Certifique-se de colocá-los entre",
 	"Make sure to enclose them with": "Certifique-se de colocá-los entre",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "Gerir",
 	"Manage": "Gerir",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Versão do Ollama",
 	"Ollama Version": "Versão do Ollama",
 	"On": "Ligado",
 	"On": "Ligado",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Apenas caracteres alfanuméricos e hífens são permitidos na string de comando.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Apenas caracteres alfanuméricos e hífens são permitidos na string de comando.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Atitude Positiva",
 	"Positive attitude": "Atitude Positiva",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Últimos 30 dias",
 	"Previous 30 days": "Últimos 30 dias",
 	"Previous 7 days": "Últimos 7 dias",
 	"Previous 7 days": "Últimos 7 dias",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "Ler em Voz Alta",
 	"Read Aloud": "Ler em Voz Alta",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Gravar voz",
 	"Record voice": "Gravar voz",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Remover",
 	"Remove": "Remover",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Remover Modelo",
 	"Remove Model": "Remover Modelo",
+	"Remove this tag from list": "",
 	"Rename": "Renomear",
 	"Rename": "Renomear",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Partilhar Conversa",
 	"Share Chat": "Partilhar Conversa",
 	"Share to Open WebUI Community": "Partilhar com a Comunidade OpenWebUI",
 	"Share to Open WebUI Community": "Partilhar com a Comunidade OpenWebUI",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Mostrar",
 	"Show": "Mostrar",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Mostrar Detalhes do Administrador na sobreposição de Conta Pendente",
 	"Show Admin Details in Account Pending Overlay": "Mostrar Detalhes do Administrador na sobreposição de Conta Pendente",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}",
 	"Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}",
 	"Speech-to-Text Engine": "Motor de Fala para Texto",
 	"Speech-to-Text Engine": "Motor de Fala para Texto",
 	"Stop": "",
 	"Stop": "",
+	"Stop Generating": "",
 	"Stop Sequence": "Sequência de Paragem",
 	"Stop Sequence": "Sequência de Paragem",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Alternar configurações",
 	"Toggle settings": "Alternar configurações",
 	"Toggle sidebar": "Alternar barra lateral",
 	"Toggle sidebar": "Alternar barra lateral",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "",
 	"Tool created successfully": "",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "Februarie",
 	"February": "Februarie",
+	"Feedback Details": "",
 	"Feedback History": "Istoricul feedback-ului",
 	"Feedback History": "Istoricul feedback-ului",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "Adăugați detalii specifice fără nicio ezitare",
 	"Feel free to add specific details": "Adăugați detalii specifice fără nicio ezitare",
@@ -778,6 +779,7 @@
 	"Lost": "Pierdut",
 	"Lost": "Pierdut",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Realizat de Comunitatea OpenWebUI",
 	"Made by Open WebUI Community": "Realizat de Comunitatea OpenWebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Asigurați-vă că le închideți cu",
 	"Make sure to enclose them with": "Asigurați-vă că le închideți cu",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Asigură-te că exporți un fișier {{workflow.json}} în format API din {{ComfyUI}}.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Asigură-te că exporți un fișier {{workflow.json}} în format API din {{ComfyUI}}.",
 	"Manage": "Gestionează",
 	"Manage": "Gestionează",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Versiune Ollama",
 	"Ollama Version": "Versiune Ollama",
 	"On": "Activat",
 	"On": "Activat",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Doar caracterele alfanumerice și cratimele sunt permise în șirul de comandă.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Doar caracterele alfanumerice și cratimele sunt permise în șirul de comandă.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Doar colecțiile pot fi editate, creați o nouă bază de cunoștințe pentru a edita/adăuga documente.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Doar colecțiile pot fi editate, creați o nouă bază de cunoștințe pentru a edita/adăuga documente.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Atitudine pozitivă",
 	"Positive attitude": "Atitudine pozitivă",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Ultimele 30 de zile",
 	"Previous 30 days": "Ultimele 30 de zile",
 	"Previous 7 days": "Ultimele 7 zile",
 	"Previous 7 days": "Ultimele 7 zile",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Reordonează modelele în funcție de similaritatea tematică",
 	"Re-rank models by topic similarity": "Reordonează modelele în funcție de similaritatea tematică",
 	"Read": "Citește",
 	"Read": "Citește",
 	"Read Aloud": "Citește cu Voce Tare",
 	"Read Aloud": "Citește cu Voce Tare",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Înregistrează vocea",
 	"Record voice": "Înregistrează vocea",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Relevanță",
 	"Relevance": "Relevanță",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Înlătură",
 	"Remove": "Înlătură",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Înlătură Modelul",
 	"Remove Model": "Înlătură Modelul",
+	"Remove this tag from list": "",
 	"Rename": "Redenumește",
 	"Rename": "Redenumește",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Partajează Conversația",
 	"Share Chat": "Partajează Conversația",
 	"Share to Open WebUI Community": "Partajează cu Comunitatea OpenWebUI",
 	"Share to Open WebUI Community": "Partajează cu Comunitatea OpenWebUI",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Afișează",
 	"Show": "Afișează",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Afișează Detaliile Administratorului în Suprapunerea Contului În Așteptare",
 	"Show Admin Details in Account Pending Overlay": "Afișează Detaliile Administratorului în Suprapunerea Contului În Așteptare",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Eroare de recunoaștere vocală: {{error}}",
 	"Speech recognition error: {{error}}": "Eroare de recunoaștere vocală: {{error}}",
 	"Speech-to-Text Engine": "Motor de Conversie a Vocii în Text",
 	"Speech-to-Text Engine": "Motor de Conversie a Vocii în Text",
 	"Stop": "Oprire",
 	"Stop": "Oprire",
+	"Stop Generating": "",
 	"Stop Sequence": "Oprește Secvența",
 	"Stop Sequence": "Oprește Secvența",
 	"Stream Chat Response": "Răspuns Stream Chat",
 	"Stream Chat Response": "Răspuns Stream Chat",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Comută setările",
 	"Toggle settings": "Comută setările",
 	"Toggle sidebar": "Comută bara laterală",
 	"Toggle sidebar": "Comută bara laterală",
+	"Toggle whether current connection is active.": "",
 	"Token": "Token",
 	"Token": "Token",
 	"Too verbose": "Prea detaliat",
 	"Too verbose": "Prea detaliat",
 	"Tool created successfully": "Instrumentul a fost creat cu succes",
 	"Tool created successfully": "Instrumentul a fost creat cu succes",

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

@@ -591,6 +591,7 @@
 	"Features": "Функции",
 	"Features": "Функции",
 	"Features Permissions": "Разрешения для функций",
 	"Features Permissions": "Разрешения для функций",
 	"February": "Февраль",
 	"February": "Февраль",
+	"Feedback Details": "",
 	"Feedback History": "История отзывов",
 	"Feedback History": "История отзывов",
 	"Feedbacks": "Отзывы",
 	"Feedbacks": "Отзывы",
 	"Feel free to add specific details": "Не стесняйтесь добавлять конкретные детали",
 	"Feel free to add specific details": "Не стесняйтесь добавлять конкретные детали",
@@ -778,6 +779,7 @@
 	"Lost": "Поражение",
 	"Lost": "Поражение",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Сделано сообществом OpenWebUI",
 	"Made by Open WebUI Community": "Сделано сообществом OpenWebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Убедитесь, что они заключены в",
 	"Make sure to enclose them with": "Убедитесь, что они заключены в",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Убедитесь, что экспортируете файл workflow.json в формате API из ComfyUI.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Убедитесь, что экспортируете файл workflow.json в формате API из ComfyUI.",
 	"Manage": "Управление",
 	"Manage": "Управление",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Версия Ollama",
 	"Ollama Version": "Версия Ollama",
 	"On": "Включено",
 	"On": "Включено",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Разрешены только буквенно-цифровые символы и дефисы.",
 	"Only alphanumeric characters and hyphens are allowed": "Разрешены только буквенно-цифровые символы и дефисы.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "В строке команды разрешено использовать только буквенно-цифровые символы и дефисы.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "В строке команды разрешено использовать только буквенно-цифровые символы и дефисы.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Редактировать можно только коллекции, создайте новую базу знаний для редактирования/добавления документов.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Редактировать можно только коллекции, создайте новую базу знаний для редактирования/добавления документов.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Позитивный настрой",
 	"Positive attitude": "Позитивный настрой",
 	"Prefix ID": "ID префикса",
 	"Prefix ID": "ID префикса",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID префикса используется для предотвращения конфликтов с другими подключениями путем добавления префикса к идентификаторам моделей - оставьте пустым, чтобы отключить",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID префикса используется для предотвращения конфликтов с другими подключениями путем добавления префикса к идентификаторам моделей - оставьте пустым, чтобы отключить",
+	"Prevent file creation": "",
 	"Preview": "Предпросмотр",
 	"Preview": "Предпросмотр",
 	"Previous 30 days": "Предыдущие 30 дней",
 	"Previous 30 days": "Предыдущие 30 дней",
 	"Previous 7 days": "Предыдущие 7 дней",
 	"Previous 7 days": "Предыдущие 7 дней",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Повторное ранжирование моделей по сходству тем",
 	"Re-rank models by topic similarity": "Повторное ранжирование моделей по сходству тем",
 	"Read": "Прочитать",
 	"Read": "Прочитать",
 	"Read Aloud": "Прочитать вслух",
 	"Read Aloud": "Прочитать вслух",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "Запись",
 	"Record": "Запись",
 	"Record voice": "Записать голос",
 	"Record voice": "Записать голос",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Релевантность",
 	"Relevance": "Релевантность",
 	"Relevance Threshold": "Порог релевантности",
 	"Relevance Threshold": "Порог релевантности",
 	"Remove": "Удалить",
 	"Remove": "Удалить",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Удалить модель",
 	"Remove Model": "Удалить модель",
+	"Remove this tag from list": "",
 	"Rename": "Переименовать",
 	"Rename": "Переименовать",
 	"Reorder Models": "Изменение порядка моделей",
 	"Reorder Models": "Изменение порядка моделей",
 	"Reply in Thread": "Ответить в обсуждении",
 	"Reply in Thread": "Ответить в обсуждении",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Поделиться чатом",
 	"Share Chat": "Поделиться чатом",
 	"Share to Open WebUI Community": "Поделиться с сообществом OpenWebUI",
 	"Share to Open WebUI Community": "Поделиться с сообществом OpenWebUI",
 	"Sharing Permissions": "Разрешения на общий доступ",
 	"Sharing Permissions": "Разрешения на общий доступ",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Показать",
 	"Show": "Показать",
 	"Show \"What's New\" modal on login": "Показывать окно «Что нового» при входе в систему",
 	"Show \"What's New\" modal on login": "Показывать окно «Что нового» при входе в систему",
 	"Show Admin Details in Account Pending Overlay": "Показывать данные администратора в оверлее ожидающей учетной записи",
 	"Show Admin Details in Account Pending Overlay": "Показывать данные администратора в оверлее ожидающей учетной записи",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Ошибка распознавания речи: {{error}}",
 	"Speech recognition error: {{error}}": "Ошибка распознавания речи: {{error}}",
 	"Speech-to-Text Engine": "Система распознавания речи",
 	"Speech-to-Text Engine": "Система распознавания речи",
 	"Stop": "Остановить",
 	"Stop": "Остановить",
+	"Stop Generating": "",
 	"Stop Sequence": "",
 	"Stop Sequence": "",
 	"Stream Chat Response": "Потоковый вывод ответа",
 	"Stream Chat Response": "Потоковый вывод ответа",
 	"Strip Existing OCR": "Удалять существующие OCR",
 	"Strip Existing OCR": "Удалять существующие OCR",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "Переключить поиск",
 	"Toggle search": "Переключить поиск",
 	"Toggle settings": "Переключить настройки",
 	"Toggle settings": "Переключить настройки",
 	"Toggle sidebar": "Переключить боковую панель",
 	"Toggle sidebar": "Переключить боковую панель",
+	"Toggle whether current connection is active.": "",
 	"Token": "Токен",
 	"Token": "Токен",
 	"Too verbose": "Слишком многословно",
 	"Too verbose": "Слишком многословно",
 	"Tool created successfully": "Инструмент успешно создан",
 	"Tool created successfully": "Инструмент успешно создан",

+ 11 - 0
src/lib/i18n/locales/sk-SK/translation.json

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "Február",
 	"February": "Február",
+	"Feedback Details": "",
 	"Feedback History": "História spätnej väzby",
 	"Feedback History": "História spätnej väzby",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "Neváhajte pridať konkrétne detaily.",
 	"Feel free to add specific details": "Neváhajte pridať konkrétne detaily.",
@@ -778,6 +779,7 @@
 	"Lost": "Stratený",
 	"Lost": "Stratený",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Vytvorené komunitou OpenWebUI",
 	"Made by Open WebUI Community": "Vytvorené komunitou OpenWebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Uistite sa, že sú uzavreté pomocou",
 	"Make sure to enclose them with": "Uistite sa, že sú uzavreté pomocou",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Uistite sa, že exportujete súbor workflow.json vo formáte API z ComfyUI.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Uistite sa, že exportujete súbor workflow.json vo formáte API z ComfyUI.",
 	"Manage": "Spravovať",
 	"Manage": "Spravovať",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Verzia Ollama",
 	"Ollama Version": "Verzia Ollama",
 	"On": "Zapnuté",
 	"On": "Zapnuté",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Príkazový reťazec môže obsahovať iba alfanumerické znaky a pomlčky.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Príkazový reťazec môže obsahovať iba alfanumerické znaky a pomlčky.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Iba kolekcie môžu byť upravované, na úpravu/pridanie dokumentov vytvorte novú znalostnú databázu.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Iba kolekcie môžu byť upravované, na úpravu/pridanie dokumentov vytvorte novú znalostnú databázu.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Pozitívny prístup",
 	"Positive attitude": "Pozitívny prístup",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Predchádzajúcich 30 dní",
 	"Previous 30 days": "Predchádzajúcich 30 dní",
 	"Previous 7 days": "Predchádzajúcich 7 dní",
 	"Previous 7 days": "Predchádzajúcich 7 dní",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Znova zoradiť modely podľa podobnosti tém.",
 	"Re-rank models by topic similarity": "Znova zoradiť modely podľa podobnosti tém.",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "Čítať nahlas",
 	"Read Aloud": "Čítať nahlas",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Nahrať hlas",
 	"Record voice": "Nahrať hlas",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Relevancia",
 	"Relevance": "Relevancia",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Odstrániť",
 	"Remove": "Odstrániť",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Odstrániť model",
 	"Remove Model": "Odstrániť model",
+	"Remove this tag from list": "",
 	"Rename": "Premenovať",
 	"Rename": "Premenovať",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Zdieľať chat",
 	"Share Chat": "Zdieľať chat",
 	"Share to Open WebUI Community": "Zdieľať s komunitou OpenWebUI",
 	"Share to Open WebUI Community": "Zdieľať s komunitou OpenWebUI",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Zobraziť",
 	"Show": "Zobraziť",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Zobraziť podrobnosti administrátora v prekryvnom okne s čakajúcim účtom",
 	"Show Admin Details in Account Pending Overlay": "Zobraziť podrobnosti administrátora v prekryvnom okne s čakajúcim účtom",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Chyba rozpoznávania reči: {{error}}",
 	"Speech recognition error: {{error}}": "Chyba rozpoznávania reči: {{error}}",
 	"Speech-to-Text Engine": "Motor prevodu reči na text",
 	"Speech-to-Text Engine": "Motor prevodu reči na text",
 	"Stop": "Zastaviť",
 	"Stop": "Zastaviť",
+	"Stop Generating": "",
 	"Stop Sequence": "Sekvencia zastavenia",
 	"Stop Sequence": "Sekvencia zastavenia",
 	"Stream Chat Response": "Odozva chatu Stream",
 	"Stream Chat Response": "Odozva chatu Stream",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Prepnúť nastavenia",
 	"Toggle settings": "Prepnúť nastavenia",
 	"Toggle sidebar": "Prepnúť bočný panel",
 	"Toggle sidebar": "Prepnúť bočný panel",
+	"Toggle whether current connection is active.": "",
 	"Token": "Token",
 	"Token": "Token",
 	"Too verbose": "Príliš rozvláčne",
 	"Too verbose": "Príliš rozvláčne",
 	"Tool created successfully": "Nástroj bol úspešne vytvorený.",
 	"Tool created successfully": "Nástroj bol úspešne vytvorený.",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "Фебруар",
 	"February": "Фебруар",
+	"Feedback Details": "",
 	"Feedback History": "Историјат повратних података",
 	"Feedback History": "Историјат повратних података",
 	"Feedbacks": "Повратни подаци",
 	"Feedbacks": "Повратни подаци",
 	"Feel free to add specific details": "Слободно додајте специфичне детаље",
 	"Feel free to add specific details": "Слободно додајте специфичне детаље",
@@ -778,6 +779,7 @@
 	"Lost": "Пораза",
 	"Lost": "Пораза",
 	"LTR": "ЛНД",
 	"LTR": "ЛНД",
 	"Made by Open WebUI Community": "Израдила OpenWebUI заједница",
 	"Made by Open WebUI Community": "Израдила OpenWebUI заједница",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Уверите се да их затворите са",
 	"Make sure to enclose them with": "Уверите се да их затворите са",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "Управљај",
 	"Manage": "Управљај",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Издање Ollama-е",
 	"Ollama Version": "Издање Ollama-е",
 	"On": "Укључено",
 	"On": "Укључено",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Само алфанумерички знакови и цртице су дозвољени у низу наредби.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Само алфанумерички знакови и цртице су дозвољени у низу наредби.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Позитиван став",
 	"Positive attitude": "Позитиван став",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Претходних 30 дана",
 	"Previous 30 days": "Претходних 30 дана",
 	"Previous 7 days": "Претходних 7 дана",
 	"Previous 7 days": "Претходних 7 дана",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "Читање",
 	"Read": "Читање",
 	"Read Aloud": "Прочитај наглас",
 	"Read Aloud": "Прочитај наглас",
+	"Reason": "",
 	"Reasoning Effort": "Јачина размишљања",
 	"Reasoning Effort": "Јачина размишљања",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Сними глас",
 	"Record voice": "Сними глас",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Примењивост",
 	"Relevance": "Примењивост",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Уклони",
 	"Remove": "Уклони",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Уклони модел",
 	"Remove Model": "Уклони модел",
+	"Remove this tag from list": "",
 	"Rename": "Преименуј",
 	"Rename": "Преименуј",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Подели ћаскање",
 	"Share Chat": "Подели ћаскање",
 	"Share to Open WebUI Community": "Подели са OpenWebUI заједницом",
 	"Share to Open WebUI Community": "Подели са OpenWebUI заједницом",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Прикажи",
 	"Show": "Прикажи",
 	"Show \"What's New\" modal on login": "Прикажи \"Погледај шта је ново\" прозорче при пријави",
 	"Show \"What's New\" modal on login": "Прикажи \"Погледај шта је ново\" прозорче при пријави",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Грешка у препознавању говора: {{error}}",
 	"Speech recognition error: {{error}}": "Грешка у препознавању говора: {{error}}",
 	"Speech-to-Text Engine": "Мотор за говор у текст",
 	"Speech-to-Text Engine": "Мотор за говор у текст",
 	"Stop": "Заустави",
 	"Stop": "Заустави",
+	"Stop Generating": "",
 	"Stop Sequence": "Секвенца заустављања",
 	"Stop Sequence": "Секвенца заустављања",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Пребаци подешавања",
 	"Toggle settings": "Пребаци подешавања",
 	"Toggle sidebar": "Пребаци бочну траку",
 	"Toggle sidebar": "Пребаци бочну траку",
+	"Toggle whether current connection is active.": "",
 	"Token": "Жетон",
 	"Token": "Жетон",
 	"Too verbose": "Преопширно",
 	"Too verbose": "Преопширно",
 	"Tool created successfully": "Алат направљен успешно",
 	"Tool created successfully": "Алат направљен успешно",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "februari",
 	"February": "februari",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "Tveka inte att lägga till specifika detaljer",
 	"Feel free to add specific details": "Tveka inte att lägga till specifika detaljer",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Skapad av OpenWebUI Community",
 	"Made by Open WebUI Community": "Skapad av OpenWebUI Community",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Se till att bifoga dem med",
 	"Make sure to enclose them with": "Se till att bifoga dem med",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "Hantera",
 	"Manage": "Hantera",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama-version",
 	"Ollama Version": "Ollama-version",
 	"On": "På",
 	"On": "På",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Endast alfanumeriska tecken och bindestreck är tillåtna i kommandosträngen.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Endast alfanumeriska tecken och bindestreck är tillåtna i kommandosträngen.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Positivt inställning",
 	"Positive attitude": "Positivt inställning",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Föregående 30 dagar",
 	"Previous 30 days": "Föregående 30 dagar",
 	"Previous 7 days": "Föregående 7 dagar",
 	"Previous 7 days": "Föregående 7 dagar",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "Läs igenom",
 	"Read Aloud": "Läs igenom",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Spela in röst",
 	"Record voice": "Spela in röst",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Ta bort",
 	"Remove": "Ta bort",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Ta bort modell",
 	"Remove Model": "Ta bort modell",
+	"Remove this tag from list": "",
 	"Rename": "Byt namn",
 	"Rename": "Byt namn",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Dela chatt",
 	"Share Chat": "Dela chatt",
 	"Share to Open WebUI Community": "Dela till OpenWebUI Community",
 	"Share to Open WebUI Community": "Dela till OpenWebUI Community",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Visa",
 	"Show": "Visa",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "Visa administratörsinformation till väntande konton",
 	"Show Admin Details in Account Pending Overlay": "Visa administratörsinformation till väntande konton",
@@ -1157,6 +1166,7 @@
 	"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",
 	"Stop": "Stopp",
 	"Stop": "Stopp",
+	"Stop Generating": "",
 	"Stop Sequence": "Stoppsekvens",
 	"Stop Sequence": "Stoppsekvens",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Växla inställningar",
 	"Toggle settings": "Växla inställningar",
 	"Toggle sidebar": "Växla sidofält",
 	"Toggle sidebar": "Växla sidofält",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "Verktyget skapades framgångsrikt",
 	"Tool created successfully": "Verktyget skapades framgångsrikt",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "กุมภาพันธ์",
 	"February": "กุมภาพันธ์",
+	"Feedback Details": "",
 	"Feedback History": "ประวัติการการตอบรับ",
 	"Feedback History": "ประวัติการการตอบรับ",
 	"Feedbacks": "การตอบรับ",
 	"Feedbacks": "การตอบรับ",
 	"Feel free to add specific details": "สามารถเพิ่มรายละเอียดเฉพาะได้",
 	"Feel free to add specific details": "สามารถเพิ่มรายละเอียดเฉพาะได้",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "สร้างโดยชุมชน OpenWebUI",
 	"Made by Open WebUI Community": "สร้างโดยชุมชน OpenWebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "",
 	"Make sure to enclose them with": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "จัดการ",
 	"Manage": "จัดการ",
@@ -899,6 +901,8 @@
 	"Ollama Version": "เวอร์ชั่น Ollama",
 	"Ollama Version": "เวอร์ชั่น Ollama",
 	"On": "เปิด",
 	"On": "เปิด",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "อนุญาตให้ใช้เฉพาะอักขระตัวอักษรและตัวเลข รวมถึงเครื่องหมายขีดกลางในสตริงคำสั่งเท่านั้น",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "อนุญาตให้ใช้เฉพาะอักขระตัวอักษรและตัวเลข รวมถึงเครื่องหมายขีดกลางในสตริงคำสั่งเท่านั้น",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "ทัศนคติด้านบวก",
 	"Positive attitude": "ทัศนคติด้านบวก",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "30 วันที่ผ่านมา",
 	"Previous 30 days": "30 วันที่ผ่านมา",
 	"Previous 7 days": "7 วันที่ผ่านมา",
 	"Previous 7 days": "7 วันที่ผ่านมา",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "อ่านออกเสียง",
 	"Read Aloud": "อ่านออกเสียง",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "บันทึกเสียง",
 	"Record voice": "บันทึกเสียง",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "ลบ",
 	"Remove": "ลบ",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "ลบโมเดล",
 	"Remove Model": "ลบโมเดล",
+	"Remove this tag from list": "",
 	"Rename": "เปลี่ยนชื่อ",
 	"Rename": "เปลี่ยนชื่อ",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "แชร์แชท",
 	"Share Chat": "แชร์แชท",
 	"Share to Open WebUI Community": "แชร์ไปยังชุมชน OpenWebUI",
 	"Share to Open WebUI Community": "แชร์ไปยังชุมชน OpenWebUI",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "แสดง",
 	"Show": "แสดง",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "แสดงรายละเอียดผู้ดูแลระบบในหน้าจอรอการอนุมัติบัญชี",
 	"Show Admin Details in Account Pending Overlay": "แสดงรายละเอียดผู้ดูแลระบบในหน้าจอรอการอนุมัติบัญชี",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "ข้อผิดพลาดในการรู้จำเสียง: {{error}}",
 	"Speech recognition error: {{error}}": "ข้อผิดพลาดในการรู้จำเสียง: {{error}}",
 	"Speech-to-Text Engine": "เครื่องมือแปลงเสียงเป็นข้อความ",
 	"Speech-to-Text Engine": "เครื่องมือแปลงเสียงเป็นข้อความ",
 	"Stop": "",
 	"Stop": "",
+	"Stop Generating": "",
 	"Stop Sequence": "หยุดลำดับ",
 	"Stop Sequence": "หยุดลำดับ",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "สลับการตั้งค่า",
 	"Toggle settings": "สลับการตั้งค่า",
 	"Toggle sidebar": "สลับแถบด้านข้าง",
 	"Toggle sidebar": "สลับแถบด้านข้าง",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "สร้างเครื่องมือเรียบร้อยแล้ว",
 	"Tool created successfully": "สร้างเครื่องมือเรียบร้อยแล้ว",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "",
 	"February": "",
+	"Feedback Details": "",
 	"Feedback History": "",
 	"Feedback History": "",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "",
 	"Feel free to add specific details": "",
@@ -778,6 +779,7 @@
 	"Lost": "",
 	"Lost": "",
 	"LTR": "",
 	"LTR": "",
 	"Made by Open WebUI Community": "",
 	"Made by Open WebUI Community": "",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "",
 	"Make sure to enclose them with": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "",
 	"Manage": "",
 	"Manage": "",
@@ -899,6 +901,8 @@
 	"Ollama Version": "",
 	"Ollama Version": "",
 	"On": "",
 	"On": "",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
@@ -979,6 +983,7 @@
 	"Positive attitude": "",
 	"Positive attitude": "",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "",
 	"Previous 30 days": "",
 	"Previous 7 days": "",
 	"Previous 7 days": "",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "",
 	"Re-rank models by topic similarity": "",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "",
 	"Read Aloud": "",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "",
 	"Record voice": "",
@@ -1020,7 +1026,9 @@
 	"Relevance": "",
 	"Relevance": "",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "",
 	"Remove": "",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "",
 	"Remove Model": "",
+	"Remove this tag from list": "",
 	"Rename": "",
 	"Rename": "",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "",
 	"Share Chat": "",
 	"Share to Open WebUI Community": "",
 	"Share to Open WebUI Community": "",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "",
 	"Show": "",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "",
 	"Show Admin Details in Account Pending Overlay": "",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "",
 	"Speech recognition error: {{error}}": "",
 	"Speech-to-Text Engine": "",
 	"Speech-to-Text Engine": "",
 	"Stop": "",
 	"Stop": "",
+	"Stop Generating": "",
 	"Stop Sequence": "",
 	"Stop Sequence": "",
 	"Stream Chat Response": "",
 	"Stream Chat Response": "",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "",
 	"Toggle settings": "",
 	"Toggle sidebar": "",
 	"Toggle sidebar": "",
+	"Toggle whether current connection is active.": "",
 	"Token": "",
 	"Token": "",
 	"Too verbose": "",
 	"Too verbose": "",
 	"Tool created successfully": "",
 	"Tool created successfully": "",

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

@@ -591,6 +591,7 @@
 	"Features": "Özellikler",
 	"Features": "Özellikler",
 	"Features Permissions": "Özellik Yetkileri",
 	"Features Permissions": "Özellik Yetkileri",
 	"February": "Şubat",
 	"February": "Şubat",
+	"Feedback Details": "",
 	"Feedback History": "Geri Bildirim Geçmişi",
 	"Feedback History": "Geri Bildirim Geçmişi",
 	"Feedbacks": "Geri Bildirimler",
 	"Feedbacks": "Geri Bildirimler",
 	"Feel free to add specific details": "Spesifik ayrıntılar eklemekten çekinmeyin",
 	"Feel free to add specific details": "Spesifik ayrıntılar eklemekten çekinmeyin",
@@ -778,6 +779,7 @@
 	"Lost": "Kayıp",
 	"Lost": "Kayıp",
 	"LTR": "Soldan Sağa",
 	"LTR": "Soldan Sağa",
 	"Made by Open WebUI Community": "OpenWebUI Topluluğu tarafından yapılmıştır",
 	"Made by Open WebUI Community": "OpenWebUI Topluluğu tarafından yapılmıştır",
+	"Make password visible in the user interface": "",
 	"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:",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "ComfyUI'dan API formatında bir workflow.json dosyası olarak dışa aktardığınızdan emin olun.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "ComfyUI'dan API formatında bir workflow.json dosyası olarak dışa aktardığınızdan emin olun.",
 	"Manage": "Yönet",
 	"Manage": "Yönet",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama Sürümü",
 	"Ollama Version": "Ollama Sürümü",
 	"On": "Açık",
 	"On": "Açık",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Yalnızca alfasayısal karakterler ve tireler kabul edilir",
 	"Only alphanumeric characters and hyphens are allowed": "Yalnızca alfasayısal karakterler ve tireler kabul edilir",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Komut dizisinde yalnızca alfasayısal karakterler ve tireler kabul edilir.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Komut dizisinde yalnızca alfasayısal karakterler ve tireler kabul edilir.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Yalnızca koleksiyonlar düzenlenebilir, belgeleri düzenlemek/eklemek için yeni bir bilgi tabanı oluşturun.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Yalnızca koleksiyonlar düzenlenebilir, belgeleri düzenlemek/eklemek için yeni bir bilgi tabanı oluşturun.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Olumlu yaklaşım",
 	"Positive attitude": "Olumlu yaklaşım",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Önceki 30 gün",
 	"Previous 30 days": "Önceki 30 gün",
 	"Previous 7 days": "Önceki 7 gün",
 	"Previous 7 days": "Önceki 7 gün",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Konu benzerliğine göre modelleri yeniden sırala",
 	"Re-rank models by topic similarity": "Konu benzerliğine göre modelleri yeniden sırala",
 	"Read": "Oku",
 	"Read": "Oku",
 	"Read Aloud": "Sesli Oku",
 	"Read Aloud": "Sesli Oku",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "Kaydet",
 	"Record": "Kaydet",
 	"Record voice": "Ses kaydı yap",
 	"Record voice": "Ses kaydı yap",
@@ -1020,7 +1026,9 @@
 	"Relevance": "İlgili",
 	"Relevance": "İlgili",
 	"Relevance Threshold": "İlgi Eşiği",
 	"Relevance Threshold": "İlgi Eşiği",
 	"Remove": "Kaldır",
 	"Remove": "Kaldır",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Modeli Kaldır",
 	"Remove Model": "Modeli Kaldır",
+	"Remove this tag from list": "",
 	"Rename": "Yeniden Adlandır",
 	"Rename": "Yeniden Adlandır",
 	"Reorder Models": "Modelleri Yeniden Sırala",
 	"Reorder Models": "Modelleri Yeniden Sırala",
 	"Reply in Thread": "Konuya Yanıtla",
 	"Reply in Thread": "Konuya Yanıtla",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Sohbeti Paylaş",
 	"Share Chat": "Sohbeti Paylaş",
 	"Share to Open WebUI Community": "OpenWebUI Topluluğu ile Paylaş",
 	"Share to Open WebUI Community": "OpenWebUI Topluluğu ile Paylaş",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Göster",
 	"Show": "Göster",
 	"Show \"What's New\" modal on login": "Girişte \"Yenilikler\" modalını göster",
 	"Show \"What's New\" modal on login": "Girişte \"Yenilikler\" modalını göster",
 	"Show Admin Details in Account Pending Overlay": "Yönetici Ayrıntılarını Hesap Bekliyor Ekranında Göster",
 	"Show Admin Details in Account Pending Overlay": "Yönetici Ayrıntılarını Hesap Bekliyor Ekranında Göster",
@@ -1157,6 +1166,7 @@
 	"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",
 	"Stop": "Durdur",
 	"Stop": "Durdur",
+	"Stop Generating": "",
 	"Stop Sequence": "Diziyi Durdur",
 	"Stop Sequence": "Diziyi Durdur",
 	"Stream Chat Response": "SAkış Sohbet Yanıtı",
 	"Stream Chat Response": "SAkış Sohbet Yanıtı",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Ayarları Aç/Kapat",
 	"Toggle settings": "Ayarları Aç/Kapat",
 	"Toggle sidebar": "Kenar Çubuğunu Aç/Kapat",
 	"Toggle sidebar": "Kenar Çubuğunu Aç/Kapat",
+	"Toggle whether current connection is active.": "",
 	"Token": "Birim",
 	"Token": "Birim",
 	"Too verbose": "Çok ayrıntılı",
 	"Too verbose": "Çok ayrıntılı",
 	"Tool created successfully": "Araç başarıyla oluşturuldu",
 	"Tool created successfully": "Araç başarıyla oluşturuldu",

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

@@ -591,6 +591,7 @@
 	"Features": "Особливості",
 	"Features": "Особливості",
 	"Features Permissions": "Дозволи функцій",
 	"Features Permissions": "Дозволи функцій",
 	"February": "Лютий",
 	"February": "Лютий",
+	"Feedback Details": "",
 	"Feedback History": "Історія відгуків",
 	"Feedback History": "Історія відгуків",
 	"Feedbacks": "Відгуки",
 	"Feedbacks": "Відгуки",
 	"Feel free to add specific details": "Не соромтеся додавати конкретні деталі",
 	"Feel free to add specific details": "Не соромтеся додавати конкретні деталі",
@@ -778,6 +779,7 @@
 	"Lost": "Втрачене",
 	"Lost": "Втрачене",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Зроблено спільнотою OpenWebUI",
 	"Made by Open WebUI Community": "Зроблено спільнотою OpenWebUI",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "Переконайтеся, що вони закриті",
 	"Make sure to enclose them with": "Переконайтеся, що вони закриті",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Обов'язково експортуйте файл workflow.json у форматі API з ComfyUI.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Обов'язково експортуйте файл workflow.json у форматі API з ComfyUI.",
 	"Manage": "Керувати",
 	"Manage": "Керувати",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Версія Ollama",
 	"Ollama Version": "Версія Ollama",
 	"On": "Увімк",
 	"On": "Увімк",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Дозволені тільки алфавітно-цифрові символи та дефіси",
 	"Only alphanumeric characters and hyphens are allowed": "Дозволені тільки алфавітно-цифрові символи та дефіси",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "У рядку команди дозволено використовувати лише алфавітно-цифрові символи та дефіси.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "У рядку команди дозволено використовувати лише алфавітно-цифрові символи та дефіси.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Редагувати можна лише колекції, створіть нову базу знань, щоб редагувати або додавати документи.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Редагувати можна лише колекції, створіть нову базу знань, щоб редагувати або додавати документи.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Позитивне ставлення",
 	"Positive attitude": "Позитивне ставлення",
 	"Prefix ID": "ID префікса",
 	"Prefix ID": "ID префікса",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID префікса використовується для уникнення конфліктів з іншими підключеннями шляхом додавання префікса до ID моделей — залиште порожнім, щоб вимкнути",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID префікса використовується для уникнення конфліктів з іншими підключеннями шляхом додавання префікса до ID моделей — залиште порожнім, щоб вимкнути",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "Попередні 30 днів",
 	"Previous 30 days": "Попередні 30 днів",
 	"Previous 7 days": "Попередні 7 днів",
 	"Previous 7 days": "Попередні 7 днів",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Перестановка моделей за схожістю тем",
 	"Re-rank models by topic similarity": "Перестановка моделей за схожістю тем",
 	"Read": "Читати",
 	"Read": "Читати",
 	"Read Aloud": "Читати вголос",
 	"Read Aloud": "Читати вголос",
+	"Reason": "",
 	"Reasoning Effort": "Зусилля на міркування",
 	"Reasoning Effort": "Зусилля на міркування",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Записати голос",
 	"Record voice": "Записати голос",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Актуальність",
 	"Relevance": "Актуальність",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Видалити",
 	"Remove": "Видалити",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Видалити модель",
 	"Remove Model": "Видалити модель",
+	"Remove this tag from list": "",
 	"Rename": "Переназвати",
 	"Rename": "Переназвати",
 	"Reorder Models": "Переставити моделі",
 	"Reorder Models": "Переставити моделі",
 	"Reply in Thread": "Відповісти в потоці",
 	"Reply in Thread": "Відповісти в потоці",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Поділитися чатом",
 	"Share Chat": "Поділитися чатом",
 	"Share to Open WebUI Community": "Поділитися зі спільнотою OpenWebUI",
 	"Share to Open WebUI Community": "Поділитися зі спільнотою OpenWebUI",
 	"Sharing Permissions": "Дозволи на обмін",
 	"Sharing Permissions": "Дозволи на обмін",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Показати",
 	"Show": "Показати",
 	"Show \"What's New\" modal on login": "Показати модальне вікно \"Що нового\" під час входу",
 	"Show \"What's New\" modal on login": "Показати модальне вікно \"Що нового\" під час входу",
 	"Show Admin Details in Account Pending Overlay": "Відобразити дані адміна у вікні очікування облікового запису",
 	"Show Admin Details in Account Pending Overlay": "Відобразити дані адміна у вікні очікування облікового запису",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "Помилка розпізнавання мови: {{error}}",
 	"Speech recognition error: {{error}}": "Помилка розпізнавання мови: {{error}}",
 	"Speech-to-Text Engine": "Система розпізнавання мови",
 	"Speech-to-Text Engine": "Система розпізнавання мови",
 	"Stop": "Зупинити",
 	"Stop": "Зупинити",
+	"Stop Generating": "",
 	"Stop Sequence": "Символ зупинки",
 	"Stop Sequence": "Символ зупинки",
 	"Stream Chat Response": "Відповідь стрім-чату",
 	"Stream Chat Response": "Відповідь стрім-чату",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Переключити налаштування",
 	"Toggle settings": "Переключити налаштування",
 	"Toggle sidebar": "Переключити бокову панель",
 	"Toggle sidebar": "Переключити бокову панель",
+	"Toggle whether current connection is active.": "",
 	"Token": "Токен",
 	"Token": "Токен",
 	"Too verbose": "Занадто докладно",
 	"Too verbose": "Занадто докладно",
 	"Tool created successfully": "Інструмент успішно створено",
 	"Tool created successfully": "Інструмент успішно створено",

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

@@ -591,6 +591,7 @@
 	"Features": "",
 	"Features": "",
 	"Features Permissions": "",
 	"Features Permissions": "",
 	"February": "فروری",
 	"February": "فروری",
+	"Feedback Details": "",
 	"Feedback History": "تاریخ رائے",
 	"Feedback History": "تاریخ رائے",
 	"Feedbacks": "",
 	"Feedbacks": "",
 	"Feel free to add specific details": "تفصیلات شامل کرنے کے لیے آزاد محسوس کریں",
 	"Feel free to add specific details": "تفصیلات شامل کرنے کے لیے آزاد محسوس کریں",
@@ -778,6 +779,7 @@
 	"Lost": "گم شدہ",
 	"Lost": "گم شدہ",
 	"LTR": "بائیں سے دائیں",
 	"LTR": "بائیں سے دائیں",
 	"Made by Open WebUI Community": "اوپن ویب یو آئی کمیونٹی کی جانب سے تیار کردہ",
 	"Made by Open WebUI Community": "اوپن ویب یو آئی کمیونٹی کی جانب سے تیار کردہ",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "انہیں کے ساتھ شامل کریں",
 	"Make sure to enclose them with": "انہیں کے ساتھ شامل کریں",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "یقینی بنائیں کہ ComfyUI سے workflow.json فائل کو API فارمیٹ میں ایکسپورٹ کریں",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "یقینی بنائیں کہ ComfyUI سے workflow.json فائل کو API فارمیٹ میں ایکسپورٹ کریں",
 	"Manage": "مینیج کریں",
 	"Manage": "مینیج کریں",
@@ -899,6 +901,8 @@
 	"Ollama Version": "اولاما ورژن",
 	"Ollama Version": "اولاما ورژن",
 	"On": "چالو",
 	"On": "چالو",
 	"OneDrive": "",
 	"OneDrive": "",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed": "",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "کمانڈ سٹرنگ میں صرف حروفی، عددی کردار اور ہائفن کی اجازت ہے",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "کمانڈ سٹرنگ میں صرف حروفی، عددی کردار اور ہائفن کی اجازت ہے",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "صرف مجموعے ترمیم کیے جا سکتے ہیں، دستاویزات کو ترمیم یا شامل کرنے کے لیے نیا علمی بنیاد بنائیں",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "صرف مجموعے ترمیم کیے جا سکتے ہیں، دستاویزات کو ترمیم یا شامل کرنے کے لیے نیا علمی بنیاد بنائیں",
@@ -979,6 +983,7 @@
 	"Positive attitude": "مثبت رویہ",
 	"Positive attitude": "مثبت رویہ",
 	"Prefix ID": "",
 	"Prefix ID": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "پچھلے 30 دن",
 	"Previous 30 days": "پچھلے 30 دن",
 	"Previous 7 days": "پچھلے 7 دن",
 	"Previous 7 days": "پچھلے 7 دن",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "موضوع کی مماثلت کے لحاظ سے ماڈلز کی دوبارہ ترتیب دیں",
 	"Re-rank models by topic similarity": "موضوع کی مماثلت کے لحاظ سے ماڈلز کی دوبارہ ترتیب دیں",
 	"Read": "",
 	"Read": "",
 	"Read Aloud": "بُلند آواز میں پڑھیں",
 	"Read Aloud": "بُلند آواز میں پڑھیں",
+	"Reason": "",
 	"Reasoning Effort": "",
 	"Reasoning Effort": "",
 	"Record": "",
 	"Record": "",
 	"Record voice": "صوت ریکارڈ کریں",
 	"Record voice": "صوت ریکارڈ کریں",
@@ -1020,7 +1026,9 @@
 	"Relevance": "موزونیت",
 	"Relevance": "موزونیت",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "ہٹا دیں",
 	"Remove": "ہٹا دیں",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "ماڈل ہٹائیں",
 	"Remove Model": "ماڈل ہٹائیں",
+	"Remove this tag from list": "",
 	"Rename": "تبدیل نام کریں",
 	"Rename": "تبدیل نام کریں",
 	"Reorder Models": "",
 	"Reorder Models": "",
 	"Reply in Thread": "",
 	"Reply in Thread": "",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "چیٹ شیئر کریں",
 	"Share Chat": "چیٹ شیئر کریں",
 	"Share to Open WebUI Community": "اوپن ویب یوآئی کمیونٹی کے ساتھ شیئر کریں\n",
 	"Share to Open WebUI Community": "اوپن ویب یوآئی کمیونٹی کے ساتھ شیئر کریں\n",
 	"Sharing Permissions": "",
 	"Sharing Permissions": "",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "دکھائیں",
 	"Show": "دکھائیں",
 	"Show \"What's New\" modal on login": "",
 	"Show \"What's New\" modal on login": "",
 	"Show Admin Details in Account Pending Overlay": "اکاؤنٹ پینڈنگ اوورلے میں ایڈمن کی تفصیلات دکھائیں",
 	"Show Admin Details in Account Pending Overlay": "اکاؤنٹ پینڈنگ اوورلے میں ایڈمن کی تفصیلات دکھائیں",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "تقریر کی پہچان کی خرابی: {{error}}",
 	"Speech recognition error: {{error}}": "تقریر کی پہچان کی خرابی: {{error}}",
 	"Speech-to-Text Engine": "تقریر-سے-متن انجن",
 	"Speech-to-Text Engine": "تقریر-سے-متن انجن",
 	"Stop": "روکیں",
 	"Stop": "روکیں",
+	"Stop Generating": "",
 	"Stop Sequence": "ترتیب روکیں",
 	"Stop Sequence": "ترتیب روکیں",
 	"Stream Chat Response": "اسٹریم چیٹ جواب",
 	"Stream Chat Response": "اسٹریم چیٹ جواب",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "ترتیبات کو تبدیل کریں",
 	"Toggle settings": "ترتیبات کو تبدیل کریں",
 	"Toggle sidebar": "سائڈبار کو ٹوگل کریں",
 	"Toggle sidebar": "سائڈبار کو ٹوگل کریں",
+	"Toggle whether current connection is active.": "",
 	"Token": "ٹوکَن",
 	"Token": "ٹوکَن",
 	"Too verbose": "بہت زیادہ طویل",
 	"Too verbose": "بہت زیادہ طویل",
 	"Tool created successfully": "اوزار کامیابی کے ساتھ تخلیق کیا گیا",
 	"Tool created successfully": "اوزار کامیابی کے ساتھ تخلیق کیا گیا",

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

@@ -591,6 +591,7 @@
 	"Features": "Tính năng",
 	"Features": "Tính năng",
 	"Features Permissions": "Quyền Tính năng",
 	"Features Permissions": "Quyền Tính năng",
 	"February": "Tháng 2",
 	"February": "Tháng 2",
+	"Feedback Details": "",
 	"Feedback History": "Lịch sử Phản hồi",
 	"Feedback History": "Lịch sử Phản hồi",
 	"Feedbacks": "Các phản hồi",
 	"Feedbacks": "Các phản hồi",
 	"Feel free to add specific details": "Mô tả chi tiết về chất lượng của câu hỏi và phương án trả lời",
 	"Feel free to add specific details": "Mô tả chi tiết về chất lượng của câu hỏi và phương án trả lời",
@@ -778,6 +779,7 @@
 	"Lost": "Thua",
 	"Lost": "Thua",
 	"LTR": "LTR",
 	"LTR": "LTR",
 	"Made by Open WebUI Community": "Được tạo bởi Cộng đồng OpenWebUI",
 	"Made by Open WebUI Community": "Được tạo bởi Cộng đồng OpenWebUI",
+	"Make password visible in the user interface": "",
 	"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",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Đảm bảo xuất tệp Workflow.json đúng format API của ComfyUI.",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "Đảm bảo xuất tệp Workflow.json đúng format API của ComfyUI.",
 	"Manage": "Quản lý",
 	"Manage": "Quản lý",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Phiên bản Ollama",
 	"Ollama Version": "Phiên bản Ollama",
 	"On": "Bật",
 	"On": "Bật",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "Chỉ cho phép các ký tự chữ và số và dấu gạch nối",
 	"Only alphanumeric characters and hyphens are allowed": "Chỉ cho phép các ký tự chữ và số và dấu gạch nối",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Chỉ ký tự số và gạch nối được phép trong chuỗi lệnh.",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Chỉ ký tự số và gạch nối được phép trong chuỗi lệnh.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Chỉ có thể chỉnh sửa bộ sưu tập, tạo cơ sở kiến thức mới để chỉnh sửa/thêm tài liệu.",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "Chỉ có thể chỉnh sửa bộ sưu tập, tạo cơ sở kiến thức mới để chỉnh sửa/thêm tài liệu.",
@@ -979,6 +983,7 @@
 	"Positive attitude": "Thái độ tích cực",
 	"Positive attitude": "Thái độ tích cực",
 	"Prefix ID": "Tiền tố ID",
 	"Prefix ID": "Tiền tố ID",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Tiền tố ID được sử dụng để tránh xung đột với các kết nối khác bằng cách thêm tiền tố vào ID mô hình - để trống để tắt",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Tiền tố ID được sử dụng để tránh xung đột với các kết nối khác bằng cách thêm tiền tố vào ID mô hình - để trống để tắt",
+	"Prevent file creation": "",
 	"Preview": "",
 	"Preview": "",
 	"Previous 30 days": "30 ngày trước",
 	"Previous 30 days": "30 ngày trước",
 	"Previous 7 days": "7 ngày trước",
 	"Previous 7 days": "7 ngày trước",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "Xếp hạng lại các mô hình theo độ tương đồng chủ đề",
 	"Re-rank models by topic similarity": "Xếp hạng lại các mô hình theo độ tương đồng chủ đề",
 	"Read": "Đọc",
 	"Read": "Đọc",
 	"Read Aloud": "Đọc ra loa",
 	"Read Aloud": "Đọc ra loa",
+	"Reason": "",
 	"Reasoning Effort": "Nỗ lực Suy luận",
 	"Reasoning Effort": "Nỗ lực Suy luận",
 	"Record": "",
 	"Record": "",
 	"Record voice": "Ghi âm",
 	"Record voice": "Ghi âm",
@@ -1020,7 +1026,9 @@
 	"Relevance": "Mức độ liên quan",
 	"Relevance": "Mức độ liên quan",
 	"Relevance Threshold": "",
 	"Relevance Threshold": "",
 	"Remove": "Xóa",
 	"Remove": "Xóa",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "Xóa model",
 	"Remove Model": "Xóa model",
+	"Remove this tag from list": "",
 	"Rename": "Đổi tên",
 	"Rename": "Đổi tên",
 	"Reorder Models": "Sắp xếp lại Mô hình",
 	"Reorder Models": "Sắp xếp lại Mô hình",
 	"Reply in Thread": "Trả lời trong Luồng",
 	"Reply in Thread": "Trả lời trong Luồng",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "Chia sẻ Chat",
 	"Share Chat": "Chia sẻ Chat",
 	"Share to Open WebUI Community": "Chia sẻ đến Cộng đồng OpenWebUI",
 	"Share to Open WebUI Community": "Chia sẻ đến Cộng đồng OpenWebUI",
 	"Sharing Permissions": "Quyền Chia sẻ",
 	"Sharing Permissions": "Quyền Chia sẻ",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "Hiển thị",
 	"Show": "Hiển thị",
 	"Show \"What's New\" modal on login": "Hiển thị cửa sổ \"Có gì mới\" khi đăng nhập",
 	"Show \"What's New\" modal on login": "Hiển thị cửa sổ \"Có gì mới\" khi đăng nhập",
 	"Show Admin Details in Account Pending Overlay": "Hiển thị thông tin của Quản trị viên trên màn hình hiển thị Tài khoản đang chờ xử lý",
 	"Show Admin Details in Account Pending Overlay": "Hiển thị thông tin của Quản trị viên trên màn hình hiển thị Tài khoản đang chờ xử lý",
@@ -1157,6 +1166,7 @@
 	"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",
 	"Stop": "Dừng",
 	"Stop": "Dừng",
+	"Stop Generating": "",
 	"Stop Sequence": "Trình tự Dừng",
 	"Stop Sequence": "Trình tự Dừng",
 	"Stream Chat Response": "Truyền trực tiếp Phản hồi Chat",
 	"Stream Chat Response": "Truyền trực tiếp Phản hồi Chat",
 	"Strip Existing OCR": "",
 	"Strip Existing OCR": "",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "",
 	"Toggle search": "",
 	"Toggle settings": "Bật/tắt cài đặt",
 	"Toggle settings": "Bật/tắt cài đặt",
 	"Toggle sidebar": "Bật/tắt thanh bên",
 	"Toggle sidebar": "Bật/tắt thanh bên",
+	"Toggle whether current connection is active.": "",
 	"Token": "Token",
 	"Token": "Token",
 	"Too verbose": "Quá dài dòng",
 	"Too verbose": "Quá dài dòng",
 	"Tool created successfully": "Tool đã được tạo thành công",
 	"Tool created successfully": "Tool đã được tạo thành công",

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

@@ -591,6 +591,7 @@
 	"Features": "功能",
 	"Features": "功能",
 	"Features Permissions": "功能权限",
 	"Features Permissions": "功能权限",
 	"February": "二月",
 	"February": "二月",
+	"Feedback Details": "",
 	"Feedback History": "反馈历史",
 	"Feedback History": "反馈历史",
 	"Feedbacks": "反馈",
 	"Feedbacks": "反馈",
 	"Feel free to add specific details": "欢迎补充具体细节",
 	"Feel free to add specific details": "欢迎补充具体细节",
@@ -778,6 +779,7 @@
 	"Lost": "落败",
 	"Lost": "落败",
 	"LTR": "从左至右",
 	"LTR": "从左至右",
 	"Made by Open WebUI Community": "由 Open WebUI 社区制作",
 	"Made by Open WebUI Community": "由 Open WebUI 社区制作",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "确保将它们包含在内",
 	"Make sure to enclose them with": "确保将它们包含在内",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "确保从 ComfyUI 导出 API 格式的 workflow.json 文件。",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "确保从 ComfyUI 导出 API 格式的 workflow.json 文件。",
 	"Manage": "管理",
 	"Manage": "管理",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama 版本",
 	"Ollama Version": "Ollama 版本",
 	"On": "开启",
 	"On": "开启",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "只允许使用英文字母,数字 (0-9) 以及连字符 (-)",
 	"Only alphanumeric characters and hyphens are allowed": "只允许使用英文字母,数字 (0-9) 以及连字符 (-)",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "命令字符串中只允许使用英文字母,数字 (0-9) 以及连字符 (-)。",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "命令字符串中只允许使用英文字母,数字 (0-9) 以及连字符 (-)。",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "只能编辑文件集,创建一个新的知识库来编辑/添加文件。",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "只能编辑文件集,创建一个新的知识库来编辑/添加文件。",
@@ -979,6 +983,7 @@
 	"Positive attitude": "积极的态度",
 	"Positive attitude": "积极的态度",
 	"Prefix ID": "Prefix ID",
 	"Prefix ID": "Prefix ID",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID 用于通过为模型 ID 添加前缀来避免与其他连接发生冲突 - 留空则禁用此功能",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID 用于通过为模型 ID 添加前缀来避免与其他连接发生冲突 - 留空则禁用此功能",
+	"Prevent file creation": "",
 	"Preview": "预览",
 	"Preview": "预览",
 	"Previous 30 days": "过去 30 天",
 	"Previous 30 days": "过去 30 天",
 	"Previous 7 days": "过去 7 天",
 	"Previous 7 days": "过去 7 天",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "根据主题相似性对模型重新排序",
 	"Re-rank models by topic similarity": "根据主题相似性对模型重新排序",
 	"Read": "只读",
 	"Read": "只读",
 	"Read Aloud": "朗读",
 	"Read Aloud": "朗读",
+	"Reason": "",
 	"Reasoning Effort": "推理努力 (Reasoning Effort)",
 	"Reasoning Effort": "推理努力 (Reasoning Effort)",
 	"Record": "录制",
 	"Record": "录制",
 	"Record voice": "录音",
 	"Record voice": "录音",
@@ -1020,7 +1026,9 @@
 	"Relevance": "相关性",
 	"Relevance": "相关性",
 	"Relevance Threshold": "相关性阈值",
 	"Relevance Threshold": "相关性阈值",
 	"Remove": "移除",
 	"Remove": "移除",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "移除模型",
 	"Remove Model": "移除模型",
+	"Remove this tag from list": "",
 	"Rename": "重命名",
 	"Rename": "重命名",
 	"Reorder Models": "重新排序模型",
 	"Reorder Models": "重新排序模型",
 	"Reply in Thread": "在主题中回复",
 	"Reply in Thread": "在主题中回复",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "分享对话",
 	"Share Chat": "分享对话",
 	"Share to Open WebUI Community": "分享到 Open WebUI 社区",
 	"Share to Open WebUI Community": "分享到 Open WebUI 社区",
 	"Sharing Permissions": "共享权限",
 	"Sharing Permissions": "共享权限",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "显示",
 	"Show": "显示",
 	"Show \"What's New\" modal on login": "在登录时显示“更新内容”弹窗",
 	"Show \"What's New\" modal on login": "在登录时显示“更新内容”弹窗",
 	"Show Admin Details in Account Pending Overlay": "在用户待激活界面中显示管理员邮箱等详细信息",
 	"Show Admin Details in Account Pending Overlay": "在用户待激活界面中显示管理员邮箱等详细信息",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "语音识别错误:{{error}}",
 	"Speech recognition error: {{error}}": "语音识别错误:{{error}}",
 	"Speech-to-Text Engine": "语音转文本引擎",
 	"Speech-to-Text Engine": "语音转文本引擎",
 	"Stop": "停止",
 	"Stop": "停止",
+	"Stop Generating": "",
 	"Stop Sequence": "停止序列 (Stop Sequence)",
 	"Stop Sequence": "停止序列 (Stop Sequence)",
 	"Stream Chat Response": "流式对话响应 (Stream Chat Response)",
 	"Stream Chat Response": "流式对话响应 (Stream Chat Response)",
 	"Strip Existing OCR": "清除现有 OCR 文本",
 	"Strip Existing OCR": "清除现有 OCR 文本",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "切换搜索",
 	"Toggle search": "切换搜索",
 	"Toggle settings": "切换设置",
 	"Toggle settings": "切换设置",
 	"Toggle sidebar": "切换侧边栏",
 	"Toggle sidebar": "切换侧边栏",
+	"Toggle whether current connection is active.": "",
 	"Token": "Token",
 	"Token": "Token",
 	"Too verbose": "过于冗长",
 	"Too verbose": "过于冗长",
 	"Tool created successfully": "工具创建成功",
 	"Tool created successfully": "工具创建成功",

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

@@ -591,6 +591,7 @@
 	"Features": "功能",
 	"Features": "功能",
 	"Features Permissions": "功能權限",
 	"Features Permissions": "功能權限",
 	"February": "2 月",
 	"February": "2 月",
+	"Feedback Details": "",
 	"Feedback History": "回饋歷史",
 	"Feedback History": "回饋歷史",
 	"Feedbacks": "回饋",
 	"Feedbacks": "回饋",
 	"Feel free to add specific details": "歡迎自由新增特定細節",
 	"Feel free to add specific details": "歡迎自由新增特定細節",
@@ -778,6 +779,7 @@
 	"Lost": "已遺失",
 	"Lost": "已遺失",
 	"LTR": "從左到右",
 	"LTR": "從左到右",
 	"Made by Open WebUI Community": "由 Open WebUI 社群製作",
 	"Made by Open WebUI Community": "由 Open WebUI 社群製作",
+	"Make password visible in the user interface": "",
 	"Make sure to enclose them with": "請務必將它們放在",
 	"Make sure to enclose them with": "請務必將它們放在",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "請確保從 ComfyUI 匯出 workflow.json 檔案為 API 格式。",
 	"Make sure to export a workflow.json file as API format from ComfyUI.": "請確保從 ComfyUI 匯出 workflow.json 檔案為 API 格式。",
 	"Manage": "管理",
 	"Manage": "管理",
@@ -899,6 +901,8 @@
 	"Ollama Version": "Ollama 版本",
 	"Ollama Version": "Ollama 版本",
 	"On": "開啟",
 	"On": "開啟",
 	"OneDrive": "OneDrive",
 	"OneDrive": "OneDrive",
+	"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
+	"Only active when the chat input is in focus and an LLM is generating a response.": "",
 	"Only alphanumeric characters and hyphens are allowed": "只允許使用英文字母、數字和連字號",
 	"Only alphanumeric characters and hyphens are allowed": "只允許使用英文字母、數字和連字號",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "命令字串中只允許使用英文字母、數字和連字號。",
 	"Only alphanumeric characters and hyphens are allowed in the command string.": "命令字串中只允許使用英文字母、數字和連字號。",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "只能編輯集合,請建立新的知識以編輯或新增檔案。",
 	"Only collections can be edited, create a new knowledge base to edit/add documents.": "只能編輯集合,請建立新的知識以編輯或新增檔案。",
@@ -979,6 +983,7 @@
 	"Positive attitude": "積極的態度",
 	"Positive attitude": "積極的態度",
 	"Prefix ID": "前置 ID",
 	"Prefix ID": "前置 ID",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "前置 ID 用於透過為模型 ID 新增字首以避免與其他連線衝突 - 留空以停用",
 	"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "前置 ID 用於透過為模型 ID 新增字首以避免與其他連線衝突 - 留空以停用",
+	"Prevent file creation": "",
 	"Preview": "預覽",
 	"Preview": "預覽",
 	"Previous 30 days": "過去 30 天",
 	"Previous 30 days": "過去 30 天",
 	"Previous 7 days": "過去 7 天",
 	"Previous 7 days": "過去 7 天",
@@ -1004,6 +1009,7 @@
 	"Re-rank models by topic similarity": "根據主題相似度重新排序模型",
 	"Re-rank models by topic similarity": "根據主題相似度重新排序模型",
 	"Read": "讀取",
 	"Read": "讀取",
 	"Read Aloud": "大聲朗讀",
 	"Read Aloud": "大聲朗讀",
+	"Reason": "",
 	"Reasoning Effort": "推理程度",
 	"Reasoning Effort": "推理程度",
 	"Record": "錄製",
 	"Record": "錄製",
 	"Record voice": "錄音",
 	"Record voice": "錄音",
@@ -1020,7 +1026,9 @@
 	"Relevance": "相關性",
 	"Relevance": "相關性",
 	"Relevance Threshold": "相關性閾值",
 	"Relevance Threshold": "相關性閾值",
 	"Remove": "移除",
 	"Remove": "移除",
+	"Remove {{MODELID}} from list.": "",
 	"Remove Model": "移除模型",
 	"Remove Model": "移除模型",
+	"Remove this tag from list": "",
 	"Rename": "重新命名",
 	"Rename": "重新命名",
 	"Reorder Models": "重新排序模型",
 	"Reorder Models": "重新排序模型",
 	"Reply in Thread": "在討論串中回覆",
 	"Reply in Thread": "在討論串中回覆",
@@ -1130,6 +1138,7 @@
 	"Share Chat": "分享對話",
 	"Share Chat": "分享對話",
 	"Share to Open WebUI Community": "分享到 Open WebUI 社群",
 	"Share to Open WebUI Community": "分享到 Open WebUI 社群",
 	"Sharing Permissions": "分享權限設定",
 	"Sharing Permissions": "分享權限設定",
+	"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
 	"Show": "顯示",
 	"Show": "顯示",
 	"Show \"What's New\" modal on login": "登入時顯示「新功能」對話框",
 	"Show \"What's New\" modal on login": "登入時顯示「新功能」對話框",
 	"Show Admin Details in Account Pending Overlay": "在帳號待審覆蓋層中顯示管理員詳細資訊",
 	"Show Admin Details in Account Pending Overlay": "在帳號待審覆蓋層中顯示管理員詳細資訊",
@@ -1157,6 +1166,7 @@
 	"Speech recognition error: {{error}}": "語音辨識錯誤:{{error}}",
 	"Speech recognition error: {{error}}": "語音辨識錯誤:{{error}}",
 	"Speech-to-Text Engine": "語音轉文字 (STT) 引擎",
 	"Speech-to-Text Engine": "語音轉文字 (STT) 引擎",
 	"Stop": "停止",
 	"Stop": "停止",
+	"Stop Generating": "",
 	"Stop Sequence": "停止序列",
 	"Stop Sequence": "停止序列",
 	"Stream Chat Response": "串流式對話回應",
 	"Stream Chat Response": "串流式對話回應",
 	"Strip Existing OCR": "移除現有 OCR 文字",
 	"Strip Existing OCR": "移除現有 OCR 文字",
@@ -1253,6 +1263,7 @@
 	"Toggle search": "切換搜尋",
 	"Toggle search": "切換搜尋",
 	"Toggle settings": "切換設定",
 	"Toggle settings": "切換設定",
 	"Toggle sidebar": "切換側邊欄",
 	"Toggle sidebar": "切換側邊欄",
+	"Toggle whether current connection is active.": "",
 	"Token": "Token",
 	"Token": "Token",
 	"Too verbose": "太過冗長",
 	"Too verbose": "太過冗長",
 	"Tool created successfully": "成功建立工具",
 	"Tool created successfully": "成功建立工具",