From 4b41cd18918dbcdf4790b8e48a0d9009b4456519 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Sat, 9 Aug 2025 02:05:07 +0400 Subject: [PATCH] chore: format --- backend/open_webui/routers/openai.py | 4 ++- src/lib/i18n/locales/ar-BH/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/ar/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/bg-BG/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/bn-BD/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/bo-TB/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/ca-ES/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/ceb-PH/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/cs-CZ/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/da-DK/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/de-DE/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/dg-DG/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/el-GR/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/en-GB/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/en-US/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/es-ES/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/et-EE/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/eu-ES/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/fa-IR/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/fi-FI/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/fr-CA/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/fr-FR/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/gl-ES/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/he-IL/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/hi-IN/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/hr-HR/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/hu-HU/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/id-ID/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/ie-GA/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/it-IT/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/ja-JP/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/ka-GE/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/ko-KR/translation.json | 26 +++++++++++++++++-- src/lib/i18n/locales/lt-LT/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/ms-MY/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/nb-NO/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/nl-NL/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/pa-IN/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/pl-PL/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/pt-BR/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/pt-PT/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/ro-RO/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/ru-RU/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/sk-SK/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/sr-RS/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/sv-SE/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/th-TH/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/tk-TM/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/tr-TR/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/ug-CN/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/uk-UA/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/ur-PK/translation.json | 24 ++++++++++++++++- .../i18n/locales/uz-Cyrl-UZ/translation.json | 24 ++++++++++++++++- .../i18n/locales/uz-Latn-Uz/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/vi-VN/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/zh-CN/translation.json | 24 ++++++++++++++++- src/lib/i18n/locales/zh-TW/translation.json | 24 ++++++++++++++++- 57 files changed, 1292 insertions(+), 58 deletions(-) diff --git a/backend/open_webui/routers/openai.py b/backend/open_webui/routers/openai.py index 984686d18f..c8a3aebdd0 100644 --- a/backend/open_webui/routers/openai.py +++ b/backend/open_webui/routers/openai.py @@ -806,7 +806,9 @@ async def generate_chat_completion( key = request.app.state.config.OPENAI_API_KEYS[idx] # Check if model is a reasoning model that needs special handling - is_reasoning_model = payload["model"].lower().startswith(("o1", "o3", "o4", "gpt-5")) + is_reasoning_model = ( + payload["model"].lower().startswith(("o1", "o3", "o4", "gpt-5")) + ) if is_reasoning_model: payload = openai_reasoning_model_handler(payload) elif "api.openai.com" not in url: diff --git a/src/lib/i18n/locales/ar-BH/translation.json b/src/lib/i18n/locales/ar-BH/translation.json index 71b3af58ca..6f3180f6a8 100644 --- a/src/lib/i18n/locales/ar-BH/translation.json +++ b/src/lib/i18n/locales/ar-BH/translation.json @@ -43,6 +43,7 @@ "Add content here": "", "Add Custom Parameter": "", "Add custom prompt": "أضافة مطالبة مخصصه", + "Add Details": "", "Add Files": "إضافة ملفات", "Add Group": "", "Add Memory": "إضافة ذكرايات", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "مفتاح واجهة برمجة تطبيقات البحث الشجاع", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "الأوامر", "Comment": "", "Completions": "", + "Compress Images in Channels": "", "Concurrent Requests": "الطلبات المتزامنة", "Configure": "", "Confirm": "", @@ -328,6 +334,7 @@ "Default": "الإفتراضي", "Default (Open AI)": "", "Default (SentenceTransformers)": "(SentenceTransformers) الإفتراضي", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "النموذج الافتراضي", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "اكتشاف وتنزيل واستكشاف الإعدادات المسبقة للنموذج", "Display": "", "Display Emoji in Call": "", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "اعرض اسم المستخدم بدلاً منك في الدردشة", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "تم اكتشاف انتحال بصمة الإصبع: غير قادر على استخدام الأحرف الأولى كصورة رمزية. الافتراضي لصورة الملف الشخصي الافتراضية.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "دفق قطع الاستجابة الخارجية الكبيرة بسلاسة", + "Floating Quick Actions": "", "Focus chat input": "التركيز على إدخال الدردشة", "Folder deleted successfully": "", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "معلومات", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "إدخال الأوامر", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "", "More": "المزيد", + "More Concise": "", + "More Options": "", "Name": "الأسم", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "دردشة جديدة", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "", "Open in full screen": "", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "فتح محادثة جديده", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com \"{{searchValue}}\" أسحب من ", "Pull a model from Ollama.com": "Ollama.com سحب الموديل من ", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "RAG تنمبلت", "Rating": "", "Re-rank models by topic similarity": "", @@ -1145,8 +1161,12 @@ "Search Chats": "البحث في الدردشات", "Search Collection": "", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "", "Search Functions": "", + "Search In Models": "", "Search Knowledge": "", "Search Models": "نماذج البحث", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "(e.g. about the Roman Empire) الترجمة", "Success": "نجاح", "Successfully updated.": "تم التحديث بنجاح", + "Suggest a change": "", "Suggested": "مقترحات", "Support": "", "Support this plugin:": "", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "هل تواجه مشكلة في الوصول", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "", "TTS Settings": "TTS اعدادات", "TTS Voice": "", diff --git a/src/lib/i18n/locales/ar/translation.json b/src/lib/i18n/locales/ar/translation.json index 5aa9eabcec..cba6b4ba45 100644 --- a/src/lib/i18n/locales/ar/translation.json +++ b/src/lib/i18n/locales/ar/translation.json @@ -43,6 +43,7 @@ "Add content here": "أضف المحتوى هنا", "Add Custom Parameter": "", "Add custom prompt": "إضافة موجه مخصص", + "Add Details": "", "Add Files": "إضافة ملفات", "Add Group": "إضافة مجموعة", "Add Memory": "إضافة ذاكرة", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "مفتاح API لـ Brave Search", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "بواسطة {{name}}", "Bypass Embedding and Retrieval": "تجاوز التضمين والاسترجاع", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "تنفيذ الشيفرة", "Code Execution": "تنفيذ الشيفرة", @@ -254,6 +259,7 @@ "Command": "الأمر", "Comment": "", "Completions": "الإكمالات", + "Compress Images in Channels": "", "Concurrent Requests": "الطلبات المتزامنة", "Configure": "تكوين", "Confirm": "تأكيد", @@ -328,6 +334,7 @@ "Default": "افتراضي", "Default (Open AI)": "افتراضي (Open AI)", "Default (SentenceTransformers)": "افتراضي (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "الوضع الافتراضي يعمل مع مجموعة أوسع من النماذج من خلال استدعاء الأدوات مرة واحدة قبل التنفيذ. أما الوضع الأصلي فيستخدم قدرات استدعاء الأدوات المدمجة في النموذج، لكنه يتطلب دعمًا داخليًا لهذه الميزة.", "Default Model": "النموذج الافتراضي", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "اكتشاف وتنزيل واستكشاف الإعدادات المسبقة للنموذج", "Display": "العرض", "Display Emoji in Call": "عرض الرموز التعبيرية أثناء المكالمة", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "اعرض اسم المستخدم بدلاً منك في الدردشة", "Displays citations in the response": "عرض المراجع في الرد", "Dive into knowledge": "انغمس في المعرفة", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "تم اكتشاف انتحال بصمة الإصبع: غير قادر على استخدام الأحرف الأولى كصورة رمزية. الافتراضي لصورة الملف الشخصي الافتراضية.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "دفق قطع الاستجابة الخارجية الكبيرة بسلاسة", + "Floating Quick Actions": "", "Focus chat input": "التركيز على إدخال الدردشة", "Folder deleted successfully": "تم حذف المجلد بنجاح", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "يؤثر على سرعة استجابة الخوارزمية للتغذية الراجعة من النص المُولد. معدل تعلم منخفض يؤدي إلى تعديلات أبطأ، بينما معدل أعلى يجعلها أكثر استجابة.", "Info": "معلومات", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "إدخال الأوامر", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "مفتاح API لـ Mojeek Search", "more": "المزيد", "More": "المزيد", + "More Concise": "", + "More Options": "", "Name": "الأسم", "Name your knowledge base": "قم بتسمية قاعدة معرفتك", "Native": "أصلي", + "New Button": "", "New Chat": "دردشة جديدة", "New Folder": "مجلد جديد", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "فتح الملف", "Open in full screen": "فتح في وضع ملء الشاشة", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "فتح محادثة جديده", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "تستخدم واجهة WebUI أداة faster-whisper داخليًا.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "تستخدم WebUI نموذج SpeechT5 وتضمينات صوتية من CMU Arctic.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com \"{{searchValue}}\" أسحب من ", "Pull a model from Ollama.com": "Ollama.com سحب الموديل من ", "Query Generation Prompt": "توجيه إنشاء الاستعلام", + "Quick Actions": "", "RAG Template": "RAG تنمبلت", "Rating": "التقييم", "Re-rank models by topic similarity": "إعادة ترتيب النماذج حسب تشابه الموضوع", @@ -1145,8 +1161,12 @@ "Search Chats": "البحث في الدردشات", "Search Collection": "البحث في المجموعة", "Search Filters": "مرشحات البحث", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "البحث عن وسوم", "Search Functions": "البحث في الوظائف", + "Search In Models": "", "Search Knowledge": "البحث في المعرفة", "Search Models": "نماذج البحث", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "(e.g. about the Roman Empire) الترجمة", "Success": "نجاح", "Successfully updated.": "تم التحديث بنجاح", + "Suggest a change": "", "Suggested": "مقترحات", "Support": "الدعم", "Support this plugin:": "دعم هذا المكون الإضافي:", @@ -1379,6 +1400,7 @@ "Transformers": "Transformers", "Trouble accessing Ollama?": "هل تواجه مشكلة في الوصول", "Trust Proxy Environment": "بيئة البروكسي الموثوقة", + "Try Again": "", "TTS Model": "نموذج تحويل النص إلى كلام (TTS)", "TTS Settings": "TTS اعدادات", "TTS Voice": "صوت TTS", diff --git a/src/lib/i18n/locales/bg-BG/translation.json b/src/lib/i18n/locales/bg-BG/translation.json index 91bceb6897..c02a8c959f 100644 --- a/src/lib/i18n/locales/bg-BG/translation.json +++ b/src/lib/i18n/locales/bg-BG/translation.json @@ -43,6 +43,7 @@ "Add content here": "Добавете съдържание тук", "Add Custom Parameter": "", "Add custom prompt": "Добавяне на собствен промпт", + "Add Details": "", "Add Files": "Добавяне на Файлове", "Add Group": "Добавяне на група", "Add Memory": "Добавяне на Памет", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "API ключ за Brave Search", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "От {{name}}", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Изпълнение на код", "Code Execution": "Изпълнение на код", @@ -254,6 +259,7 @@ "Command": "Команда", "Comment": "", "Completions": "Довършвания", + "Compress Images in Channels": "", "Concurrent Requests": "Едновременни заявки", "Configure": "Конфигуриране", "Confirm": "Потвърди", @@ -328,6 +334,7 @@ "Default": "По подразбиране", "Default (Open AI)": "По подразбиране (Open AI)", "Default (SentenceTransformers)": "По подразбиране (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Режимът по подразбиране работи с по-широк набор от модели, като извиква инструменти веднъж преди изпълнение. Нативният режим използва вградените възможности за извикване на инструменти на модела, но изисква моделът да поддържа тази функция по същество.", "Default Model": "Модел по подразбиране", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Откриване, сваляне и преглед на пресетове на модели", "Display": "Показване", "Display Emoji in Call": "Показване на емотикони в обаждането", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Показване на потребителското име вместо Вие в чата", "Displays citations in the response": "Показвам цитати в отговора", "Dive into knowledge": "Потопете се в знанието", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Потвърждаване на отпечатък: Не може да се използва инициализационна буква като аватар. Потребителят се връща към стандартна аватарка.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Плавно предаване на големи части от външния отговор", + "Floating Quick Actions": "", "Focus chat input": "Фокусиране на чат вход", "Folder deleted successfully": "Папката е изтрита успешно", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Информация", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Въведете команди", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "API ключ за Mojeek Search", "more": "още", "More": "Повече", + "More Concise": "", + "More Options": "", "Name": "Име", "Name your knowledge base": "Именувайте вашата база от знания", "Native": "Нативен", + "New Button": "", "New Chat": "Нов чат", "New Folder": "Нова папка", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "Отвори файл", "Open in full screen": "Отвори на цял екран", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Отвори нов чат", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI използва вътрешно по-бързо-whisper.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI използва SpeechT5 и CMU Arctic говорителни вграждания.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Извади \"{{searchValue}}\" от Ollama.com", "Pull a model from Ollama.com": "Издърпайте модела от Ollama.com", "Query Generation Prompt": "Промпт за генериране на запитвания", + "Quick Actions": "", "RAG Template": "RAG Шаблон", "Rating": "Оценка", "Re-rank models by topic similarity": "Преоценка на моделите по сходство на темата", @@ -1145,8 +1161,12 @@ "Search Chats": "Търсене на чатове", "Search Collection": "Търсене в колекция", "Search Filters": "Филтри за търсене", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "търсене на тагове", "Search Functions": "Търсене на функции", + "Search In Models": "", "Search Knowledge": "Търсене в знания", "Search Models": "Търсене на модели", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Подтитул (напр. за Римска империя)", "Success": "Успех", "Successfully updated.": "Успешно обновено.", + "Suggest a change": "", "Suggested": "Препоръчано", "Support": "Поддръжка", "Support this plugin:": "Подкрепете този плъгин:", @@ -1379,6 +1400,7 @@ "Transformers": "Трансформатори", "Trouble accessing Ollama?": "Проблеми с достъпа до Ollama?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "TTS Модел", "TTS Settings": "TTS Настройки", "TTS Voice": "TTS Глас", diff --git a/src/lib/i18n/locales/bn-BD/translation.json b/src/lib/i18n/locales/bn-BD/translation.json index 083fe9844f..386ac3c41e 100644 --- a/src/lib/i18n/locales/bn-BD/translation.json +++ b/src/lib/i18n/locales/bn-BD/translation.json @@ -43,6 +43,7 @@ "Add content here": "", "Add Custom Parameter": "", "Add custom prompt": "একটি কাস্টম প্রম্পট যোগ করুন", + "Add Details": "", "Add Files": "ফাইল যোগ করুন", "Add Group": "", "Add Memory": "মেমোরি যোগ করুন", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "সাহসী অনুসন্ধান API কী", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "কমান্ড", "Comment": "", "Completions": "", + "Compress Images in Channels": "", "Concurrent Requests": "সমকালীন অনুরোধ", "Configure": "", "Confirm": "", @@ -328,6 +334,7 @@ "Default": "ডিফল্ট", "Default (Open AI)": "", "Default (SentenceTransformers)": "ডিফল্ট (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "ডিফল্ট মডেল", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "মডেল প্রিসেটগুলো আবিস্কার, ডাউনলোড এবং এক্সপ্লোর করুন", "Display": "", "Display Emoji in Call": "", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "চ্যাটে 'আপনি'-র পরবর্তে ইউজারনেম দেখান", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "ফিঙ্গারপ্রিন্ট স্পুফিং ধরা পড়েছে: অ্যাভাটার হিসেবে নামের আদ্যক্ষর ব্যবহার করা যাচ্ছে না। ডিফল্ট প্রোফাইল পিকচারে ফিরিয়ে নেয়া হচ্ছে।", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "বড় এক্সটার্নাল রেসপন্স চাঙ্কগুলো মসৃণভাবে প্রবাহিত করুন", + "Floating Quick Actions": "", "Focus chat input": "চ্যাট ইনপুট ফোকাস করুন", "Folder deleted successfully": "", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "তথ্য", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "ইনপুট কমান্ডস", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "", "More": "আরো", + "More Concise": "", + "More Options": "", "Name": "নাম", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "নতুন চ্যাট", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "", "Open in full screen": "", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "নতুন চ্যাট খুলুন", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com থেকে \"{{searchValue}}\" টানুন", "Pull a model from Ollama.com": "Ollama.com থেকে একটি টেনে আনুন আনুন", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "RAG টেম্পলেট", "Rating": "", "Re-rank models by topic similarity": "", @@ -1145,8 +1161,12 @@ "Search Chats": "চ্যাট অনুসন্ধান করুন", "Search Collection": "", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "", "Search Functions": "", + "Search In Models": "", "Search Knowledge": "", "Search Models": "অনুসন্ধান মডেল", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "সাবটাইটল (রোমান ইম্পার্টের সম্পর্কে)", "Success": "সফল", "Successfully updated.": "সফলভাবে আপডেট হয়েছে", + "Suggest a change": "", "Suggested": "প্রস্তাবিত", "Support": "", "Support this plugin:": "", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "Ollama এক্সেস করতে সমস্যা হচ্ছে?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "", "TTS Settings": "TTS সেটিংসমূহ", "TTS Voice": "", diff --git a/src/lib/i18n/locales/bo-TB/translation.json b/src/lib/i18n/locales/bo-TB/translation.json index 19207e6a46..76e5918468 100644 --- a/src/lib/i18n/locales/bo-TB/translation.json +++ b/src/lib/i18n/locales/bo-TB/translation.json @@ -43,6 +43,7 @@ "Add content here": "ནང་དོན་འདིར་སྣོན་པ།", "Add Custom Parameter": "", "Add custom prompt": "སྲོལ་བཟོས་འགུལ་སློང་སྣོན་པ།", + "Add Details": "", "Add Files": "ཡིག་ཆ་སྣོན་པ།", "Add Group": "ཚོགས་པ་སྣོན་པ།", "Add Memory": "དྲན་ཤེས་སྣོན་པ།", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Brave Search API ལྡེ་མིག", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "{{name}} ཡིས།", "Bypass Embedding and Retrieval": "ཚུད་འཇུག་དང་ལེན་ཚུར་སྒྲུབ་ལས་བརྒལ་བ།", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "ཀོཌ་ལག་བསྟར།", "Code Execution": "ཀོཌ་ལག་བསྟར།", @@ -254,6 +259,7 @@ "Command": "བཀའ་བརྡ།", "Comment": "", "Completions": "འགྲུབ་པ།", + "Compress Images in Channels": "", "Concurrent Requests": "མཉམ་ལས་རེ་ཞུ།", "Configure": "སྒྲིག་འགོད།", "Confirm": "གཏན་འཁེལ།", @@ -328,6 +334,7 @@ "Default": "སྔོན་སྒྲིག", "Default (Open AI)": "སྔོན་སྒྲིག (Open AI)", "Default (SentenceTransformers)": "སྔོན་སྒྲིག (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "སྔོན་སྒྲིག་མ་དཔེ་ནི་ལག་བསྟར་མ་བྱས་སྔོན་དུ་ལག་ཆ་ཐེངས་གཅིག་འབོད་ནས་དཔེ་དབྱིབས་རྒྱ་ཆེ་བའི་ཁྱབ་ཁོངས་དང་མཉམ་ལས་བྱེད་ཐུབ། ས་སྐྱེས་མ་དཔེ་ཡིས་དཔེ་དབྱིབས་ཀྱི་ནང་འདྲེས་ལག་ཆ་འབོད་པའི་ནུས་པ་སྤྱོད་ཀྱི་ཡོད་མོད། འོན་ཀྱང་དཔེ་དབྱིབས་དེས་ཁྱད་ཆོས་འདི་ལ་ངོ་བོའི་ཐོག་ནས་རྒྱབ་སྐྱོར་བྱེད་དགོས།", "Default Model": "སྔོན་སྒྲིག་དཔེ་དབྱིབས།", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "དཔེ་དབྱིབས་སྔོན་སྒྲིག་རྙེད་པ། ཕབ་ལེན་བྱེད་པ། དང་བརྟག་ཞིབ་བྱེད་པ།", "Display": "འཆར་སྟོན།", "Display Emoji in Call": "སྐད་འབོད་ནང་ Emoji འཆར་སྟོན་བྱེད་པ།", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "ཁ་བརྡའི་ནང་ 'ཁྱེད་' ཀྱི་ཚབ་ཏུ་བེད་སྤྱོད་མིང་འཆར་སྟོན་བྱེད་པ།", "Displays citations in the response": "ལན་ནང་ལུང་འདྲེན་འཆར་སྟོན་བྱེད་པ།", "Dive into knowledge": "ཤེས་བྱའི་ནང་འཛུལ་བ།", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "མཛུབ་ཐེལ་རྫུན་བཟོ་རྙེད་སོང་།: མིང་གི་ཡིག་འབྲུ་མགོ་མ་སྐུ་ཚབ་ཏུ་བེད་སྤྱོད་གཏོང་མི་ཐུབ། སྔོན་སྒྲིག་ཕྱི་ཐག་པར་རིས་ལ་སྔོན་སྒྲིག་བྱེད་བཞིན་པ།", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "ཕྱི་རོལ་གྱི་ལན་གྱི་དུམ་བུ་ཆེན་པོ་རྒྱུན་བཞིན་རྒྱུག་པ།", + "Floating Quick Actions": "", "Focus chat input": "ཁ་བརྡའི་ནང་འཇུག་ལ་དམིགས་པ།", "Folder deleted successfully": "ཡིག་སྣོད་ལེགས་པར་བསུབས་ཟིན།", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "བཟོས་པའི་ཡིག་རྐྱང་ནས་ཐོན་པའི་བསམ་འཆར་ལ་ཨང་རྩིས་ཀྱིས་ཇི་ཙམ་མགྱོགས་པོར་ལན་འདེབས་བྱེད་པར་ཤུགས་རྐྱེན་ཐེབས་པ། སྦྱོང་ཚད་དམའ་བས་ལེགས་སྒྲིག་དལ་བ་ཡོང་ངེས། དེ་བཞིན་དུ་སྦྱོང་ཚད་མཐོ་བས་ཨང་རྩིས་དེ་ལན་འདེབས་ཆེ་བ་བཟོ་ངེས།", "Info": "གནས་ཚུལ།", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "ནང་དོན་ཆ་ཚང་དེ་ནང་དོན་དུ་བཅུག་ནས་སྒྲུབ་རིམ་ཆ་ཚང་བྱེད་པ། འདི་ནི་འདྲི་བ་རྙོག་འཛིང་ཅན་གྱི་ཆེད་དུ་འོས་སྦྱོར་བྱེད།", + "Input": "", "Input commands": "ནང་འཇུག་བཀའ་བརྡ།", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Mojeek Search API ལྡེ་མིག", "more": "མང་བ།", "More": "མང་བ།", + "More Concise": "", + "More Options": "", "Name": "མིང་།", "Name your knowledge base": "ཁྱེད་ཀྱི་ཤེས་བྱའི་རྟེན་གཞི་ལ་མིང་ཐོགས།", "Native": "ས་སྐྱེས།", + "New Button": "", "New Chat": "ཁ་བརྡ་གསར་པ།", "New Folder": "ཡིག་སྣོད་གསར་པ།", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "ཡིག་ཆ་ཁ་ཕྱེ་བ།", "Open in full screen": "ཡོངས་གནས་ངོས་སུ་ཁ་ཕྱེ་བ།", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "ཁ་བརྡ་གསར་པ་ཁ་ཕྱེ་བ།", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI ཡིས་ནང་ཁུལ་དུ་ faster-whisper བེད་སྤྱོད་བྱེད།", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI ཡིས་ SpeechT5 དང་ CMU Arctic གཏམ་བཤད་པའི་ཚུད་འཇུག་བེད་སྤྱོད་བྱེད།", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com ནས་ \"{{searchValue}}\" འཐེན་པ།", "Pull a model from Ollama.com": "Ollama.com ནས་དཔེ་དབྱིབས་ཤིག་འཐེན་པ།", "Query Generation Prompt": "འདྲི་བ་བཟོ་སྐྲུན་གྱི་འགུལ་སློང་།", + "Quick Actions": "", "RAG Template": "RAG མ་དཔེ།", "Rating": "སྐར་མ།", "Re-rank models by topic similarity": "བརྗོད་གཞི་འདྲ་མཚུངས་ལྟར་དཔེ་དབྱིབས་བསྐྱར་སྒྲིག་བྱེད་པ།", @@ -1145,8 +1161,12 @@ "Search Chats": "ཁ་བརྡ་འཚོལ་བཤེར།", "Search Collection": "བསྡུ་གསོག་འཚོལ་བཤེར།", "Search Filters": "འཚོལ་བཤེར་འཚག་མ།", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "རྟགས་འཚོལ་བ།", "Search Functions": "ལས་འགན་འཚོལ་བཤེར།", + "Search In Models": "", "Search Knowledge": "ཤེས་བྱ་འཚོལ་བཤེར།", "Search Models": "དཔེ་དབྱིབས་འཚོལ་བཤེར།", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "ཁ་བྱང་ཕལ་པ། (དཔེར་ན། རོམ་མའི་གོང་མའི་རྒྱལ་ཁབ་སྐོར།)", "Success": "ལེགས་འགྲུབ།", "Successfully updated.": "ལེགས་པར་གསར་སྒྱུར་བྱས།", + "Suggest a change": "", "Suggested": "གྲོས་གཞི།", "Support": "རྒྱབ་སྐྱོར།", "Support this plugin:": "plugin འདི་ལ་རྒྱབ་སྐྱོར་བྱེད་པ།:", @@ -1379,6 +1400,7 @@ "Transformers": "Transformers", "Trouble accessing Ollama?": "Ollama འཛུལ་སྤྱོད་སྐབས་དཀའ་ངལ་འཕྲད་དམ།", "Trust Proxy Environment": "Proxy ཁོར་ཡུག་ལ་ཡིད་ཆེས།", + "Try Again": "", "TTS Model": "TTS དཔེ་དབྱིབས།", "TTS Settings": "TTS སྒྲིག་འགོད།", "TTS Voice": "TTS སྐད།", diff --git a/src/lib/i18n/locales/ca-ES/translation.json b/src/lib/i18n/locales/ca-ES/translation.json index 635a58fc26..d9046856a0 100644 --- a/src/lib/i18n/locales/ca-ES/translation.json +++ b/src/lib/i18n/locales/ca-ES/translation.json @@ -43,6 +43,7 @@ "Add content here": "Afegir contingut aquí", "Add Custom Parameter": "Afegir paràmetre personalitzat ", "Add custom prompt": "Afegir una indicació personalitzada", + "Add Details": "", "Add Files": "Afegir arxius", "Add Group": "Afegir grup", "Add Memory": "Afegir memòria", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Cal proporcionar tant el motor OCR de Docling com els idiomes o bé deixar-los buits.", "Brave Search API Key": "Clau API de Brave Search", "Bullet List": "Llista indexada", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Per {{name}}", "Bypass Embedding and Retrieval": "Desactivar l'Embedding i el Retrieval", "Bypass Web Loader": "Ometre el càrregador web", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "Tancar la finestra de configuració de la connexió", "Close modal": "Tancar el modal", "Close settings modal": "Tancar el modal de configuració", + "Close Sidebar": "", "Code Block": "Bloc de codi", "Code execution": "Execució de codi", "Code Execution": "Execució de Codi", @@ -254,6 +259,7 @@ "Command": "Comanda", "Comment": "Comentari", "Completions": "Completaments", + "Compress Images in Channels": "", "Concurrent Requests": "Peticions simultànies", "Configure": "Configurar", "Confirm": "Confirmar", @@ -328,6 +334,7 @@ "Default": "Per defecte", "Default (Open AI)": "Per defecte (Open AI)", "Default (SentenceTransformers)": "Per defecte (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "Descripcions per defecte habilitades", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "El mode predeterminat funciona amb una gamma més àmplia de models cridant a les eines una vegada abans de l'execució. El mode natiu aprofita les capacitats de crida d'eines integrades del model, però requereix que el model admeti aquesta funció de manera inherent.", "Default Model": "Model per defecte", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Descobrir, descarregar i explorar models preconfigurats", "Display": "Mostrar", "Display Emoji in Call": "Mostrar emojis a la trucada", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Mostrar el nom d'usuari en lloc de 'Tu' al xat", "Displays citations in the response": "Mostra les referències a la resposta", "Dive into knowledge": "Aprofundir en el coneixement", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "S'ha detectat la suplantació d'identitat de l'empremta digital: no es poden utilitzar les inicials com a avatar. S'estableix la imatge de perfil predeterminada.", "Firecrawl API Base URL": "URL de l'API de base de Firecrawl", "Firecrawl API Key": "Clau API de Firecrawl", - "Fluidly stream large external response chunks": "Transmetre amb fluïdesa grans trossos de resposta externa", + "Floating Quick Actions": "", "Focus chat input": "Estableix el focus a l'entrada del xat", "Folder deleted successfully": "Carpeta eliminada correctament", "Folder Name": "Nom de la carpeta", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influeix amb la rapidesa amb què l'algoritme respon als comentaris del text generat. Una taxa d'aprenentatge més baixa donarà lloc a ajustos més lents, mentre que una taxa d'aprenentatge més alta farà que l'algorisme sigui més sensible.", "Info": "Informació", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injectar tot el contingut com a context per a un processament complet, això es recomana per a consultes complexes.", + "Input": "", "Input commands": "Entra comandes", "Input Variables": "Variables d'entrada", "Insert": "Inserir", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Clau API de Mojeek Search", "more": "més", "More": "Més", + "More Concise": "", + "More Options": "", "Name": "Nom", "Name your knowledge base": "Anomena la teva base de coneixement", "Native": "Natiu", + "New Button": "", "New Chat": "Nou xat", "New Folder": "Nova carpeta", "New Function": "Nova funció", @@ -984,7 +996,10 @@ "Open file": "Obrir arxiu", "Open in full screen": "Obrir en pantalla complerta", "Open modal to configure connection": "Obre el modal per configurar la connexió", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Obre un xat nou", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI pot utilitzar eines de servidors OpenAPI.", "Open WebUI uses faster-whisper internally.": "Open WebUI utilitza faster-whisper internament.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI utilitza incrustacions de SpeechT5 i CMU Arctic.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Obtenir \"{{searchValue}}\" de Ollama.com", "Pull a model from Ollama.com": "Obtenir un model d'Ollama.com", "Query Generation Prompt": "Indicació per a generació de consulta", + "Quick Actions": "", "RAG Template": "Plantilla RAG", "Rating": "Valoració", "Re-rank models by topic similarity": "Reclassificar els models per similitud de temes", @@ -1145,8 +1161,12 @@ "Search Chats": "Cercar xats", "Search Collection": "Cercar col·leccions", "Search Filters": "Filtres de cerca", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "cercar etiquetes", "Search Functions": "Cercar funcions", + "Search In Models": "", "Search Knowledge": "Cercar coneixement", "Search Models": "Cercar models", "Search Notes": "Cercar notes", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Subtítol (per exemple, sobre l'Imperi Romà)", "Success": "Èxit", "Successfully updated.": "Actualitzat correctament.", + "Suggest a change": "", "Suggested": "Suggerit", "Support": "Dona suport", "Support this plugin:": "Dona suport a aquest complement:", @@ -1379,6 +1400,7 @@ "Transformers": "Transformadors", "Trouble accessing Ollama?": "Problemes en accedir a Ollama?", "Trust Proxy Environment": "Confiar en l'entorn proxy", + "Try Again": "", "TTS Model": "Model TTS", "TTS Settings": "Preferències de TTS", "TTS Voice": "Veu TTS", diff --git a/src/lib/i18n/locales/ceb-PH/translation.json b/src/lib/i18n/locales/ceb-PH/translation.json index 91d0973fa6..a596512297 100644 --- a/src/lib/i18n/locales/ceb-PH/translation.json +++ b/src/lib/i18n/locales/ceb-PH/translation.json @@ -43,6 +43,7 @@ "Add content here": "", "Add Custom Parameter": "", "Add custom prompt": "Pagdugang og custom prompt", + "Add Details": "", "Add Files": "Idugang ang mga file", "Add Group": "", "Add Memory": "", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "Pag-order", "Comment": "", "Completions": "", + "Compress Images in Channels": "", "Concurrent Requests": "", "Configure": "", "Confirm": "", @@ -328,6 +334,7 @@ "Default": "Pinaagi sa default", "Default (Open AI)": "", "Default (SentenceTransformers)": "", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Pagdiskobre, pag-download, ug pagsuhid sa mga preset sa template", "Display": "", "Display Emoji in Call": "", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Ipakita ang username imbes nga 'Ikaw' sa Panaghisgutan", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Hapsay nga paghatud sa daghang mga tipik sa eksternal nga mga tubag", + "Floating Quick Actions": "", "Focus chat input": "Pag-focus sa entry sa diskusyon", "Folder deleted successfully": "", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Pagsulod sa input commands", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "", "More": "", + "More Concise": "", + "More Options": "", "Name": "Ngalan", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "Bag-ong diskusyon", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "", "Open in full screen": "", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Ablihi ang bag-ong diskusyon", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "", "Pull a model from Ollama.com": "Pagkuha ug template gikan sa Ollama.com", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "RAG nga modelo", "Rating": "", "Re-rank models by topic similarity": "", @@ -1145,8 +1161,12 @@ "Search Chats": "", "Search Collection": "", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "", "Search Functions": "", + "Search In Models": "", "Search Knowledge": "", "Search Models": "", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "", "Success": "Kalampusan", "Successfully updated.": "Malampuson nga na-update.", + "Suggest a change": "", "Suggested": "", "Support": "", "Support this plugin:": "", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "Adunay mga problema sa pag-access sa Ollama?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "", "TTS Settings": "Mga Setting sa TTS", "TTS Voice": "", diff --git a/src/lib/i18n/locales/cs-CZ/translation.json b/src/lib/i18n/locales/cs-CZ/translation.json index f1732cabce..c78da285f1 100644 --- a/src/lib/i18n/locales/cs-CZ/translation.json +++ b/src/lib/i18n/locales/cs-CZ/translation.json @@ -43,6 +43,7 @@ "Add content here": "Přidat obsah zde", "Add Custom Parameter": "", "Add custom prompt": "Přidání vlastního promptu", + "Add Details": "", "Add Files": "Přidat soubory", "Add Group": "Přidat skupinu", "Add Memory": "Přidat paměť", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Klíč API pro Brave Search", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Provádění kódu", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "Příkaz", "Comment": "", "Completions": "Doplnění", + "Compress Images in Channels": "", "Concurrent Requests": "Současné požadavky", "Configure": "Konfigurovat", "Confirm": "Potvrdit", @@ -328,6 +334,7 @@ "Default": "Výchozí hodnoty nebo nastavení.", "Default (Open AI)": "Výchozí (Open AI)", "Default (SentenceTransformers)": "Výchozí (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Výchozí model", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Objevte, stáhněte a prozkoumejte přednastavení modelů", "Display": "", "Display Emoji in Call": "Zobrazení emoji během hovoru", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Zobrazit uživatelské jméno místo \"Vás\" v chatu", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Detekováno padělání otisku prstu: Není možné použít iniciály jako avatar. Používá se výchozí profilový obrázek.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Plynule streamujte velké externí části odpovědí", + "Floating Quick Actions": "", "Focus chat input": "Zaměřte se na vstup chatu", "Folder deleted successfully": "Složka byla úspěšně smazána", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Info", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Vstupní příkazy", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "více", "More": "Více", + "More Concise": "", + "More Options": "", "Name": "Jméno", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "Nový chat", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "Otevřít soubor", "Open in full screen": "Otevřít na celou obrazovku", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Otevřít nový chat", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI interně používá faster-whisper.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Stáhněte \"{{searchValue}}\" z Ollama.com", "Pull a model from Ollama.com": "Stáhněte model z Ollama.com", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "Šablona RAG", "Rating": "Hodnocení", "Re-rank models by topic similarity": "Znovu seřaďte modely podle podobnosti témat.", @@ -1145,8 +1161,12 @@ "Search Chats": "Vyhledávání v chatu", "Search Collection": "Hledat kolekci", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "hledání značek", "Search Functions": "Vyhledávací funkce", + "Search In Models": "", "Search Knowledge": "Vyhledávání znalostí", "Search Models": "Vyhledávací modely", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Titulky (např. o Římské říši)", "Success": "Úspěch", "Successfully updated.": "Úspěšně aktualizováno.", + "Suggest a change": "", "Suggested": "Navrhované", "Support": "Podpora", "Support this plugin:": "Podpořte tento plugin:", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "Máte potíže s přístupem k Ollama?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "Model převodu textu na řeč (TTS)", "TTS Settings": "Nastavení TTS (Text-to-Speech)", "TTS Voice": "TTS hlas", diff --git a/src/lib/i18n/locales/da-DK/translation.json b/src/lib/i18n/locales/da-DK/translation.json index 6d2d62a4d6..c173cd9c7f 100644 --- a/src/lib/i18n/locales/da-DK/translation.json +++ b/src/lib/i18n/locales/da-DK/translation.json @@ -43,6 +43,7 @@ "Add content here": "Tilføj indhold her", "Add Custom Parameter": "Tilføj brugerdefineret parameter", "Add custom prompt": "Tilføj en special-prompt", + "Add Details": "", "Add Files": "Tilføj filer", "Add Group": "Tilføj gruppe", "Add Memory": "Tilføj hukommelse", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Både Docling OCR Engine og Sprog skal angives eller begge skal være tomme.", "Brave Search API Key": "Brave Search API nøgle", "Bullet List": "Punktliste", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Af {{name}}", "Bypass Embedding and Retrieval": "Omgå Embedding og Retrieval", "Bypass Web Loader": "Omgå Web Loader", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "Luk Configure Forbindelse dialogboks", "Close modal": "Luk dialogboks", "Close settings modal": "Luk dialogboks med indstillinger", + "Close Sidebar": "", "Code Block": "Kodeblok", "Code execution": "Kode kørsel", "Code Execution": "Kode kørsel", @@ -254,6 +259,7 @@ "Command": "Kommando", "Comment": "Kommentar", "Completions": "Completions", + "Compress Images in Channels": "", "Concurrent Requests": "Concurrent requests", "Configure": "Konfigurer", "Confirm": "Bekræft", @@ -328,6 +334,7 @@ "Default": "Standard", "Default (Open AI)": "Standard (Open AI)", "Default (SentenceTransformers)": "Standard (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "Standardbeskrivelse aktiveret", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Standardtilstand fungerer med et bredere udvalg af modeller ved at kalde værktøjer én gang før udførelse. Native tilstand udnytter modellens indbyggede værktøjskald-funktioner, men kræver at modellen i sagens natur understøtter denne funktion.", "Default Model": "Standard model", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Find, download og udforsk modelindstillinger", "Display": "Vis", "Display Emoji in Call": "Vis emoji i chat", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Vis brugernavn i stedet for Dig i chatten", "Displays citations in the response": "Vis citat i svaret", "Dive into knowledge": "Undersøg viden", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Fingeraftryksspoofing registreret: Kan ikke bruge initialer som avatar. Bruger standard profilbillede.", "Firecrawl API Base URL": "Firecrawl API Base URL", "Firecrawl API Key": "Firecrawl API nøgle", - "Fluidly stream large external response chunks": "Stream store eksterne svar chunks flydende", + "Floating Quick Actions": "", "Focus chat input": "Fokuser på chatinput", "Folder deleted successfully": "Mappe fjernet.", "Folder Name": "Mappenavn", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Påvirker hvor hurtigt algoritmen reagerer på feedback fra den genererede tekst. En lavere indlæringshastighed vil resultere i langsommere justeringer, mens en højere indlæringshastighed vil gøre algoritmen mere responsiv.", "Info": "Info", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injicer alt indhold som kontekst til omfattende behandling, dette anbefales til komplekse forespørgsler.", + "Input": "", "Input commands": "Inputkommandoer", "Input Variables": "Input variable", "Insert": "Indsæt", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Mojeek Search API nøgle", "more": "mere", "More": "Mere", + "More Concise": "", + "More Options": "", "Name": "Navn", "Name your knowledge base": "Navngiv din vidensbase", "Native": "Indbygget", + "New Button": "", "New Chat": "Ny chat", "New Folder": "Ny mappe", "New Function": "Ny funktion", @@ -984,7 +996,10 @@ "Open file": "Åbn fil", "Open in full screen": "Åbn i fuld skærm", "Open modal to configure connection": "Åbn modal for at konfigurere forbindelse", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Åbn ny chat", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kan bruge værktøjer leveret af enhver OpenAPI server.", "Open WebUI uses faster-whisper internally.": "Open WebUI bruger faster-whisper internt.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI bruger SpeechT5 og CMU Arctic taler embeddings.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Hent \"{{searchValue}}\" fra Ollama.com", "Pull a model from Ollama.com": "Hent en model fra Ollama.com", "Query Generation Prompt": "Forespørgsel genererings prompt", + "Quick Actions": "", "RAG Template": "RAG-skabelon", "Rating": "Rating", "Re-rank models by topic similarity": "Omarranger modeller efter emne lighed", @@ -1145,8 +1161,12 @@ "Search Chats": "Søg i chats", "Search Collection": "Søg i samling", "Search Filters": "Søg i filtre", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "søg efter tags", "Search Functions": "Søg i funktioner", + "Search In Models": "", "Search Knowledge": "Søg i viden", "Search Models": "Søg i modeller", "Search Notes": "Søg i noter", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Undertitel (f.eks. om Romerriget)", "Success": "Succes", "Successfully updated.": "Opdateret.", + "Suggest a change": "", "Suggested": "Foreslået", "Support": "Support", "Support this plugin:": "Støt dette plugin:", @@ -1379,6 +1400,7 @@ "Transformers": "Transformers", "Trouble accessing Ollama?": "Problemer med at få adgang til Ollama?", "Trust Proxy Environment": "Stol på Proxymiljø", + "Try Again": "", "TTS Model": "TTS-model", "TTS Settings": "TTS-indstillinger", "TTS Voice": "TTS-stemme", diff --git a/src/lib/i18n/locales/de-DE/translation.json b/src/lib/i18n/locales/de-DE/translation.json index 66d3da7244..f32f37202d 100644 --- a/src/lib/i18n/locales/de-DE/translation.json +++ b/src/lib/i18n/locales/de-DE/translation.json @@ -43,6 +43,7 @@ "Add content here": "Inhalt hier hinzufügen", "Add Custom Parameter": "Benutzerdefinierten Parameter hinzufügen", "Add custom prompt": "Benutzerdefinierten Prompt hinzufügen", + "Add Details": "", "Add Files": "Dateien hinzufügen", "Add Group": "Gruppe hinzufügen", "Add Memory": "Erinnerung hinzufügen", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Entweder müssen Docling OCR-Engine und Sprache(n) angegeben oder beide leer gelassen werden.", "Brave Search API Key": "Brave Search API-Schlüssel", "Bullet List": "Aufzählungsliste", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Von {{name}}", "Bypass Embedding and Retrieval": "Embedding und Retrieval umgehen", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "Codeblock", "Code execution": "Codeausführung", "Code Execution": "Codeausführung", @@ -254,6 +259,7 @@ "Command": "Befehl", "Comment": "Kommentar", "Completions": "Vervollständigungen", + "Compress Images in Channels": "", "Concurrent Requests": "Anzahl gleichzeitiger Anfragen", "Configure": "Konfigurieren", "Confirm": "Bestätigen", @@ -328,6 +334,7 @@ "Default": "Standard", "Default (Open AI)": "Standard (Open AI)", "Default (SentenceTransformers)": "Standard (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "Standard Beschreibung aktiviert", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Der Standardmodus funktioniert mit einer breiteren Auswahl von Modellen, indem er Werkzeuge einmal vor der Ausführung aufruft. Der native Modus nutzt die integrierten Tool-Aufrufmöglichkeiten des Modells, erfordert jedoch, dass das Modell diese Funktion von Natur aus unterstützt.", "Default Model": "Standardmodell", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Entdecken und beziehen Sie benutzerdefinierte Modellvorlagen", "Display": "Anzeigen", "Display Emoji in Call": "Emojis im Anruf anzeigen", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Soll \"Sie\" durch Ihren Benutzernamen ersetzt werden?", "Displays citations in the response": "Zeigt Zitate in der Antwort an", "Dive into knowledge": "Tauchen Sie in das Wissen ein", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Fingerabdruck-Spoofing erkannt: Initialen können nicht als Avatar verwendet werden. Standard-Avatar wird verwendet.", "Firecrawl API Base URL": "Firecrawl API Basis-URL", "Firecrawl API Key": "Firecrawl API-Schlüssel", - "Fluidly stream large external response chunks": "Nahtlose Übertragung großer externer Antwortabschnitte", + "Floating Quick Actions": "", "Focus chat input": "Chat-Eingabe fokussieren", "Folder deleted successfully": "Ordner erfolgreich gelöscht", "Folder Name": "Ordner-Name", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Beeinflusst, wie schnell der Algorithmus auf Feedback aus dem generierten Text reagiert. Eine niedrigere Lernrate führt zu langsameren Anpassungen, während eine höhere Lernrate den Algorithmus reaktionsschneller macht.", "Info": "Info", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Gesamten Inhalt als Kontext für umfassende Verarbeitung einfügen, dies wird für komplexe Abfragen empfohlen.", + "Input": "", "Input commands": "Eingabebefehle", "Input Variables": "Eingabe Variablen", "Insert": "Einfügen", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Mojeek Search API-Schlüssel", "more": "mehr", "More": "Mehr", + "More Concise": "", + "More Options": "", "Name": "Name", "Name your knowledge base": "Benennen Sie Ihren Wissensspeicher", "Native": "Nativ", + "New Button": "", "New Chat": "Neuer Chat", "New Folder": "Neuer Ordner", "New Function": "Neue Funktion", @@ -984,7 +996,10 @@ "Open file": "Datei öffnen", "Open in full screen": "Im Vollbildmodus öffnen", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Neuen Chat öffnen", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kann Werkzeuge verwenden, die von irgendeinem OpenAPI-Server bereitgestellt werden.", "Open WebUI uses faster-whisper internally.": "Open WebUI verwendet intern faster-whisper.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI verwendet SpeechT5 und CMU Arctic-Sprecher-Embeddings.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" von Ollama.com beziehen", "Pull a model from Ollama.com": "Modell von Ollama.com beziehen", "Query Generation Prompt": "Abfragegenerierungsprompt", + "Quick Actions": "", "RAG Template": "RAG-Vorlage", "Rating": "Bewertung", "Re-rank models by topic similarity": "Modelle nach thematischer Ähnlichkeit neu ordnen", @@ -1145,8 +1161,12 @@ "Search Chats": "Chats durchsuchen...", "Search Collection": "Sammlung durchsuchen", "Search Filters": "Suchfilter", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "nach Tags suchen", "Search Functions": "Funktionen durchsuchen...", + "Search In Models": "", "Search Knowledge": "Wissen durchsuchen", "Search Models": "Modelle durchsuchen...", "Search Notes": "Notizen durchsuchen...", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Untertitel (z. B. über das Römische Reich)", "Success": "Erfolg", "Successfully updated.": "Erfolgreich aktualisiert.", + "Suggest a change": "", "Suggested": "Vorgeschlagen", "Support": "Unterstützung", "Support this plugin:": "Unterstützen Sie dieses Plugin:", @@ -1379,6 +1400,7 @@ "Transformers": "Transformers", "Trouble accessing Ollama?": "Probleme beim Zugriff auf Ollama?", "Trust Proxy Environment": "Proxy-Umgebung vertrauen", + "Try Again": "", "TTS Model": "TTS-Modell", "TTS Settings": "TTS-Einstellungen", "TTS Voice": "TTS-Stimme", diff --git a/src/lib/i18n/locales/dg-DG/translation.json b/src/lib/i18n/locales/dg-DG/translation.json index 8c919b2da5..05572168a6 100644 --- a/src/lib/i18n/locales/dg-DG/translation.json +++ b/src/lib/i18n/locales/dg-DG/translation.json @@ -43,6 +43,7 @@ "Add content here": "", "Add Custom Parameter": "", "Add custom prompt": "", + "Add Details": "", "Add Files": "Add Files", "Add Group": "", "Add Memory": "", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "Command", "Comment": "", "Completions": "", + "Compress Images in Channels": "", "Concurrent Requests": "", "Configure": "", "Confirm": "", @@ -328,6 +334,7 @@ "Default": "Default", "Default (Open AI)": "", "Default (SentenceTransformers)": "", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Discover, download, and explore model presets", "Display": "", "Display Emoji in Call": "", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Display username instead of You in Chat", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Fingerprint dogeing: Unable to use initials as avatar. Defaulting to default doge image.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Fluidly wow big chunks", + "Floating Quick Actions": "", "Focus chat input": "Focus chat bork", "Folder deleted successfully": "", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Input commands", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "", "More": "", + "More Concise": "", + "More Options": "", "Name": "Name", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "New Bark", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "", "Open in full screen": "", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Open new bark", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "", "Pull a model from Ollama.com": "Pull a wowdel from Ollama.com", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "RAG Template", "Rating": "", "Re-rank models by topic similarity": "", @@ -1145,8 +1161,12 @@ "Search Chats": "", "Search Collection": "", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "", "Search Functions": "", + "Search In Models": "", "Search Knowledge": "", "Search Models": "", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "", "Success": "Success very success", "Successfully updated.": "Successfully updated. Very updated.", + "Suggest a change": "", "Suggested": "", "Support": "", "Support this plugin:": "", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "Trouble accessing Ollama? Much trouble?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "", "TTS Settings": "TTS Settings much settings", "TTS Voice": "", diff --git a/src/lib/i18n/locales/el-GR/translation.json b/src/lib/i18n/locales/el-GR/translation.json index 97676b6144..ee8b22c41a 100644 --- a/src/lib/i18n/locales/el-GR/translation.json +++ b/src/lib/i18n/locales/el-GR/translation.json @@ -43,6 +43,7 @@ "Add content here": "Προσθέστε περιεχόμενο εδώ", "Add Custom Parameter": "", "Add custom prompt": "Προσθήκη προσαρμοσμένης προτροπής", + "Add Details": "", "Add Files": "Προσθήκη Αρχείων", "Add Group": "Προσθήκη Ομάδας", "Add Memory": "Προσθήκη Μνήμης", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Κλειδί API Brave Search", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Από {{name}}", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Εκτέλεση κώδικα", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "Εντολή", "Comment": "", "Completions": "Ολοκληρώσεις", + "Compress Images in Channels": "", "Concurrent Requests": "Ταυτόχρονες Αιτήσεις", "Configure": "Διαμόρφωση", "Confirm": "Επιβεβαίωση", @@ -328,6 +334,7 @@ "Default": "Προεπιλογή", "Default (Open AI)": "Προεπιλογή (Open AI)", "Default (SentenceTransformers)": "Προεπιλογή (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Προεπιλεγμένο Μοντέλο", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Ανακαλύψτε, κατεβάστε και εξερευνήστε προκαθορισμένα μοντέλα", "Display": "Εμφάνιση", "Display Emoji in Call": "Εμφάνιση Emoji στην Κλήση", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Εμφάνιση του ονόματος χρήστη αντί του Εσάς στη Συνομιλία", "Displays citations in the response": "Εμφανίζει αναφορές στην απάντηση", "Dive into knowledge": "Βυθιστείτε στη γνώση", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Εντοπίστηκε spoofing δακτυλικού αποτυπώματος: Αδυναμία χρήσης αρχικών ως avatar. Χρήση της προεπιλεγμένης εικόνας προφίλ.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Ροή μεγάλων εξωτερικών τμημάτων απάντησης ομαλά", + "Floating Quick Actions": "", "Focus chat input": "Εστίαση στο πεδίο συνομιλίας", "Folder deleted successfully": "Ο φάκελος διαγράφηκε με επιτυχία", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Πληροφορίες", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Εισαγωγή εντολών", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Κλειδί API Mojeek Search", "more": "περισσότερα", "More": "Περισσότερα", + "More Concise": "", + "More Options": "", "Name": "Όνομα", "Name your knowledge base": "Ονομάστε τη βάση γνώσης σας", "Native": "", + "New Button": "", "New Chat": "Νέα Συνομιλία", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "Άνοιγμα αρχείου", "Open in full screen": "Άνοιγμα σε πλήρη οθόνη", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Άνοιγμα νέας συνομιλίας", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Το Open WebUI χρησιμοποιεί το faster-whisper εσωτερικά.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Το Open WebUI χρησιμοποιεί τα SpeechT5 και CMU Arctic embeddings ομιλητών.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Τραβήξτε \"{{searchValue}}\" από το Ollama.com", "Pull a model from Ollama.com": "Τραβήξτε ένα μοντέλο από το Ollama.com", "Query Generation Prompt": "Προτροπή Δημιουργίας Ερωτήσεων", + "Quick Actions": "", "RAG Template": "Πρότυπο RAG", "Rating": "Βαθμολογία", "Re-rank models by topic similarity": "Επανατάξη μοντέλων κατά ομοιότητα θέματος", @@ -1145,8 +1161,12 @@ "Search Chats": "Αναζήτηση Συνομιλιών", "Search Collection": "Αναζήτηση Συλλογής", "Search Filters": "Φίλτρα Αναζήτησης", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "αναζήτηση για ετικέτες", "Search Functions": "Αναζήτηση Λειτουργιών", + "Search In Models": "", "Search Knowledge": "Αναζήτηση Γνώσης", "Search Models": "Αναζήτηση Μοντέλων", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Υπότιτλος (π.χ. για την Ρωμαϊκή Αυτοκρατορία)", "Success": "Επιτυχία", "Successfully updated.": "Επιτυχώς ενημερώθηκε.", + "Suggest a change": "", "Suggested": "Προτεινόμενο", "Support": "Υποστήριξη", "Support this plugin:": "Υποστήριξη αυτού του plugin:", @@ -1379,6 +1400,7 @@ "Transformers": "Transformers", "Trouble accessing Ollama?": "Προβλήματα πρόσβασης στο Ollama?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "Μοντέλο TTS", "TTS Settings": "Ρυθμίσεις TTS", "TTS Voice": "Φωνή TTS", diff --git a/src/lib/i18n/locales/en-GB/translation.json b/src/lib/i18n/locales/en-GB/translation.json index 7fafc89610..f11b198b20 100644 --- a/src/lib/i18n/locales/en-GB/translation.json +++ b/src/lib/i18n/locales/en-GB/translation.json @@ -43,6 +43,7 @@ "Add content here": "", "Add Custom Parameter": "", "Add custom prompt": "", + "Add Details": "", "Add Files": "", "Add Group": "", "Add Memory": "", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "", "Comment": "", "Completions": "", + "Compress Images in Channels": "", "Concurrent Requests": "", "Configure": "", "Confirm": "", @@ -328,6 +334,7 @@ "Default": "", "Default (Open AI)": "", "Default (SentenceTransformers)": "", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "", "Display": "", "Display Emoji in Call": "", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "", + "Floating Quick Actions": "", "Focus chat input": "", "Folder deleted successfully": "", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "", "More": "", + "More Concise": "", + "More Options": "", "Name": "", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "", "Open in full screen": "", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "", "Pull a model from Ollama.com": "", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "", "Rating": "", "Re-rank models by topic similarity": "", @@ -1145,8 +1161,12 @@ "Search Chats": "", "Search Collection": "", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "", "Search Functions": "", + "Search In Models": "", "Search Knowledge": "", "Search Models": "", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "", "Success": "", "Successfully updated.": "", + "Suggest a change": "", "Suggested": "", "Support": "", "Support this plugin:": "", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "", "TTS Settings": "", "TTS Voice": "", diff --git a/src/lib/i18n/locales/en-US/translation.json b/src/lib/i18n/locales/en-US/translation.json index 4428371401..fef7afbbd6 100644 --- a/src/lib/i18n/locales/en-US/translation.json +++ b/src/lib/i18n/locales/en-US/translation.json @@ -43,6 +43,7 @@ "Add content here": "", "Add Custom Parameter": "", "Add custom prompt": "", + "Add Details": "", "Add Files": "", "Add Group": "", "Add Memory": "", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "", "Comment": "", "Completions": "", + "Compress Images in Channels": "", "Concurrent Requests": "", "Configure": "", "Confirm": "", @@ -328,6 +334,7 @@ "Default": "", "Default (Open AI)": "", "Default (SentenceTransformers)": "", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "", "Display": "", "Display Emoji in Call": "", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "", + "Floating Quick Actions": "", "Focus chat input": "", "Folder deleted successfully": "", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "", "More": "", + "More Concise": "", + "More Options": "", "Name": "", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "", "Open in full screen": "", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "", "Pull a model from Ollama.com": "", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "", "Rating": "", "Re-rank models by topic similarity": "", @@ -1145,8 +1161,12 @@ "Search Chats": "", "Search Collection": "", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "", "Search Functions": "", + "Search In Models": "", "Search Knowledge": "", "Search Models": "", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "", "Success": "", "Successfully updated.": "", + "Suggest a change": "", "Suggested": "", "Support": "", "Support this plugin:": "", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "", "TTS Settings": "", "TTS Voice": "", diff --git a/src/lib/i18n/locales/es-ES/translation.json b/src/lib/i18n/locales/es-ES/translation.json index c0c2429487..289c76deba 100644 --- a/src/lib/i18n/locales/es-ES/translation.json +++ b/src/lib/i18n/locales/es-ES/translation.json @@ -43,6 +43,7 @@ "Add content here": "Añadir contenido aquí", "Add Custom Parameter": "Añadir parámetro personalizado", "Add custom prompt": "Añadir un indicador personalizado", + "Add Details": "", "Add Files": "Añadir Archivos", "Add Group": "Añadir Grupo", "Add Memory": "Añadir Memoria", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Ambos, Motor OCR de Docling y Lenguaje(s), deben añadirse o dejar ámbos vacios.", "Brave Search API Key": "Clave API de Brave Search", "Bullet List": "Lista de Viñetas", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Por {{name}}", "Bypass Embedding and Retrieval": "Desactivar Incrustración y Recuperación", "Bypass Web Loader": "Desactivar Cargar de Web", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "Cerrar modal Configurar la Conexión", "Close modal": "Cerrar modal", "Close settings modal": "Cerrar modal configuraciones", + "Close Sidebar": "", "Code Block": "Bloque de Código", "Code execution": "Ejecución de Código", "Code Execution": "Ejecución de Código", @@ -254,6 +259,7 @@ "Command": "Comando", "Comment": "Comentario", "Completions": "Cumplimientos", + "Compress Images in Channels": "", "Concurrent Requests": "Número de Solicitudes Concurrentes", "Configure": "Configurar", "Confirm": "Confirmar", @@ -328,6 +334,7 @@ "Default": "Predeterminado", "Default (Open AI)": "Predeterminado (Open AI)", "Default (SentenceTransformers)": "Predeterminado (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "Descripción por defecto activada", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "El modo predeterminado trabaja con un amplio rango de modelos, llamando a las herramientas una vez antes de la ejecución. El modo nativo aprovecha las capacidades de llamada de herramientas integradas del modelo, pero requiere que el modelo admita inherentemente esta función.", "Default Model": "Modelo Predeterminado", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Descubre, descarga y explora modelos con preajustados", "Display": "Mostrar", "Display Emoji in Call": "Muestra Emojis en Llamada", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Mostrar en el chat el nombre de usuario en lugar del genérico Tu", "Displays citations in the response": "Mostrar citas en la respuesta", "Dive into knowledge": "Sumérgete en el conocimiento", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Se detectó suplantación de huellas: No se pueden usar las iniciales como avatar. Se establece la imagen de perfil predeterminada.", "Firecrawl API Base URL": "URL Base de API de Firecrawl", "Firecrawl API Key": "Clave de API de Firecrawl", - "Fluidly stream large external response chunks": "Transmisión fluida de fragmentos de grandes respuestas externas", + "Floating Quick Actions": "", "Focus chat input": "Enfocar campo de chat", "Folder deleted successfully": "Carpeta eliminada correctamente", "Folder Name": "Nombre de la Carpeta", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influye en la rápidez de respuesta a la realimentación desde el texto generado. Una tasa de aprendizaje más baja resulta en un ajustado más lento, mientras que una tasa de aprendizaje más alta hará que el algoritmo sea más reactivo.", "Info": "Información", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Inyecta el contenido completo como contexto para un procesado comprensivo, recomendado para consultas complejas.", + "Input": "", "Input commands": "Ingresar comandos", "Input Variables": "Ingresar variables", "Insert": "Insertar", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Clave API de Mojeek Search", "more": "más", "More": "Más", + "More Concise": "", + "More Options": "", "Name": "Nombre", "Name your knowledge base": "Nombra tu base de conocimientos", "Native": "Nativo", + "New Button": "", "New Chat": "Nuevo Chat", "New Folder": "Nueva Carpeta", "New Function": "Nueva Función", @@ -984,7 +996,10 @@ "Open file": "Abrir archivo", "Open in full screen": "Abrir en pantalla completa", "Open modal to configure connection": "Abrir modal para configurar la conexión", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Abrir nuevo chat", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open-WebUI puede usar herramientas proporcionadas por cualquier servidor OpenAPI", "Open WebUI uses faster-whisper internally.": "Open-WebUI usa faster-whisper internamente.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open-WebUI usa SpeechT5 y la incrustración de locutores de CMU Arctic.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Extraer \"{{searchValue}}\" desde Ollama.com", "Pull a model from Ollama.com": "Extraer un modelo desde Ollama.com", "Query Generation Prompt": "Indicador para la Consulta de Generación", + "Quick Actions": "", "RAG Template": "Plantilla del RAG", "Rating": "Calificación", "Re-rank models by topic similarity": "Reclasificar modelos por similitud temática", @@ -1145,8 +1161,12 @@ "Search Chats": "Buscar Chats", "Search Collection": "Buscar Colección", "Search Filters": "Buscar Filtros", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "Buscar por etiquetas", "Search Functions": "Buscar Funciones", + "Search In Models": "", "Search Knowledge": "Buscar Conocimiento", "Search Models": "Buscar Modelos", "Search Notes": "Buscar Notas", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Subtítulo (p.ej. sobre el Imperio Romano)", "Success": "Correcto", "Successfully updated.": "Actualizado correctamente.", + "Suggest a change": "", "Suggested": "Sugerido", "Support": "Soportar", "Support this plugin:": "Apoya este plugin:", @@ -1379,6 +1400,7 @@ "Transformers": "Transformadores", "Trouble accessing Ollama?": "¿Problemas para acceder a Ollama?", "Trust Proxy Environment": "Entorno Proxy Confiable", + "Try Again": "", "TTS Model": "Modelo TTS", "TTS Settings": "Ajustes Texto a Voz (TTS)", "TTS Voice": "Voz TTS", diff --git a/src/lib/i18n/locales/et-EE/translation.json b/src/lib/i18n/locales/et-EE/translation.json index 867740f050..d1600eb9ab 100644 --- a/src/lib/i18n/locales/et-EE/translation.json +++ b/src/lib/i18n/locales/et-EE/translation.json @@ -43,6 +43,7 @@ "Add content here": "Lisa siia sisu", "Add Custom Parameter": "", "Add custom prompt": "Lisa kohandatud vihjeid", + "Add Details": "", "Add Files": "Lisa faile", "Add Group": "Lisa grupp", "Add Memory": "Lisa mälu", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Brave Search API võti", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Autor: {{name}}", "Bypass Embedding and Retrieval": "Möödaminek sisestamisest ja taastamisest", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Koodi täitmine", "Code Execution": "Koodi täitmine", @@ -254,6 +259,7 @@ "Command": "Käsk", "Comment": "", "Completions": "Lõpetamised", + "Compress Images in Channels": "", "Concurrent Requests": "Samaaegsed päringud", "Configure": "Konfigureeri", "Confirm": "Kinnita", @@ -328,6 +334,7 @@ "Default": "Vaikimisi", "Default (Open AI)": "Vaikimisi (Open AI)", "Default (SentenceTransformers)": "Vaikimisi (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Vaikimisi mudel", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Avasta, laadi alla ja uuri mudeli eelseadistusi", "Display": "Kuva", "Display Emoji in Call": "Kuva kõnes emoji", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Kuva vestluses 'Sina' asemel kasutajanimi", "Displays citations in the response": "Kuvab vastuses viited", "Dive into knowledge": "Sukeldu teadmistesse", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Tuvastati sõrmejälje võltsimine: initsiaalide kasutamine avatarina pole võimalik. Kasutatakse vaikimisi profiilikujutist.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Suurte väliste vastuste tükkide sujuv voogedastus", + "Floating Quick Actions": "", "Focus chat input": "Fokuseeri vestluse sisendile", "Folder deleted successfully": "Kaust edukalt kustutatud", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Mõjutab, kui kiiresti algoritm reageerib genereeritud teksti tagasisidele. Madalam õppimiskiirus annab tulemuseks aeglasemad kohandused, samas kui kõrgem õppimiskiirus muudab algoritmi tundlikumaks.", "Info": "Info", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Sisendkäsud", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Mojeek Search API võti", "more": "rohkem", "More": "Rohkem", + "More Concise": "", + "More Options": "", "Name": "Nimi", "Name your knowledge base": "Nimetage oma teadmiste baas", "Native": "Omane", + "New Button": "", "New Chat": "Uus vestlus", "New Folder": "Uus kaust", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "Ava fail", "Open in full screen": "Ava täisekraanil", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Ava uus vestlus", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI kasutab sisemiselt faster-whisper'it.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI kasutab SpeechT5 ja CMU Arctic kõneleja manustamisi.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Tõmba \"{{searchValue}}\" Ollama.com-ist", "Pull a model from Ollama.com": "Tõmba mudel Ollama.com-ist", "Query Generation Prompt": "Päringu genereerimise vihje", + "Quick Actions": "", "RAG Template": "RAG mall", "Rating": "Hinnang", "Re-rank models by topic similarity": "Järjesta mudelid teema sarnasuse alusel ümber", @@ -1145,8 +1161,12 @@ "Search Chats": "Otsi vestlusi", "Search Collection": "Otsi kogust", "Search Filters": "Otsingu filtrid", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "otsi silte", "Search Functions": "Otsi funktsioone", + "Search In Models": "", "Search Knowledge": "Otsi teadmisi", "Search Models": "Otsi mudeleid", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Alampealkiri (nt Rooma impeeriumi kohta)", "Success": "Õnnestus", "Successfully updated.": "Edukalt uuendatud.", + "Suggest a change": "", "Suggested": "Soovitatud", "Support": "Tugi", "Support this plugin:": "Toeta seda pistikprogrammi:", @@ -1379,6 +1400,7 @@ "Transformers": "Transformers", "Trouble accessing Ollama?": "Probleeme Ollama juurdepääsuga?", "Trust Proxy Environment": "Usalda puhverserveri keskkonda", + "Try Again": "", "TTS Model": "TTS mudel", "TTS Settings": "TTS seaded", "TTS Voice": "TTS hääl", diff --git a/src/lib/i18n/locales/eu-ES/translation.json b/src/lib/i18n/locales/eu-ES/translation.json index f38add32c1..3fe0ef3d19 100644 --- a/src/lib/i18n/locales/eu-ES/translation.json +++ b/src/lib/i18n/locales/eu-ES/translation.json @@ -43,6 +43,7 @@ "Add content here": "Gehitu edukia hemen", "Add Custom Parameter": "", "Add custom prompt": "Gehitu prompt pertsonalizatua", + "Add Details": "", "Add Files": "Gehitu Fitxategiak", "Add Group": "Gehitu Taldea", "Add Memory": "Gehitu Memoria", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Brave Bilaketa API Gakoa", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "{{name}}-k", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Kodearen exekuzioa", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "Komandoa", "Comment": "", "Completions": "Osatzeak", + "Compress Images in Channels": "", "Concurrent Requests": "Eskari Konkurrenteak", "Configure": "Konfiguratu", "Confirm": "Berretsi", @@ -328,6 +334,7 @@ "Default": "Lehenetsia", "Default (Open AI)": "Lehenetsia (Open AI)", "Default (SentenceTransformers)": "Lehenetsia (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Eredu Lehenetsia", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Aurkitu, deskargatu eta esploratu ereduen aurrezarpenak", "Display": "Bistaratu", "Display Emoji in Call": "Bistaratu Emojiak Deietan", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Erakutsi erabiltzaile-izena Zu-ren ordez Txatean", "Displays citations in the response": "Erakutsi aipamenak erantzunean", "Dive into knowledge": "Murgildu ezagutzan", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Hatz-marka faltsutzea detektatu da: Ezin dira inizialak avatar gisa erabili. Profil irudi lehenetsia erabiliko da.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Modu jariagarrian transmititu kanpoko erantzun zati handiak", + "Floating Quick Actions": "", "Focus chat input": "Fokuratu txataren sarrera", "Folder deleted successfully": "Karpeta ongi ezabatu da", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Informazioa", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Sartu komandoak", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Mojeek bilaketa API gakoa", "more": "gehiago", "More": "Gehiago", + "More Concise": "", + "More Options": "", "Name": "Izena", "Name your knowledge base": "Izendatu zure ezagutza-basea", "Native": "", + "New Button": "", "New Chat": "Txat berria", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "Ireki fitxategia", "Open in full screen": "Ireki pantaila osoan", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Ireki txat berria", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI-k faster-whisper erabiltzen du barnean.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI-k SpeechT5 eta CMU Arctic hiztun txertaketak erabiltzen ditu.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Ekarri \"{{searchValue}}\" Ollama.com-etik", "Pull a model from Ollama.com": "Ekarri modelo bat Ollama.com-etik", "Query Generation Prompt": "Kontsulta sortzeko prompt-a", + "Quick Actions": "", "RAG Template": "RAG txantiloia", "Rating": "Balorazioa", "Re-rank models by topic similarity": "Berrantolatu modeloak gai antzekotasunaren arabera", @@ -1145,8 +1161,12 @@ "Search Chats": "Bilatu txatak", "Search Collection": "Bilatu bilduma", "Search Filters": "Bilaketa iragazkiak", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "bilatu etiketak", "Search Functions": "Bilatu funtzioak", + "Search In Models": "", "Search Knowledge": "Bilatu ezagutza", "Search Models": "Bilatu modeloak", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Azpititulua (adib. Erromatar Inperioari buruz)", "Success": "Arrakasta", "Successfully updated.": "Ongi eguneratu da.", + "Suggest a change": "", "Suggested": "Iradokitua", "Support": "Laguntza", "Support this plugin:": "Lagundu plugin hau:", @@ -1379,6 +1400,7 @@ "Transformers": "Transformatzaileak", "Trouble accessing Ollama?": "Arazoak Ollama atzitzeko?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "TTS modeloa", "TTS Settings": "TTS ezarpenak", "TTS Voice": "TTS ahotsa", diff --git a/src/lib/i18n/locales/fa-IR/translation.json b/src/lib/i18n/locales/fa-IR/translation.json index d83087d663..debabcbc65 100644 --- a/src/lib/i18n/locales/fa-IR/translation.json +++ b/src/lib/i18n/locales/fa-IR/translation.json @@ -43,6 +43,7 @@ "Add content here": "محتوا را اینجا اضافه کنید", "Add Custom Parameter": "", "Add custom prompt": "افزودن یک درخواست سفارشی", + "Add Details": "", "Add Files": "افزودن فایل\u200cها", "Add Group": "افزودن گروه", "Add Memory": "افزودن حافظه", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "کلید API جستجوی شجاع", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "توسط {{name}}", "Bypass Embedding and Retrieval": "دور زدن جاسازی و بازیابی", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "اجرای کد", "Code Execution": "اجرای کد", @@ -254,6 +259,7 @@ "Command": "دستور", "Comment": "", "Completions": "تکمیل\u200cها", + "Compress Images in Channels": "", "Concurrent Requests": "درخواست های همزمان", "Configure": "پیکربندی", "Confirm": "تایید", @@ -328,6 +334,7 @@ "Default": "پیشفرض", "Default (Open AI)": "پیشفرض (Open AI)", "Default (SentenceTransformers)": "پیشفرض (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "مدل پیشفرض", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "پیش تنظیمات مدل را کشف، دانلود و کاوش کنید", "Display": "نمایش", "Display Emoji in Call": "نمایش اموجی در تماس", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "نمایش نام کاربری به جای «شما» در چت", "Displays citations in the response": "نمایش استنادها در پاسخ", "Dive into knowledge": "غوطه\u200cور شدن در دانش", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "فانگ سرفیس شناسایی شد: نمی توان از نمایه شما به عنوان آواتار استفاده کرد. پیش فرض به عکس پروفایل پیش فرض برگشت داده شد.", "Firecrawl API Base URL": "آدرس پایه API فایرکراول", "Firecrawl API Key": "کلید API فایرکراول", - "Fluidly stream large external response chunks": "تکه های پاسخ خارجی بزرگ را به صورت سیال پخش کنید", + "Floating Quick Actions": "", "Focus chat input": "فوکوس کردن ورودی گپ", "Folder deleted successfully": "پوشه با موفقیت حذف شد", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "تأثیر می\u200cگذارد که الگوریتم چقدر سریع به بازخورد متن تولید شده پاسخ می\u200cدهد. نرخ یادگیری پایین\u200cتر منجر به تنظیمات کندتر می\u200cشود، در حالی که نرخ یادگیری بالاتر الگوریتم را پاسخگوتر می\u200cکند.", "Info": "اطلاعات", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "کل محتوا را به عنوان زمینه برای پردازش جامع تزریق کنید، این برای پرس\u200cوجوهای پیچیده توصیه می\u200cشود.", + "Input": "", "Input commands": "ورودی دستورات", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "کلید API جستجوی موجیک", "more": "بیشتر", "More": "بیشتر", + "More Concise": "", + "More Options": "", "Name": "نام", "Name your knowledge base": "پایگاه دانش خود را نام\u200cگذاری کنید", "Native": "بومی", + "New Button": "", "New Chat": "گپ جدید", "New Folder": "پوشه جدید", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "باز کردن فایل", "Open in full screen": "باز کردن در تمام صفحه", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "باز کردن گپ جدید", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI می\u200cتواند از ابزارهای ارائه شده توسط هر سرور OpenAPI استفاده کند.", "Open WebUI uses faster-whisper internally.": "Open WebUI به صورت داخلی از faster-whisper استفاده می\u200cکند.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI از SpeechT5 و جاسازی\u200cهای گوینده CMU Arctic استفاده می\u200cکند.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "بازگرداندن \"{{searchValue}}\" از Ollama.com", "Pull a model from Ollama.com": "دریافت یک مدل از Ollama.com", "Query Generation Prompt": "پرامپت تولید کوئری", + "Quick Actions": "", "RAG Template": "RAG الگوی", "Rating": "امتیازدهی", "Re-rank models by topic similarity": "رتبه\u200cبندی مجدد مدل\u200cها براساس شباهت موضوعی", @@ -1145,8 +1161,12 @@ "Search Chats": "جستجو گفتگوها", "Search Collection": "جستجوی مجموعه\u200cها", "Search Filters": "فیلترهای جستجو", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "جستجو برای برچسب\u200cها", "Search Functions": "جستجوی توابع", + "Search In Models": "", "Search Knowledge": "جستجوی دانش", "Search Models": "جستجوی مدل\u200cها", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "زیرنویس (برای مثال: درباره رمانی)", "Success": "موفقیت", "Successfully updated.": "با موفقیت به\u200cروز شد", + "Suggest a change": "", "Suggested": "پیشنهادی", "Support": "حمایت", "Support this plugin:": "حمایت از این افزونه", @@ -1379,6 +1400,7 @@ "Transformers": "ترنسفورمرها", "Trouble accessing Ollama?": "در دسترسی به ollama مشکل دارید؟", "Trust Proxy Environment": "اعتماد به محیط پراکسی", + "Try Again": "", "TTS Model": "مدل TTS", "TTS Settings": "تنظیمات TTS", "TTS Voice": "صدای TTS", diff --git a/src/lib/i18n/locales/fi-FI/translation.json b/src/lib/i18n/locales/fi-FI/translation.json index 6208ee0658..c212369ad3 100644 --- a/src/lib/i18n/locales/fi-FI/translation.json +++ b/src/lib/i18n/locales/fi-FI/translation.json @@ -43,6 +43,7 @@ "Add content here": "Lisää sisältöä tähän", "Add Custom Parameter": "Lisää mukautettu parametri", "Add custom prompt": "Lisää mukautettu kehote", + "Add Details": "", "Add Files": "Lisää tiedostoja", "Add Group": "Lisää ryhmä", "Add Memory": "Lisää muistiin", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Docling OCR moottori ja kiele(t) tulee täyttää, tai jättää molemmat tyhjäksi.", "Brave Search API Key": "Brave Search API -avain", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Tekijä {{name}}", "Bypass Embedding and Retrieval": "Ohita upotus ja haku", "Bypass Web Loader": "Ohita verkkolataaja", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "Sulje asetus modaali", + "Close Sidebar": "", "Code Block": "", "Code execution": "Koodin suoritus", "Code Execution": "Koodin Suoritus", @@ -254,6 +259,7 @@ "Command": "Komento", "Comment": "", "Completions": "Täydennykset", + "Compress Images in Channels": "", "Concurrent Requests": "Samanaikaiset pyynnöt", "Configure": "Määritä", "Confirm": "Vahvista", @@ -328,6 +334,7 @@ "Default": "Oletus", "Default (Open AI)": "Oletus (Open AI)", "Default (SentenceTransformers)": "Oletus (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Oletustila toimii laajemman mallivalikoiman kanssa kutsumalla työkaluja kerran ennen suorittamista. Natiivitila hyödyntää mallin sisäänrakennettuja työkalujen kutsumisominaisuuksia, mutta edellyttää, että malli tukee tätä ominaisuutta.", "Default Model": "Oletusmalli", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Löydä ja lataa mallien esiasetuksia", "Display": "Näytä", "Display Emoji in Call": "Näytä hymiöitä puhelussa", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Näytä käyttäjänimi keskustelussa \"Sinä\" -tekstin sijaan", "Displays citations in the response": "Näyttää lähdeviitteet vastauksessa", "Dive into knowledge": "Uppoudu tietoon", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Sormenjäljen väärentäminen havaittu: Alkukirjaimia ei voi käyttää avatarina. Käytetään oletusprofiilikuvaa.", "Firecrawl API Base URL": "Firecrawl API -verkko-osoite", "Firecrawl API Key": "Firecrawl API-avain", - "Fluidly stream large external response chunks": "Virtaa suuria ulkoisia vastausosia joustavasti", + "Floating Quick Actions": "", "Focus chat input": "Fokusoi syöttökenttään", "Folder deleted successfully": "Kansio poistettu onnistuneesti", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Tiedot", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Upota koko sisältö kontekstiin kattavaa käsittelyä varten. Tätä suositellaan monimutkaisille kyselyille.", + "Input": "", "Input commands": "Syötekäskyt", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Mojeek Search API -avain", "more": "lisää", "More": "Lisää", + "More Concise": "", + "More Options": "", "Name": "Nimi", "Name your knowledge base": "Anna tietokannalle nimi", "Native": "Natiivi", + "New Button": "", "New Chat": "Uusi keskustelu", "New Folder": "Uusi kansio", "New Function": "Uusi toiminto", @@ -984,7 +996,10 @@ "Open file": "Avaa tiedosto", "Open in full screen": "Avaa koko näytön tilaan", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Avaa uusi keskustelu", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI voi käyttää minkä tahansa OpenAPI-palvelimen tarjoamia työkaluja.", "Open WebUI uses faster-whisper internally.": "Open WebUI käyttää faster-whisperia sisäisesti.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI käyttää SpeechT5:tä ja CMU Arctic -kaiuttimen upotuksia.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Lataa \"{{searchValue}}\" Ollama.comista", "Pull a model from Ollama.com": "Lataa malli Ollama.comista", "Query Generation Prompt": "Kyselytulosten luontikehote", + "Quick Actions": "", "RAG Template": "RAG-kehote", "Rating": "Arviointi", "Re-rank models by topic similarity": "Uudelleenjärjestä mallit aiheyhteyden mukaan", @@ -1145,8 +1161,12 @@ "Search Chats": "Hae keskusteluja", "Search Collection": "Hae kokoelmaa", "Search Filters": "Hakusuodattimet", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "hae tageja", "Search Functions": "Hae toimintoja", + "Search In Models": "", "Search Knowledge": "Hae tietämystä", "Search Models": "Hae malleja", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Alaotsikko (esim. Rooman valtakunta)", "Success": "Onnistui", "Successfully updated.": "Päivitetty onnistuneesti.", + "Suggest a change": "", "Suggested": "Ehdotukset", "Support": "Tuki", "Support this plugin:": "Tue tätä lisäosaa:", @@ -1379,6 +1400,7 @@ "Transformers": "Muunnokset", "Trouble accessing Ollama?": "Ongelmia Ollama-yhteydessä?", "Trust Proxy Environment": "Luota välityspalvelimen ympäristöön", + "Try Again": "", "TTS Model": "Puhesynteesimalli", "TTS Settings": "Puhesynteesiasetukset", "TTS Voice": "Puhesynteesiääni", diff --git a/src/lib/i18n/locales/fr-CA/translation.json b/src/lib/i18n/locales/fr-CA/translation.json index 0e186f608d..8c49a0fc74 100644 --- a/src/lib/i18n/locales/fr-CA/translation.json +++ b/src/lib/i18n/locales/fr-CA/translation.json @@ -43,6 +43,7 @@ "Add content here": "Ajoutez du contenu ici", "Add Custom Parameter": "Ajoutez votre réglage personnalisé", "Add custom prompt": "Ajouter un prompt personnalisé", + "Add Details": "", "Add Files": "Ajouter des fichiers", "Add Group": "Ajouter un groupe", "Add Memory": "Ajouter un souvenir", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Le moteur d'OCR de Docling et la (les) langue(s) doivent être fournis ou laissés vides.", "Brave Search API Key": "Clé API Brave Search", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Par {{name}}", "Bypass Embedding and Retrieval": "Ignorer l'Embedding et le Retrieval", "Bypass Web Loader": "Ignorer le chargeur Web", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "Fermer la fenêtre de configuration de la connexion", "Close modal": "Fermer la fenêtre", "Close settings modal": "Fermer la fenêtre des réglages", + "Close Sidebar": "", "Code Block": "", "Code execution": "Exécution de code", "Code Execution": "Exécution de code", @@ -254,6 +259,7 @@ "Command": "Commande", "Comment": "Commentaire", "Completions": "Complétions", + "Compress Images in Channels": "", "Concurrent Requests": "Demandes concurrentes", "Configure": "Configurer", "Confirm": "Confirmer", @@ -328,6 +334,7 @@ "Default": "Par défaut", "Default (Open AI)": "Par défaut (OpenAI)", "Default (SentenceTransformers)": "Par défaut (Sentence Transformers)", + "Default action buttons will be used.": "", "Default description enabled": "Description par défaut activée", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Le mode par défaut fonctionne avec une plus large gamme de modèles en appelant les outils une fois avant l'exécution. Le mode natif exploite les capacités d'appel d'outils intégrées du modèle, mais nécessite que le modèle prenne en charge cette fonctionnalité.", "Default Model": "Modèle standard", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Découvrir, télécharger et explorer des préréglages de modèles", "Display": "Afficher", "Display Emoji in Call": "Afficher les emojis pendant l'appel", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Afficher le nom d'utilisateur à la place de \"Vous\" dans la conversation", "Displays citations in the response": "Affiche les citations dans la réponse", "Dive into knowledge": "Plonger dans les connaissances", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Spoofing détecté : impossible d'utiliser les initiales comme avatar. Retour à l'image de profil par défaut.", "Firecrawl API Base URL": "Url de l'API Base Firecrawl", "Firecrawl API Key": "Clé de l'API Firecrawl", - "Fluidly stream large external response chunks": "Streaming fluide de gros chunks de réponses externes", + "Floating Quick Actions": "", "Focus chat input": "Mettre le focus sur l'entrée de la conversation", "Folder deleted successfully": "Dossier supprimé avec succès", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influe sur la rapidité avec laquelle l'algorithme répond aux retours d'information du texte généré. Un taux d'apprentissage plus bas entraînera des ajustements plus lents, tandis qu'un taux d'apprentissage plus élevé rendra l'algorithme plus réactif.", "Info": "Info", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecter l'ensemble du contenu comme contexte pour un traitement complet, recommandé pour les requêtes complexes.", + "Input": "", "Input commands": "Commandes d'entrée", "Input Variables": "Variables d'entrée", "Insert": "Insérer", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Clé API Mojeek", "more": "plus", "More": "Plus", + "More Concise": "", + "More Options": "", "Name": "Nom d'utilisateur", "Name your knowledge base": "Nommez votre base de connaissances", "Native": "Natif", + "New Button": "", "New Chat": "Nouvelle conversation", "New Folder": "Nouveau dossier", "New Function": "Nouvelle fonction", @@ -984,7 +996,10 @@ "Open file": "Ouvrir le fichier", "Open in full screen": "Ouvrir en plein écran", "Open modal to configure connection": "Ouvrir la fenêtre modale pour configurer la connexion", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Ouvrir une nouvelle conversation", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI peut utiliser les outils fournis par n'importe quel serveur OpenAPI.", "Open WebUI uses faster-whisper internally.": "Open WebUI utilise faster-whisper en interne.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI utilise SpeechT5 et les embeddings de locuteur CMU Arctic.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Récupérer « {{searchValue}} » depuis Ollama.com", "Pull a model from Ollama.com": "Télécharger un modèle depuis Ollama.com", "Query Generation Prompt": "Prompt de génération de requête", + "Quick Actions": "", "RAG Template": "Modèle RAG", "Rating": "Note", "Re-rank models by topic similarity": "Reclasser les modèles par similarité de sujet", @@ -1145,8 +1161,12 @@ "Search Chats": "Rechercher des conversations", "Search Collection": "Rechercher une collection", "Search Filters": "Filtres de recherche", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "Rechercher des tags", "Search Functions": "Rechercher des fonctions", + "Search In Models": "", "Search Knowledge": "Rechercher des connaissances", "Search Models": "Rechercher des modèles", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Sous-titres (par ex. sur l'Empire romain)", "Success": "Réussite", "Successfully updated.": "Mise à jour réussie.", + "Suggest a change": "", "Suggested": "Suggéré", "Support": "Supporter", "Support this plugin:": "Supporter ce module", @@ -1379,6 +1400,7 @@ "Transformers": "Transformers", "Trouble accessing Ollama?": "Problèmes d'accès à Ollama ?", "Trust Proxy Environment": "Faire confiance au proxy de l'environement", + "Try Again": "", "TTS Model": "Modèle de Text-to-Speech", "TTS Settings": "Réglages de Text-to-Speech", "TTS Voice": "Voix de Text-to-Speech", diff --git a/src/lib/i18n/locales/fr-FR/translation.json b/src/lib/i18n/locales/fr-FR/translation.json index 336290852d..9057550386 100644 --- a/src/lib/i18n/locales/fr-FR/translation.json +++ b/src/lib/i18n/locales/fr-FR/translation.json @@ -43,6 +43,7 @@ "Add content here": "Ajoutez du contenu ici", "Add Custom Parameter": "Ajoutez votre réglage personnalisé", "Add custom prompt": "Ajouter un prompt personnalisé", + "Add Details": "", "Add Files": "Ajouter des fichiers", "Add Group": "Ajouter un groupe", "Add Memory": "Ajouter un souvenir", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Le moteur d'OCR de Docling et la (les) langue(s) doivent être fournis ou laissés vides.", "Brave Search API Key": "Clé API Brave Search", "Bullet List": "Liste à puces", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Par {{name}}", "Bypass Embedding and Retrieval": "Ignorer l'Embedding et le Retrieval", "Bypass Web Loader": "Ignorer le chargeur Web", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "Fermer la fenêtre de configuration de la connexion", "Close modal": "Fermer la fenêtre", "Close settings modal": "Fermer la fenêtre des réglages", + "Close Sidebar": "", "Code Block": "Bloc de code", "Code execution": "Exécution de code", "Code Execution": "Exécution de code", @@ -254,6 +259,7 @@ "Command": "Commande", "Comment": "Commentaire", "Completions": "Complétions", + "Compress Images in Channels": "", "Concurrent Requests": "Demandes concurrentes", "Configure": "Configurer", "Confirm": "Confirmer", @@ -328,6 +334,7 @@ "Default": "Par défaut", "Default (Open AI)": "Par défaut (OpenAI)", "Default (SentenceTransformers)": "Par défaut (Sentence Transformers)", + "Default action buttons will be used.": "", "Default description enabled": "Description par défaut activée", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Le mode par défaut fonctionne avec une plus large gamme de modèles en appelant les outils une fois avant l'exécution. Le mode natif exploite les capacités d'appel d'outils intégrées du modèle, mais nécessite que le modèle prenne en charge cette fonctionnalité.", "Default Model": "Modèle standard", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Découvrir, télécharger et explorer des préréglages de modèles", "Display": "Afficher", "Display Emoji in Call": "Afficher les emojis pendant l'appel", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Afficher le nom d'utilisateur à la place de \"Vous\" dans la conversation", "Displays citations in the response": "Affiche les citations dans la réponse", "Dive into knowledge": "Plonger dans les connaissances", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Spoofing détecté : impossible d'utiliser les initiales comme avatar. Retour à l'image de profil par défaut.", "Firecrawl API Base URL": "Url de l'API Base Firecrawl", "Firecrawl API Key": "Clé de l'API Firecrawl", - "Fluidly stream large external response chunks": "Streaming fluide de gros chunks de réponses externes", + "Floating Quick Actions": "", "Focus chat input": "Mettre le focus sur l'entrée de la conversation", "Folder deleted successfully": "Dossier supprimé avec succès", "Folder Name": "Nom du dossier", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influe sur la rapidité avec laquelle l'algorithme répond aux retours d'information du texte généré. Un taux d'apprentissage plus bas entraînera des ajustements plus lents, tandis qu'un taux d'apprentissage plus élevé rendra l'algorithme plus réactif.", "Info": "Info", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecter l'ensemble du contenu comme contexte pour un traitement complet, recommandé pour les requêtes complexes.", + "Input": "", "Input commands": "Commandes d'entrée", "Input Variables": "Variables d'entrée", "Insert": "Insérer", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Clé API Mojeek", "more": "plus", "More": "Plus", + "More Concise": "", + "More Options": "", "Name": "Nom d'utilisateur", "Name your knowledge base": "Nommez votre base de connaissances", "Native": "Natif", + "New Button": "", "New Chat": "Nouvelle conversation", "New Folder": "Nouveau dossier", "New Function": "Nouvelle fonction", @@ -984,7 +996,10 @@ "Open file": "Ouvrir le fichier", "Open in full screen": "Ouvrir en plein écran", "Open modal to configure connection": "Ouvrir la fenêtre modale pour configurer la connexion", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Ouvrir une nouvelle conversation", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI peut utiliser les outils fournis par n'importe quel serveur OpenAPI.", "Open WebUI uses faster-whisper internally.": "Open WebUI utilise faster-whisper en interne.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI utilise SpeechT5 et les embeddings de locuteur CMU Arctic.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Récupérer « {{searchValue}} » depuis Ollama.com", "Pull a model from Ollama.com": "Télécharger un modèle depuis Ollama.com", "Query Generation Prompt": "Prompt de génération de requête", + "Quick Actions": "", "RAG Template": "Modèle RAG", "Rating": "Note", "Re-rank models by topic similarity": "Reclasser les modèles par similarité de sujet", @@ -1145,8 +1161,12 @@ "Search Chats": "Rechercher des conversations", "Search Collection": "Rechercher une collection", "Search Filters": "Filtres de recherche", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "Rechercher des tags", "Search Functions": "Rechercher des fonctions", + "Search In Models": "", "Search Knowledge": "Rechercher des connaissances", "Search Models": "Rechercher des modèles", "Search Notes": "Rechercher des notes", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Sous-titres (par ex. sur l'Empire romain)", "Success": "Réussite", "Successfully updated.": "Mise à jour réussie.", + "Suggest a change": "", "Suggested": "Suggéré", "Support": "Supporter", "Support this plugin:": "Supporter ce module", @@ -1379,6 +1400,7 @@ "Transformers": "Transformers", "Trouble accessing Ollama?": "Problèmes d'accès à Ollama ?", "Trust Proxy Environment": "Faire confiance au proxy de l'environement", + "Try Again": "", "TTS Model": "Modèle de Text-to-Speech", "TTS Settings": "Réglages de Text-to-Speech", "TTS Voice": "Voix de Text-to-Speech", diff --git a/src/lib/i18n/locales/gl-ES/translation.json b/src/lib/i18n/locales/gl-ES/translation.json index b275e93513..f12ce916ea 100644 --- a/src/lib/i18n/locales/gl-ES/translation.json +++ b/src/lib/i18n/locales/gl-ES/translation.json @@ -43,6 +43,7 @@ "Add content here": "Agrege contido aquí", "Add Custom Parameter": "", "Add custom prompt": "Agregar un prompt personalizado", + "Add Details": "", "Add Files": "Agregar Arquivos", "Add Group": "Agregar Grupo", "Add Memory": "Agregar Memoria", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Chave de API da busqueda Brave", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Por {{name}}", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Execución de código", "Code Execution": "Execución de código", @@ -254,6 +259,7 @@ "Command": "Comando", "Comment": "", "Completions": "Respostas autoxeradas", + "Compress Images in Channels": "", "Concurrent Requests": "Solicitudes simultáneas", "Configure": "Configurar", "Confirm": "Confirmar", @@ -328,6 +334,7 @@ "Default": "Por defecto", "Default (Open AI)": "Predeterminado (Open AI)", "Default (SentenceTransformers)": "Predeterminado (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "O modo predeterminado funciona con unha gama mais ampla de modelos chamando as ferramentas unha vez antes da execución. o modo nativo aproveita as capacidades integradas de chamada de ferramentas do modelo, pero requiere que o modelo soporte esta función de manera inherente.", "Default Model": "Modelo predeterminado", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Descubre, descarga y explora ajustes preestablecidos de modelos", "Display": "Mostrar", "Display Emoji in Call": "Muestra Emoji en chamada", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Mostrar o nombre de usuario en lugar de Vostede no chat", "Displays citations in the response": "Muestra citas en arespuesta", "Dive into knowledge": "Sumérgete no coñecemento", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Destectouse suplantación de pegadas: Non puderon usarse as iniciais como avatar. Por defecto utilizase a imaxen de perfil predeterminada.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Transmita con fluidez grandes fragmentos de resposta externa", + "Floating Quick Actions": "", "Focus chat input": "Enfoca a entrada do chat", "Folder deleted successfully": "Carpeta eliminada correctamente", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Información", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Ingresar comandos", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "chave API de Mojeek Search", "more": "mais", "More": "mais", + "More Concise": "", + "More Options": "", "Name": "Nombre", "Name your knowledge base": "Nombra a tua base de coñecementos", "Native": "Nativo", + "New Button": "", "New Chat": "Novo Chat", "New Folder": "Nova carpeta", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "Abrir arquivo", "Open in full screen": "Abrir en pantalla completa", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Abrir novo chat", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI usa faster-whisper internamente.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI usa SpeechT5 y embeddings de locutores CMU Arctic.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Extraer \"{{searchValue}}\" de Ollama.com", "Pull a model from Ollama.com": "Obter un modelo de Ollama.com", "Query Generation Prompt": "Prompt de xeneración de consulta", + "Quick Actions": "", "RAG Template": "Plantilla de RAG", "Rating": "Calificación", "Re-rank models by topic similarity": "Re-clasificar modelos por similitud de tema", @@ -1145,8 +1161,12 @@ "Search Chats": "Chats de búsqueda", "Search Collection": "Buscar Colección", "Search Filters": "Filtros de búsqueda", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "buscar etiquetas", "Search Functions": "Buscar Funcions", + "Search In Models": "", "Search Knowledge": "Buscar coñecemento", "Search Models": "Buscar Modelos", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Subtítulo (por Exemplo, sobre o Imperio Romano)", "Success": "Éxito", "Successfully updated.": "Actualizado exitosamente.", + "Suggest a change": "", "Suggested": "Sugerido", "Support": "Soporte", "Support this plugin:": "Brinda soporte a este plugin:", @@ -1379,6 +1400,7 @@ "Transformers": "Transformadores", "Trouble accessing Ollama?": "¿Problemas para acceder a Ollama?", "Trust Proxy Environment": "Confiar nos entornos de proxy", + "Try Again": "", "TTS Model": "Modelo TTS", "TTS Settings": "Configuración de TTS", "TTS Voice": "Voz do TTS", diff --git a/src/lib/i18n/locales/he-IL/translation.json b/src/lib/i18n/locales/he-IL/translation.json index f1c9ba5475..5752977c8a 100644 --- a/src/lib/i18n/locales/he-IL/translation.json +++ b/src/lib/i18n/locales/he-IL/translation.json @@ -43,6 +43,7 @@ "Add content here": "הוסף תוכן כאן", "Add Custom Parameter": "", "Add custom prompt": "הוסף פקודה מותאמת אישית", + "Add Details": "", "Add Files": "הוסף קבצים", "Add Group": "הוסף קבוצה", "Add Memory": "הוסף זיכרון", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "מפתח API של חיפוש אמיץ", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "הרצת קוד", "Code Execution": "הרצת קוד", @@ -254,6 +259,7 @@ "Command": "פקודה", "Comment": "", "Completions": "", + "Compress Images in Channels": "", "Concurrent Requests": "בקשות בו-זמניות", "Configure": "", "Confirm": "", @@ -328,6 +334,7 @@ "Default": "ברירת מחדל", "Default (Open AI)": "", "Default (SentenceTransformers)": "ברירת מחדל (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "מודל ברירת מחדל", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "גלה, הורד, וחקור הגדרות מודל מוגדרות מראש", "Display": "", "Display Emoji in Call": "", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "הצג את שם המשתמש במקום 'אתה' בצ'אט", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "התגלתה הזיית טביעת אצבע: לא ניתן להשתמש בראשי תיבות כאווטאר. משתמש בתמונת פרופיל ברירת מחדל.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "שידור נתונים חיצוניים בקצב רציף", + "Floating Quick Actions": "", "Focus chat input": "מיקוד הקלט לצ'אט", "Folder deleted successfully": "", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "מידע", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "פקודות קלט", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "", "More": "עוד", + "More Concise": "", + "More Options": "", "Name": "שם", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "צ'אט חדש", "New Folder": "תיקייה חדשה", "New Function": "פונקציה חדשה", @@ -984,7 +996,10 @@ "Open file": "", "Open in full screen": "", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "פתח צ'אט חדש", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "משוך \"{{searchValue}}\" מ-Ollama.com", "Pull a model from Ollama.com": "משוך מודל מ-Ollama.com", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "תבנית RAG", "Rating": "", "Re-rank models by topic similarity": "", @@ -1145,8 +1161,12 @@ "Search Chats": "חיפוש צ'אטים", "Search Collection": "", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "", "Search Functions": "", + "Search In Models": "", "Search Knowledge": "", "Search Models": "חיפוש מודלים", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "תחקור (לדוגמה: על מעמד הרומי)", "Success": "הצלחה", "Successfully updated.": "עדכון הצלחה.", + "Suggest a change": "", "Suggested": "מומלץ", "Support": "", "Support this plugin:": "", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "קשה לגשת לOllama?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "", "TTS Settings": "הגדרות TTS", "TTS Voice": "", diff --git a/src/lib/i18n/locales/hi-IN/translation.json b/src/lib/i18n/locales/hi-IN/translation.json index 6bffcd0b9e..2d509e2e33 100644 --- a/src/lib/i18n/locales/hi-IN/translation.json +++ b/src/lib/i18n/locales/hi-IN/translation.json @@ -43,6 +43,7 @@ "Add content here": "", "Add Custom Parameter": "", "Add custom prompt": "अनुकूल संकेत जोड़ें", + "Add Details": "", "Add Files": "फाइलें जोड़ें", "Add Group": "", "Add Memory": "मेमोरी जोड़ें", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Brave सर्च एपीआई कुंजी", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "कमांड", "Comment": "", "Completions": "", + "Compress Images in Channels": "", "Concurrent Requests": "समवर्ती अनुरोध", "Configure": "", "Confirm": "", @@ -328,6 +334,7 @@ "Default": "डिफ़ॉल्ट", "Default (Open AI)": "", "Default (SentenceTransformers)": "डिफ़ॉल्ट (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "डिफ़ॉल्ट मॉडल", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "मॉडल प्रीसेट खोजें, डाउनलोड करें और एक्सप्लोर करें", "Display": "", "Display Emoji in Call": "", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "चैट में 'आप' के स्थान पर उपयोगकर्ता नाम प्रदर्शित करें", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "फ़िंगरप्रिंट स्पूफ़िंग का पता चला: प्रारंभिक अक्षरों को अवतार के रूप में उपयोग करने में असमर्थ। प्रोफ़ाइल छवि को डिफ़ॉल्ट पर डिफ़ॉल्ट किया जा रहा है.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "बड़े बाह्य प्रतिक्रिया खंडों को तरल रूप से प्रवाहित करें", + "Floating Quick Actions": "", "Focus chat input": "चैट इनपुट पर फ़ोकस करें", "Folder deleted successfully": "", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "सूचना-विषयक", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "इनपुट क命", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "", "More": "और..", + "More Concise": "", + "More Options": "", "Name": "नाम", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "नई चैट", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "", "Open in full screen": "", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "नई चैट खोलें", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" को Ollama.com से खींचें", "Pull a model from Ollama.com": "Ollama.com से एक मॉडल खींचें", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "RAG टेम्पलेट", "Rating": "", "Re-rank models by topic similarity": "", @@ -1145,8 +1161,12 @@ "Search Chats": "चैट खोजें", "Search Collection": "", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "", "Search Functions": "", + "Search In Models": "", "Search Knowledge": "", "Search Models": "मॉडल खोजें", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "उपशीर्षक (जैसे रोमन साम्राज्य के बारे में)", "Success": "संपन्न", "Successfully updated.": "सफलतापूर्वक उत्परिवर्तित।", + "Suggest a change": "", "Suggested": "सुझावी", "Support": "", "Support this plugin:": "", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "Ollama तक पहुँचने में परेशानी हो रही है?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "", "TTS Settings": "TTS सेटिंग्स", "TTS Voice": "", diff --git a/src/lib/i18n/locales/hr-HR/translation.json b/src/lib/i18n/locales/hr-HR/translation.json index fef08688fa..93f1074e51 100644 --- a/src/lib/i18n/locales/hr-HR/translation.json +++ b/src/lib/i18n/locales/hr-HR/translation.json @@ -43,6 +43,7 @@ "Add content here": "", "Add Custom Parameter": "", "Add custom prompt": "Dodaj prilagođeni prompt", + "Add Details": "", "Add Files": "Dodaj datoteke", "Add Group": "", "Add Memory": "Dodaj memoriju", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Brave tražilica - API ključ", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "Naredba", "Comment": "", "Completions": "", + "Compress Images in Channels": "", "Concurrent Requests": "Istodobni zahtjevi", "Configure": "", "Confirm": "", @@ -328,6 +334,7 @@ "Default": "Zadano", "Default (Open AI)": "", "Default (SentenceTransformers)": "Zadano (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Zadani model", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Otkrijte, preuzmite i istražite unaprijed postavljene modele", "Display": "", "Display Emoji in Call": "", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Prikaži korisničko ime umjesto Vas u razgovoru", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Otkriveno krivotvorenje otisaka prstiju: Nemoguće je koristiti inicijale kao avatar. Postavljanje na zadanu profilnu sliku.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Glavno strujanje velikih vanjskih dijelova odgovora", + "Floating Quick Actions": "", "Focus chat input": "Fokusiraj unos razgovora", "Folder deleted successfully": "", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Informacije", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Unos naredbi", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "", "More": "Više", + "More Concise": "", + "More Options": "", "Name": "Ime", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "Novi razgovor", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "", "Open in full screen": "", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Otvorite novi razgovor", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Povucite \"{{searchValue}}\" s Ollama.com", "Pull a model from Ollama.com": "Povucite model s Ollama.com", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "RAG predložak", "Rating": "", "Re-rank models by topic similarity": "", @@ -1145,8 +1161,12 @@ "Search Chats": "Pretraži razgovore", "Search Collection": "", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "", "Search Functions": "", + "Search In Models": "", "Search Knowledge": "", "Search Models": "Pretražite modele", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Podnaslov (npr. o Rimskom carstvu)", "Success": "Uspjeh", "Successfully updated.": "Uspješno ažurirano.", + "Suggest a change": "", "Suggested": "Predloženo", "Support": "", "Support this plugin:": "", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "Problemi s pristupom Ollama?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "TTS model", "TTS Settings": "TTS postavke", "TTS Voice": "TTS glas", diff --git a/src/lib/i18n/locales/hu-HU/translation.json b/src/lib/i18n/locales/hu-HU/translation.json index b3486a3b21..e6c9f6291e 100644 --- a/src/lib/i18n/locales/hu-HU/translation.json +++ b/src/lib/i18n/locales/hu-HU/translation.json @@ -43,6 +43,7 @@ "Add content here": "Tartalom hozzáadása ide", "Add Custom Parameter": "", "Add custom prompt": "Egyéni prompt hozzáadása", + "Add Details": "", "Add Files": "Fájlok hozzáadása", "Add Group": "Csoport hozzáadása", "Add Memory": "Memória hozzáadása", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Brave Search API kulcs", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Készítette: {{name}}", "Bypass Embedding and Retrieval": "Beágyazás és visszakeresés kihagyása", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Kód végrehajtás", "Code Execution": "Kód végrehajtás", @@ -254,6 +259,7 @@ "Command": "Parancs", "Comment": "", "Completions": "Kiegészítések", + "Compress Images in Channels": "", "Concurrent Requests": "Párhuzamos kérések", "Configure": "Konfigurálás", "Confirm": "Megerősítés", @@ -328,6 +334,7 @@ "Default": "Alapértelmezett", "Default (Open AI)": "Alapértelmezett (Open AI)", "Default (SentenceTransformers)": "Alapértelmezett (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Az alapértelmezett mód szélesebb modellválasztékkal működik az eszközök egyszeri meghívásával a végrehajtás előtt. A natív mód a modell beépített eszközhívási képességeit használja ki, de ehhez a modellnek eredendően támogatnia kell ezt a funkciót.", "Default Model": "Alapértelmezett modell", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Fedezz fel, tölts le és fedezz fel modell beállításokat", "Display": "Megjelenítés", "Display Emoji in Call": "Emoji megjelenítése hívásban", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Felhasználónév megjelenítése a 'Te' helyett a beszélgetésben", "Displays citations in the response": "Idézetek megjelenítése a válaszban", "Dive into knowledge": "Merülj el a tudásban", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Ujjlenyomat hamisítás észlelve: Nem lehet a kezdőbetűket avatárként használni. Alapértelmezett profilkép használata.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Nagy külső válasz darabok folyamatos streamelése", + "Floating Quick Actions": "", "Focus chat input": "Chat bevitel fókuszálása", "Folder deleted successfully": "Mappa sikeresen törölve", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Befolyásolja, hogy az algoritmus milyen gyorsan reagál a generált szöveg visszajelzéseire. Alacsonyabb tanulási ráta lassabb调整okat eredményez, míg magasabb ráta gyorsabb reagálást biztosít.", "Info": "Információ", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Az összes tartalom kontextusként való befecskendezése átfogó feldolgozáshoz, ez összetett lekérdezésekhez ajánlott.", + "Input": "", "Input commands": "Beviteli parancsok", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Mojeek Search API kulcs", "more": "több", "More": "Több", + "More Concise": "", + "More Options": "", "Name": "Név", "Name your knowledge base": "Nevezd el a tudásbázisodat", "Native": "Natív", + "New Button": "", "New Chat": "Új beszélgetés", "New Folder": "Új mappa", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "Fájl megnyitása", "Open in full screen": "Megnyitás teljes képernyőn", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Új beszélgetés megnyitása", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Az Open WebUI bármely OpenAPI szerver által biztosított eszközöket használhat.", "Open WebUI uses faster-whisper internally.": "Az Open WebUI belsőleg a faster-whispert használja.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Az Open WebUI a SpeechT5-öt és a CMU Arctic hangszóró beágyazásokat használja.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" letöltése az Ollama.com-ról", "Pull a model from Ollama.com": "Modell letöltése az Ollama.com-ról", "Query Generation Prompt": "Lekérdezés generálási prompt", + "Quick Actions": "", "RAG Template": "RAG sablon", "Rating": "Értékelés", "Re-rank models by topic similarity": "Modellek újrarangsorolása téma hasonlóság alapján", @@ -1145,8 +1161,12 @@ "Search Chats": "Beszélgetések keresése", "Search Collection": "Gyűjtemény keresése", "Search Filters": "Keresési szűrők", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "címkék keresése", "Search Functions": "Funkciók keresése", + "Search In Models": "", "Search Knowledge": "Tudásbázis keresése", "Search Models": "Modellek keresése", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Alcím (pl. a Római Birodalomról)", "Success": "Siker", "Successfully updated.": "Sikeresen frissítve.", + "Suggest a change": "", "Suggested": "Javasolt", "Support": "Támogatás", "Support this plugin:": "Támogassa ezt a bővítményt:", @@ -1379,6 +1400,7 @@ "Transformers": "Transformerek", "Trouble accessing Ollama?": "Problémája van az Ollama elérésével?", "Trust Proxy Environment": "Proxy környezet megbízhatósága", + "Try Again": "", "TTS Model": "TTS modell", "TTS Settings": "TTS beállítások", "TTS Voice": "TTS hang", diff --git a/src/lib/i18n/locales/id-ID/translation.json b/src/lib/i18n/locales/id-ID/translation.json index 6f3f582ee3..c24f015db2 100644 --- a/src/lib/i18n/locales/id-ID/translation.json +++ b/src/lib/i18n/locales/id-ID/translation.json @@ -43,6 +43,7 @@ "Add content here": "", "Add Custom Parameter": "", "Add custom prompt": "Tambahkan prompt khusus", + "Add Details": "", "Add Files": "Menambahkan File", "Add Group": "", "Add Memory": "Menambahkan Memori", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Kunci API Pencarian Berani", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "Perintah", "Comment": "", "Completions": "", + "Compress Images in Channels": "", "Concurrent Requests": "Permintaan Bersamaan", "Configure": "", "Confirm": "Konfirmasi", @@ -328,6 +334,7 @@ "Default": "Default", "Default (Open AI)": "", "Default (SentenceTransformers)": "Default (Pengubah Kalimat)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Model Default", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Menemukan, mengunduh, dan menjelajahi preset model", "Display": "", "Display Emoji in Call": "Menampilkan Emoji dalam Panggilan", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Menampilkan nama pengguna, bukan Anda di Obrolan", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Pemalsuan sidik jari terdeteksi: Tidak dapat menggunakan inisial sebagai avatar. Default ke gambar profil default.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Mengalirkan potongan respons eksternal yang besar dengan lancar", + "Floating Quick Actions": "", "Focus chat input": "Memfokuskan input obrolan", "Folder deleted successfully": "", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Info", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Perintah masukan", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "", "More": "Lainnya", + "More Concise": "", + "More Options": "", "Name": "Nama", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "Obrolan Baru", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "", "Open in full screen": "", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Buka obrolan baru", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Tarik \"{{searchValue}}\" dari Ollama.com", "Pull a model from Ollama.com": "Tarik model dari Ollama.com", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "Templat RAG", "Rating": "", "Re-rank models by topic similarity": "", @@ -1145,8 +1161,12 @@ "Search Chats": "Cari Obrolan", "Search Collection": "", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "", "Search Functions": "Fungsi Pencarian", + "Search In Models": "", "Search Knowledge": "", "Search Models": "Cari Model", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Subtitle (misalnya tentang Kekaisaran Romawi)", "Success": "Berhasil", "Successfully updated.": "Berhasil diperbarui.", + "Suggest a change": "", "Suggested": "Disarankan", "Support": "", "Support this plugin:": "", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "Kesulitan mengakses Ollama?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "Model TTS", "TTS Settings": "Pengaturan TTS", "TTS Voice": "Suara TTS", diff --git a/src/lib/i18n/locales/ie-GA/translation.json b/src/lib/i18n/locales/ie-GA/translation.json index 3c27398d7a..80f9a4c52e 100644 --- a/src/lib/i18n/locales/ie-GA/translation.json +++ b/src/lib/i18n/locales/ie-GA/translation.json @@ -43,6 +43,7 @@ "Add content here": "Cuir ábhar anseo", "Add Custom Parameter": "Cuir Paraiméadar Saincheaptha leis", "Add custom prompt": "Cuir leid saincheaptha leis", + "Add Details": "", "Add Files": "Cuir Comhaid", "Add Group": "Cuir Grúpa leis", "Add Memory": "Cuir Cuimhne", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Ní mór Inneall OCR Docling agus Teanga/Teangacha araon a sholáthar nó an dá cheann a fhágáil folamh.", "Brave Search API Key": "Eochair API Cuardaigh Brave", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Le {{name}}", "Bypass Embedding and Retrieval": "Seachbhóthar Leabú agus Aisghabháil", "Bypass Web Loader": "Seachbhóthar Luchtaire Gréasáin", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "Dún modúl", "Close settings modal": "Dún modúl na socruithe", + "Close Sidebar": "", "Code Block": "", "Code execution": "Cód a fhorghníomhú", "Code Execution": "Forghníomhú Cóid", @@ -254,6 +259,7 @@ "Command": "Ordú", "Comment": "", "Completions": "Críochnaithe", + "Compress Images in Channels": "", "Concurrent Requests": "Iarrataí Comhthéime", "Configure": "Cumraigh", "Confirm": "Deimhnigh", @@ -328,6 +334,7 @@ "Default": "Réamhshocraithe", "Default (Open AI)": "Réamhshocraithe (Oscail AI)", "Default (SentenceTransformers)": "Réamhshocraithe (SentenceTransFormers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Oibríonn mód réamhshocraithe le raon níos leithne samhlacha trí ghlaoch a chur ar uirlisí uair amháin roimh fhorghníomhú. Déanann mód dúchasach cumas glaoite uirlisí ionsuite an mhúnla a ghiaráil, ach éilíonn sé go dtacaíonn an tsamhail leis an ngné seo go bunúsach.", "Default Model": "Múnla Réamhshocraithe", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Réamhshocruithe múnla a fháil amach, a íoslódáil agus a iniúchadh", "Display": "Taispeáin", "Display Emoji in Call": "Taispeáin Emoji i nGlao", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Taispeáin an t-ainm úsáideora in ionad Tú sa Comhrá", "Displays citations in the response": "Taispeánann sé luanna sa fhreagra", "Dive into knowledge": "Léim isteach eolas", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Braithíodh spoofing méarloirg: Ní féidir teachlitreacha a úsáid mar avatar. Réamhshocrú ar íomhá próifíle réamhshocraithe.", "Firecrawl API Base URL": "URL Bunús API Firecrawl", "Firecrawl API Key": "Eochair API Firecrawl", - "Fluidly stream large external response chunks": "Sruthaigh codanna móra freagartha seachtracha go sreabhach", + "Floating Quick Actions": "", "Focus chat input": "Ionchur comhrá fócas", "Folder deleted successfully": "Scriosadh an fillteán go rathúil", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Bíonn tionchar aige ar chomh tapa agus a fhreagraíonn an t-algartam d'aiseolas ón téacs ginte. Beidh coigeartuithe níos moille mar thoradh ar ráta foghlama níos ísle, agus déanfaidh ráta foghlama níos airde an t-algartam níos freagraí.", "Info": "Eolas", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Instealladh an t-ábhar ar fad mar chomhthéacs do phróiseáil chuimsitheach, moltar é seo le haghaidh ceisteanna casta.", + "Input": "", "Input commands": "Orduithe ionchuir", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Eochair API Cuardach Mojeek", "more": "níos mó", "More": "Tuilleadh", + "More Concise": "", + "More Options": "", "Name": "Ainm", "Name your knowledge base": "Cuir ainm ar do bhunachar eolais", "Native": "Dúchasach", + "New Button": "", "New Chat": "Comhrá Nua", "New Folder": "Fillteán Nua", "New Function": "Feidhm Nua", @@ -984,7 +996,10 @@ "Open file": "Oscail comhad", "Open in full screen": "Oscail i scáileán iomlán", "Open modal to configure connection": "Oscail an modal chun an nasc a chumrú", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Oscail comhrá nua", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Is féidir le WebUI Oscailte uirlisí a úsáid a sholáthraíonn aon fhreastalaí OpenAPI.", "Open WebUI uses faster-whisper internally.": "Úsáideann Open WebUI cogar níos tapúla go hinmheánach.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Úsáideann Open WebUI úsáidí SpeechT5 agus CMU leabaithe cainteoir Artach.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Tarraing \"{{searchValue}}\" ó Ollama.com", "Pull a model from Ollama.com": "Tarraing múnla ó Ollama.com", "Query Generation Prompt": "Cuirí Ginearáil Ceisteanna", + "Quick Actions": "", "RAG Template": "Teimpléad RAG", "Rating": "Rátáil", "Re-rank models by topic similarity": "Athrangaigh múnlaí de réir cosúlachta topaicí", @@ -1145,8 +1161,12 @@ "Search Chats": "Cuardaigh Comhráite", "Search Collection": "Bailiúchán Cuardaigh", "Search Filters": "Scagairí Cuardaigh", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "cuardach le haghaidh clibeanna", "Search Functions": "Feidhmeanna Cuardaigh", + "Search In Models": "", "Search Knowledge": "Cuardaigh Eolais", "Search Models": "Múnlaí Cuardaigh", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Fotheideal (m.sh. faoin Impireacht Rómhánach)", "Success": "Rath", "Successfully updated.": "Nuashonraithe go rathúil.", + "Suggest a change": "", "Suggested": "Molta", "Support": "Tacaíocht", "Support this plugin:": "Tacaigh leis an mbreiseán seo:", @@ -1379,6 +1400,7 @@ "Transformers": "Claochladáin", "Trouble accessing Ollama?": "Deacracht teacht ar Ollama?", "Trust Proxy Environment": "Timpeallacht Iontaobhais do Phróicís", + "Try Again": "", "TTS Model": "TTS Múnla", "TTS Settings": "Socruithe TTS", "TTS Voice": "Guth TTS", diff --git a/src/lib/i18n/locales/it-IT/translation.json b/src/lib/i18n/locales/it-IT/translation.json index 4c73cbaa3d..87f204dddc 100644 --- a/src/lib/i18n/locales/it-IT/translation.json +++ b/src/lib/i18n/locales/it-IT/translation.json @@ -43,6 +43,7 @@ "Add content here": "Aggiungi un contenuto qui", "Add Custom Parameter": "Aggiungi Parametri Personalizzati", "Add custom prompt": "Aggiungi un prompt personalizzato", + "Add Details": "", "Add Files": "Aggiungi dei file", "Add Group": "Aggiungi un gruppo", "Add Memory": "Aggiungi memoria", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Entrambi il Docling OCR Engine e la lingua(e) devono essere forniti o entrambi lasciati vuoti.", "Brave Search API Key": "Chiave API di ricerca Brave", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Di {{name}}", "Bypass Embedding and Retrieval": "Bypass embedding e recupero", "Bypass Web Loader": "Bypassa il Web Loader", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "Chiudi modale", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Esecuzione codice", "Code Execution": "Esecuzione codice", @@ -254,6 +259,7 @@ "Command": "Comando", "Comment": "", "Completions": "Completamenti", + "Compress Images in Channels": "", "Concurrent Requests": "Richieste simultanee", "Configure": "Configura", "Confirm": "Conferma", @@ -328,6 +334,7 @@ "Default": "Predefinito", "Default (Open AI)": "Predefinito (Open AI)", "Default (SentenceTransformers)": "Predefinito (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Il modello predefinito funziona con un'ampia gamma di modelli chiamando gli strumenti una volta prima dell'esecuzione. La modalità nativa sfrutta le capacità di chiamata degli strumenti integrate nel modello, ma richiede che il modello supporti intrinsecamente questa funzionalità.", "Default Model": "Modello predefinito", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Scopri, scarica ed esplora i preset dei modello", "Display": "Visualizza", "Display Emoji in Call": "Visualizza emoji nella chiamata", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Visualizza il nome utente invece di Tu nella chat", "Displays citations in the response": "Visualizza citazioni nella risposta", "Dive into knowledge": "Immergiti nella conoscenza", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Rilevato spoofing delle impronte digitali: impossibile utilizzare le iniziali come avatar. Ripristino all'immagine del profilo predefinita.", "Firecrawl API Base URL": "URL base dell'API Firecrawl", "Firecrawl API Key": "Chiave API Firecrawl", - "Fluidly stream large external response chunks": "Trasmetti in modo fluido blocchi di risposta esterni di grandi dimensioni", + "Floating Quick Actions": "", "Focus chat input": "Metti a fuoco l'input della chat", "Folder deleted successfully": "Cartella rimossa con successo", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influenza la velocità con cui l'algoritmo risponde al feedback del testo generato. Un tasso di apprendimento più basso comporterà aggiustamenti più lenti, mentre un tasso di apprendimento più alto renderà l'algoritmo più reattivo.", "Info": "Informazioni", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Inietta l'intero contenuto come contesto per un'elaborazione completa, questo è consigliato per query complesse.", + "Input": "", "Input commands": "Comandi di input", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Chiave API di Mojeek Search", "more": "altro", "More": "Altro", + "More Concise": "", + "More Options": "", "Name": "Nome", "Name your knowledge base": "Dai un nome alla tua base di conoscenza", "Native": "Nativo", + "New Button": "", "New Chat": "Nuova chat", "New Folder": "Nuova cartella", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "Apri file", "Open in full screen": "Apri a schermo intero", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Apri nuova chat", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI può utilizzare tool forniti da qualsiasi server OpenAPI.", "Open WebUI uses faster-whisper internally.": "Open WebUI utilizza faster-whisper internamente.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI utilizza le incorporazioni vocali di SpeechT5 e CMU Arctic.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Estrai \"{{searchValue}}\" da Ollama.com", "Pull a model from Ollama.com": "Estrai un modello da Ollama.com", "Query Generation Prompt": "Prompt di Generazione Query", + "Quick Actions": "", "RAG Template": "Modello RAG", "Rating": "Valutazione", "Re-rank models by topic similarity": "Riordina i modelli in base alla somiglianza degli argomenti", @@ -1145,8 +1161,12 @@ "Search Chats": "Cerca nelle chat", "Search Collection": "Cerca collezione", "Search Filters": "Cerca filtri", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "cerca tag", "Search Functions": "Cerca funzioni", + "Search In Models": "", "Search Knowledge": "Cerca conoscenza", "Search Models": "Cerca modelli", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Sottotitolo (ad esempio sull'Impero Romano)", "Success": "Successo", "Successfully updated.": "Aggiornato con successo.", + "Suggest a change": "", "Suggested": "Suggerito", "Support": "Supporto", "Support this plugin:": "Supporta questo plugin:", @@ -1379,6 +1400,7 @@ "Transformers": "Transformer", "Trouble accessing Ollama?": "Problemi di accesso a Ollama?", "Trust Proxy Environment": "Fidati dell'Ambiente Proxy", + "Try Again": "", "TTS Model": "Modello TTS", "TTS Settings": "Impostazioni TTS", "TTS Voice": "Voce TTS", diff --git a/src/lib/i18n/locales/ja-JP/translation.json b/src/lib/i18n/locales/ja-JP/translation.json index e8f3e77d49..16d012a983 100644 --- a/src/lib/i18n/locales/ja-JP/translation.json +++ b/src/lib/i18n/locales/ja-JP/translation.json @@ -43,6 +43,7 @@ "Add content here": "ここへコンテンツを追加", "Add Custom Parameter": "", "Add custom prompt": "カスタムプロンプトを追加", + "Add Details": "", "Add Files": "ファイルを追加", "Add Group": "グループを追加", "Add Memory": "メモリを追加", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Docling OCRエンジンと言語(s)の両方が提供されているか、両方が空のままになっている必要があります。", "Brave Search API Key": "Brave Search APIキー", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "{{name}}による", "Bypass Embedding and Retrieval": "埋め込みと検索をバイパス", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "コードの実行", "Code Execution": "コードの実行", @@ -254,6 +259,7 @@ "Command": "コマンド", "Comment": "", "Completions": "コンプリート", + "Compress Images in Channels": "", "Concurrent Requests": "同時リクエスト", "Configure": "設定", "Confirm": "確認", @@ -328,6 +334,7 @@ "Default": "デフォルト", "Default (Open AI)": "デフォルト(OpenAI)", "Default (SentenceTransformers)": "デフォルト (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "デフォルトモデル", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "モデルプリセットを探してダウンロードする", "Display": "", "Display Emoji in Call": "コールで絵文字を表示", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "チャットで「あなた」の代わりにユーザー名を表示", "Displays citations in the response": "応答に引用を表示", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "指紋のなりすましが検出されました: イニシャルをアバターとして使用できません。デフォルトのプロファイル画像にデフォルト設定されています。", "Firecrawl API Base URL": "", "Firecrawl API Key": "Firecrawl APIキー", - "Fluidly stream large external response chunks": "大規模な外部応答チャンクをスムーズにストリーミングする", + "Floating Quick Actions": "", "Focus chat input": "チャット入力をフォーカス", "Folder deleted successfully": "フォルダー削除が成功しました。", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "生成されたテキストからのフィードバックに対するアルゴリズムの応答速度を影響します。低い学習率はより遅い調整をもたらし、高い学習率はアルゴリズムをより反応的にします。", "Info": "情報", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "複雑なクエリには、包括的な処理のためにコンテンツ全体をコンテキストとして注入することをお勧めします。", + "Input": "", "Input commands": "入力コマンド", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Mojeek Search APIキー", "more": "もっと見る", "More": "もっと見る", + "More Concise": "", + "More Options": "", "Name": "名前", "Name your knowledge base": "ナレッジベースの名前を付ける", "Native": "ネイティブ", + "New Button": "", "New Chat": "新しいチャット", "New Folder": "新しいフォルダ", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "ファイルを開く", "Open in full screen": "全画面表示", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "新しいチャットを開く", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "OpenWebUI は任意のOpenAPI サーバーが提供するツールを使用できます。", "Open WebUI uses faster-whisper internally.": "OpenWebUI は内部でfaster-whisperを使用します。", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "OpenWebUI は SpeechT5とCMU Arctic スピーカー埋め込みを使用します。", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com から \"{{searchValue}}\" をプル", "Pull a model from Ollama.com": "Ollama.com からモデルをプル", "Query Generation Prompt": "クエリ生成プロンプト", + "Quick Actions": "", "RAG Template": "RAG テンプレート", "Rating": "評価", "Re-rank models by topic similarity": "トピックの類似性に基づいてモデルを再ランク付け", @@ -1145,8 +1161,12 @@ "Search Chats": "チャットの検索", "Search Collection": "Collectionの検索", "Search Filters": "フィルターの検索", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "タグを検索", "Search Functions": "Functionの検索", + "Search In Models": "", "Search Knowledge": "ナレッジベースの検索", "Search Models": "モデル検索", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "字幕 (例: ローマ帝国)", "Success": "成功", "Successfully updated.": "正常に更新されました。", + "Suggest a change": "", "Suggested": "提案", "Support": "サポート", "Support this plugin:": "このプラグインをサポートする:", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "Ollama へのアクセスに問題がありますか?", "Trust Proxy Environment": "プロキシ環境を信頼する", + "Try Again": "", "TTS Model": "TTSモデル", "TTS Settings": "TTS 設定", "TTS Voice": "TTSボイス", diff --git a/src/lib/i18n/locales/ka-GE/translation.json b/src/lib/i18n/locales/ka-GE/translation.json index 26f0c5832b..e62afbe38d 100644 --- a/src/lib/i18n/locales/ka-GE/translation.json +++ b/src/lib/i18n/locales/ka-GE/translation.json @@ -43,6 +43,7 @@ "Add content here": "შემცველობის აქ დამატება", "Add Custom Parameter": "", "Add custom prompt": "მორგებული მოთხოვნის დამატება", + "Add Details": "", "Add Files": "ფაილების დამატება", "Add Group": "ჯგუფის დამატება", "Add Memory": "მეხსიერების დამატება", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Brave Search API-ის გასაღები", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "ავტორი {{name}}", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "ბრძანება", "Comment": "", "Completions": "", + "Compress Images in Channels": "", "Concurrent Requests": "ერთდროული მოთხოვნები", "Configure": "მორგება", "Confirm": "დადასტურება", @@ -328,6 +334,7 @@ "Default": "ნაგულისხმევი", "Default (Open AI)": "", "Default (SentenceTransformers)": "ნაგულისხმევი (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "ნაგულისხმევი მოდელი", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "აღმოაჩინეთ, გადმოწერეთ და შეისწავლეთ მოდელის პარამეტრები", "Display": "ჩვენება", "Display Emoji in Call": "", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "ჩატში თქვენს მაგიერ მომხმარებლის სახელის ჩვენება", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "აღმოჩენილია ანაბეჭდის გაყალბება: ინიციალების გამოყენება ავატარად შეუძლებელია. გამოყენებული იქნეა ნაგულისხმევი პროფილის სურათი.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "დიდი გარე პასუხის ფრაგმენტების გლუვად დასტრიმვა", + "Floating Quick Actions": "", "Focus chat input": "ჩატში შეყვანის ფოკუსი", "Folder deleted successfully": "", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "ინფორმაცია", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "შეიყვანეთ ბრძანებები", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "მეტი", "More": "მეტი", + "More Concise": "", + "More Options": "", "Name": "სახელი", "Name your knowledge base": "", "Native": "საკუთარი", + "New Button": "", "New Chat": "ახალი მიმოწერა", "New Folder": "ახალი საქაღალდე", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "ფაილის გახსნა", "Open in full screen": "მთელ ეკრანზე გახსნა", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "ახალი ჩატის გახსნა", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\"-ის გადმოწერა Ollama.com-იდან", "Pull a model from Ollama.com": "მოდელის გადმოწერა Ollama.com-დან", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "RAG შაბლონი", "Rating": "ხმის მიცემა", "Re-rank models by topic similarity": "", @@ -1145,8 +1161,12 @@ "Search Chats": "ძებნა ჩატებში", "Search Collection": "კოლექციის ძებნა", "Search Filters": "ფილტრების ძებნა", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "ჭდეების ძებნა", "Search Functions": "ფუნქციების ძებნა", + "Search In Models": "", "Search Knowledge": "", "Search Models": "მოდელების ძებნა", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "სუბტიტრები (მაგ. რომის იმპერიის შესახებ)", "Success": "წარმატება", "Successfully updated.": "წარმატებით განახლდა.", + "Suggest a change": "", "Suggested": "შეთავაზებულია", "Support": "მხარდაჭერა", "Support this plugin:": "", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "Ollama-ს ვერ უკავშირდები?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "", "TTS Settings": "TTS პარამეტრები", "TTS Voice": "", diff --git a/src/lib/i18n/locales/ko-KR/translation.json b/src/lib/i18n/locales/ko-KR/translation.json index eef6525391..8e88f73950 100644 --- a/src/lib/i18n/locales/ko-KR/translation.json +++ b/src/lib/i18n/locales/ko-KR/translation.json @@ -43,6 +43,7 @@ "Add content here": "여기에 내용을 추가하세요", "Add Custom Parameter": "사용자 정의 매개변수 추가", "Add custom prompt": "사용자 정의 프롬프트 추가", + "Add Details": "", "Add Files": "파일 추가", "Add Group": "그룹 추가", "Add Memory": "메모리 추가", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Docling OCR 엔진과 언어(s) 모두 제공 또는 모두 비워두세요.", "Brave Search API Key": "Brave Search API 키", "Bullet List": "글머리 기호 목록", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "작성자: {{name}}", "Bypass Embedding and Retrieval": "임베딩 검색 우회", "Bypass Web Loader": "웹 콘텐츠 불러오기 생략", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "연결 설정 닫기", "Close modal": "닫기", "Close settings modal": "설정 닫기", + "Close Sidebar": "", "Code Block": "코드 블록", "Code execution": "코드 실행", "Code Execution": "코드 실행", @@ -254,6 +259,7 @@ "Command": "명령", "Comment": "주석", "Completions": "완성됨", + "Compress Images in Channels": "", "Concurrent Requests": "동시 요청 수", "Configure": "구성", "Confirm": "확인", @@ -328,6 +334,7 @@ "Default": "기본값", "Default (Open AI)": "기본값 (Open AI)", "Default (SentenceTransformers)": "기본값 (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "기본 설명 활성화됨", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "기본 모드는 실행 전에 도구를 한 번 호출하여 더 다양한 모델에서 작동합니다. 기본 모드는 모델에 내장된 도구 호출 기능을 활용하지만, 모델이 이 기능을 본질적으로 지원해야 합니다.", "Default Model": "기본 모델", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "모델 사전 설정 검색, 다운로드 및 탐색", "Display": "표시", "Display Emoji in Call": "음성기능에서 이모지 표시", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "채팅에서 '당신' 대신 사용자 이름 표시", "Displays citations in the response": "응답에 인용 표시", "Dive into knowledge": "지식 탐구", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Fingerprint spoofing 감지: 이니셜을 아바타로 사용할 수 없습니다. 기본 프로필 이미지로 설정합니다.", "Firecrawl API Base URL": "Firecrawl API 기본 URL", "Firecrawl API Key": "Firecrawl API 키", - "Fluidly stream large external response chunks": "대규모 외부 응답 청크를 유연하게 스트리밍", + "Floating Quick Actions": "", "Focus chat input": "채팅 입력창에 포커스", "Folder deleted successfully": "성공적으로 폴더가 삭제되었습니다", "Folder Name": "폴더 이름", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "생성된 텍스트의 피드백에 알고리즘이 얼마나 빨리 반응하는지에 영향을 미칩니다. 학습률이 낮을수록 조정 속도가 느려지고 학습률이 높아지면 알고리즘의 반응 속도가 빨라집니다.", "Info": "정보", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "전체 콘텐츠를 포괄적인 처리를 위해 컨텍스트로 삽입하세요. 이는 복잡한 쿼리에 권장됩니다.", + "Input": "", "Input commands": "명령어 입력", "Input Variables": "변수 입력", "Insert": "삽입", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Mojeek Search API 키", "more": "더보기", "More": "더보기", + "More Concise": "", + "More Options": "", "Name": "이름", "Name your knowledge base": "지식 기반 이름을 지정하세요", "Native": "네이티브", + "New Button": "", "New Chat": "새 채팅", "New Folder": "새 폴더", "New Function": "새 함수", @@ -984,7 +996,10 @@ "Open file": "파일 열기", "Open in full screen": "전체화면으로 열기", "Open modal to configure connection": "연결 설정 열기", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "새 채팅 열기", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI는 모든 OpenAPI 서버에서 제공하는 도구를 사용할 수 있습니다.", "Open WebUI uses faster-whisper internally.": "Open WebUI는 내부적으로 패스트 위스퍼를 사용합니다.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI는 SpeechT5와 CMU Arctic 스피커 임베딩을 사용합니다.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com에서 \"{{searchValue}}\" 가져오기", "Pull a model from Ollama.com": "Ollama.com에서 모델 가져오기(pull)", "Query Generation Prompt": "쿼리 생성 프롬프트", + "Quick Actions": "", "RAG Template": "RAG 템플릿", "Rating": "평가", "Re-rank models by topic similarity": "주제 유사성으로 모델을 재정렬하기", @@ -1145,8 +1161,12 @@ "Search Chats": "채팅 검색", "Search Collection": "컬렉션 검색", "Search Filters": "필터 검색", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "태그 검색", "Search Functions": "함수 검색", + "Search In Models": "", "Search Knowledge": "지식 기반 검색", "Search Models": "모델 검색", "Search Notes": "노트 검색", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "자막 (예: 로마 황제)", "Success": "성공", "Successfully updated.": "성공적으로 업데이트되었습니다.", + "Suggest a change": "", "Suggested": "제안", "Support": "지원", "Support this plugin:": "플러그인 지원", @@ -1379,6 +1400,7 @@ "Transformers": "트랜스포머", "Trouble accessing Ollama?": "올라마(Ollama)에 접근하는 데 문제가 있나요?", "Trust Proxy Environment": "신뢰 할 수 있는 프록시 환경", + "Try Again": "", "TTS Model": "TTS 모델", "TTS Settings": "TTS 설정", "TTS Voice": "TTS 음성", @@ -1503,4 +1525,4 @@ "Youtube": "유튜브", "Youtube Language": "Youtube 언어", "Youtube Proxy URL": "Youtube 프록시 URL" -} \ No newline at end of file +} diff --git a/src/lib/i18n/locales/lt-LT/translation.json b/src/lib/i18n/locales/lt-LT/translation.json index feca09faa4..c17ef68732 100644 --- a/src/lib/i18n/locales/lt-LT/translation.json +++ b/src/lib/i18n/locales/lt-LT/translation.json @@ -43,6 +43,7 @@ "Add content here": "", "Add Custom Parameter": "", "Add custom prompt": "Pridėti užklausos šabloną", + "Add Details": "", "Add Files": "Pridėti failus", "Add Group": "", "Add Memory": "Pridėti atminį", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Brave Search API raktas", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "Command", "Comment": "", "Completions": "", + "Compress Images in Channels": "", "Concurrent Requests": "Kelios užklausos vienu metu", "Configure": "", "Confirm": "Patvrtinti", @@ -328,6 +334,7 @@ "Default": "Numatytasis", "Default (Open AI)": "", "Default (SentenceTransformers)": "Numatytasis (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Numatytasis modelis", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Atrasti ir parsisiųsti modelių konfigūracija", "Display": "", "Display Emoji in Call": "Rodyti emoji pokalbiuose", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Rodyti naudotojo vardą vietoje žodžio Jūs pokalbyje", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Nepavyko nsutatyti profilio nuotraukos", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Sklandžiai transliuoti ilgus atsakymus", + "Floating Quick Actions": "", "Focus chat input": "Fokusuoti žinutės įvestį", "Folder deleted successfully": "", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Informacija", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Įvesties komandos", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "", "More": "Daugiau", + "More Concise": "", + "More Options": "", "Name": "Pavadinimas", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "Naujas pokalbis", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "", "Open in full screen": "", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Atverti naują pokalbį", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Rasti \"{{searchValue}}\" iš Ollama.com", "Pull a model from Ollama.com": "Gauti modelį iš Ollama.com", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "RAG šablonas", "Rating": "", "Re-rank models by topic similarity": "", @@ -1145,8 +1161,12 @@ "Search Chats": "Ieškoti pokalbiuose", "Search Collection": "", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "", "Search Functions": "Ieškoti funkcijų", + "Search In Models": "", "Search Knowledge": "", "Search Models": "Ieškoti modelių", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Subtitras", "Success": "Sėkmingai", "Successfully updated.": "Sėkmingai atnaujinta.", + "Suggest a change": "", "Suggested": "Siūloma", "Support": "Palaikyti", "Support this plugin:": "Palaikykite šitą modulį", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "Problemos prieinant prie Ollama?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "TTS modelis", "TTS Settings": "TTS parametrai", "TTS Voice": "TTS balsas", diff --git a/src/lib/i18n/locales/ms-MY/translation.json b/src/lib/i18n/locales/ms-MY/translation.json index 504f3216c9..d546d345b4 100644 --- a/src/lib/i18n/locales/ms-MY/translation.json +++ b/src/lib/i18n/locales/ms-MY/translation.json @@ -43,6 +43,7 @@ "Add content here": "", "Add Custom Parameter": "", "Add custom prompt": "Tambah arahan khusus", + "Add Details": "", "Add Files": "Tambah Fail", "Add Group": "", "Add Memory": "Tambah Memori", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Kunci API Carian Brave", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "Arahan", "Comment": "", "Completions": "", + "Compress Images in Channels": "", "Concurrent Requests": "Permintaan Serentak", "Configure": "", "Confirm": "Sahkan", @@ -328,6 +334,7 @@ "Default": "Lalai", "Default (Open AI)": "", "Default (SentenceTransformers)": "Lalai (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Model Lalai", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Temui, muat turun dan teroka model pratetap", "Display": "", "Display Emoji in Call": "Paparkan Emoji dalam Panggilan", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Paparkan nama pengguna dan bukannya 'Anda' dalam Sembang", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Peniruan cap jari dikesan, tidak dapat menggunakan nama pendek sebagai avatar. Lalai kepada imej profail asal", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Strim 'chunks' respons luaran yang besar dengan lancar", + "Floating Quick Actions": "", "Focus chat input": "Fokus kepada input perbualan", "Folder deleted successfully": "", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Maklumat", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Masukkan Arahan", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "", "More": "Lagi", + "More Concise": "", + "More Options": "", "Name": "Nama", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "Perbualan Baru", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "", "Open in full screen": "", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Buka perbualan baru", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Tarik \"{{ searchValue }}\" daripada Ollama.com", "Pull a model from Ollama.com": "Tarik model dari Ollama.com", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "Templat RAG", "Rating": "", "Re-rank models by topic similarity": "", @@ -1145,8 +1161,12 @@ "Search Chats": "Cari Perbualan", "Search Collection": "", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "", "Search Functions": "Carian Fungsi", + "Search In Models": "", "Search Knowledge": "", "Search Models": "Carian Model", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Sari kata (cth tentang Kesultanan Melaka)", "Success": "Berjaya", "Successfully updated.": "Berjaya Dikemaskini", + "Suggest a change": "", "Suggested": "Cadangan", "Support": "Sokongan", "Support this plugin:": "Sokong plugin ini", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "Masalah mengakses Ollama?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "Model TTS", "TTS Settings": "Tetapan TTS", "TTS Voice": "Suara TTS", diff --git a/src/lib/i18n/locales/nb-NO/translation.json b/src/lib/i18n/locales/nb-NO/translation.json index d902c4e20f..d6f438b0aa 100644 --- a/src/lib/i18n/locales/nb-NO/translation.json +++ b/src/lib/i18n/locales/nb-NO/translation.json @@ -43,6 +43,7 @@ "Add content here": "Legg til innhold her", "Add Custom Parameter": "", "Add custom prompt": "Legg til tilpasset ledetekst", + "Add Details": "", "Add Files": "Legg til filer", "Add Group": "Legg til gruppe", "Add Memory": "Legg til minne", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "API-nøkkel for Brave Search", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Etter {{name}}", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Kodekjøring", "Code Execution": "Kodekjøring", @@ -254,6 +259,7 @@ "Command": "Kommando", "Comment": "", "Completions": "Fullføringer", + "Compress Images in Channels": "", "Concurrent Requests": "Samtidige forespørsler", "Configure": "Konfigurer", "Confirm": "Bekreft", @@ -328,6 +334,7 @@ "Default": "Standard", "Default (Open AI)": "Standard (Open AI)", "Default (SentenceTransformers)": "Standard (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Standard modus fungerer med et bredere utvalg av modeller ved at verktøyene kalles én gang før kjøring. Opprinnelig modus utnytter modellens innebygde funksjoner for verktøykalling, men krever at modellen i seg selv støtter denne funksjonen.", "Default Model": "Standard modell", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Oppdag, last ned og utforsk forhåndsinnstillinger for modeller", "Display": "Visning", "Display Emoji in Call": "Vis emoji i samtale", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Vis brukernavnet ditt i stedet for Du i chatten", "Displays citations in the response": "Vis kildehenvisninger i svaret", "Dive into knowledge": "Bli kjent med kunnskap", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Fingeravtrykk-spoofing oppdaget: kan ikke bruke initialer som avatar. Bruker standard profilbilde.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Flytende strømming av store eksterne svarpakker", + "Floating Quick Actions": "", "Focus chat input": "Fokusert chat-inndata", "Folder deleted successfully": "Mappe slettet", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Info", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Inntast kommandoer", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "API-nøekkel for Mojeek Search", "more": "mer", "More": "Mer", + "More Concise": "", + "More Options": "", "Name": "Navn", "Name your knowledge base": "Gi kunnskapsbasen et navn", "Native": "Opprinnelig", + "New Button": "", "New Chat": "Ny chat", "New Folder": "Ny mappe", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "Åpne fil", "Open in full screen": "Åpne i fullskjerm", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Åpne ny chat", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI bruker faster-whisper internt.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI bruker SpeechT5 og CMU Arctic-høytalerinnbygginger", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Hent {{searchValue}} fra Ollama.com", "Pull a model from Ollama.com": "Hent en modell fra Ollama.com", "Query Generation Prompt": "Ledetekst for genering av spørringer", + "Quick Actions": "", "RAG Template": "RAG-mal", "Rating": "Vurdering", "Re-rank models by topic similarity": "Ny rangering av modeller etter emnelikhet", @@ -1145,8 +1161,12 @@ "Search Chats": "Søk etter chatter", "Search Collection": "Søk etter samling", "Search Filters": "Søk etter filtre", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "søk etter etiketter", "Search Functions": "Søk etter funksjoner", + "Search In Models": "", "Search Knowledge": "Søke etter kunnskap", "Search Models": "Søk etter modeller", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Undertittel (f.eks. om romerriket)", "Success": "Suksess", "Successfully updated.": "Oppdatert.", + "Suggest a change": "", "Suggested": "Foreslått", "Support": "Bidra", "Support this plugin:": "Bidra til denne utvidelsen:", @@ -1379,6 +1400,7 @@ "Transformers": "Transformatorer", "Trouble accessing Ollama?": "Problemer med å koble til Ollama?", "Trust Proxy Environment": "Stol på proxy-miljøet", + "Try Again": "", "TTS Model": "TTS-modell", "TTS Settings": "TTS-innstillinger", "TTS Voice": "TTS-stemme", diff --git a/src/lib/i18n/locales/nl-NL/translation.json b/src/lib/i18n/locales/nl-NL/translation.json index c35d1a505a..d09c5478c2 100644 --- a/src/lib/i18n/locales/nl-NL/translation.json +++ b/src/lib/i18n/locales/nl-NL/translation.json @@ -43,6 +43,7 @@ "Add content here": "Voeg hier content toe", "Add Custom Parameter": "", "Add custom prompt": "Voeg een aangepaste prompt toe", + "Add Details": "", "Add Files": "Voeg bestanden toe", "Add Group": "Voeg groep toe", "Add Memory": "Voeg geheugen toe", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Brave Search API-sleutel", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Op {{name}}", "Bypass Embedding and Retrieval": "Embedding en ophalen omzeilen ", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Code uitvoeren", "Code Execution": "Code-uitvoer", @@ -254,6 +259,7 @@ "Command": "Commando", "Comment": "", "Completions": "Voltooiingen", + "Compress Images in Channels": "", "Concurrent Requests": "Gelijktijdige verzoeken", "Configure": "Configureer", "Confirm": "Bevestigen", @@ -328,6 +334,7 @@ "Default": "Standaard", "Default (Open AI)": "Standaard (Open AI)", "Default (SentenceTransformers)": "Standaard (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "De standaardmodus werkt met een breder scala aan modellen door gereedschappen één keer aan te roepen voordat ze worden uitgevoerd. De native modus maakt gebruik van de ingebouwde mogelijkheden van het model om gereedschappen aan te roepen, maar vereist dat het model deze functie inherent ondersteunt.", "Default Model": "Standaardmodel", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Ontdek, download en verken model presets", "Display": "Toon", "Display Emoji in Call": "Emoji tonen tijdens gesprek", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Toon de gebruikersnaam in plaats van Jij in de Chat", "Displays citations in the response": "Toon citaten in het antwoord", "Dive into knowledge": "Duik in kennis", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Vingerafdruk spoofing gedetecteerd: kan initialen niet gebruiken als avatar. Standaardprofielafbeelding wordt gebruikt.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Stream grote externe responsbrokken vloeiend", + "Floating Quick Actions": "", "Focus chat input": "Focus chat input", "Folder deleted successfully": "Map succesvol verwijderd", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Beïnvloedt hoe snel het algoritme reageert op feedback van de gegenereerde tekst. Een lagere leersnelheid resulteert in langzamere aanpassingen, terwijl een hogere leersnelheid het algoritme responsiever maakt.", "Info": "Info", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecteer de volledige inhoud als context voor uitgebreide verwerking, dit wordt aanbevolen voor complexe query's.", + "Input": "", "Input commands": "Voer commando's in", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Mojeek Search API-sleutel", "more": "Meer", "More": "Meer", + "More Concise": "", + "More Options": "", "Name": "Naam", "Name your knowledge base": "Geef je kennisbasis een naam", "Native": "Native", + "New Button": "", "New Chat": "Nieuwe Chat", "New Folder": "Nieuwe map", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "Open bestand", "Open in full screen": "Open in volledig scherm", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Open nieuwe chat", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI gebruikt faster-whisper intern", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI gebruikt SpeechT5 en CMU Arctic spreker-embeddings", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Haal \"{{searchValue}}\" uit Ollama.com", "Pull a model from Ollama.com": "Haal een model van Ollama.com", "Query Generation Prompt": "Vraaggeneratieprompt", + "Quick Actions": "", "RAG Template": "RAG-sjabloon", "Rating": "Beoordeling", "Re-rank models by topic similarity": "Herrangschik modellen op basis van onderwerpsovereenkomst", @@ -1145,8 +1161,12 @@ "Search Chats": "Chats zoeken", "Search Collection": "Zoek naar verzamelingen", "Search Filters": "Zoek naar filters", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "Zoek naar tags", "Search Functions": "Zoek naar functie", + "Search In Models": "", "Search Knowledge": "Zoek naar Kennis", "Search Models": "Modellen zoeken", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Ondertitel (bijv. over de Romeinse Empire)", "Success": "Succes", "Successfully updated.": "Succesvol bijgewerkt.", + "Suggest a change": "", "Suggested": "Suggestie", "Support": "Ondersteuning", "Support this plugin:": "ondersteun deze plugin", @@ -1379,6 +1400,7 @@ "Transformers": "Transformers", "Trouble accessing Ollama?": "Problemen met toegang tot Ollama?", "Trust Proxy Environment": "Vertrouwelijk proxyomgeving", + "Try Again": "", "TTS Model": "TTS Model", "TTS Settings": "TTS instellingen", "TTS Voice": "TTS Stem", diff --git a/src/lib/i18n/locales/pa-IN/translation.json b/src/lib/i18n/locales/pa-IN/translation.json index 50052fb985..3bf5350b18 100644 --- a/src/lib/i18n/locales/pa-IN/translation.json +++ b/src/lib/i18n/locales/pa-IN/translation.json @@ -43,6 +43,7 @@ "Add content here": "", "Add Custom Parameter": "", "Add custom prompt": "ਕਸਟਮ ਪ੍ਰੰਪਟ ਸ਼ਾਮਲ ਕਰੋ", + "Add Details": "", "Add Files": "ਫਾਈਲਾਂ ਸ਼ਾਮਲ ਕਰੋ", "Add Group": "", "Add Memory": "ਮਿਹਾਨ ਸ਼ਾਮਲ ਕਰੋ", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "ਬਹਾਦਰ ਖੋਜ API ਕੁੰਜੀ", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "ਕਮਾਂਡ", "Comment": "", "Completions": "", + "Compress Images in Channels": "", "Concurrent Requests": "ਸਮਕਾਲੀ ਬੇਨਤੀਆਂ", "Configure": "", "Confirm": "", @@ -328,6 +334,7 @@ "Default": "ਮੂਲ", "Default (Open AI)": "", "Default (SentenceTransformers)": "ਮੂਲ (ਸੈਂਟੈਂਸਟ੍ਰਾਂਸਫਾਰਮਰਸ)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "ਡਿਫਾਲਟ ਮਾਡਲ", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "ਮਾਡਲ ਪ੍ਰੀਸੈਟਾਂ ਨੂੰ ਖੋਜੋ, ਡਾਊਨਲੋਡ ਕਰੋ ਅਤੇ ਪੜਚੋਲ ਕਰੋ", "Display": "", "Display Emoji in Call": "", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "ਗੱਲਬਾਤ 'ਚ ਤੁਹਾਡੇ ਸਥਾਨ 'ਤੇ ਉਪਭੋਗਤਾ ਨਾਮ ਦਿਖਾਓ", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "ਫਿੰਗਰਪ੍ਰਿੰਟ ਸਪੂਫਿੰਗ ਪਾਈ ਗਈ: ਅਵਤਾਰ ਵਜੋਂ ਸ਼ੁਰੂਆਤੀ ਅੱਖਰ ਵਰਤਣ ਵਿੱਚ ਅਸਮਰੱਥ। ਮੂਲ ਪ੍ਰੋਫਾਈਲ ਚਿੱਤਰ 'ਤੇ ਡਿਫਾਲਟ।", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "ਵੱਡੇ ਬਾਹਰੀ ਜਵਾਬ ਚੰਕਾਂ ਨੂੰ ਸਹੀ ਢੰਗ ਨਾਲ ਸਟ੍ਰੀਮ ਕਰੋ", + "Floating Quick Actions": "", "Focus chat input": "ਗੱਲਬਾਤ ਇਨਪੁਟ 'ਤੇ ਧਿਆਨ ਦਿਓ", "Folder deleted successfully": "", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "ਜਾਣਕਾਰੀ", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "ਇਨਪੁਟ ਕਮਾਂਡਾਂ", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "", "More": "ਹੋਰ", + "More Concise": "", + "More Options": "", "Name": "ਨਾਮ", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "ਨਵੀਂ ਗੱਲਬਾਤ", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "", "Open in full screen": "", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "ਨਵੀਂ ਗੱਲਬਾਤ ਖੋਲ੍ਹੋ", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "ਓਲਾਮਾ.ਕਾਮ ਤੋਂ \"{{searchValue}}\" ਖਿੱਚੋ", "Pull a model from Ollama.com": "ਓਲਾਮਾ.ਕਾਮ ਤੋਂ ਇੱਕ ਮਾਡਲ ਖਿੱਚੋ", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "RAG ਟੈਮਪਲੇਟ", "Rating": "", "Re-rank models by topic similarity": "", @@ -1145,8 +1161,12 @@ "Search Chats": "ਖੋਜ ਚੈਟਾਂ", "Search Collection": "", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "", "Search Functions": "", + "Search In Models": "", "Search Knowledge": "", "Search Models": "ਖੋਜ ਮਾਡਲ", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "ਉਪਸਿਰਲੇਖ (ਉਦਾਹਰਣ ਲਈ ਰੋਮਨ ਸਾਮਰਾਜ ਬਾਰੇ)", "Success": "ਸਫਲਤਾ", "Successfully updated.": "ਸਫਲਤਾਪੂਰਵਕ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ।", + "Suggest a change": "", "Suggested": "ਸੁਝਾਇਆ ਗਿਆ", "Support": "", "Support this plugin:": "", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "ਓਲਾਮਾ ਤੱਕ ਪਹੁੰਚਣ ਵਿੱਚ ਮੁਸ਼ਕਲ?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "", "TTS Settings": "TTS ਸੈਟਿੰਗਾਂ", "TTS Voice": "", diff --git a/src/lib/i18n/locales/pl-PL/translation.json b/src/lib/i18n/locales/pl-PL/translation.json index 0edb320c80..b7b5d75b0f 100644 --- a/src/lib/i18n/locales/pl-PL/translation.json +++ b/src/lib/i18n/locales/pl-PL/translation.json @@ -43,6 +43,7 @@ "Add content here": "Dodaj tutaj treść", "Add Custom Parameter": "", "Add custom prompt": "Dodaj niestandardowe polecenie", + "Add Details": "", "Add Files": "Dodaj pliki", "Add Group": "Dodaj grupę", "Add Memory": "Dodaj pamięć", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Klucz API wyszukiwania Brave", "Bullet List": "Lista punktowana", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Przez {{name}}", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "Blok kodu", "Code execution": "Wykonanie kodu", "Code Execution": "Wykonanie kodu", @@ -254,6 +259,7 @@ "Command": "Polecenie", "Comment": "", "Completions": "Uzupełnienia", + "Compress Images in Channels": "", "Concurrent Requests": "Równoległe żądania", "Configure": "Skonfigurować", "Confirm": "Potwierdź", @@ -328,6 +334,7 @@ "Default": "Domyślny", "Default (Open AI)": "Domyślny (Open AI)", "Default (SentenceTransformers)": "Domyślny (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Tryb domyślny współpracuje z szerszym zakresem modeli, wywołując narzędzia raz przed wykonaniem. Tryb natywny wykorzystuje wbudowane możliwości wywoływania narzędzi przez model, ale wymaga, aby model wewnętrznie obsługiwał tę funkcję.", "Default Model": "Model domyślny", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Odkryj, pobierz i badaj ustawienia modeli", "Display": "Wyświetl", "Display Emoji in Call": "Wyświetl emoji w połączeniu", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Wyświetl nazwę użytkownika zamiast 'You' w czacie.", "Displays citations in the response": "Wyświetla cytowania w odpowiedzi", "Dive into knowledge": "Zanurz się w wiedzy", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Wykryto próbę oszustwa z odciskiem palca: Nie można używać inicjałów jako awatara. Powrót do domyślnego obrazu profilowego.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Płynnie strumieniuj duże fragmenty odpowiedzi zewnętrznych", + "Floating Quick Actions": "", "Focus chat input": "Skup się na czacie", "Folder deleted successfully": "Folder został usunięty pomyślnie", "Folder Name": "Nazwa folderu", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Informacje", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Wprowadź polecenia", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Klucz API Mojeek Search", "more": "więcej", "More": "Więcej", + "More Concise": "", + "More Options": "", "Name": "Nazwa", "Name your knowledge base": "Nazwij swoją bazę wiedzy", "Native": "Rodzimy", + "New Button": "", "New Chat": "Nowy czat", "New Folder": "Nowy folder", "New Function": "Nowa funkcja", @@ -984,7 +996,10 @@ "Open file": "Otwórz plik", "Open in full screen": "Otwórz na pełny ekran", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Otwórz nową rozmowę", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI może używać narzędzi dostarczanych przez serwery OpenAPI.", "Open WebUI uses faster-whisper internally.": "Open WebUI korzysta wewnętrznie z szybszego faster-whisper.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Otwarta WebUI wykorzystuje SpeechT5 i wbudowane zbiory danych mówcy CMU Arctic.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Pobierz \"{{searchValue}}\" z Ollama.com", "Pull a model from Ollama.com": "Pobierz model z Ollama.com", "Query Generation Prompt": "Prompt do generowania zapytań", + "Quick Actions": "", "RAG Template": "Szablon RAG", "Rating": "Ocena", "Re-rank models by topic similarity": "Ponowny ranking modeli według podobieństwa tematycznego", @@ -1145,8 +1161,12 @@ "Search Chats": "Przeszukaj czaty", "Search Collection": "Przeszukaj kolekcję", "Search Filters": "Filtry wyszukiwania", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "wyszukiwanie tagów", "Search Functions": "Funkcje wyszukiwania", + "Search In Models": "", "Search Knowledge": "Przeszukaj wiedzę", "Search Models": "Wyszukiwanie modeli", "Search Notes": "Wyszukiwanie notatek", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Podtytuł (np. o Imperium Rzymskim)", "Success": "Sukces", "Successfully updated.": "Uaktualniono pomyślnie.", + "Suggest a change": "", "Suggested": "Proponowane", "Support": "Wsparcie", "Support this plugin:": "Wesprzyj ten plugin:", @@ -1379,6 +1400,7 @@ "Transformers": "Transformery", "Trouble accessing Ollama?": "Czy masz problemy z dostępem do Ollama?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "Model TTS", "TTS Settings": "Ustawienia syntezatora mowy", "TTS Voice": "Głos TTS", diff --git a/src/lib/i18n/locales/pt-BR/translation.json b/src/lib/i18n/locales/pt-BR/translation.json index 0a46134e0b..ccf341f000 100644 --- a/src/lib/i18n/locales/pt-BR/translation.json +++ b/src/lib/i18n/locales/pt-BR/translation.json @@ -43,6 +43,7 @@ "Add content here": "Adicionar conteúdo aqui", "Add Custom Parameter": "", "Add custom prompt": "Adicionar prompt personalizado", + "Add Details": "", "Add Files": "Adicionar Arquivos", "Add Group": "Adicionar Grupo", "Add Memory": "Adicionar Memória", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Chave API do Brave Search", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Por {{name}}", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Execução de código", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "Comando", "Comment": "", "Completions": "Conclusões", + "Compress Images in Channels": "", "Concurrent Requests": "Solicitações Concomitantes", "Configure": "Configurar", "Confirm": "Confirmar", @@ -328,6 +334,7 @@ "Default": "Padrão", "Default (Open AI)": "Padrão (Open AI)", "Default (SentenceTransformers)": "Padrão (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Modelo Padrão", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Descubra, baixe e explore predefinições de modelos", "Display": "Exibir", "Display Emoji in Call": "Exibir Emoji na Chamada", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Exibir o nome de usuário em vez de Você no Chat", "Displays citations in the response": "Exibir citações na resposta", "Dive into knowledge": "Explorar base de conhecimento", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Falsificação de impressão digital detectada: Não foi possível usar as iniciais como avatar. Usando a imagem de perfil padrão.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Transmitir fluentemente grandes blocos de respostas externas", + "Floating Quick Actions": "", "Focus chat input": "Focar entrada de chat", "Folder deleted successfully": "Pasta excluída com sucesso", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Informação", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Comandos de entrada", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Chave de API Mojeel Search", "more": "mais", "More": "Mais", + "More Concise": "", + "More Options": "", "Name": "Nome", "Name your knowledge base": "Nome da sua base de conhecimento", "Native": "", + "New Button": "", "New Chat": "Novo Chat", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "Abrir arquivo", "Open in full screen": "Abrir em tela cheia", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Abrir novo chat", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI usa faster-whisper internamente.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "A Open WebUI usa os embeddings de voz do SpeechT5 e do CMU Arctic.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Obter \"{{searchValue}}\" de Ollama.com", "Pull a model from Ollama.com": "Obter um modelo de Ollama.com", "Query Generation Prompt": "Prompt de Geração de Consulta", + "Quick Actions": "", "RAG Template": "Modelo RAG", "Rating": "Avaliação", "Re-rank models by topic similarity": "Reclassificação de modelos por similaridade de tópico", @@ -1145,8 +1161,12 @@ "Search Chats": "Pesquisar Chats", "Search Collection": "Pesquisar Coleção", "Search Filters": "Pesquisar Filtros", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "Pesquisar por tags", "Search Functions": "Pesquisar Funções", + "Search In Models": "", "Search Knowledge": "Pesquisar Conhecimento", "Search Models": "Pesquisar Modelos", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Subtítulo (por exemplo, sobre o Império Romano)", "Success": "Sucesso", "Successfully updated.": "Atualizado com sucesso.", + "Suggest a change": "", "Suggested": "Sugerido", "Support": "Suporte", "Support this plugin:": "Apoie este plugin:", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "Problemas para acessar o Ollama?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "Modelo TTS", "TTS Settings": "Configurações TTS", "TTS Voice": "Voz TTS", diff --git a/src/lib/i18n/locales/pt-PT/translation.json b/src/lib/i18n/locales/pt-PT/translation.json index e467427b2d..0c339c4fd0 100644 --- a/src/lib/i18n/locales/pt-PT/translation.json +++ b/src/lib/i18n/locales/pt-PT/translation.json @@ -43,6 +43,7 @@ "Add content here": "", "Add Custom Parameter": "", "Add custom prompt": "Adicionar um prompt curto", + "Add Details": "", "Add Files": "Adicionar Ficheiros", "Add Group": "", "Add Memory": "Adicionar memória", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Chave da API de Pesquisa Brave", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "Comando", "Comment": "", "Completions": "", + "Compress Images in Channels": "", "Concurrent Requests": "Solicitações simultâneas", "Configure": "", "Confirm": "", @@ -328,6 +334,7 @@ "Default": "Padrão", "Default (Open AI)": "", "Default (SentenceTransformers)": "Padrão (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Modelo padrão", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Descubra, descarregue e explore predefinições de modelo", "Display": "", "Display Emoji in Call": "", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Exibir o nome de utilizador em vez de Você na Conversa", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Detectada falsificação da impressão digital: Não é possível usar iniciais como avatar. A usar a imagem de perfil padrão.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Transmita com fluidez grandes blocos de resposta externa", + "Floating Quick Actions": "", "Focus chat input": "Focar na conversa", "Folder deleted successfully": "", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Informação", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Comandos de entrada", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "", "More": "Mais", + "More Concise": "", + "More Options": "", "Name": "Nome", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "Nova Conversa", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "", "Open in full screen": "", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Abrir nova conversa", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Puxar \"{{searchValue}}\" do Ollama.com", "Pull a model from Ollama.com": "Puxar um modelo do Ollama.com", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "Modelo RAG", "Rating": "", "Re-rank models by topic similarity": "", @@ -1145,8 +1161,12 @@ "Search Chats": "Pesquisar Conversas", "Search Collection": "", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "", "Search Functions": "", + "Search In Models": "", "Search Knowledge": "", "Search Models": "Modelos de pesquisa", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Subtítulo (ex.: sobre o Império Romano)", "Success": "Sucesso", "Successfully updated.": "Atualizado com sucesso.", + "Suggest a change": "", "Suggested": "Sugerido", "Support": "", "Support this plugin:": "", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "Problemas a aceder ao Ollama?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "Modelo TTS", "TTS Settings": "Configurações TTS", "TTS Voice": "Voz TTS", diff --git a/src/lib/i18n/locales/ro-RO/translation.json b/src/lib/i18n/locales/ro-RO/translation.json index 57d73dd665..81b3102efb 100644 --- a/src/lib/i18n/locales/ro-RO/translation.json +++ b/src/lib/i18n/locales/ro-RO/translation.json @@ -43,6 +43,7 @@ "Add content here": "Adăugați conținut aici", "Add Custom Parameter": "Adaugă parametru personalizat", "Add custom prompt": "Adaugă prompt personalizat", + "Add Details": "", "Add Files": "Adaugă fișiere", "Add Group": "Adaugă grup", "Add Memory": "Adaugă memorie", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Cheie API Brave Search", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Executarea codului", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "Comandă", "Comment": "", "Completions": "Completări", + "Compress Images in Channels": "", "Concurrent Requests": "Cereri Concurente", "Configure": "Configurează", "Confirm": "Confirmă", @@ -328,6 +334,7 @@ "Default": "Implicit", "Default (Open AI)": "Implicit (Open AI)", "Default (SentenceTransformers)": "Implicit (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Model Implicit", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Descoperă, descarcă și explorează presetări de model", "Display": "", "Display Emoji in Call": "Afișează Emoji în Apel", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Afișează numele utilizatorului în loc de Tu în Conversație", "Displays citations in the response": "Afișează citațiile în răspuns", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Detectată falsificarea amprentelor: Nu se pot folosi inițialele ca avatar. Se utilizează imaginea de profil implicită.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Transmite fluent blocuri mari de răspuns extern", + "Floating Quick Actions": "", "Focus chat input": "Focalizează câmpul de intrare pentru conversație", "Folder deleted successfully": "Folder șters cu succes", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Informații", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Comenzi de intrare", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "mai mult", "More": "Mai multe", + "More Concise": "", + "More Options": "", "Name": "Nume", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "Conversație Nouă", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "Deschide fișierul", "Open in full screen": "Deschide în ecran complet", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Deschide conversație nouă", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI folosește faster-whisper intern.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Extrage \"{{searchValue}}\" de pe Ollama.com", "Pull a model from Ollama.com": "Extrage un model de pe Ollama.com", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "Șablon RAG", "Rating": "Evaluare", "Re-rank models by topic similarity": "Reordonează modelele în funcție de similaritatea tematică", @@ -1145,8 +1161,12 @@ "Search Chats": "Caută în Conversații", "Search Collection": "Căutare Colecție", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "caută etichete", "Search Functions": "Caută Funcții", + "Search In Models": "", "Search Knowledge": "Căutare Cunoștințe", "Search Models": "Caută Modele", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Subtitlu (de ex. despre Imperiul Roman)", "Success": "Succes", "Successfully updated.": "Actualizat cu succes.", + "Suggest a change": "", "Suggested": "Sugerat", "Support": "Suport", "Support this plugin:": "Susține acest plugin:", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "Probleme la accesarea Ollama?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "Model TTS", "TTS Settings": "Setări TTS", "TTS Voice": "Voce TTS", diff --git a/src/lib/i18n/locales/ru-RU/translation.json b/src/lib/i18n/locales/ru-RU/translation.json index 0b234ce381..b5e8f2d872 100644 --- a/src/lib/i18n/locales/ru-RU/translation.json +++ b/src/lib/i18n/locales/ru-RU/translation.json @@ -43,6 +43,7 @@ "Add content here": "Добавить контент сюда", "Add Custom Parameter": "Добавить пользовательский параметр", "Add custom prompt": "Добавьте пользовательский промпт", + "Add Details": "", "Add Files": "Добавить файлы", "Add Group": "Добавить группу", "Add Memory": "Добавить воспоминание", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Для Docling должны быть указаны как механизм распознавания текста, так и язык(и), или оба должны быть оставлены пустыми.", "Brave Search API Key": "Ключ API поиска Brave", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "От {{name}}", "Bypass Embedding and Retrieval": "Обход встраивания и извлечения данных", "Bypass Web Loader": "Обход веб-загрузчика", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "Закрыть окно", "Close settings modal": "Закрыть окно настроек", + "Close Sidebar": "", "Code Block": "", "Code execution": "Исполнение кода", "Code Execution": "Исполнение кода", @@ -254,6 +259,7 @@ "Command": "Команда", "Comment": "", "Completions": "Завершения", + "Compress Images in Channels": "", "Concurrent Requests": "Одновременные запросы", "Configure": "Настроить", "Confirm": "Подтвердить", @@ -328,6 +334,7 @@ "Default": "По умолчанию", "Default (Open AI)": "По умолчанию (Open AI)", "Default (SentenceTransformers)": "По умолчанию (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Режим по умолчанию работает с более широким спектром моделей, вызывая инструменты один раз перед выполнением. Режим Нативно использует встроенные в модель возможности вызова инструментов, но требует, чтобы модель изначально поддерживала эту функцию.", "Default Model": "Модель по умолчанию", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Открывайте для себя, загружайте и исследуйте пользовательские предустановки моделей", "Display": "Отображать", "Display Emoji in Call": "Отображать эмодзи в вызовах", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Отображать имя пользователя вместо 'Вы' в чате", "Displays citations in the response": "Отображает цитаты в ответе", "Dive into knowledge": "Погрузитесь в знания", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Определение подделки отпечатка: Невозможно использовать инициалы в качестве аватара. По умолчанию используется изображение профиля по умолчанию.", "Firecrawl API Base URL": "Базовый URL-адрес Firecrawl API", "Firecrawl API Key": "Ключ API Firecrawl", - "Fluidly stream large external response chunks": "Плавная потоковая передача больших фрагментов внешних ответов", + "Floating Quick Actions": "", "Focus chat input": "Фокус ввода чата", "Folder deleted successfully": "Папка успешно удалена", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Влияет на то, насколько быстро алгоритм реагирует на обратную связь из сгенерированного текста. Более низкая скорость обучения приведет к более медленной корректировке, в то время как более высокая скорость обучения сделает алгоритм более отзывчивым.", "Info": "Информация", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Использовать весь контент в качестве контекста для комплексной обработки, это рекомендуется для сложных запросов.", + "Input": "", "Input commands": "Введите команды", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Ключ API для поиска Mojeek", "more": "больше", "More": "Больше", + "More Concise": "", + "More Options": "", "Name": "Имя", "Name your knowledge base": "Назовите свою базу знаний", "Native": "Нативно", + "New Button": "", "New Chat": "Новый чат", "New Folder": "Новая папка", "New Function": "Новая функция", @@ -984,7 +996,10 @@ "Open file": "Открыть файл", "Open in full screen": "Открыть на весь экран", "Open modal to configure connection": "Открыть окно настроек подключения", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Открыть новый чат", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI может использовать инструменты, предоставляемые любым сервером OpenAPI.", "Open WebUI uses faster-whisper internally.": "Open WebUI использует более быстрый внутренний интерфейс whisper.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "В Open WebUI используются встраиваемые движки генерации речи SpeechT5 и CMU Arctic.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Загрузить \"{{searchValue}}\" с Ollama.com", "Pull a model from Ollama.com": "Загрузить модель с Ollama.com", "Query Generation Prompt": "Запрос на генерацию промпта", + "Quick Actions": "", "RAG Template": "Шаблон RAG", "Rating": "Рейтинг", "Re-rank models by topic similarity": "Повторное ранжирование моделей по сходству тем", @@ -1145,8 +1161,12 @@ "Search Chats": "Поиск в чатах", "Search Collection": "Поиск коллекции", "Search Filters": "Поиск фильтров", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "искать для тегов", "Search Functions": "Поиск функций", + "Search In Models": "", "Search Knowledge": "Поиск знания", "Search Models": "Поиск моделей", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Подзаголовок (напр., о Римской империи)", "Success": "Успех", "Successfully updated.": "Успешно обновлено.", + "Suggest a change": "", "Suggested": "Предложено", "Support": "Поддержать", "Support this plugin:": "Поддержите этот плагин", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "Проблемы с доступом к Ollama?", "Trust Proxy Environment": "Доверять заданным параметрам прокси", + "Try Again": "", "TTS Model": "Модель TTS", "TTS Settings": "Настройки TTS", "TTS Voice": "Голос TTS", diff --git a/src/lib/i18n/locales/sk-SK/translation.json b/src/lib/i18n/locales/sk-SK/translation.json index 1e70e92cee..ef9fd49090 100644 --- a/src/lib/i18n/locales/sk-SK/translation.json +++ b/src/lib/i18n/locales/sk-SK/translation.json @@ -43,6 +43,7 @@ "Add content here": "Pridať obsah sem", "Add Custom Parameter": "", "Add custom prompt": "Pridanie vlastného promptu", + "Add Details": "", "Add Files": "Pridať súbory", "Add Group": "Pridať skupinu", "Add Memory": "Pridať pamäť", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "API kľúč pre Brave Search", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Vykonávanie kódu", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "Príkaz", "Comment": "", "Completions": "Doplnenia", + "Compress Images in Channels": "", "Concurrent Requests": "Súčasné požiadavky", "Configure": "Konfigurovať", "Confirm": "Potvrdiť", @@ -328,6 +334,7 @@ "Default": "Predvolené hodnoty alebo nastavenia.", "Default (Open AI)": "Predvolené (Open AI)", "Default (SentenceTransformers)": "Predvolené (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Predvolený model", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Objavte, stiahnite a preskúmajte prednastavenia modelov", "Display": "", "Display Emoji in Call": "Zobrazenie emoji počas hovoru", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Zobraziť užívateľské meno namiesto \"Vás\" v chate", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Zistené falšovanie odtlačkov prstov: Nie je možné použiť iniciály ako avatar. Používa sa predvolený profilový obrázok.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Plynule streamujte veľké externé časti odpovedí", + "Floating Quick Actions": "", "Focus chat input": "Zamerajte sa na vstup chatu", "Folder deleted successfully": "Priečinok bol úspešne vymazaný", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Info", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Vstupné príkazy", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "viac", "More": "Viac", + "More Concise": "", + "More Options": "", "Name": "Meno", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "Nový chat", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "Otvoriť súbor", "Open in full screen": "Otvoriť na celú obrazovku", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Otvoriť nový chat", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI interne používa faster-whisper.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Stiahnite \"{{searchValue}}\" z Ollama.com", "Pull a model from Ollama.com": "Stiahnite model z Ollama.com", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "Šablóna RAG", "Rating": "Hodnotenie", "Re-rank models by topic similarity": "Znova zoradiť modely podľa podobnosti tém.", @@ -1145,8 +1161,12 @@ "Search Chats": "Vyhľadávanie v chate", "Search Collection": "Hľadať kolekciu", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "hľadanie značiek", "Search Functions": "Vyhľadávacie funkcie", + "Search In Models": "", "Search Knowledge": "Vyhľadávanie znalostí", "Search Models": "Vyhľadávacie modely", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Titulky (napr. o Rímskej ríši)", "Success": "Úspech", "Successfully updated.": "Úspešne aktualizované.", + "Suggest a change": "", "Suggested": "Navrhované", "Support": "Podpora", "Support this plugin:": "Podporte tento plugin:", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "Máte problémy s prístupom k Ollama?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "Model prevodu textu na reč (TTS)", "TTS Settings": "Nastavenia TTS (Text-to-Speech)", "TTS Voice": "TTS hlas", diff --git a/src/lib/i18n/locales/sr-RS/translation.json b/src/lib/i18n/locales/sr-RS/translation.json index 1c4edf38a4..270afce47f 100644 --- a/src/lib/i18n/locales/sr-RS/translation.json +++ b/src/lib/i18n/locales/sr-RS/translation.json @@ -43,6 +43,7 @@ "Add content here": "Додај садржај овде", "Add Custom Parameter": "", "Add custom prompt": "Додај прилагођен упит", + "Add Details": "", "Add Files": "Додај датотеке", "Add Group": "Додај групу", "Add Memory": "Додај сећање", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Апи кључ за храбру претрагу", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Од {{name}}", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Извршавање кода", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "Наредба", "Comment": "", "Completions": "Допуне", + "Compress Images in Channels": "", "Concurrent Requests": "Упоредни захтеви", "Configure": "Подеси", "Confirm": "Потврди", @@ -328,6 +334,7 @@ "Default": "Подразумевано", "Default (Open AI)": "Подразумевано (Open AI)", "Default (SentenceTransformers)": "Подразумевано (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Подразумевани модел", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Откријте, преузмите и истражите образце модела", "Display": "Приказ", "Display Emoji in Call": "Прикажи емоџије у позиву", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Прикажи корисничко уместо Ти у ћаскању", "Displays citations in the response": "Прикажи цитате у одговору", "Dive into knowledge": "Ускочите у знање", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Откривено лажно представљање отиска прста: Немогуће је користити иницијале као аватар. Прелазак на подразумевану профилну слику.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Течно стримујте велике спољне делове одговора", + "Floating Quick Actions": "", "Focus chat input": "Усредсредите унос ћаскања", "Folder deleted successfully": "", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Инфо", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Унеси наредбе", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "више", "More": "Више", + "More Concise": "", + "More Options": "", "Name": "Име", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "Ново ћаскање", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "", "Open in full screen": "", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Покрени ново ћаскање", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Повуците \"{{searchValue}}\" са Ollama.com", "Pull a model from Ollama.com": "Повуците модел са Ollama.com", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "RAG шаблон", "Rating": "Оцена", "Re-rank models by topic similarity": "", @@ -1145,8 +1161,12 @@ "Search Chats": "Претражи ћаскања", "Search Collection": "Претражи колекцију", "Search Filters": "Претражи филтере", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "", "Search Functions": "Претражи функције", + "Search In Models": "", "Search Knowledge": "Претражи знање", "Search Models": "Модели претраге", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Поднаслов (нпр. о Римском царству)", "Success": "Успех", "Successfully updated.": "Успешно ажурирано.", + "Suggest a change": "", "Suggested": "Предложено", "Support": "Подршка", "Support this plugin:": "Подржите овај прикључак", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "Проблеми са приступом Ollama-и?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "TTS модел", "TTS Settings": "TTS подешавања", "TTS Voice": "TTS глас", diff --git a/src/lib/i18n/locales/sv-SE/translation.json b/src/lib/i18n/locales/sv-SE/translation.json index f1de6955eb..3b8a73a7ec 100644 --- a/src/lib/i18n/locales/sv-SE/translation.json +++ b/src/lib/i18n/locales/sv-SE/translation.json @@ -43,6 +43,7 @@ "Add content here": "Lägg till innehåll här", "Add Custom Parameter": "Lägg till anpassad parameter", "Add custom prompt": "Lägg till en anpassad instruktion", + "Add Details": "", "Add Files": "Lägg till filer", "Add Group": "Lägg till grupp", "Add Memory": "Lägg till minne", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Både Docling OCR Engine och Language(s) måste anges eller lämnas tomma.", "Brave Search API Key": "API-nyckel för Brave Search", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Av {{name}}", "Bypass Embedding and Retrieval": "Kringgå inbäddning och hämtning", "Bypass Web Loader": "Kringgå webbläsare", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "Stäng modal", "Close settings modal": "Stäng inställningsmodal", + "Close Sidebar": "", "Code Block": "", "Code execution": "Kodkörning", "Code Execution": "Kodkörning", @@ -254,6 +259,7 @@ "Command": "Kommando", "Comment": "", "Completions": "Slutföranden", + "Compress Images in Channels": "", "Concurrent Requests": "Parallella anrop", "Configure": "Konfigurera", "Confirm": "Bekräfta", @@ -328,6 +334,7 @@ "Default": "Standard", "Default (Open AI)": "Standard (Open AI)", "Default (SentenceTransformers)": "Standard (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Standardläget fungerar med ett bredare utbud av modeller genom att anropa verktyg en gång före körning. Inbyggt läge utnyttjar modellens inbyggda verktygsanropsfunktioner, men kräver att modellen har stöd för den här funktionen.", "Default Model": "Standardmodell", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Upptäck, ladda ner och utforska modellförinställningar", "Display": "Visa", "Display Emoji in Call": "Visa Emoji under samtal", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Visa användarnamnet istället för du i chatten", "Displays citations in the response": "Visar citeringar i svaret", "Dive into knowledge": "Dyk in i kunskap", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Fingeravtrycksmanipulering upptäckt: Kan inte använda initialer som avatar. Återställning till standardprofilbild.", "Firecrawl API Base URL": "Firecrawl API Base URL", "Firecrawl API Key": "Firecrawl API-nyckel", - "Fluidly stream large external response chunks": "Strömma flytande stora externa svarschunks", + "Floating Quick Actions": "", "Focus chat input": "Fokusera på chattfältet", "Folder deleted successfully": "Mappen har tagits bort", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Påverkar hur snabbt algoritmen svarar på feedback från den genererade texten. En lägre inlärningshastighet resulterar i långsammare justeringar, medan en högre inlärningshastighet gör algoritmen mer responsiv.", "Info": "Information", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injicera hela innehållet som kontext för omfattande bearbetning, detta rekommenderas för komplexa frågor.", + "Input": "", "Input commands": "Indatakommandon", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Mojeek Sök API-nyckel", "more": "mer", "More": "Mer", + "More Concise": "", + "More Options": "", "Name": "Namn", "Name your knowledge base": "Namnge din kunskapsbas", "Native": "Inbyggd", + "New Button": "", "New Chat": "Ny chatt", "New Folder": "Ny mapp", "New Function": "Ny funktion", @@ -984,7 +996,10 @@ "Open file": "Öppna fil", "Open in full screen": "Öppna i helskärm", "Open modal to configure connection": "Öppna modal för att konfigurera anslutning", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Öppna ny chatt", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kan använda verktyg från alla OpenAPI-servrar.", "Open WebUI uses faster-whisper internally.": "Open WebUI använder faster-whisper internt.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI använder SpeechT5 och CMU Arctic högtalarinbäddningar.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Ladda ner \"{{searchValue}}\" från Ollama.com", "Pull a model from Ollama.com": "Ladda ner en modell från Ollama.com", "Query Generation Prompt": "Prompt för frågegenerering", + "Quick Actions": "", "RAG Template": "RAG-mall", "Rating": "Betyg", "Re-rank models by topic similarity": "Ranka om modeller efter ämneslikhet", @@ -1145,8 +1161,12 @@ "Search Chats": "Sök i chattar", "Search Collection": "Sök samling", "Search Filters": "Sökfilter", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "sök efter taggar", "Search Functions": "Sök funktioner", + "Search In Models": "", "Search Knowledge": "Sök kunskap", "Search Models": "Sök modeller", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Undertext (t.ex. om Romerska Imperiet)", "Success": "Framgång", "Successfully updated.": "Uppdaterades framgångsrikt.", + "Suggest a change": "", "Suggested": "Föreslagen", "Support": "Stöd", "Support this plugin:": "Stöd denna plugin", @@ -1379,6 +1400,7 @@ "Transformers": "Transformatorer", "Trouble accessing Ollama?": "Problem med att komma åt Ollama?", "Trust Proxy Environment": "Trust Proxy-miljö", + "Try Again": "", "TTS Model": "Text-till-tal-modell", "TTS Settings": "Text-till-tal-inställningar", "TTS Voice": "Text-till-tal-röst", diff --git a/src/lib/i18n/locales/th-TH/translation.json b/src/lib/i18n/locales/th-TH/translation.json index b76f737d91..36e41e978a 100644 --- a/src/lib/i18n/locales/th-TH/translation.json +++ b/src/lib/i18n/locales/th-TH/translation.json @@ -43,6 +43,7 @@ "Add content here": "เพิ่มเนื้อหาตรงนี้", "Add Custom Parameter": "", "Add custom prompt": "เพิ่มพรอมต์ที่กำหนดเอง", + "Add Details": "", "Add Files": "เพิ่มไฟล์", "Add Group": "เพิ่มกลุ่ม", "Add Memory": "เพิ่มความจำ", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "คีย์ API ของ Brave Search", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "คำสั่ง", "Comment": "", "Completions": "", + "Compress Images in Channels": "", "Concurrent Requests": "คำขอพร้อมกัน", "Configure": "", "Confirm": "ยืนยัน", @@ -328,6 +334,7 @@ "Default": "ค่าเริ่มต้น", "Default (Open AI)": "", "Default (SentenceTransformers)": "ค่าเริ่มต้น (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "โมเดลค่าเริ่มต้น", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "ค้นหา ดาวน์โหลด และสำรวจพรีเซ็ตโมเดล", "Display": "", "Display Emoji in Call": "แสดงอิโมจิในการโทร", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "แสดงชื่อผู้ใช้แทนคุณในการแชท", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "ตรวจพบการปลอมแปลงลายนิ้วมือ: ไม่สามารถใช้ชื่อย่อเป็นอวตารได้ ใช้รูปโปรไฟล์เริ่มต้น", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "สตรีมชิ้นส่วนการตอบสนองขนาดใหญ่จากภายนอกอย่างลื่นไหล", + "Floating Quick Actions": "", "Focus chat input": "โฟกัสการป้อนแชท", "Folder deleted successfully": "", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "ข้อมูล", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "คำสั่งป้อนข้อมูล", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "", "More": "เพิ่มเติม", + "More Concise": "", + "More Options": "", "Name": "ชื่อ", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "แชทใหม่", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "", "Open in full screen": "", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "เปิดแชทใหม่", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "", "Pull a model from Ollama.com": "", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "แม่แบบ RAG", "Rating": "", "Re-rank models by topic similarity": "", @@ -1145,8 +1161,12 @@ "Search Chats": "ค้นหาแชท", "Search Collection": "", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "", "Search Functions": "ค้นหาฟังก์ชัน", + "Search In Models": "", "Search Knowledge": "", "Search Models": "ค้นหาโมเดล", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "คำบรรยาย (เช่น เกี่ยวกับจักรวรรดิโรมัน)", "Success": "สำเร็จ", "Successfully updated.": "อัปเดตเรียบร้อยแล้ว", + "Suggest a change": "", "Suggested": "แนะนำ", "Support": "สนับสนุน", "Support this plugin:": "สนับสนุนปลั๊กอินนี้:", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "มีปัญหาในการเข้าถึง Ollama?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "โมเดลแปลงข้อความเป็นเสียง", "TTS Settings": "การตั้งค่าแปลงข้อความเป็นเสียง", "TTS Voice": "เสียงแปลงข้อความเป็นเสียง", diff --git a/src/lib/i18n/locales/tk-TM/translation.json b/src/lib/i18n/locales/tk-TM/translation.json index 753ef28cf7..161bf4fc91 100644 --- a/src/lib/i18n/locales/tk-TM/translation.json +++ b/src/lib/i18n/locales/tk-TM/translation.json @@ -43,6 +43,7 @@ "Add content here": "", "Add Custom Parameter": "", "Add custom prompt": "Özboluşly düşündiriş goşuň", + "Add Details": "", "Add Files": "Faýllar goş", "Add Group": "", "Add Memory": "Ýat goş", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Brave Gözleg API Açar", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "Buýruk", "Comment": "", "Completions": "", + "Compress Images in Channels": "", "Concurrent Requests": "Meňzeş Haýyşlar", "Configure": "", "Confirm": "", @@ -328,6 +334,7 @@ "Default": "Nokatlaýyn", "Default (Open AI)": "", "Default (SentenceTransformers)": "Nokatlaýyn (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Nokatlaýyn Model", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "", "Display": "Görkeziş", "Display Emoji in Call": "", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "", + "Floating Quick Actions": "", "Focus chat input": "", "Folder deleted successfully": "", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Maglumat", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "", "More": "Has köp", + "More Concise": "", + "More Options": "", "Name": "Ady", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "", "Open in full screen": "", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "", "Pull a model from Ollama.com": "", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "", "Rating": "", "Re-rank models by topic similarity": "", @@ -1145,8 +1161,12 @@ "Search Chats": "", "Search Collection": "", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "", "Search Functions": "", + "Search In Models": "", "Search Knowledge": "", "Search Models": "", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "", "Success": "Üstünlik", "Successfully updated.": "", + "Suggest a change": "", "Suggested": "", "Support": "Goldaw", "Support this plugin:": "", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "", "TTS Settings": "", "TTS Voice": "", diff --git a/src/lib/i18n/locales/tr-TR/translation.json b/src/lib/i18n/locales/tr-TR/translation.json index e7ba12b8c9..9ae61754af 100644 --- a/src/lib/i18n/locales/tr-TR/translation.json +++ b/src/lib/i18n/locales/tr-TR/translation.json @@ -43,6 +43,7 @@ "Add content here": "Buraya içerik ekleyin", "Add Custom Parameter": "", "Add custom prompt": "Özel prompt ekleyin", + "Add Details": "", "Add Files": "Dosyalar Ekle", "Add Group": "Grup Ekle", "Add Memory": "Bellek Ekle", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Brave Search API Anahtarı", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "{{name}} Tarafından", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Kod yürütme", "Code Execution": "Kod Çalıştırma", @@ -254,6 +259,7 @@ "Command": "Komut", "Comment": "", "Completions": "Tamamlamalar", + "Compress Images in Channels": "", "Concurrent Requests": "Eşzamanlı İstekler", "Configure": "Yapılandırma", "Confirm": "Onayla", @@ -328,6 +334,7 @@ "Default": "Varsayılan", "Default (Open AI)": "Varsayılan (Open AI)", "Default (SentenceTransformers)": "Varsayılan (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Varsayılan mod, araçları yürütmeden önce bir kez çağırarak daha geniş bir model yelpazesiyle çalışır. Yerel mod, modelin yerleşik araç çağırma yeteneklerinden yararlanır, ancak modelin bu özelliği doğal olarak desteklemesini gerektirir.", "Default Model": "Varsayılan Model", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Model ön ayarlarını keşfedin, indirin ve inceleyin", "Display": "", "Display Emoji in Call": "Aramada Emoji Göster", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Sohbet'te Siz yerine kullanıcı adını göster", "Displays citations in the response": "Yanıtta alıntıları gösterir", "Dive into knowledge": "Bilgiye dalmak", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Parmak izi sahteciliği tespit edildi: Avatar olarak baş harfler kullanılamıyor. Varsayılan profil resmine dönülüyor.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Büyük harici yanıt chunklarını akıcı bir şekilde yayınlayın", + "Floating Quick Actions": "", "Focus chat input": "Sohbet girişine odaklan", "Folder deleted successfully": "Klasör başarıyla silindi", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "Bilgi", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "Giriş komutları", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Mojeek Search API Anahtarı", "more": "daha fazla", "More": "Daha Fazla", + "More Concise": "", + "More Options": "", "Name": "Ad", "Name your knowledge base": "Bilgi tabanınıza bir ad verin", "Native": "", + "New Button": "", "New Chat": "Yeni Sohbet", "New Folder": "Yeni Klasör", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "Dosyayı aç", "Open in full screen": "Tam ekranda aç", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Yeni sohbet aç", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI OpenAPI tarafından sağlanan araçları kullanabilir", "Open WebUI uses faster-whisper internally.": "Open WebUI, dahili olarak daha hızlı-fısıltı kullanır.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI, SpeechT5 ve CMU Arctic konuşmacı gömme kullanır.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com'dan \"{{searchValue}}\" çekin", "Pull a model from Ollama.com": "Ollama.com'dan bir model çekin", "Query Generation Prompt": "Sorgu Oluşturma Promptu", + "Quick Actions": "", "RAG Template": "RAG Şablonu", "Rating": "Derecelendirme", "Re-rank models by topic similarity": "Konu benzerliğine göre modelleri yeniden sırala", @@ -1145,8 +1161,12 @@ "Search Chats": "Sohbetleri Ara", "Search Collection": "Koleksiyon Ara", "Search Filters": "Filtreleri Ara", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "etiketler için ara", "Search Functions": "Fonksiyonları Ara", + "Search In Models": "", "Search Knowledge": "Bilgi Ara", "Search Models": "Modelleri Ara", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Alt başlık (örn. Roma İmparatorluğu hakkında)", "Success": "Başarılı", "Successfully updated.": "Başarıyla güncellendi.", + "Suggest a change": "", "Suggested": "Önerilen", "Support": "Destek", "Support this plugin:": "Bu eklentiyi destekleyin:", @@ -1379,6 +1400,7 @@ "Transformers": "Dönüştürücüler", "Trouble accessing Ollama?": "Ollama'ya erişmede sorun mu yaşıyorsunuz?", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "TTS Modeli", "TTS Settings": "TTS Ayarları", "TTS Voice": "TTS Sesi", diff --git a/src/lib/i18n/locales/ug-CN/translation.json b/src/lib/i18n/locales/ug-CN/translation.json index 97fc43315d..c37d6f2dd2 100644 --- a/src/lib/i18n/locales/ug-CN/translation.json +++ b/src/lib/i18n/locales/ug-CN/translation.json @@ -43,6 +43,7 @@ "Add content here": "مەزمۇننى بۇ يەرگە قوشۇڭ", "Add Custom Parameter": "ئۆزلۈك پارامېتىر قوشۇش", "Add custom prompt": "ئۆزلۈك تۈرتكە قوشۇش", + "Add Details": "", "Add Files": "ھۆججەتلەر قوشۇش", "Add Group": "گۇرۇپپا قوشۇش", "Add Memory": "ئەسلەتمە قوشۇش", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Docling OCR ماتورى ۋە تىل(لار) تەمىنلىنىشى ياكى ئىككىلىسىمۇ بوش قالدۇرۇلۇشى كېرەك.", "Brave Search API Key": "Brave ئىزدەش API ئاچقۇچى", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "{{name}} تەرىپىدىن", "Bypass Embedding and Retrieval": "كىرگۈزۈش ۋە قايتۇرۇشتىن ئۆتۈپ كېتىش", "Bypass Web Loader": "تور يۈكلىگۈچتىن ئۆتۈپ كېتىش", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "مودالنى يېپىش", "Close settings modal": "تەڭشەك مودالىنى يېپىش", + "Close Sidebar": "", "Code Block": "", "Code execution": "كود ئىجرا قىلىش", "Code Execution": "كود ئىجرا قىلىش", @@ -254,6 +259,7 @@ "Command": "بۇيرۇق", "Comment": "", "Completions": "تولۇقلىنىشلار", + "Compress Images in Channels": "", "Concurrent Requests": "پاراللىل تەلەپلەر", "Configure": "تەڭشەك", "Confirm": "جەزملەش", @@ -328,6 +334,7 @@ "Default": "كۆڭۈلدىكى", "Default (Open AI)": "كۆڭۈلدىكى (Open AI)", "Default (SentenceTransformers)": "كۆڭۈلدىكى (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "سۈكۈتتىكى ھالەت ئىجرا قىلىنىشتىن بۇرۇن بىر قېتىم چاقىرىش قوراللىرى ئارقىلىق تېخىمۇ كەڭ مودېللار بىلەن ئىشلەيدۇ. يەرلىك ھالەت مودېلنىڭ ئىچىگە قورال چاقىرىش ئىقتىدارىنى جارى قىلدۇرىدۇ ، ئەمما مودېلنىڭ بۇ ئىقتىدارنى ئەسلىدىنلا قوللىشىنى تەلەپ قىلىدۇ.", "Default Model": "كۆڭۈلدىكى مودېل", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "مودېل ئالدىن تەڭشەكلىرىنى تاپ، چۈشۈر، تەتقىق قىل", "Display": "كۆرسىتىش", "Display Emoji in Call": "چاقىرىشتا ئېموجىنى كۆرسىتىش", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "سۆھبەتتە 'سىز' ئورنىغا ئىشلەتكۈچى ئىسمىنى كۆرسىتىش", "Displays citations in the response": "ئىنكاستا نەقىللەرنى كۆرسىتىدۇ", "Dive into knowledge": "بىلىمگە چۆمۈلۈڭ", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "بارماق ئىزى ئالدامچىلىقى بايقالدى: دەسلەپتىكىنى ئاۋاتار قىلغىلى بولمىدى. كۆڭۈلدىكى پىروفىل رەسىمى ئىشلىتىلىدۇ. ", "Firecrawl API Base URL": "Firecrawl API ئاساسىي URL", "Firecrawl API Key": "Firecrawl API ئاچقۇچى", - "Fluidly stream large external response chunks": "سىرتتىن كەلگەن چوڭ ئىنكاسلارنى سىلىق تارقىتىش", + "Floating Quick Actions": "", "Focus chat input": "سۆھبەت كىرگۈزۈشىگە نىشانلا", "Folder deleted successfully": "قىسقۇچ مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "ھاسىل قىلىنغان تېكىستنىڭ ئىنكاسىغا ئالگورىزىمنىڭ تېز ئىنكاس قايتۇرۇشىغا تەسىر كۆرسىتىدۇ. ئۆگىنىش نىسبىتىنىڭ تۆۋەن بولۇشى ئاستا تەڭشەشنى كەلتۈرۈپ چىقىرىدۇ ، ھالبۇكى تېخىمۇ يۇقىرى ئۆگىنىش نىسبىتى ھېسابلاش ئۇسۇلىنى تېخىمۇ كۈچلۈك قىلىدۇ.", "Info": "ئۇچۇر", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "پۈتۈن مەزمۇننى مۇھىتقا قوشۇپ مول تەھلىل قىلىش، مۇرەككەپ سۇئاللار ئۈچۈن تەۋسىيە قىلىنىدۇ.", + "Input": "", "Input commands": "بۇيرۇق كىرگۈزۈش", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Mojeek ئىزدەش API ئاچقۇچى", "more": "تېخىمۇ كۆپ", "More": "تېخىمۇ كۆپ", + "More Concise": "", + "More Options": "", "Name": "ئات", "Name your knowledge base": "بىلىم ئاساسى نامىنى كىرگۈزۈڭ", "Native": "يەرلىك", + "New Button": "", "New Chat": "يېڭى سۆھبەت", "New Folder": "يېڭى قىسقۇچ", "New Function": "يېڭى فۇنكسىيە", @@ -984,7 +996,10 @@ "Open file": "ھۆججەت ئېچىش", "Open in full screen": "پۈتۈن ئېكراندا ئېچىش", "Open modal to configure connection": "ئۇلىنىش تەڭشەك مودالىنى ئېچىڭ", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "يېڭى سۆھبەت ئېچىش", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI ھەر قانداق OpenAPI مۇلازىمېتىرلىرىدىكى قوراللارنى ئىشلىتەلىدۇ.", "Open WebUI uses faster-whisper internally.": "Open WebUI ئىچىدە faster-whisper ئىشلىتىدۇ.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI SpeechT5 ۋە CMU Arctic ئاۋاز سىڭدۈرۈش ئىشلىتىدۇ.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com دىن \"{{searchValue}}\" نى تارتىش", "Pull a model from Ollama.com": "Ollama.com دىن مودېل تارتىش", "Query Generation Prompt": "ئىزدەش سۇئالى تۈرتكەسى", + "Quick Actions": "", "RAG Template": "RAG قېلىپى", "Rating": "باھا", "Re-rank models by topic similarity": "مودېللارنى تېما ئوخشىشى بويىچە قايتا تەرتىپلەش", @@ -1145,8 +1161,12 @@ "Search Chats": "سۆھبەت ئىزدەش", "Search Collection": "توپلام ئىزدەش", "Search Filters": "سۈزگۈچ ئىزدەش", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "تەغ ئىزدەش", "Search Functions": "فۇنكسىيە ئىزدەش", + "Search In Models": "", "Search Knowledge": "بىلىم ئىزدەش", "Search Models": "مودېللارنى ئىزدەش", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "تاق سۆز (مەسىلەن: رىم ئىمپېرىيەسى ھەققىدە)", "Success": "مۇۋەپپەقىيەت", "Successfully updated.": "مۇۋەپپەقىيەتلىك يېڭىلاندى.", + "Suggest a change": "", "Suggested": "تەكلىپلەر", "Support": "ياردەم", "Support this plugin:": "بۇ قىستۇرما ئۈچۈن ياردەم قىلىڭ:", @@ -1379,6 +1400,7 @@ "Transformers": "Transformers", "Trouble accessing Ollama?": "Ollama زىيارىتىدە مەسىلە بارمۇ؟", "Trust Proxy Environment": "ۋاكالەت مۇھىتىگە ئىشەن", + "Try Again": "", "TTS Model": "TTS مودېلى", "TTS Settings": "TTS تەڭشەكلىرى", "TTS Voice": "TTS ئاۋازى", diff --git a/src/lib/i18n/locales/uk-UA/translation.json b/src/lib/i18n/locales/uk-UA/translation.json index fa2539ffe6..ad88e9cb73 100644 --- a/src/lib/i18n/locales/uk-UA/translation.json +++ b/src/lib/i18n/locales/uk-UA/translation.json @@ -43,6 +43,7 @@ "Add content here": "Додайте вміст сюди", "Add Custom Parameter": "", "Add custom prompt": "Додати користувацьку підказку", + "Add Details": "", "Add Files": "Додати файли", "Add Group": "Додати групу", "Add Memory": "Додати пам'ять", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Ключ API пошуку Brave", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Від {{name}}", "Bypass Embedding and Retrieval": "Минути вбудовування та пошук", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Виконання коду", "Code Execution": "Виконання коду", @@ -254,6 +259,7 @@ "Command": "Команда", "Comment": "", "Completions": "Завершення", + "Compress Images in Channels": "", "Concurrent Requests": "Одночасні запити", "Configure": "Налаштувати", "Confirm": "Підтвердити", @@ -328,6 +334,7 @@ "Default": "За замовчуванням", "Default (Open AI)": "За замовчуванням (Open AI)", "Default (SentenceTransformers)": "За замовчуванням (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Режим за замовчуванням працює з ширшим діапазоном моделей, викликаючи інструменти один раз перед виконанням. Рідний режим використовує вбудовані можливості виклику інструментів моделі, але вимагає, щоб модель спочатку підтримувала цю функцію.", "Default Model": "Модель за замовчуванням", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Знайдіть, завантажте та досліджуйте налаштування моделей", "Display": "Відображення", "Display Emoji in Call": "Відображати емодзі у викликах", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Показувати ім'я користувача замість 'Ви' в чаті", "Displays citations in the response": "Показує посилання у відповіді", "Dive into knowledge": "Зануртесь у знання", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Виявлено підробку відбитків: Неможливо використовувати ініціали як аватар. Повернення до зображення профілю за замовчуванням.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Плавно передавати великі фрагменти зовнішніх відповідей", + "Floating Quick Actions": "", "Focus chat input": "Фокус вводу чату", "Folder deleted successfully": "Папку успішно видалено", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Впливає на те, як швидко алгоритм реагує на відгуки згенерованого тексту. Нижча швидкість навчання призведе до повільніших коригувань, тоді як вища швидкість навчання зробить алгоритм більш чутливим.", "Info": "Інфо", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Вставте весь вміст як контекст для всебічної обробки, це рекомендується для складних запитів.", + "Input": "", "Input commands": "Команди вводу", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "API ключ для пошуку Mojeek", "more": "більше", "More": "Більше", + "More Concise": "", + "More Options": "", "Name": "Ім'я", "Name your knowledge base": "Назвіть вашу базу знань", "Native": "Рідний", + "New Button": "", "New Chat": "Новий чат", "New Folder": "Нова папка", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "Відкрити файл", "Open in full screen": "Відкрити на весь екран", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Відкрити новий чат", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI використовує faster-whisper внутрішньо.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI використовує вбудовування голосів SpeechT5 та CMU Arctic.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Завантажити \"{{searchValue}}\" з Ollama.com", "Pull a model from Ollama.com": "Завантажити модель з Ollama.com", "Query Generation Prompt": "Підказка для генерації запиту", + "Quick Actions": "", "RAG Template": "Шаблон RAG", "Rating": "Оцінка", "Re-rank models by topic similarity": "Перестановка моделей за схожістю тем", @@ -1145,8 +1161,12 @@ "Search Chats": "Пошук в чатах", "Search Collection": "Шукати колекцію", "Search Filters": "Фільтри пошуку", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "шукати теги", "Search Functions": "Пошук функцій", + "Search In Models": "", "Search Knowledge": "Шукати знання", "Search Models": "Пошук моделей", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Підзаголовок (напр., про Римську імперію)", "Success": "Успіх", "Successfully updated.": "Успішно оновлено.", + "Suggest a change": "", "Suggested": "Запропоновано", "Support": "Підтримати", "Support this plugin:": "Підтримайте цей плагін:", @@ -1379,6 +1400,7 @@ "Transformers": "Трансформери", "Trouble accessing Ollama?": "Проблеми з доступом до Ollama?", "Trust Proxy Environment": "Довіряти середовищу проксі", + "Try Again": "", "TTS Model": "Модель TTS", "TTS Settings": "Налаштування TTS", "TTS Voice": "Голос TTS", diff --git a/src/lib/i18n/locales/ur-PK/translation.json b/src/lib/i18n/locales/ur-PK/translation.json index be8096b219..f3b61c5e96 100644 --- a/src/lib/i18n/locales/ur-PK/translation.json +++ b/src/lib/i18n/locales/ur-PK/translation.json @@ -43,6 +43,7 @@ "Add content here": "یہاں مواد شامل کریں", "Add Custom Parameter": "", "Add custom prompt": "حسب ضرورت پرامپٹ شامل کریں", + "Add Details": "", "Add Files": "فائلیں شامل کریں", "Add Group": "", "Add Memory": "میموری شامل کریں", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "بریو سرچ API کلید", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "", "Bypass Embedding and Retrieval": "", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "کوڈ کا نفاذ", "Code Execution": "", @@ -254,6 +259,7 @@ "Command": "کمانڈ", "Comment": "", "Completions": "تکمیل", + "Compress Images in Channels": "", "Concurrent Requests": "ہم وقت درخواستیں", "Configure": "", "Confirm": "تصدیق کریں", @@ -328,6 +334,7 @@ "Default": "پہلے سے طے شدہ", "Default (Open AI)": "ڈیفالٹ (اوپن اے آئی)", "Default (SentenceTransformers)": "ڈیفالٹ (سینٹینس ٹرانسفارمرز)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "ڈیفالٹ ماڈل", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "دریافت کریں، ڈاؤن لوڈ کریں، اور ماڈل پریسیٹس کو دریافت کریں", "Display": "", "Display Emoji in Call": "کال میں ایموجی دکھائیں", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "چیٹ میں \"آپ\" کے بجائے صارف نام دکھائیں", "Displays citations in the response": "", "Dive into knowledge": "", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "فنگر پرنٹ اسپورفنگ کا پتہ چلا: اوتار کے طور پر ابتدائی حروف استعمال کرنے سے قاصر ڈیفالٹ پروفائل تصویر منتخب کی جا رہی ہے", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "بڑے بیرونی جوابات کے حصوں کو بہاؤ میں منتقل کریں", + "Floating Quick Actions": "", "Focus chat input": "چیٹ ان پٹ پر توجہ مرکوز کریں", "Folder deleted successfully": "پوشہ کامیابی سے حذف ہو گیا", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "", "Info": "معلومات", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", + "Input": "", "Input commands": "کمانڈز داخل کریں", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "", "more": "مزید", "More": "مزید", + "More Concise": "", + "More Options": "", "Name": "نام", "Name your knowledge base": "", "Native": "", + "New Button": "", "New Chat": "نئی بات چیت", "New Folder": "", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "فائل کھولیں", "Open in full screen": "پوری اسکرین میں کھولیں", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "نیا چیٹ کھولیں", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "اوپن ویب یو آئی اندرونی طور پر فاسٹر وِسپر استعمال کرتا ہے", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com سے \"{{searchValue}}\" کو کھینچیں", "Pull a model from Ollama.com": "Ollama.com سے ماڈل حاصل کریں", "Query Generation Prompt": "", + "Quick Actions": "", "RAG Template": "آر اے جی سانچہ", "Rating": "درجہ بندی", "Re-rank models by topic similarity": "موضوع کی مماثلت کے لحاظ سے ماڈلز کی دوبارہ ترتیب دیں", @@ -1145,8 +1161,12 @@ "Search Chats": "چیٹس تلاش کریں", "Search Collection": "مجموعہ تلاش کریں", "Search Filters": "", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "ٹیگز کے لیے تلاش کریں", "Search Functions": "تلاش کے افعال", + "Search In Models": "", "Search Knowledge": "علم تلاش کریں", "Search Models": "ماڈلز تلاش کریں", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "ذیلی عنوان (جیسے رومن سلطنت کے بارے میں)", "Success": "کامیابی", "Successfully updated.": "کامیابی سے تازہ کاری ہو گئی", + "Suggest a change": "", "Suggested": "تجویز کردہ", "Support": "مدد کریں", "Support this plugin:": "اس پلگ ان کی حمایت کریں:", @@ -1379,6 +1400,7 @@ "Transformers": "", "Trouble accessing Ollama?": "Ollama تک رسائی میں مشکل؟", "Trust Proxy Environment": "", + "Try Again": "", "TTS Model": "ٹی ٹی ایس ماڈل", "TTS Settings": "ٹی ٹی ایس ترتیبات", "TTS Voice": "ٹی ٹی ایس آواز", diff --git a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json index 3779d8ca4e..9a9ffe60df 100644 --- a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json +++ b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json @@ -43,6 +43,7 @@ "Add content here": "Бу ерга таркиб қўшинг", "Add Custom Parameter": "Махсус параметр қўшинг", "Add custom prompt": "Махсус таклиф қўшинг", + "Add Details": "", "Add Files": "Файлларни қўшиш", "Add Group": "Гуруҳ қўшиш", "Add Memory": "Хотира қўшиш", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Доcлинг ОCР механизми ва тил(лар) кўрсатилиши ёки иккаласи ҳам бўш қолиши керак.", "Brave Search API Key": "Brave Search API Key", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Муаллиф: {{name}}", "Bypass Embedding and Retrieval": "Ўрнатиш ва қидиришни четлаб ўтиш", "Bypass Web Loader": "Веб юклагични четлаб ўтиш", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Коднинг бажарилиши", "Code Execution": "Коднинг бажарилиши", @@ -254,6 +259,7 @@ "Command": "Буйруқ", "Comment": "", "Completions": "Тугаллашлар", + "Compress Images in Channels": "", "Concurrent Requests": "Бир вақтнинг ўзида сўровлар", "Configure": "Созланг", "Confirm": "Тасдиқланг", @@ -328,6 +334,7 @@ "Default": "Стандарт", "Default (Open AI)": "Стандарт (Open AI)", "Default (SentenceTransformers)": "Стандарт (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Стандарт модел", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Модел созламаларини кашф этинг, юклаб олинг ва ўрганинг", "Display": "Дисплей", "Display Emoji in Call": "Чақирувда кулгичларни кўрсатиш", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Чатда Сиз ўрнига фойдаланувчи номини кўрсатинг", "Displays citations in the response": "Жавобда иқтибосларни кўрсатади", "Dive into knowledge": "Билимга шўнғинг", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Бармоқ изи алдаш аниқланди: аватар сифатида бош ҳарфлардан фойдаланиш имконсиз. Стандарт профил расми.", "Firecrawl API Base URL": "Firecrawl АПИ асосий УРЛ манзили", "Firecrawl API Key": "Firecrawl АПИ калити", - "Fluidly stream large external response chunks": "Катта ташқи жавоб бўлакларини оқизиш", + "Floating Quick Actions": "", "Focus chat input": "Чат киритишга фокуслаш", "Folder deleted successfully": "Жилд муваффақиятли ўчирилди", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Алгоритм яратилган матндан олинган фикр-мулоҳазага қанчалик тез жавоб беришига таъсир қилади. Пастроқ ўрганиш тезлиги созлашнинг секинлашишига олиб келади, юқори ўрганиш тезлиги эса алгоритмни янада сезгир қилади.", "Info": "Маълумот", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Комплекс қайта ишлаш учун бутун таркибни контекст сифатида киритинг, бу мураккаб сўровлар учун тавсия этилади.", + "Input": "", "Input commands": "Кириш буйруқлари", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Можеэк қидирув АПИ калити", "more": "Кўпроқ", "More": "Кўпроқ", + "More Concise": "", + "More Options": "", "Name": "Исм", "Name your knowledge base": "Билимлар базасини номланг", "Native": "Маҳаллий", + "New Button": "", "New Chat": "Янги чат", "New Folder": "Янги жилд", "New Function": "Янги функсия", @@ -984,7 +996,10 @@ "Open file": "Файлни очиш", "Open in full screen": "Тўлиқ экранда очинг", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Янги чат очинг", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Опен WебУИ ҳар қандай ОпенАПИ сервери томонидан тақдим этилган воситалардан фойдаланиши мумкин.", "Open WebUI uses faster-whisper internally.": "Опен WебУИ ички тез шивирлашдан фойдаланади.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Опен WебУИ СпеэчТ5 ва CМУ Арcтиc динамик ўрнатишларидан фойдаланади.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.cом сайтидан “{{сеарчВалуе}}”ни тортинг", "Pull a model from Ollama.com": "Ollama.cом дан моделни тортинг", "Query Generation Prompt": "Сўровни яратиш таклифи", + "Quick Actions": "", "RAG Template": "РАГ шаблони", "Rating": "Рейтинг", "Re-rank models by topic similarity": "Моделларни мавзу ўхшашлиги бўйича қайта тартибланг", @@ -1145,8 +1161,12 @@ "Search Chats": "Чатларни қидириш", "Search Collection": "Тўпламни қидириш", "Search Filters": "Қидирув филтрлари", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "тегларни қидиринг", "Search Functions": "Қидирув функсиялари", + "Search In Models": "", "Search Knowledge": "Билимларни қидириш", "Search Models": "Моделларни қидириш", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Субтитр (масалан, Рим империяси ҳақида)", "Success": "Муваффақият", "Successfully updated.": "Муваффақиятли янгиланди.", + "Suggest a change": "", "Suggested": "Тавсия этилган", "Support": "Қўллаб-қувватлаш", "Support this plugin:": "Ушбу плагинни қўллаб-қувватланг:", @@ -1379,6 +1400,7 @@ "Transformers": "Трансформаторлар", "Trouble accessing Ollama?": "Олламага киришда муаммо борми?", "Trust Proxy Environment": "Ишончли прокси муҳити", + "Try Again": "", "TTS Model": "ТТС модели", "TTS Settings": "ТТС созламалари", "TTS Voice": "ТТС овози", diff --git a/src/lib/i18n/locales/uz-Latn-Uz/translation.json b/src/lib/i18n/locales/uz-Latn-Uz/translation.json index 9be8fb416e..3ab09d97a0 100644 --- a/src/lib/i18n/locales/uz-Latn-Uz/translation.json +++ b/src/lib/i18n/locales/uz-Latn-Uz/translation.json @@ -43,6 +43,7 @@ "Add content here": "Bu yerga tarkib qo'shing", "Add Custom Parameter": "Maxsus parametr qo'shing", "Add custom prompt": "Maxsus taklif qo'shing", + "Add Details": "", "Add Files": "Fayllarni qo'shish", "Add Group": "Guruh qo'shish", "Add Memory": "Xotira qo'shish", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Docling OCR mexanizmi va til(lar) koʻrsatilishi yoki ikkalasi ham boʻsh qolishi kerak.", "Brave Search API Key": "Brave Search API kaliti", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Muallif: {{name}}", "Bypass Embedding and Retrieval": "O'rnatish va qidirishni chetlab o'tish", "Bypass Web Loader": "Veb yuklagichni chetlab o'tish", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Kodning bajarilishi", "Code Execution": "Kodning bajarilishi", @@ -254,6 +259,7 @@ "Command": "Buyruq", "Comment": "", "Completions": "Tugallashlar", + "Compress Images in Channels": "", "Concurrent Requests": "Bir vaqtning o'zida so'rovlar", "Configure": "Sozlang", "Confirm": "Tasdiqlang", @@ -328,6 +334,7 @@ "Default": "Standart", "Default (Open AI)": "Standart (Ochiq AI)", "Default (SentenceTransformers)": "Birlamchi (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "", "Default Model": "Standart model", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Model sozlamalarini kashf eting, yuklab oling va o'rganing", "Display": "Displey", "Display Emoji in Call": "Chaqiruvda kulgichlarni ko‘rsatish", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Chatda Siz o'rniga foydalanuvchi nomini ko'rsating", "Displays citations in the response": "Javobda iqtiboslarni ko'rsatadi", "Dive into knowledge": "Bilimga sho'ng'ing", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Barmoq izi aldash aniqlandi: avatar sifatida bosh harflardan foydalanish imkonsiz. Standart profil rasmi.", "Firecrawl API Base URL": "Firecrawl API asosiy URL manzili", "Firecrawl API Key": "Firecrawl API kaliti", - "Fluidly stream large external response chunks": "Katta tashqi javob bo'laklarini oqizish", + "Floating Quick Actions": "", "Focus chat input": "Chat kiritishga fokuslash", "Folder deleted successfully": "Jild muvaffaqiyatli oʻchirildi", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Algoritm yaratilgan matndan olingan fikr-mulohazaga qanchalik tez javob berishiga ta'sir qiladi. Pastroq o'rganish tezligi sozlashning sekinlashishiga olib keladi, yuqori o'rganish tezligi esa algoritmni yanada sezgir qiladi.", "Info": "Ma'lumot", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Kompleks qayta ishlash uchun butun tarkibni kontekst sifatida kiriting, bu murakkab so'rovlar uchun tavsiya etiladi.", + "Input": "", "Input commands": "Kirish buyruqlari", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Mojeek qidiruv API kaliti", "more": "Ko'proq", "More": "Ko'proq", + "More Concise": "", + "More Options": "", "Name": "Ism", "Name your knowledge base": "Bilimlar bazasini nomlang", "Native": "Mahalliy", + "New Button": "", "New Chat": "Yangi chat", "New Folder": "Yangi jild", "New Function": "Yangi funksiya", @@ -984,7 +996,10 @@ "Open file": "Faylni ochish", "Open in full screen": "Toʻliq ekranda oching", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Yangi chat oching", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI har qanday OpenAPI serveri tomonidan taqdim etilgan vositalardan foydalanishi mumkin.", "Open WebUI uses faster-whisper internally.": "Open WebUI ichki tez shivirlashdan foydalanadi.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI SpeechT5 va CMU Arctic dinamik oʻrnatishlaridan foydalanadi.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com saytidan “{{searchValue}}”ni torting", "Pull a model from Ollama.com": "Ollama.com dan modelni torting", "Query Generation Prompt": "So'rovni yaratish taklifi", + "Quick Actions": "", "RAG Template": "RAG shabloni", "Rating": "Reyting", "Re-rank models by topic similarity": "Modellarni mavzu o'xshashligi bo'yicha qayta tartiblang", @@ -1145,8 +1161,12 @@ "Search Chats": "Chatlarni qidirish", "Search Collection": "To'plamni qidirish", "Search Filters": "Qidiruv filtrlari", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "teglarni qidiring", "Search Functions": "Qidiruv funksiyalari", + "Search In Models": "", "Search Knowledge": "Bilimlarni qidirish", "Search Models": "Modellarni qidirish", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Subtitr (masalan, Rim imperiyasi haqida)", "Success": "Muvaffaqiyat", "Successfully updated.": "Muvaffaqiyatli yangilandi.", + "Suggest a change": "", "Suggested": "Tavsiya etilgan", "Support": "Qo'llab-quvvatlash", "Support this plugin:": "Ushbu plaginni qo'llab-quvvatlang:", @@ -1379,6 +1400,7 @@ "Transformers": "Transformatorlar", "Trouble accessing Ollama?": "Ollamaga kirishda muammo bormi?", "Trust Proxy Environment": "Ishonchli proksi muhiti", + "Try Again": "", "TTS Model": "TTS modeli", "TTS Settings": "TTS sozlamalari", "TTS Voice": "TTS ovozi", diff --git a/src/lib/i18n/locales/vi-VN/translation.json b/src/lib/i18n/locales/vi-VN/translation.json index f4129e4db4..58f1010cce 100644 --- a/src/lib/i18n/locales/vi-VN/translation.json +++ b/src/lib/i18n/locales/vi-VN/translation.json @@ -43,6 +43,7 @@ "Add content here": "Thêm nội dung tại đây", "Add Custom Parameter": "", "Add custom prompt": "Thêm prompt tùy chỉnh", + "Add Details": "", "Add Files": "Thêm tệp", "Add Group": "Thêm Nhóm", "Add Memory": "Thêm bộ nhớ", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "", "Brave Search API Key": "Khóa API tìm kiếm dũng cảm", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "Bởi {{name}}", "Bypass Embedding and Retrieval": "Bỏ qua Embedding và Truy xuất", "Bypass Web Loader": "", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "", "Close settings modal": "", + "Close Sidebar": "", "Code Block": "", "Code execution": "Thực thi mã", "Code Execution": "Thực thi Mã", @@ -254,6 +259,7 @@ "Command": "Lệnh", "Comment": "", "Completions": "Hoàn thành", + "Compress Images in Channels": "", "Concurrent Requests": "Các truy vấn đồng thời", "Configure": "Cấu hình", "Confirm": "Xác nhận", @@ -328,6 +334,7 @@ "Default": "Mặc định", "Default (Open AI)": "Mặc định (Open AI)", "Default (SentenceTransformers)": "Mặc định (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "Chế độ mặc định hoạt động với nhiều loại mô hình hơn bằng cách gọi các công cụ một lần trước khi thực thi. Chế độ gốc tận dụng khả năng gọi công cụ tích hợp sẵn của mô hình, nhưng yêu cầu mô hình phải hỗ trợ tính năng này vốn có.", "Default Model": "Model mặc định", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "Tìm kiếm, tải về và khám phá thêm các model presets", "Display": "Hiển thị", "Display Emoji in Call": "Hiển thị Emoji trong cuộc gọi", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "Hiển thị tên người sử dụng thay vì 'Bạn' trong nội dung chat", "Displays citations in the response": "Hiển thị trích dẫn trong phản hồi", "Dive into knowledge": "Đi sâu vào kiến thức", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Phát hiện giả mạo vân tay: Không thể sử dụng tên viết tắt làm hình đại diện. Mặc định là hình ảnh hồ sơ mặc định.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", - "Fluidly stream large external response chunks": "Truyền tải các khối phản hồi bên ngoài lớn một cách trôi chảy", + "Floating Quick Actions": "", "Focus chat input": "Tập trung vào nội dung chat", "Folder deleted successfully": "Xóa thư mục thành công", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Ảnh hưởng đến tốc độ thuật toán phản hồi lại phản hồi từ văn bản được tạo. Tốc độ học thấp hơn sẽ dẫn đến các điều chỉnh chậm hơn, trong khi tốc độ học cao hơn sẽ làm cho thuật toán phản ứng nhanh hơn.", "Info": "Thông tin", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Đưa toàn bộ nội dung vào làm ngữ cảnh để xử lý toàn diện, điều này được khuyến nghị cho các truy vấn phức tạp.", + "Input": "", "Input commands": "Nhập các câu lệnh", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Khóa API Mojeek Search", "more": "thêm", "More": "Thêm", + "More Concise": "", + "More Options": "", "Name": "Tên", "Name your knowledge base": "Đặt tên cho cơ sở kiến thức của bạn", "Native": "Gốc", + "New Button": "", "New Chat": "Tạo chat mới", "New Folder": "Thư mục Mới", "New Function": "", @@ -984,7 +996,10 @@ "Open file": "Mở tệp", "Open in full screen": "Mở toàn màn hình", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "Mở nội dung chat mới", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI sử dụng faster-whisper bên trong.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI sử dụng SpeechT5 và các embedding giọng nói CMU Arctic.", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "Tải \"{{searchValue}}\" từ Ollama.com", "Pull a model from Ollama.com": "Tải mô hình từ Ollama.com", "Query Generation Prompt": "Prompt Tạo Truy vấn", + "Quick Actions": "", "RAG Template": "Mẫu prompt cho RAG", "Rating": "Đánh giá", "Re-rank models by topic similarity": "Xếp hạng lại các mô hình theo độ tương đồng chủ đề", @@ -1145,8 +1161,12 @@ "Search Chats": "Tìm kiếm các cuộc Chat", "Search Collection": "Tìm kiếm Bộ sưu tập", "Search Filters": "Bộ lọc Tìm kiếm", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "tìm kiếm thẻ", "Search Functions": "Tìm kiếm Functions", + "Search In Models": "", "Search Knowledge": "Tìm kiếm Kiến thức", "Search Models": "Tìm model", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "Phụ đề (ví dụ: về Đế chế La Mã)", "Success": "Thành công", "Successfully updated.": "Đã cập nhật thành công.", + "Suggest a change": "", "Suggested": "Gợi ý một số mẫu prompt", "Support": "Hỗ trợ", "Support this plugin:": "Hỗ trợ plugin này:", @@ -1379,6 +1400,7 @@ "Transformers": "Transformers", "Trouble accessing Ollama?": "Gặp vấn đề khi truy cập Ollama?", "Trust Proxy Environment": "Tin cậy Môi trường Proxy", + "Try Again": "", "TTS Model": "Mô hình TTS", "TTS Settings": "Cài đặt Chuyển văn bản thành Giọng nói", "TTS Voice": "Giọng nói TTS", diff --git a/src/lib/i18n/locales/zh-CN/translation.json b/src/lib/i18n/locales/zh-CN/translation.json index eadc63f883..d214adea22 100644 --- a/src/lib/i18n/locales/zh-CN/translation.json +++ b/src/lib/i18n/locales/zh-CN/translation.json @@ -43,6 +43,7 @@ "Add content here": "在此添加内容", "Add Custom Parameter": "增加自定义参数", "Add custom prompt": "添加自定义提示词", + "Add Details": "", "Add Files": "添加文件", "Add Group": "添加权限组", "Add Memory": "添加记忆", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "必需提供 Docling OCR Engine 和语言,或者都留空。", "Brave Search API Key": "Brave Search API 密钥", "Bullet List": "无序列表", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "由 {{name}} 提供", "Bypass Embedding and Retrieval": "绕过嵌入和检索", "Bypass Web Loader": "绕过网页加载器", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "关闭外部连接配置弹窗", "Close modal": "关闭弹窗", "Close settings modal": "关闭设置弹窗", + "Close Sidebar": "", "Code Block": "代码块", "Code execution": "代码执行", "Code Execution": "代码执行", @@ -254,6 +259,7 @@ "Command": "命令", "Comment": "注释", "Completions": "续写", + "Compress Images in Channels": "", "Concurrent Requests": "并发请求", "Configure": "配置", "Confirm": "确认", @@ -328,6 +334,7 @@ "Default": "默认", "Default (Open AI)": "默认 (OpenAI)", "Default (SentenceTransformers)": "默认 (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "默认描述已启用", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "默认模式通过在执行前调用一次工具,能够兼容更广泛的模型。原生模式利用模型内置的工具调用能力,但需要模型本身具备该功能的原生支持。", "Default Model": "默认模型", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "发现、下载并探索更多模型预设", "Display": "显示", "Display Emoji in Call": "在通话中显示 Emoji 表情符号", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "在对话中显示用户名而不是 “你”", "Displays citations in the response": "在回复中显示引用", "Dive into knowledge": "深入知识的海洋", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "检测到指纹伪造:无法使用姓名缩写作为头像。默认使用默认个人形象。", "Firecrawl API Base URL": "Firecrawl API URL", "Firecrawl API Key": "Firecrawl API 密钥", - "Fluidly stream large external response chunks": "流畅地传输外部大型响应块数据", + "Floating Quick Actions": "", "Focus chat input": "激活对话输入框", "Folder deleted successfully": "文件夹删除成功", "Folder Name": "文件夹名称", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "影响算法对生成文本反馈的响应速度。较低的学习率将导致调整更慢,而较高的学习率将使算法反应更灵敏。", "Info": "信息", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "注入整个内容作为上下文进行综合处理,适用于复杂查询", + "Input": "", "Input commands": "输入命令", "Input Variables": "插入变量", "Insert": "插入", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Mojeek Search API 密钥", "more": "更多", "More": "更多", + "More Concise": "", + "More Options": "", "Name": "名称", "Name your knowledge base": "为您的知识库命名", "Native": "原生", + "New Button": "", "New Chat": "新对话", "New Folder": "新文件夹", "New Function": "新函数", @@ -984,7 +996,10 @@ "Open file": "打开文件", "Open in full screen": "全屏打开", "Open modal to configure connection": "打开外部连接配置弹窗", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "打开新对话", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI 可使用任何 OpenAPI 服务器提供的工具。", "Open WebUI uses faster-whisper internally.": "Open WebUI 使用内置 faster-whisper", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI 使用 SpeechT5 和 CMU Arctic speaker embedding。", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "从 Ollama.com 拉取 \"{{searchValue}}\"", "Pull a model from Ollama.com": "从 Ollama.com 拉取一个模型", "Query Generation Prompt": "查询生成提示词", + "Quick Actions": "", "RAG Template": "RAG 提示词模板", "Rating": "评价", "Re-rank models by topic similarity": "根据主题相似性对模型重新排序", @@ -1145,8 +1161,12 @@ "Search Chats": "搜索对话", "Search Collection": "搜索内容", "Search Filters": "搜索过滤器", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "搜索标签", "Search Functions": "搜索函数", + "Search In Models": "", "Search Knowledge": "搜索知识", "Search Models": "搜索模型", "Search Notes": "搜索笔记", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "副标题(例如:关于罗马帝国的副标题)", "Success": "成功", "Successfully updated.": "成功更新", + "Suggest a change": "", "Suggested": "建议", "Support": "支持", "Support this plugin:": "支持此插件", @@ -1379,6 +1400,7 @@ "Transformers": "Transformers", "Trouble accessing Ollama?": "访问 Ollama 时遇到问题?", "Trust Proxy Environment": "信任代理环境", + "Try Again": "", "TTS Model": "文本转语音模型", "TTS Settings": "文本转语音设置", "TTS Voice": "文本转语音音色", diff --git a/src/lib/i18n/locales/zh-TW/translation.json b/src/lib/i18n/locales/zh-TW/translation.json index 63385afad8..1f409e0e6f 100644 --- a/src/lib/i18n/locales/zh-TW/translation.json +++ b/src/lib/i18n/locales/zh-TW/translation.json @@ -43,6 +43,7 @@ "Add content here": "在此新增內容", "Add Custom Parameter": "新增自訂參數", "Add custom prompt": "新增自訂提示詞", + "Add Details": "", "Add Files": "新增檔案", "Add Group": "新增群組", "Add Memory": "新增記憶", @@ -171,6 +172,9 @@ "Both Docling OCR Engine and Language(s) must be provided or both left empty.": "必須同時提供 Docling OCR 引擎與語言設定,或兩者皆留空。", "Brave Search API Key": "Brave 搜尋 API 金鑰", "Bullet List": "", + "Button ID": "", + "Button Label": "", + "Button Prompt": "", "By {{name}}": "由 {{name}} 製作", "Bypass Embedding and Retrieval": "繞過嵌入與檢索", "Bypass Web Loader": "繞過網頁載入器", @@ -233,6 +237,7 @@ "Close Configure Connection Modal": "", "Close modal": "關閉模型", "Close settings modal": "關閉設定模型", + "Close Sidebar": "", "Code Block": "", "Code execution": "程式碼執行", "Code Execution": "程式碼執行", @@ -254,6 +259,7 @@ "Command": "命令", "Comment": "", "Completions": "自動完成", + "Compress Images in Channels": "", "Concurrent Requests": "平行請求", "Configure": "設定", "Confirm": "確認", @@ -328,6 +334,7 @@ "Default": "預設", "Default (Open AI)": "預設 (OpenAI)", "Default (SentenceTransformers)": "預設 (SentenceTransformers)", + "Default action buttons will be used.": "", "Default description enabled": "", "Default mode works with a wider range of models by calling tools once before execution. Native mode leverages the model's built-in tool-calling capabilities, but requires the model to inherently support this feature.": "預設模式透過在執行前呼叫工具一次,來與更廣泛的模型相容。原生模式則利用模型內建的工具呼叫能力,但需要模型本身就支援此功能。", "Default Model": "預設模型", @@ -386,6 +393,7 @@ "Discover, download, and explore model presets": "發掘、下載及探索模型預設集", "Display": "顯示", "Display Emoji in Call": "在通話中顯示表情符號", + "Display Multi-model Responses in Tabs": "", "Display the username instead of You in the Chat": "在對話中顯示使用者名稱,而非「您」", "Displays citations in the response": "在回應中顯示引用", "Dive into knowledge": "挖掘知識", @@ -654,7 +662,7 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "偵測到指紋偽造:無法使用姓名縮寫作為大頭貼。將預設為預設個人檔案圖片。", "Firecrawl API Base URL": "Firecrawl API 基底 URL", "Firecrawl API Key": "Firecrawl API 金鑰", - "Fluidly stream large external response chunks": "流暢地串流大型外部回應區塊", + "Floating Quick Actions": "", "Focus chat input": "聚焦對話輸入", "Folder deleted successfully": "成功刪除資料夾", "Folder Name": "", @@ -768,6 +776,7 @@ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "影響演算法對生成文字回饋的反應速度。較低的學習率會導致調整速度較慢,而較高的學習率會使演算法反應更靈敏。", "Info": "資訊", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "將完整內容注入為上下文以進行全面處理,建議用於複雜查詢。", + "Input": "", "Input commands": "輸入命令", "Input Variables": "", "Insert": "", @@ -914,9 +923,12 @@ "Mojeek Search API Key": "Mojeek 搜尋 API 金鑰", "more": "更多", "More": "更多", + "More Concise": "", + "More Options": "", "Name": "名稱", "Name your knowledge base": "命名您的知識庫", "Native": "原生", + "New Button": "", "New Chat": "新增對話", "New Folder": "新增資料夾", "New Function": "新增函式", @@ -984,7 +996,10 @@ "Open file": "開啟檔案", "Open in full screen": "全螢幕開啟", "Open modal to configure connection": "", + "Open Modal To Manage Floating Quick Actions": "", "Open new chat": "開啟新的對話", + "Open Sidebar": "", + "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI 可使用任何 OpenAPI 伺服器提供的工具。", "Open WebUI uses faster-whisper internally.": "Open WebUI 使用內部 faster-whisper。", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI 使用 SpeechT5 和 CMU Arctic 說話者嵌入。", @@ -1077,6 +1092,7 @@ "Pull \"{{searchValue}}\" from Ollama.com": "從 Ollama.com 下載「{{searchValue}}」", "Pull a model from Ollama.com": "從 Ollama.com 下載模型", "Query Generation Prompt": "查詢生成提示詞", + "Quick Actions": "", "RAG Template": "RAG 範本", "Rating": "評分", "Re-rank models by topic similarity": "根據主題相似度重新排序模型", @@ -1145,8 +1161,12 @@ "Search Chats": "搜尋對話", "Search Collection": "搜尋集合", "Search Filters": "搜尋篩選器", + "search for archived chats": "", + "search for pinned chats": "", + "search for shared chats": "", "search for tags": "搜尋標籤", "Search Functions": "搜尋函式", + "Search In Models": "", "Search Knowledge": "搜尋知識庫", "Search Models": "搜尋模型", "Search Notes": "", @@ -1263,6 +1283,7 @@ "Subtitle (e.g. about the Roman Empire)": "副標題(例如:關於羅馬帝國)", "Success": "成功", "Successfully updated.": "更新成功。", + "Suggest a change": "", "Suggested": "建議", "Support": "支援", "Support this plugin:": "支持這個外掛:", @@ -1379,6 +1400,7 @@ "Transformers": "Transformers", "Trouble accessing Ollama?": "存取 Ollama 時遇到問題?", "Trust Proxy Environment": "信任代理環境", + "Try Again": "", "TTS Model": "文字轉語音 (TTS) 模型", "TTS Settings": "文字轉語音 (TTS) 設定", "TTS Voice": "文字轉語音 (TTS) 聲音",