From 6692fb2181f689d13e6a241c4727067a00f1040a Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Sat, 17 May 2025 01:00:37 +0400 Subject: [PATCH] chore: format --- .../open_webui/retrieval/vector/factory.py | 4 ++- package-lock.json | 4 +-- package.json | 2 +- src/lib/components/icons/LightBulb.svelte | 28 +++++++++---------- src/lib/i18n/locales/ar-BH/translation.json | 7 +++++ src/lib/i18n/locales/ar/translation.json | 7 +++++ src/lib/i18n/locales/bg-BG/translation.json | 7 +++++ src/lib/i18n/locales/bn-BD/translation.json | 7 +++++ src/lib/i18n/locales/bo-TB/translation.json | 7 +++++ src/lib/i18n/locales/ca-ES/translation.json | 7 +++++ src/lib/i18n/locales/ceb-PH/translation.json | 7 +++++ src/lib/i18n/locales/cs-CZ/translation.json | 7 +++++ src/lib/i18n/locales/da-DK/translation.json | 7 +++++ src/lib/i18n/locales/de-DE/translation.json | 7 +++++ src/lib/i18n/locales/dg-DG/translation.json | 7 +++++ src/lib/i18n/locales/el-GR/translation.json | 7 +++++ src/lib/i18n/locales/en-GB/translation.json | 7 +++++ src/lib/i18n/locales/en-US/translation.json | 7 +++++ src/lib/i18n/locales/es-ES/translation.json | 7 +++++ src/lib/i18n/locales/et-EE/translation.json | 7 +++++ src/lib/i18n/locales/eu-ES/translation.json | 7 +++++ src/lib/i18n/locales/fa-IR/translation.json | 7 +++++ src/lib/i18n/locales/fi-FI/translation.json | 7 +++++ src/lib/i18n/locales/fr-CA/translation.json | 7 +++++ src/lib/i18n/locales/fr-FR/translation.json | 7 +++++ src/lib/i18n/locales/he-IL/translation.json | 7 +++++ src/lib/i18n/locales/hi-IN/translation.json | 7 +++++ src/lib/i18n/locales/hr-HR/translation.json | 7 +++++ src/lib/i18n/locales/hu-HU/translation.json | 7 +++++ src/lib/i18n/locales/id-ID/translation.json | 7 +++++ src/lib/i18n/locales/ie-GA/translation.json | 7 +++++ src/lib/i18n/locales/it-IT/translation.json | 7 +++++ src/lib/i18n/locales/ja-JP/translation.json | 7 +++++ src/lib/i18n/locales/ka-GE/translation.json | 7 +++++ src/lib/i18n/locales/ko-KR/translation.json | 7 +++++ src/lib/i18n/locales/lt-LT/translation.json | 7 +++++ src/lib/i18n/locales/ms-MY/translation.json | 7 +++++ src/lib/i18n/locales/nb-NO/translation.json | 7 +++++ src/lib/i18n/locales/nl-NL/translation.json | 7 +++++ src/lib/i18n/locales/pa-IN/translation.json | 7 +++++ src/lib/i18n/locales/pl-PL/translation.json | 7 +++++ src/lib/i18n/locales/pt-BR/translation.json | 7 +++++ src/lib/i18n/locales/pt-PT/translation.json | 7 +++++ src/lib/i18n/locales/ro-RO/translation.json | 7 +++++ src/lib/i18n/locales/ru-RU/translation.json | 7 +++++ src/lib/i18n/locales/sk-SK/translation.json | 7 +++++ src/lib/i18n/locales/sr-RS/translation.json | 7 +++++ src/lib/i18n/locales/sv-SE/translation.json | 7 +++++ src/lib/i18n/locales/th-TH/translation.json | 7 +++++ src/lib/i18n/locales/tk-TW/translation.json | 7 +++++ src/lib/i18n/locales/tr-TR/translation.json | 7 +++++ src/lib/i18n/locales/uk-UA/translation.json | 7 +++++ src/lib/i18n/locales/ur-PK/translation.json | 7 +++++ src/lib/i18n/locales/vi-VN/translation.json | 7 +++++ src/lib/i18n/locales/zh-CN/translation.json | 9 ++++-- src/lib/i18n/locales/zh-TW/translation.json | 7 +++++ 56 files changed, 384 insertions(+), 20 deletions(-) diff --git a/backend/open_webui/retrieval/vector/factory.py b/backend/open_webui/retrieval/vector/factory.py index 84126724a..72a3f6ceb 100644 --- a/backend/open_webui/retrieval/vector/factory.py +++ b/backend/open_webui/retrieval/vector/factory.py @@ -17,7 +17,9 @@ class Vector: return MilvusClient() case VectorType.QDRANT: if ENABLE_QDRANT_MULTITENANCY_MODE: - from open_webui.retrieval.vector.dbs.qdrant_multitenancy import QdrantClient + from open_webui.retrieval.vector.dbs.qdrant_multitenancy import ( + QdrantClient, + ) return QdrantClient() else: diff --git a/package-lock.json b/package-lock.json index ff0414895..1c3bc8571 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "open-webui", - "version": "0.6.9", + "version": "0.6.10", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "open-webui", - "version": "0.6.9", + "version": "0.6.10", "dependencies": { "@azure/msal-browser": "^4.5.0", "@codemirror/lang-javascript": "^6.2.2", diff --git a/package.json b/package.json index 9ffa8298e..744315c3b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "open-webui", - "version": "0.6.9", + "version": "0.6.10", "private": true, "scripts": { "dev": "npm run pyodide:fetch && vite dev --host", diff --git a/src/lib/components/icons/LightBulb.svelte b/src/lib/components/icons/LightBulb.svelte index 119f49f6e..0778e6dad 100644 --- a/src/lib/components/icons/LightBulb.svelte +++ b/src/lib/components/icons/LightBulb.svelte @@ -1,19 +1,19 @@ - - \ No newline at end of file + + diff --git a/src/lib/i18n/locales/ar-BH/translation.json b/src/lib/i18n/locales/ar-BH/translation.json index 0c1dd7a8f..883f497a5 100644 --- a/src/lib/i18n/locales/ar-BH/translation.json +++ b/src/lib/i18n/locales/ar-BH/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Chunk حجم", "Ciphers": "", "Citation": "اقتباس", + "Citations": "", "Clear memory": "", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "تم اكتشاف مسار نظام الملفات النموذجي. الاسم المختصر للنموذج مطلوب للتحديث، ولا يمكن الاستمرار.", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "أخر 30 يوم", "Previous 7 days": "أخر 7 أيام", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "جاري التحميل", "URL": "", "URL Mode": "رابط الموديل", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "Gravatar أستخدم", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "", + "Vision": "", "Voice": "", "Voice Input": "", "Warning": "تحذير", diff --git a/src/lib/i18n/locales/ar/translation.json b/src/lib/i18n/locales/ar/translation.json index 8a727be93..3a1e2d15f 100644 --- a/src/lib/i18n/locales/ar/translation.json +++ b/src/lib/i18n/locales/ar/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "حجم القطعة", "Ciphers": "التشفيرات", "Citation": "اقتباس", + "Citations": "", "Clear memory": "مسح الذاكرة", "Clear Memory": "مسح الذاكرة", "click here": "انقر هنا", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "النموذج يقبل إدخالات الصور", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "تم إنشاء النموذج بنجاح!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "تم اكتشاف مسار نظام الملفات النموذجي. الاسم المختصر للنموذج مطلوب للتحديث، ولا يمكن الاستمرار.", "Model Filtering": "تصفية النماذج", @@ -927,6 +931,7 @@ "Prefix ID": "معرف البادئة", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "يُستخدم معرف البادئة لتفادي التعارض مع الاتصالات الأخرى من خلال إضافة بادئة إلى معرفات النماذج – اتركه فارغًا لتعطيله", "Presence Penalty": "عقوبة التكرار", + "Preview": "", "Previous 30 days": "أخر 30 يوم", "Previous 7 days": "أخر 7 أيام", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "جاري التحميل", "URL": "الرابط", "URL Mode": "رابط الموديل", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "استخدم الرمز '#' في خانة التوجيه لتحميل وإدراج المعرفة الخاصة بك.", "Use Gravatar": "Gravatar أستخدم", "Use groups to group your users and assign permissions.": "استخدم المجموعات لتجميع المستخدمين وتحديد الصلاحيات.", @@ -1276,6 +1282,7 @@ "View Replies": "عرض الردود", "View Result from **{{NAME}}**": "", "Visibility": "مستوى الظهور", + "Vision": "", "Voice": "الصوت", "Voice Input": "إدخال صوتي", "Warning": "تحذير", diff --git a/src/lib/i18n/locales/bg-BG/translation.json b/src/lib/i18n/locales/bg-BG/translation.json index 69e290dc7..4afe9e946 100644 --- a/src/lib/i18n/locales/bg-BG/translation.json +++ b/src/lib/i18n/locales/bg-BG/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Размер на чънк", "Ciphers": "Шифри", "Citation": "Цитат", + "Citations": "", "Clear memory": "Изчистване на паметта", "Clear Memory": "", "click here": "натиснете тук", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "Моделът приема входни изображения", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Моделът е създаден успешно!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Открит е път до файловата система на модела. За актуализацията се изисква съкратено име на модела, не може да продължи.", "Model Filtering": "Филтриране на модели", @@ -927,6 +931,7 @@ "Prefix ID": "Префикс ID", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Префикс ID се използва за избягване на конфликти с други връзки чрез добавяне на префикс към ID-тата на моделите - оставете празно, за да деактивирате", "Presence Penalty": "Наказание за присъствие", + "Preview": "", "Previous 30 days": "Предишните 30 дни", "Previous 7 days": "Предишните 7 дни", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Прогрес на качването", "URL": "URL", "URL Mode": "URL режим", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Използвайте '#' в полето за въвеждане, за да заредите и включите вашите знания.", "Use Gravatar": "Използвайте Gravatar", "Use groups to group your users and assign permissions.": "Използвайте групи, за да групирате вашите потребители и да присвоите разрешения.", @@ -1276,6 +1282,7 @@ "View Replies": "Преглед на отговорите", "View Result from **{{NAME}}**": "", "Visibility": "Видимост", + "Vision": "", "Voice": "Глас", "Voice Input": "Гласов вход", "Warning": "Предупреждение", diff --git a/src/lib/i18n/locales/bn-BD/translation.json b/src/lib/i18n/locales/bn-BD/translation.json index e12651f76..f8c5e74e3 100644 --- a/src/lib/i18n/locales/bn-BD/translation.json +++ b/src/lib/i18n/locales/bn-BD/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "চাঙ্ক সাইজ", "Ciphers": "", "Citation": "উদ্ধৃতি", + "Citations": "", "Clear memory": "", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "মডেল ফাইলসিস্টেম পাথ পাওয়া গেছে। আপডেটের জন্য মডেলের শর্টনেম আবশ্যক, এগিয়ে যাওয়া যাচ্ছে না।", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "পূর্ব ৩০ দিন", "Previous 7 days": "পূর্ব ৭ দিন", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "আপলোড হচ্ছে", "URL": "", "URL Mode": "ইউআরএল মোড", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "Gravatar ব্যবহার করুন", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "", + "Vision": "", "Voice": "", "Voice Input": "", "Warning": "সতর্কীকরণ", diff --git a/src/lib/i18n/locales/bo-TB/translation.json b/src/lib/i18n/locales/bo-TB/translation.json index 16f4afeb3..392e547d8 100644 --- a/src/lib/i18n/locales/bo-TB/translation.json +++ b/src/lib/i18n/locales/bo-TB/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "དུམ་བུའི་ཆེ་ཆུང་།", "Ciphers": "གསང་སྦྱོར།", "Citation": "ལུང་འདྲེན།", + "Citations": "", "Clear memory": "དྲན་ཤེས་གཙང་སེལ།", "Clear Memory": "དྲན་ཤེས་གཙང་སེལ།", "click here": "འདིར་མནན་པ།", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "དཔེ་དབྱིབས། {{name}} ད་ལྟ་སྦས་ཡོད།", "Model {{name}} is now visible": "དཔེ་དབྱིབས། {{name}} ད་ལྟ་མཐོང་ཐུབ།", "Model accepts image inputs": "དཔེ་དབྱིབས་ཀྱིས་པར་གྱི་ནང་འཇུག་དང་ལེན་བྱེད།", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "དཔེ་དབྱིབས་ལེགས་པར་བཟོས་ཟིན།", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "དཔེ་དབྱིབས་ཀྱི་ཡིག་ཆ་མ་ལག་ལམ་བུ་རྙེད་སོང་། གསར་སྒྱུར་གྱི་ཆེད་དུ་དཔེ་དབྱིབས་ཀྱི་མིང་ཐུང་ངུ་དགོས། མུ་མཐུད་མི་ཐུབ།", "Model Filtering": "དཔེ་དབྱིབས་འཚག་མ།", @@ -927,6 +931,7 @@ "Prefix ID": "སྔོན་སྦྱོར་ ID", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "སྔོན་སྦྱོར་ ID ནི་དཔེ་དབྱིབས་ཀྱི་ IDs ལ་སྔོན་སྦྱོར་ཞིག་སྣོན་ནས་སྦྲེལ་མཐུད་གཞན་དང་གདོང་ཐུག་ལས་གཡོལ་བར་བེད་སྤྱོད་བྱེད། - ནུས་མེད་བཏང་བར་སྟོང་པ་བཞག་པ།", "Presence Penalty": "ད་ཡོད་ཀྱི་ཆད་པ།", + "Preview": "", "Previous 30 days": "ཉིན་ ༣༠ སྔོན་མ།", "Previous 7 days": "ཉིན་ ༧ སྔོན་མ།", "Private": "སྒེར།", @@ -1247,6 +1252,7 @@ "Upload Progress": "སྤར་བའི་འཕེལ་རིམ།", "URL": "URL", "URL Mode": "URL མ་དཔེ།", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "འགུལ་སློང་ནང་འཇུག་ཏུ་ '#' བེད་སྤྱོད་ནས་ཁྱེད་ཀྱི་ཤེས་བྱ་ནང་འཇུག་དང་ཚུད་པ།", "Use Gravatar": "Gravatar བེད་སྤྱོད།", "Use groups to group your users and assign permissions.": "ཁྱེད་ཀྱི་བེད་སྤྱོད་མཁན་ཚོགས་པ་བཟོ་བ་དང་དབང་ཚད་སྤྲོད་པར་ཚོགས་པ་བེད་སྤྱོད་གཏོང་བ།", @@ -1276,6 +1282,7 @@ "View Replies": "ལན་ལྟ་བ།", "View Result from **{{NAME}}**": "", "Visibility": "མཐོང་ཐུབ་རང་བཞིན།", + "Vision": "", "Voice": "སྐད།", "Voice Input": "སྐད་ཀྱི་ནང་འཇུག", "Warning": "ཉེན་བརྡ།", diff --git a/src/lib/i18n/locales/ca-ES/translation.json b/src/lib/i18n/locales/ca-ES/translation.json index b39464414..58a1cf1bb 100644 --- a/src/lib/i18n/locales/ca-ES/translation.json +++ b/src/lib/i18n/locales/ca-ES/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Mida del bloc", "Ciphers": "Xifradors", "Citation": "Cita", + "Citations": "", "Clear memory": "Esborrar la memòria", "Clear Memory": "Esborrar la memòria", "click here": "prem aquí", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "El model {{name}} està ara amagat", "Model {{name}} is now visible": "El model {{name}} està ara visible", "Model accepts image inputs": "El model accepta entrades d'imatge", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Model creat correctament", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "S'ha detectat el camí del sistema de fitxers del model. És necessari un nom curt del model per actualitzar, no es pot continuar.", "Model Filtering": "Filtrat de models", @@ -927,6 +931,7 @@ "Prefix ID": "Identificador del prefix", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "L'identificador de prefix s'utilitza per evitar conflictes amb altres connexions afegint un prefix als ID de model; deixa'l en blanc per desactivar-lo.", "Presence Penalty": "Penalització de presència", + "Preview": "", "Previous 30 days": "30 dies anteriors", "Previous 7 days": "7 dies anteriors", "Private": "Privat", @@ -1247,6 +1252,7 @@ "Upload Progress": "Progrés de càrrega", "URL": "URL", "URL Mode": "Mode URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Utilitza '#' a l'entrada de la indicació per carregar i incloure els teus coneixements.", "Use Gravatar": "Utilitzar Gravatar", "Use groups to group your users and assign permissions.": "Utilitza grups per agrupar els usuaris i assignar permisos.", @@ -1276,6 +1282,7 @@ "View Replies": "Veure les respostes", "View Result from **{{NAME}}**": "Veure el resultat de **{{NAME}}**", "Visibility": "Visibilitat", + "Vision": "", "Voice": "Veu", "Voice Input": "Entrada de veu", "Warning": "Avís", diff --git a/src/lib/i18n/locales/ceb-PH/translation.json b/src/lib/i18n/locales/ceb-PH/translation.json index 4477de603..400610b23 100644 --- a/src/lib/i18n/locales/ceb-PH/translation.json +++ b/src/lib/i18n/locales/ceb-PH/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Gidak-on sa block", "Ciphers": "", "Citation": "Mga kinutlo", + "Citations": "", "Clear memory": "", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "", "Previous 7 days": "", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Pag-uswag sa Pag-upload", "URL": "", "URL Mode": "URL mode", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "Paggamit sa Gravatar", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "", + "Vision": "", "Voice": "", "Voice Input": "", "Warning": "", diff --git a/src/lib/i18n/locales/cs-CZ/translation.json b/src/lib/i18n/locales/cs-CZ/translation.json index 42c0ad320..83699a737 100644 --- a/src/lib/i18n/locales/cs-CZ/translation.json +++ b/src/lib/i18n/locales/cs-CZ/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "", "Ciphers": "", "Citation": "Odkaz", + "Citations": "", "Clear memory": "Vymazat paměť", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "Model přijímá vstupy ve formě obrázků", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Model byl úspěšně vytvořen!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Detekována cesta v\u00a0souborovém systému. Je vyžadován krátký název modelu pro aktualizaci, nelze pokračovat.", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "Předchozích 30 dnů", "Previous 7 days": "Předchozích 7 dní", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Průběh nahrávání", "URL": "", "URL Mode": "Režim URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Použijte '#' ve vstupu příkazu k načtení a zahrnutí vašich znalostí.", "Use Gravatar": "Použití Gravatar", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "Viditelnost", + "Vision": "", "Voice": "Hlas", "Voice Input": "Hlasový vstup", "Warning": "Varování", diff --git a/src/lib/i18n/locales/da-DK/translation.json b/src/lib/i18n/locales/da-DK/translation.json index ef889bd6e..83fb71170 100644 --- a/src/lib/i18n/locales/da-DK/translation.json +++ b/src/lib/i18n/locales/da-DK/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Chunk størrelse", "Ciphers": "Ciphers", "Citation": "Citat", + "Citations": "", "Clear memory": "Slet hukommelse", "Clear Memory": "Slet hukommelse", "click here": "klik her", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "Model accepterer billedinput", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Model oprettet!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model filsystemsti registreret. Modelkortnavn er påkrævet til opdatering, kan ikke fortsætte.", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "Prefix ID", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID bruges til at undgå konflikter med andre forbindelser ved at tilføje et prefix til model-ID'erne - lad være tom for at deaktivere", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "Seneste 30 dage", "Previous 7 days": "Seneste 7 dage", "Private": "Privat", @@ -1247,6 +1252,7 @@ "Upload Progress": "Uploadfremdrift", "URL": "URL", "URL Mode": "URL-tilstand", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Brug '#' i promptinput for at indlæse og inkludere din viden.", "Use Gravatar": "Brug Gravatar", "Use groups to group your users and assign permissions.": "Brug grupper til at gruppere dine brugere og tildele rettigheder.", @@ -1276,6 +1282,7 @@ "View Replies": "Vis svar", "View Result from **{{NAME}}**": "Vis resultat fra **{{NAME}}**", "Visibility": "Synlighed", + "Vision": "", "Voice": "Stemme", "Voice Input": "Stemme Input", "Warning": "Advarsel", diff --git a/src/lib/i18n/locales/de-DE/translation.json b/src/lib/i18n/locales/de-DE/translation.json index 2f7d7b1e6..6bf804f89 100644 --- a/src/lib/i18n/locales/de-DE/translation.json +++ b/src/lib/i18n/locales/de-DE/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Blockgröße", "Ciphers": "Verschlüsselungen", "Citation": "Zitate", + "Citations": "", "Clear memory": "Alle Erinnerungen entfernen", "Clear Memory": "Alle Erinnerungen entfernen", "click here": "hier klicken", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "Modell {{name}} ist jetzt versteckt.", "Model {{name}} is now visible": "Modell {{name}} ist jetzt sichtbar.", "Model accepts image inputs": "Modell akzeptiert Bildeingaben", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Modell erfolgreich erstellt!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modell-Dateisystempfad erkannt. Modellkurzname ist für das Update erforderlich, Fortsetzung nicht möglich.", "Model Filtering": "Modellfilterung", @@ -927,6 +931,7 @@ "Prefix ID": "Präfix-ID", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix-ID wird verwendet, um Konflikte mit anderen Verbindungen zu vermeiden, indem ein Präfix zu den Modell-IDs hinzugefügt wird - leer lassen, um zu deaktivieren", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "Vorherige 30 Tage", "Previous 7 days": "Vorherige 7 Tage", "Private": "Privat", @@ -1247,6 +1252,7 @@ "Upload Progress": "Hochladefortschritt", "URL": "URL", "URL Mode": "URL-Modus", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Nutzen Sie '#' in der Prompt-Eingabe, um Ihr Wissen zu laden und einzuschließen.", "Use Gravatar": "Gravatar verwenden", "Use groups to group your users and assign permissions.": "Nutzen Sie Gruppen, um Ihre Benutzer zu gruppieren und Berechtigungen zuzuweisen.", @@ -1276,6 +1282,7 @@ "View Replies": "Antworten anzeigen", "View Result from **{{NAME}}**": "", "Visibility": "Sichtbarkeit", + "Vision": "", "Voice": "Stimme", "Voice Input": "Spracheingabe", "Warning": "Warnung", diff --git a/src/lib/i18n/locales/dg-DG/translation.json b/src/lib/i18n/locales/dg-DG/translation.json index d110e0491..7854dbc3d 100644 --- a/src/lib/i18n/locales/dg-DG/translation.json +++ b/src/lib/i18n/locales/dg-DG/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Chunk Size", "Ciphers": "", "Citation": "", + "Citations": "", "Clear memory": "", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model filesystem bark detected. Model shortname is required for update, cannot continue.", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "", "Previous 7 days": "", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Upload Progress much progress", "URL": "", "URL Mode": "URL Mode much mode", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "Use Gravatar much avatar", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "", + "Vision": "", "Voice": "", "Voice Input": "", "Warning": "", diff --git a/src/lib/i18n/locales/el-GR/translation.json b/src/lib/i18n/locales/el-GR/translation.json index 4941e702c..bebceb047 100644 --- a/src/lib/i18n/locales/el-GR/translation.json +++ b/src/lib/i18n/locales/el-GR/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Μέγεθος Τμημάτων", "Ciphers": "Κρυπτογραφήσεις", "Citation": "Παράθεση", + "Citations": "", "Clear memory": "Καθαρισμός μνήμης", "Clear Memory": "", "click here": "κλικ εδώ", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "Το μοντέλο δέχεται είσοδο εικόνας", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Το μοντέλο δημιουργήθηκε με επιτυχία!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Ανιχνεύθηκε διαδρομή αρχείου μοντέλου. Το σύντομο όνομα μοντέλου απαιτείται για ενημέρωση, δεν μπορεί να συνεχιστεί.", "Model Filtering": "Φιλτράρισμα Μοντέλων", @@ -927,6 +931,7 @@ "Prefix ID": "ID Προθέματος", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Το ID Προθέματος χρησιμοποιείται για να αποφεύγονται συγκρούσεις με άλλες συνδέσεις προσθέτοντας ένα πρόθεμα στα IDs των μοντέλων - αφήστε κενό για απενεργοποίηση", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "Προηγούμενες 30 ημέρες", "Previous 7 days": "Προηγούμενες 7 ημέρες", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Πρόοδος Ανεβάσματος", "URL": "URL", "URL Mode": "Λειτουργία URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Χρησιμοποιήστε '#' στην είσοδο προτροπής για φόρτωση και συμπερίληψη της γνώσης σας.", "Use Gravatar": "Χρησιμοποιήστε Gravatar", "Use groups to group your users and assign permissions.": "Χρησιμοποιήστε ομάδες για να ομαδοποιήσετε τους χρήστες σας και να αναθέσετε δικαιώματα.", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "Ορατότητα", + "Vision": "", "Voice": "Φωνή", "Voice Input": "Εισαγωγή Φωνής", "Warning": "Προειδοποίηση", diff --git a/src/lib/i18n/locales/en-GB/translation.json b/src/lib/i18n/locales/en-GB/translation.json index c3ec0ae47..6e54c3f10 100644 --- a/src/lib/i18n/locales/en-GB/translation.json +++ b/src/lib/i18n/locales/en-GB/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "", "Ciphers": "", "Citation": "", + "Citations": "", "Clear memory": "", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "", "Previous 7 days": "", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "", "URL": "", "URL Mode": "", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "", + "Vision": "", "Voice": "", "Voice Input": "", "Warning": "", diff --git a/src/lib/i18n/locales/en-US/translation.json b/src/lib/i18n/locales/en-US/translation.json index c3ec0ae47..6e54c3f10 100644 --- a/src/lib/i18n/locales/en-US/translation.json +++ b/src/lib/i18n/locales/en-US/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "", "Ciphers": "", "Citation": "", + "Citations": "", "Clear memory": "", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "", "Previous 7 days": "", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "", "URL": "", "URL Mode": "", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "", + "Vision": "", "Voice": "", "Voice Input": "", "Warning": "", diff --git a/src/lib/i18n/locales/es-ES/translation.json b/src/lib/i18n/locales/es-ES/translation.json index 9d0c8951b..439f6a6de 100644 --- a/src/lib/i18n/locales/es-ES/translation.json +++ b/src/lib/i18n/locales/es-ES/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Tamaño de los Fragmentos", "Ciphers": "Cifrado", "Citation": "Cita", + "Citations": "", "Clear memory": "Liberar memoria", "Clear Memory": "Liberar Memoria", "click here": "Pulsar aquí", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "Modelo acepta entradas de imágen", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "¡Modelo creado correctamente!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Detectada ruta del sistema al modelo. Para actualizar se requiere el nombre corto del modelo, no se puede continuar.", "Model Filtering": "Filtrado de modelos", @@ -927,6 +931,7 @@ "Prefix ID": "prefijo ID", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "El prefijo ID se utiliza para evitar conflictos con otras conexiones al añadir un prefijo a los IDs de modelo, dejar vacío para deshabilitarlo", "Presence Penalty": "Penalización de Presencia", + "Preview": "", "Previous 30 days": "30 días previos", "Previous 7 days": "7 días previos", "Private": "Privado", @@ -1247,6 +1252,7 @@ "Upload Progress": "Progreso de la Subida", "URL": "URL", "URL Mode": "Modo URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Utilizar '#' en el prompt para cargar e incluir tu conocimiento.", "Use Gravatar": "Usar Gravatar", "Use groups to group your users and assign permissions.": "Usar grupos para agrupar a usuarios y asignar permisos.", @@ -1276,6 +1282,7 @@ "View Replies": "Ver Respuestas", "View Result from **{{NAME}}**": "", "Visibility": "Visibilidad", + "Vision": "", "Voice": "Voz", "Voice Input": "Entrada de Voz", "Warning": "Aviso", diff --git a/src/lib/i18n/locales/et-EE/translation.json b/src/lib/i18n/locales/et-EE/translation.json index 72ecd8bba..e142903ae 100644 --- a/src/lib/i18n/locales/et-EE/translation.json +++ b/src/lib/i18n/locales/et-EE/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Tüki suurus", "Ciphers": "Šifrid", "Citation": "Viide", + "Citations": "", "Clear memory": "Tühjenda mälu", "Clear Memory": "Tühjenda mälu", "click here": "klõpsake siia", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "Mudel võtab vastu pilte sisendina", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Mudel edukalt loodud!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Tuvastati mudeli failisüsteemi tee. Uuendamiseks on vajalik mudeli lühinimi, ei saa jätkata.", "Model Filtering": "Mudeli filtreerimine", @@ -927,6 +931,7 @@ "Prefix ID": "Prefiksi ID", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiksi ID-d kasutatakse teiste ühendustega konfliktide vältimiseks, lisades mudeli ID-dele prefiksi - jätke tühjaks keelamiseks", "Presence Penalty": "Kohaloleku karistus", + "Preview": "", "Previous 30 days": "Eelmised 30 päeva", "Previous 7 days": "Eelmised 7 päeva", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Üleslaadimise progress", "URL": "URL", "URL Mode": "URL režiim", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Kasutage '#' vihjete sisendis, et laadida ja kaasata oma teadmised.", "Use Gravatar": "Kasuta Gravatari", "Use groups to group your users and assign permissions.": "Kasutage gruppe oma kasutajate grupeerimiseks ja õiguste määramiseks.", @@ -1276,6 +1282,7 @@ "View Replies": "Vaata vastuseid", "View Result from **{{NAME}}**": "", "Visibility": "Nähtavus", + "Vision": "", "Voice": "Hääl", "Voice Input": "Hääle sisend", "Warning": "Hoiatus", diff --git a/src/lib/i18n/locales/eu-ES/translation.json b/src/lib/i18n/locales/eu-ES/translation.json index f345f2d83..66ec5f4a6 100644 --- a/src/lib/i18n/locales/eu-ES/translation.json +++ b/src/lib/i18n/locales/eu-ES/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Zati Tamaina", "Ciphers": "Zifratuak", "Citation": "Aipamena", + "Citations": "", "Clear memory": "Garbitu memoria", "Clear Memory": "", "click here": "klikatu hemen", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "Modeloak irudi sarrerak onartzen ditu", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Modeloa ongi sortu da!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modeloaren fitxategi sistemaren bidea detektatu da. Modeloaren izen laburra behar da eguneratzeko, ezin da jarraitu.", "Model Filtering": "Modelo iragazketa", @@ -927,6 +931,7 @@ "Prefix ID": "Aurrizki ID", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Aurrizki IDa erabiltzen da beste konexioekin gatazkak saihesteko modelo IDei aurrizki bat gehituz - utzi hutsik desgaitzeko", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "Aurreko 30 egunak", "Previous 7 days": "Aurreko 7 egunak", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Kargaren aurrerapena", "URL": "URLa", "URL Mode": "URL modua", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Erabili '#' prompt sarreran zure ezagutza kargatu eta sartzeko.", "Use Gravatar": "Erabili Gravatar", "Use groups to group your users and assign permissions.": "Erabili taldeak zure erabiltzaileak taldekatu eta baimenak esleitzeko.", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "Ikusgarritasuna", + "Vision": "", "Voice": "Ahotsa", "Voice Input": "Ahots sarrera", "Warning": "Abisua", diff --git a/src/lib/i18n/locales/fa-IR/translation.json b/src/lib/i18n/locales/fa-IR/translation.json index 934ea68cf..496403633 100644 --- a/src/lib/i18n/locales/fa-IR/translation.json +++ b/src/lib/i18n/locales/fa-IR/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "اندازه تکه", "Ciphers": "رمزها", "Citation": "استناد", + "Citations": "", "Clear memory": "پاک کردن حافظه", "Clear Memory": "پاک کردن حافظه", "click here": "اینجا کلیک کنید", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "مدل {{name}} اکنون مخفی است", "Model {{name}} is now visible": "مدل {{name}} اکنون قابل مشاهده است", "Model accepts image inputs": "مدل ورودی تصویر را می\u200cپذیرد", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "مدل با موفقیت ایجاد شد!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "مسیر فایل سیستم مدل یافت شد. برای بروزرسانی نیاز است نام کوتاه مدل وجود داشته باشد.", "Model Filtering": "فیلتر کردن مدل", @@ -927,6 +931,7 @@ "Prefix ID": "شناسه پیشوند", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "شناسه پیشوند برای جلوگیری از تداخل با سایر اتصالات با افزودن پیشوند به شناسه\u200cهای مدل استفاده می\u200cشود - برای غیرفعال کردن خالی بگذارید", "Presence Penalty": "جریمه حضور", + "Preview": "", "Previous 30 days": "30 روز قبل", "Previous 7 days": "7 روز قبل", "Private": "خصوصی", @@ -1247,6 +1252,7 @@ "Upload Progress": "پیشرفت آپلود", "URL": "آدرس اینترنتی", "URL Mode": "حالت URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "از '#' در ورودی پرامپت برای بارگیری و شامل کردن دانش خود استفاده کنید.", "Use Gravatar": "استفاده از گراواتار", "Use groups to group your users and assign permissions.": "از گروه\u200cها برای گروه\u200cبندی کاربران و تخصیص مجوزها استفاده کنید.", @@ -1276,6 +1282,7 @@ "View Replies": "مشاهده پاسخ\u200cها", "View Result from **{{NAME}}**": "مشاهده نتیجه از **{{NAME}}**", "Visibility": "قابلیت مشاهده", + "Vision": "", "Voice": "صوت", "Voice Input": "ورودی صوتی", "Warning": "هشدار", diff --git a/src/lib/i18n/locales/fi-FI/translation.json b/src/lib/i18n/locales/fi-FI/translation.json index cac937d6c..a2744f779 100644 --- a/src/lib/i18n/locales/fi-FI/translation.json +++ b/src/lib/i18n/locales/fi-FI/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Osien koko", "Ciphers": "Salausalgoritmi", "Citation": "Lähdeviite", + "Citations": "", "Clear memory": "Tyhjennä muisti", "Clear Memory": "Tyhjennä Muisti", "click here": "klikkaa tästä", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "Malli {{name}} on nyt piilotettu", "Model {{name}} is now visible": "Malli {{name}} on nyt näkyvissä", "Model accepts image inputs": "Malli hyväksyy kuvasyötteitä", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Malli luotu onnistuneesti!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Mallin tiedostojärjestelmäpolku havaittu. Mallin lyhytnimi vaaditaan päivitykseen, ei voida jatkaa.", "Model Filtering": "Mallin suodatus", @@ -927,6 +931,7 @@ "Prefix ID": "Etuliite-ID", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Etuliite-ID:tä käytetään välttämään ristiriidat muiden yhteyksien kanssa lisäämällä etuliite mallitunnuksiin - jätä tyhjäksi, jos haluat ottaa sen pois käytöstä", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "Edelliset 30 päivää", "Previous 7 days": "Edelliset 7 päivää", "Private": "Yksityinen", @@ -1247,6 +1252,7 @@ "Upload Progress": "Latauksen edistyminen", "URL": "URL", "URL Mode": "URL-tila", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Käytä '#' -merkkiä kehotekenttään ladataksesi ja sisällyttääksesi tietämystäsi.", "Use Gravatar": "Käytä Gravataria", "Use groups to group your users and assign permissions.": "Käytä ryhmiä jäsentääksesi käyttäjiä ja antaaksesi käyttöoikeuksia.", @@ -1276,6 +1282,7 @@ "View Replies": "Näytä vastaukset", "View Result from **{{NAME}}**": "Näytä **{{NAME}}** tulokset", "Visibility": "Näkyvyys", + "Vision": "", "Voice": "Ääni", "Voice Input": "Äänitulolaitteen käyttö", "Warning": "Varoitus", diff --git a/src/lib/i18n/locales/fr-CA/translation.json b/src/lib/i18n/locales/fr-CA/translation.json index ee9cc080a..765586d84 100644 --- a/src/lib/i18n/locales/fr-CA/translation.json +++ b/src/lib/i18n/locales/fr-CA/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Taille de bloc", "Ciphers": "", "Citation": "Citation", + "Citations": "", "Clear memory": "Libérer la mémoire", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Le modèle a été créé avec succès !", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Chemin du système de fichiers de modèle détecté. Le nom court du modèle est requis pour la mise à jour, l'opération ne peut pas être poursuivie.", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "30 derniers jours", "Previous 7 days": "7 derniers jours", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Progression de l'envoi", "URL": "", "URL Mode": "Mode d'URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "Utilisez Gravatar", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "", + "Vision": "", "Voice": "Voix", "Voice Input": "", "Warning": "Avertissement !", diff --git a/src/lib/i18n/locales/fr-FR/translation.json b/src/lib/i18n/locales/fr-FR/translation.json index 884107b3c..1bf3e346e 100644 --- a/src/lib/i18n/locales/fr-FR/translation.json +++ b/src/lib/i18n/locales/fr-FR/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Taille des chunks", "Ciphers": "Chiffres", "Citation": "Citation", + "Citations": "", "Clear memory": "Effacer la mémoire", "Clear Memory": "Effacer la mémoire", "click here": "cliquez ici", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "Le modèle {{name}} est maintenant masqué", "Model {{name}} is now visible": "Le modèle {{name}} est maintenant visible", "Model accepts image inputs": "Le modèle accepte les images en entrée", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Le modèle a été créé avec succès !", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Chemin du système de fichiers de modèle détecté. Le nom court du modèle est requis pour la mise à jour, l'opération ne peut pas être poursuivie.", "Model Filtering": "Filtrage de modèle", @@ -927,6 +931,7 @@ "Prefix ID": "ID de préfixe", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Le préfixe ID est utilisé pour éviter les conflits avec d'autres connexions en ajoutant un préfixe aux ID de modèle - laissez vide pour désactiver", "Presence Penalty": "Pénalité de présence", + "Preview": "", "Previous 30 days": "30 derniers jours", "Previous 7 days": "7 derniers jours", "Private": "Privé", @@ -1247,6 +1252,7 @@ "Upload Progress": "Progression de l'envoi", "URL": "URL", "URL Mode": "Mode d'URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Utilisez '#' dans la zone de saisie du prompt pour charger et inclure vos connaissances.", "Use Gravatar": "Utiliser Gravatar", "Use groups to group your users and assign permissions.": "Utilisez des groupes pour regrouper vos utilisateurs et attribuer des permissions.", @@ -1276,6 +1282,7 @@ "View Replies": "Voir les réponses", "View Result from **{{NAME}}**": "Voir le résultat de **{{NAME}}**", "Visibility": "Visibilité", + "Vision": "", "Voice": "Voix", "Voice Input": "Saisie vocale", "Warning": "Avertissement", diff --git a/src/lib/i18n/locales/he-IL/translation.json b/src/lib/i18n/locales/he-IL/translation.json index 06c0f253a..85abce146 100644 --- a/src/lib/i18n/locales/he-IL/translation.json +++ b/src/lib/i18n/locales/he-IL/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "גודל נתונים", "Ciphers": "", "Citation": "ציטוט", + "Citations": "", "Clear memory": "", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "נתיב מערכת הקבצים של המודל זוהה. נדרש שם קצר של המודל לעדכון, לא ניתן להמשיך.", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "30 הימים הקודמים", "Previous 7 days": "7 הימים הקודמים", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "תקדמות העלאה", "URL": "", "URL Mode": "מצב URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "שימוש ב Gravatar", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "", + "Vision": "", "Voice": "", "Voice Input": "", "Warning": "אזהרה", diff --git a/src/lib/i18n/locales/hi-IN/translation.json b/src/lib/i18n/locales/hi-IN/translation.json index 7e684e22e..5bcf7a580 100644 --- a/src/lib/i18n/locales/hi-IN/translation.json +++ b/src/lib/i18n/locales/hi-IN/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "चंक आकार", "Ciphers": "", "Citation": "उद्धरण", + "Citations": "", "Clear memory": "", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "मॉडल फ़ाइल सिस्टम पथ का पता चला. अद्यतन के लिए मॉडल संक्षिप्त नाम आवश्यक है, जारी नहीं रखा जा सकता।", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "पिछले 30 दिन", "Previous 7 days": "पिछले 7 दिन", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "प्रगति अपलोड करें", "URL": "", "URL Mode": "URL मोड", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "Gravatar का प्रयोग करें", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "", + "Vision": "", "Voice": "", "Voice Input": "", "Warning": "चेतावनी", diff --git a/src/lib/i18n/locales/hr-HR/translation.json b/src/lib/i18n/locales/hr-HR/translation.json index 2734d0026..2354179e0 100644 --- a/src/lib/i18n/locales/hr-HR/translation.json +++ b/src/lib/i18n/locales/hr-HR/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Veličina dijela", "Ciphers": "", "Citation": "Citiranje", + "Citations": "", "Clear memory": "Očisti memoriju", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Otkriven put datotečnog sustava modela. Kratko ime modela je potrebno za ažuriranje, nije moguće nastaviti.", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "Prethodnih 30 dana", "Previous 7 days": "Prethodnih 7 dana", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Napredak učitavanja", "URL": "", "URL Mode": "URL način", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "Koristi Gravatar", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "", + "Vision": "", "Voice": "", "Voice Input": "", "Warning": "Upozorenje", diff --git a/src/lib/i18n/locales/hu-HU/translation.json b/src/lib/i18n/locales/hu-HU/translation.json index c76a0c18c..b8c852634 100644 --- a/src/lib/i18n/locales/hu-HU/translation.json +++ b/src/lib/i18n/locales/hu-HU/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Darab méret", "Ciphers": "Titkosítási algoritmusok", "Citation": "Idézet", + "Citations": "", "Clear memory": "Memória törlése", "Clear Memory": "Memória törlése", "click here": "kattints ide", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "A {{name}} modell most elrejtve", "Model {{name}} is now visible": "A {{name}} modell most látható", "Model accepts image inputs": "A modell elfogad képbemenetet", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Modell sikeresen létrehozva!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modell fájlrendszer útvonal észlelve. A modell rövid neve szükséges a frissítéshez, nem folytatható.", "Model Filtering": "Modellszűrés", @@ -927,6 +931,7 @@ "Prefix ID": "Előtag azonosító", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Az előtag azonosító a modell azonosítókhoz hozzáadott előtag segítségével elkerüli az egyéb kapcsolatokkal való ütközéseket - hagyja üresen a letiltáshoz", "Presence Penalty": "Jelenléti büntetés", + "Preview": "", "Previous 30 days": "Előző 30 nap", "Previous 7 days": "Előző 7 nap", "Private": "Privát", @@ -1247,6 +1252,7 @@ "Upload Progress": "Feltöltési folyamat", "URL": "URL", "URL Mode": "URL mód", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Használja a '#' karaktert a prompt bevitelénél a tudásbázis betöltéséhez és felhasználásához.", "Use Gravatar": "Gravatar használata", "Use groups to group your users and assign permissions.": "Használj csoportokat a felhasználók csoportosításához és engedélyek hozzárendeléséhez.", @@ -1276,6 +1282,7 @@ "View Replies": "Válaszok megtekintése", "View Result from **{{NAME}}**": "Eredmény megtekintése innen: **{{NAME}}**", "Visibility": "Láthatóság", + "Vision": "", "Voice": "Hang", "Voice Input": "Hangbevitel", "Warning": "Figyelmeztetés", diff --git a/src/lib/i18n/locales/id-ID/translation.json b/src/lib/i18n/locales/id-ID/translation.json index 9a3e08de2..4ee69f6cf 100644 --- a/src/lib/i18n/locales/id-ID/translation.json +++ b/src/lib/i18n/locales/id-ID/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Ukuran Potongan", "Ciphers": "", "Citation": "Kutipan", + "Citations": "", "Clear memory": "Menghapus memori", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Model berhasil dibuat!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Jalur sistem berkas model terdeteksi. Nama pendek model diperlukan untuk pembaruan, tidak dapat dilanjutkan.", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "30 hari sebelumnya", "Previous 7 days": "7 hari sebelumnya", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Kemajuan Unggah", "URL": "", "URL Mode": "Mode URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "Gunakan Gravatar", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "", + "Vision": "", "Voice": "Suara", "Voice Input": "", "Warning": "Peringatan", diff --git a/src/lib/i18n/locales/ie-GA/translation.json b/src/lib/i18n/locales/ie-GA/translation.json index 2f7e6f0d4..1f79ffc40 100644 --- a/src/lib/i18n/locales/ie-GA/translation.json +++ b/src/lib/i18n/locales/ie-GA/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Méid an Píosa", "Ciphers": "Cipéirí", "Citation": "Lua", + "Citations": "", "Clear memory": "Cuimhne ghlan", "Clear Memory": "Glan Cuimhne", "click here": "cliceáil anseo", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "Tá múnla {{name}} i bhfolach anois", "Model {{name}} is now visible": "Tá múnla {{name}} le feiceáil anois", "Model accepts image inputs": "Glacann múnla le hionchuir", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Cruthaíodh múnla go rathúil!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Fuarthas cosán an múnla. Teastaíonn ainm gearr an mhúnla le haghaidh nuashonraithe, ní féidir leanúint ar aghaidh.", "Model Filtering": "Scagadh Múnla", @@ -927,6 +931,7 @@ "Prefix ID": "Aitheantas Réimír", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Úsáidtear Aitheantas Réimír chun coinbhleachtaí le naisc eile a sheachaint trí réimír a chur le haitheantas na samhla - fág folamh le díchumasú", "Presence Penalty": "Pionós Láithreacht", + "Preview": "", "Previous 30 days": "30 lá roimhe seo", "Previous 7 days": "7 lá roimhe seo", "Private": "Príobháideach", @@ -1247,6 +1252,7 @@ "Upload Progress": "Dul Chun Cinn an Uaslódála", "URL": "URL", "URL Mode": "Mód URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Úsáid '#' san ionchur leid chun do chuid eolais a lódáil agus a chur san áireamh.", "Use Gravatar": "Úsáid Gravatar", "Use groups to group your users and assign permissions.": "Úsáid grúpaí chun d'úsáideoirí a ghrúpáil agus ceadanna a shannadh", @@ -1276,6 +1282,7 @@ "View Replies": "Féach ar Fhreagraí", "View Result from **{{NAME}}**": "Féach ar Thoradh ó **{{NAME}}**", "Visibility": "Infheictheacht", + "Vision": "", "Voice": "Guth", "Voice Input": "Ionchur Gutha", "Warning": "Rabhadh", diff --git a/src/lib/i18n/locales/it-IT/translation.json b/src/lib/i18n/locales/it-IT/translation.json index 3411b4368..1e85a0504 100644 --- a/src/lib/i18n/locales/it-IT/translation.json +++ b/src/lib/i18n/locales/it-IT/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Dimensione chunk", "Ciphers": "Cifrari", "Citation": "Citazione", + "Citations": "", "Clear memory": "Cancella memoria", "Clear Memory": "Cancella memoria", "click here": "clicca qui", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "Il modello {{name}} è ora nascosto", "Model {{name}} is now visible": "Il modello {{name}} è ora visibile", "Model accepts image inputs": "Il modello accetta input immagine", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Modello creato con successo!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Percorso del filesystem del modello rilevato. Il nome breve del modello è richiesto per l'aggiornamento, impossibile continuare.", "Model Filtering": "Filtraggio modelli", @@ -927,6 +931,7 @@ "Prefix ID": "ID prefisso", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "L'ID prefisso viene utilizzato per evitare conflitti con altre connessioni aggiungendo un prefisso agli ID dei modelli - lasciare vuoto per disabilitare", "Presence Penalty": "Penalità di presenza", + "Preview": "", "Previous 30 days": "Ultimi 30 giorni", "Previous 7 days": "Ultimi 7 giorni", "Private": "Privato", @@ -1247,6 +1252,7 @@ "Upload Progress": "Avanzamento caricamento", "URL": "", "URL Mode": "Modalità URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Usa '#' nell'input del prompt per caricare e includere la tua conoscenza.", "Use Gravatar": "Usa Gravatar", "Use groups to group your users and assign permissions.": "Usa i gruppi per raggruppare i tuoi utenti e assegnare permessi.", @@ -1276,6 +1282,7 @@ "View Replies": "Visualizza risposte", "View Result from **{{NAME}}**": "Visualizza risultato da **{{NAME}}**", "Visibility": "Visibilità", + "Vision": "", "Voice": "Voce", "Voice Input": "Input vocale", "Warning": "Attenzione", diff --git a/src/lib/i18n/locales/ja-JP/translation.json b/src/lib/i18n/locales/ja-JP/translation.json index bb90c884c..35c05b427 100644 --- a/src/lib/i18n/locales/ja-JP/translation.json +++ b/src/lib/i18n/locales/ja-JP/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "チャンクサイズ", "Ciphers": "", "Citation": "引用文", + "Citations": "", "Clear memory": "メモリをクリア", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "モデル {{name}} は非表示になりました。", "Model {{name}} is now visible": "モデル {{name}} は表示されました。", "Model accepts image inputs": "モデルは画像入力を受け入れます", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "モデルが正常に作成されました!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "モデルファイルシステムパスが検出されました。モデルの短縮名が必要です。更新できません。", "Model Filtering": "モデルフィルタリング", @@ -927,6 +931,7 @@ "Prefix ID": "Prefix ID", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID はモデル ID に接頭辞を追加することで、他の接続との競合を避けるために使用されます - 空の場合は無効にします", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "前の30日間", "Previous 7 days": "前の7日間", "Private": "プライベート", @@ -1247,6 +1252,7 @@ "Upload Progress": "アップロードの進行状況", "URL": "", "URL Mode": "URL モード", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "#を入力するとナレッジベースを参照することが出来ます。", "Use Gravatar": "Gravatar を使用する", "Use groups to group your users and assign permissions.": "グループを使用してユーザーをグループ化し、権限を割り当てます。", @@ -1276,6 +1282,7 @@ "View Replies": "リプライを表示", "View Result from **{{NAME}}**": "**{{NAME}}**の結果を表示", "Visibility": "", + "Vision": "", "Voice": "ボイス", "Voice Input": "音声入力", "Warning": "警告", diff --git a/src/lib/i18n/locales/ka-GE/translation.json b/src/lib/i18n/locales/ka-GE/translation.json index 51bc05f32..a1d3f9978 100644 --- a/src/lib/i18n/locales/ka-GE/translation.json +++ b/src/lib/i18n/locales/ka-GE/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "ფრაგმენტის ზომა", "Ciphers": "", "Citation": "ციტატა", + "Citations": "", "Clear memory": "", "Clear Memory": "", "click here": "აქ დააწკაპუნეთ", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "აღმოჩენილია მოდელის ფაილური სისტემის ბილიკი. განახლებისთვის საჭიროა მოდელის მოკლე სახელი, გაგრძელება შეუძლებელია.", "Model Filtering": "მოდელების გაფილტვრა", @@ -927,6 +931,7 @@ "Prefix ID": "პრეფიქსის ", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "წინა 30 დღე", "Previous 7 days": "წინა 7 დღე", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "ატვირთვის მიმდინარეობა", "URL": "URL", "URL Mode": "URL რეჟიმი", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "Gravatar-ის გამოყენება", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "ხილვადობა", + "Vision": "", "Voice": "ხმა", "Voice Input": "", "Warning": "გაფრთხილება", diff --git a/src/lib/i18n/locales/ko-KR/translation.json b/src/lib/i18n/locales/ko-KR/translation.json index ff3edeb13..6a789b583 100644 --- a/src/lib/i18n/locales/ko-KR/translation.json +++ b/src/lib/i18n/locales/ko-KR/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Chunk 크기", "Ciphers": "암호", "Citation": "인용", + "Citations": "", "Clear memory": "메모리 초기화", "Clear Memory": "메모리 지우기", "click here": "여기를 클릭하세요", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "모델 {{name}}은/는 이제 숨겨졌습니다.", "Model {{name}} is now visible": "모델 {{name}}은/는 이제 볼 수 있습니다.", "Model accepts image inputs": "모델이 이미지 입력을 허용합니다", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "성공적으로 모델이 생성되었습니다", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "모델 파일 시스템 경로가 감지되었습니다. 업데이트하려면 모델 단축 이름이 필요하며 계속할 수 없습니다.", "Model Filtering": "모델 필터링", @@ -927,6 +931,7 @@ "Prefix ID": "Prefix ID", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID는 모델 ID에 접두사를 추가하여 다른 연결과의 충돌을 방지하는 데 사용됩니다. - 비활성화하려면 비워 둡니다.", "Presence Penalty": "Presence Penalty", + "Preview": "", "Previous 30 days": "이전 30일", "Previous 7 days": "이전 7일", "Private": "비공개", @@ -1247,6 +1252,7 @@ "Upload Progress": "업로드 진행 상황", "URL": "URL", "URL Mode": "URL 모드", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "프롬프트 입력에서 '#'를 사용하여 지식 기반을 불러오고 포함하세요.", "Use Gravatar": "Gravatar 사용", "Use groups to group your users and assign permissions.": "그룹을 사용하여 사용자를 그룹화하고 권한을 할당하세요.", @@ -1276,6 +1282,7 @@ "View Replies": "답글 보기", "View Result from **{{NAME}}**": "**{{NAME}}**의 결과 보기", "Visibility": "공개 범위", + "Vision": "", "Voice": "음성", "Voice Input": "음성 입력", "Warning": "경고", diff --git a/src/lib/i18n/locales/lt-LT/translation.json b/src/lib/i18n/locales/lt-LT/translation.json index f26c49a84..8ea693e4f 100644 --- a/src/lib/i18n/locales/lt-LT/translation.json +++ b/src/lib/i18n/locales/lt-LT/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Blokų dydis", "Ciphers": "", "Citation": "Citata", + "Citations": "", "Clear memory": "Ištrinti atmintį", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Modelis sukurtas sėkmingai", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modelio failų sistemos kelias aptiktas. Reikalingas trumpas modelio pavadinimas atnaujinimui.", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "Paskutinės 30 dienų", "Previous 7 days": "Paskutinės 7 dienos", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Įkėlimo progresas", "URL": "", "URL Mode": "URL režimas", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "Naudoti Gravatar", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "", + "Vision": "", "Voice": "Balsas", "Voice Input": "", "Warning": "Perspėjimas", diff --git a/src/lib/i18n/locales/ms-MY/translation.json b/src/lib/i18n/locales/ms-MY/translation.json index 25a9d7d91..3c65bbe6f 100644 --- a/src/lib/i18n/locales/ms-MY/translation.json +++ b/src/lib/i18n/locales/ms-MY/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Saiz 'Chunk'", "Ciphers": "", "Citation": "Petikan", + "Citations": "", "Clear memory": "Kosongkan memori", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Model berjaya dibuat!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Laluan sistem fail model dikesan. Nama pendek model diperlukan untuk kemas kini, tidak boleh diteruskan.", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "30 hari sebelumnya", "Previous 7 days": "7 hari sebelumnya", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Kemajuan Muatnaik", "URL": "", "URL Mode": "Mod URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "Gunakan Gravatar", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "", + "Vision": "", "Voice": "Suara", "Voice Input": "", "Warning": "Amaran", diff --git a/src/lib/i18n/locales/nb-NO/translation.json b/src/lib/i18n/locales/nb-NO/translation.json index 526eba9c3..3fb25f6d1 100644 --- a/src/lib/i18n/locales/nb-NO/translation.json +++ b/src/lib/i18n/locales/nb-NO/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Chunk-størrelse", "Ciphers": "Chiffer", "Citation": "Kildehenvisning", + "Citations": "", "Clear memory": "Tøm minnet", "Clear Memory": "", "click here": "Klikk her", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "Modellen godtar bildeinndata", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Modellen er opprettet!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modellfilsystembane oppdaget. Kan ikke fortsette fordi modellens kortnavn er påkrevd for oppdatering.", "Model Filtering": "Filtrering av modeller", @@ -927,6 +931,7 @@ "Prefix ID": "Prefiks-ID", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiks-ID brukes for å unngå konflikter med andre tilkoblinger ved å legge til et prefiks til modell-ID-ene. La det stå tomt for å deaktivere", "Presence Penalty": "Straff for opptreden", + "Preview": "", "Previous 30 days": "Siste 30 dager", "Previous 7 days": "Siste 7 dager", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Opplastingsfremdrift", "URL": "URL", "URL Mode": "URL-modus", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Bruk # i ledetekstens inntastingsfelt for å laste inn og inkludere kunnskapene dine.", "Use Gravatar": "Bruk Gravatar", "Use groups to group your users and assign permissions.": "Bruk grupper til å samle brukere og tildele tillatelser.", @@ -1276,6 +1282,7 @@ "View Replies": "Vis svar", "View Result from **{{NAME}}**": "", "Visibility": "Synlighet", + "Vision": "", "Voice": "Stemme", "Voice Input": "Taleinndata", "Warning": "Advarsel", diff --git a/src/lib/i18n/locales/nl-NL/translation.json b/src/lib/i18n/locales/nl-NL/translation.json index cf8b8440a..dd2dcf9a4 100644 --- a/src/lib/i18n/locales/nl-NL/translation.json +++ b/src/lib/i18n/locales/nl-NL/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Chunkgrootte", "Ciphers": "Versleutelingen", "Citation": "Citaat", + "Citations": "", "Clear memory": "Geheugen wissen", "Clear Memory": "Geheugen wissen", "click here": "klik hier", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "Model {{naam}} is nu verborgen", "Model {{name}} is now visible": "Model {{naam}} is nu zichtbaar", "Model accepts image inputs": "Model accepteerd afbeeldingsinvoer", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Model succesvol gecreëerd", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model filesystem path gedetecteerd. Model shortname is vereist voor update, kan niet doorgaan.", "Model Filtering": "Modelfiltratie", @@ -927,6 +931,7 @@ "Prefix ID": "Voorvoegsel-ID", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Voorvoegsel-ID wordt gebruikt om conflicten met andere verbindingen te vermijden door een voorvoegsel aan het model-ID toe te voegen - laat leeg om uit te schakelen", "Presence Penalty": "Aanwezigheidsstraf", + "Preview": "", "Previous 30 days": "Afgelopen 30 dagen", "Previous 7 days": "Afgelopen 7 dagen", "Private": "Privé", @@ -1247,6 +1252,7 @@ "Upload Progress": "Upload Voortgang", "URL": "URL", "URL Mode": "URL-modus", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Gebruik '#' in de promptinvoer om je kennis te laden en op te nemen.", "Use Gravatar": "Gebruik Gravatar", "Use groups to group your users and assign permissions.": "Gebruik groepen om gebruikers te groeperen en rechten aan te wijzen", @@ -1276,6 +1282,7 @@ "View Replies": "Bekijke resultaten", "View Result from **{{NAME}}**": "", "Visibility": "Zichtbaarheid", + "Vision": "", "Voice": "Stem", "Voice Input": "Steminvoer", "Warning": "Waarschuwing", diff --git a/src/lib/i18n/locales/pa-IN/translation.json b/src/lib/i18n/locales/pa-IN/translation.json index e57e5c5f3..3e02f0d6b 100644 --- a/src/lib/i18n/locales/pa-IN/translation.json +++ b/src/lib/i18n/locales/pa-IN/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "ਚੰਕ ਆਕਾਰ", "Ciphers": "", "Citation": "ਹਵਾਲਾ", + "Citations": "", "Clear memory": "", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "ਮਾਡਲ ਫਾਈਲਸਿਸਟਮ ਪੱਥ ਪਾਇਆ ਗਿਆ। ਅੱਪਡੇਟ ਲਈ ਮਾਡਲ ਸ਼ੌਰਟਨੇਮ ਦੀ ਲੋੜ ਹੈ, ਜਾਰੀ ਨਹੀਂ ਰੱਖ ਸਕਦੇ।", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "ਪਿਛਲੇ 30 ਦਿਨ", "Previous 7 days": "ਪਿਛਲੇ 7 ਦਿਨ", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "ਅਪਲੋਡ ਪ੍ਰਗਤੀ", "URL": "", "URL Mode": "URL ਮੋਡ", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "ਗ੍ਰਾਵਾਟਾਰ ਵਰਤੋ", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "", + "Vision": "", "Voice": "", "Voice Input": "", "Warning": "ਚੇਤਾਵਨੀ", diff --git a/src/lib/i18n/locales/pl-PL/translation.json b/src/lib/i18n/locales/pl-PL/translation.json index 79fc444ee..91268479d 100644 --- a/src/lib/i18n/locales/pl-PL/translation.json +++ b/src/lib/i18n/locales/pl-PL/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Rozmiar bloku", "Ciphers": "Szyfry", "Citation": "Cytat", + "Citations": "", "Clear memory": "Wyczyść pamięć", "Clear Memory": "Wyczyść pamięć", "click here": "kliknij tutaj", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "Model przyjmuje wejścia obrazowe", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Model utworzony pomyślnie!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Wykryto ścieżkę systemu plików modelu. Podanie krótkiej nazwy modelu jest wymagane do aktualizacji, nie można kontynuować.", "Model Filtering": "Filtracja modeli", @@ -927,6 +931,7 @@ "Prefix ID": "Identyfikator prefiksu", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID prefiksu jest używane do unikania konfliktów z innymi połączeniami poprzez dodanie prefiksu do ID modelu - pozostaw puste, aby wyłączyć", "Presence Penalty": "Kara za obecność", + "Preview": "", "Previous 30 days": "Ostatnie 30 dni", "Previous 7 days": "Ostatnie 7 dni", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Postęp przesyłania plików", "URL": "Adres URL", "URL Mode": "Tryb URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Użyj '#' w polu wprowadzania zapytania, aby załadować i uwzględnić swoją wiedzę.", "Use Gravatar": "Użyj Gravatara", "Use groups to group your users and assign permissions.": "Wykorzystaj grupy do grupowania użytkowników i przypisywania uprawnień.", @@ -1276,6 +1282,7 @@ "View Replies": "Wyświetl odpowiedzi", "View Result from **{{NAME}}**": "", "Visibility": "Widoczność", + "Vision": "", "Voice": "Głos", "Voice Input": "Wprowadzanie głosowe", "Warning": "Uwaga", diff --git a/src/lib/i18n/locales/pt-BR/translation.json b/src/lib/i18n/locales/pt-BR/translation.json index a7c3a5f0c..8de71b265 100644 --- a/src/lib/i18n/locales/pt-BR/translation.json +++ b/src/lib/i18n/locales/pt-BR/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Tamanho do Chunk", "Ciphers": "Cifras", "Citation": "Citação", + "Citations": "", "Clear memory": "Limpar memória", "Clear Memory": "", "click here": "Clique aqui", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "Modelo aceita entradas de imagens", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Modelo criado com sucesso!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Caminho do sistema de arquivos do modelo detectado. Nome curto do modelo é necessário para atualização, não é possível continuar.", "Model Filtering": "Filtrando modelo", @@ -927,6 +931,7 @@ "Prefix ID": "Prefixo ID", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "O ID de prefixo é utilizado para evitar conflitos com outras conexões, adicionando um prefixo aos IDs dos modelos - deixe em branco para desativar.", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "Últimos 30 dias", "Previous 7 days": "Últimos 7 dias", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Progresso do Upload", "URL": "", "URL Mode": "Modo URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Usar '#' no prompt para carregar e incluir seus conhecimentos.", "Use Gravatar": "Usar Gravatar", "Use groups to group your users and assign permissions.": "Use grupos para agrupar seus usuários e atribuir permissões.", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "Visibilidade", + "Vision": "", "Voice": "Voz", "Voice Input": "Entrada de voz", "Warning": "Aviso", diff --git a/src/lib/i18n/locales/pt-PT/translation.json b/src/lib/i18n/locales/pt-PT/translation.json index 29607a0a5..e21f0baa4 100644 --- a/src/lib/i18n/locales/pt-PT/translation.json +++ b/src/lib/i18n/locales/pt-PT/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Tamanho do Fragmento", "Ciphers": "", "Citation": "Citação", + "Citations": "", "Clear memory": "Limpar memória", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Dtectado caminho do sistema de ficheiros do modelo. É necessário o nome curto do modelo para atualização, não é possível continuar.", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "Últimos 30 dias", "Previous 7 days": "Últimos 7 dias", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Progresso do Carregamento", "URL": "", "URL Mode": "Modo de URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "Usar Gravatar", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "", + "Vision": "", "Voice": "", "Voice Input": "", "Warning": "Aviso", diff --git a/src/lib/i18n/locales/ro-RO/translation.json b/src/lib/i18n/locales/ro-RO/translation.json index b5df5a998..27b2e66e2 100644 --- a/src/lib/i18n/locales/ro-RO/translation.json +++ b/src/lib/i18n/locales/ro-RO/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Dimensiune Bloc", "Ciphers": "Cifruri", "Citation": "Citație", + "Citations": "", "Clear memory": "Șterge memoria", "Clear Memory": "", "click here": "apasă aici.", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "Modelul acceptă imagini ca intrări.", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Modelul a fost creat cu succes!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Calea sistemului de fișiere al modelului detectată. Este necesar numele scurt al modelului pentru actualizare, nu se poate continua.", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "Ultimele 30 de zile", "Previous 7 days": "Ultimele 7 zile", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Progres Încărcare", "URL": "", "URL Mode": "Mod URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Folosește '#' în prompt pentru a încărca și include cunoștințele tale.", "Use Gravatar": "Folosește Gravatar", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "Vezi răspunsurile", "View Result from **{{NAME}}**": "", "Visibility": "Vizibilitate", + "Vision": "", "Voice": "Voce", "Voice Input": "Intrare vocală", "Warning": "Avertisment", diff --git a/src/lib/i18n/locales/ru-RU/translation.json b/src/lib/i18n/locales/ru-RU/translation.json index c0fb18203..370b9959d 100644 --- a/src/lib/i18n/locales/ru-RU/translation.json +++ b/src/lib/i18n/locales/ru-RU/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Размер фрагмента", "Ciphers": "Шифры", "Citation": "Цитирование", + "Citations": "", "Clear memory": "Очистить воспоминания", "Clear Memory": "Очисить память", "click here": "кликните сюда", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "Модель {{name}} теперь скрыта", "Model {{name}} is now visible": "Модель {{name}} теперь видна", "Model accepts image inputs": "Модель принимает изображения как входные данные", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Модель успешно создана!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Обнаружен путь к файловой системе модели. Для обновления требуется краткое имя модели, не удается продолжить.", "Model Filtering": "Фильтрация Моделей", @@ -927,6 +931,7 @@ "Prefix ID": "ID префикса", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID префикса используется для предотвращения конфликтов с другими подключениями путем добавления префикса к идентификаторам моделей - оставьте пустым, чтобы отключить", "Presence Penalty": "Штраф за присутствие", + "Preview": "", "Previous 30 days": "Предыдущие 30 дней", "Previous 7 days": "Предыдущие 7 дней", "Private": "Частное", @@ -1247,6 +1252,7 @@ "Upload Progress": "Прогресс загрузки", "URL": "", "URL Mode": "Режим URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Используйте «#» в строке ввода, чтобы загрузить и включить свои знания.", "Use Gravatar": "Использовать Gravatar", "Use groups to group your users and assign permissions.": "Используйте группы, чтобы группировать пользователей и назначать разрешения.", @@ -1276,6 +1282,7 @@ "View Replies": "С ответами", "View Result from **{{NAME}}**": "Просмотр результата от **{{NAME}}**", "Visibility": "Видимость", + "Vision": "", "Voice": "Голос", "Voice Input": "Ввод голоса", "Warning": "Предупреждение", diff --git a/src/lib/i18n/locales/sk-SK/translation.json b/src/lib/i18n/locales/sk-SK/translation.json index 5008324f4..2769c2aa5 100644 --- a/src/lib/i18n/locales/sk-SK/translation.json +++ b/src/lib/i18n/locales/sk-SK/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "", "Ciphers": "", "Citation": "Odkaz", + "Citations": "", "Clear memory": "Vymazať pamäť", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "Model prijíma vstupy vo forme obrázkov", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Model bol úspešne vytvorený!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Zistená cesta v súborovom systéme. Je vyžadovaný krátky názov modelu pre aktualizáciu, nemožno pokračovať.", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "Predchádzajúcich 30 dní", "Previous 7 days": "Predchádzajúcich 7 dní", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Priebeh nahrávania", "URL": "", "URL Mode": "Režim URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Použite '#' vo vstupe promptu na načítanie a zahrnutie vašich vedomostí.", "Use Gravatar": "Použiť Gravatar", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "Viditeľnosť", + "Vision": "", "Voice": "Hlas", "Voice Input": "Hlasový vstup", "Warning": "Varovanie", diff --git a/src/lib/i18n/locales/sr-RS/translation.json b/src/lib/i18n/locales/sr-RS/translation.json index 790e0ba5d..8d268aaee 100644 --- a/src/lib/i18n/locales/sr-RS/translation.json +++ b/src/lib/i18n/locales/sr-RS/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Величина дела", "Ciphers": "Шифре", "Citation": "Цитат", + "Citations": "", "Clear memory": "Очисти сећања", "Clear Memory": "", "click here": "кликни овде", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Откривена путања система датотека модела. За ажурирање је потребан кратак назив модела, не може се наставити.", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "Претходних 30 дана", "Previous 7 days": "Претходних 7 дана", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Напредак отпремања", "URL": "УРЛ", "URL Mode": "Режим адресе", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "Користи Граватар", "Use groups to group your users and assign permissions.": "Користите групе да бисте разврстали ваше кориснике и доделили овлашћења.", @@ -1276,6 +1282,7 @@ "View Replies": "Погледај одговоре", "View Result from **{{NAME}}**": "", "Visibility": "Видљивост", + "Vision": "", "Voice": "Глас", "Voice Input": "Гласовни унос", "Warning": "Упозорење", diff --git a/src/lib/i18n/locales/sv-SE/translation.json b/src/lib/i18n/locales/sv-SE/translation.json index 6f302b12a..b773ec1d9 100644 --- a/src/lib/i18n/locales/sv-SE/translation.json +++ b/src/lib/i18n/locales/sv-SE/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Chunk-storlek", "Ciphers": "Chiffer", "Citation": "Citat", + "Citations": "", "Clear memory": "Rensa minnet", "Clear Memory": "", "click here": "klicka här", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modellens filsystemväg upptäckt. Modellens kortnamn krävs för uppdatering, kan inte fortsätta.", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "Föregående 30 dagar", "Previous 7 days": "Föregående 7 dagar", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "Uppladdningsframsteg", "URL": "", "URL Mode": "URL-läge", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Använd '#' i prompten för att läsa in och inkludera din kunskap", "Use Gravatar": "Använd Gravatar", "Use groups to group your users and assign permissions.": "Använd grupper för att gruppera dina användare och tilldela behörigheter.", @@ -1276,6 +1282,7 @@ "View Replies": "Se svar", "View Result from **{{NAME}}**": "", "Visibility": "Synlighet", + "Vision": "", "Voice": "Röst", "Voice Input": "Röstinmatning", "Warning": "Varning", diff --git a/src/lib/i18n/locales/th-TH/translation.json b/src/lib/i18n/locales/th-TH/translation.json index 836a8cf99..30cb79ff0 100644 --- a/src/lib/i18n/locales/th-TH/translation.json +++ b/src/lib/i18n/locales/th-TH/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "ขนาดส่วนข้อมูล", "Ciphers": "", "Citation": "การอ้างอิง", + "Citations": "", "Clear memory": "ล้างความจำ", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "สร้างโมเดลสำเร็จ!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "ตรวจพบเส้นทางระบบไฟล์ของโมเดล ต้องการชื่อย่อของโมเดลสำหรับการอัปเดต ไม่สามารถดำเนินการต่อได้", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "30 วันที่ผ่านมา", "Previous 7 days": "7 วันที่ผ่านมา", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "ความคืบหน้าการอัปโหลด", "URL": "", "URL Mode": "โหมด URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "ใช้ Gravatar", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "", + "Vision": "", "Voice": "เสียง", "Voice Input": "", "Warning": "คำเตือน", diff --git a/src/lib/i18n/locales/tk-TW/translation.json b/src/lib/i18n/locales/tk-TW/translation.json index 7e4fb8789..9403c43f6 100644 --- a/src/lib/i18n/locales/tk-TW/translation.json +++ b/src/lib/i18n/locales/tk-TW/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "", "Ciphers": "", "Citation": "", + "Citations": "", "Clear memory": "", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "", "Previous 7 days": "", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "", "URL": "", "URL Mode": "", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "", "Use Gravatar": "", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "", + "Vision": "", "Voice": "", "Voice Input": "", "Warning": "", diff --git a/src/lib/i18n/locales/tr-TR/translation.json b/src/lib/i18n/locales/tr-TR/translation.json index 7df6a548f..3f6bf4ccd 100644 --- a/src/lib/i18n/locales/tr-TR/translation.json +++ b/src/lib/i18n/locales/tr-TR/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Chunk Boyutu", "Ciphers": "Şifreler", "Citation": "Alıntı", + "Citations": "", "Clear memory": "Belleği temizle", "Clear Memory": "Belleği Temizle", "click here": "buraya tıklayın", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "Model {{name}} artık gizli", "Model {{name}} is now visible": "Model {{name}} artık görünür", "Model accepts image inputs": "Model görüntü girdilerini kabul eder", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Model başarıyla oluşturuldu!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model dosya sistemi yolu algılandı. Güncelleme için model kısa adı gerekli, devam edilemiyor.", "Model Filtering": "Model Filtreleme", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "Önceki 30 gün", "Previous 7 days": "Önceki 7 gün", "Private": "Gizli", @@ -1247,6 +1252,7 @@ "Upload Progress": "Yükleme İlerlemesi", "URL": "URL", "URL Mode": "URL Modu", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Bilginizi yüklemek ve dahil etmek için prompt girişinde '#' kullanın.", "Use Gravatar": "Gravatar Kullan", "Use groups to group your users and assign permissions.": "Kullanıcılarınızı gruplamak ve izinler atamak için grupları kullanın.", @@ -1276,6 +1282,7 @@ "View Replies": "Yanıtları Görüntüle", "View Result from **{{NAME}}**": "", "Visibility": "Görünürlük", + "Vision": "", "Voice": "Ses", "Voice Input": "Ses Girişi", "Warning": "Uyarı", diff --git a/src/lib/i18n/locales/uk-UA/translation.json b/src/lib/i18n/locales/uk-UA/translation.json index 23587fbc2..445a80980 100644 --- a/src/lib/i18n/locales/uk-UA/translation.json +++ b/src/lib/i18n/locales/uk-UA/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Розмір фрагменту", "Ciphers": "Шифри", "Citation": "Цитування", + "Citations": "", "Clear memory": "Очистити пам'ять", "Clear Memory": "Очистити пам'ять", "click here": "натисніть тут", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "Модель {{name}} тепер схована", "Model {{name}} is now visible": "Модель {{name}} тепер видима", "Model accepts image inputs": "Модель приймає зображеня", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Модель створено успішно!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Виявлено шлях до файлової системи моделі. Для оновлення потрібно вказати коротке ім'я моделі, не вдасться продовжити.", "Model Filtering": "Фільтрація моделей", @@ -927,6 +931,7 @@ "Prefix ID": "ID префікса", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID префікса використовується для уникнення конфліктів з іншими підключеннями шляхом додавання префікса до ID моделей — залиште порожнім, щоб вимкнути", "Presence Penalty": "Штраф за присутність", + "Preview": "", "Previous 30 days": "Попередні 30 днів", "Previous 7 days": "Попередні 7 днів", "Private": "Приватний", @@ -1247,6 +1252,7 @@ "Upload Progress": "Прогрес завантаження", "URL": "URL", "URL Mode": "Режим URL-адреси", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Використовуйте '#' у полі введення підказки, щоб завантажити та включити свої знання.", "Use Gravatar": "Змінити аватар", "Use groups to group your users and assign permissions.": "Використовуйте групи, щоб об’єднувати користувачів і призначати дозволи.", @@ -1276,6 +1282,7 @@ "View Replies": "Переглянути відповіді", "View Result from **{{NAME}}**": "", "Visibility": "Видимість", + "Vision": "", "Voice": "Голос", "Voice Input": "Голосове введення", "Warning": "Увага!", diff --git a/src/lib/i18n/locales/ur-PK/translation.json b/src/lib/i18n/locales/ur-PK/translation.json index 5821934ae..0ce0e8d05 100644 --- a/src/lib/i18n/locales/ur-PK/translation.json +++ b/src/lib/i18n/locales/ur-PK/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "چنک سائز", "Ciphers": "", "Citation": "حوالہ", + "Citations": "", "Clear memory": "میموری صاف کریں", "Clear Memory": "", "click here": "", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "", "Model {{name}} is now visible": "", "Model accepts image inputs": "ماڈل تصویری ان پٹس قبول کرتا ہے", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "ماڈل کامیابی سے تیار کر دیا گیا!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "ماڈل فائل سسٹم کا راستہ مل گیا ماڈل کا مختصر نام اپڈیٹ کے لیے ضروری ہے، جاری نہیں رہ سکتا", "Model Filtering": "", @@ -927,6 +931,7 @@ "Prefix ID": "", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "", "Presence Penalty": "", + "Preview": "", "Previous 30 days": "پچھلے 30 دن", "Previous 7 days": "پچھلے 7 دن", "Private": "", @@ -1247,6 +1252,7 @@ "Upload Progress": "اپ لوڈ کی پیش رفت", "URL": "", "URL Mode": "یو آر ایل موڈ", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "پرامپٹ ان پٹ میں '#' استعمال کریں تاکہ اپنی معلومات کو لوڈ اور شامل کریں", "Use Gravatar": "گراویٹر استعمال کریں", "Use groups to group your users and assign permissions.": "", @@ -1276,6 +1282,7 @@ "View Replies": "", "View Result from **{{NAME}}**": "", "Visibility": "", + "Vision": "", "Voice": "آواز", "Voice Input": "آواز داخل کریں", "Warning": "انتباہ", diff --git a/src/lib/i18n/locales/vi-VN/translation.json b/src/lib/i18n/locales/vi-VN/translation.json index 4339b004f..7dc21e568 100644 --- a/src/lib/i18n/locales/vi-VN/translation.json +++ b/src/lib/i18n/locales/vi-VN/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "Kích thước khối (size)", "Ciphers": "Bộ mã hóa", "Citation": "Trích dẫn", + "Citations": "", "Clear memory": "Xóa bộ nhớ", "Clear Memory": "Xóa Bộ nhớ", "click here": "nhấn vào đây", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "Mô hình {{name}} hiện đã bị ẩn", "Model {{name}} is now visible": "Mô hình {{name}} hiện có thể nhìn thấy", "Model accepts image inputs": "Mô hình chấp nhận đầu vào hình ảnh", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "Model đã được tạo thành công", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Đường dẫn hệ thống tệp mô hình được phát hiện. Tên viết tắt mô hình là bắt buộc để cập nhật, không thể tiếp tục.", "Model Filtering": "Lọc Mô hình", @@ -927,6 +931,7 @@ "Prefix ID": "Tiền tố ID", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Tiền tố ID được sử dụng để tránh xung đột với các kết nối khác bằng cách thêm tiền tố vào ID mô hình - để trống để tắt", "Presence Penalty": "Hình phạt Hiện diện", + "Preview": "", "Previous 30 days": "30 ngày trước", "Previous 7 days": "7 ngày trước", "Private": "Riêng tư", @@ -1247,6 +1252,7 @@ "Upload Progress": "Tiến trình tải tệp lên hệ thống", "URL": "URL", "URL Mode": "Chế độ URL", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "Sử dụng '#' trong ô nhập prompt để tải và bao gồm kiến thức của bạn.", "Use Gravatar": "Sử dụng Gravatar", "Use groups to group your users and assign permissions.": "Sử dụng nhóm để nhóm người dùng của bạn và gán quyền.", @@ -1276,6 +1282,7 @@ "View Replies": "Xem các Trả lời", "View Result from **{{NAME}}**": "Xem Kết quả từ **{{NAME}}**", "Visibility": "Hiển thị", + "Vision": "", "Voice": "Giọng nói", "Voice Input": "Nhập liệu bằng Giọng nói", "Warning": "Cảnh báo", diff --git a/src/lib/i18n/locales/zh-CN/translation.json b/src/lib/i18n/locales/zh-CN/translation.json index c060d6165..66b9de536 100644 --- a/src/lib/i18n/locales/zh-CN/translation.json +++ b/src/lib/i18n/locales/zh-CN/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "块大小 (Chunk Size)", "Ciphers": "加密算法 (Ciphers)", "Citation": "引文", + "Citations": "", "Clear memory": "清除记忆", "Clear Memory": "清除记忆", "click here": "点击此处", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "模型 {{name}} 现已隐藏", "Model {{name}} is now visible": "模型 {{name}} 现已可见", "Model accepts image inputs": "模型接受图像输入", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "模型创建成功!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "检测到模型文件系统路径,无法继续进行。更新操作需要提供模型简称。", "Model Filtering": "模型白名单", @@ -927,6 +931,7 @@ "Prefix ID": "Prefix ID", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID 用于通过为模型 ID 添加前缀来避免与其他连接发生冲突 - 留空则禁用此功能", "Presence Penalty": "重复惩罚 (Presence Penalty)", + "Preview": "", "Previous 30 days": "过去 30 天", "Previous 7 days": "过去 7 天", "Private": "私有", @@ -1045,7 +1050,6 @@ "Send a Message": "输入消息", "Send message": "发送消息", "Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "在请求中发送 `stream_options: { include_usage: true }`。设置后,支持的供应商会在响应中返回 Token 使用信息。", - "Sends `enable_thinking: true` in the request. \nSupported toggle providers will return thinking content": "在请求中发送 `enable_thinking: true`。设置后,支持的供应商会返回深度思考的能力", "September": "九月", "SerpApi API Key": "SerpApi API 密钥", "SerpApi Engine": "SerpApi 引擎", @@ -1149,7 +1153,6 @@ "The score should be a value between 0.0 (0%) and 1.0 (100%).": "分值应介于 0.0(0%)和 1.0(100%)之间。", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "模型的温度。增加温度将使模型的回答更有创意。", "Theme": "主题", - "Thinking...": "深度思考", "Thinking...": "正在思考...", "This action cannot be undone. Do you wish to continue?": "此操作无法撤销。是否确认继续?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "此频道创建于{{createdAt}},这里是{{channelName}}频道的开始", @@ -1249,6 +1252,7 @@ "Upload Progress": "上传进度", "URL": "URL", "URL Mode": "URL 模式", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "在输入框中输入 '#' 号来加载你需要的知识库内容。", "Use Gravatar": "使用来自 Gravatar 的头像", "Use groups to group your users and assign permissions.": "使用权限组来组织用户并分配权限。", @@ -1278,6 +1282,7 @@ "View Replies": "查看回复", "View Result from **{{NAME}}**": "查看来自 **{{NAME}}** 的结果", "Visibility": "可见性", + "Vision": "", "Voice": "语音", "Voice Input": "语音输入", "Warning": "警告", diff --git a/src/lib/i18n/locales/zh-TW/translation.json b/src/lib/i18n/locales/zh-TW/translation.json index 39f782763..81457fbc7 100644 --- a/src/lib/i18n/locales/zh-TW/translation.json +++ b/src/lib/i18n/locales/zh-TW/translation.json @@ -186,6 +186,7 @@ "Chunk Size": "區塊大小", "Ciphers": "加密方式", "Citation": "引用", + "Citations": "", "Clear memory": "清除記憶", "Clear Memory": "清除記憶", "click here": "點選這裡", @@ -786,6 +787,9 @@ "Model {{name}} is now hidden": "模型 {{name}} 已隱藏", "Model {{name}} is now visible": "模型 {{name}} 已顯示", "Model accepts image inputs": "模型接受影像輸入", + "Model can execute code and perform calculations": "", + "Model can generate images based on text prompts": "", + "Model can search the web for information": "", "Model created successfully!": "成功建立模型!", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "偵測到模型檔案系統路徑。更新需要模型簡稱,因此無法繼續。", "Model Filtering": "模型篩選", @@ -927,6 +931,7 @@ "Prefix ID": "前置 ID", "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "前置 ID 用於透過為模型 ID 新增字首以避免與其他連線衝突 - 留空以停用", "Presence Penalty": "在場懲罰", + "Preview": "", "Previous 30 days": "過去 30 天", "Previous 7 days": "過去 7 天", "Private": "私有", @@ -1247,6 +1252,7 @@ "Upload Progress": "上傳進度", "URL": "URL", "URL Mode": "URL 模式", + "Usage": "", "Use '#' in the prompt input to load and include your knowledge.": "在提示詞輸入中使用 '#' 來載入並包含您的知識。", "Use Gravatar": "使用 Gravatar", "Use groups to group your users and assign permissions.": "使用群組來組織您的使用者並分配權限。", @@ -1276,6 +1282,7 @@ "View Replies": "檢視回覆", "View Result from **{{NAME}}**": "檢視來自 **{{NAME}}** 的結果", "Visibility": "可見度", + "Vision": "", "Voice": "語音", "Voice Input": "語音輸入", "Warning": "警告",