mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 20:35:19 +00:00
chore: format
This commit is contained in:
parent
26d069080a
commit
7753f57d42
55 changed files with 587 additions and 11 deletions
|
|
@ -40,7 +40,7 @@ class ExternalDocumentLoader(BaseLoader):
|
|||
headers["X-Filename"] = os.path.basename(self.file_path)
|
||||
except:
|
||||
pass
|
||||
|
||||
|
||||
url = self.url
|
||||
if url.endswith("/"):
|
||||
url = url[:-1]
|
||||
|
|
@ -52,7 +52,7 @@ class ExternalDocumentLoader(BaseLoader):
|
|||
raise Exception(f"Error connecting to endpoint: {e}")
|
||||
|
||||
if response.ok:
|
||||
|
||||
|
||||
response_data = response.json()
|
||||
if response_data:
|
||||
if isinstance(response_data, dict):
|
||||
|
|
@ -65,15 +65,19 @@ class ExternalDocumentLoader(BaseLoader):
|
|||
elif isinstance(response_data, list):
|
||||
documents = []
|
||||
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:
|
||||
raise Exception("Error loading document: Unable to parse content")
|
||||
|
||||
|
||||
else:
|
||||
raise Exception("Error loading document: No content returned")
|
||||
else:
|
||||
raise Exception(f"Error loading document: {response.status_code} {response.text}")
|
||||
raise Exception(
|
||||
f"Error loading document: {response.status_code} {response.text}"
|
||||
)
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@
|
|||
return 0;
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
let showFeedbackModal = false;
|
||||
let selectedFeedback = null;
|
||||
|
||||
|
|
|
|||
|
|
@ -310,7 +310,7 @@
|
|||
)}
|
||||
</div>
|
||||
<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 class="flex flex-col md:flex-row w-full p-5 md:space-x-4 dark:text-gray-200">
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "فبراير",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "لا تتردد في إضافة تفاصيل محددة",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"LTR": "من جهة اليسار إلى اليمين",
|
||||
"Made by Open WebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "تأكد من إرفاقها",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama الاصدار",
|
||||
"On": "تشغيل",
|
||||
"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 in the command string.": "يُسمح فقط بالأحرف الأبجدية الرقمية والواصلات في سلسلة الأمر.",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "موقف ايجابي",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "أخر 30 يوم",
|
||||
"Previous 7 days": "أخر 7 أيام",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "أقراء لي",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "سجل صوت",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "إزالة",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "حذف الموديل",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "إعادة تسمية",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "مشاركة الدردشة",
|
||||
"Share to Open WebUI Community": "OpenWebUI شارك في مجتمع",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "عرض",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "{{error}} خطأ في التعرف على الكلام",
|
||||
"Speech-to-Text Engine": "محرك تحويل الكلام إلى نص",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "وقف التسلسل",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "فتح وأغلاق الاعدادات",
|
||||
"Toggle sidebar": "فتح وأغلاق الشريط الجانبي",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "الميزات",
|
||||
"Features Permissions": "أذونات الميزات",
|
||||
"February": "فبراير",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "سجل الملاحظات",
|
||||
"Feedbacks": "الملاحظات",
|
||||
"Feel free to add specific details": "لا تتردد في إضافة تفاصيل محددة",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "ضائع",
|
||||
"LTR": "من جهة اليسار إلى اليمين",
|
||||
"Made by Open WebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "تأكد من إرفاقها",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "تأكد من تصدير ملف workflow.json بصيغة API من ComfyUI.",
|
||||
"Manage": "إدارة",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama الاصدار",
|
||||
"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 in the command string.": "يُسمح فقط بالأحرف الأبجدية الرقمية والواصلات في سلسلة الأمر.",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "يمكن تعديل المجموعات فقط، أنشئ قاعدة معرفة جديدة لتعديل أو إضافة مستندات.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "موقف ايجابي",
|
||||
"Prefix ID": "معرف البادئة",
|
||||
"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": "",
|
||||
"Previous 30 days": "أخر 30 يوم",
|
||||
"Previous 7 days": "أخر 7 أيام",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "إعادة ترتيب النماذج حسب تشابه الموضوع",
|
||||
"Read": "قراءة",
|
||||
"Read Aloud": "أقراء لي",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "جهد الاستدلال",
|
||||
"Record": "",
|
||||
"Record voice": "سجل صوت",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "الصلة",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "إزالة",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "حذف الموديل",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "إعادة تسمية",
|
||||
"Reorder Models": "إعادة ترتيب النماذج",
|
||||
"Reply in Thread": "الرد داخل سلسلة الرسائل",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "مشاركة الدردشة",
|
||||
"Share to Open WebUI Community": "OpenWebUI شارك في مجتمع",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "عرض",
|
||||
"Show \"What's New\" modal on login": "عرض نافذة \"ما الجديد\" عند تسجيل الدخول",
|
||||
"Show Admin Details in Account Pending Overlay": "عرض تفاصيل المشرف في نافذة \"الحساب قيد الانتظار\"",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "{{error}} خطأ في التعرف على الكلام",
|
||||
"Speech-to-Text Engine": "محرك تحويل الكلام إلى نص",
|
||||
"Stop": "إيقاف",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "وقف التسلسل",
|
||||
"Stream Chat Response": "بث استجابة الدردشة",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "فتح وأغلاق الاعدادات",
|
||||
"Toggle sidebar": "فتح وأغلاق الشريط الجانبي",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "رمز",
|
||||
"Too verbose": "مفرط في التفاصيل",
|
||||
"Tool created successfully": "تم إنشاء الأداة بنجاح",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "Функции",
|
||||
"Features Permissions": "Разрешения за функции",
|
||||
"February": "Февруари",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "История на обратната връзка",
|
||||
"Feedbacks": "Обратни връзки",
|
||||
"Feel free to add specific details": "Не се колебайте да добавите конкретни детайли",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Изгубено",
|
||||
"LTR": "LTR",
|
||||
"Made by Open WebUI Community": "Направено от OpenWebUI общността",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Уверете се, че сте заключени с",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Уверете се, че експортирате файл workflow.json като API формат от ComfyUI.",
|
||||
"Manage": "Управление",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama Версия",
|
||||
"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 in the command string.": "Само алфанумерични знаци и тире са разрешени в командния низ.",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Само колекциите могат да бъдат редактирани, създайте нова база от знания, за да редактирате/добавяте документи.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Позитивно отношение",
|
||||
"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-тата на моделите - оставете празно, за да деактивирате",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "Предишните 30 дни",
|
||||
"Previous 7 days": "Предишните 7 дни",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "Преоценка на моделите по сходство на темата",
|
||||
"Read": "Четене",
|
||||
"Read Aloud": "Прочети на глас",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "Усилие за разсъждение",
|
||||
"Record": "Запиши",
|
||||
"Record voice": "Записване на глас",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Релевантност",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Изтриване",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Изтриване на модела",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Преименуване",
|
||||
"Reorder Models": "Преорганизиране на моделите",
|
||||
"Reply in Thread": "Отговори в тред",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Подели Чат",
|
||||
"Share to Open WebUI Community": "Споделете с OpenWebUI Общността",
|
||||
"Sharing Permissions": "Права за споделяне",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Покажи",
|
||||
"Show \"What's New\" modal on login": "Покажи модалния прозорец \"Какво е ново\" при вписване",
|
||||
"Show Admin Details in Account Pending Overlay": "Покажи детайлите на администратора в наслагването на изчакващ акаунт",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Грешка при разпознаване на речта: {{error}}",
|
||||
"Speech-to-Text Engine": "Двигател за преобразуване на реч в текста",
|
||||
"Stop": "Спри",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Стоп последователност",
|
||||
"Stream Chat Response": "Поточен чат отговор",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Превключване на настройките",
|
||||
"Toggle sidebar": "Превключване на страничната лента",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Токен",
|
||||
"Too verbose": "Прекалено многословно",
|
||||
"Tool created successfully": "Инструментът е създаден успешно",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "ফেব্রুয়ারি",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "নির্দিষ্ট বিবরণ যোগ করতে বিনা দ্বিধায়",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by Open WebUI Community": "OpenWebUI কমিউনিটিকর্তৃক নির্মিত",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "এটা দিয়ে বন্ধনী দিতে ভুলবেন না",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama ভার্সন",
|
||||
"On": "চালু",
|
||||
"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 in the command string.": "কমান্ড স্ট্রিং-এ শুধুমাত্র ইংরেজি অক্ষর, সংখ্যা এবং হাইফেন ব্যবহার করা যাবে।",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "পজিটিভ আক্রমণ",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "পূর্ব ৩০ দিন",
|
||||
"Previous 7 days": "পূর্ব ৭ দিন",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "পড়াশোনা করুন",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "ভয়েস রেকর্ড করুন",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "রিমুভ করুন",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "মডেল রিমুভ করুন",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "রেনেম",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "চ্যাট শেয়ার করুন",
|
||||
"Share to Open WebUI Community": "OpenWebUI কমিউনিটিতে শেয়ার করুন",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "দেখান",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "স্পিচ রিকগনিশনে সমস্যা: {{error}}",
|
||||
"Speech-to-Text Engine": "স্পিচ-টু-টেক্সট ইঞ্জিন",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "সিকোয়েন্স থামান",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "সেটিংস টোগল",
|
||||
"Toggle sidebar": "সাইডবার টোগল",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "ཁྱད་ཆོས།",
|
||||
"Features Permissions": "ཁྱད་ཆོས་ཀྱི་དབང་ཚད།",
|
||||
"February": "ཟླ་བ་གཉིས་པ།",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "བསམ་འཆར་གྱི་ལོ་རྒྱུས།",
|
||||
"Feedbacks": "བསམ་འཆར།",
|
||||
"Feel free to add specific details": "ཞིབ་ཕྲ་ངེས་ཅན་སྣོན་པར་སེམས་ཁྲལ་མེད།",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "བརླགས།",
|
||||
"LTR": "LTR",
|
||||
"Made by Open WebUI Community": "Open WebUI སྤྱི་ཚོགས་ཀྱིས་བཟོས།",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "དེ་དག་འདིས་བསྐོར་བ་ཁག་ཐེག་བྱེད་པ།",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "ComfyUI ནས་ workflow.json ཡིག་ཆ་ API བཀོད་པའི་ཐོག་ཕྱིར་གཏོང་བྱེད་པ་ཁག་ཐེག་བྱེད་པ།",
|
||||
"Manage": "དོ་དམ།",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama པར་གཞི།",
|
||||
"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 in the command string.": "བཀའ་བརྡའི་ཡིག་ཕྲེང་ནང་ཨང་ཀི་དང་དབྱིན་ཡིག་གི་ཡིག་འབྲུ་དང་སྦྲེལ་རྟགས་ཁོ་ན་ཆོག་པ།",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "བསྡུ་གསོག་ཁོ་ན་ཞུ་དག་བྱེད་ཐུབ། ཡིག་ཆ་ཞུ་དག་/སྣོན་པར་ཤེས་བྱའི་རྟེན་གཞི་གསར་པ་ཞིག་བཟོ་བ།",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "ལྟ་སྟངས་དགེ་མཚན།",
|
||||
"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 ལ་སྔོན་སྦྱོར་ཞིག་སྣོན་ནས་སྦྲེལ་མཐུད་གཞན་དང་གདོང་ཐུག་ལས་གཡོལ་བར་བེད་སྤྱོད་བྱེད། - ནུས་མེད་བཏང་བར་སྟོང་པ་བཞག་པ།",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "ཉིན་ ༣༠ སྔོན་མ།",
|
||||
"Previous 7 days": "ཉིན་ ༧ སྔོན་མ།",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "བརྗོད་གཞི་འདྲ་མཚུངས་ལྟར་དཔེ་དབྱིབས་བསྐྱར་སྒྲིག་བྱེད་པ།",
|
||||
"Read": "ཀློག་པ།",
|
||||
"Read Aloud": "སྐད་གསལ་པོས་ཀློག་པ།",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "རྒྱུ་མཚན་འདྲེན་པའི་འབད་བརྩོན།",
|
||||
"Record": "",
|
||||
"Record voice": "སྐད་སྒྲ་ཕབ་པ།",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "འབྲེལ་ཡོད་རང་བཞིན།",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "འདོར་བ།",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "དཔེ་དབྱིབས་འདོར་བ།",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "མིང་བསྐྱར་འདོགས།",
|
||||
"Reorder Models": "དཔེ་དབྱིབས་བསྐྱར་སྒྲིག",
|
||||
"Reply in Thread": "བརྗོད་གཞིའི་ནང་ལན་འདེབས།",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "ཁ་བརྡ་མཉམ་སྤྱོད།",
|
||||
"Share to Open WebUI Community": "Open WebUI སྤྱི་ཚོགས་ལ་མཉམ་སྤྱོད།",
|
||||
"Sharing Permissions": "མཉམ་སྤྱོད་དབང་ཚད།",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "སྟོན་པ།",
|
||||
"Show \"What's New\" modal on login": "ནང་འཛུལ་སྐབས་ \"གསར་པ་ཅི་ཡོད\" modal སྟོན་པ།",
|
||||
"Show Admin Details in Account Pending Overlay": "རྩིས་ཁྲ་སྒུག་བཞིན་པའི་གཏོགས་ངོས་སུ་དོ་དམ་པའི་ཞིབ་ཕྲ་སྟོན་པ།",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "གཏམ་བཤད་ངོས་འཛིན་ནོར་འཁྲུལ།: {{error}}",
|
||||
"Speech-to-Text Engine": "གཏམ་བཤད་ནས་ཡིག་རྐྱང་གི་འཕྲུལ་འཁོར།",
|
||||
"Stop": "མཚམས་འཇོག",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "མཚམས་འཇོག་རིམ་པ།",
|
||||
"Stream Chat Response": "ཁ་བརྡའི་ལན་རྒྱུག་པ།",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "སྒྲིག་འགོད་བརྗེ་བ།",
|
||||
"Toggle sidebar": "ཟུར་ངོས་བརྗེ་བ།",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "ཊོཀ་ཀེན།",
|
||||
"Too verbose": "རིང་དྲགས།",
|
||||
"Tool created successfully": "ལག་ཆ་ལེགས་པར་བཟོས་ཟིན།",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "Característiques",
|
||||
"Features Permissions": "Permisos de les característiques",
|
||||
"February": "Febrer",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Històric de comentaris",
|
||||
"Feedbacks": "Comentaris",
|
||||
"Feel free to add specific details": "Sent-te lliure d'afegir detalls específics",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Perdut",
|
||||
"LTR": "LTR",
|
||||
"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 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",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Versió d'Ollama",
|
||||
"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": "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 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",
|
||||
"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.",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "30 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",
|
||||
"Read": "Llegit",
|
||||
"Read Aloud": "Llegir en veu alta",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "Esforç de raonament",
|
||||
"Record": "Enregistrar",
|
||||
"Record voice": "Enregistrar la veu",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Rellevància",
|
||||
"Relevance Threshold": "Límit de rellevància",
|
||||
"Remove": "Eliminar",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Eliminar el model",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Canviar el nom",
|
||||
"Reorder Models": "Reordenar els models",
|
||||
"Reply in Thread": "Respondre al fil",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Compartir el xat",
|
||||
"Share to Open WebUI Community": "Compartir amb la comunitat OpenWebUI",
|
||||
"Sharing Permissions": "Compartir els permisos",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Mostrar",
|
||||
"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",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Error de reconeixement de veu: {{error}}",
|
||||
"Speech-to-Text Engine": "Motor de veu a text",
|
||||
"Stop": "Atura",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Atura la seqüència",
|
||||
"Stream Chat Response": "Fer streaming de la resposta del xat",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Alterna preferències",
|
||||
"Toggle sidebar": "Alterna la barra lateral",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Token",
|
||||
"Too verbose": "Massa explicit",
|
||||
"Tool created successfully": "Eina creada correctament",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"LTR": "",
|
||||
"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 export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama nga bersyon",
|
||||
"On": "Gipaandar",
|
||||
"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 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.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "",
|
||||
"Previous 7 days": "",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "Irekord ang tingog",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "",
|
||||
"Share to Open WebUI Community": "Ipakigbahin sa komunidad sa OpenWebUI",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Pagpakita",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Sayop sa pag-ila sa tingog: {{error}}",
|
||||
"Speech-to-Text Engine": "Engine sa pag-ila sa tingog",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Pagkasunod-sunod sa pagsira",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "I-toggle ang mga setting",
|
||||
"Toggle sidebar": "I-toggle ang sidebar",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "Únor",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Historie zpětné vazby",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "Neváhejte přidat konkrétní detaily.",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Ztracený",
|
||||
"LTR": "LTR",
|
||||
"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 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",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Verze Ollama",
|
||||
"On": "Na",
|
||||
"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 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.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Pozitivní přístup",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "Předchozích 30 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.",
|
||||
"Read": "",
|
||||
"Read Aloud": "Číst nahlas",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "Nahrát hlas",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Relevance",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Odebrat",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Odebrat model",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Přejmenovat",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Sdílet chat",
|
||||
"Share to Open WebUI Community": "Sdílet s komunitou OpenWebUI",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Zobrazit",
|
||||
"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",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Chyba rozpoznávání řeči: {{error}}",
|
||||
"Speech-to-Text Engine": "Motor převodu řeči na text",
|
||||
"Stop": "Zastavit",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Sekvence Zastavení",
|
||||
"Stream Chat Response": "Odezva chatu Stream",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Přepnout nastavení",
|
||||
"Toggle sidebar": "Přepnout postranní panel",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Token",
|
||||
"Too verbose": "Příliš upovídané",
|
||||
"Tool created successfully": "Nástroj byl úspěšně vytvořen.",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "Features",
|
||||
"Features Permissions": "",
|
||||
"February": "Februar",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "Feedback",
|
||||
"Feel free to add specific details": "Du er velkommen til at tilføje specifikke detaljer",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Tabt",
|
||||
"LTR": "LTR",
|
||||
"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 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",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama-version",
|
||||
"On": "Til",
|
||||
"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 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.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Positiv holdning",
|
||||
"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",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "Seneste 30 dage",
|
||||
"Previous 7 days": "Seneste 7 dage",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "Læs",
|
||||
"Read Aloud": "Læs højt",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "Optag",
|
||||
"Record voice": "Optag stemme",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Fjern",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Fjern model",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Omdøb",
|
||||
"Reorder Models": "Omarranger modeller",
|
||||
"Reply in Thread": "Svar i tråd",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Del chat",
|
||||
"Share to Open WebUI Community": "Del til OpenWebUI Community",
|
||||
"Sharing Permissions": "Delingstilladelser",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Vis",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"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-to-Text Engine": "Tale-til-tekst-engine",
|
||||
"Stop": "Stop",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Stopsekvens",
|
||||
"Stream Chat Response": "Stream chatsvar",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Skift indstillinger",
|
||||
"Toggle sidebar": "Skift sidebjælke",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "For ordrigt",
|
||||
"Tool created successfully": "Værktøj oprettet.",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "Funktionalitäten",
|
||||
"Features Permissions": "Funktionen-Berechtigungen",
|
||||
"February": "Februar",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Feedback-Verlauf",
|
||||
"Feedbacks": "Feedbacks",
|
||||
"Feel free to add specific details": "Fühlen Sie sich frei, spezifische Details hinzuzufügen",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Verloren",
|
||||
"LTR": "LTR",
|
||||
"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 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",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama-Version",
|
||||
"On": "Ein",
|
||||
"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 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.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Positive Einstellung",
|
||||
"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",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "Vorschau",
|
||||
"Previous 30 days": "Vorherige 30 Tage",
|
||||
"Previous 7 days": "Vorherige 7 Tage",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "Modelle nach thematischer Ähnlichkeit neu ordnen",
|
||||
"Read": "Lesen",
|
||||
"Read Aloud": "Vorlesen",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "Schlussfolgerungsaufwand",
|
||||
"Record": "Aufzeichnen",
|
||||
"Record voice": "Stimme aufnehmen",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Relevanz",
|
||||
"Relevance Threshold": "Relevanzschwelle",
|
||||
"Remove": "Entfernen",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Modell entfernen",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Umbenennen",
|
||||
"Reorder Models": "Modelle neu anordnen",
|
||||
"Reply in Thread": "Im Thread antworten",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Chat teilen",
|
||||
"Share to Open WebUI Community": "Mit OpenWebUI Community teilen",
|
||||
"Sharing Permissions": "Berechtigungen teilen",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "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",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Spracherkennungsfehler: {{error}}",
|
||||
"Speech-to-Text Engine": "Sprache-zu-Text-Engine",
|
||||
"Stop": "Stop",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Stop-Sequenz",
|
||||
"Stream Chat Response": "Chat-Antwort streamen",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "Suche umschalten",
|
||||
"Toggle settings": "Einstellungen umschalten",
|
||||
"Toggle sidebar": "Seitenleiste umschalten",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Token",
|
||||
"Too verbose": "Zu ausführlich",
|
||||
"Tool created successfully": "Werkzeug erfolgreich erstellt",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"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.": "",
|
||||
"Manage": "",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama Version",
|
||||
"On": "On",
|
||||
"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 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.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "",
|
||||
"Previous 7 days": "",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "Record Bark",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "",
|
||||
"Share to Open WebUI Community": "Share to Open WebUI Community much community",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Show much show",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Speech recognition error: {{error}} so error",
|
||||
"Speech-to-Text Engine": "Speech-to-Text Engine much speak",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Stop Sequence much stop",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Toggle settings much toggle",
|
||||
"Toggle sidebar": "Toggle sidebar much toggle",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "Φεβρουάριος",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Ιστορικό Ανατροφοδότησης",
|
||||
"Feedbacks": "Ανατροφοδοτήσεις",
|
||||
"Feel free to add specific details": "Νιώστε ελεύθεροι να προσθέσετε συγκεκριμένες λεπτομέρειες",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Χαμένος",
|
||||
"LTR": "LTR",
|
||||
"Made by Open WebUI Community": "Δημιουργήθηκε από την Κοινότητα OpenWebUI",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Βεβαιωθείτε ότι τα περικλείετε με",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Βεβαιωθείτε ότι εξάγετε ένα αρχείο workflow.json ως μορφή API από το ComfyUI.",
|
||||
"Manage": "Διαχείριση",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Έκδοση Ollama",
|
||||
"On": "On",
|
||||
"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 in the command string.": "Επιτρέπονται μόνο αλφαριθμητικοί χαρακτήρες και παύλες στο string της εντολής.",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Μόνο συλλογές μπορούν να επεξεργαστούν, δημιουργήστε μια νέα βάση γνώσης για επεξεργασία/προσθήκη εγγράφων.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Θετική στάση",
|
||||
"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 των μοντέλων - αφήστε κενό για απενεργοποίηση",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "Προηγούμενες 30 ημέρες",
|
||||
"Previous 7 days": "Προηγούμενες 7 ημέρες",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "Επανατάξη μοντέλων κατά ομοιότητα θέματος",
|
||||
"Read": "",
|
||||
"Read Aloud": "Ανάγνωση Φωναχτά",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "Εγγραφή φωνής",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Σχετικότητα",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Αφαίρεση",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Αφαίρεση Μοντέλου",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Μετονομασία",
|
||||
"Reorder Models": "Επαναταξινόμηση Μοντέλων",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Κοινή Χρήση Συνομιλίας",
|
||||
"Share to Open WebUI Community": "Κοινή Χρήση στην Κοινότητα OpenWebUI",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Εμφάνιση",
|
||||
"Show \"What's New\" modal on login": "Εμφάνιση του παράθυρου \"Τι νέο υπάρχει\" κατά την είσοδο",
|
||||
"Show Admin Details in Account Pending Overlay": "Εμφάνιση Λεπτομερειών Διαχειριστή στο Υπέρθεση Εκκρεμής Λογαριασμού",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Σφάλμα αναγνώρισης ομιλίας: {{error}}",
|
||||
"Speech-to-Text Engine": "Μηχανή Speech-to-Text",
|
||||
"Stop": "Σταμάτημα",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Σειρά Παύσης",
|
||||
"Stream Chat Response": "Συνομιλία Ροής Απάντησης",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Εναλλαγή ρυθμίσεων",
|
||||
"Toggle sidebar": "Εναλλαγή πλαϊνού μενού",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Token",
|
||||
"Too verbose": "Πολύ λεπτομερές",
|
||||
"Tool created successfully": "Το εργαλείο δημιουργήθηκε με επιτυχία",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"LTR": "",
|
||||
"Made by Open WebUI Community": "",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "",
|
||||
"On": "",
|
||||
"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 in the command string.": "",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "",
|
||||
"Previous 7 days": "",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "",
|
||||
"Share to Open WebUI Community": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "",
|
||||
"Speech-to-Text Engine": "",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "",
|
||||
"Toggle sidebar": "",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"LTR": "",
|
||||
"Made by Open WebUI Community": "",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "",
|
||||
"On": "",
|
||||
"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 in the command string.": "",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "",
|
||||
"Previous 7 days": "",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "",
|
||||
"Share to Open WebUI Community": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "",
|
||||
"Speech-to-Text Engine": "",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "",
|
||||
"Toggle sidebar": "",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "Características",
|
||||
"Features Permissions": "Permisos de las Características",
|
||||
"February": "Febrero",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Historial de Opiniones",
|
||||
"Feedbacks": "Opiniones",
|
||||
"Feel free to add specific details": "Añade libremente detalles específicos",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Perdido",
|
||||
"LTR": "LTR",
|
||||
"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 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",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Versión de Ollama",
|
||||
"On": "Activado",
|
||||
"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 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",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Actitud Positiva",
|
||||
"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",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "30 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",
|
||||
"Read": "Leer",
|
||||
"Read Aloud": "Leer en voz alta",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "Esfuerzo del Razonamiento",
|
||||
"Record": "",
|
||||
"Record voice": "Grabar voz",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Relevancia",
|
||||
"Relevance Threshold": "Umbral de Relevancia",
|
||||
"Remove": "Eliminar",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Eliminar Modelo",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Renombrar",
|
||||
"Reorder Models": "Reordenar Modelos",
|
||||
"Reply in Thread": "Responder en Hilo",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Compartir Chat",
|
||||
"Share to Open WebUI Community": "Compartir con la Comunidad Open-WebUI",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Mostrar",
|
||||
"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'",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Error en reconocimiento de voz: {{error}}",
|
||||
"Speech-to-Text Engine": "Motor Voz a Texto(STT)",
|
||||
"Stop": "Detener",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Secuencia de Parada",
|
||||
"Stream Chat Response": "Transmisión Directa de la Respuesta del Chat",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Alternar Ajustes",
|
||||
"Toggle sidebar": "Alternar Barra Lateral",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Token",
|
||||
"Too verbose": "Demasiado detallado",
|
||||
"Tool created successfully": "Herramienta creada correctamente",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "Funktsioonid",
|
||||
"Features Permissions": "Funktsioonide õigused",
|
||||
"February": "Veebruar",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Tagasiside ajalugu",
|
||||
"Feedbacks": "Tagasisided",
|
||||
"Feel free to add specific details": "Võite lisada konkreetseid üksikasju",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Kaotanud",
|
||||
"LTR": "LTR",
|
||||
"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 export a workflow.json file as API format from ComfyUI.": "Veenduge, et ekspordite workflow.json faili API formaadis ComfyUI-st.",
|
||||
"Manage": "Halda",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama versioon",
|
||||
"On": "Sees",
|
||||
"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 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.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Positiivne suhtumine",
|
||||
"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",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "Eelmised 30 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",
|
||||
"Read": "Loe",
|
||||
"Read Aloud": "Loe valjult",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "Arutluspingutus",
|
||||
"Record": "",
|
||||
"Record voice": "Salvesta hääl",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Asjakohasus",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Eemalda",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Eemalda mudel",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Nimeta ümber",
|
||||
"Reorder Models": "Muuda mudelite järjekorda",
|
||||
"Reply in Thread": "Vasta lõimes",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Jaga vestlust",
|
||||
"Share to Open WebUI Community": "Jaga Open WebUI kogukonnaga",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Näita",
|
||||
"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",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Kõnetuvastuse viga: {{error}}",
|
||||
"Speech-to-Text Engine": "Kõne-tekstiks mootor",
|
||||
"Stop": "Peata",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Lõpetamise järjestus",
|
||||
"Stream Chat Response": "Voogedasta vestluse vastust",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Lülita seaded",
|
||||
"Toggle sidebar": "Lülita külgriba",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Token",
|
||||
"Too verbose": "Liiga paljusõnaline",
|
||||
"Tool created successfully": "Tööriist edukalt loodud",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "Otsaila",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Feedbacken Historia",
|
||||
"Feedbacks": "Feedbackak",
|
||||
"Feel free to add specific details": "Gehitu xehetasun zehatzak nahi izanez gero",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Galduta",
|
||||
"LTR": "LTR",
|
||||
"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 export a workflow.json file as API format from ComfyUI.": "Ziurtatu workflow.json fitxategia API formatu gisa esportatzen duzula ComfyUI-tik.",
|
||||
"Manage": "Kudeatu",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama bertsioa",
|
||||
"On": "Piztuta",
|
||||
"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 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.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Jarrera positiboa",
|
||||
"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",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "Aurreko 30 egunak",
|
||||
"Previous 7 days": "Aurreko 7 egunak",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "Berrantolatu modeloak gai antzekotasunaren arabera",
|
||||
"Read": "",
|
||||
"Read Aloud": "Irakurri ozen",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "Grabatu ahotsa",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Garrantzia",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Kendu",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Kendu modeloa",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Berrizendatu",
|
||||
"Reorder Models": "Berrantolatu modeloak",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Partekatu txata",
|
||||
"Share to Open WebUI Community": "Partekatu OpenWebUI komunitatearekin",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Erakutsi",
|
||||
"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",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Ahots ezagutze errorea: {{error}}",
|
||||
"Speech-to-Text Engine": "Ahotsetik-testura motorra",
|
||||
"Stop": "Gelditu",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Gelditzeko sekuentzia",
|
||||
"Stream Chat Response": "Transmititu txat erantzuna",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Aldatu ezarpenak",
|
||||
"Toggle sidebar": "Aldatu alboko barra",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Tokena",
|
||||
"Too verbose": "Luzeegia",
|
||||
"Tool created successfully": "Tresna ongi sortu da",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "ویژگی\u200cها",
|
||||
"Features Permissions": "مجوزهای ویژگی\u200cها",
|
||||
"February": "فوریه",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "تاریخچهٔ بازخورد",
|
||||
"Feedbacks": "بازخوردها",
|
||||
"Feel free to add specific details": "اگر به دلخواه، معلومات خاصی اضافه کنید",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "گم شده",
|
||||
"LTR": "LTR",
|
||||
"Made by Open WebUI Community": "ساخته شده توسط OpenWebUI Community",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "مطمئن شوید که آنها را با این محصور کنید:",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "مطمئن شوید که یک فایل workflow.json را به عنوان قالب API از ComfyUI صادر کنید.",
|
||||
"Manage": "مدیریت",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "نسخه ollama",
|
||||
"On": "روشن",
|
||||
"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 in the command string.": "فقط کاراکترهای الفبایی و خط فاصله در رشته فرمان مجاز هستند.",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "فقط مجموعه\u200cها قابل ویرایش هستند، برای ویرایش/افزودن اسناد یک پایگاه دانش جدید ایجاد کنید.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "نظرات مثبت",
|
||||
"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شود - برای غیرفعال کردن خالی بگذارید",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "30 روز قبل",
|
||||
"Previous 7 days": "7 روز قبل",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "رتبه\u200cبندی مجدد مدل\u200cها براساس شباهت موضوعی",
|
||||
"Read": "خواندن",
|
||||
"Read Aloud": "خواندن به صورت صوتی",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "تلاش استدلال",
|
||||
"Record": "",
|
||||
"Record voice": "ضبط صدا",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "ارتباط",
|
||||
"Relevance Threshold": "آستانه ارتباط",
|
||||
"Remove": "حذف",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "حذف مدل",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "تغییر نام",
|
||||
"Reorder Models": "ترتیب مجدد مدل\u200cها",
|
||||
"Reply in Thread": "پاسخ در رشته",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "اشتراک\u200cگذاری چت",
|
||||
"Share to Open WebUI Community": "اشتراک گذاری با OpenWebUI Community",
|
||||
"Sharing Permissions": "مجوزهای اشتراک\u200cگذاری",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "نمایش",
|
||||
"Show \"What's New\" modal on login": "نمایش مودال \"موارد جدید\" هنگام ورود",
|
||||
"Show Admin Details in Account Pending Overlay": "نمایش جزئیات مدیر در پوشش حساب در انتظار",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "خطای تشخیص گفتار: {{error}}",
|
||||
"Speech-to-Text Engine": "موتور گفتار به متن",
|
||||
"Stop": "توقف",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "توقف توالی",
|
||||
"Stream Chat Response": "پاسخ چت جریانی",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "نمایش/عدم نمایش تنظیمات",
|
||||
"Toggle sidebar": "نمایش/عدم نمایش نوار کناری",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "توکن",
|
||||
"Too verbose": "خیلی طولانی",
|
||||
"Tool created successfully": "ابزار با موفقیت ایجاد شد",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "Ominaisuudet",
|
||||
"Features Permissions": "Ominaisuuksien käyttöoikeudet",
|
||||
"February": "helmikuu",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Palautehistoria",
|
||||
"Feedbacks": "Palautteet",
|
||||
"Feel free to add specific details": "Voit lisätä tarkempia tietoja",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Mennyt",
|
||||
"LTR": "LTR",
|
||||
"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 export a workflow.json file as API format from ComfyUI.": "Muista viedä workflow.json-tiedosto API-muodossa ComfyUI:sta.",
|
||||
"Manage": "Hallitse",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama-versio",
|
||||
"On": "Päällä",
|
||||
"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 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.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Positiivinen asenne",
|
||||
"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ä",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "Esikatselu",
|
||||
"Previous 30 days": "Edelliset 30 päivää",
|
||||
"Previous 7 days": "Edelliset 7 päivää",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "Uudelleenjärjestä mallit aiheyhteyden mukaan",
|
||||
"Read": "Lue",
|
||||
"Read Aloud": "Lue ääneen",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "Nauhoita",
|
||||
"Record voice": "Nauhoita ääntä",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Relevanssi",
|
||||
"Relevance Threshold": "Relevanssikynnys",
|
||||
"Remove": "Poista",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Poista malli",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Nimeä uudelleen",
|
||||
"Reorder Models": "Uudelleenjärjestä malleja",
|
||||
"Reply in Thread": "Vastauksia ",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Jaa keskustelu",
|
||||
"Share to Open WebUI Community": "Jaa OpenWebUI-yhteisöön",
|
||||
"Sharing Permissions": "Jako oikeudet",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Näytä",
|
||||
"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ä",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Puheentunnistusvirhe: {{error}}",
|
||||
"Speech-to-Text Engine": "Puheentunnistusmoottori",
|
||||
"Stop": "Pysäytä",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Lopetussekvenssi",
|
||||
"Stream Chat Response": "Streamaa keskusteluvastaus",
|
||||
"Strip Existing OCR": "Poista olemassa oleva OCR",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "Kytke haku",
|
||||
"Toggle settings": "Kytke asetukset",
|
||||
"Toggle sidebar": "Kytke sivupalkki",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Token",
|
||||
"Too verbose": "Liian puhelias",
|
||||
"Tool created successfully": "Työkalu luotu onnistuneesti",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "Février",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "N'hésitez pas à ajouter des détails spécifiques",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"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 export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Gérer",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Version Ollama améliorée",
|
||||
"On": "Activé",
|
||||
"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 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.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Attitude positive",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "30 derniers jours",
|
||||
"Previous 7 days": "7 derniers jours",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Lire à haute voix",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "Enregistrer la voix",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Retirer",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Retirer le modèle",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Renommer",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Partage de conversation",
|
||||
"Share to Open WebUI Community": "Partager avec la communauté OpenWebUI",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Montrer",
|
||||
"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",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Erreur de reconnaissance vocale\u00a0: {{error}}",
|
||||
"Speech-to-Text Engine": "Moteur de reconnaissance vocale",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Séquence d'arrêt",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Basculer les paramètres",
|
||||
"Toggle sidebar": "Basculer la barre latérale",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "L'outil a été créé avec succès",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "Fonctionnalités",
|
||||
"Features Permissions": "Autorisations des fonctionnalités",
|
||||
"February": "Février",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Historique des avis",
|
||||
"Feedbacks": "Avis",
|
||||
"Feel free to add specific details": "N'hésitez pas à ajouter des détails spécifiques",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Perdu",
|
||||
"LTR": "LTR",
|
||||
"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 export a workflow.json file as API format from ComfyUI.": "Veillez à exporter un fichier workflow.json au format API depuis ComfyUI.",
|
||||
"Manage": "Gérer",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Version d'Ollama",
|
||||
"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": "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 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",
|
||||
"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",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "30 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",
|
||||
"Read": "Lire",
|
||||
"Read Aloud": "Lire à haute voix",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "Effort de raisonnement",
|
||||
"Record": "",
|
||||
"Record voice": "Enregistrer la voix",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Pertinence",
|
||||
"Relevance Threshold": "Seuil de pertinence",
|
||||
"Remove": "Retirer",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Retirer le modèle",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Renommer",
|
||||
"Reorder Models": "Réorganiser les modèles",
|
||||
"Reply in Thread": "Répondre dans le fil de discussion",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Partage de conversation",
|
||||
"Share to Open WebUI Community": "Partager avec la communauté OpenWebUI",
|
||||
"Sharing Permissions": "Autorisation de partage",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Afficher",
|
||||
"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",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Erreur de reconnaissance vocale : {{error}}",
|
||||
"Speech-to-Text Engine": "Moteur de reconnaissance vocale",
|
||||
"Stop": "Stop",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Séquence d'arrêt",
|
||||
"Stream Chat Response": "Streamer la réponse de la conversation",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Afficher/masquer les paramètres",
|
||||
"Toggle sidebar": "Afficher/masquer la barre latérale",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Token",
|
||||
"Too verbose": "Trop détaillé",
|
||||
"Tool created successfully": "L'outil a été créé avec succès",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "פברואר",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "נא להוסיף פרטים ספציפיים לפי רצון",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by Open WebUI Community": "נוצר על ידי קהילת OpenWebUI",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "ודא להקיף אותם עם",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "גרסת Ollama",
|
||||
"On": "פועל",
|
||||
"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 in the command string.": "רק תווים אלפאנומריים ומקפים מותרים במחרוזת הפקודה.",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "גישה חיובית",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "30 הימים הקודמים",
|
||||
"Previous 7 days": "7 הימים הקודמים",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "קרא בקול",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "הקלט קול",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "הסר",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "הסר מודל",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "שנה שם",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "שתף צ'אט",
|
||||
"Share to Open WebUI Community": "שתף לקהילת OpenWebUI",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "הצג",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "שגיאת תחקור שמע: {{error}}",
|
||||
"Speech-to-Text Engine": "מנוע תחקור שמע",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "סידור עצירה",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "החלפת מצב של הגדרות",
|
||||
"Toggle sidebar": "החלפת מצב של סרגל הצד",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "फरवरी",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "विशिष्ट विवरण जोड़ने के लिए स्वतंत्र महसूस करें",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by Open WebUI Community": "OpenWebUI समुदाय द्वारा निर्मित",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "उन्हें संलग्न करना सुनिश्चित करें",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama Version",
|
||||
"On": "चालू",
|
||||
"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 in the command string.": "कमांड स्ट्रिंग में केवल अल्फ़ान्यूमेरिक वर्ण और हाइफ़न की अनुमति है।",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "सकारात्मक रवैया",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "पिछले 30 दिन",
|
||||
"Previous 7 days": "पिछले 7 दिन",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "जोर से पढ़ें",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "आवाज रिकॉर्ड करना",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "हटा दें",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "मोडेल हटाएँ",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "नाम बदलें",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "चैट साझा करें",
|
||||
"Share to Open WebUI Community": "OpenWebUI समुदाय में साझा करें",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "दिखाओ",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "वाक् पहचान त्रुटि: {{error}}",
|
||||
"Speech-to-Text Engine": "वाक्-से-पाठ इंजन",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "अनुक्रम रोकें",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "सेटिंग्स टॉगल करें",
|
||||
"Toggle sidebar": "साइडबार टॉगल करें",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "Veljača",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "Slobodno dodajte specifične detalje",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"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 export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Upravljaj",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama verzija",
|
||||
"On": "Uključeno",
|
||||
"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 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.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Pozitivan stav",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "Prethodnih 30 dana",
|
||||
"Previous 7 days": "Prethodnih 7 dana",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Čitaj naglas",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "Snimanje glasa",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Ukloni",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Ukloni model",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Preimenuj",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Podijeli razgovor",
|
||||
"Share to Open WebUI Community": "Podijeli u OpenWebUI zajednici",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Pokaži",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Pogreška prepoznavanja govora: {{error}}",
|
||||
"Speech-to-Text Engine": "Stroj za prepoznavanje govora",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Zaustavi sekvencu",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Prebaci postavke",
|
||||
"Toggle sidebar": "Prebaci bočnu traku",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "Funkciók",
|
||||
"Features Permissions": "Funkciók engedélyei",
|
||||
"February": "Február",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Visszajelzés előzmények",
|
||||
"Feedbacks": "Visszajelzések",
|
||||
"Feel free to add specific details": "Nyugodtan adj hozzá specifikus részleteket",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Elveszett",
|
||||
"LTR": "LTR",
|
||||
"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 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",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama verzió",
|
||||
"On": "Be",
|
||||
"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 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.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Pozitív hozzáállás",
|
||||
"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",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "Előző 30 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",
|
||||
"Read": "Olvasás",
|
||||
"Read Aloud": "Felolvasás",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "Érvelési erőfeszítés",
|
||||
"Record": "",
|
||||
"Record voice": "Hang rögzítése",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Relevancia",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Eltávolítás",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Modell eltávolítása",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Átnevezés",
|
||||
"Reorder Models": "Modellek átrendezése",
|
||||
"Reply in Thread": "Válasz szálban",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Beszélgetés megosztása",
|
||||
"Share to Open WebUI Community": "Megosztás az OpenWebUI közösséggel",
|
||||
"Sharing Permissions": "Megosztási engedélyek",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Mutat",
|
||||
"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",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Beszédfelismerési hiba: {{error}}",
|
||||
"Speech-to-Text Engine": "Beszéd-szöveg motor",
|
||||
"Stop": "Leállítás",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Leállítási szekvencia",
|
||||
"Stream Chat Response": "Chat válasz streamelése",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Beállítások be/ki",
|
||||
"Toggle sidebar": "Oldalsáv be/ki",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Token",
|
||||
"Too verbose": "Túl bőbeszédű",
|
||||
"Tool created successfully": "Eszköz sikeresen létrehozva",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "Februari",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "Jangan ragu untuk menambahkan detail spesifik",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"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 export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Mengelola",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Versi Ollama",
|
||||
"On": "Aktif",
|
||||
"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 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.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Sikap positif",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "30 hari sebelumnya",
|
||||
"Previous 7 days": "7 hari sebelumnya",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Baca dengan Keras",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "Rekam suara",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Hapus",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Hapus Model",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Ganti nama",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Bagikan Obrolan",
|
||||
"Share to Open WebUI Community": "Bagikan ke Komunitas OpenWebUI",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Tampilkan",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"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-to-Text Engine": "Mesin Pengenal Ucapan ke Teks",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Hentikan Urutan",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Beralih pengaturan",
|
||||
"Toggle sidebar": "Beralih bilah sisi",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "Alat berhasil dibuat",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "Gnéithe",
|
||||
"Features Permissions": "Ceadanna Gnéithe",
|
||||
"February": "Feabhra",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Stair Aiseolais",
|
||||
"Feedbacks": "Aiseolas",
|
||||
"Feel free to add specific details": "Ná bíodh leisce ort sonraí ar leith a chur leis",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Cailleadh",
|
||||
"LTR": "LTR",
|
||||
"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 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ú",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Leagan Ollama",
|
||||
"On": "Ar",
|
||||
"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 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.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Dearcadh dearfach",
|
||||
"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ú",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "Réamhamharc",
|
||||
"Previous 30 days": "30 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í",
|
||||
"Read": "Léigh",
|
||||
"Read Aloud": "Léigh Ard",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "Iarracht Réasúnúcháin",
|
||||
"Record": "Taifead",
|
||||
"Record voice": "Taifead guth",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Ábharthacht",
|
||||
"Relevance Threshold": "Tairseach Ábharthaíochta",
|
||||
"Remove": "Bain",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Bain Múnla",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Athainmnigh",
|
||||
"Reorder Models": "Múnlaí Athordú",
|
||||
"Reply in Thread": "Freagra i Snáithe",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Comhroinn Comhrá",
|
||||
"Share to Open WebUI Community": "Comhroinn le Pobal OpenWebUI",
|
||||
"Sharing Permissions": "Ceadanna a Roinnt",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Taispeáin",
|
||||
"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",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Earráid aitheantais cainte: {{error}}",
|
||||
"Speech-to-Text Engine": "Inneall Cainte-go-Téacs",
|
||||
"Stop": "Stad",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Stop Seicheamh",
|
||||
"Stream Chat Response": "Freagra Comhrá Sruth",
|
||||
"Strip Existing OCR": "Bain OCR atá ann cheana",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "Scoránaigh cuardach",
|
||||
"Toggle settings": "Socraigh socruithe",
|
||||
"Toggle sidebar": "Athraigh barra taobh",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Comhartha",
|
||||
"Too verbose": "Ró-fhocal",
|
||||
"Tool created successfully": "Uirlis cruthaithe go rathúil",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "Caratteristiche",
|
||||
"Features Permissions": "Permessi delle funzionalità",
|
||||
"February": "Febbraio",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Storico feedback",
|
||||
"Feedbacks": "Feedback",
|
||||
"Feel free to add specific details": "Sentiti libero/a di aggiungere dettagli specifici",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Perso",
|
||||
"LTR": "LTR",
|
||||
"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 export a workflow.json file as API format from ComfyUI.": "Assicurati di esportare un file workflow.json come formato API da ComfyUI.",
|
||||
"Manage": "Gestisci",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Versione Ollama",
|
||||
"On": "Attivato",
|
||||
"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 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.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Attitudine positiva",
|
||||
"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",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "Anteprima",
|
||||
"Previous 30 days": "Ultimi 30 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",
|
||||
"Read": "Leggi",
|
||||
"Read Aloud": "Leggi ad Alta Voce",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "Sforzo di ragionamento",
|
||||
"Record": "Registra",
|
||||
"Record voice": "Registra voce",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Rilevanza",
|
||||
"Relevance Threshold": "Soglia di Rilevanza",
|
||||
"Remove": "Rimuovi",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Rimuovi Modello",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Rinomina",
|
||||
"Reorder Models": "Riordina Modelli",
|
||||
"Reply in Thread": "Rispondi nel thread",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Condividi chat",
|
||||
"Share to Open WebUI Community": "Condividi con la comunità OpenWebUI",
|
||||
"Sharing Permissions": "Condivisione dei permessi",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Mostra",
|
||||
"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",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Errore di riconoscimento vocale: {{error}}",
|
||||
"Speech-to-Text Engine": "Motore da voce a testo",
|
||||
"Stop": "Arresta",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Sequenza di arresto",
|
||||
"Stream Chat Response": "Stream risposta chat",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Attiva/disattiva impostazioni",
|
||||
"Toggle sidebar": "Attiva/disattiva barra laterale",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Token",
|
||||
"Too verbose": "Troppo prolisso",
|
||||
"Tool created successfully": "Tool creato con successo",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "機能の許可",
|
||||
"February": "2月",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "フィードバック履歴",
|
||||
"Feedbacks": "フィードバック",
|
||||
"Feel free to add specific details": "詳細を追加してください",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by Open WebUI Community": "OpenWebUI コミュニティによって作成",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "必ず次で囲んでください",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "管理",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama バージョン",
|
||||
"On": "オン",
|
||||
"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 in the command string.": "コマンド文字列には英数字とハイフンのみが許可されています。",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "コレクションのみ編集できます。新しいナレッジベースを作成してドキュメントを編集/追加してください。",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"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 はモデル ID に接頭辞を追加することで、他の接続との競合を避けるために使用されます - 空の場合は無効にします",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "前の30日間",
|
||||
"Previous 7 days": "前の7日間",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "トピックの類似性に基づいてモデルを再ランク付け",
|
||||
"Read": "読み込む",
|
||||
"Read Aloud": "読み上げ",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "推理の努力",
|
||||
"Record": "録音",
|
||||
"Record voice": "音声を録音",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "関連性",
|
||||
"Relevance Threshold": "関連性の閾値",
|
||||
"Remove": "削除",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "モデルを削除",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "名前を変更",
|
||||
"Reorder Models": "モデルを並べ替え",
|
||||
"Reply in Thread": "スレッドで返信",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "チャットを共有",
|
||||
"Share to Open WebUI Community": "OpenWebUI コミュニティに共有",
|
||||
"Sharing Permissions": "共有許可",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "表示",
|
||||
"Show \"What's New\" modal on login": "ログイン時に「新しいこと」モーダルを表示",
|
||||
"Show Admin Details in Account Pending Overlay": "アカウント保留中の管理者詳細を表示",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "音声認識エラー: {{error}}",
|
||||
"Speech-to-Text Engine": "音声テキスト変換エンジン",
|
||||
"Stop": "停止",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "ストップシーケンス",
|
||||
"Stream Chat Response": "チャットレスポンスのストリーム",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "設定を切り替え",
|
||||
"Toggle sidebar": "サイドバーを切り替え",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "トークン",
|
||||
"Too verbose": "冗長すぎます",
|
||||
"Tool created successfully": "ツールが正常に作成されました",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "მახასიათებლები",
|
||||
"Features Permissions": "",
|
||||
"February": "თებერვალი",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "სპეციფიკური დეტალების დამატება პრობლემა არაა",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "წაგება",
|
||||
"LTR": "LTR",
|
||||
"Made by Open WebUI Community": "შექმნილია OpenWebUI საზოგადოების მიერ",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "დარწმუნდით, რომ ჩასვით ისინი",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "მართვა",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama ვერსია",
|
||||
"On": "ჩართული",
|
||||
"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 in the command string.": "ბრძანების სტრიქონში დაშვებულია, მხოლოდ, ალფარიცხვითი სიმბოლოები და ტირეები.",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "პოზიტიური დამოკიდებულება",
|
||||
"Prefix ID": "პრეფიქსის ",
|
||||
"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": "",
|
||||
"Previous 30 days": "წინა 30 დღე",
|
||||
"Previous 7 days": "წინა 7 დღე",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "წაკითხვა",
|
||||
"Read Aloud": "ხმამაღლა წაკითხვა",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "ხმის ჩაწერა",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "შესაბამისობა",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "წაშლა",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "მოდელის წაშლა",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "სახელის გადარქმევა",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "ნაკადში პასუხი",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "ჩატის გაზიარება",
|
||||
"Share to Open WebUI Community": "გაზიარება Open WebUI-ის საზოგადოებასთან",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "ჩვენება",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "საუბრის ამოცნობის შეცდომა: {{error}}",
|
||||
"Speech-to-Text Engine": "საუბრიდან-ტექსტამდე-ის ძრავი",
|
||||
"Stop": "გაჩერება",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "შეჩერების მიმდევრობა",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "პარამეტრების გადართვა",
|
||||
"Toggle sidebar": "გვერდითი ზოლის ჩართ/გამორთ",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "კოდი",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "기능",
|
||||
"Features Permissions": "기능 권한",
|
||||
"February": "2월",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "피드백 기록",
|
||||
"Feedbacks": "피드백",
|
||||
"Feel free to add specific details": "자세한 내용을 자유롭게 추가하세요.",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "패배",
|
||||
"LTR": "LTR",
|
||||
"Made by Open WebUI Community": "OpenWebUI 커뮤니티에 의해 개발됨",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "꼭 다음으로 감싸세요:",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "꼭 workflow.json 파일을 ComfyUI의 API 형식대로 내보내세요",
|
||||
"Manage": "관리",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama 버전",
|
||||
"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 in the command string.": "명령어 문자열에는 영문자, 숫자 및 하이픈(-)만 허용됩니다.",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "가지고 있는 컬렉션만 수정 가능합니다, 새 지식 기반을 생성하여 문서를 수정 혹은 추가하십시오.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"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는 모델 ID에 접두사를 추가하여 다른 연결과의 충돌을 방지하는 데 사용됩니다. - 비활성화하려면 비워 둡니다.",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "이전 30일",
|
||||
"Previous 7 days": "이전 7일",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "주제 유사성으로 모델을 재정렬하기",
|
||||
"Read": "읽기",
|
||||
"Read Aloud": "읽어주기",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "추론 난이도",
|
||||
"Record": "",
|
||||
"Record voice": "음성 녹음",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "관련도",
|
||||
"Relevance Threshold": "관련성 임계값",
|
||||
"Remove": "삭제",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "모델 삭제",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "이름 변경",
|
||||
"Reorder Models": "모델 재정렬",
|
||||
"Reply in Thread": "스레드로 답장하기",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "채팅 공유",
|
||||
"Share to Open WebUI Community": "OpenWebUI 커뮤니티에 공유",
|
||||
"Sharing Permissions": "권한 공유",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "보기",
|
||||
"Show \"What's New\" modal on login": "로그인시 \"새로운 기능\" 모달 보기",
|
||||
"Show Admin Details in Account Pending Overlay": "사용자용 계정 보류 설명창에, 관리자 상세 정보 노출",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "음성 인식 오류: {{error}}",
|
||||
"Speech-to-Text Engine": "음성-텍스트 변환 엔진",
|
||||
"Stop": "정지",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "중지 시퀀스",
|
||||
"Stream Chat Response": "스트림 채팅 응답",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "검색 전환",
|
||||
"Toggle settings": "설정 전환",
|
||||
"Toggle sidebar": "사이드바 전환",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "토큰",
|
||||
"Too verbose": "말이 너무 많음",
|
||||
"Tool created successfully": "성공적으로 도구가 생성되었습니다.",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "Vasaris",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "Galite pridėti specifinių detalių",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"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 export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Tvarkyti",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama versija",
|
||||
"On": "Aktyvuota",
|
||||
"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 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.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Pozityvus elgesys",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "Paskutinės 30 dienų",
|
||||
"Previous 7 days": "Paskutinės 7 dienos",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Skaityti garsiai",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "Įrašyti balsą",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Pašalinti",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Pašalinti modelį",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Pervadinti",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Dalintis pokalbiu",
|
||||
"Share to Open WebUI Community": "Dalintis su OpenWebUI bendruomene",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Rodyti",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"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-to-Text Engine": "Balso atpažinimo modelis",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Baigt sekvenciją",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Atverti/užverti parametrus",
|
||||
"Toggle sidebar": "Atverti/užverti šoninį meniu",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "Įrankis sukurtas sėkmingai",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "Febuari",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "Jangan ragu untuk menambah butiran khusus",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"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 export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Urus",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Versi Ollama",
|
||||
"On": "Hidup",
|
||||
"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 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.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Sikap positif",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "30 hari sebelumnya",
|
||||
"Previous 7 days": "7 hari sebelumnya",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Baca dengan lantang",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "Rakam suara",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Hapuskan",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Hapuskan Model",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Namakan Semula",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Kongsi Perbualan",
|
||||
"Share to Open WebUI Community": "Kongsi kepada Komuniti OpenWebUI",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Tunjukkan",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"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-to-Text Engine": "Enjin Ucapan-ke-Teks",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Jujukan Henti",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Suis Tetapan ",
|
||||
"Toggle sidebar": "Suis Bar Sisi",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "Alat berjaya dibuat",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "Funksjoner",
|
||||
"Features Permissions": "Tillatelser for funksjoner",
|
||||
"February": "februar",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Tilbakemeldingslogg",
|
||||
"Feedbacks": "Tilbakemeldinger",
|
||||
"Feel free to add specific details": "Legg gjerne til bestemte detaljer",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Tapt",
|
||||
"LTR": "LTR",
|
||||
"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 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",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama-versjon",
|
||||
"On": "Aktivert",
|
||||
"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 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.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Positiv holdning",
|
||||
"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",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "Siste 30 dager",
|
||||
"Previous 7 days": "Siste 7 dager",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "Ny rangering av modeller etter emnelikhet",
|
||||
"Read": "Les",
|
||||
"Read Aloud": "Les høyt",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "Resonneringsinnsats",
|
||||
"Record": "",
|
||||
"Record voice": "Ta opp tale",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Relevans",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Fjern",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Fjern modell",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Gi nytt navn",
|
||||
"Reorder Models": "Sorter modeller på nytt",
|
||||
"Reply in Thread": "Svar i tråd",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Del chat",
|
||||
"Share to Open WebUI Community": "Del med OpenWebUI-fellesskapet",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Vis",
|
||||
"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",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Feil ved talegjenkjenning: {{error}}",
|
||||
"Speech-to-Text Engine": "Motor for Tale-til-tekst",
|
||||
"Stop": "Stopp",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Stoppsekvens",
|
||||
"Stream Chat Response": "Strømme chat-svar",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Veksle innstillinger",
|
||||
"Toggle sidebar": "Veksle sidefelt",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Token",
|
||||
"Too verbose": "For omfattende",
|
||||
"Tool created successfully": "Verktøy opprettet",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "Functies",
|
||||
"Features Permissions": "Functietoestemmingen",
|
||||
"February": "Februari",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Feedback geschiedenis",
|
||||
"Feedbacks": "Feedback",
|
||||
"Feel free to add specific details": "Voeg specifieke details toe",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Verloren",
|
||||
"LTR": "LNR",
|
||||
"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 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",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama Versie",
|
||||
"On": "Aan",
|
||||
"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 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",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Positieve positie",
|
||||
"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",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "Afgelopen 30 dagen",
|
||||
"Previous 7 days": "Afgelopen 7 dagen",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "Herrangschik modellen op basis van onderwerpsovereenkomst",
|
||||
"Read": "Voorlezen",
|
||||
"Read Aloud": "Voorlezen",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "Redeneerinspanning",
|
||||
"Record": "",
|
||||
"Record voice": "Neem stem op",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Relevantie",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Verwijderen",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Verwijder model",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Hernoemen",
|
||||
"Reorder Models": "Herschik modellen",
|
||||
"Reply in Thread": "Antwoord in draad",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Deel chat",
|
||||
"Share to Open WebUI Community": "Deel naar OpenWebUI-community",
|
||||
"Sharing Permissions": "Deeltoestemmingen",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Toon",
|
||||
"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",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Spraakherkenning fout: {{error}}",
|
||||
"Speech-to-Text Engine": "Spraak-naar-tekst Engine",
|
||||
"Stop": "Stop",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Stopsequentie",
|
||||
"Stream Chat Response": "Stream chat-antwoord",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Wissel instellingen",
|
||||
"Toggle sidebar": "Wissel sidebar",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Token",
|
||||
"Too verbose": "Te langdradig",
|
||||
"Tool created successfully": "Gereedschap succesvol aangemaakt",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "ਫਰਵਰੀ",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "ਖੁੱਲ੍ਹੇ ਦਿਲ ਨਾਲ ਖਾਸ ਵੇਰਵੇ ਸ਼ਾਮਲ ਕਰੋ",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by Open WebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਦੁਆਰਾ ਬਣਾਇਆ ਗਿਆ",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਉਨ੍ਹਾਂ ਨੂੰ ਘੇਰੋ",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "ਓਲਾਮਾ ਵਰਜਨ",
|
||||
"On": "ਚਾਲੂ",
|
||||
"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 in the command string.": "ਕਮਾਂਡ ਸਤਰ ਵਿੱਚ ਸਿਰਫ਼ ਅਲਫ਼ਾਨਯੂਮੈਰਿਕ ਅੱਖਰ ਅਤੇ ਹਾਈਫਨ ਦੀ ਆਗਿਆ ਹੈ।",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "ਸਕਾਰਾਤਮਕ ਰਵੱਈਆ",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "ਪਿਛਲੇ 30 ਦਿਨ",
|
||||
"Previous 7 days": "ਪਿਛਲੇ 7 ਦਿਨ",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "ਜੋਰ ਨਾਲ ਪੜ੍ਹੋ",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "ਆਵਾਜ਼ ਰਿਕਾਰਡ ਕਰੋ",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "ਹਟਾਓ",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "ਮਾਡਲ ਹਟਾਓ",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "ਨਾਮ ਬਦਲੋ",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "ਗੱਲਬਾਤ ਸਾਂਝੀ ਕਰੋ",
|
||||
"Share to Open WebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਨਾਲ ਸਾਂਝਾ ਕਰੋ",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "ਦਿਖਾਓ",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "ਬੋਲ ਪਛਾਣ ਗਲਤੀ: {{error}}",
|
||||
"Speech-to-Text Engine": "ਬੋਲ-ਤੋਂ-ਪਾਠ ਇੰਜਣ",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "ਰੋਕੋ ਕ੍ਰਮ",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "ਸੈਟਿੰਗਾਂ ਟੌਗਲ ਕਰੋ",
|
||||
"Toggle sidebar": "ਸਾਈਡਬਾਰ ਟੌਗਲ ਕਰੋ",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "Funkcje",
|
||||
"Features Permissions": "Uprawnienia do funkcji",
|
||||
"February": "Luty",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Historia ocen",
|
||||
"Feedbacks": "Oceny",
|
||||
"Feel free to add specific details": "Nie krępuj się dodawać szczegółów",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Przegrał",
|
||||
"LTR": "LTR",
|
||||
"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 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",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Wersja Ollama",
|
||||
"On": "Włączone",
|
||||
"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 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.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Pozytywne nastawienie",
|
||||
"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ć",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "Ostatnie 30 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",
|
||||
"Read": "Czytaj",
|
||||
"Read Aloud": "Czytaj na głos",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "Wysiłek rozumowania",
|
||||
"Record": "",
|
||||
"Record voice": "Nagraj swój głos",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Trafność",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Usuń",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Usuń model",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Zmień nazwę",
|
||||
"Reorder Models": "Przeorganizuj modele",
|
||||
"Reply in Thread": "Odpowiedz w wątku",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Udostępnij rozmowę",
|
||||
"Share to Open WebUI Community": "Udostępnij w społeczności OpenWebUI",
|
||||
"Sharing Permissions": "Uprawnienia udostępniania",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Wyświetl",
|
||||
"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",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Błąd rozpoznawania mowy: {{error}}",
|
||||
"Speech-to-Text Engine": "Silnik konwersji mowy na tekst",
|
||||
"Stop": "Zatrzymaj",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Zatrzymaj sekwencję",
|
||||
"Stream Chat Response": "Strumieniowanie odpowiedzi z czatu",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Przełącz opcje",
|
||||
"Toggle sidebar": "Przełącz pasek boczny",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Token",
|
||||
"Too verbose": "Zbyt rozwlekłe",
|
||||
"Tool created successfully": "Narzędzie utworzone pomyślnie",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "Fevereiro",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Histórico de comentários",
|
||||
"Feedbacks": "Comentários",
|
||||
"Feel free to add specific details": "Sinta-se à vontade para adicionar detalhes específicos",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Perdeu",
|
||||
"LTR": "Esquerda para Direita",
|
||||
"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 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",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Versão Ollama",
|
||||
"On": "Ligado",
|
||||
"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 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.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Atitude positiva",
|
||||
"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.",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "Últimos 30 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",
|
||||
"Read": "",
|
||||
"Read Aloud": "Ler em Voz Alta",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "Gravar voz",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Relevância",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Remover",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Remover Modelo",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Renomear",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Compartilhar Chat",
|
||||
"Share to Open WebUI Community": "Compartilhar com a Comunidade OpenWebUI",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Mostrar",
|
||||
"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",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}",
|
||||
"Speech-to-Text Engine": "Motor de Transcrição de Fala",
|
||||
"Stop": "Parar",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Sequência de Parada",
|
||||
"Stream Chat Response": "Stream Resposta do Chat",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Alternar configurações",
|
||||
"Toggle sidebar": "Alternar barra lateral",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "Muito detalhado",
|
||||
"Tool created successfully": "Ferramenta criada com sucesso",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "Fevereiro",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "Sinta-se à vontade para adicionar detalhes específicos",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"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 export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Gerir",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Versão do Ollama",
|
||||
"On": "Ligado",
|
||||
"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 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.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Atitude Positiva",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "Últimos 30 dias",
|
||||
"Previous 7 days": "Últimos 7 dias",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Ler em Voz Alta",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "Gravar voz",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Remover",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Remover Modelo",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Renomear",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Partilhar Conversa",
|
||||
"Share to Open WebUI Community": "Partilhar com a Comunidade OpenWebUI",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Mostrar",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"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-to-Text Engine": "Motor de Fala para Texto",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Sequência de Paragem",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Alternar configurações",
|
||||
"Toggle sidebar": "Alternar barra lateral",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "Februarie",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Istoricul feedback-ului",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "Adăugați detalii specifice fără nicio ezitare",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Pierdut",
|
||||
"LTR": "LTR",
|
||||
"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 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ă",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Versiune Ollama",
|
||||
"On": "Activat",
|
||||
"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 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.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Atitudine pozitivă",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "Ultimele 30 de 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ă",
|
||||
"Read": "Citește",
|
||||
"Read Aloud": "Citește cu Voce Tare",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "Înregistrează vocea",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Relevanță",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Înlătură",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Înlătură Modelul",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Redenumește",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Partajează Conversația",
|
||||
"Share to Open WebUI Community": "Partajează cu Comunitatea OpenWebUI",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Afișează",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"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-to-Text Engine": "Motor de Conversie a Vocii în Text",
|
||||
"Stop": "Oprire",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Oprește Secvența",
|
||||
"Stream Chat Response": "Răspuns Stream Chat",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Comută setările",
|
||||
"Toggle sidebar": "Comută bara laterală",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Token",
|
||||
"Too verbose": "Prea detaliat",
|
||||
"Tool created successfully": "Instrumentul a fost creat cu succes",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "Функции",
|
||||
"Features Permissions": "Разрешения для функций",
|
||||
"February": "Февраль",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "История отзывов",
|
||||
"Feedbacks": "Отзывы",
|
||||
"Feel free to add specific details": "Не стесняйтесь добавлять конкретные детали",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Поражение",
|
||||
"LTR": "LTR",
|
||||
"Made by Open WebUI Community": "Сделано сообществом OpenWebUI",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Убедитесь, что они заключены в",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Убедитесь, что экспортируете файл workflow.json в формате API из ComfyUI.",
|
||||
"Manage": "Управление",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Версия Ollama",
|
||||
"On": "Включено",
|
||||
"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 in the command string.": "В строке команды разрешено использовать только буквенно-цифровые символы и дефисы.",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Редактировать можно только коллекции, создайте новую базу знаний для редактирования/добавления документов.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Позитивный настрой",
|
||||
"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 префикса используется для предотвращения конфликтов с другими подключениями путем добавления префикса к идентификаторам моделей - оставьте пустым, чтобы отключить",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "Предпросмотр",
|
||||
"Previous 30 days": "Предыдущие 30 дней",
|
||||
"Previous 7 days": "Предыдущие 7 дней",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "Повторное ранжирование моделей по сходству тем",
|
||||
"Read": "Прочитать",
|
||||
"Read Aloud": "Прочитать вслух",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "Запись",
|
||||
"Record voice": "Записать голос",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Релевантность",
|
||||
"Relevance Threshold": "Порог релевантности",
|
||||
"Remove": "Удалить",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Удалить модель",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Переименовать",
|
||||
"Reorder Models": "Изменение порядка моделей",
|
||||
"Reply in Thread": "Ответить в обсуждении",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Поделиться чатом",
|
||||
"Share to Open WebUI Community": "Поделиться с сообществом OpenWebUI",
|
||||
"Sharing Permissions": "Разрешения на общий доступ",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Показать",
|
||||
"Show \"What's New\" modal on login": "Показывать окно «Что нового» при входе в систему",
|
||||
"Show Admin Details in Account Pending Overlay": "Показывать данные администратора в оверлее ожидающей учетной записи",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Ошибка распознавания речи: {{error}}",
|
||||
"Speech-to-Text Engine": "Система распознавания речи",
|
||||
"Stop": "Остановить",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "",
|
||||
"Stream Chat Response": "Потоковый вывод ответа",
|
||||
"Strip Existing OCR": "Удалять существующие OCR",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "Переключить поиск",
|
||||
"Toggle settings": "Переключить настройки",
|
||||
"Toggle sidebar": "Переключить боковую панель",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Токен",
|
||||
"Too verbose": "Слишком многословно",
|
||||
"Tool created successfully": "Инструмент успешно создан",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "Február",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "História spätnej väzby",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "Neváhajte pridať konkrétne detaily.",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Stratený",
|
||||
"LTR": "LTR",
|
||||
"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 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ť",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Verzia Ollama",
|
||||
"On": "Zapnuté",
|
||||
"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 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.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Pozitívny prístup",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "Predchádzajúcich 30 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.",
|
||||
"Read": "",
|
||||
"Read Aloud": "Čítať nahlas",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "Nahrať hlas",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Relevancia",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Odstrániť",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Odstrániť model",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Premenovať",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Zdieľať chat",
|
||||
"Share to Open WebUI Community": "Zdieľať s komunitou OpenWebUI",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Zobraziť",
|
||||
"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",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Chyba rozpoznávania reči: {{error}}",
|
||||
"Speech-to-Text Engine": "Motor prevodu reči na text",
|
||||
"Stop": "Zastaviť",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Sekvencia zastavenia",
|
||||
"Stream Chat Response": "Odozva chatu Stream",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Prepnúť nastavenia",
|
||||
"Toggle sidebar": "Prepnúť bočný panel",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Token",
|
||||
"Too verbose": "Príliš rozvláčne",
|
||||
"Tool created successfully": "Nástroj bol úspešne vytvorený.",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "Фебруар",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Историјат повратних података",
|
||||
"Feedbacks": "Повратни подаци",
|
||||
"Feel free to add specific details": "Слободно додајте специфичне детаље",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Пораза",
|
||||
"LTR": "ЛНД",
|
||||
"Made by Open WebUI Community": "Израдила OpenWebUI заједница",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Уверите се да их затворите са",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Управљај",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Издање Ollama-е",
|
||||
"On": "Укључено",
|
||||
"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 in the command string.": "Само алфанумерички знакови и цртице су дозвољени у низу наредби.",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Позитиван став",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "Претходних 30 дана",
|
||||
"Previous 7 days": "Претходних 7 дана",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "Читање",
|
||||
"Read Aloud": "Прочитај наглас",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "Јачина размишљања",
|
||||
"Record": "",
|
||||
"Record voice": "Сними глас",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Примењивост",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Уклони",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Уклони модел",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Преименуј",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Подели ћаскање",
|
||||
"Share to Open WebUI Community": "Подели са OpenWebUI заједницом",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Прикажи",
|
||||
"Show \"What's New\" modal on login": "Прикажи \"Погледај шта је ново\" прозорче при пријави",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Грешка у препознавању говора: {{error}}",
|
||||
"Speech-to-Text Engine": "Мотор за говор у текст",
|
||||
"Stop": "Заустави",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Секвенца заустављања",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Пребаци подешавања",
|
||||
"Toggle sidebar": "Пребаци бочну траку",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Жетон",
|
||||
"Too verbose": "Преопширно",
|
||||
"Tool created successfully": "Алат направљен успешно",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "februari",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "Tveka inte att lägga till specifika detaljer",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"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 export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Hantera",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama-version",
|
||||
"On": "På",
|
||||
"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 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.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Positivt inställning",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "Föregående 30 dagar",
|
||||
"Previous 7 days": "Föregående 7 dagar",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Läs igenom",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "Spela in röst",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Ta bort",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Ta bort modell",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Byt namn",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Dela chatt",
|
||||
"Share to Open WebUI Community": "Dela till OpenWebUI Community",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Visa",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"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-to-Text Engine": "Tal-till-text-motor",
|
||||
"Stop": "Stopp",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Stoppsekvens",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Växla inställningar",
|
||||
"Toggle sidebar": "Växla sidofält",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "Verktyget skapades framgångsrikt",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "กุมภาพันธ์",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "ประวัติการการตอบรับ",
|
||||
"Feedbacks": "การตอบรับ",
|
||||
"Feel free to add specific details": "สามารถเพิ่มรายละเอียดเฉพาะได้",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by Open WebUI Community": "สร้างโดยชุมชน OpenWebUI",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "จัดการ",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "เวอร์ชั่น Ollama",
|
||||
"On": "เปิด",
|
||||
"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 in the command string.": "อนุญาตให้ใช้เฉพาะอักขระตัวอักษรและตัวเลข รวมถึงเครื่องหมายขีดกลางในสตริงคำสั่งเท่านั้น",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "ทัศนคติด้านบวก",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "30 วันที่ผ่านมา",
|
||||
"Previous 7 days": "7 วันที่ผ่านมา",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "อ่านออกเสียง",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "บันทึกเสียง",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "ลบ",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "ลบโมเดล",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "เปลี่ยนชื่อ",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "แชร์แชท",
|
||||
"Share to Open WebUI Community": "แชร์ไปยังชุมชน OpenWebUI",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "แสดง",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "แสดงรายละเอียดผู้ดูแลระบบในหน้าจอรอการอนุมัติบัญชี",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "ข้อผิดพลาดในการรู้จำเสียง: {{error}}",
|
||||
"Speech-to-Text Engine": "เครื่องมือแปลงเสียงเป็นข้อความ",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "หยุดลำดับ",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "สลับการตั้งค่า",
|
||||
"Toggle sidebar": "สลับแถบด้านข้าง",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "สร้างเครื่องมือเรียบร้อยแล้ว",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "",
|
||||
"LTR": "",
|
||||
"Made by Open WebUI Community": "",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "",
|
||||
"On": "",
|
||||
"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 in the command string.": "",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "",
|
||||
"Previous 7 days": "",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "",
|
||||
"Share to Open WebUI Community": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "",
|
||||
"Speech-to-Text Engine": "",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "",
|
||||
"Stream Chat Response": "",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "",
|
||||
"Toggle sidebar": "",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "",
|
||||
"Too verbose": "",
|
||||
"Tool created successfully": "",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "Özellikler",
|
||||
"Features Permissions": "Özellik Yetkileri",
|
||||
"February": "Şubat",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Geri Bildirim Geçmişi",
|
||||
"Feedbacks": "Geri Bildirimler",
|
||||
"Feel free to add specific details": "Spesifik ayrıntılar eklemekten çekinmeyin",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Kayıp",
|
||||
"LTR": "Soldan Sağa",
|
||||
"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 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",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama Sürümü",
|
||||
"On": "Açık",
|
||||
"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 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.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Olumlu yaklaşım",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "Önceki 30 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",
|
||||
"Read": "Oku",
|
||||
"Read Aloud": "Sesli Oku",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "Kaydet",
|
||||
"Record voice": "Ses kaydı yap",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "İlgili",
|
||||
"Relevance Threshold": "İlgi Eşiği",
|
||||
"Remove": "Kaldır",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Modeli Kaldır",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Yeniden Adlandır",
|
||||
"Reorder Models": "Modelleri Yeniden Sırala",
|
||||
"Reply in Thread": "Konuya Yanıtla",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Sohbeti Paylaş",
|
||||
"Share to Open WebUI Community": "OpenWebUI Topluluğu ile Paylaş",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "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",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Konuşma tanıma hatası: {{error}}",
|
||||
"Speech-to-Text Engine": "Konuşmadan Metne Motoru",
|
||||
"Stop": "Durdur",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Diziyi Durdur",
|
||||
"Stream Chat Response": "SAkış Sohbet Yanıtı",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Ayarları Aç/Kapat",
|
||||
"Toggle sidebar": "Kenar Çubuğunu Aç/Kapat",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Birim",
|
||||
"Too verbose": "Çok ayrıntılı",
|
||||
"Tool created successfully": "Araç başarıyla oluşturuldu",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "Особливості",
|
||||
"Features Permissions": "Дозволи функцій",
|
||||
"February": "Лютий",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Історія відгуків",
|
||||
"Feedbacks": "Відгуки",
|
||||
"Feel free to add specific details": "Не соромтеся додавати конкретні деталі",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Втрачене",
|
||||
"LTR": "LTR",
|
||||
"Made by Open WebUI Community": "Зроблено спільнотою OpenWebUI",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Переконайтеся, що вони закриті",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Обов'язково експортуйте файл workflow.json у форматі API з ComfyUI.",
|
||||
"Manage": "Керувати",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Версія Ollama",
|
||||
"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 in the command string.": "У рядку команди дозволено використовувати лише алфавітно-цифрові символи та дефіси.",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Редагувати можна лише колекції, створіть нову базу знань, щоб редагувати або додавати документи.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Позитивне ставлення",
|
||||
"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 моделей — залиште порожнім, щоб вимкнути",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "Попередні 30 днів",
|
||||
"Previous 7 days": "Попередні 7 днів",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "Перестановка моделей за схожістю тем",
|
||||
"Read": "Читати",
|
||||
"Read Aloud": "Читати вголос",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "Зусилля на міркування",
|
||||
"Record": "",
|
||||
"Record voice": "Записати голос",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Актуальність",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Видалити",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Видалити модель",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Переназвати",
|
||||
"Reorder Models": "Переставити моделі",
|
||||
"Reply in Thread": "Відповісти в потоці",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Поділитися чатом",
|
||||
"Share to Open WebUI Community": "Поділитися зі спільнотою OpenWebUI",
|
||||
"Sharing Permissions": "Дозволи на обмін",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Показати",
|
||||
"Show \"What's New\" modal on login": "Показати модальне вікно \"Що нового\" під час входу",
|
||||
"Show Admin Details in Account Pending Overlay": "Відобразити дані адміна у вікні очікування облікового запису",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "Помилка розпізнавання мови: {{error}}",
|
||||
"Speech-to-Text Engine": "Система розпізнавання мови",
|
||||
"Stop": "Зупинити",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Символ зупинки",
|
||||
"Stream Chat Response": "Відповідь стрім-чату",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Переключити налаштування",
|
||||
"Toggle sidebar": "Переключити бокову панель",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Токен",
|
||||
"Too verbose": "Занадто докладно",
|
||||
"Tool created successfully": "Інструмент успішно створено",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "",
|
||||
"Features Permissions": "",
|
||||
"February": "فروری",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "تاریخ رائے",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "تفصیلات شامل کرنے کے لیے آزاد محسوس کریں",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "گم شدہ",
|
||||
"LTR": "بائیں سے دائیں",
|
||||
"Made by Open WebUI Community": "اوپن ویب یو آئی کمیونٹی کی جانب سے تیار کردہ",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "انہیں کے ساتھ شامل کریں",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "یقینی بنائیں کہ ComfyUI سے workflow.json فائل کو API فارمیٹ میں ایکسپورٹ کریں",
|
||||
"Manage": "مینیج کریں",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "اولاما ورژن",
|
||||
"On": "چالو",
|
||||
"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 in the command string.": "کمانڈ سٹرنگ میں صرف حروفی، عددی کردار اور ہائفن کی اجازت ہے",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "صرف مجموعے ترمیم کیے جا سکتے ہیں، دستاویزات کو ترمیم یا شامل کرنے کے لیے نیا علمی بنیاد بنائیں",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "مثبت رویہ",
|
||||
"Prefix ID": "",
|
||||
"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": "",
|
||||
"Previous 30 days": "پچھلے 30 دن",
|
||||
"Previous 7 days": "پچھلے 7 دن",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "موضوع کی مماثلت کے لحاظ سے ماڈلز کی دوبارہ ترتیب دیں",
|
||||
"Read": "",
|
||||
"Read Aloud": "بُلند آواز میں پڑھیں",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record": "",
|
||||
"Record voice": "صوت ریکارڈ کریں",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "موزونیت",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "ہٹا دیں",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "ماڈل ہٹائیں",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "تبدیل نام کریں",
|
||||
"Reorder Models": "",
|
||||
"Reply in Thread": "",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "چیٹ شیئر کریں",
|
||||
"Share to Open WebUI Community": "اوپن ویب یوآئی کمیونٹی کے ساتھ شیئر کریں\n",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "دکھائیں",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "اکاؤنٹ پینڈنگ اوورلے میں ایڈمن کی تفصیلات دکھائیں",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "تقریر کی پہچان کی خرابی: {{error}}",
|
||||
"Speech-to-Text Engine": "تقریر-سے-متن انجن",
|
||||
"Stop": "روکیں",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "ترتیب روکیں",
|
||||
"Stream Chat Response": "اسٹریم چیٹ جواب",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "ترتیبات کو تبدیل کریں",
|
||||
"Toggle sidebar": "سائڈبار کو ٹوگل کریں",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "ٹوکَن",
|
||||
"Too verbose": "بہت زیادہ طویل",
|
||||
"Tool created successfully": "اوزار کامیابی کے ساتھ تخلیق کیا گیا",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "Tính năng",
|
||||
"Features Permissions": "Quyền Tính năng",
|
||||
"February": "Tháng 2",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "Lịch sử 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",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "Thua",
|
||||
"LTR": "LTR",
|
||||
"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 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ý",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Phiên bản Ollama",
|
||||
"On": "Bật",
|
||||
"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 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.",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "Thái độ tích cực",
|
||||
"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",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "",
|
||||
"Previous 30 days": "30 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ủ đề",
|
||||
"Read": "Đọc",
|
||||
"Read Aloud": "Đọc ra loa",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "Nỗ lực Suy luận",
|
||||
"Record": "",
|
||||
"Record voice": "Ghi âm",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "Mức độ liên quan",
|
||||
"Relevance Threshold": "",
|
||||
"Remove": "Xóa",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "Xóa model",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "Đổi tên",
|
||||
"Reorder Models": "Sắp xếp lại Mô hình",
|
||||
"Reply in Thread": "Trả lời trong Luồng",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "Chia sẻ Chat",
|
||||
"Share to Open WebUI Community": "Chia sẻ đến Cộng đồng OpenWebUI",
|
||||
"Sharing Permissions": "Quyền Chia sẻ",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"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 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-to-Text Engine": "Công cụ Nhận dạng Giọng nói",
|
||||
"Stop": "Dừng",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Trình tự Dừng",
|
||||
"Stream Chat Response": "Truyền trực tiếp Phản hồi Chat",
|
||||
"Strip Existing OCR": "",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "",
|
||||
"Toggle settings": "Bật/tắt cài đặt",
|
||||
"Toggle sidebar": "Bật/tắt thanh bên",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Token",
|
||||
"Too verbose": "Quá dài dòng",
|
||||
"Tool created successfully": "Tool đã được tạo thành công",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "功能",
|
||||
"Features Permissions": "功能权限",
|
||||
"February": "二月",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "反馈历史",
|
||||
"Feedbacks": "反馈",
|
||||
"Feel free to add specific details": "欢迎补充具体细节",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "落败",
|
||||
"LTR": "从左至右",
|
||||
"Made by Open WebUI Community": "由 Open WebUI 社区制作",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "确保将它们包含在内",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "确保从 ComfyUI 导出 API 格式的 workflow.json 文件。",
|
||||
"Manage": "管理",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama 版本",
|
||||
"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": "只允许使用英文字母,数字 (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.": "只能编辑文件集,创建一个新的知识库来编辑/添加文件。",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"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 用于通过为模型 ID 添加前缀来避免与其他连接发生冲突 - 留空则禁用此功能",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "预览",
|
||||
"Previous 30 days": "过去 30 天",
|
||||
"Previous 7 days": "过去 7 天",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "根据主题相似性对模型重新排序",
|
||||
"Read": "只读",
|
||||
"Read Aloud": "朗读",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "推理努力 (Reasoning Effort)",
|
||||
"Record": "录制",
|
||||
"Record voice": "录音",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "相关性",
|
||||
"Relevance Threshold": "相关性阈值",
|
||||
"Remove": "移除",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "移除模型",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "重命名",
|
||||
"Reorder Models": "重新排序模型",
|
||||
"Reply in Thread": "在主题中回复",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "分享对话",
|
||||
"Share to Open WebUI Community": "分享到 Open WebUI 社区",
|
||||
"Sharing Permissions": "共享权限",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "显示",
|
||||
"Show \"What's New\" modal on login": "在登录时显示“更新内容”弹窗",
|
||||
"Show Admin Details in Account Pending Overlay": "在用户待激活界面中显示管理员邮箱等详细信息",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "语音识别错误:{{error}}",
|
||||
"Speech-to-Text Engine": "语音转文本引擎",
|
||||
"Stop": "停止",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "停止序列 (Stop Sequence)",
|
||||
"Stream Chat Response": "流式对话响应 (Stream Chat Response)",
|
||||
"Strip Existing OCR": "清除现有 OCR 文本",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "切换搜索",
|
||||
"Toggle settings": "切换设置",
|
||||
"Toggle sidebar": "切换侧边栏",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Token",
|
||||
"Too verbose": "过于冗长",
|
||||
"Tool created successfully": "工具创建成功",
|
||||
|
|
|
|||
|
|
@ -591,6 +591,7 @@
|
|||
"Features": "功能",
|
||||
"Features Permissions": "功能權限",
|
||||
"February": "2 月",
|
||||
"Feedback Details": "",
|
||||
"Feedback History": "回饋歷史",
|
||||
"Feedbacks": "回饋",
|
||||
"Feel free to add specific details": "歡迎自由新增特定細節",
|
||||
|
|
@ -778,6 +779,7 @@
|
|||
"Lost": "已遺失",
|
||||
"LTR": "從左到右",
|
||||
"Made by Open WebUI Community": "由 Open WebUI 社群製作",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "請務必將它們放在",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "請確保從 ComfyUI 匯出 workflow.json 檔案為 API 格式。",
|
||||
"Manage": "管理",
|
||||
|
|
@ -899,6 +901,8 @@
|
|||
"Ollama Version": "Ollama 版本",
|
||||
"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 in the command string.": "命令字串中只允許使用英文字母、數字和連字號。",
|
||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "只能編輯集合,請建立新的知識以編輯或新增檔案。",
|
||||
|
|
@ -979,6 +983,7 @@
|
|||
"Positive attitude": "積極的態度",
|
||||
"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 新增字首以避免與其他連線衝突 - 留空以停用",
|
||||
"Prevent file creation": "",
|
||||
"Preview": "預覽",
|
||||
"Previous 30 days": "過去 30 天",
|
||||
"Previous 7 days": "過去 7 天",
|
||||
|
|
@ -1004,6 +1009,7 @@
|
|||
"Re-rank models by topic similarity": "根據主題相似度重新排序模型",
|
||||
"Read": "讀取",
|
||||
"Read Aloud": "大聲朗讀",
|
||||
"Reason": "",
|
||||
"Reasoning Effort": "推理程度",
|
||||
"Record": "錄製",
|
||||
"Record voice": "錄音",
|
||||
|
|
@ -1020,7 +1026,9 @@
|
|||
"Relevance": "相關性",
|
||||
"Relevance Threshold": "相關性閾值",
|
||||
"Remove": "移除",
|
||||
"Remove {{MODELID}} from list.": "",
|
||||
"Remove Model": "移除模型",
|
||||
"Remove this tag from list": "",
|
||||
"Rename": "重新命名",
|
||||
"Reorder Models": "重新排序模型",
|
||||
"Reply in Thread": "在討論串中回覆",
|
||||
|
|
@ -1130,6 +1138,7 @@
|
|||
"Share Chat": "分享對話",
|
||||
"Share to Open WebUI Community": "分享到 Open WebUI 社群",
|
||||
"Sharing Permissions": "分享權限設定",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "顯示",
|
||||
"Show \"What's New\" modal on login": "登入時顯示「新功能」對話框",
|
||||
"Show Admin Details in Account Pending Overlay": "在帳號待審覆蓋層中顯示管理員詳細資訊",
|
||||
|
|
@ -1157,6 +1166,7 @@
|
|||
"Speech recognition error: {{error}}": "語音辨識錯誤:{{error}}",
|
||||
"Speech-to-Text Engine": "語音轉文字 (STT) 引擎",
|
||||
"Stop": "停止",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "停止序列",
|
||||
"Stream Chat Response": "串流式對話回應",
|
||||
"Strip Existing OCR": "移除現有 OCR 文字",
|
||||
|
|
@ -1253,6 +1263,7 @@
|
|||
"Toggle search": "切換搜尋",
|
||||
"Toggle settings": "切換設定",
|
||||
"Toggle sidebar": "切換側邊欄",
|
||||
"Toggle whether current connection is active.": "",
|
||||
"Token": "Token",
|
||||
"Too verbose": "太過冗長",
|
||||
"Tool created successfully": "成功建立工具",
|
||||
|
|
|
|||
Loading…
Reference in a new issue