i18n: add missing i18n keys of ScheduleDropdown (#23726)
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
<script lang="ts">
|
||||
import type i18nType from '$lib/i18n';
|
||||
import { getContext } from 'svelte';
|
||||
|
||||
import Dropdown from '$lib/components/common/Dropdown.svelte';
|
||||
|
||||
const i18n = getContext('i18n');
|
||||
const i18n: typeof i18nType = getContext('i18n');
|
||||
|
||||
export let frequency = 'DAILY';
|
||||
export let interval = 1;
|
||||
@@ -23,23 +24,23 @@
|
||||
|
||||
let showDropdown = false;
|
||||
|
||||
const FREQUENCIES = [
|
||||
{ key: 'ONCE', label: 'Once' },
|
||||
{ key: 'HOURLY', label: 'Hourly' },
|
||||
{ key: 'DAILY', label: 'Daily' },
|
||||
{ key: 'WEEKLY', label: 'Weekly' },
|
||||
{ key: 'MONTHLY', label: 'Monthly' },
|
||||
{ key: 'CUSTOM', label: 'Custom' }
|
||||
$: FREQUENCIES = [
|
||||
{ key: 'ONCE', label: $i18n.t('Once') },
|
||||
{ key: 'HOURLY', label: $i18n.t('Hourly') },
|
||||
{ key: 'DAILY', label: $i18n.t('Daily') },
|
||||
{ key: 'WEEKLY', label: $i18n.t('Weekly') },
|
||||
{ key: 'MONTHLY', label: $i18n.t('Monthly') },
|
||||
{ key: 'CUSTOM', label: $i18n.t('Custom') }
|
||||
];
|
||||
|
||||
const DAYS = [
|
||||
{ key: 'MO', label: 'Mo' },
|
||||
{ key: 'TU', label: 'Tu' },
|
||||
{ key: 'WE', label: 'We' },
|
||||
{ key: 'TH', label: 'Th' },
|
||||
{ key: 'FR', label: 'Fr' },
|
||||
{ key: 'SA', label: 'Sa' },
|
||||
{ key: 'SU', label: 'Su' }
|
||||
$: DAYS = [
|
||||
{ key: 'MO', label: $i18n.t('Mo', { context: 'day_of_week' }) },
|
||||
{ key: 'TU', label: $i18n.t('Tu', { context: 'day_of_week' }) },
|
||||
{ key: 'WE', label: $i18n.t('We', { context: 'day_of_week' }) },
|
||||
{ key: 'TH', label: $i18n.t('Th', { context: 'day_of_week' }) },
|
||||
{ key: 'FR', label: $i18n.t('Fr', { context: 'day_of_week' }) },
|
||||
{ key: 'SA', label: $i18n.t('Sa', { context: 'day_of_week' }) },
|
||||
{ key: 'SU', label: $i18n.t('Su', { context: 'day_of_week' }) }
|
||||
];
|
||||
|
||||
let lastVisualFrequency = 'DAILY';
|
||||
|
||||
@@ -484,6 +484,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "مظلم",
|
||||
@@ -974,6 +975,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
@@ -1048,6 +1050,7 @@
|
||||
"History": "",
|
||||
"Home": "",
|
||||
"Host": "",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "كيف استطيع مساعدتك اليوم؟",
|
||||
"How would you rate this response?": "",
|
||||
@@ -1270,10 +1273,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "تم تحميل النموذج '{{modelName}}' بنجاح",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "النموذج '{{modelTag}}' موجود بالفعل في قائمة الانتظار للتحميل",
|
||||
"Model {{modelId}} not found": "لم يتم العثور على النموذج {{modelId}}.",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "نموذج {{modelName}} غير قادر على الرؤية",
|
||||
"Model {{name}} is now {{status}}": "نموذج {{name}} هو الآن {{status}}",
|
||||
@@ -1314,6 +1317,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "المزيد",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1434,6 +1438,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama الاصدار",
|
||||
"On": "تشغيل",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1683,6 +1688,7 @@
|
||||
"Running": "",
|
||||
"Running...": "جارٍ التنفيذ...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "حفظ",
|
||||
"Save & Create": "حفظ وإنشاء",
|
||||
"Save & Update": "حفظ وتحديث",
|
||||
@@ -1899,6 +1905,7 @@
|
||||
"STT Model": "",
|
||||
"STT Settings": "STT اعدادات",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1944,6 +1951,7 @@
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "محرك تحويل النص إلى كلام",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "شكرا لملاحظاتك!",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2057,6 +2065,7 @@
|
||||
"TTS Model": "",
|
||||
"TTS Settings": "TTS اعدادات",
|
||||
"TTS Voice": "",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "نوع",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "اكتب عنوان URL لحل مشكلة الوجه (تنزيل).",
|
||||
@@ -2159,6 +2168,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2175,6 +2185,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -484,6 +484,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "منطقة الخطر",
|
||||
"Dark": "داكن",
|
||||
@@ -974,6 +975,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "وضع السياق الكامل",
|
||||
"Function": "وظيفة",
|
||||
"Function Calling": "استدعاء الوظائف",
|
||||
@@ -1048,6 +1050,7 @@
|
||||
"History": "",
|
||||
"Home": "الصفحة الرئيسية",
|
||||
"Host": "المضيف",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "كيف استطيع مساعدتك اليوم؟",
|
||||
"How would you rate this response?": "كيف تقيّم هذا الرد؟",
|
||||
@@ -1270,10 +1273,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "النموذج",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "تم تحميل النموذج '{{modelName}}' بنجاح",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "النموذج '{{modelTag}}' موجود بالفعل في قائمة الانتظار للتحميل",
|
||||
"Model {{modelId}} not found": "لم يتم العثور على النموذج {{modelId}}.",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "نموذج {{modelName}} غير قادر على الرؤية",
|
||||
"Model {{name}} is now {{status}}": "نموذج {{name}} هو الآن {{status}}",
|
||||
@@ -1314,6 +1317,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "مفتاح API لـ Mojeek Search",
|
||||
"Monthly": "",
|
||||
"More": "المزيد",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1434,6 +1438,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama الاصدار",
|
||||
"On": "تشغيل",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1683,6 +1688,7 @@
|
||||
"Running": "جارٍ التنفيذ",
|
||||
"Running...": "جارٍ التنفيذ...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "حفظ",
|
||||
"Save & Create": "حفظ وإنشاء",
|
||||
"Save & Update": "حفظ وتحديث",
|
||||
@@ -1899,6 +1905,7 @@
|
||||
"STT Model": "نموذج تحويل الصوت إلى نص (STT)",
|
||||
"STT Settings": "STT اعدادات",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1944,6 +1951,7 @@
|
||||
"Text Splitter": "تقسيم النص",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "محرك تحويل النص إلى كلام",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "شكرا لملاحظاتك!",
|
||||
"The Application Account DN you bind with for search": "DN لحساب التطبيق الذي تستخدمه للبحث",
|
||||
"The base to search for users": "الأساس الذي يُستخدم للبحث عن المستخدمين",
|
||||
@@ -2057,6 +2065,7 @@
|
||||
"TTS Model": "نموذج تحويل النص إلى كلام (TTS)",
|
||||
"TTS Settings": "TTS اعدادات",
|
||||
"TTS Voice": "صوت TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "نوع",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "اكتب عنوان URL لحل مشكلة الوجه (تنزيل).",
|
||||
@@ -2159,6 +2168,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "تحذير: تفعيل هذا الخيار سيسمح للمستخدمين برفع كود عشوائي على الخادم.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "تحذير: تنفيذ كود Jupyter يتيح تنفيذ كود عشوائي مما يشكل مخاطر أمنية جسيمة—تابع بحذر شديد.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "واجهة برمجة التطبيقات (API)",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2175,6 +2185,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "ستقوم WebUI بإرسال الطلبات إلى \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "ستقوم WebUI بإرسال الطلبات إلى \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "ما الذي تحاول تحقيقه؟",
|
||||
"What are you working on?": "على ماذا تعمل؟",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "Fərdi cins",
|
||||
"Custom Parameter Name": "Fərdi parametr adı",
|
||||
"Custom Parameter Value": "Fərdi parametr dəyəri",
|
||||
"Daily": "",
|
||||
"Daily Messages": "Gündəlik mesajlar",
|
||||
"Danger Zone": "Təhlükəli zona",
|
||||
"Dark": "Tünd",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "Autentifikasiya üçün sistem istifadəçisinin OAuth giriş tokenini yönləndirir",
|
||||
"Forwards system user session credentials to authenticate": "Autentifikasiya üçün sistem istifadəçisinin sessiya məlumatlarını yönləndirir",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Tam kontekst rejimi",
|
||||
"Function": "Funksiya",
|
||||
"Function Calling": "Funksiya çağırışı",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "Tarixçə",
|
||||
"Home": "Ana səhifə",
|
||||
"Host": "Host",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "Saatlıq mesajlar",
|
||||
"How can I help you today?": "Bu gün sizə necə kömək edə bilərəm?",
|
||||
"How would you rate this response?": "Bu cavabı necə qiymətləndirərdiniz?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Mistral OCR API açarı tələb olunur.",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Model",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' modeli uğurla yükləndi.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' modeli artıq yükləmə növbəsindədir.",
|
||||
"Model {{modelId}} not found": "{{modelId}} modeli tapılmadı",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "{{modelName}} modeli görüntünü tanıma (vision) qabiliyyətinə malik deyil",
|
||||
"Model {{name}} is now {{status}}": "{{name}} modeli indi {{status}} statusundadır",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "Modellərin paylaşılması",
|
||||
"Mojeek": "Mojeek",
|
||||
"Mojeek Search API Key": "Mojeek Axtarış API Açarı",
|
||||
"Monthly": "",
|
||||
"More": "Daha çox",
|
||||
"More Concise": "Daha yığcam",
|
||||
"More options": "Daha çox seçim",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "Ollama Cloud API Açarı",
|
||||
"Ollama Version": "Ollama Versiyası",
|
||||
"On": "Açıq",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Yalnız \"Böyük mətni fayl kimi yapışdır\" ayarı aktiv olduqda işləyir.",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "Yalnız çat girişi fokusda olduqda və LLM cavab yaratdıqda aktiv olur.",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "İcra edilir",
|
||||
"Running...": "İcra edilir...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Emalı sürətləndirmək üçün yerləşdirmə (embedding) tapşırıqlarını eyni vaxtda icra edir. Əgər sorğu limiti problemi yaranarsa, bunu söndürün.",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Yadda saxla",
|
||||
"Save & Create": "Saxla və Yarat",
|
||||
"Save & Update": "Saxla və Yenilə",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "STT (Səsdən mətnə) Modeli",
|
||||
"STT Settings": "STT Ayarları",
|
||||
"Stylized PDF Export": "Stil verilmiş PDF ixracı",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "Sualı göndər",
|
||||
"Submit suggestion": "Təklifi göndər",
|
||||
"Subtitle": "Altyazı",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "Mətn bölücü",
|
||||
"Text-to-Speech": "Mətndən səsə (TTS)",
|
||||
"Text-to-Speech Engine": "Mətndən səsə mühərriki",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Rəyiniz üçün təşəkkürlər!",
|
||||
"The Application Account DN you bind with for search": "Axtarış üçün bağladığınız Tətbiq Hesabı DN (Application Account DN)",
|
||||
"The base to search for users": "İstifadəçilərin axtarışı üçün baza",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "TTS Modeli",
|
||||
"TTS Settings": "TTS Ayarları",
|
||||
"TTS Voice": "TTS Səsi",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Növ",
|
||||
"Type here...": "Bura yazın...",
|
||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (Yükləmə) URL-ni yazın",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Xəbərdarlıq: Bunun aktiv edilməsi istifadəçilərə serverə ixtiyari kod yükləməyə icazə verəcək.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Xəbərdarlıq: Jupyter icrası ixtiyari kodun işlədilməsinə imkan verir və ciddi təhlükəsizlik riskləri yaradır — son dərəcə ehtiyatlı olun.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Veb",
|
||||
"Web API": "Veb API",
|
||||
"Web Loader Engine": "Veb yükləyici mühərrik",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI \"{{url}}\" ünvanına sorğular göndərəcək",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI \"{{url}}/api/chat\" ünvanına sorğular göndərəcək",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI \"{{url}}/chat/completions\" ünvanına sorğular göndərəcək",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Nəyə nail olmaq istəyirsiniz?",
|
||||
"What are you working on?": "Nəyin üzərində işləyirsiniz?",
|
||||
"What is NOT shared:": "Nələr paylaşılmır:",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "Тъмен",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Режим на пълен контекст",
|
||||
"Function": "Функция",
|
||||
"Function Calling": "Извикване на функция",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "Начало",
|
||||
"Host": "Хост",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Как мога да ви помогна днес?",
|
||||
"How would you rate this response?": "Как бихте оценили този отговор?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Модел",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Моделът '{{modelName}}' беше успешно свален.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Моделът '{{modelTag}}' е вече в очакване за сваляне.",
|
||||
"Model {{modelId}} not found": "Моделът {{modelId}} не е намерен",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Моделът {{modelName}} не поддържа визуални възможности",
|
||||
"Model {{name}} is now {{status}}": "Моделът {{name}} сега е {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "API ключ за Mojeek Search",
|
||||
"Monthly": "",
|
||||
"More": "Повече",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama Версия",
|
||||
"On": "Вкл.",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "Изпълнява се",
|
||||
"Running...": "Изпълнява се...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Запис",
|
||||
"Save & Create": "Запис & Създаване",
|
||||
"Save & Update": "Запис & Актуализиране",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "STT Модел",
|
||||
"STT Settings": "STT Настройки",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "Разделител на текст",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Двигател за преобразуване на текст в реч",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Благодарим ви за вашия отзив!",
|
||||
"The Application Account DN you bind with for search": "DN на акаунта на приложението, с който се свързвате за търсене",
|
||||
"The base to search for users": "Базата за търсене на потребители",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "TTS Модел",
|
||||
"TTS Settings": "TTS Настройки",
|
||||
"TTS Voice": "TTS Глас",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Вид",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Въведете Hugging Face Resolve (Изтегляне) URL",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Предупреждение: Активирането на това ще позволи на потребителите да качват произволен код на сървъра.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Предупреждение: Изпълнението на Jupyter позволява произволно изпълнение на код, което представлява сериозни рискове за сигурността-продължете с изключително внимание.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Уеб",
|
||||
"Web API": "Уеб API",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI ще прави заявки към \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI ще прави заявки към \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Какво се опитвате да постигнете?",
|
||||
"What are you working on?": "Върху какво работите?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "ডার্ক",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "",
|
||||
"Host": "",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "আপনাকে আজ কিভাবে সাহায্য করতে পারি?",
|
||||
"How would you rate this response?": "",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' মডেল সফলভাবে ডাউনলোড হয়েছে।",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "{{modelTag}} ডাউনলোডের জন্য আগে থেকেই অপেক্ষমান আছে।",
|
||||
"Model {{modelId}} not found": "{{modelId}} মডেল পাওয়া যায়নি",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "মডেল {{modelName}} দৃষ্টি সক্ষম নয়",
|
||||
"Model {{name}} is now {{status}}": "মডেল {{name}} এখন {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "আরো",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama ভার্সন",
|
||||
"On": "চালু",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "",
|
||||
"Running...": "চলমান...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "সংরক্ষণ",
|
||||
"Save & Create": "সংরক্ষণ এবং তৈরি করুন",
|
||||
"Save & Update": "সংরক্ষণ এবং আপডেট করুন",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "",
|
||||
"STT Settings": "STT সেটিংস",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "টেক্সট-টু-স্পিচ ইঞ্জিন",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "আপনার মতামত ধন্যবাদ!",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "",
|
||||
"TTS Settings": "TTS সেটিংসমূহ",
|
||||
"TTS Voice": "",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "টাইপ",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face থেকে ডাউনলোড করার ইউআরএল টাইপ করুন",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "ওয়েব",
|
||||
"Web API": "",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -479,6 +479,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "ཉེན་ཁའི་ས་ཁུལ།",
|
||||
"Dark": "ནག་པོ།",
|
||||
@@ -969,6 +970,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "ནང་དོན་ཆ་ཚང་མ་དཔེ།",
|
||||
"Function": "ལས་འགན།",
|
||||
"Function Calling": "ལས་འགན་འབོད་པ།",
|
||||
@@ -1043,6 +1045,7 @@
|
||||
"History": "",
|
||||
"Home": "གཙོ་ངོས།",
|
||||
"Host": "Host",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "དེ་རིང་ངས་ཁྱེད་ལ་རོགས་པ་ཅི་ཞིག་བྱེད་ཐུབ་བམ།",
|
||||
"How would you rate this response?": "ལན་འདི་ལ་ཁྱེད་ཀྱིས་སྐར་མ་ག་ཚོད་སྤྲོད་འདོད་དམ།",
|
||||
@@ -1265,10 +1268,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "དཔེ་དབྱིབས།",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "དཔེ་དབྱིབས། '{{modelName}}' ལེགས་པར་ཕབ་ལེན་བྱས་ཟིན།",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "དཔེ་དབྱིབས། '{{modelTag}}' ཕབ་ལེན་གྱི་སྒུག་ཐོ་ནང་ཡོད་ཟིན།",
|
||||
"Model {{modelId}} not found": "དཔེ་དབྱིབས། {{modelId}} མ་རྙེད།",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "དཔེ་དབྱིབས། {{modelName}} ལ་མཐོང་ནུས་མེད།",
|
||||
"Model {{name}} is now {{status}}": "དཔེ་དབྱིབས། {{name}} ད་ལྟ་ {{status}} ཡིན།",
|
||||
@@ -1309,6 +1312,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "Mojeek Search API ལྡེ་མིག",
|
||||
"Monthly": "",
|
||||
"More": "མང་བ།",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1429,6 +1433,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama པར་གཞི།",
|
||||
"On": "ཁ་ཕྱེ་བ།",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1673,6 +1678,7 @@
|
||||
"Running": "ལག་བསྟར་བྱེད་བཞིན་པ།",
|
||||
"Running...": "ལག་བསྟར་བྱེད་བཞིན་པ།...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "ཉར་ཚགས།",
|
||||
"Save & Create": "ཉར་ཚགས་ & གསར་བཟོ།",
|
||||
"Save & Update": "ཉར་ཚགས་ & གསར་སྒྱུར།",
|
||||
@@ -1889,6 +1895,7 @@
|
||||
"STT Model": "STT དཔེ་དབྱིབས།",
|
||||
"STT Settings": "STT སྒྲིག་འགོད།",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1934,6 +1941,7 @@
|
||||
"Text Splitter": "ཡིག་རྐྱང་བགོ་བྱེད།",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "ཡིག་རྐྱང་ནས་གཏམ་བཤད་ཀྱི་འཕྲུལ་འཁོར།",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "ཁྱེད་ཀྱི་བསམ་འཆར་ལ་ཐུགས་རྗེ་ཆེ།",
|
||||
"The Application Account DN you bind with for search": "ཁྱེད་ཀྱིས་འཚོལ་བཤེར་གྱི་ཆེད་དུ་སྦྲེལ་བའི་ Application Account DN",
|
||||
"The base to search for users": "བེད་སྤྱོད་མཁན་འཚོལ་བའི་གཞི་རྩ།",
|
||||
@@ -2047,6 +2055,7 @@
|
||||
"TTS Model": "TTS དཔེ་དབྱིབས།",
|
||||
"TTS Settings": "TTS སྒྲིག་འགོད།",
|
||||
"TTS Voice": "TTS སྐད།",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "རིགས།",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ཕབ་ལེན།) URL མནན་པ།",
|
||||
@@ -2149,6 +2158,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "ཉེན་བརྡ།: འདི་སྒུལ་བསྐྱོད་བྱས་ན་བེད་སྤྱོད་མཁན་ཚོས་སར་བར་སྟེང་གང་འདོད་ཀྱི་ཀོཌ་སྤར་བར་གནང་བ་སྤྲོད་ངེས།",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "ཉེན་བརྡ།: Jupyter ལག་བསྟར་གྱིས་གང་འདོད་ཀྱི་ཀོཌ་ལག་བསྟར་སྒུལ་བསྐྱོད་བྱས་ནས། བདེ་འཇགས་ཀྱི་ཉེན་ཁ་ཚབས་ཆེན་བཟོ་གི་ཡོད།—ཧ་ཅང་གཟབ་ནན་གྱིས་སྔོན་སྐྱོད་བྱེད་རོགས།",
|
||||
"We_day_of_week": "",
|
||||
"Web": "དྲ་བ།",
|
||||
"Web API": "Web API",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2165,6 +2175,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI ཡིས་ \"{{url}}/api/chat\" ལ་རེ་ཞུ་གཏོང་ངེས།",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI ཡིས་ \"{{url}}/chat/completions\" ལ་རེ་ཞུ་གཏོང་ངེས།",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "ཁྱེད་ཀྱིས་ཅི་ཞིག་འགྲུབ་ཐབས་བྱེད་བཞིན་ཡོད།",
|
||||
"What are you working on?": "ཁྱེད་ཀྱིས་ཅི་ཞིག་ལས་ཀ་བྱེད་བཞིན་ཡོད།",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -481,6 +481,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "Tamno",
|
||||
@@ -971,6 +972,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
@@ -1045,6 +1047,7 @@
|
||||
"History": "",
|
||||
"Home": "",
|
||||
"Host": "",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Kako vam mogu pomoći danas?",
|
||||
"How would you rate this response?": "",
|
||||
@@ -1267,10 +1270,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' je uspješno preuzet.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je već u redu za preuzimanje.",
|
||||
"Model {{modelId}} not found": "Model {{modelId}} nije pronađen",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Model {{modelName}} ne čita vizualne impute",
|
||||
"Model {{name}} is now {{status}}": "Model {{name}} sada je {{status}}",
|
||||
@@ -1311,6 +1314,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "Više",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1431,6 +1435,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama verzija",
|
||||
"On": "Uključeno",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1677,6 +1682,7 @@
|
||||
"Running": "Pokrenuto",
|
||||
"Running...": "Pokrenuto...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Spremi",
|
||||
"Save & Create": "Spremi i stvori",
|
||||
"Save & Update": "Spremi i ažuriraj",
|
||||
@@ -1893,6 +1899,7 @@
|
||||
"STT Model": "STT model",
|
||||
"STT Settings": "STT postavke",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1938,6 +1945,7 @@
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Stroj za pretvorbu teksta u govor",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Hvala na povratnim informacijama!",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2051,6 +2059,7 @@
|
||||
"TTS Model": "TTS model",
|
||||
"TTS Settings": "TTS postavke",
|
||||
"TTS Voice": "TTS glas",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Tip",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Upišite Hugging Face Resolve (Download) URL",
|
||||
@@ -2153,6 +2162,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "Web API",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2169,6 +2179,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -481,6 +481,7 @@
|
||||
"Custom Gender": "Gènere personalitzat",
|
||||
"Custom Parameter Name": "Nom del paràmetre personalitzat",
|
||||
"Custom Parameter Value": "Valor del paràmetre personalitzat",
|
||||
"Daily": "",
|
||||
"Daily Messages": "Missatges diaris",
|
||||
"Danger Zone": "Zona de perill",
|
||||
"Dark": "Fosc",
|
||||
@@ -971,6 +972,7 @@
|
||||
"Forward": "Endavant",
|
||||
"Forwards system user OAuth access token to authenticate": "Reenvia el testimoni d'accés OAuth de l'usuari del sistema per autenticar-se.",
|
||||
"Forwards system user session credentials to authenticate": "Envia les credencials de l'usuari del sistema per autenticar",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Mode de context complert",
|
||||
"Function": "Funció",
|
||||
"Function Calling": "Crida a funcions",
|
||||
@@ -1045,6 +1047,7 @@
|
||||
"History": "Historial",
|
||||
"Home": "Inici",
|
||||
"Host": "Servidor",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "Missatges horaris",
|
||||
"How can I help you today?": "Com et puc ajudar avui?",
|
||||
"How would you rate this response?": "Com avaluaries aquesta resposta?",
|
||||
@@ -1267,10 +1270,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "És necessària la clau API de Mistral OCR",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Model",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "El model '{{modelName}}' s'ha descarregat correctament.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "El model '{{modelTag}}' ja està en cua per ser descarregat.",
|
||||
"Model {{modelId}} not found": "No s'ha trobat el model {{modelId}}",
|
||||
"Model {{modelName}} deleted successfully": "El model {{modelName}} s'ha eliminat correctament",
|
||||
"Model {{modelName}} is not vision capable": "El model {{modelName}} no és capaç de visió",
|
||||
"Model {{name}} is now {{status}}": "El model {{name}} ara és {{status}}",
|
||||
@@ -1311,6 +1314,7 @@
|
||||
"Models Sharing": "Compartir els models",
|
||||
"Mojeek": "Mojeek",
|
||||
"Mojeek Search API Key": "Clau API de Mojeek Search",
|
||||
"Monthly": "",
|
||||
"More": "Més",
|
||||
"More Concise": "Més precís",
|
||||
"More options": "Més opcions",
|
||||
@@ -1431,6 +1435,7 @@
|
||||
"Ollama Cloud API Key": "Clau API d'Ollama Cloud",
|
||||
"Ollama Version": "Versió d'Ollama",
|
||||
"On": "Activat",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Només està actiu quan l'opció \"Enganxa text gran com a fitxer\" està activada.",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "Només s'activa quan l'entrada del xat està en focus i un LLM està generant una resposta.",
|
||||
@@ -1677,6 +1682,7 @@
|
||||
"Running": "S'està executant",
|
||||
"Running...": "S'està executant...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Executa tasques d'incrustació simultàniament per accelerar el processament. Desactiva-ho si els límits de velocitat es converteixen en un problema.",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Desar",
|
||||
"Save & Create": "Desar i crear",
|
||||
"Save & Update": "Desar i actualitzar",
|
||||
@@ -1893,6 +1899,7 @@
|
||||
"STT Model": "Model SST",
|
||||
"STT Settings": "Preferències de STT",
|
||||
"Stylized PDF Export": "Exportació en PDF estilitzat",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "Enviar la pregunta",
|
||||
"Submit suggestion": "Enviar un suggeriment",
|
||||
"Subtitle": "Subtítol",
|
||||
@@ -1938,6 +1945,7 @@
|
||||
"Text Splitter": "Separador de text",
|
||||
"Text-to-Speech": "Text-a-veu",
|
||||
"Text-to-Speech Engine": "Motor de text a veu",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Gràcies pel teu comentari!",
|
||||
"The Application Account DN you bind with for search": "El DN del compte d'aplicació per realitzar la cerca",
|
||||
"The base to search for users": "La base per cercar usuaris",
|
||||
@@ -2051,6 +2059,7 @@
|
||||
"TTS Model": "Model TTS",
|
||||
"TTS Settings": "Preferències de TTS",
|
||||
"TTS Voice": "Veu TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Tipus",
|
||||
"Type here...": "Escriu aquí...",
|
||||
"Type Hugging Face Resolve (Download) URL": "Escriu la URL de Resolució (Descàrrega) de Hugging Face",
|
||||
@@ -2153,6 +2162,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "Avís: Si actives aquesta opció, els usuaris podran executar sol·licituds programades automàticament.",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Avís: Habilitar això permetrà als usuaris penjar codi arbitrari al servidor.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Avís: l'execució de Jupyter permet l'execució de codi arbitrari, la qual cosa comporta greus riscos de seguretat; procediu amb extrema precaució.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "Web API",
|
||||
"Web Loader Engine": "Motor de càrrega Web",
|
||||
@@ -2169,6 +2179,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI farà peticions a \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI farà peticions a \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI farà peticions a \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Què intentes aconseguir?",
|
||||
"What are you working on?": "En què estàs treballant?",
|
||||
"What is NOT shared:": "Què no es comparteix",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "Ngitngit",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "",
|
||||
"Host": "",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Unsaon nako pagtabang kanimo karon?",
|
||||
"How would you rate this response?": "",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Ang modelo'{{modelName}}' malampuson nga na-download.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Ang modelo'{{modelTag}}' naa na sa pila para ma-download.",
|
||||
"Model {{modelId}} not found": "Modelo {{modelId}} wala makit-an",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "",
|
||||
"Model {{name}} is now {{status}}": "",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama nga bersyon",
|
||||
"On": "Gipaandar",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "",
|
||||
"Running...": "Nagdagan...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Tipigi",
|
||||
"Save & Create": "I-save ug Paghimo",
|
||||
"Save & Update": "I-save ug I-update",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "",
|
||||
"STT Settings": "Mga setting sa STT",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Text-to-speech nga makina",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "",
|
||||
"TTS Settings": "Mga Setting sa TTS",
|
||||
"TTS Voice": "",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Pagsulod sa resolusyon (pag-download) URL Hugging Face",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -482,6 +482,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "Název vlastního parametru",
|
||||
"Custom Parameter Value": "Hodnota vlastního parametru",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "Nebezpečná zóna",
|
||||
"Dark": "Tmavý",
|
||||
@@ -972,6 +973,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "Přeposílá přihlašovací údaje relace systémového uživatele pro ověření",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Režim plného kontextu",
|
||||
"Function": "Funkce",
|
||||
"Function Calling": "function calling",
|
||||
@@ -1046,6 +1048,7 @@
|
||||
"History": "",
|
||||
"Home": "Domů",
|
||||
"Host": "Hostitel",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Jak vám dnes mohu pomoci?",
|
||||
"How would you rate this response?": "Jak byste ohodnotili tuto odpověď?",
|
||||
@@ -1268,10 +1271,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Je vyžadován API klíč pro Mistral OCR.",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Model",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' byl úspěšně stažen.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je již ve frontě na stažení.",
|
||||
"Model {{modelId}} not found": "Model {{modelId}} nenalezen",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Model {{modelName}} nemá schopnost zpracování obrazu.",
|
||||
"Model {{name}} is now {{status}}": "Model {{name}} je nyní {{status}}.",
|
||||
@@ -1312,6 +1315,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "API klíč pro Mojeek Search",
|
||||
"Monthly": "",
|
||||
"More": "Více",
|
||||
"More Concise": "Stručnější",
|
||||
"More options": "",
|
||||
@@ -1432,6 +1436,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Verze Ollama",
|
||||
"On": "Zapnuto",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1679,6 +1684,7 @@
|
||||
"Running": "Běží",
|
||||
"Running...": "Běží...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Uložit",
|
||||
"Save & Create": "Uložit a vytvořit",
|
||||
"Save & Update": "Uložit a aktualizovat",
|
||||
@@ -1895,6 +1901,7 @@
|
||||
"STT Model": "Model STT",
|
||||
"STT Settings": "Nastavení STT",
|
||||
"Stylized PDF Export": "Stylizovaný export do PDF",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1940,6 +1947,7 @@
|
||||
"Text Splitter": "Rozdělovač textu",
|
||||
"Text-to-Speech": "Převod textu na řeč",
|
||||
"Text-to-Speech Engine": "Jádro pro převod textu na řeč",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Děkujeme za vaši zpětnou vazbu!",
|
||||
"The Application Account DN you bind with for search": "DN aplikačního účtu, se kterým se vážete pro vyhledávání",
|
||||
"The base to search for users": "Základ pro vyhledávání uživatelů",
|
||||
@@ -2053,6 +2061,7 @@
|
||||
"TTS Model": "Model TTS",
|
||||
"TTS Settings": "Nastavení TTS",
|
||||
"TTS Voice": "Hlas TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Typ",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Zadejte URL pro stažení z Hugging Face.",
|
||||
@@ -2155,6 +2164,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Varování: Povolení této volby umožní uživatelům nahrávat na server libovolný kód.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Varování: Spouštění Jupyteru umožňuje provádění libovolného kódu, což představuje vážná bezpečnostní rizika – postupujte s maximální opatrností.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "Webové API",
|
||||
"Web Loader Engine": "Jádro webového zavaděče",
|
||||
@@ -2171,6 +2181,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI bude odesílat požadavky na \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI bude odesílat požadavky na \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI bude odesílat požadavky na \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Čeho se snažíte dosáhnout?",
|
||||
"What are you working on?": "Na čem pracujete?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "Brugerdefineret parameternavn",
|
||||
"Custom Parameter Value": "Brugerdefineret parameterværdi",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "Danger Zone",
|
||||
"Dark": "Mørk",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "Videresender system bruger OAuth access token til autentificering",
|
||||
"Forwards system user session credentials to authenticate": "Videresender system bruger session credentials til autentificering",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Fuld kontekst tilstand",
|
||||
"Function": "Funktion",
|
||||
"Function Calling": "Funktionskald",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "Hjem",
|
||||
"Host": "Vært",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Hvordan kan jeg hjælpe dig i dag?",
|
||||
"How would you rate this response?": "Hvordan vurderer du dette svar?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Mistral OCR API nøgle påkrævet.",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Model",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' er blevet downloadet.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' er allerede i kø til download.",
|
||||
"Model {{modelId}} not found": "Model {{modelId}} ikke fundet",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Model {{modelName}} understøtter ikke billeder",
|
||||
"Model {{name}} is now {{status}}": "Model {{name}} er nu {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "Modeldeling",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "Mojeek Search API nøgle",
|
||||
"Monthly": "",
|
||||
"More": "Mere",
|
||||
"More Concise": "Mere kortfattet",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "Ollama Cloud API nøgle",
|
||||
"Ollama Version": "Ollama-version",
|
||||
"On": "Til",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Kun aktiv når \"Indsæt store tekster som fil\" indstillingen er slået til.",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "Kun aktiv når chat-input er fokuseret og en LLM er ved at generere et svar.",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "Kører",
|
||||
"Running...": "Kører...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Kører embedding-opgaver sideløbende for at fremskynde behandlingen. Slå fra hvis hastighedsbegrænsninger bliver et problem.",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Gem",
|
||||
"Save & Create": "Gem og opret",
|
||||
"Save & Update": "Gem og opdater",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "STT-model",
|
||||
"STT Settings": "STT-indstillinger",
|
||||
"Stylized PDF Export": "Stiliseret PDF eksport",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "Undertekst",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "Tekstopdeler",
|
||||
"Text-to-Speech": "Tekst-til-tale",
|
||||
"Text-to-Speech Engine": "Tekst-til-tale-engine",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Tak for din feedback!",
|
||||
"The Application Account DN you bind with for search": "Application Account DN du binder med til søgning",
|
||||
"The base to search for users": "Basen til at søge efter brugere",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "TTS-model",
|
||||
"TTS Settings": "TTS-indstillinger",
|
||||
"TTS Voice": "TTS-stemme",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Type",
|
||||
"Type here...": "Skriv her...",
|
||||
"Type Hugging Face Resolve (Download) URL": "Indtast Hugging Face Resolve (Download) URL",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Advarsel: Hvis du aktiverer dette, vil brugerne kunne uploade vilkårlig kode på serveren.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Advarsel: Jupyter-udførelse gør det muligt at udføre vilkårlig kode, hvilket udfordrer alvorlige sikkerhedsrisici - fortsæt med ekstremt omhyggelighed.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "Web API",
|
||||
"Web Loader Engine": "Web indlæser motor",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI vil lave forespørgsler til \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI vil lave forespørgsler til \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI vil lave forespørgsler til \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Hvad prøver du at opnå?",
|
||||
"What are you working on?": "Hvad arbejder du på?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "Benutzerdefiniertes Geschlecht",
|
||||
"Custom Parameter Name": "Name des benutzerdef. Parameters",
|
||||
"Custom Parameter Value": "Wert des benutzerdef. Parameters",
|
||||
"Daily": "",
|
||||
"Daily Messages": "Tägliche Nachrichten",
|
||||
"Danger Zone": "Gefahrenzone",
|
||||
"Dark": "Dunkel",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "Weiterleiten",
|
||||
"Forwards system user OAuth access token to authenticate": "Leitet OAuth-Zugriffstoken des Systembenutzers zur Authentifizierung weiter",
|
||||
"Forwards system user session credentials to authenticate": "Leitet Sitzungsdaten des Systembenutzers zur Authentifizierung weiter",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Vollkontext-Modus",
|
||||
"Function": "Funktion",
|
||||
"Function Calling": "Funktionsaufruf",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "History",
|
||||
"Home": "Startseite",
|
||||
"Host": "Host",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "Stündliche Nachrichten",
|
||||
"How can I help you today?": "Wie kann ich Ihnen heute helfen?",
|
||||
"How would you rate this response?": "Wie bewerten Sie diese Antwort?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Mistral-OCR-API-Schlüssel erforderlich.",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Modell",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Modell '{{modelName}}' wurde erfolgreich heruntergeladen.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Modell '{{modelTag}}' befindet sich bereits in der Warteschlange.",
|
||||
"Model {{modelId}} not found": "Modell {{modelId}} nicht gefunden",
|
||||
"Model {{modelName}} deleted successfully": "Modell {{modelName}} erfolgreich gelöscht",
|
||||
"Model {{modelName}} is not vision capable": "Das Modell {{modelName}} unterstützt keine Bilderkennung",
|
||||
"Model {{name}} is now {{status}}": "Modell {{name}} ist jetzt {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "Modelle teilen",
|
||||
"Mojeek": "Mojeek",
|
||||
"Mojeek Search API Key": "Mojeek Search API-Schlüssel",
|
||||
"Monthly": "",
|
||||
"More": "Mehr",
|
||||
"More Concise": "Kürzer",
|
||||
"More options": "Mehr Optionen",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "Ollama Cloud API-Schlüssel",
|
||||
"Ollama Version": "Ollama-Version",
|
||||
"On": "Ein",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Nur aktiv, wenn die Einstellung „Großen Text als Datei einfügen“ aktiviert ist.",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "Nur aktiv, wenn das Chat-Eingabefeld fokussiert ist und ein LLM eine Antwort generiert.",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "Läuft",
|
||||
"Running...": "Läuft...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Führt Embedding-Aufgaben parallel aus, um die Verarbeitung zu beschleunigen. Deaktivieren Sie dies, falls Rate-Limits oder Ressourcenprobleme auftreten.",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Speichern",
|
||||
"Save & Create": "Speichern & Erstellen",
|
||||
"Save & Update": "Speichern & Aktualisieren",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "STT-Modell",
|
||||
"STT Settings": "STT-Einstellungen",
|
||||
"Stylized PDF Export": "Stilisierter PDF-Export",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "Frage absenden",
|
||||
"Submit suggestion": "Vorschlag absenden",
|
||||
"Subtitle": "Untertitel",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "Text-Splitter",
|
||||
"Text-to-Speech": "Text-zu-Sprache",
|
||||
"Text-to-Speech Engine": "Text-zu-Sprache-Engine",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Danke für Ihr Feedback!",
|
||||
"The Application Account DN you bind with for search": "Der Anwendungs-Konto-DN für die Suche",
|
||||
"The base to search for users": "Die Basis, in der nach Benutzern gesucht wird",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "TTS-Modell",
|
||||
"TTS Settings": "TTS-Einstellungen",
|
||||
"TTS Voice": "TTS-Stimme",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Typ",
|
||||
"Type here...": "Hier eingeben...",
|
||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (Download) URL eingeben",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "Warnung: Wenn Sie dies aktivieren, können Nutzer geplante Prompts automatisch ausführen.",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Warnung: Wenn Sie dies aktivieren, können Benutzer beliebigen Code auf den Server hochladen.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Warnung: Die Jupyter-Ausführung ermöglicht beliebige Codeausführung und birgt erhebliche Sicherheitsrisiken – gehen Sie mit äußerster Vorsicht vor.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "Web-API",
|
||||
"Web Loader Engine": "Web-Loader-Engine",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI wird Anfragen an \"{{url}}\" senden",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI wird Anfragen an \"{{url}}/api/chat\" senden",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI wird Anfragen an \"{{url}}/chat/completions\" senden",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Was möchten Sie erreichen?",
|
||||
"What are you working on?": "Woran arbeiten Sie?",
|
||||
"What is NOT shared:": "Was NICHT geteilt wird:",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "Dark",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "",
|
||||
"Host": "",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "How can I halp u today?",
|
||||
"How would you rate this response?": "",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' has been successfully downloaded.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' is already in queue for downloading.",
|
||||
"Model {{modelId}} not found": "Model {{modelId}} not found",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "",
|
||||
"Model {{name}} is now {{status}}": "",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama Version",
|
||||
"On": "On",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "",
|
||||
"Running...": "Running... wow",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Save much wow",
|
||||
"Save & Create": "Save & Create much create",
|
||||
"Save & Update": "Save & Update much update",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "",
|
||||
"STT Settings": "STT Settings very settings",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Text-to-Speech Engine much speak",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "",
|
||||
"TTS Settings": "TTS Settings much settings",
|
||||
"TTS Voice": "",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL much download",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web very web",
|
||||
"Web API": "",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "Περιοχή Κινδύνου",
|
||||
"Dark": "Σκούρο",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Λειτουργία χρήσης όλων των συμφραζομένων",
|
||||
"Function": "Λειτουργία",
|
||||
"Function Calling": "",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "Αρχική",
|
||||
"Host": "Διακομιστής",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Πώς μπορώ να σας βοηθήσω σήμερα;",
|
||||
"How would you rate this response?": "Πώς θα βαθμολογούσατε αυτή την απάντηση;",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "Απαιτείται το API κλειδί του Mistral OCR.",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Μοντέλο",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Το μοντέλο '{{modelName}}' κατεβάστηκε με επιτυχία.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Το μοντέλο '{{modelTag}}' βρίσκεται ήδη στην ουρά για λήψη.",
|
||||
"Model {{modelId}} not found": "Το μοντέλο {{modelId}} δεν βρέθηκε",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Το μοντέλο {{modelName}} δεν έχει δυνατότητα όρασης",
|
||||
"Model {{name}} is now {{status}}": "Το μοντέλο {{name}} είναι τώρα {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "Κλειδί API Mojeek Search",
|
||||
"Monthly": "",
|
||||
"More": "Περισσότερα",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Έκδοση Ollama",
|
||||
"On": "Ενεργό",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "Εκτέλεση",
|
||||
"Running...": "Εκτέλεση...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Αποθήκευση",
|
||||
"Save & Create": "Αποθήκευση & Δημιουργία",
|
||||
"Save & Update": "Αποθήκευση & Ενημέρωση",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "Μοντέλο Μετατροπής Ομιλίας σε Κείμενο",
|
||||
"STT Settings": "Ρυθμίσεις Μετατροπής Ομιλίας σε Κείμενο",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "Διαχωριστής Κειμένου",
|
||||
"Text-to-Speech": "Κείμενο σε Ομιλία",
|
||||
"Text-to-Speech Engine": "Μηχανή Ομιλίας σε Κείμενο",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Ευχαριστούμε για τα σχόλιά σας!",
|
||||
"The Application Account DN you bind with for search": "Το DN του Λογαριασμού Εφαρμογής που συνδέετε για αναζήτηση",
|
||||
"The base to search for users": "Η βάση για αναζήτηση χρηστών",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "Μοντέλο μετατροπής Κειμένου σε Ομιλία",
|
||||
"TTS Settings": "Ρυθμίσεις μετατροπής Κειμένου σε Ομιλία",
|
||||
"TTS Voice": "Φωνή Κειμένου σε Ομιλία",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Τύπος",
|
||||
"Type here...": "Πληκτρολογήστε εδώ...",
|
||||
"Type Hugging Face Resolve (Download) URL": "Τύπος URL Ανάλυσης Hugging Face Resolve (Λήψη)",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Προειδοποίηση: Η ενεργοποίηση αυτού θα επιτρέψει στους χρήστες να ανεβάσουν αυθαίρετο κώδικα στον διακομιστή.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Προειδοποίηση: Η εκτέλεση του Jupyter επιτρέπει την εκτέλεση αυθαίρετου κώδικα, γεγονός που θέτει σοβαρούς κινδύνους ασφαλεία - προχωρήστε με εξαιρετική προσοχή.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Διαδίκτυο",
|
||||
"Web API": "",
|
||||
"Web Loader Engine": "Μηχανή Φόρτωσης Διαδικτύου",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "Το WebUI θα κάνει αιτήματα στο \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "Το WebUI θα κάνει αιτήματα στο \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "Το WebUI θα κάνει αιτήματα στο \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Τι προσπαθείτε να πετύχετε?",
|
||||
"What are you working on?": "Τι εργάζεστε;",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "",
|
||||
"Host": "",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "",
|
||||
"How would you rate this response?": "",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "",
|
||||
"Model {{modelId}} not found": "",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "",
|
||||
"Model {{name}} is now {{status}}": "",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "",
|
||||
"On": "",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "",
|
||||
"Running...": "",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "",
|
||||
"Save & Create": "",
|
||||
"Save & Update": "",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "",
|
||||
"STT Settings": "",
|
||||
"Stylized PDF Export": "Stylised PDF Export",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "",
|
||||
"TTS Settings": "",
|
||||
"TTS Voice": "",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "",
|
||||
"Web API": "",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "",
|
||||
"Host": "",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "",
|
||||
"How would you rate this response?": "",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "",
|
||||
"Model {{modelId}} not found": "",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "",
|
||||
"Model {{name}} is now {{status}}": "",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "",
|
||||
"On": "",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "",
|
||||
"Running...": "",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "",
|
||||
"Save & Create": "",
|
||||
"Save & Update": "",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "",
|
||||
"STT Settings": "",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "",
|
||||
"TTS Settings": "",
|
||||
"TTS Voice": "",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "",
|
||||
"Web API": "",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -481,6 +481,7 @@
|
||||
"Custom Gender": "Género Personalizado",
|
||||
"Custom Parameter Name": "Nombre del Parámetro Personalizado",
|
||||
"Custom Parameter Value": "Valor del Parámetro Personalizado",
|
||||
"Daily": "",
|
||||
"Daily Messages": "Mensajes Diarios",
|
||||
"Danger Zone": "Zona Peligrosa",
|
||||
"Dark": "Oscuro",
|
||||
@@ -971,6 +972,7 @@
|
||||
"Forward": "Reenviar",
|
||||
"Forwards system user OAuth access token to authenticate": "Reenvía el token de acceso OAuth del usuario del sistema para autenticarse",
|
||||
"Forwards system user session credentials to authenticate": "Reenvío de las credenciales de la sesión del usuario del sistema para autenticación",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Modo Contexto Completo",
|
||||
"Function": "Función",
|
||||
"Function Calling": "Modo de Llamada a Funciones (Herramientas)",
|
||||
@@ -1045,6 +1047,7 @@
|
||||
"History": "Historial",
|
||||
"Home": "Inicio",
|
||||
"Host": "Host",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "Mensajes por Hora",
|
||||
"How can I help you today?": "¿Cómo puedo ayudarte hoy?",
|
||||
"How would you rate this response?": "¿Cómo calificarías esta respuesta?",
|
||||
@@ -1267,10 +1270,10 @@
|
||||
"Mistral OCR": "OCR Mistral",
|
||||
"Mistral OCR API Key required.": "Clave API de Mistral OCR requerida",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Modelo",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Modelo '{{modelName}}' se ha descargado correctamente.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Modelo '{{modelTag}}' ya está en cola para descargar.",
|
||||
"Model {{modelId}} not found": "Modelo {{modelId}} no encontrado",
|
||||
"Model {{modelName}} deleted successfully": "Modelo {{modelName}} borrado correctamente",
|
||||
"Model {{modelName}} is not vision capable": "Modelo {{modelName}} no esta capacitado para visión",
|
||||
"Model {{name}} is now {{status}}": "Modelo {{name}} está ahora {{status}}",
|
||||
@@ -1311,6 +1314,7 @@
|
||||
"Models Sharing": "Compartir Modelos",
|
||||
"Mojeek": "Mojeek",
|
||||
"Mojeek Search API Key": "Clave API de Mojeek Search",
|
||||
"Monthly": "",
|
||||
"More": "Más",
|
||||
"More Concise": "Más Conciso",
|
||||
"More options": "Más Opciones",
|
||||
@@ -1431,6 +1435,7 @@
|
||||
"Ollama Cloud API Key": "Clave API de Ollama Cloud",
|
||||
"Ollama Version": "Versión de Ollama",
|
||||
"On": "Activado",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Solo activo cuando \"Pegar el Texto Largo como Archivo\" está activado",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "Solo activo con el foco en la entrada del chat y se está generando una respuesta",
|
||||
@@ -1677,6 +1682,7 @@
|
||||
"Running": "Ejecutando",
|
||||
"Running...": "Ejecutando...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Ejecuta tareas de incrustración concurrentes para acelerar el procesado. Desactivar si se generan problemas (por limitaciones de los motores de incrustracción en uso)",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Guardar",
|
||||
"Save & Create": "Guardar y Crear",
|
||||
"Save & Update": "Guardar y Actualizar",
|
||||
@@ -1893,6 +1899,7 @@
|
||||
"STT Model": "Modelo STT",
|
||||
"STT Settings": "Ajustes Voz a Texto (STT)",
|
||||
"Stylized PDF Export": "Exportar PDF Estilizado",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "Enviar pregunta",
|
||||
"Submit suggestion": "Enviar sugerencia",
|
||||
"Subtitle": "Subtítulo",
|
||||
@@ -1938,6 +1945,7 @@
|
||||
"Text Splitter": "Divisor de Texto",
|
||||
"Text-to-Speech": "Texto a Voz",
|
||||
"Text-to-Speech Engine": "Motor Texto a Voz(TTS)",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "¡Gracias por tu comentario!",
|
||||
"The Application Account DN you bind with for search": "Cuenta DN de la aplicación vinculada para búsqueda",
|
||||
"The base to search for users": "Base para buscar usuarios",
|
||||
@@ -2051,6 +2059,7 @@
|
||||
"TTS Model": "Modelo TTS",
|
||||
"TTS Settings": "Ajustes Texto a Voz (TTS)",
|
||||
"TTS Voice": "Voz TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Tipo",
|
||||
"Type here...": "Teclea aquí...",
|
||||
"Type Hugging Face Resolve (Download) URL": "Escribir la URL de Hugging Face Resolve (Descarga)",
|
||||
@@ -2153,6 +2162,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "Aviso: Habilitar esto permitirá a los usuarios ejecutar automáticamente indicadores programados.",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Aviso: Habilitar esto permitirá a los usuarios subir código arbitrario al servidor.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Aviso: La ejecución Jupyter habilita la ejecución de código arbitrario, planteando graves riesgos de seguridad; Proceder con extrema precaución.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "API Web",
|
||||
"Web Loader Engine": "Motor Cargador Web",
|
||||
@@ -2169,6 +2179,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI hará solicitudes a \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI hará solicitudes a \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI hará solicitudes a \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "¿Qué estás tratando de conseguir?",
|
||||
"What are you working on?": "¿En qué estás trabajando?",
|
||||
"What is NOT shared:": "Que NO es compartido:",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "Kohandatud sugu",
|
||||
"Custom Parameter Name": "Kohandatud parameetri nimi",
|
||||
"Custom Parameter Value": "Kohandatud parameetri väärtus",
|
||||
"Daily": "",
|
||||
"Daily Messages": "Päevased sõnumid",
|
||||
"Danger Zone": "Ohutsoon",
|
||||
"Dark": "Tume",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "Edastab süsteemikasutaja OAuthi juurdepääsumärgi autentimiseks",
|
||||
"Forwards system user session credentials to authenticate": "Edastab süsteemikasutaja seansi mandaadid autentimiseks",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Täiskonteksti režiim",
|
||||
"Function": "Funktsioon",
|
||||
"Function Calling": "Funktsiooni kutsumine",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "Ajalugu",
|
||||
"Home": "Avaleht",
|
||||
"Host": "Host",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "Tunni sõnumid",
|
||||
"How can I help you today?": "Kuidas saan teid täna aidata?",
|
||||
"How would you rate this response?": "Kuidas hindaksite seda vastust?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Mistral OCR API võti on nõutav.",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Mudel",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Mudel '{{modelName}}' on edukalt alla laaditud.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Mudel '{{modelTag}}' on juba allalaadimise järjekorras.",
|
||||
"Model {{modelId}} not found": "Mudelit {{modelId}} ei leitud",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Mudel {{modelName}} ei ole võimeline visuaalseid sisendeid töötlema",
|
||||
"Model {{name}} is now {{status}}": "Mudel {{name}} on nüüd {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "Mudelite jagamine",
|
||||
"Mojeek": "Mojeek",
|
||||
"Mojeek Search API Key": "Mojeek Search API võti",
|
||||
"Monthly": "",
|
||||
"More": "Rohkem",
|
||||
"More Concise": "Kokkuvõtlikum",
|
||||
"More options": "Rohkem valikuid",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "Ollama Cloud API Võti",
|
||||
"Ollama Version": "Ollama versioon",
|
||||
"On": "Sees",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Aktiivne ainult siis, kui seade \"Kleebi suur tekst failina\" on sisse lülitatud.",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "Aktiivne ainult siis, kui vestluse sisend on fookuses ja LLM genereerib vastust.",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "Töötab",
|
||||
"Running...": "Töötab...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Käitab manustamisülesandeid samaaegselt töötlemise kiirendamiseks. Lülitage välja, kui piirangud muutuvad probleemiks.",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Salvesta",
|
||||
"Save & Create": "Salvesta ja loo",
|
||||
"Save & Update": "Salvesta ja uuenda",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "STT mudel",
|
||||
"STT Settings": "STT seaded",
|
||||
"Stylized PDF Export": "Stiliseeritud PDF eksport",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "Esita küsimus",
|
||||
"Submit suggestion": "Esita soovitus",
|
||||
"Subtitle": "Alampealkiri",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "Teksti tükeldaja",
|
||||
"Text-to-Speech": "Text-to-Speech",
|
||||
"Text-to-Speech Engine": "Tekst-kõneks mootor",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Täname tagasiside eest!",
|
||||
"The Application Account DN you bind with for search": "Rakenduse konto DN, millega seote otsingu jaoks",
|
||||
"The base to search for users": "Baas kasutajate otsimiseks",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "TTS mudel",
|
||||
"TTS Settings": "TTS seaded",
|
||||
"TTS Voice": "TTS hääl",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Tüüp",
|
||||
"Type here...": "Sisestage siia...",
|
||||
"Type Hugging Face Resolve (Download) URL": "Sisestage Hugging Face Resolve (Allalaadimise) URL",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Hoiatus: Selle lubamine võimaldab kasutajatel üles laadida suvalist koodi serverisse.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Hoiatus: Jupyter täitmine võimaldab suvalise koodi käivitamist, mis kujutab endast tõsist turvariski - jätkake äärmise ettevaatusega.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Veeb",
|
||||
"Web API": "Veebi API",
|
||||
"Web Loader Engine": "Veebilaadija mootor",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI teeb päringuid aadressile \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI teeb päringuid aadressile \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI teeb päringuid aadressile \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Mida te püüate saavutada?",
|
||||
"What are you working on?": "Millega te tegelete?",
|
||||
"What is NOT shared:": "Mida EI jagata:",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "Iluna",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "Funtzioa",
|
||||
"Function Calling": "",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "",
|
||||
"Host": "Ostalaria",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Zertan lagun zaitzaket gaur?",
|
||||
"How would you rate this response?": "Nola baloratuko zenuke erantzun hau?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Modeloa",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' modeloa ongi deskargatu da.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' modeloa dagoeneko deskarga ilaran dago.",
|
||||
"Model {{modelId}} not found": "{{modelId}} modeloa ez da aurkitu",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "{{modelName}} modeloak ez du ikusmen gaitasunik",
|
||||
"Model {{name}} is now {{status}}": "{{name}} modeloa orain {{status}} dago",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "Mojeek bilaketa API gakoa",
|
||||
"Monthly": "",
|
||||
"More": "Gehiago",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama bertsioa",
|
||||
"On": "Piztuta",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "Exekutatzen",
|
||||
"Running...": "Exekutatzen...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Gorde",
|
||||
"Save & Create": "Gorde eta sortu",
|
||||
"Save & Update": "Gorde eta eguneratu",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "STT modeloa",
|
||||
"STT Settings": "STT ezarpenak",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "Testu banatzailea",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Testutik-ahotsera motorra",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Eskerrik asko zure iritzia emateagatik!",
|
||||
"The Application Account DN you bind with for search": "Bilaketarako lotzen duzun aplikazio kontuaren DN-a",
|
||||
"The base to search for users": "Erabiltzaileak bilatzeko oinarria",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "TTS modeloa",
|
||||
"TTS Settings": "TTS ezarpenak",
|
||||
"TTS Voice": "TTS ahotsa",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Mota",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Idatzi Hugging Face Resolve (Deskarga) URLa",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Abisua: Hau gaitzeak erabiltzaileei zerbitzarian kode arbitrarioa kargatzea ahalbidetuko die.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Weba",
|
||||
"Web API": "Web APIa",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI-k eskaerak egingo ditu \"{{url}}/api/chat\"-era",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI-k eskaerak egingo ditu \"{{url}}/chat/completions\"-era",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Zer lortu nahi duzu?",
|
||||
"What are you working on?": "Zertan ari zara lanean?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "نام پارامتر سفارشی",
|
||||
"Custom Parameter Value": "مقدار پارامتر سفارشی",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "منطقه خطر",
|
||||
"Dark": "تیره",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "ارسال توکن دسترسی OAuth کاربر سیستم برای احراز هویت",
|
||||
"Forwards system user session credentials to authenticate": "اعتبارنامه\u200cهای نشست کاربر سیستم را برای احراز هویت ارسال می\u200cکند",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "حالت متن کامل",
|
||||
"Function": "تابع",
|
||||
"Function Calling": "فراخوانی تابع",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "خانه",
|
||||
"Host": "میزبان",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "امروز چطور می توانم کمک تان کنم؟",
|
||||
"How would you rate this response?": "این پاسخ را چگونه ارزیابی می\u200cکنید؟",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "تشخیص متن میسترال",
|
||||
"Mistral OCR API Key required.": "کلید API تشخیص متن میسترال مورد نیاز است.",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "مدل",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "مدل '{{modelName}}' با موفقیت دانلود شد.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "مدل '{{modelTag}}' در حال حاضر در صف برای دانلود است.",
|
||||
"Model {{modelId}} not found": "مدل {{modelId}} یافت نشد",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "مدل {{modelName}} قادر به بینایی نیست",
|
||||
"Model {{name}} is now {{status}}": "مدل {{name}} در حال حاضر {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "کلید API جستجوی موجیک",
|
||||
"Monthly": "",
|
||||
"More": "بیشتر",
|
||||
"More Concise": "خلاصه\u200cتر",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "کلید API ابری اُلاما",
|
||||
"Ollama Version": "نسخه ollama",
|
||||
"On": "روشن",
|
||||
"Once": "",
|
||||
"OneDrive": "وان\u200cدرایو",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "فقط زمانی فعال است که تنظیم «چسباندن متن بزرگ به عنوان فایل» روشن باشد.",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "فقط زمانی فعال است که ورودی چت در فوکوس باشد و یک LLM در حال تولید پاسخ باشد.",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "در حال اجرا",
|
||||
"Running...": "در حال اجرا...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "ذخیره",
|
||||
"Save & Create": "ذخیره و ایجاد",
|
||||
"Save & Update": "ذخیره و به\u200cروزرسانی",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "مدل تبدیل صدا به متن",
|
||||
"STT Settings": "تنظیمات تبدیل صدا به متن",
|
||||
"Stylized PDF Export": "خروجی گرفتن از PDF با استایل",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "تقسیم\u200cکننده متن",
|
||||
"Text-to-Speech": "متن به گفتار",
|
||||
"Text-to-Speech Engine": "موتور تبدیل متن به گفتار",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "با تشکر از بازخورد شما!",
|
||||
"The Application Account DN you bind with for search": "DN حساب برنامه که برای جستجو به آن متصل می\u200cشوید",
|
||||
"The base to search for users": "پایه برای جستجوی کاربران",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "مدل TTS",
|
||||
"TTS Settings": "تنظیمات TTS",
|
||||
"TTS Voice": "صدای TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "نوع",
|
||||
"Type here...": "اینجا تایپ کنید...",
|
||||
"Type Hugging Face Resolve (Download) URL": "مقدار URL دانلود (Resolve) Hugging Face را وارد کنید",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "هشدار: فعال کردن این گزینه به کاربران اجازه می\u200cدهد کد دلخواه را روی سرور آپلود کنند.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "هشدار: اجرای ژوپیتر امکان اجرای کد دلخواه را فراهم می\u200cکند که خطرات امنیتی جدی به همراه دارد - با احتیاط زیاد ادامه دهید.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "وب",
|
||||
"Web API": "API وب",
|
||||
"Web Loader Engine": "موتور بارگذاری وب",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI به \"{{url}}\" درخواست خواهد داد",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI به \"{{url}}/api/chat\" درخواست خواهد داد",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI به \"{{url}}/chat/completions\" درخواست خواهد داد",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "به دنبال دستیابی به چه هدفی هستید؟",
|
||||
"What are you working on?": "روی چه چیزی کار می\u200cکنید؟",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "Muu sukupuoli",
|
||||
"Custom Parameter Name": "Mukautetun parametrin nimi",
|
||||
"Custom Parameter Value": "Mukautetun parametrin arvo",
|
||||
"Daily": "",
|
||||
"Daily Messages": "Päivittäiset viestit",
|
||||
"Danger Zone": "Vaara-alue",
|
||||
"Dark": "Tumma",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "Eteenpäin",
|
||||
"Forwards system user OAuth access token to authenticate": "Välittää järjestelmä käyttäjän OAuth tunniste todennuksessa",
|
||||
"Forwards system user session credentials to authenticate": "Välittää järjestelmän käyttäjän istunnon tunnistetiedot todennusta varten",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Koko kontekstitila",
|
||||
"Function": "Toiminto",
|
||||
"Function Calling": "Toiminto kutsu",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "Historia",
|
||||
"Home": "Koti",
|
||||
"Host": "Palvelin",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "Tuntikohtaiset viestit",
|
||||
"How can I help you today?": "Miten voin auttaa sinua tänään?",
|
||||
"How would you rate this response?": "Kuinka arvioisit tätä vastausta?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Mistral OCR api-avain vaaditaan",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Malli",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Malli '{{modelName}}' ladattiin onnistuneesti.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Malli '{{modelTag}}' on jo jonossa ladattavaksi.",
|
||||
"Model {{modelId}} not found": "Mallia {{modelId}} ei löytynyt",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Malli {{modelName}} ei kykene näkökykyyn",
|
||||
"Model {{name}} is now {{status}}": "Malli {{name}} on nyt {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "Mallien jako",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "Mojeek Search API -avain",
|
||||
"Monthly": "",
|
||||
"More": "Lisää",
|
||||
"More Concise": "Lyhyemmin",
|
||||
"More options": "Lisää vaihtoehtoja",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "Ollama Cloud API avain",
|
||||
"Ollama Version": "Ollama-versio",
|
||||
"On": "Päällä",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Aktiivinen vain, kun \"Liitä suuri teksti tiedostona\" -asetus on käytössä.",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "Aktiivinen vain, kun tekstikenttä on kohdistettuna ja LLM luo vastausta.",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "Käynnissä",
|
||||
"Running...": "Käynnissä...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Suorittaa upotustehtäviä samanaikaisesti käsittelyn nopeuttamiseksi. Poista käytöstä, jos kutsurajoituksesta tulee ongelma.",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Tallenna",
|
||||
"Save & Create": "Tallenna ja luo",
|
||||
"Save & Update": "Tallenna ja päivitä",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "Puheentunnistusmalli",
|
||||
"STT Settings": "Puheentunnistuksen asetukset",
|
||||
"Stylized PDF Export": "Muotoiltun PDF-vienti",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "Lähetä kysymys",
|
||||
"Submit suggestion": "Lähetä ehdotus",
|
||||
"Subtitle": "Alaotsikko",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "Tekstin jakaja",
|
||||
"Text-to-Speech": "Puhesynteesi",
|
||||
"Text-to-Speech Engine": "Puhesynteesimoottori",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Kiitos palautteestasi!",
|
||||
"The Application Account DN you bind with for search": "Hakua varten sidottu sovelluksen käyttäjätilin DN",
|
||||
"The base to search for users": "Käyttäjien haun perusta",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "Puhesynteesimalli",
|
||||
"TTS Settings": "Puhesynteesiasetukset",
|
||||
"TTS Voice": "Puhesynteesiääni",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Tyyppi",
|
||||
"Type here...": "Kirjoita tähän...",
|
||||
"Type Hugging Face Resolve (Download) URL": "Kirjoita Hugging Face -resolve-latausosoite",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Varoitus: Tämän käyttöönotto sallii käyttäjien ladata mielivaltaista koodia palvelimelle.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Varoitus: Jupyter käyttö voi mahdollistaa mielivaltaiseen koodin suorittamiseen, mikä voi aiheuttaa tietoturvariskejä - käytä äärimmäisen varoen.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "Web-API",
|
||||
"Web Loader Engine": "Verkkolataaja moottori",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI lähettää pyyntöjä osoitteeseen \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI lähettää pyyntöjä osoitteeseen \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI lähettää pyyntöjä osoitteeseen \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Mitä yrität saavuttaa?",
|
||||
"What are you working on?": "Mitä olet työskentelemässä?",
|
||||
"What is NOT shared:": "Mitä EI jaeta:",
|
||||
|
||||
@@ -481,6 +481,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "Nom du réglage personnalisé",
|
||||
"Custom Parameter Value": "Valeur du réglage personnalisé",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "Zone de danger",
|
||||
"Dark": "Sombre",
|
||||
@@ -971,6 +972,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "Transmet les identifiants de session de l'utilisateur pour l'authentification",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Mode avec injection complète dans le Context",
|
||||
"Function": "Fonction",
|
||||
"Function Calling": "Appel de fonction",
|
||||
@@ -1045,6 +1047,7 @@
|
||||
"History": "",
|
||||
"Home": "Home",
|
||||
"Host": "Hôte",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Comment puis-je vous aider aujourd'hui ?",
|
||||
"How would you rate this response?": "Comment évalueriez-vous cette réponse ?",
|
||||
@@ -1267,10 +1270,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Clé d'API pour Mistral OCR requise",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Modèle",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Le modèle '{{modelName}}' a été téléchargé avec succès.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Le modèle '{{modelTag}}' est déjà dans la file d'attente pour le téléchargement.",
|
||||
"Model {{modelId}} not found": "Modèle {{modelId}} introuvable",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Le modèle {{modelName}} n'a pas de capacités visuelles",
|
||||
"Model {{name}} is now {{status}}": "Le modèle {{name}} est désormais {{status}}.",
|
||||
@@ -1311,6 +1314,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "Clé API Mojeek",
|
||||
"Monthly": "",
|
||||
"More": "Plus",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1431,6 +1435,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Version d'Ollama",
|
||||
"On": "Activé",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1677,6 +1682,7 @@
|
||||
"Running": "Exécution",
|
||||
"Running...": "Exécution...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Enregistrer",
|
||||
"Save & Create": "Enregistrer & Créer",
|
||||
"Save & Update": "Enregistrer & Mettre à jour",
|
||||
@@ -1893,6 +1899,7 @@
|
||||
"STT Model": "Modèle de Speech-to-Text",
|
||||
"STT Settings": "Réglages de Speech-to-Text",
|
||||
"Stylized PDF Export": "Export de PDF stylisés",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1938,6 +1945,7 @@
|
||||
"Text Splitter": "Text Splitter",
|
||||
"Text-to-Speech": "Text-to-Speech",
|
||||
"Text-to-Speech Engine": "Moteur de Text-to-Speech",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Merci pour vos commentaires !",
|
||||
"The Application Account DN you bind with for search": "Le DN du compte de l'application avec lequel vous vous liez pour la recherche",
|
||||
"The base to search for users": "La base pour rechercher des utilisateurs",
|
||||
@@ -2051,6 +2059,7 @@
|
||||
"TTS Model": "Modèle de Text-to-Speech",
|
||||
"TTS Settings": "Réglages de Text-to-Speech",
|
||||
"TTS Voice": "Voix de Text-to-Speech",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Type",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Entrez l'URL de Téléchargement Hugging Face Resolve",
|
||||
@@ -2153,6 +2162,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Avertissement : Activer cette option permettra aux utilisateurs de télécharger du code arbitraire sur le serveur.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Avertissement : L'exécution Jupyter permet l'exécution de code arbitraire, ce qui présente des risques de sécurité importants. Procédez avec une extrême prudence.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "API Web",
|
||||
"Web Loader Engine": "Moteur de chargement Web",
|
||||
@@ -2169,6 +2179,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI effectuera des requêtes vers \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI fera des requêtes à \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI fera des requêtes à \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Que cherchez-vous à accomplir ?",
|
||||
"What are you working on?": "Sur quoi travaillez-vous ?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -481,6 +481,7 @@
|
||||
"Custom Gender": "Genre personnalisé",
|
||||
"Custom Parameter Name": "Nom du réglage personnalisé",
|
||||
"Custom Parameter Value": "Valeur du réglage personnalisé",
|
||||
"Daily": "",
|
||||
"Daily Messages": "Messages par jour",
|
||||
"Danger Zone": "Zone de danger",
|
||||
"Dark": "Sombre",
|
||||
@@ -971,6 +972,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "Transfère le jeton d'accès OAuth de l'utilisateur système pour l'authentification",
|
||||
"Forwards system user session credentials to authenticate": "Transmet les identifiants de session de l'utilisateur pour l'authentification",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Mode avec injection complète dans le contexte",
|
||||
"Function": "Fonction",
|
||||
"Function Calling": "Appel de fonction",
|
||||
@@ -1045,6 +1047,7 @@
|
||||
"History": "Historique",
|
||||
"Home": "Home",
|
||||
"Host": "Hôte",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "Messages par heure",
|
||||
"How can I help you today?": "Comment puis-je vous aider aujourd'hui ?",
|
||||
"How would you rate this response?": "Comment évalueriez-vous cette réponse ?",
|
||||
@@ -1267,10 +1270,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Clé d'API pour Mistral OCR requise",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Modèle",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Le modèle '{{modelName}}' a été téléchargé avec succès.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Le modèle '{{modelTag}}' est déjà dans la file d'attente pour le téléchargement.",
|
||||
"Model {{modelId}} not found": "Modèle {{modelId}} introuvable",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Le modèle {{modelName}} n'a pas de fonctionnalité de vision",
|
||||
"Model {{name}} is now {{status}}": "Le modèle {{name}} est désormais {{status}}.",
|
||||
@@ -1311,6 +1314,7 @@
|
||||
"Models Sharing": "Partage des modèles",
|
||||
"Mojeek": "Mojeek",
|
||||
"Mojeek Search API Key": "Clé API Mojeek",
|
||||
"Monthly": "",
|
||||
"More": "Plus",
|
||||
"More Concise": "Plus concis",
|
||||
"More options": "Plus d'options",
|
||||
@@ -1431,6 +1435,7 @@
|
||||
"Ollama Cloud API Key": "Clé API Ollama Cloud",
|
||||
"Ollama Version": "Version d'Ollama",
|
||||
"On": "Activé",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Uniquement lorsque le paramètre \"Coller un texte volumineux comme fichier\" est activé.",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "Uniquement lorsque la zone de saisie de la conversation est active et qu'un LLM génère une réponse.",
|
||||
@@ -1677,6 +1682,7 @@
|
||||
"Running": "Exécution",
|
||||
"Running...": "Exécution...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Exécute les tâches d'embedding en parallèle pour accélérer le traitement. Désactivez si les limites de débit posent problème.",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Enregistrer",
|
||||
"Save & Create": "Enregistrer & Créer",
|
||||
"Save & Update": "Enregistrer & Mettre à jour",
|
||||
@@ -1893,6 +1899,7 @@
|
||||
"STT Model": "Modèle de Speech-to-Text",
|
||||
"STT Settings": "Réglages de Speech-to-Text",
|
||||
"Stylized PDF Export": "Export de PDF stylisés",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "Envoyer la question",
|
||||
"Submit suggestion": "Soumettre la suggestion",
|
||||
"Subtitle": "Sous-titre",
|
||||
@@ -1938,6 +1945,7 @@
|
||||
"Text Splitter": "Découpage du texte",
|
||||
"Text-to-Speech": "Text-to-Speech",
|
||||
"Text-to-Speech Engine": "Moteur de Text-to-Speech",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Merci pour vos commentaires !",
|
||||
"The Application Account DN you bind with for search": "Le DN du compte de l'application avec lequel vous vous liez pour la recherche",
|
||||
"The base to search for users": "La base pour rechercher des utilisateurs",
|
||||
@@ -2051,6 +2059,7 @@
|
||||
"TTS Model": "Modèle de Text-to-Speech",
|
||||
"TTS Settings": "Réglages de Text-to-Speech",
|
||||
"TTS Voice": "Voix de Text-to-Speech",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Type",
|
||||
"Type here...": "Entrez votre message ici...",
|
||||
"Type Hugging Face Resolve (Download) URL": "Entrez l'URL de Téléchargement Hugging Face Resolve",
|
||||
@@ -2153,6 +2162,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Avertissement : Activer cette option permettra aux utilisateurs de télécharger du code arbitraire sur le serveur.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Avertissement : L'exécution Jupyter permet l'exécution de code arbitraire, ce qui présente des risques de sécurité importants. Procédez avec une extrême prudence.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "API Web",
|
||||
"Web Loader Engine": "Moteur de chargement Web",
|
||||
@@ -2169,6 +2179,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI effectuera des requêtes vers \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI fera des requêtes à \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI fera des requêtes à \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Que cherchez-vous à accomplir ?",
|
||||
"What are you working on?": "Sur quoi travaillez-vous ?",
|
||||
"What is NOT shared:": "Ce qui n'est PAS partagé :",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "Oscuro",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "Función",
|
||||
"Function Calling": "chamada de función",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "",
|
||||
"Host": "Host",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "¿Cómo podo axudarche hoxe?",
|
||||
"How would you rate this response?": "¿Cómo calificarías esta resposta?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Modelo",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "0 modelo '{{modelName}}' se ha descargado correctamente.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "0 modelo '{{modelTag}}' ya está en cola para descargar.",
|
||||
"Model {{modelId}} not found": "0 modelo {{modelId}} no fue encontrado",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "O modelo {{modelName}} no es capaz de ver",
|
||||
"Model {{name}} is now {{status}}": "O modelo {{name}} ahora es {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "chave API de Mojeek Search",
|
||||
"Monthly": "",
|
||||
"More": "mais",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Versión de Ollama",
|
||||
"On": "Activado",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "Executando",
|
||||
"Running...": "Executando...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Gardar",
|
||||
"Save & Create": "Gardar y xerar",
|
||||
"Save & Update": "Gardar y Actualizar",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "Modelo STT",
|
||||
"STT Settings": "Configuracions de STT",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "Divisor de texto",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Motor de texto a voz",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "¡Gracias pola tua retroalimentación!",
|
||||
"The Application Account DN you bind with for search": "A conta de aplicación DN que vincula para a búsqueda",
|
||||
"The base to search for users": "A base para buscar usuarios",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "Modelo TTS",
|
||||
"TTS Settings": "Configuración de TTS",
|
||||
"TTS Voice": "Voz do TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Tipo",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Escriba la URL (Descarga) de Hugging Face Resolve",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Advertencia: Habilitar esto permitirá a os usuarios subir código arbitrario no servidor.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Aviso: A execución de Jupyter permite a execución de código arbitrario, o que supón riscos de seguridade graves - procede con extrema precaución.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "API Web",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI hará solicitudes a \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI hará solicitudes a \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "¿Qué estás tratando de lograr?",
|
||||
"What are you working on?": "¿En qué estás trabajando?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -481,6 +481,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "כהה",
|
||||
@@ -971,6 +972,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
@@ -1045,6 +1047,7 @@
|
||||
"History": "",
|
||||
"Home": "בית",
|
||||
"Host": "",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "כיצד אוכל לעזור לך היום?",
|
||||
"How would you rate this response?": "",
|
||||
@@ -1267,10 +1270,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "המודל '{{modelName}}' הורד בהצלחה.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "המודל '{{modelTag}}' כבר בתור להורדה.",
|
||||
"Model {{modelId}} not found": "המודל {{modelId}} לא נמצא",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "דגם {{modelName}} אינו בעל יכולת ראייה",
|
||||
"Model {{name}} is now {{status}}": "דגם {{name}} הוא כעת {{status}}",
|
||||
@@ -1311,6 +1314,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "עוד",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1431,6 +1435,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "גרסת Ollama",
|
||||
"On": "פועל",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1677,6 +1682,7 @@
|
||||
"Running": "",
|
||||
"Running...": "פועל...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "שמור",
|
||||
"Save & Create": "שמור וצור",
|
||||
"Save & Update": "שמור ועדכן",
|
||||
@@ -1893,6 +1899,7 @@
|
||||
"STT Model": "",
|
||||
"STT Settings": "הגדרות חקירה של TTS",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1938,6 +1945,7 @@
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "מנוע טקסט לדיבור",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "תודה על המשוב שלך!",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2051,6 +2059,7 @@
|
||||
"TTS Model": "",
|
||||
"TTS Settings": "הגדרות TTS",
|
||||
"TTS Voice": "",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "סוג",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "הקלד כתובת URL של פתרון פנים מחבק (הורד)",
|
||||
@@ -2153,6 +2162,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "רשת",
|
||||
"Web API": "",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2169,6 +2179,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "डार्क",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "",
|
||||
"Host": "",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "आज मैं आपकी कैसे मदद कर सकता हूँ?",
|
||||
"How would you rate this response?": "",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "मॉडल '{{modelName}}' सफलतापूर्वक डाउनलोड हो गया है।",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "मॉडल '{{modelTag}}' पहले से ही डाउनलोड करने के लिए कतार में है।",
|
||||
"Model {{modelId}} not found": "मॉडल {{modelId}} नहीं मिला",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "मॉडल {{modelName}} दृष्टि सक्षम नहीं है",
|
||||
"Model {{name}} is now {{status}}": "मॉडल {{name}} अब {{status}} है",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "और..",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama Version",
|
||||
"On": "चालू",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "",
|
||||
"Running...": "चल रहा है...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "सहेजें",
|
||||
"Save & Create": "सहेजें और बनाएं",
|
||||
"Save & Update": "सहेजें और अपडेट करें",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "",
|
||||
"STT Settings": "STT सेटिंग्स ",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "टेक्स्ट-टू-स्पीच इंजन",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "आपकी प्रतिक्रिया के लिए धन्यवाद!",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "",
|
||||
"TTS Settings": "TTS सेटिंग्स",
|
||||
"TTS Voice": "",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "प्रकार",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "हगिंग फेस रिज़ॉल्व (डाउनलोड) यूआरएल टाइप करें",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "वेब",
|
||||
"Web API": "",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -481,6 +481,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "Tamno",
|
||||
@@ -971,6 +972,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
@@ -1045,6 +1047,7 @@
|
||||
"History": "",
|
||||
"Home": "",
|
||||
"Host": "",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Kako vam mogu pomoći danas?",
|
||||
"How would you rate this response?": "",
|
||||
@@ -1267,10 +1270,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' je uspješno preuzet.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je već u redu za preuzimanje.",
|
||||
"Model {{modelId}} not found": "Model {{modelId}} nije pronađen",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Model {{modelName}} ne čita vizualne impute",
|
||||
"Model {{name}} is now {{status}}": "Model {{name}} sada je {{status}}",
|
||||
@@ -1311,6 +1314,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "Više",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1431,6 +1435,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama verzija",
|
||||
"On": "Uključeno",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1677,6 +1682,7 @@
|
||||
"Running": "Pokrenuto",
|
||||
"Running...": "Pokrenuto...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Spremi",
|
||||
"Save & Create": "Spremi i stvori",
|
||||
"Save & Update": "Spremi i ažuriraj",
|
||||
@@ -1893,6 +1899,7 @@
|
||||
"STT Model": "STT model",
|
||||
"STT Settings": "STT postavke",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1938,6 +1945,7 @@
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Stroj za pretvorbu teksta u govor",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Hvala na povratnim informacijama!",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2051,6 +2059,7 @@
|
||||
"TTS Model": "TTS model",
|
||||
"TTS Settings": "TTS postavke",
|
||||
"TTS Voice": "TTS glas",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Tip",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Upišite Hugging Face Resolve (Download) URL",
|
||||
@@ -2153,6 +2162,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "Web API",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2169,6 +2179,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "Veszélyzóna",
|
||||
"Dark": "Sötét",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "Továbbítja a rendszer felhasználói munkamenet hitelesítő adatait a hitelesítéshez",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Teljes kontextus mód",
|
||||
"Function": "Funkció",
|
||||
"Function Calling": "Funkcióhívás",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "Kezdőlap",
|
||||
"Host": "Hoszt",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Hogyan segíthetek ma?",
|
||||
"How would you rate this response?": "Hogyan értékelnéd ezt a választ?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Mistral OCR API kulcs szükséges.",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Modell",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "A '{{modelName}}' modell sikeresen letöltve.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "A '{{modelTag}}' modell már a letöltési sorban van.",
|
||||
"Model {{modelId}} not found": "A {{modelId}} modell nem található",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "A {{modelName}} modell nem képes képfeldolgozásra",
|
||||
"Model {{name}} is now {{status}}": "A {{name}} modell most {{status}} állapotban van",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "Mojeek Search API kulcs",
|
||||
"Monthly": "",
|
||||
"More": "Több",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama verzió",
|
||||
"On": "Be",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "Fut",
|
||||
"Running...": "Fut...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Mentés",
|
||||
"Save & Create": "Mentés és létrehozás",
|
||||
"Save & Update": "Mentés és frissítés",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "STT modell",
|
||||
"STT Settings": "STT beállítások",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "Szöveg felosztó",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Szöveg-beszéd motor",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Köszönjük a visszajelzést!",
|
||||
"The Application Account DN you bind with for search": "Az alkalmazás fiók DN, amellyel kereséshez kötsz",
|
||||
"The base to search for users": "A felhasználók keresésének alapja",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "TTS modell",
|
||||
"TTS Settings": "TTS beállítások",
|
||||
"TTS Voice": "TTS hang",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Típus",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Adja meg a Hugging Face Resolve (Letöltési) URL-t",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Figyelmeztetés: Ennek engedélyezése lehetővé teszi a felhasználók számára, hogy tetszőleges kódot töltsenek fel a szerverre.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Figyelmeztetés: A Jupyter végrehajtás lehetővé teszi a tetszőleges kód végrehajtását, ami súlyos biztonsági kockázatot jelent – óvatosan folytassa.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "Web API",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "A WebUI kéréseket küld a \"{{url}}\" címre",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "A WebUI kéréseket küld a \"{{url}}/api/chat\" címre",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "A WebUI kéréseket küld a \"{{url}}/chat/completions\" címre",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Mit próbálsz elérni?",
|
||||
"What are you working on?": "Min dolgozol?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -479,6 +479,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "Gelap",
|
||||
@@ -969,6 +970,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
@@ -1043,6 +1045,7 @@
|
||||
"History": "",
|
||||
"Home": "",
|
||||
"Host": "",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Ada yang bisa saya bantu hari ini?",
|
||||
"How would you rate this response?": "",
|
||||
@@ -1265,10 +1268,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' telah berhasil diunduh.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' sudah berada dalam antrean untuk diunduh.",
|
||||
"Model {{modelId}} not found": "Model {{modelId}} tidak ditemukan",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Model {{modelName}} tidak dapat dilihat",
|
||||
"Model {{name}} is now {{status}}": "Model {{name}} sekarang menjadi {{status}}",
|
||||
@@ -1309,6 +1312,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "Lainnya",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1429,6 +1433,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Versi Ollama",
|
||||
"On": "Aktif",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1673,6 +1678,7 @@
|
||||
"Running": "Berjalan",
|
||||
"Running...": "Berjalan...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Simpan",
|
||||
"Save & Create": "Simpan & Buat",
|
||||
"Save & Update": "Simpan & Perbarui",
|
||||
@@ -1889,6 +1895,7 @@
|
||||
"STT Model": "Model STT",
|
||||
"STT Settings": "Pengaturan STT",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1934,6 +1941,7 @@
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Mesin Teks-ke-Suara",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Terima kasih atas umpan balik Anda!",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2047,6 +2055,7 @@
|
||||
"TTS Model": "Model TTS",
|
||||
"TTS Settings": "Pengaturan TTS",
|
||||
"TTS Voice": "Suara TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Ketik",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Ketik Hugging Face Resolve (Unduh) URL",
|
||||
@@ -2149,6 +2158,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "API Web",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2165,6 +2175,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "Inscne Saincheaptha",
|
||||
"Custom Parameter Name": "Ainm Paraiméadair Saincheaptha",
|
||||
"Custom Parameter Value": "Luach Paraiméadair Saincheaptha",
|
||||
"Daily": "",
|
||||
"Daily Messages": "Teachtaireachtaí Laethúla",
|
||||
"Danger Zone": "Crios Contúirte",
|
||||
"Dark": "Dorcha",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "Seolann sé comhartha rochtana OAuth úsáideora an chórais ar aghaidh chun fíordheimhniú a dhéanamh",
|
||||
"Forwards system user session credentials to authenticate": "Cuir dintiúir seisiúin úsáideora córais ar aghaidh lena bhfíordheimhniú",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Mód Comhthéacs Iomlán",
|
||||
"Function": "Feidhm",
|
||||
"Function Calling": "Glaonna Feidhme",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "Stair",
|
||||
"Home": "Baile",
|
||||
"Host": "Óstach",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "Teachtaireachtaí Uaireanta",
|
||||
"How can I help you today?": "Conas is féidir liom cabhrú leat inniu?",
|
||||
"How would you rate this response?": "Cad é mar a mheasfá an freagra seo?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "OCR Mistral",
|
||||
"Mistral OCR API Key required.": "Mistral OCR API Eochair ag teastáil.",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Samhail",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Rinneadh an tsamhail '{{modelName}}' a íoslódáil go rathúil.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Tá samhail '{{modelTag}}' sa scuaine cheana féin le híoslódáil.",
|
||||
"Model {{modelId}} not found": "Níor aimsíodh an tsamhail {{modelId}}",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Níl samhail {{modelName}} in ann amharc",
|
||||
"Model {{name}} is now {{status}}": "Tá samhail {{name}} {{status}} anois",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "Roinnt Samhlacha",
|
||||
"Mojeek": "Mojeek",
|
||||
"Mojeek Search API Key": "Eochair API Cuardach Mojeek",
|
||||
"Monthly": "",
|
||||
"More": "Tuilleadh",
|
||||
"More Concise": "Níos Gonta",
|
||||
"More options": "Tuilleadh roghanna",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "Eochair API Ollama Cloud",
|
||||
"Ollama Version": "Leagan Ollama",
|
||||
"On": "Ar",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Gníomhach amháin nuair a bhíonn an socrú \"Greamaigh Téacs Mór mar Chomhad\" casta air.",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "Gníomhach ach amháin nuair a bhíonn an t-ionchur comhrá i bhfócas agus nuair a bhíonn LLM ag giniúint freagra.",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "Ag rith",
|
||||
"Running...": "Ag rith...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Ritheann sé tascanna leabaithe ag an am céanna chun luas a chur leis an bpróiseáil. Múch é má bhíonn teorainneacha ráta ina bhfadhb.",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Sábháil",
|
||||
"Save & Create": "Sábháil & Cruthaigh",
|
||||
"Save & Update": "Sábháil & Nuashonraigh",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "Samhail STT",
|
||||
"STT Settings": "Socruithe STT",
|
||||
"Stylized PDF Export": "Easpórtáil PDF Stílithe",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "Cuir ceist isteach",
|
||||
"Submit suggestion": "Cuir moladh isteach",
|
||||
"Subtitle": "Fotheideal",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "Scoilteoir Téacs",
|
||||
"Text-to-Speech": "Téacs-go-Caint",
|
||||
"Text-to-Speech Engine": "Inneall téacs-go-labhra",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Go raibh maith agat as do chuid aiseolas!",
|
||||
"The Application Account DN you bind with for search": "An Cuntas Feidhmchláir DN a nascann tú leis le haghaidh cuardaigh",
|
||||
"The base to search for users": "An bonn chun cuardach a dhéanamh ar úsáideoirí",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "Samhail TTS",
|
||||
"TTS Settings": "Socruithe TTS",
|
||||
"TTS Voice": "Guth TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Cineál",
|
||||
"Type here...": "Clóscríobh anseo...",
|
||||
"Type Hugging Face Resolve (Download) URL": "Cineál Hugging Face Resolve (Íoslódáil) URL",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Rabhadh: Cuirfidh sé seo ar chumas úsáideoirí cód treallach a uaslódáil ar an bhfreastalaí.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Rabhadh: Trí fhorghníomhú Jupyter is féidir cód a fhorghníomhú go treallach, rud a chruthaíonn mór-rioscaí slándála - bí fíorchúramach.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Gréasán",
|
||||
"Web API": "API Gréasáin",
|
||||
"Web Loader Engine": "Inneall Luchtaithe Gréasáin",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "Déanfaidh WebUI iarratais ar \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "Déanfaidh WebUI iarratais ar \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "Déanfaidh WebUI iarratais ar \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Cad atá tú ag iarraidh a bhaint amach?",
|
||||
"What are you working on?": "Cad air a bhfuil tú ag obair?",
|
||||
"What is NOT shared:": "Cad NACH roinntear",
|
||||
|
||||
@@ -481,6 +481,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "Nome parametro personalizzato",
|
||||
"Custom Parameter Value": "Valore parametro personalizzato",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "Zona di pericolo",
|
||||
"Dark": "Scuro",
|
||||
@@ -971,6 +972,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "Inoltra le credenziali della sessione utente di sistema per autenticare",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Modalità Contesto Completo",
|
||||
"Function": "Funzione",
|
||||
"Function Calling": "Chiamata Funzione",
|
||||
@@ -1045,6 +1047,7 @@
|
||||
"History": "",
|
||||
"Home": "Home",
|
||||
"Host": "Host",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Come posso aiutarti oggi?",
|
||||
"How would you rate this response?": "Come valuteresti questa risposta?",
|
||||
@@ -1267,10 +1270,10 @@
|
||||
"Mistral OCR": "OCR Mistral",
|
||||
"Mistral OCR API Key required.": "La Chiave API OCR Mistral è richiesta.",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Modello",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Il modello '{{modelName}}' è stato scaricato con successo.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Il modello '{{modelTag}}' è già in coda per il download.",
|
||||
"Model {{modelId}} not found": "Modello {{modelId}} non trovato",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Il modello {{modelName}} non è in grado di vedere",
|
||||
"Model {{name}} is now {{status}}": "Il modello {{name}} è ora {{status}}",
|
||||
@@ -1311,6 +1314,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "Chiave API di Mojeek Search",
|
||||
"Monthly": "",
|
||||
"More": "Altro",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1431,6 +1435,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Versione Ollama",
|
||||
"On": "Attivato",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1677,6 +1682,7 @@
|
||||
"Running": "In esecuzione",
|
||||
"Running...": "In esecuzione...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Salva",
|
||||
"Save & Create": "Salva e crea",
|
||||
"Save & Update": "Salva e aggiorna",
|
||||
@@ -1893,6 +1899,7 @@
|
||||
"STT Model": "Modello STT",
|
||||
"STT Settings": "Impostazioni STT",
|
||||
"Stylized PDF Export": "Esportazione PDF Stilizzata",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1938,6 +1945,7 @@
|
||||
"Text Splitter": "Divisore di testo",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Motore da testo a voce",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Grazie per il tuo feedback!",
|
||||
"The Application Account DN you bind with for search": "L'account dell'applicazione DN con cui ti colleghi per la ricerca",
|
||||
"The base to search for users": "La base da cercare per gli utenti",
|
||||
@@ -2051,6 +2059,7 @@
|
||||
"TTS Model": "Modello TTS",
|
||||
"TTS Settings": "Impostazioni TTS",
|
||||
"TTS Voice": "Voce TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Digitare",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Digita URL di Risoluzione (Download) di Hugging Face",
|
||||
@@ -2153,6 +2162,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Attenzione: abilitando questo, gli utenti potranno caricare codice arbitrario sul server.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Attenzione: l'esecuzione di Jupyter consente l'esecuzione di codice arbitrario, comportando gravi rischi per la sicurezza: procedere con estrema cautela.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "API Web",
|
||||
"Web Loader Engine": "Motore di Caricamento Web",
|
||||
@@ -2169,6 +2179,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI farà richieste a \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI farà richieste a \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI farà richieste a \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Cosa stai cercando di ottenere?",
|
||||
"What are you working on?": "Su cosa stai lavorando?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -479,6 +479,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "カスタムパラメータ名",
|
||||
"Custom Parameter Value": "カスタムパラメータ値",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "危険地帯",
|
||||
"Dark": "ダーク",
|
||||
@@ -969,6 +970,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "システムユーザーセッションの資格情報を転送して認証する",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "フルコンテキストモード",
|
||||
"Function": "",
|
||||
"Function Calling": "Function呼び出し",
|
||||
@@ -1043,6 +1045,7 @@
|
||||
"History": "",
|
||||
"Home": "ホーム",
|
||||
"Host": "ホスト",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "今日はどのようにお手伝いしましょうか?",
|
||||
"How would you rate this response?": "この応答をどのように評価しますか?",
|
||||
@@ -1265,10 +1268,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "Mistral OCR APIキーが必要です。",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "モデル",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "モデル '{{modelName}}' が正常にダウンロードされました。",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "モデル '{{modelTag}}' はすでにダウンロード待機中です。",
|
||||
"Model {{modelId}} not found": "モデル {{modelId}} が見つかりません",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "モデル {{modelName}} は視覚に対応していません",
|
||||
"Model {{name}} is now {{status}}": "モデル {{name}} は {{status}} になりました。",
|
||||
@@ -1309,6 +1312,7 @@
|
||||
"Models Sharing": "モデルの共有",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "Mojeek Search APIキー",
|
||||
"Monthly": "",
|
||||
"More": "もっと見る",
|
||||
"More Concise": "より簡潔に",
|
||||
"More options": "",
|
||||
@@ -1429,6 +1433,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama バージョン",
|
||||
"On": "オン",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "\"大きなテキストをファイルとして貼り付ける\"がオンの場合にのみ有効です。",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "チャット入力欄にフォーカスがあり、LLMが応答を生成しているときのみ有効です。",
|
||||
@@ -1673,6 +1678,7 @@
|
||||
"Running": "実行中",
|
||||
"Running...": "実行中...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "保存",
|
||||
"Save & Create": "保存して作成",
|
||||
"Save & Update": "保存して更新",
|
||||
@@ -1889,6 +1895,7 @@
|
||||
"STT Model": "STTモデル",
|
||||
"STT Settings": "STT設定",
|
||||
"Stylized PDF Export": "スタイル付きPDFエクスポート",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "サブタイトル",
|
||||
@@ -1934,6 +1941,7 @@
|
||||
"Text Splitter": "テキスト分割",
|
||||
"Text-to-Speech": "テキスト音声変換",
|
||||
"Text-to-Speech Engine": "テキスト音声変換エンジン",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "ご意見ありがとうございます!",
|
||||
"The Application Account DN you bind with for search": "LDAP属性を使用してユーザーを検索するためにバインドするアプリケーションアカウントのDN。",
|
||||
"The base to search for users": "ユーザーを検索するためのベース。",
|
||||
@@ -2047,6 +2055,7 @@
|
||||
"TTS Model": "TTSモデル",
|
||||
"TTS Settings": "TTS 設定",
|
||||
"TTS Voice": "TTSボイス",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "種類",
|
||||
"Type here...": "ここに入力してください...",
|
||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ダウンロード) URL を入力してください",
|
||||
@@ -2149,6 +2158,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "警告: これを有効にすると、ユーザーがサーバー上で任意のコードをアップロードできるようになります。",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "警告: Jupyter 実行は任意のコード実行を可能にし、重大なセキュリティリスクを伴います。極めて慎重に進めてください。",
|
||||
"We_day_of_week": "",
|
||||
"Web": "ウェブ",
|
||||
"Web API": "ウェブAPI",
|
||||
"Web Loader Engine": "ウェブローダーエンジン",
|
||||
@@ -2165,6 +2175,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUIは\"{{url}}\"にリクエストを行います",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUIは\"{{url}}/api/chat\"にリクエストを行います",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUIは\"{{url}}/chat/completions\"にリクエストを行います",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "何を達成したいですか?",
|
||||
"What are you working on?": "何に取り組んでいますか?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "მორგებული პარამეტრის სახელი",
|
||||
"Custom Parameter Value": "მორგებული პარამეტრის მნიშვნელობა",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "საშიში ზონა",
|
||||
"Dark": "მუქი",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "სრული კონტექსტის რეჟიმი",
|
||||
"Function": "ფუნქცია",
|
||||
"Function Calling": "ფუნქციის გამოძახება",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "მთავარი",
|
||||
"Host": "ჰოსტი",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "რით შემიძლია დაგეხმაროთ დღეს?",
|
||||
"How would you rate this response?": "როგორ შეაფასებდით ამ პასუხს?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "მოდელი",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "მოდელის „{{modelName}}“ გადმოწერა წარმატებით დასრულდა.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "მოდელი „{{modelTag}}“ უკვე გადმოწერის რიგშია.",
|
||||
"Model {{modelId}} not found": "მოდელი {{modelId}} აღმოჩენილი არაა",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Model {{modelName}} is not vision capable",
|
||||
"Model {{name}} is now {{status}}": "Model {{name}} is now {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "მეტი",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "Ollama Cloud API-ის გასაღები",
|
||||
"Ollama Version": "Ollama ვერსია",
|
||||
"On": "ჩართული",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "გაშვებულია",
|
||||
"Running...": "გაშვებულია...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "შენახვა",
|
||||
"Save & Create": "შენახვა და შექმნა",
|
||||
"Save & Update": "შენახვა და განახლება",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "STT მოდელი",
|
||||
"STT Settings": "STT-ის მორგება",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "ტექსტის გამყოფი",
|
||||
"Text-to-Speech": "ტექსტის-ხმამაღლა-წაკითხვა",
|
||||
"Text-to-Speech Engine": "ტექსტურ-ხმოვანი ძრავი",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "მადლობა გამოხმაურებისთვის!",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "TTS მოდელი",
|
||||
"TTS Settings": "TTS პარამეტრები",
|
||||
"TTS Voice": "TTS ხმა",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "ტიპი",
|
||||
"Type here...": "აკრიფეთ აქ...",
|
||||
"Type Hugging Face Resolve (Download) URL": "აკრიფეთ HuggingFace-ის ამოხსნის (გადმოწერის) URL",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "ვები",
|
||||
"Web API": "Web API",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "რას ცდილობთ, მიაღწიოთ?",
|
||||
"What are you working on?": "რაზე მუშაობთ?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "Isem n uɣewwar udmawan",
|
||||
"Custom Parameter Value": "Azal n uɣewwar udmawan",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "Tamnaḍt i iweɛren",
|
||||
"Dark": "Aberkan",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "Welleh inekcam n tɣimit n useqdac i usesteb",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Askar n usatal aččuran",
|
||||
"Function": "Tasɣent",
|
||||
"Function Calling": "Asiwel n twuriwin",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "Agejdan",
|
||||
"Host": "Asneftaɣ",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Amek i zemreɣ ad k·kem-ɛiwneɣ ass-a?",
|
||||
"How would you rate this response?": "Amek ara d-teskefleḍ tiririt-a?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "API Mistral OCR Tesri tasarut.",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Tamudemt",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Tettwasider-d tmudemt '{{modelName}}' akken iwata.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Tamudemt '{{modelTag}}' ha-t-an yakan deg tebdart n usader.",
|
||||
"Model {{modelId}} not found": "Tamudemt {{modelId}} ulac-itt",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Mudel Isem}} mačči d tamuɣli izemren ad tili",
|
||||
"Model {{name}} is now {{status}}": "Tamudemt {{name}} tura {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "Tasarut API n Mojeek",
|
||||
"Monthly": "",
|
||||
"More": "Ugar",
|
||||
"More Concise": "Awezlan ugar",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "Tasarut API n Ollama Cloud",
|
||||
"Ollama Version": "Lqem n Ollama",
|
||||
"On": "Irmed",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "Aselkem",
|
||||
"Running...": "Aselkem...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Sekles",
|
||||
"Save & Create": "Sekles rnu snulfu-d",
|
||||
"Save & Update": "Sekles rnu leqqem",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "Tamudemt n uɛqal n taɣect",
|
||||
"STT Settings": "Iɣewwaren n uɛqal n tavect",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "Amebḍay n uḍris",
|
||||
"Text-to-Speech": "Aḍris-ɣer-taɣect",
|
||||
"Text-to-Speech Engine": "Amsadday n TTS",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Tanemmirt ɣef tikti-inek·inem!",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "Taffa n unadi ɣef yiseqdacen",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "Tamudemt TTS",
|
||||
"TTS Settings": "Iɣewwaṛen n TTS",
|
||||
"TTS Voice": "Taɣect n TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Anaw",
|
||||
"Type here...": "Aru da…",
|
||||
"Type Hugging Face Resolve (Download) URL": "Anaw n usefres n wudem amezwer (Download) URL",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Ɣur-k: Asewḥel n waya ad yeǧǧ iseqdacen ad d-salin tangalt tazurant ɣef uqeddac.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Ɣur-k: Asselkem n Jupyter yettaǧǧa asselkem n tengalt tazurant, d tukksa n tmijwin n tɣellist qessiḥen — s leḥder meqqren.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "API Web",
|
||||
"Web Loader Engine": "Amsedday n uzdam Web",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI ad ssutreɣ \"{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI ad ssutreɣ i \"{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI ad ssutreɣ i \"{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Sanda ay tettarmed ad tessiwḍed?",
|
||||
"What are you working on?": "Ɣef wacu ay la tettmahaled?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -479,6 +479,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "사용자 정의 매개변수 이름",
|
||||
"Custom Parameter Value": "사용자 정의 매개변수 값",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "위험 기능",
|
||||
"Dark": "다크",
|
||||
@@ -969,6 +970,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "인증을 위해 시스템 사용자 OAuth 액세스 토큰을 전달합니다.",
|
||||
"Forwards system user session credentials to authenticate": "인증을 위해 시스템 사용자 세션 자격 증명 전달",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "전체 컨텍스트 모드",
|
||||
"Function": "함수",
|
||||
"Function Calling": "함수 호출",
|
||||
@@ -1043,6 +1045,7 @@
|
||||
"History": "",
|
||||
"Home": "홈",
|
||||
"Host": "호스트",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "무엇을 도와드릴까요?",
|
||||
"How would you rate this response?": "이 응답을 어떻게 평가하시겠어요?",
|
||||
@@ -1265,10 +1268,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "Mistral OCR API Key가 필요합니다.",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "모델",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "모델 '{{modelName}}'이/가 성공적으로 다운로드되었습니다.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "모델 '{{modelTag}}'은/는 이미 다운로드 대기열에 있습니다.",
|
||||
"Model {{modelId}} not found": "모델 {{modelId}}을/를 찾을 수 없습니다.",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "모델 {{modelName}}은/는 비전을 사용할 수 없습니다.",
|
||||
"Model {{name}} is now {{status}}": "모델 {{name}}은/는 이제 {{status}} 상태입니다.",
|
||||
@@ -1309,6 +1312,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "Mojeek Search API 키",
|
||||
"Monthly": "",
|
||||
"More": "더보기",
|
||||
"More Concise": "더 간결하게",
|
||||
"More options": "",
|
||||
@@ -1429,6 +1433,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama 버전",
|
||||
"On": "켜기",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "\"긴 텍스트를 파일로 붙여넣기\" 설정이 켜져 있을 때만 작동합니다.",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "채팅 입력창이 선택되어 있고 LLM이 응답을 생성 중일 때만 작동합니다.",
|
||||
@@ -1673,6 +1678,7 @@
|
||||
"Running": "실행 중",
|
||||
"Running...": "실행 중...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "저장",
|
||||
"Save & Create": "저장 및 생성",
|
||||
"Save & Update": "저장 및 업데이트",
|
||||
@@ -1889,6 +1895,7 @@
|
||||
"STT Model": "STT 모델",
|
||||
"STT Settings": "STT 설정",
|
||||
"Stylized PDF Export": "서식이 적용된 PDF 내보내기",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1934,6 +1941,7 @@
|
||||
"Text Splitter": "텍스트 나누기",
|
||||
"Text-to-Speech": "텍스트-음성 변환",
|
||||
"Text-to-Speech Engine": "텍스트-음성 변환 엔진",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "피드백 감사합니다!",
|
||||
"The Application Account DN you bind with for search": "검색을 위해 바인딩하는 애플리케이션 계정 DN",
|
||||
"The base to search for users": "사용자를 검색할 수 있는 기반",
|
||||
@@ -2047,6 +2055,7 @@
|
||||
"TTS Model": "TTS 모델",
|
||||
"TTS Settings": "TTS 설정",
|
||||
"TTS Voice": "TTS 음성",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "입력",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (다운로드) URL 입력",
|
||||
@@ -2149,6 +2158,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "주의: 이 기능을 활성화하면 사용자가 서버에 임의 코드를 업로드할 수 있습니다.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "경고: Jupyter 실행은 임의의 코드 실행을 가능하게 하여 심각한 보안 위험을 초래합니다. — 매우 신중하게 진행하세요.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "웹",
|
||||
"Web API": "웹 API",
|
||||
"Web Loader Engine": "웹 로더 엔진",
|
||||
@@ -2165,6 +2175,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI가 \"{{url}}\"로 요청을 보냅니다",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI가 \"{{url}}/api/chat\"로 요청을 보냅니다",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI가 \"{{url}}/chat/completions\"로 요청을 보냅니다",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "무엇을 성취하고 싶으신가요?",
|
||||
"What are you working on?": "어떤 작업을 하고 계신가요?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -482,6 +482,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "Tamsus",
|
||||
@@ -972,6 +973,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
@@ -1046,6 +1048,7 @@
|
||||
"History": "",
|
||||
"Home": "",
|
||||
"Host": "",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Kuo galėčiau Jums padėti ?",
|
||||
"How would you rate this response?": "",
|
||||
@@ -1268,10 +1271,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' modelis sėkmingai atsisiųstas.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Modelis '{{modelTag}}' jau atsisiuntimų eilėje.",
|
||||
"Model {{modelId}} not found": "Modelis {{modelId}} nerastas",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Modelis {{modelName}} neturi vaizdo gebėjimų",
|
||||
"Model {{name}} is now {{status}}": "Modelis {{name}} dabar {{status}}",
|
||||
@@ -1312,6 +1315,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "Daugiau",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1432,6 +1436,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama versija",
|
||||
"On": "Aktyvuota",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1679,6 +1684,7 @@
|
||||
"Running": "Veikia",
|
||||
"Running...": "Veikia...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Išsaugoti",
|
||||
"Save & Create": "Išsaugoti ir sukurti",
|
||||
"Save & Update": "Išsaugoti ir atnaujinti",
|
||||
@@ -1895,6 +1901,7 @@
|
||||
"STT Model": "STT modelis",
|
||||
"STT Settings": "STT nustatymai",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1940,6 +1947,7 @@
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Balso sintezės modelis",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Ačiū už atsiliepimus",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2053,6 +2061,7 @@
|
||||
"TTS Model": "TTS modelis",
|
||||
"TTS Settings": "TTS parametrai",
|
||||
"TTS Voice": "TTS balsas",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Tipas",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Įveskite Hugging Face Resolve nuorodą",
|
||||
@@ -2155,6 +2164,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "Web API",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2171,6 +2181,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -481,6 +481,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "Pielāgota parametra nosaukums",
|
||||
"Custom Parameter Value": "Pielāgota parametra vērtība",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "Bīstamā zona",
|
||||
"Dark": "Tumšs",
|
||||
@@ -971,6 +972,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "Pārsūta sistēmas lietotāja OAuth piekļuves tokenu autentifikācijai",
|
||||
"Forwards system user session credentials to authenticate": "Pārsūta sistēmas lietotāja sesijas akreditācijas datus autentifikācijai",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Pilna konteksta režīms",
|
||||
"Function": "Funkcija",
|
||||
"Function Calling": "Funkciju izsaukšana",
|
||||
@@ -1045,6 +1047,7 @@
|
||||
"History": "",
|
||||
"Home": "Sākums",
|
||||
"Host": "Hosts",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Kā es varu jums šodien palīdzēt?",
|
||||
"How would you rate this response?": "Kā jūs novērtētu šo atbildi?",
|
||||
@@ -1267,10 +1270,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Nepieciešama Mistral OCR API atslēga.",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Modelis",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Modelis '{{modelName}}' ir veiksmīgi lejupielādēts.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Modelis '{{modelTag}}' jau ir lejupielādes rindā.",
|
||||
"Model {{modelId}} not found": "Modelis {{modelId}} nav atrasts",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Modelis {{modelName}} neatbalsta redzi",
|
||||
"Model {{name}} is now {{status}}": "Modelis {{name}} tagad ir {{status}}",
|
||||
@@ -1311,6 +1314,7 @@
|
||||
"Models Sharing": "Modeļu kopīgošana",
|
||||
"Mojeek": "Mojeek",
|
||||
"Mojeek Search API Key": "Mojeek Search API atslēga",
|
||||
"Monthly": "",
|
||||
"More": "Vairāk",
|
||||
"More Concise": "Kodolīgāk",
|
||||
"More options": "",
|
||||
@@ -1431,6 +1435,7 @@
|
||||
"Ollama Cloud API Key": "Ollama Cloud API atslēga",
|
||||
"Ollama Version": "Ollama versija",
|
||||
"On": "Ieslēgts",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Aktīvs tikai, ja ir ieslēgts iestatījums \"Ielīmēt lielu tekstu kā failu\".",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "Aktīvs tikai, kad tērzēšanas ievade ir fokusā un LLM ģenerē atbildi.",
|
||||
@@ -1677,6 +1682,7 @@
|
||||
"Running": "Darbojas",
|
||||
"Running...": "Darbojas...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Palaiž iegulšanas uzdevumus vienlaicīgi, lai paātrinātu apstrādi. Izslēdziet, ja rodas ātruma ierobežojumu problēmas.",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Saglabāt",
|
||||
"Save & Create": "Saglabāt un izveidot",
|
||||
"Save & Update": "Saglabāt un atjaunināt",
|
||||
@@ -1893,6 +1899,7 @@
|
||||
"STT Model": "STT modelis",
|
||||
"STT Settings": "STT iestatījumi",
|
||||
"Stylized PDF Export": "Stilizēts PDF eksports",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "Apakšvirsraksts",
|
||||
@@ -1938,6 +1945,7 @@
|
||||
"Text Splitter": "Teksta sadalītājs",
|
||||
"Text-to-Speech": "Teksts uz runu",
|
||||
"Text-to-Speech Engine": "Teksta uz runas dzinējs",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Paldies par jūsu atsauksmēm!",
|
||||
"The Application Account DN you bind with for search": "Lietojumprogrammas konta DN, ar kuru saistāties meklēšanai",
|
||||
"The base to search for users": "Bāze lietotāju meklēšanai",
|
||||
@@ -2051,6 +2059,7 @@
|
||||
"TTS Model": "TTS modelis",
|
||||
"TTS Settings": "TTS iestatījumi",
|
||||
"TTS Voice": "TTS balss",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Tips",
|
||||
"Type here...": "Rakstiet šeit...",
|
||||
"Type Hugging Face Resolve (Download) URL": "Ievadiet Hugging Face Resolve (lejupielādes) URL",
|
||||
@@ -2153,6 +2162,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Brīdinājums: Šīs opcijas iespējošana ļaus lietotājiem augšupielādēt patvaļīgu kodu serverī.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Brīdinājums: Jupyter izpilde ļauj patvaļīgu koda izpildi, radot nopietnus drošības riskus — rīkojieties ar ārkārtēju piesardzību.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Tīmeklis",
|
||||
"Web API": "Tīmekļa API",
|
||||
"Web Loader Engine": "Tīmekļa ielādētāja dzinējs",
|
||||
@@ -2169,6 +2179,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI veiks pieprasījumus uz \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI veiks pieprasījumus uz \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI veiks pieprasījumus uz \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Ko jūs mēģināt sasniegt?",
|
||||
"What are you working on?": "Pie kā jūs strādājat?",
|
||||
"What is NOT shared:": "Kas NETIEK kopīgots:",
|
||||
|
||||
@@ -479,6 +479,7 @@
|
||||
"Custom Gender": "Jantina Tersuai",
|
||||
"Custom Parameter Name": "Nama Parameter Tersuai",
|
||||
"Custom Parameter Value": "Nilai Parameter Tersuai",
|
||||
"Daily": "",
|
||||
"Daily Messages": "Mesej Harian",
|
||||
"Danger Zone": "Zon Bahaya",
|
||||
"Dark": "Gelap",
|
||||
@@ -969,6 +970,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "Meneruskan token akses OAuth pengguna sistem untuk pengesahan",
|
||||
"Forwards system user session credentials to authenticate": "Meneruskan bukti kelayakan sesi pengguna sistem untuk pengesahan",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Mod Konteks Penuh",
|
||||
"Function": "Fungsi",
|
||||
"Function Calling": "Pemanggilan Fungsi",
|
||||
@@ -1043,6 +1045,7 @@
|
||||
"History": "Sejarah",
|
||||
"Home": "Halaman Utama",
|
||||
"Host": "Hos",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "Mesej Setiap Jam",
|
||||
"How can I help you today?": "Bagaimana saya boleh membantu anda hari ini?",
|
||||
"How would you rate this response?": "Bagaimana anda menilai respons ini?",
|
||||
@@ -1265,10 +1268,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Kunci API Mistral OCR diperlukan.",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Model",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{ modelName }}' telah berjaya dimuat turun.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{ modelTag }}' sudah dalam baris gilir untuk dimuat turun.",
|
||||
"Model {{modelId}} not found": "Model {{ modelId }} tidak dijumpai",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Model {{ modelName }} tidak mempunyai keupayaan penglihatan",
|
||||
"Model {{name}} is now {{status}}": "Model {{name}} kini {{status}}",
|
||||
@@ -1309,6 +1312,7 @@
|
||||
"Models Sharing": "Perkongsian Model",
|
||||
"Mojeek": "Mojeek",
|
||||
"Mojeek Search API Key": "Kunci API Pencarian Mojeek",
|
||||
"Monthly": "",
|
||||
"More": "Lagi",
|
||||
"More Concise": "Lebih Ringkas",
|
||||
"More options": "Lebih banyak pilihan",
|
||||
@@ -1429,6 +1433,7 @@
|
||||
"Ollama Cloud API Key": "Kunci API Ollama Cloud",
|
||||
"Ollama Version": "Versi Ollama",
|
||||
"On": "Hidup",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Hanya aktif apabila tetapan \"Tampal Teks Besar sebagai Fail\" dihidupkan.",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "Hanya aktif apabila input sembang berada dalam fokus dan LLM sedang menjana respons.",
|
||||
@@ -1673,6 +1678,7 @@
|
||||
"Running": "Sedang dijalankan",
|
||||
"Running...": "Sedang dijalankan...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Menjalankan tugas penyisipan secara serentak untuk mempercepatkan pemprosesan. Matikan jika had kadar menjadi isu.",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Simpan",
|
||||
"Save & Create": "Simpan & Cipta",
|
||||
"Save & Update": "Simpan & Kemas Kini",
|
||||
@@ -1889,6 +1895,7 @@
|
||||
"STT Model": "Model STT",
|
||||
"STT Settings": "Tetapan STT",
|
||||
"Stylized PDF Export": "Eksport PDF Bergaya",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "Hantar soalan",
|
||||
"Submit suggestion": "Hantar cadangan",
|
||||
"Subtitle": "Subtitle",
|
||||
@@ -1934,6 +1941,7 @@
|
||||
"Text Splitter": "Pemisah Teks",
|
||||
"Text-to-Speech": "Teks-ke-Ucapan",
|
||||
"Text-to-Speech Engine": "Enjin Teks-ke-Ucapan",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Terima kasih atas maklum balas anda!",
|
||||
"The Application Account DN you bind with for search": "DN Akaun Aplikasi yang anda ikat untuk carian",
|
||||
"The base to search for users": "Pangkalan untuk mencari pengguna",
|
||||
@@ -2047,6 +2055,7 @@
|
||||
"TTS Model": "Model TTS",
|
||||
"TTS Settings": "Tetapan TTS",
|
||||
"TTS Voice": "Suara TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "jenis",
|
||||
"Type here...": "Taip di sini...",
|
||||
"Type Hugging Face Resolve (Download) URL": "Taip URL 'Hugging Face Resolve (Download)'",
|
||||
@@ -2149,6 +2158,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Amaran: Mengaktifkan ini akan membenarkan pengguna memuat naik kod arbitrari pada pelayan.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Amaran: Pelaksanaan Jupyter membolehkan pelaksanaan kod arbitrari, menimbulkan risiko keselamatan yang teruk—teruskan dengan berhati-hati.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "API Web",
|
||||
"Web Loader Engine": "Enjin Pemuatan Web",
|
||||
@@ -2165,6 +2175,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI akan membuat permintaan ke \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI akan membuat permintaan ke \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI akan membuat permintaan ke \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Apa yang ingin anda capai?",
|
||||
"What are you working on?": "Apa yang sedang anda kerjakan?",
|
||||
"What is NOT shared:": "Apa yang TIDAK dikongsi:",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "Mørk",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Modus for full kontekst",
|
||||
"Function": "Funksjon",
|
||||
"Function Calling": "Kalling av funksjon",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "Hjem",
|
||||
"Host": "Host",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Hva kan jeg hjelpe deg med i dag?",
|
||||
"How would you rate this response?": "Hvordan vurderer du dette svaret?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Modell",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Modellen {{modelName}} er lastet ned.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Modellen {{modelTag}} er allerede i nedlastingskøen.",
|
||||
"Model {{modelId}} not found": "Finner ikke modellen {{modelId}}",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Modellen {{modelName}} er ikke egnet til visuelle data",
|
||||
"Model {{name}} is now {{status}}": "Modellen {{name}} er nå {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "API-nøekkel for Mojeek Search",
|
||||
"Monthly": "",
|
||||
"More": "Mer",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama-versjon",
|
||||
"On": "Aktivert",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "Kjører",
|
||||
"Running...": "Kjører...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Lagre",
|
||||
"Save & Create": "Lagre og opprett",
|
||||
"Save & Update": "Lagre og oppdater",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "STT-modell",
|
||||
"STT Settings": "STT-innstillinger",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "Oppdeling av tekst",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Tekst-til-tale-motor",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Takk for tilbakemeldingen!",
|
||||
"The Application Account DN you bind with for search": "Applikasjonskontoens DN du binder deg med for søking",
|
||||
"The base to search for users": "Basen for å søke etter brukere",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "TTS-modell",
|
||||
"TTS Settings": "TTS-innstillinger",
|
||||
"TTS Voice": "TTS-stemme",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Type",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Angi nedlastings-Resolve-URL for Hugging Face",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Advarsel: Hvis du aktiverer denne funksjonen, kan brukere laste opp vilkårlig kode på serveren.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Advarsel! Jupyter gjør det mulig å kjøre vilkårlig kode, noe som utgjør en alvorlig sikkerhetsrisiko. Utvis ekstrem forsiktighet.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "Web-API",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI vil rette forespørsler til \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI vil rette forespørsler til \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Hva prøver du å oppnå?",
|
||||
"What are you working on?": "Hva jobber du på nå?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "Gevarenzone",
|
||||
"Dark": "Donker",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Volledige contextmodus",
|
||||
"Function": "Functie",
|
||||
"Function Calling": "Functieaanroep",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "Thuis",
|
||||
"Host": "Host",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Hoe kan ik je vandaag helpen?",
|
||||
"How would you rate this response?": "Hoe zou je dit antwoord beoordelen?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Model",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' is succesvol gedownload.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' staat al in de wachtrij voor downloaden.",
|
||||
"Model {{modelId}} not found": "Model {{modelId}} niet gevonden",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Model {{modelName}} is niet geschikt voor visie",
|
||||
"Model {{name}} is now {{status}}": "Model {{name}} is nu {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "Mojeek Search API-sleutel",
|
||||
"Monthly": "",
|
||||
"More": "Meer",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama Versie",
|
||||
"On": "Aan",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "Aan het uitvoeren",
|
||||
"Running...": "Aan het uitvoeren...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Opslaan",
|
||||
"Save & Create": "Opslaan & Creëren",
|
||||
"Save & Update": "Opslaan & Bijwerken",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "STT Model",
|
||||
"STT Settings": "STT Instellingen",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "Tekst splitser",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Tekst-naar-Spraak Engine",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Bedankt voor je feedback!",
|
||||
"The Application Account DN you bind with for search": "Het applicatieaccount DN waarmee je zoekt",
|
||||
"The base to search for users": "De basis om gebruikers te zoeken",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "TTS Model",
|
||||
"TTS Settings": "TTS instellingen",
|
||||
"TTS Voice": "TTS Stem",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Type",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Waarschuwing: Door dit in te schakelen kunnen gebruikers willekeurige code uploaden naar de server.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Waarschuwing: Jupyter kan willekeurige code uitvoeren, wat ernstige veiligheidsrisico's met zich meebrengt - ga uiterst voorzichtig te werk. ",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "Web-API",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI zal verzoeken doen aan \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI zal verzoeken doen aan \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Wat probeer je te bereiken?",
|
||||
"What are you working on?": "Waar werk je aan?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "ਗੂੜ੍ਹਾ",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "",
|
||||
"Host": "",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "ਮੈਂ ਅੱਜ ਤੁਹਾਡੀ ਕਿਵੇਂ ਮਦਦ ਕਰ ਸਕਦਾ ਹਾਂ?",
|
||||
"How would you rate this response?": "",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "ਮਾਡਲ '{{modelName}}' ਸਫਲਤਾਪੂਰਵਕ ਡਾਊਨਲੋਡ ਕੀਤਾ ਗਿਆ ਹੈ।",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "ਮਾਡਲ '{{modelTag}}' ਪਹਿਲਾਂ ਹੀ ਡਾਊਨਲੋਡ ਲਈ ਕਤਾਰ ਵਿੱਚ ਹੈ।",
|
||||
"Model {{modelId}} not found": "ਮਾਡਲ {{modelId}} ਨਹੀਂ ਮਿਲਿਆ",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "ਮਾਡਲ {{modelName}} ਦ੍ਰਿਸ਼ਟੀ ਸਮਰੱਥ ਨਹੀਂ ਹੈ",
|
||||
"Model {{name}} is now {{status}}": "ਮਾਡਲ {{name}} ਹੁਣ {{status}} ਹੈ",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "ਹੋਰ",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "ਓਲਾਮਾ ਵਰਜਨ",
|
||||
"On": "ਚਾਲੂ",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "",
|
||||
"Running...": "ਚੱਲ ਰਿਹਾ ਹੈ...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "ਸੰਭਾਲੋ",
|
||||
"Save & Create": "ਸੰਭਾਲੋ ਅਤੇ ਬਣਾਓ",
|
||||
"Save & Update": "ਸੰਭਾਲੋ ਅਤੇ ਅੱਪਡੇਟ ਕਰੋ",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "",
|
||||
"STT Settings": "STT ਸੈਟਿੰਗਾਂ",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "ਪਾਠ-ਤੋਂ-ਬੋਲ ਇੰਜਣ",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "ਤੁਹਾਡੇ ਫੀਡਬੈਕ ਲਈ ਧੰਨਵਾਦ!",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "",
|
||||
"TTS Settings": "TTS ਸੈਟਿੰਗਾਂ",
|
||||
"TTS Voice": "",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "ਕਿਸਮ",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ਡਾਊਨਲੋਡ) URL ਟਾਈਪ ਕਰੋ",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "ਵੈਬ",
|
||||
"Web API": "",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -482,6 +482,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "Nazwa parametru niestandardowego",
|
||||
"Custom Parameter Value": "Wartość parametru niestandardowego",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "Strefa krytyczna",
|
||||
"Dark": "Ciemny",
|
||||
@@ -972,6 +973,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "Przekazuje token dostępu OAuth użytkownika systemowego",
|
||||
"Forwards system user session credentials to authenticate": "Przekazuje poświadczenia sesji użytkownika systemowego",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Tryb pełnego kontekstu",
|
||||
"Function": "Funkcja",
|
||||
"Function Calling": "Wywoływanie funkcji",
|
||||
@@ -1046,6 +1048,7 @@
|
||||
"History": "",
|
||||
"Home": "Strona główna",
|
||||
"Host": "Host",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "W czym mogę pomóc?",
|
||||
"How would you rate this response?": "Jak oceniasz tę odpowiedź?",
|
||||
@@ -1268,10 +1271,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Wymagany klucz API Mistral OCR.",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Model",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' został pomyślnie pobrany.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' jest już w kolejce pobierania.",
|
||||
"Model {{modelId}} not found": "Nie znaleziono modelu {{modelId}}",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Model {{modelName}} nie obsługuje widzenia (Vision)",
|
||||
"Model {{name}} is now {{status}}": "Model {{name}} jest teraz {{status}}",
|
||||
@@ -1312,6 +1315,7 @@
|
||||
"Models Sharing": "Udostępnianie modeli",
|
||||
"Mojeek": "Mojeek",
|
||||
"Mojeek Search API Key": "Klucz API Mojeek Search",
|
||||
"Monthly": "",
|
||||
"More": "Więcej",
|
||||
"More Concise": "Bardziej zwięzły",
|
||||
"More options": "",
|
||||
@@ -1432,6 +1436,7 @@
|
||||
"Ollama Cloud API Key": "Klucz API Ollama Cloud",
|
||||
"Ollama Version": "Wersja Ollama",
|
||||
"On": "Wł.",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Aktywne tylko gdy opcja \"Wklej duży tekst jako plik\" jest włączona.",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "Aktywne tylko gdy pole czatu jest aktywne a LLM generuje odpowiedź.",
|
||||
@@ -1679,6 +1684,7 @@
|
||||
"Running": "Działa",
|
||||
"Running...": "Działa...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Uruchamia zadania embeddingu współbieżnie. Wyłącz, jeśli masz limity API.",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Zapisz",
|
||||
"Save & Create": "Zapisz i utwórz",
|
||||
"Save & Update": "Zapisz i aktualizuj",
|
||||
@@ -1895,6 +1901,7 @@
|
||||
"STT Model": "Model STT",
|
||||
"STT Settings": "Ustawienia STT",
|
||||
"Stylized PDF Export": "Stylizowany eksport PDF",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "Podtytuł",
|
||||
@@ -1940,6 +1947,7 @@
|
||||
"Text Splitter": "Text Splitter",
|
||||
"Text-to-Speech": "Silnik syntezy mowy (TTS)",
|
||||
"Text-to-Speech Engine": "Silnik syntezy mowy (TTS)",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Dzięki za opinię!",
|
||||
"The Application Account DN you bind with for search": "DN konta aplikacji do wyszukiwania",
|
||||
"The base to search for users": "Baza wyszukiwania użytkowników",
|
||||
@@ -2053,6 +2061,7 @@
|
||||
"TTS Model": "Model TTS",
|
||||
"TTS Settings": "Ustawienia TTS",
|
||||
"TTS Voice": "Głos TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Typ",
|
||||
"Type here...": "Pisz tutaj...",
|
||||
"Type Hugging Face Resolve (Download) URL": "Wpisz URL Hugging Face Resolve (Pobieranie)",
|
||||
@@ -2155,6 +2164,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Uwaga: Włączenie tego pozwoli użytkownikom na przesyłanie dowolnego kodu na serwer.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Uwaga: Jupyter umożliwia wykonanie dowolnego kodu (ryzyko bezpieczeństwa) – zachowaj szczególną ostrożność.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "Web API",
|
||||
"Web Loader Engine": "Silnik ładowania stron",
|
||||
@@ -2171,6 +2181,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI będzie wysyłać żądania do \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI będzie wysyłać żądania do \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI będzie wysyłać żądania do \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Co chcesz osiągnąć?",
|
||||
"What are you working on?": "Nad czym pracujesz?",
|
||||
"What is NOT shared:": "Co NIE jest udostępniane:",
|
||||
|
||||
@@ -481,6 +481,7 @@
|
||||
"Custom Gender": "Gênero personalizado",
|
||||
"Custom Parameter Name": "Nome do parâmetro personalizado",
|
||||
"Custom Parameter Value": "Valor do parâmetro personalizado",
|
||||
"Daily": "",
|
||||
"Daily Messages": "Mensagens Diárias",
|
||||
"Danger Zone": "Zona de Perigo",
|
||||
"Dark": "Escuro",
|
||||
@@ -971,6 +972,7 @@
|
||||
"Forward": "Encaminhar",
|
||||
"Forwards system user OAuth access token to authenticate": "Encaminha o token de acesso OAuth do usuário do sistema para autenticação",
|
||||
"Forwards system user session credentials to authenticate": "Encaminha as credenciais da sessão do usuário do sistema para autenticação",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Modo de contexto completo",
|
||||
"Function": "Função",
|
||||
"Function Calling": "Chamada de função",
|
||||
@@ -1045,6 +1047,7 @@
|
||||
"History": "Histórico",
|
||||
"Home": "Início",
|
||||
"Host": "Servidor",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "Mensagens por Hora",
|
||||
"How can I help you today?": "Como posso ajudar você hoje?",
|
||||
"How would you rate this response?": "Como você avalia essa resposta?",
|
||||
@@ -1267,10 +1270,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Chave de API do Mistral OCR necessária.",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Modelo",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Modelo '{{modelName}}' foi baixado com sucesso.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Modelo '{{modelTag}}' já está na fila para download.",
|
||||
"Model {{modelId}} not found": "Modelo {{modelId}} não encontrado",
|
||||
"Model {{modelName}} deleted successfully": "Modelo {{modelName}} excluído com sucesso",
|
||||
"Model {{modelName}} is not vision capable": "Modelo {{modelName}} não é capaz de visão",
|
||||
"Model {{name}} is now {{status}}": "Modelo {{name}} está agora {{status}}",
|
||||
@@ -1311,6 +1314,7 @@
|
||||
"Models Sharing": "Compartilhamento de Modelos",
|
||||
"Mojeek": "Mojeek",
|
||||
"Mojeek Search API Key": "Chave de API Mojeek Search",
|
||||
"Monthly": "",
|
||||
"More": "Mais",
|
||||
"More Concise": "Mais conciso",
|
||||
"More options": "Mais opções",
|
||||
@@ -1431,6 +1435,7 @@
|
||||
"Ollama Cloud API Key": "Chave da API Ollama Cloud",
|
||||
"Ollama Version": "Versão Ollama",
|
||||
"On": "Ligado",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Ativo somente quando a configuração \"Colar texto grande como arquivo\" estiver ativada.",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "Ativo somente quando o campo de entrada do chat está em foco e um LLM está gerando uma resposta.",
|
||||
@@ -1677,6 +1682,7 @@
|
||||
"Running": "Executando",
|
||||
"Running...": "Executando...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Executa tarefas de incorporação simultaneamente para acelerar o processamento. Desative se os limites de taxa se tornarem um problema.",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Salvar",
|
||||
"Save & Create": "Salvar e Criar",
|
||||
"Save & Update": "Salvar e Atualizar",
|
||||
@@ -1893,6 +1899,7 @@
|
||||
"STT Model": "Modelo STT",
|
||||
"STT Settings": "Configurações STT",
|
||||
"Stylized PDF Export": "Exportação de PDF estilizado",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "Enviar pergunta",
|
||||
"Submit suggestion": "Enviar sugestão",
|
||||
"Subtitle": "Subtítulo",
|
||||
@@ -1938,6 +1945,7 @@
|
||||
"Text Splitter": "Divisor de Texto",
|
||||
"Text-to-Speech": "Texto-para-Fala",
|
||||
"Text-to-Speech Engine": "Motor de Texto para Fala",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Obrigado pelo seu comentário!",
|
||||
"The Application Account DN you bind with for search": "O DN (Distinguished Name) da Conta de Aplicação com a qual você se conecta para pesquisa.",
|
||||
"The base to search for users": "Base para pesquisar usuários.",
|
||||
@@ -2051,6 +2059,7 @@
|
||||
"TTS Model": "Modelo TTS",
|
||||
"TTS Settings": "Configurações TTS",
|
||||
"TTS Voice": "Voz TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Tipo",
|
||||
"Type here...": "Digite aqui...",
|
||||
"Type Hugging Face Resolve (Download) URL": "Digite o URL de download do Hugging Face",
|
||||
@@ -2153,6 +2162,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "Aviso: Habilitar esta opção permitirá que os usuários executem solicitações agendadas automaticamente.",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Aviso: Habilitar isso permitirá que os usuários façam upload de código arbitrário no servidor.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Aviso: a execução do Jupyter permite a execução de código arbitrário, o que representa sérios riscos de segurança. Prossiga com extremo cuidado.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "API Web",
|
||||
"Web Loader Engine": "Motor de carregamento da Web",
|
||||
@@ -2169,6 +2179,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "A WebUI fará requisições para \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "A WebUI fará requisições para \"{{url}}/api/chat\".",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "A WebUI fará requisições para \"{{url}}/chat/completions\".",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "O que está tentando alcançar?",
|
||||
"What are you working on?": "No que está trabalhando?",
|
||||
"What is NOT shared:": "O que NÃO é compartilhado:",
|
||||
|
||||
@@ -481,6 +481,7 @@
|
||||
"Custom Gender": "Género Personalizado",
|
||||
"Custom Parameter Name": "Nome do Parâmetro Personalizado",
|
||||
"Custom Parameter Value": "Valor do Parâmetro Personalizado",
|
||||
"Daily": "",
|
||||
"Daily Messages": "Mensagens Diárias",
|
||||
"Danger Zone": "Zona de Perigo",
|
||||
"Dark": "Escuro",
|
||||
@@ -971,6 +972,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "Encaminha o token de acesso OAuth do utilizador do sistema para autenticação",
|
||||
"Forwards system user session credentials to authenticate": "Encaminha as credenciais de sessão do utilizador do sistema para autenticação",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Modo de Contexto Completo",
|
||||
"Function": "Função",
|
||||
"Function Calling": "Chamada de Função",
|
||||
@@ -1045,6 +1047,7 @@
|
||||
"History": "Histórico",
|
||||
"Home": "Início",
|
||||
"Host": "Host",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "Mensagens Horárias",
|
||||
"How can I help you today?": "Como posso ajudá-lo hoje?",
|
||||
"How would you rate this response?": "Como você avaliaria esta resposta?",
|
||||
@@ -1267,10 +1270,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Chave API do Mistral OCR necessária.",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Modelo",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "O modelo '{{modelName}}' foi descarregado com sucesso.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "O modelo '{{modelTag}}' já está na fila para descarregar.",
|
||||
"Model {{modelId}} not found": "Modelo {{modelId}} não foi encontrado",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "O modelo {{modelName}} não é capaz de visão",
|
||||
"Model {{name}} is now {{status}}": "Modelo {{name}} agora é {{status}}",
|
||||
@@ -1311,6 +1314,7 @@
|
||||
"Models Sharing": "Partilha de Modelos",
|
||||
"Mojeek": "Mojeek",
|
||||
"Mojeek Search API Key": "Chave API de Pesquisa Mojeek",
|
||||
"Monthly": "",
|
||||
"More": "Mais",
|
||||
"More Concise": "Mais Conciso",
|
||||
"More options": "Mais opções",
|
||||
@@ -1431,6 +1435,7 @@
|
||||
"Ollama Cloud API Key": "Chave da API Ollama Cloud",
|
||||
"Ollama Version": "Versão do Ollama",
|
||||
"On": "Ligado",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Apenas ativo quando a configuração \"Colar Texto Grande como Arquivo\" está ativada.",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "Apenas ativo quando a entrada do chat está em foco e um LLM está gerando uma resposta.",
|
||||
@@ -1677,6 +1682,7 @@
|
||||
"Running": "A correr",
|
||||
"Running...": "A correr...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Corre tarefas de vetorização simultaneamente para acelerar o processamento. Desative se os limites de taxa se tornarem um problema.",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Guardar",
|
||||
"Save & Create": "Guardar e Criar",
|
||||
"Save & Update": "Guardar e Atualizar",
|
||||
@@ -1893,6 +1899,7 @@
|
||||
"STT Model": "Modelo STT",
|
||||
"STT Settings": "Configurações STT",
|
||||
"Stylized PDF Export": "Exportação de PDF Estilizado",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "Enviar pergunta",
|
||||
"Submit suggestion": "Enviar sugestão",
|
||||
"Subtitle": "Legenda",
|
||||
@@ -1938,6 +1945,7 @@
|
||||
"Text Splitter": "Divisor de Texto",
|
||||
"Text-to-Speech": "Texto para Fala",
|
||||
"Text-to-Speech Engine": "Motor de Texto para Fala",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Obrigado pelo seu feedback!",
|
||||
"The Application Account DN you bind with for search": "A DN de Conta de Aplicação que você vincula para pesquisa",
|
||||
"The base to search for users": "A base para pesquisar utilizadores",
|
||||
@@ -2051,6 +2059,7 @@
|
||||
"TTS Model": "Modelo TTS",
|
||||
"TTS Settings": "Configurações TTS",
|
||||
"TTS Voice": "Voz TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Tipo",
|
||||
"Type here...": "Escreva aqui...",
|
||||
"Type Hugging Face Resolve (Download) URL": "Escreva o URL do Hugging Face Resolve (Descarregar)",
|
||||
@@ -2153,6 +2162,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Aviso: Ativar isso permitirá que os utilizadores carreguem código arbitrário no servidor.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Aviso: A execução do Jupyter permite a execução de código arbitrário, representando riscos de segurança graves - prossiga com extrema cautela.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "Web API",
|
||||
"Web Loader Engine": "Motor de Carregamento Web",
|
||||
@@ -2169,6 +2179,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "O WebUI fará solicitações para \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "O WebUI fará solicitações para \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "O WebUI fará solicitações para \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "O que você está tentando alcançar?",
|
||||
"What are you working on?": "Em que você está trabalhando?",
|
||||
"What is NOT shared:": "O que NÃO é compartilhado:",
|
||||
|
||||
@@ -481,6 +481,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "Întunecat",
|
||||
@@ -971,6 +972,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "Funcție",
|
||||
"Function Calling": "",
|
||||
@@ -1045,6 +1047,7 @@
|
||||
"History": "",
|
||||
"Home": "",
|
||||
"Host": "",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Cum te pot ajuta astăzi?",
|
||||
"How would you rate this response?": "",
|
||||
@@ -1267,10 +1270,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Model",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Modelul '{{modelName}}' a fost descărcat cu succes.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Modelul '{{modelTag}}' este deja în coada de descărcare.",
|
||||
"Model {{modelId}} not found": "Modelul {{modelId}} nu a fost găsit",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Modelul {{modelName}} nu are capacități de viziune",
|
||||
"Model {{name}} is now {{status}}": "Modelul {{name}} este acum {{status}}",
|
||||
@@ -1311,6 +1314,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "Mai multe",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1431,6 +1435,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Versiune Ollama",
|
||||
"On": "Activat",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1677,6 +1682,7 @@
|
||||
"Running": "Rulează",
|
||||
"Running...": "Rulează...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Salvează",
|
||||
"Save & Create": "Salvează & Creează",
|
||||
"Save & Update": "Salvează & Actualizează",
|
||||
@@ -1893,6 +1899,7 @@
|
||||
"STT Model": "Model STT",
|
||||
"STT Settings": "Setări STT",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1938,6 +1945,7 @@
|
||||
"Text Splitter": "Divizor de Text",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Motor de Conversie a Textului în Vorbire",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Mulțumim pentru feedback!",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2051,6 +2059,7 @@
|
||||
"TTS Model": "Model TTS",
|
||||
"TTS Settings": "Setări TTS",
|
||||
"TTS Voice": "Voce TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Tip",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Introduceți URL-ul de Rezolvare (Descărcare) Hugging Face",
|
||||
@@ -2153,6 +2162,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "API Web",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2169,6 +2179,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -482,6 +482,7 @@
|
||||
"Custom Gender": "Другой пол",
|
||||
"Custom Parameter Name": "Название пользовательского параметра",
|
||||
"Custom Parameter Value": "Значение пользовательского параметра",
|
||||
"Daily": "",
|
||||
"Daily Messages": "Сообщений в день",
|
||||
"Danger Zone": "Опасная зона",
|
||||
"Dark": "Темная",
|
||||
@@ -972,6 +973,7 @@
|
||||
"Forward": "Вперёд",
|
||||
"Forwards system user OAuth access token to authenticate": "Передаёт токен доступа OAuth системного пользователя для аутентификации",
|
||||
"Forwards system user session credentials to authenticate": "Перенаправляет учетные данные сеанса системного пользователя для проверки подлинности",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Режим полного контекста",
|
||||
"Function": "Функция",
|
||||
"Function Calling": "Вызов функции",
|
||||
@@ -1046,6 +1048,7 @@
|
||||
"History": "История",
|
||||
"Home": "Домой",
|
||||
"Host": "Хост",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "Сообщений в час",
|
||||
"How can I help you today?": "Чем я могу помочь вам сегодня?",
|
||||
"How would you rate this response?": "Как бы вы оценили этот ответ?",
|
||||
@@ -1268,10 +1271,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Требуется API ключ Mistral OCR.",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Модель",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Модель '{{modelName}}' успешно загружена.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Модель '{{modelTag}}' уже находится в очереди на загрузку.",
|
||||
"Model {{modelId}} not found": "Модель {{modelId}} не найдена",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Модель {{modelName}} не поддерживает зрение",
|
||||
"Model {{name}} is now {{status}}": "Модель {{name}} теперь {{status}}",
|
||||
@@ -1312,6 +1315,7 @@
|
||||
"Models Sharing": "Общий доступ к моделям",
|
||||
"Mojeek": "Mojeek",
|
||||
"Mojeek Search API Key": "Ключ API для поиска Mojeek",
|
||||
"Monthly": "",
|
||||
"More": "Больше",
|
||||
"More Concise": "Более кратко",
|
||||
"More options": "Больше опций",
|
||||
@@ -1432,6 +1436,7 @@
|
||||
"Ollama Cloud API Key": "API-ключ Ollama Cloud",
|
||||
"Ollama Version": "Версия Ollama",
|
||||
"On": "Включено",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "Активно только при включённой настройке «Вставлять большой текст как файл».",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "Активно только при фокусе на поле ввода и генерации ответа.",
|
||||
@@ -1679,6 +1684,7 @@
|
||||
"Running": "Выполняется",
|
||||
"Running...": "Выполняется...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Параллельное выполнение задач эмбеддингов для ускорения. Отключите при проблемах с лимитами запросов.",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Сохранить",
|
||||
"Save & Create": "Сохранить и создать",
|
||||
"Save & Update": "Сохранить и обновить",
|
||||
@@ -1895,6 +1901,7 @@
|
||||
"STT Model": "Модель распознавания речи",
|
||||
"STT Settings": "Настройки распознавания речи",
|
||||
"Stylized PDF Export": "Стилизованный экспорт в формате PDF",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "Отправить вопрос",
|
||||
"Submit suggestion": "Отправить предложение",
|
||||
"Subtitle": "Подзаголовок",
|
||||
@@ -1940,6 +1947,7 @@
|
||||
"Text Splitter": "Разделитель текста",
|
||||
"Text-to-Speech": "Текст в речь",
|
||||
"Text-to-Speech Engine": "Система синтеза речи",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Спасибо за вашу обратную связь!",
|
||||
"The Application Account DN you bind with for search": "Логин учетной записи приложения, к которому вы привязываетесь для поиска",
|
||||
"The base to search for users": "База для поиска пользователей",
|
||||
@@ -2053,6 +2061,7 @@
|
||||
"TTS Model": "Модель TTS",
|
||||
"TTS Settings": "Настройки TTS",
|
||||
"TTS Voice": "Голос TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Тип",
|
||||
"Type here...": "Введите текст...",
|
||||
"Type Hugging Face Resolve (Download) URL": "Введите URL-адрес Hugging Face Resolve (загрузки)",
|
||||
@@ -2155,6 +2164,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Предупреждение. Включение этого параметра позволит пользователям загружать произвольный код на сервер.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Предупреждение: Выполнение Jupyter позволяет выполнять произвольный код, что создает серьезные угрозы безопасности — действуйте с особой осторожностью.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Веб",
|
||||
"Web API": "Веб API",
|
||||
"Web Loader Engine": "Движок веб-загрузчика",
|
||||
@@ -2171,6 +2181,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI будет отправлять запросы к \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI будет отправлять запросы к \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI будет отправлять запросы к \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Чего вы пытаетесь достичь?",
|
||||
"What are you working on?": "Над чем вы работаете?",
|
||||
"What is NOT shared:": "Что НЕ передаётся:",
|
||||
|
||||
@@ -482,6 +482,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "Nebezpečná zóna",
|
||||
"Dark": "Tmavý",
|
||||
@@ -972,6 +973,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "Funkcia",
|
||||
"Function Calling": "",
|
||||
@@ -1046,6 +1048,7 @@
|
||||
"History": "",
|
||||
"Home": "",
|
||||
"Host": "",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Ako vám môžem dnes pomôcť?",
|
||||
"How would you rate this response?": "",
|
||||
@@ -1268,10 +1271,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Model",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Model „{{modelName}}“ bol úspešne stiahnutý.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je už zaradený do fronty na sťahovanie.",
|
||||
"Model {{modelId}} not found": "Model {{modelId}} nebol nájdený",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Model {{modelName}} nie je schopný spracovávať vizuálne údaje.",
|
||||
"Model {{name}} is now {{status}}": "Model {{name}} je teraz {{status}}.",
|
||||
@@ -1312,6 +1315,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "Viac",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1432,6 +1436,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Verzia Ollama",
|
||||
"On": "Zapnuté",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1679,6 +1684,7 @@
|
||||
"Running": "Spúšťanie",
|
||||
"Running...": "Spúšťanie...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Uložiť",
|
||||
"Save & Create": "Uložiť a Vytvoriť",
|
||||
"Save & Update": "Uložiť a aktualizovať",
|
||||
@@ -1895,6 +1901,7 @@
|
||||
"STT Model": "Model rozpoznávania reči na text (STT)",
|
||||
"STT Settings": "Nastavenia STT (Rozpoznávanie reči)",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1940,6 +1947,7 @@
|
||||
"Text Splitter": "Rozdeľovač textu",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Stroj na prevod textu na reč",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Ďakujeme za vašu spätnú väzbu!",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2053,6 +2061,7 @@
|
||||
"TTS Model": "Model prevodu textu na reč (TTS)",
|
||||
"TTS Settings": "Nastavenia TTS (Text-to-Speech)",
|
||||
"TTS Voice": "TTS hlas",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Napíšte",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Zadajte URL na úspešné stiahnutie z Hugging Face.",
|
||||
@@ -2155,6 +2164,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "Webové API",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2171,6 +2181,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Čo sa snažíte dosiahnuť?",
|
||||
"What are you working on?": "Na čom pracujete?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -481,6 +481,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "Тамна",
|
||||
@@ -971,6 +972,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
@@ -1045,6 +1047,7 @@
|
||||
"History": "",
|
||||
"Home": "",
|
||||
"Host": "Домаћин",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Како могу да вам помогнем данас?",
|
||||
"How would you rate this response?": "",
|
||||
@@ -1267,10 +1270,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Модел",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Модел „{{modelName}}“ је успешно преузет.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Модел „{{modelTag}}“ је већ у реду за преузимање.",
|
||||
"Model {{modelId}} not found": "Модел {{modelId}} није пронађен",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Модел {{моделНаме}} није способан за вид",
|
||||
"Model {{name}} is now {{status}}": "Модел {{наме}} је сада {{статус}}",
|
||||
@@ -1311,6 +1314,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "Више",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1431,6 +1435,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Издање Ollama-е",
|
||||
"On": "Укључено",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1677,6 +1682,7 @@
|
||||
"Running": "Покрећем",
|
||||
"Running...": "Покрећем...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Сачувај",
|
||||
"Save & Create": "Сачувај и направи",
|
||||
"Save & Update": "Сачувај и ажурирај",
|
||||
@@ -1893,6 +1899,7 @@
|
||||
"STT Model": "STT модел",
|
||||
"STT Settings": "STT подешавања",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1938,6 +1945,7 @@
|
||||
"Text Splitter": "Раздвајач текста",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Мотор за текст у говор",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Хвала на вашем коментару!",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2051,6 +2059,7 @@
|
||||
"TTS Model": "TTS модел",
|
||||
"TTS Settings": "TTS подешавања",
|
||||
"TTS Voice": "TTS глас",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Тип",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Унесите Hugging Face Resolve (Download) адресу",
|
||||
@@ -2153,6 +2162,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Веб",
|
||||
"Web API": "Веб АПИ",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2169,6 +2179,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "Anpassat parameternamn",
|
||||
"Custom Parameter Value": "Anpassat parametervärde",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "Fara",
|
||||
"Dark": "Mörk",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "Vidarebefordrar systemanvändarsessionens autentiseringsuppgifter för att autentisera",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Fullständigt kontextläge",
|
||||
"Function": "Funktion",
|
||||
"Function Calling": "Funktionsanrop",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "Hem",
|
||||
"Host": "Värd",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Hur kan jag hjälpa dig idag?",
|
||||
"How would you rate this response?": "Hur skulle du betygsätta detta svar?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Mistral OCR API-nyckel krävs.",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Modell",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Modellen '{{modelName}}' har laddats ner.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Modellen '{{modelTag}}' är redan i kö för nedladdning.",
|
||||
"Model {{modelId}} not found": "Modell {{modelId}} hittades inte",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Modellen {{modelName}} har inte stöd för vision/syn",
|
||||
"Model {{name}} is now {{status}}": "Modellen {{name}} är nu {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "Mojeek Sök API-nyckel",
|
||||
"Monthly": "",
|
||||
"More": "Mer",
|
||||
"More Concise": "Mer kortfattat",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama-version",
|
||||
"On": "På",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "Kör",
|
||||
"Running...": "Kör...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Spara",
|
||||
"Save & Create": "Spara och skapa",
|
||||
"Save & Update": "Spara och uppdatera",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "Tal-till-text-modell",
|
||||
"STT Settings": "Tal-till-text-inställningar",
|
||||
"Stylized PDF Export": "Stiliserad PDF-export",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "Textdelare",
|
||||
"Text-to-Speech": "Text-till-tal",
|
||||
"Text-to-Speech Engine": "Text-till-tal-motor",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Tack för din feedback!",
|
||||
"The Application Account DN you bind with for search": "Applikationskontots DN du binder med för sökning",
|
||||
"The base to search for users": "Basen för att söka efter användare",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "Text-till-tal-modell",
|
||||
"TTS Settings": "Text-till-tal-inställningar",
|
||||
"TTS Voice": "Text-till-tal-röst",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Typ",
|
||||
"Type here...": "Skriv här...",
|
||||
"Type Hugging Face Resolve (Download) URL": "Ange Hugging Face Resolve (Download) URL",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Varning för detta: Om du aktiverar detta kan användare ladda upp godtycklig kod på servern.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Varning: Jupyter-exekvering möjliggör godtycklig kodkörning, vilket innebär allvarliga säkerhetsrisker - fortsätt med extrem försiktighet",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Webb",
|
||||
"Web API": "Webb-API",
|
||||
"Web Loader Engine": "Webbladdarmotor",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI kommer att göra förfrågningar till \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI kommer att göra förfrågningar till \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI kommer att göra förfrågningar till \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Vad försöker du uppnå?",
|
||||
"What are you working on?": "Var arbetar du med?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "தனிப்பயன் பாலினம்",
|
||||
"Custom Parameter Name": "தனிப்பயன் அளவுரு பெயர்",
|
||||
"Custom Parameter Value": "தனிப்பயன் அளவுரு மதிப்பு",
|
||||
"Daily": "",
|
||||
"Daily Messages": "தினசரி செய்திகள்",
|
||||
"Danger Zone": "ஆபத்து மண்டலம்",
|
||||
"Dark": "இருண்ட",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "முன்னோக்கி",
|
||||
"Forwards system user OAuth access token to authenticate": "அங்கீகரிக்க கணினி பயனர் OAuth அணுகல் டோக்கனை அனுப்புகிறது",
|
||||
"Forwards system user session credentials to authenticate": "அங்கீகரிக்க கணினி பயனர் அமர்வு நற்சான்றிதழ்களை அனுப்புகிறது",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "முழு சூழல் பயன்முறை",
|
||||
"Function": "செயல்பாடு",
|
||||
"Function Calling": "செயல்பாடு அழைப்பு",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "வரலாறு",
|
||||
"Home": "வீடு",
|
||||
"Host": "புரவலன்",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "மணிநேர செய்திகள்",
|
||||
"How can I help you today?": "இன்று நான் உங்களுக்கு எப்படி உதவலாம்?",
|
||||
"How would you rate this response?": "இந்த பதிலை எப்படி மதிப்பிடுவீர்கள்?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "மிஸ்ட்ரல் OCR",
|
||||
"Mistral OCR API Key required.": "மிஸ்ட்ரல் OCR API விசை தேவை.",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "மாதிரி",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "மாடல் '{{modelName}}' வெற்றிகரமாகப் பதிவிறக்கப்பட்டது.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "மாடல் '{{modelTag}}' ஏற்கனவே பதிவிறக்குவதற்கு வரிசையில் உள்ளது.",
|
||||
"Model {{modelId}} not found": "மாதிரி {{modelId}} கிடைக்கவில்லை",
|
||||
"Model {{modelName}} deleted successfully": "மாதிரி {{modelName}} வெற்றிகரமாக நீக்கப்பட்டது",
|
||||
"Model {{modelName}} is not vision capable": "மாதிரி {{modelName}} பார்வை திறன் இல்லை",
|
||||
"Model {{name}} is now {{status}}": "மாடல் {{name}} இப்போது {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "மாதிரிகள் பகிர்வு",
|
||||
"Mojeek": "மொஜீக்",
|
||||
"Mojeek Search API Key": "Mojeek தேடல் API விசை",
|
||||
"Monthly": "",
|
||||
"More": "மேலும்",
|
||||
"More Concise": "மேலும் சுருக்கமானது",
|
||||
"More options": "மேலும் விருப்பங்கள்",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "Ollama கிளவுட் API விசை",
|
||||
"Ollama Version": "Ollama பதிப்பு",
|
||||
"On": "அன்று",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "\"பெரிய உரையை கோப்பாக ஒட்டவும்\" அமைப்பு மாறியிருந்தால் மட்டுமே செயலில் இருக்கும்.",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "அரட்டை உள்ளீடு ஃபோகஸ் மற்றும் LLM பதிலை உருவாக்கும் போது மட்டுமே செயலில் இருக்கும்.",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "ஓடுகிறது",
|
||||
"Running...": "இயங்குகிறது...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "செயலாக்கத்தை விரைவுபடுத்த ஒரே நேரத்தில் உட்பொதிக்கும் பணிகளை இயக்குகிறது. கட்டண வரம்புகள் சிக்கலாக இருந்தால் அணைக்கவும்.",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "சேமி",
|
||||
"Save & Create": "சேமித்து உருவாக்கவும்",
|
||||
"Save & Update": "சேமி & புதுப்பிக்கவும்",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "STT மாதிரி",
|
||||
"STT Settings": "STT அமைப்புகள்",
|
||||
"Stylized PDF Export": "பகட்டான PDF ஏற்றுமதி",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "கேள்வியை சமர்ப்பிக்கவும்",
|
||||
"Submit suggestion": "பரிந்துரையைச் சமர்ப்பிக்கவும்",
|
||||
"Subtitle": "வசனம்",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "உரை பிரிப்பான்",
|
||||
"Text-to-Speech": "உரையிலிருந்து பேச்சு",
|
||||
"Text-to-Speech Engine": "உரையிலிருந்து பேச்சு இயந்திரம்",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "உங்கள் கருத்துக்கு நன்றி!",
|
||||
"The Application Account DN you bind with for search": "தேடலுக்காக நீங்கள் இணைக்கும் பயன்பாட்டுக் கணக்கு DN",
|
||||
"The base to search for users": "பயனர்களைத் தேடுவதற்கான அடிப்படை",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "TTS மாதிரி",
|
||||
"TTS Settings": "TTS அமைப்புகள்",
|
||||
"TTS Voice": "TTS குரல்",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "வகை",
|
||||
"Type here...": "இங்கே தட்டச்சு செய்யவும்...",
|
||||
"Type Hugging Face Resolve (Download) URL": "கட்டிப்பிடிக்கும் முகம் தீர்வு (பதிவிறக்கம்) URL",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "எச்சரிக்கை: இதை இயக்கினால் பயனர்கள் திட்டமிட்ட வினாக்களை தானாக இயக்க அனுமதிக்கும்.",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "எச்சரிக்கை: இதை இயக்குவது பயனர்கள் சர்வரில் தன்னிச்சையான குறியீட்டைப் பதிவேற்ற அனுமதிக்கும்.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "எச்சரிக்கை: வியாழன் இயக்கமானது தன்னிச்சையான குறியீடு செயல்படுத்தலை செயல்படுத்துகிறது, இது கடுமையான பாதுகாப்பு அபாயங்களை ஏற்படுத்துகிறது-அதிக எச்சரிக்கையுடன் தொடரவும்.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "வலை",
|
||||
"Web API": "வலை API",
|
||||
"Web Loader Engine": "வலை ஏற்றி இயந்திரம்",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI \"{{url}}\" க்கு கோரிக்கைகளை வைக்கும்",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI \"{{url}}/api/chat\" க்கு கோரிக்கைகளை வைக்கும்",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI \"{{url}}/chat/completions\" க்கு கோரிக்கைகளை வைக்கும்",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "நீங்கள் எதை அடைய முயற்சிக்கிறீர்கள்?",
|
||||
"What are you working on?": "நீங்கள் என்ன வேலை செய்கிறீர்கள்?",
|
||||
"What is NOT shared:": "NOT என்பது என்ன பகிரப்பட்டது:",
|
||||
|
||||
@@ -479,6 +479,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "ชื่อพารามิเตอร์แบบกำหนดเอง",
|
||||
"Custom Parameter Value": "ค่าพารามิเตอร์กำหนดเอง",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "เขตอันตราย",
|
||||
"Dark": "มืด",
|
||||
@@ -969,6 +970,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "ส่งต่อโทเค็นการเข้าถึง OAuth ของผู้ใช้ระบบเพื่อยืนยันตัวตน",
|
||||
"Forwards system user session credentials to authenticate": "ส่งต่อข้อมูลรับรอง Session ของผู้ใช้ระบบเพื่อใช้ยืนยันตัวตน",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "โหมดบริบทเต็ม",
|
||||
"Function": "ฟังก์ชัน",
|
||||
"Function Calling": "การเรียกใช้ฟังก์ชัน",
|
||||
@@ -1043,6 +1045,7 @@
|
||||
"History": "",
|
||||
"Home": "หน้าแรก",
|
||||
"Host": "โฮสต์",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "วันนี้ฉันจะช่วยคุณได้อย่างไร?",
|
||||
"How would you rate this response?": "คุณจะให้คะแนนคำตอบนี้อย่างไร?",
|
||||
@@ -1265,10 +1268,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "จำเป็นต้องมี Mistral OCR API Key",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "โมเดล",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "โมเดล '{{modelName}}' ถูกดาวน์โหลดเรียบร้อยแล้ว",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "โมเดล '{{modelTag}}' อยู่ในคิวสำหรับการดาวน์โหลดแล้ว",
|
||||
"Model {{modelId}} not found": "ไม่พบโมเดล {{modelId}}",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "โมเดล {{modelName}} ไม่รองรับฟีเจอร์ Vision",
|
||||
"Model {{name}} is now {{status}}": "โมเดล {{name}} ขณะนี้ {{status}}",
|
||||
@@ -1309,6 +1312,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "API Key สำหรับ Mojeek Search",
|
||||
"Monthly": "",
|
||||
"More": "เพิ่มเติม",
|
||||
"More Concise": "กระชับมากขึ้น",
|
||||
"More options": "",
|
||||
@@ -1429,6 +1433,7 @@
|
||||
"Ollama Cloud API Key": "API Key ของ Ollama Cloud",
|
||||
"Ollama Version": "เวอร์ชัน Ollama",
|
||||
"On": "เปิด",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "จะทำงานเฉพาะเมื่อเปิดการตั้งค่า \"วางข้อความขนาดใหญ่เป็นไฟล์\"",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "ทำงานเฉพาะเมื่อช่องป้อนข้อความแชทถูกโฟกัสอยู่ และ LLM กำลังสร้างคำตอบ",
|
||||
@@ -1673,6 +1678,7 @@
|
||||
"Running": "กำลังทำงาน",
|
||||
"Running...": "กำลังทำงาน...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "บันทึก",
|
||||
"Save & Create": "บันทึกและสร้าง",
|
||||
"Save & Update": "บันทึกและอัปเดต",
|
||||
@@ -1889,6 +1895,7 @@
|
||||
"STT Model": "โมเดลแปลงเสียงเป็นข้อความ",
|
||||
"STT Settings": "การตั้งค่าแปลงเสียงเป็นข้อความ",
|
||||
"Stylized PDF Export": "ส่งออก PDF แบบมีสไตล์",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1934,6 +1941,7 @@
|
||||
"Text Splitter": "ตัวแบ่งข้อความ",
|
||||
"Text-to-Speech": "แปลงข้อความเป็นเสียง",
|
||||
"Text-to-Speech Engine": "เครื่องมือแปลงข้อความเป็นเสียง",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "ขอบคุณสำหรับคำติชมของคุณ!",
|
||||
"The Application Account DN you bind with for search": "DN ของบัญชีแอปพลิเคชันที่คุณใช้ bind เพื่อค้นหา",
|
||||
"The base to search for users": "ฐานสำหรับค้นหาผู้ใช้",
|
||||
@@ -2047,6 +2055,7 @@
|
||||
"TTS Model": "โมเดล TTS",
|
||||
"TTS Settings": "การตั้งค่า TTS",
|
||||
"TTS Voice": "เสียง TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "ประเภท",
|
||||
"Type here...": "พิมพ์ที่นี่...",
|
||||
"Type Hugging Face Resolve (Download) URL": "พิมพ์ URL Hugging Face Resolve (ดาวน์โหลด)",
|
||||
@@ -2149,6 +2158,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "คำเตือน: การเปิดใช้งานตัวเลือกนี้จะอนุญาตให้ผู้ใช้อัปโหลดโค้ดใดๆ บนเซิร์ฟเวอร์",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "คำเตือน: การรัน Jupyter อนุญาตให้รันโค้ดใดๆ ก็ได้ ซึ่งก่อให้เกิดความเสี่ยงด้านความปลอดภัยอย่างร้ายแรง—โปรดดำเนินการด้วยความระมัดระวังอย่างยิ่ง",
|
||||
"We_day_of_week": "",
|
||||
"Web": "เว็บ",
|
||||
"Web API": "เว็บ API",
|
||||
"Web Loader Engine": "เอนจินโหลดเว็บ",
|
||||
@@ -2165,6 +2175,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI จะส่งคำขอไปยัง \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI จะส่งคำขอไปที่ \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI จะส่งคำขอไปยัง \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "คุณพยายามจะทำอะไร?",
|
||||
"What are you working on?": "คุณกำลังทำอะไรอยู่?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "Garaňky",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "",
|
||||
"Function Calling": "",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "Baş Sahypa",
|
||||
"Host": "",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "",
|
||||
"How would you rate this response?": "",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Model",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "",
|
||||
"Model {{modelId}} not found": "",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "",
|
||||
"Model {{name}} is now {{status}}": "",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "Has köp",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "",
|
||||
"On": "Işjeň",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "",
|
||||
"Running...": "Işleýär...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Sakla",
|
||||
"Save & Create": "",
|
||||
"Save & Update": "",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "",
|
||||
"STT Settings": "",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "",
|
||||
"TTS Settings": "",
|
||||
"TTS Voice": "",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Typ",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "",
|
||||
"Web API": "",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "Özel Cinsiyet",
|
||||
"Custom Parameter Name": "Özel Parametre Adı",
|
||||
"Custom Parameter Value": "Özel Parametre Değeri",
|
||||
"Daily": "",
|
||||
"Daily Messages": "Günlük Mesajlar",
|
||||
"Danger Zone": "Tehlikeli Bölge",
|
||||
"Dark": "Koyu",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "Kimlik doğrulamak için sistem kullanıcı OAuth erişim belirtecini iletir",
|
||||
"Forwards system user session credentials to authenticate": "Kimlik doğrulamak için sistem kullanıcı oturum kimlik bilgilerini iletir",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Tam Bağlam Modu",
|
||||
"Function": "Fonksiyon",
|
||||
"Function Calling": "Fonksiyon Çağırma",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "Ana Sayfa",
|
||||
"Host": "Ana bilgisayar",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Bugün size nasıl yardımcı olabilirim?",
|
||||
"How would you rate this response?": "Bu yanıtı nasıl değerlendirirsiniz?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Mistral OCR API Anahtarı Gerekli",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Model",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' başarıyla indirildi.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' zaten indirme sırasında.",
|
||||
"Model {{modelId}} not found": "{{modelId}} bulunamadı",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Model {{modelName}} görüntü yeteneğine sahip değil",
|
||||
"Model {{name}} is now {{status}}": "{{name}} modeli artık {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "Model Paylaşımı",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "Mojeek Search API Anahtarı",
|
||||
"Monthly": "",
|
||||
"More": "Daha Fazla",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama Sürümü",
|
||||
"On": "Açık",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "Çalışıyor",
|
||||
"Running...": "Çalışıyor...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Kaydet",
|
||||
"Save & Create": "Kaydet ve Oluştur",
|
||||
"Save & Update": "Kaydet ve Güncelle",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "STT Modeli",
|
||||
"STT Settings": "STT Ayarları",
|
||||
"Stylized PDF Export": "Biçimlendirilmiş PDF Dışa Aktarımı",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "Soru gönder",
|
||||
"Submit suggestion": "Öneri gönder",
|
||||
"Subtitle": "Altyazı",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "Metin Bölücü",
|
||||
"Text-to-Speech": "Metinden Sese",
|
||||
"Text-to-Speech Engine": "Metinden Sese Motoru",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Geri bildiriminiz için teşekkürler!",
|
||||
"The Application Account DN you bind with for search": "Arama için bağlandığınız Uygulama Hesap DN'si",
|
||||
"The base to search for users": "Kullanıcıları aramak için temel",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "TTS Modeli",
|
||||
"TTS Settings": "TTS Ayarları",
|
||||
"TTS Voice": "TTS Sesi",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Tür",
|
||||
"Type here...": "Buraya yaz...",
|
||||
"Type Hugging Face Resolve (Download) URL": "HuggingFace Çözümleme (İndirme) URL'sini Yazın",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Uyarı: Bu etkinleştirildiğinde, kullanıcıların sunucuya rastgele kod yüklemesine izin verilecektir.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "Web API",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI, \"{{url}}/api/chat\" adresine istek yapacak",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI, \"{{url}}/chat/completions\" adresine istek yapacak",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Ne yapmaya çalışıyorsunuz?",
|
||||
"What are you working on?": "Üzerinde çalıştığınız nedir?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "ئۆزلۈك پارامېتىر نامى",
|
||||
"Custom Parameter Value": "ئۆزلۈك پارامېتىر قىممىتى",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "خەۋپلىك رايون",
|
||||
"Dark": "قاراڭغۇ",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "سىستېما ئىشلەتكۈچىسى ئۇچۇرلىرىنى دەلىللەشكە يوللايدۇ",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "تولۇق مەزمۇن ھالىتى",
|
||||
"Function": "فۇنكسىيە",
|
||||
"Function Calling": "فۇنكسىيە چاقىرىش",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "باش بەت",
|
||||
"Host": "مۇلازىمېتىر",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "بۈگۈن سىزگە قانداق ياردەم بېرەي؟",
|
||||
"How would you rate this response?": "بۇ ئىنكاسقا قانداق باھا بېرىسىز؟",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Mistral OCR API ئاچقۇچى زۆرۈر.",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "مودېل",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "مودېل '{{modelName}}' مۇۋەپپەقىيەتلىك چۈشۈرۈلدى.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "مودېل '{{modelTag}}' ئاللىقاچان چۈشۈرۈش قاتارىغا قوشۇلغان.",
|
||||
"Model {{modelId}} not found": "مودېل {{modelId}} تېپىلمىدى",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "مودېل {{modelName}} كۆرۈنۈش ئىقتىدارى يوق",
|
||||
"Model {{name}} is now {{status}}": "مودېل {{name}} ھازىر {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "Mojeek ئىزدەش API ئاچقۇچى",
|
||||
"Monthly": "",
|
||||
"More": "تېخىمۇ كۆپ",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama نەشرى",
|
||||
"On": "قوزغىتىلغان",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "ئىجرا قىلىنىۋاتىدۇ",
|
||||
"Running...": "ئىجرا قىلىنىۋاتىدۇ...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "ساقلاش",
|
||||
"Save & Create": "ساقلا ۋە قۇر",
|
||||
"Save & Update": "ساقلا ۋە يېڭىلا",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "STT مودېلى",
|
||||
"STT Settings": "STT تەڭشەكلىرى",
|
||||
"Stylized PDF Export": "ئۇسلۇبلۇق PDF چىقىرىش",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "تېكست بۆلگۈچ",
|
||||
"Text-to-Speech": "تېكستتىن ئاۋازغا",
|
||||
"Text-to-Speech Engine": "تېكست ئاۋاز ماتورى",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "پىكىرىڭىزگە رەھمەت!",
|
||||
"The Application Account DN you bind with for search": "ئىزدەش ئۈچۈن باغلانغان قوللىنىشچان DN",
|
||||
"The base to search for users": "ئىشلەتكۈچى ئىزدەش ئاساسى",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "TTS مودېلى",
|
||||
"TTS Settings": "TTS تەڭشەكلىرى",
|
||||
"TTS Voice": "TTS ئاۋازى",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "تىپى",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face چۈشۈرۈش URL كىرگۈزۈڭ",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "ئاگاھلاندۇرۇش: بۇ قوزغىتىلسا، ئىشلەتكۈچىلەر خالىغان كودنى مۇلازىمېتىرغا چىقىرىدۇ.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "ئاگاھلاندۇرۇش: Jupyter ئىجرا قىلىش خالىغان كود ئىجرا قىلىشقا يول قويىدۇ، بىخەتەرلىك خەۋپى يۇقىرى — ئىنتايىن دىققەت قىلىڭ.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "تور",
|
||||
"Web API": "تور API",
|
||||
"Web Loader Engine": "تور يۈكلىگۈچ ماتورى",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI \"{{url}}\" غا تەلەپ يوللايدۇ",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI \"{{url}}/api/chat\" غا تەلەپ يوللايدۇ",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI \"{{url}}/chat/completions\" غا تەلەپ يوللايدۇ",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "نېمىگە ئېرىشمىكچىسىز؟",
|
||||
"What are you working on?": "نېمە ئىش قىلىۋاتىسىز؟",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -482,6 +482,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "Зона небезпеки",
|
||||
"Dark": "Темна",
|
||||
@@ -972,6 +973,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Режим повного контексту",
|
||||
"Function": "Функція",
|
||||
"Function Calling": "Виклик функцій",
|
||||
@@ -1046,6 +1048,7 @@
|
||||
"History": "",
|
||||
"Home": "Головна",
|
||||
"Host": "Хост",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Чим я можу допомогти вам сьогодні?",
|
||||
"How would you rate this response?": "Як би ви оцінили цю відповідь?",
|
||||
@@ -1268,10 +1271,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Модель",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Модель '{{modelName}}' успішно завантажено.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Модель '{{modelTag}}' вже знаходиться в черзі на завантаження.",
|
||||
"Model {{modelId}} not found": "Модель {{modelId}} не знайдено",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Модель {{modelName}} не здатна бачити",
|
||||
"Model {{name}} is now {{status}}": "Модель {{name}} тепер має {{status}}",
|
||||
@@ -1312,6 +1315,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "API ключ для пошуку Mojeek",
|
||||
"Monthly": "",
|
||||
"More": "Більше",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1432,6 +1436,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Версія Ollama",
|
||||
"On": "Увімк",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1679,6 +1684,7 @@
|
||||
"Running": "Виконується",
|
||||
"Running...": "Виконується...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Зберегти",
|
||||
"Save & Create": "Зберегти та створити",
|
||||
"Save & Update": "Зберегти та оновити",
|
||||
@@ -1895,6 +1901,7 @@
|
||||
"STT Model": "Модель STT ",
|
||||
"STT Settings": "Налаштування STT",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1940,6 +1947,7 @@
|
||||
"Text Splitter": "Роздільник тексту",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Система синтезу мови",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Дякуємо за ваш відгук!",
|
||||
"The Application Account DN you bind with for search": "DN облікового запису застосунку, з яким ви здійснюєте прив'язку для пошуку",
|
||||
"The base to search for users": "База для пошуку користувачів",
|
||||
@@ -2053,6 +2061,7 @@
|
||||
"TTS Model": "Модель TTS",
|
||||
"TTS Settings": "Налаштування TTS",
|
||||
"TTS Voice": "Голос TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Тип",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Введіть URL ресурсу Hugging Face Resolve (завантаження)",
|
||||
@@ -2155,6 +2164,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Попередження: Увімкнення цього дозволить користувачам завантажувати довільний код на сервер.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Попередження: Виконання коду в Jupyter дозволяє виконувати任 будь-який код, що становить серйозні ризики для безпеки — дійте з крайньою обережністю.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Веб",
|
||||
"Web API": "Веб-API",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2171,6 +2181,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI надсилатиме запити до \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI надсилатиме запити до \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Чого ви прагнете досягти?",
|
||||
"What are you working on?": "Над чим ти працюєш?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "",
|
||||
"Dark": "ڈارک",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "",
|
||||
"Function": "فنکشن",
|
||||
"Function Calling": "",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "",
|
||||
"Host": "",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "میں آج آپ کی کس طرح مدد کر سکتا ہوں؟",
|
||||
"How would you rate this response?": "",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "",
|
||||
"Mistral OCR API Key required.": "",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "ماڈل",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "ماڈل '{{modelName}}' کامیابی سے ڈاؤن لوڈ ہو گیا ہے",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "ماڈل '{{modelTag}}' پہلے ہی ڈاؤن لوڈ کے لیے قطار میں ہے",
|
||||
"Model {{modelId}} not found": "ماڈل {{modelId}} نہیں ملا",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "ماڈل {{modelName}} بصری صلاحیت نہیں رکھتا",
|
||||
"Model {{name}} is now {{status}}": "ماڈل {{name}} اب {{status}} ہے",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "",
|
||||
"Monthly": "",
|
||||
"More": "مزید",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "اولاما ورژن",
|
||||
"On": "چالو",
|
||||
"Once": "",
|
||||
"OneDrive": "",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "چل رہا ہے",
|
||||
"Running...": "چل رہا ہے...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "محفوظ کریں",
|
||||
"Save & Create": "محفوظ کریں اور تخلیق کریں",
|
||||
"Save & Update": "محفوظ کریں اور اپ ڈیٹ کریں",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "ایس ٹی ٹی ماڈل",
|
||||
"STT Settings": "ایس ٹی ٹی ترتیبات",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "متن تقسیم کنندہ",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "ٹیکسٹ ٹو اسپیچ انجن",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "آپ کی رائے کا شکریہ!",
|
||||
"The Application Account DN you bind with for search": "",
|
||||
"The base to search for users": "",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "ٹی ٹی ایس ماڈل",
|
||||
"TTS Settings": "ٹی ٹی ایس ترتیبات",
|
||||
"TTS Voice": "ٹی ٹی ایس آواز",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "ٹائپ کریں",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "قسم ہگنگ فیس ری زولو (ڈاؤن لوڈ) یو آر ایل",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
|
||||
"We_day_of_week": "",
|
||||
"Web": "ویب",
|
||||
"Web API": "ویب اے پی آئی",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "",
|
||||
"What are you working on?": "",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "Махсус параметр номи",
|
||||
"Custom Parameter Value": "Махсус параметр қиймати",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "Хавфли зона",
|
||||
"Dark": "Қоронғи",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "Аутентификация қилиш учун тизим фойдаланувчиси сеанси ҳисоб маълумотларини йўналтиради",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Тўлиқ контекст режими",
|
||||
"Function": "Функция",
|
||||
"Function Calling": "Функцияни чақириш",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "Уй",
|
||||
"Host": "Хост",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Бугун сизга қандай ёрдам бера оламан?",
|
||||
"How would you rate this response?": "Бу жавобни қандай баҳолайсиз?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "Mistral ОCР",
|
||||
"Mistral OCR API Key required.": "Mistral ОCР АПИ калити талаб қилинади.",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Модел",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "“{{modelName}}” модели юклаб олинди.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "“{{modelTag}}” модели аллақачон юклаб олиш учун навбатда турибди.",
|
||||
"Model {{modelId}} not found": "{{modelId}} модели топилмади",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "{{modelName}} модели кўриш қобилиятига эга эмас",
|
||||
"Model {{name}} is now {{status}}": "{{name}} модели энди {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "Можеэк қидирув АПИ калити",
|
||||
"Monthly": "",
|
||||
"More": "Кўпроқ",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama версияси",
|
||||
"On": "Ёниқ",
|
||||
"Once": "",
|
||||
"OneDrive": "ОнеДриве",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "Ишлаётган",
|
||||
"Running...": "Ишлаётган...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Сақлаш",
|
||||
"Save & Create": "Сақлаш ва яратиш",
|
||||
"Save & Update": "Сақлаш ва янгилаш",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "СТТ модели",
|
||||
"STT Settings": "СТТ созламалари",
|
||||
"Stylized PDF Export": "Услубий PDF экспорти",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "Матн ажратувчи",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Матнни нутққа айлантириш механизми",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Фикр-мулоҳазангиз учун ташаккур!",
|
||||
"The Application Account DN you bind with for search": "Қидириш учун сиз боғланган илова ҳисоби ДН",
|
||||
"The base to search for users": "Фойдаланувчиларни қидириш учун асос",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "ТТС модели",
|
||||
"TTS Settings": "ТТС созламалари",
|
||||
"TTS Voice": "ТТС овози",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Тури",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (юклаб олиш) URL манзилини киритинг",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Огоҳлантириш: Буни ёқиш фойдаланувчиларга серверга ихтиёрий кодни юклаш имконини беради.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Огоҳлантириш: Жупйтер ижроси ўзбошимчалик билан код бажарилишини таъминлайди, бу хавфсизликка жиддий хавф туғдиради - жуда эҳтиёткорлик билан давом этинг.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Веб",
|
||||
"Web API": "Web API",
|
||||
"Web Loader Engine": "Web Loader Engine",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI “{{url}}” манзилига сўров юборади",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI “{{url}}/api/chat” манзилига сўров юборади",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI \"{{url}}/chat/completions\" манзилига сўров юборади",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Нимага эришмоқчисиз?",
|
||||
"What are you working on?": "Нима устида ишлаяпсиз?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -480,6 +480,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "Maxsus parametr nomi",
|
||||
"Custom Parameter Value": "Maxsus parametr qiymati",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "Xavfli zona",
|
||||
"Dark": "Qorong'i",
|
||||
@@ -970,6 +971,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "Autentifikatsiya qilish uchun tizim foydalanuvchisi seansi hisob ma'lumotlarini yo'naltiradi",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "To'liq kontekst rejimi",
|
||||
"Function": "Funktsiya",
|
||||
"Function Calling": "Funktsiyani chaqirish",
|
||||
@@ -1044,6 +1046,7 @@
|
||||
"History": "",
|
||||
"Home": "Uy",
|
||||
"Host": "Xost",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Bugun sizga qanday yordam bera olaman?",
|
||||
"How would you rate this response?": "Bu javobni qanday baholaysiz?",
|
||||
@@ -1266,10 +1269,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Mistral OCR API kaliti talab qilinadi.",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Model",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "“{{modelName}}” modeli yuklab olindi.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "“{{modelTag}}” modeli allaqachon yuklab olish uchun navbatda turibdi.",
|
||||
"Model {{modelId}} not found": "{{modelId}} modeli topilmadi",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "{{modelName}} modeli ko'rish qobiliyatiga ega emas",
|
||||
"Model {{name}} is now {{status}}": "{{name}} modeli endi {{status}}",
|
||||
@@ -1310,6 +1313,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "Mojeek qidiruv API kaliti",
|
||||
"Monthly": "",
|
||||
"More": "Ko'proq",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1430,6 +1434,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Ollama versiyasi",
|
||||
"On": "Yoniq",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1675,6 +1680,7 @@
|
||||
"Running": "Yugurish",
|
||||
"Running...": "Yugurish...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Saqlash",
|
||||
"Save & Create": "Saqlash va yaratish",
|
||||
"Save & Update": "Saqlash va yangilash",
|
||||
@@ -1891,6 +1897,7 @@
|
||||
"STT Model": "STT modeli",
|
||||
"STT Settings": "STT sozlamalari",
|
||||
"Stylized PDF Export": "Stillashtirilgan PDF eksporti",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1936,6 +1943,7 @@
|
||||
"Text Splitter": "Matn ajratuvchi",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Matnni nutqqa aylantirish mexanizmi",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Fikr-mulohazangiz uchun tashakkur!",
|
||||
"The Application Account DN you bind with for search": "Qidirish uchun siz bog'langan ilova hisobi DN",
|
||||
"The base to search for users": "Foydalanuvchilarni qidirish uchun asos",
|
||||
@@ -2049,6 +2057,7 @@
|
||||
"TTS Model": "TTS modeli",
|
||||
"TTS Settings": "TTS sozlamalari",
|
||||
"TTS Voice": "TTS ovozi",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Turi",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (Yuklab olish) URL manzilini kiriting",
|
||||
@@ -2151,6 +2160,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Ogohlantirish: Buni yoqish foydalanuvchilarga serverga ixtiyoriy kodni yuklash imkonini beradi.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Ogohlantirish: Jupyter ijrosi o'zboshimchalik bilan kod bajarilishini ta'minlaydi, bu xavfsizlikka jiddiy xavf tug'diradi - juda ehtiyotkorlik bilan davom eting.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Veb",
|
||||
"Web API": "Web API",
|
||||
"Web Loader Engine": "Web Loader Engine",
|
||||
@@ -2167,6 +2177,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI “{{url}}” manziliga so‘rov yuboradi",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI “{{url}}/api/chat” manziliga so‘rov yuboradi",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI \"{{url}}/chat/completions\" manziliga so'rov yuboradi",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Nimaga erishmoqchisiz?",
|
||||
"What are you working on?": "Nima ustida ishlayapsiz?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -479,6 +479,7 @@
|
||||
"Custom Gender": "",
|
||||
"Custom Parameter Name": "",
|
||||
"Custom Parameter Value": "",
|
||||
"Daily": "",
|
||||
"Daily Messages": "",
|
||||
"Danger Zone": "Vùng Nguy hiểm",
|
||||
"Dark": "Tối",
|
||||
@@ -969,6 +970,7 @@
|
||||
"Forward": "",
|
||||
"Forwards system user OAuth access token to authenticate": "",
|
||||
"Forwards system user session credentials to authenticate": "Chuyển tiếp thông tin xác thực phiên người dùng hệ thống để xác thực",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "Chế độ Ngữ cảnh Đầy đủ",
|
||||
"Function": "Function",
|
||||
"Function Calling": "Gọi Function",
|
||||
@@ -1043,6 +1045,7 @@
|
||||
"History": "",
|
||||
"Home": "Trang chủ",
|
||||
"Host": "Host",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "",
|
||||
"How can I help you today?": "Tôi có thể giúp gì cho bạn hôm nay?",
|
||||
"How would you rate this response?": "Bạn đánh giá phản hồi này thế nào?",
|
||||
@@ -1265,10 +1268,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "Yêu cầu Khóa API Mistral OCR.",
|
||||
"MistralAI": "",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "Mô hình",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "Mô hình '{{modelName}}' đã được tải xuống thành công.",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "Mô hình '{{modelTag}}' đã có trong hàng đợi để tải xuống.",
|
||||
"Model {{modelId}} not found": "Không tìm thấy Mô hình {{modelId}}",
|
||||
"Model {{modelName}} deleted successfully": "",
|
||||
"Model {{modelName}} is not vision capable": "Model {{modelName}} không có khả năng nhìn",
|
||||
"Model {{name}} is now {{status}}": "Model {{name}} bây giờ là {{status}}",
|
||||
@@ -1309,6 +1312,7 @@
|
||||
"Models Sharing": "",
|
||||
"Mojeek": "",
|
||||
"Mojeek Search API Key": "Khóa API Mojeek Search",
|
||||
"Monthly": "",
|
||||
"More": "Thêm",
|
||||
"More Concise": "",
|
||||
"More options": "",
|
||||
@@ -1429,6 +1433,7 @@
|
||||
"Ollama Cloud API Key": "",
|
||||
"Ollama Version": "Phiên bản Ollama",
|
||||
"On": "Bật",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||
@@ -1673,6 +1678,7 @@
|
||||
"Running": "Đang chạy",
|
||||
"Running...": "Đang chạy...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "Lưu",
|
||||
"Save & Create": "Lưu & Tạo",
|
||||
"Save & Update": "Lưu & Cập nhật",
|
||||
@@ -1889,6 +1895,7 @@
|
||||
"STT Model": "Mô hình STT",
|
||||
"STT Settings": "Cài đặt Nhận dạng Giọng nói",
|
||||
"Stylized PDF Export": "",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "",
|
||||
"Submit suggestion": "",
|
||||
"Subtitle": "",
|
||||
@@ -1934,6 +1941,7 @@
|
||||
"Text Splitter": "Bộ chia Văn bản",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Công cụ Chuyển Văn bản thành Giọng nói",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "Cám ơn bạn đã gửi phản hồi!",
|
||||
"The Application Account DN you bind with for search": "DN Tài khoản Ứng dụng bạn liên kết để tìm kiếm",
|
||||
"The base to search for users": "Cơ sở để tìm kiếm người dùng",
|
||||
@@ -2047,6 +2055,7 @@
|
||||
"TTS Model": "Mô hình TTS",
|
||||
"TTS Settings": "Cài đặt Chuyển văn bản thành Giọng nói",
|
||||
"TTS Voice": "Giọng nói TTS",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "Kiểu",
|
||||
"Type here...": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Nhập URL Hugging Face Resolve (Tải xuống)",
|
||||
@@ -2149,6 +2158,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Cảnh báo: Bật tính năng này sẽ cho phép người dùng tải lên mã tùy ý trên máy chủ.",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Cảnh báo: Thực thi Jupyter cho phép thực thi mã tùy ý, gây ra rủi ro bảo mật nghiêm trọng—hãy tiến hành hết sức thận trọng.",
|
||||
"We_day_of_week": "",
|
||||
"Web": "Web",
|
||||
"Web API": "Web API",
|
||||
"Web Loader Engine": "",
|
||||
@@ -2165,6 +2175,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI sẽ thực hiện yêu cầu đến \"{{url}}\"",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI sẽ thực hiện yêu cầu đến \"{{url}}/api/chat\"",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI sẽ thực hiện yêu cầu đến \"{{url}}/chat/completions\"",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "Bạn đang cố gắng đạt được điều gì?",
|
||||
"What are you working on?": "Bạn đang làm gì vậy?",
|
||||
"What is NOT shared:": "",
|
||||
|
||||
@@ -479,6 +479,7 @@
|
||||
"Custom Gender": "自定义性别",
|
||||
"Custom Parameter Name": "自定义参数名称",
|
||||
"Custom Parameter Value": "自定义参数值",
|
||||
"Daily": "",
|
||||
"Daily Messages": "每日消息数",
|
||||
"Danger Zone": "危险区域",
|
||||
"Dark": "暗色",
|
||||
@@ -969,6 +970,7 @@
|
||||
"Forward": "前进",
|
||||
"Forwards system user OAuth access token to authenticate": "转发用户的 OAuth 访问令牌(Access Token)以进行身份验证",
|
||||
"Forwards system user session credentials to authenticate": "转发用户的会话凭证(Session Credentials)以进行身份验证",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "完整上下文模式",
|
||||
"Function": "函数",
|
||||
"Function Calling": "函数调用 (Function Calling)",
|
||||
@@ -1043,6 +1045,7 @@
|
||||
"History": "历史记录",
|
||||
"Home": "主页",
|
||||
"Host": "主机",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "每小时消息数",
|
||||
"How can I help you today?": "有什么我能帮您的吗?",
|
||||
"How would you rate this response?": "您如何评价这个回答?",
|
||||
@@ -1265,10 +1268,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "需要 Mistral OCR 接口密钥",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "模型",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "模型“{{modelName}}”已成功下载",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "模型“{{modelTag}}”已在下载队列中",
|
||||
"Model {{modelId}} not found": "未找到模型 {{modelId}}",
|
||||
"Model {{modelName}} deleted successfully": "成功删除模型:{{modelName}}",
|
||||
"Model {{modelName}} is not vision capable": "模型 {{modelName}} 不支持视觉能力",
|
||||
"Model {{name}} is now {{status}}": "模型 {{name}} 现在是 {{status}}",
|
||||
@@ -1309,6 +1312,7 @@
|
||||
"Models Sharing": "分享模型",
|
||||
"Mojeek": "Mojeek",
|
||||
"Mojeek Search API Key": "Mojeek Search 接口密钥",
|
||||
"Monthly": "",
|
||||
"More": "更多",
|
||||
"More Concise": "精炼表达",
|
||||
"More options": "更多选项",
|
||||
@@ -1429,6 +1433,7 @@
|
||||
"Ollama Cloud API Key": "Ollama Cloud 接口密钥",
|
||||
"Ollama Version": "Ollama 版本",
|
||||
"On": "开启",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "仅在启用“粘贴超长文本为文件”选项时有效。",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "仅在聚焦对话框且大语言模型正在生成回答时有效。",
|
||||
@@ -1673,6 +1678,7 @@
|
||||
"Running": "运行中",
|
||||
"Running...": "运行中...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "并行运行嵌入任务以加快处理速度。如果遇到限速问题,请关闭此选项。",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "保存",
|
||||
"Save & Create": "保存并创建",
|
||||
"Save & Update": "保存并更新",
|
||||
@@ -1889,6 +1895,7 @@
|
||||
"STT Model": "语音转文本模型",
|
||||
"STT Settings": "语音转文本设置",
|
||||
"Stylized PDF Export": "美化 PDF 导出",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "提交问题",
|
||||
"Submit suggestion": "提交建议",
|
||||
"Subtitle": "副标题",
|
||||
@@ -1934,6 +1941,7 @@
|
||||
"Text Splitter": "文本切分器",
|
||||
"Text-to-Speech": "文本转语音",
|
||||
"Text-to-Speech Engine": "文本转语音引擎",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "感谢您的反馈!",
|
||||
"The Application Account DN you bind with for search": "您所绑定用于搜索的 Application Account DN",
|
||||
"The base to search for users": "搜索用户的 Base",
|
||||
@@ -2047,6 +2055,7 @@
|
||||
"TTS Model": "文本转语音模型",
|
||||
"TTS Settings": "文本转语音设置",
|
||||
"TTS Voice": "文本转语音音色",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "类型",
|
||||
"Type here...": "请输入内容...",
|
||||
"Type Hugging Face Resolve (Download) URL": "输入 Hugging Face 模型解析(下载)地址",
|
||||
@@ -2149,6 +2158,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "警告:启用后将允许用户自动执行定时提示词任务。",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "警告:启用此功能将允许用户在服务器上上传任意代码",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "警告:启用 Jupyter 执行将允许运行任意代码,存在严重安全风险——务必谨慎操作",
|
||||
"We_day_of_week": "",
|
||||
"Web": "网页",
|
||||
"Web API": "网页 API",
|
||||
"Web Loader Engine": "网页加载引擎",
|
||||
@@ -2165,6 +2175,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI 将向 \"{{url}}\" 发出请求",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI 将向 \"{{url}}/api/chat\" 发出请求",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI 将向 \"{{url}}/chat/completions\" 发出请求",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "您想要达到什么目标?",
|
||||
"What are you working on?": "您在忙于什么?",
|
||||
"What is NOT shared:": "不共享的内容:",
|
||||
|
||||
@@ -479,6 +479,7 @@
|
||||
"Custom Gender": "自訂性別",
|
||||
"Custom Parameter Name": "自訂參數名稱",
|
||||
"Custom Parameter Value": "自訂參數值",
|
||||
"Daily": "",
|
||||
"Daily Messages": "每日訊息數",
|
||||
"Danger Zone": "危險區域",
|
||||
"Dark": "深色",
|
||||
@@ -969,6 +970,7 @@
|
||||
"Forward": "前進",
|
||||
"Forwards system user OAuth access token to authenticate": "轉發使用者 OAuth 存取權杖(Access Token)以進行驗證",
|
||||
"Forwards system user session credentials to authenticate": "轉發使用者工作階段憑證(Session Credentials)以進行驗證",
|
||||
"Fr_day_of_week": "",
|
||||
"Full Context Mode": "完整上下文模式",
|
||||
"Function": "函式",
|
||||
"Function Calling": "函式呼叫",
|
||||
@@ -1043,6 +1045,7 @@
|
||||
"History": "歷史紀錄",
|
||||
"Home": "首頁",
|
||||
"Host": "主機",
|
||||
"Hourly": "",
|
||||
"Hourly Messages": "每小時訊息數",
|
||||
"How can I help you today?": "今天我能為您做些什麼?",
|
||||
"How would you rate this response?": "您如何評價此回應?",
|
||||
@@ -1265,10 +1268,10 @@
|
||||
"Mistral OCR": "Mistral OCR",
|
||||
"Mistral OCR API Key required.": "需要提供 Mistral OCR API 金鑰。",
|
||||
"MistralAI": "MistralAI",
|
||||
"Mo_day_of_week": "",
|
||||
"Model": "模型",
|
||||
"Model '{{modelName}}' has been successfully downloaded.": "模型「{{modelName}}」已成功下載。",
|
||||
"Model '{{modelTag}}' is already in queue for downloading.": "模型「{{modelTag}}」已在下載佇列中。",
|
||||
"Model {{modelId}} not found": "未找到模型 {{modelId}}",
|
||||
"Model {{modelName}} deleted successfully": "模型 {{modelName}} 已成功刪除",
|
||||
"Model {{modelName}} is not vision capable": "模型 {{modelName}} 不具備視覺能力",
|
||||
"Model {{name}} is now {{status}}": "模型 {{name}} 現在狀態為 {{status}}",
|
||||
@@ -1309,6 +1312,7 @@
|
||||
"Models Sharing": "分享模型",
|
||||
"Mojeek": "Mojeek",
|
||||
"Mojeek Search API Key": "Mojeek 搜尋 API 金鑰",
|
||||
"Monthly": "",
|
||||
"More": "更多",
|
||||
"More Concise": "精煉表達",
|
||||
"More options": "更多選項",
|
||||
@@ -1429,6 +1433,7 @@
|
||||
"Ollama Cloud API Key": "Ollama Cloud API 金鑰",
|
||||
"Ollama Version": "Ollama 版本",
|
||||
"On": "開啟",
|
||||
"Once": "",
|
||||
"OneDrive": "OneDrive",
|
||||
"Only active when \"Paste Large Text as File\" setting is toggled on.": "僅在啟用「將大型文字作為檔案貼上」設定時有效。",
|
||||
"Only active when the chat input is in focus and an LLM is generating a response.": "僅在對話輸入框聚焦且大型語言模型正在產生回應時有效。",
|
||||
@@ -1673,6 +1678,7 @@
|
||||
"Running": "正在執行",
|
||||
"Running...": "正在執行...",
|
||||
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "同時執行嵌入任務以加快處理速度。如果遇到速率限制問題,請關閉此功能。",
|
||||
"Sa_day_of_week": "",
|
||||
"Save": "儲存",
|
||||
"Save & Create": "儲存並建立",
|
||||
"Save & Update": "儲存並更新",
|
||||
@@ -1889,6 +1895,7 @@
|
||||
"STT Model": "語音轉文字 (STT) 模型",
|
||||
"STT Settings": "語音轉文字 (STT) 設定",
|
||||
"Stylized PDF Export": "風格化 PDF 匯出",
|
||||
"Su_day_of_week": "",
|
||||
"Submit question": "提交問題",
|
||||
"Submit suggestion": "提交建議",
|
||||
"Subtitle": "副標題",
|
||||
@@ -1934,6 +1941,7 @@
|
||||
"Text Splitter": "文字分割器",
|
||||
"Text-to-Speech": "文字轉語音",
|
||||
"Text-to-Speech Engine": "文字轉語音引擎",
|
||||
"Th_day_of_week": "",
|
||||
"Thanks for your feedback!": "感謝您的回饋!",
|
||||
"The Application Account DN you bind with for search": "您綁定用於搜尋的應用程式帳號 DN",
|
||||
"The base to search for users": "搜尋使用者的基礎",
|
||||
@@ -2047,6 +2055,7 @@
|
||||
"TTS Model": "文字轉語音 (TTS) 模型",
|
||||
"TTS Settings": "文字轉語音 (TTS) 設定",
|
||||
"TTS Voice": "文字轉語音 (TTS) 聲音",
|
||||
"Tu_day_of_week": "",
|
||||
"Type": "類型",
|
||||
"Type here...": "在此輸入...",
|
||||
"Type Hugging Face Resolve (Download) URL": "輸入 Hugging Face 的解析(下載)URL",
|
||||
@@ -2149,6 +2158,7 @@
|
||||
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "警告:啟用後將允許使用者自動執行排程提示詞。",
|
||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "警告:啟用此功能將允許使用者在伺服器上上傳任意程式碼。",
|
||||
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "警告:Jupyter 執行允許任意程式碼執行,構成嚴重安全風險 —— 請務必極度謹慎。",
|
||||
"We_day_of_week": "",
|
||||
"Web": "網頁",
|
||||
"Web API": "網頁 API",
|
||||
"Web Loader Engine": "網頁載入引擎",
|
||||
@@ -2165,6 +2175,7 @@
|
||||
"WebUI will make requests to \"{{url}}\"": "WebUI 將向 \"{{url}}\" 傳送請求",
|
||||
"WebUI will make requests to \"{{url}}/api/chat\"": "WebUI 將向 \"{{url}}/api/chat\" 傳送請求",
|
||||
"WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI 將向 \"{{url}}/chat/completions\" 傳送請求",
|
||||
"Weekly": "",
|
||||
"What are you trying to achieve?": "您正在試圖完成什麼?",
|
||||
"What are you working on?": "您現在的工作是什麼?",
|
||||
"What is NOT shared:": "不會分享的內容:",
|
||||
|
||||
Reference in New Issue
Block a user