Commit c97d4bbb authored by SimonOriginal's avatar SimonOriginal
Browse files

add i18n keys

parent e19c3272
......@@ -235,7 +235,7 @@
</a>
<div class="flex flex-row gap-0.5 self-center">
{#if func?.meta?.manifest?.funding_url ?? false}
<Tooltip content="Support">
<Tooltip content="$i18n.t('Support')">
<button
class="self-center w-fit text-sm px-2 py-2 dark:text-gray-300 dark:hover:text-white hover:bg-black/5 dark:hover:bg-white/5 rounded-xl"
type="button"
......@@ -249,7 +249,7 @@
</Tooltip>
{/if}
<Tooltip content="Valves">
<Tooltip content="$i18n.t('Valves')">
<button
class="self-center w-fit text-sm px-2 py-2 dark:text-gray-300 dark:hover:text-white hover:bg-black/5 dark:hover:bg-white/5 rounded-xl"
type="button"
......@@ -314,7 +314,7 @@
</FunctionMenu>
<div class=" self-center mx-1">
<Tooltip content={func.is_active ? 'Enabled' : 'Disabled'}>
<Tooltip content={func.is_active ? $i18n.t('Enabled') : $i18n.t('Disabled')}>
<Switch
bind:state={func.is_active}
on:change={async (e) => {
......@@ -494,15 +494,15 @@
<div>Please carefully review the following warnings:</div>
<ul class=" mt-1 list-disc pl-4 text-xs">
<li>Functions allow arbitrary code execution.</li>
<li>Do not install functions from sources you do not fully trust.</li>
<li>{$i18n.t('Functions allow arbitrary code execution.')}</li>
<li>{$i18n.t('Do not install functions from sources you do not fully trust.')}</li>
</ul>
</div>
<div class="my-3">
I acknowledge that I have read and I understand the implications of my action. I am aware of
the risks associated with executing arbitrary code and I have verified the trustworthiness of
the source.
{$i18n.t(
'I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.'
)}
</div>
</div>
</ConfirmDialog>
......@@ -309,7 +309,7 @@ class Pipe:
<input
class="w-full px-3 py-2 text-sm font-medium bg-gray-50 dark:bg-gray-850 dark:text-gray-200 rounded-lg outline-none"
type="text"
placeholder="Function Name (e.g. My Filter)"
placeholder={$i18n.t('Function Name (e.g. My Filter)')}
bind:value={name}
required
/>
......@@ -317,7 +317,7 @@ class Pipe:
<input
class="w-full px-3 py-2 text-sm font-medium disabled:text-gray-300 dark:disabled:text-gray-700 bg-gray-50 dark:bg-gray-850 dark:text-gray-200 rounded-lg outline-none"
type="text"
placeholder="Function ID (e.g. my_filter)"
placeholder={$i18n.t('Function ID (e.g. my_filter)')}
bind:value={id}
required
disabled={edit}
......@@ -326,7 +326,7 @@ class Pipe:
<input
class="w-full px-3 py-2 text-sm font-medium bg-gray-50 dark:bg-gray-850 dark:text-gray-200 rounded-lg outline-none"
type="text"
placeholder="Function Description (e.g. A filter to remove profanity from text)"
placeholder={$i18n.t('Function Description (e.g. A filter to remove profanity from text)')}
bind:value={meta.description}
required
/>
......@@ -348,10 +348,10 @@ class Pipe:
<div class="pb-3 flex justify-between">
<div class="flex-1 pr-3">
<div class="text-xs text-gray-500 line-clamp-2">
<span class=" font-semibold dark:text-gray-200">Warning:</span> Functions allow
arbitrary code execution <br />—
<span class=" font-semibold dark:text-gray-200">{$i18n.t('Warning:')}</span>
{$i18n.t('Functions allow arbitrary code execution')} <br />—
<span class=" font-medium dark:text-gray-400"
>don't install random functions from sources you don't trust.</span
>{$i18n.t('don't install random functions from sources you don't trust.')}</span
>
</div>
</div>
......@@ -376,18 +376,18 @@ class Pipe:
>
<div class="text-sm text-gray-500">
<div class=" bg-yellow-500/20 text-yellow-700 dark:text-yellow-200 rounded-lg px-4 py-3">
<div>Please carefully review the following warnings:</div>
<div>{$i18n.t('Please carefully review the following warnings:')}</div>
<ul class=" mt-1 list-disc pl-4 text-xs">
<li>Functions allow arbitrary code execution.</li>
<li>Do not install functions from sources you do not fully trust.</li>
<li>{$i18n.t('Functions allow arbitrary code execution.')}</li>
<li>{$i18n.t('Do not install functions from sources you do not fully trust.')}</li>
</ul>
</div>
<div class="my-3">
I acknowledge that I have read and I understand the implications of my action. I am aware of
the risks associated with executing arbitrary code and I have verified the trustworthiness of
the source.
{$i18n.t(
'I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.'
)}
</div>
</div>
</ConfirmDialog>
......@@ -221,7 +221,7 @@
</Tooltip>
{/if}
<Tooltip content="Valves">
<Tooltip content="$i18n.t('Valves')">
<button
class="self-center w-fit text-sm px-2 py-2 dark:text-gray-300 dark:hover:text-white hover:bg-black/5 dark:hover:bg-white/5 rounded-xl"
type="button"
......@@ -436,18 +436,18 @@
>
<div class="text-sm text-gray-500">
<div class=" bg-yellow-500/20 text-yellow-700 dark:text-yellow-200 rounded-lg px-4 py-3">
<div>Please carefully review the following warnings:</div>
<div>{$i18n.t('Please carefully review the following warnings:')}</div>
<ul class=" mt-1 list-disc pl-4 text-xs">
<li>Tools have a function calling system that allows arbitrary code execution.</li>
<li>Do not install tools from sources you do not fully trust.</li>
<li>{$i18n.t('Tools have a function calling system that allows arbitrary code execution')}.</li>
<li>{$i18n.t('Do not install tools from sources you do not fully trust.')}</li>
</ul>
</div>
<div class="my-3">
I acknowledge that I have read and I understand the implications of my action. I am aware of
the risks associated with executing arbitrary code and I have verified the trustworthiness of
the source.
{$i18n.t(
'I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.'
)}
</div>
</div>
</ConfirmDialog>
......@@ -197,7 +197,7 @@ class Tools:
<input
class="w-full px-3 py-2 text-sm font-medium bg-gray-50 dark:bg-gray-850 dark:text-gray-200 rounded-lg outline-none"
type="text"
placeholder="Toolkit Name (e.g. My ToolKit)"
placeholder={$i18n.t('Toolkit Name (e.g. My ToolKit)')}
bind:value={name}
required
/>
......@@ -205,7 +205,7 @@ class Tools:
<input
class="w-full px-3 py-2 text-sm font-medium disabled:text-gray-300 dark:disabled:text-gray-700 bg-gray-50 dark:bg-gray-850 dark:text-gray-200 rounded-lg outline-none"
type="text"
placeholder="Toolkit ID (e.g. my_toolkit)"
placeholder={$i18n.t('Toolkit ID (e.g. my_toolkit)')}
bind:value={id}
required
disabled={edit}
......@@ -214,7 +214,7 @@ class Tools:
<input
class="w-full px-3 py-2 text-sm font-medium bg-gray-50 dark:bg-gray-850 dark:text-gray-200 rounded-lg outline-none"
type="text"
placeholder="Toolkit Description (e.g. A toolkit for performing various operations)"
placeholder={$i18n.t('Toolkit Description (e.g. A toolkit for performing various operations)')}
bind:value={meta.description}
required
/>
......@@ -236,10 +236,10 @@ class Tools:
<div class="pb-3 flex justify-between">
<div class="flex-1 pr-3">
<div class="text-xs text-gray-500 line-clamp-2">
<span class=" font-semibold dark:text-gray-200">Warning:</span> Tools are a function
calling system with arbitrary code execution <br />—
<span class=" font-semibold dark:text-gray-200">{$i18n.t('Warning:')}</span>
{$i18n.t('Tools are a function calling system with arbitrary code execution')} <br />—
<span class=" font-medium dark:text-gray-400"
>don't install random tools from sources you don't trust.</span
>{$i18n.t('don't install random tools from sources you don't trust.')}</span
>
</div>
</div>
......@@ -264,18 +264,18 @@ class Tools:
>
<div class="text-sm text-gray-500">
<div class=" bg-yellow-500/20 text-yellow-700 dark:text-yellow-200 rounded-lg px-4 py-3">
<div>Please carefully review the following warnings:</div>
<div>{$i18n.t('Please carefully review the following warnings:')}</div>
<ul class=" mt-1 list-disc pl-4 text-xs">
<li>Tools have a function calling system that allows arbitrary code execution.</li>
<li>Do not install tools from sources you do not fully trust.</li>
<li>{$i18n.t('Tools have a function calling system that allows arbitrary code execution.')}</li>
<li>{$i18n.t('Do not install tools from sources you do not fully trust.')}</li>
</ul>
</div>
<div class="my-3">
I acknowledge that I have read and I understand the implications of my action. I am aware of
the risks associated with executing arbitrary code and I have verified the trustworthiness of
the source.
{$i18n.t(
'I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.'
)}
</div>
</div>
</ConfirmDialog>
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "حذف {{name}}",
"Description": "وصف",
"Didn't fully follow instructions": "لم أتبع التعليمات بشكل كامل",
"Disabled": "",
"Discover a function": "",
"Discover a model": "اكتشف نموذجا",
"Discover a prompt": "اكتشاف موجه",
......@@ -188,11 +189,14 @@
"Dismissible": "",
"Display Emoji in Call": "",
"Display the username instead of You in the Chat": "اعرض اسم المستخدم بدلاً منك في الدردشة",
"Do not install functions from sources you do not fully trust.": "",
"Do not install tools from sources you do not fully trust.": "",
"Document": "المستند",
"Document Settings": "أعدادات المستند",
"Documentation": "",
"Documents": "مستندات",
"does not make any external connections, and your data stays securely on your locally hosted server.": "لا يجري أي اتصالات خارجية، وتظل بياناتك آمنة على الخادم المستضاف محليًا.",
"don": "",
"Don't Allow": "لا تسمح بذلك",
"Don't have an account?": "ليس لديك حساب؟",
"Don't like the style": "لا أحب النمط",
......@@ -215,6 +219,7 @@
"Enable Community Sharing": "تمكين مشاركة المجتمع",
"Enable New Sign Ups": "تفعيل عمليات التسجيل الجديدة",
"Enable Web Search": "تمكين بحث الويب",
"Enabled": "",
"Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.",
"Enter {{role}} message here": "أدخل رسالة {{role}} هنا",
......@@ -280,10 +285,15 @@
"Frequency Penalty": "عقوبة التردد",
"Function created successfully": "",
"Function deleted successfully": "",
"Function Description (e.g. A filter to remove profanity from text)": "",
"Function ID (e.g. my_filter)": "",
"Function is now globally disabled": "",
"Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "",
"Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"General": "عام",
"General Settings": "الاعدادات العامة",
......@@ -302,6 +312,7 @@
"Hide Model": "",
"How can I help you today?": "كيف استطيع مساعدتك اليوم؟",
"Hybrid Search": "البحث الهجين",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
"Image Generation (Experimental)": "توليد الصور (تجريبي)",
"Image Generation Engine": "محرك توليد الصور",
"Image Settings": "إعدادات الصورة",
......@@ -442,6 +453,7 @@
"Pipelines Valves": "صمامات خطوط الأنابيب",
"Plain text (.txt)": "نص عادي (.txt)",
"Playground": "مكان التجربة",
"Please carefully review the following warnings:": "",
"Positive attitude": "موقف ايجابي",
"Previous 30 days": "أخر 30 يوم",
"Previous 7 days": "أخر 7 أيام",
......@@ -611,7 +623,13 @@
"Tool deleted successfully": "",
"Tool imported successfully": "",
"Tool updated successfully": "",
"Toolkit Description (e.g. A toolkit for performing various operations)": "",
"Toolkit ID (e.g. my_toolkit)": "",
"Toolkit Name (e.g. My ToolKit)": "",
"Tools": "",
"Tools are a function calling system with arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K",
"Top P": "Top P",
"Trouble accessing Ollama?": "هل تواجه مشكلة في الوصول",
......@@ -653,6 +671,7 @@
"Version": "إصدار",
"Voice": "",
"Warning": "تحذير",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "تحذير: إذا قمت بتحديث أو تغيير نموذج التضمين الخاص بك، فستحتاج إلى إعادة استيراد كافة المستندات.",
"Web": "Web",
"Web API": "",
......
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "Изтрито {{име}}",
"Description": "Описание",
"Didn't fully follow instructions": "Не следва инструкциите",
"Disabled": "",
"Discover a function": "",
"Discover a model": "Открийте модел",
"Discover a prompt": "Откриване на промпт",
......@@ -188,11 +189,14 @@
"Dismissible": "",
"Display Emoji in Call": "",
"Display the username instead of You in the Chat": "Показване на потребителското име вместо Вие в чата",
"Do not install functions from sources you do not fully trust.": "",
"Do not install tools from sources you do not fully trust.": "",
"Document": "Документ",
"Document Settings": "Документ Настройки",
"Documentation": "",
"Documents": "Документи",
"does not make any external connections, and your data stays securely on your locally hosted server.": "няма външни връзки, и вашите данни остават сигурни на локално назначен сървър.",
"don": "",
"Don't Allow": "Не Позволявай",
"Don't have an account?": "Нямате акаунт?",
"Don't like the style": "Не харесваш стила?",
......@@ -215,6 +219,7 @@
"Enable Community Sharing": "Разрешаване на споделяне в общност",
"Enable New Sign Ups": "Вклюване на Нови Потребители",
"Enable Web Search": "Разрешаване на търсене в уеб",
"Enabled": "",
"Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверете се, че вашият CSV файл включва 4 колони в следния ред: Име, Имейл, Парола, Роля.",
"Enter {{role}} message here": "Въведете съобщение за {{role}} тук",
......@@ -280,10 +285,15 @@
"Frequency Penalty": "Наказание за честота",
"Function created successfully": "",
"Function deleted successfully": "",
"Function Description (e.g. A filter to remove profanity from text)": "",
"Function ID (e.g. my_filter)": "",
"Function is now globally disabled": "",
"Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "",
"Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"General": "Основни",
"General Settings": "Основни Настройки",
......@@ -302,6 +312,7 @@
"Hide Model": "",
"How can I help you today?": "Как мога да ви помогна днес?",
"Hybrid Search": "Hybrid Search",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
"Image Generation (Experimental)": "Генерация на изображения (Експериментално)",
"Image Generation Engine": "Двигател за генериране на изображения",
"Image Settings": "Настройки на изображения",
......@@ -442,6 +453,7 @@
"Pipelines Valves": "Тръбопроводи Вентили",
"Plain text (.txt)": "Plain text (.txt)",
"Playground": "Плейграунд",
"Please carefully review the following warnings:": "",
"Positive attitude": "Позитивна ативност",
"Previous 30 days": "Предыдущите 30 дни",
"Previous 7 days": "Предыдущите 7 дни",
......@@ -607,7 +619,13 @@
"Tool deleted successfully": "",
"Tool imported successfully": "",
"Tool updated successfully": "",
"Toolkit Description (e.g. A toolkit for performing various operations)": "",
"Toolkit ID (e.g. my_toolkit)": "",
"Toolkit Name (e.g. My ToolKit)": "",
"Tools": "",
"Tools are a function calling system with arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K",
"Top P": "Top P",
"Trouble accessing Ollama?": "Проблеми с достъпът до Ollama?",
......@@ -649,6 +667,7 @@
"Version": "Версия",
"Voice": "",
"Warning": "Предупреждение",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Предупреждение: Ако актуализирате или промените вашия модел за вграждане, трябва да повторите импортирането на всички документи.",
"Web": "Уеб",
"Web API": "",
......
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "{{name}} মোছা হয়েছে",
"Description": "বিবরণ",
"Didn't fully follow instructions": "ইনস্ট্রাকশন সম্পূর্ণ অনুসরণ করা হয়নি",
"Disabled": "",
"Discover a function": "",
"Discover a model": "একটি মডেল আবিষ্কার করুন",
"Discover a prompt": "একটি প্রম্পট খুঁজে বের করুন",
......@@ -188,11 +189,14 @@
"Dismissible": "",
"Display Emoji in Call": "",
"Display the username instead of You in the Chat": "চ্যাটে 'আপনি'-র পরবর্তে ইউজারনেম দেখান",
"Do not install functions from sources you do not fully trust.": "",
"Do not install tools from sources you do not fully trust.": "",
"Document": "ডকুমেন্ট",
"Document Settings": "ডকুমেন্ট সেটিংসমূহ",
"Documentation": "",
"Documents": "ডকুমেন্টসমূহ",
"does not make any external connections, and your data stays securely on your locally hosted server.": "কোন এক্সটার্নাল কানেকশন তৈরি করে না, এবং আপনার ডেটা আর লোকালি হোস্টেড সার্ভারেই নিরাপদে থাকে।",
"don": "",
"Don't Allow": "অনুমোদন দেবেন না",
"Don't have an account?": "একাউন্ট নেই?",
"Don't like the style": "স্টাইল পছন্দ করেন না",
......@@ -215,6 +219,7 @@
"Enable Community Sharing": "সম্প্রদায় শেয়ারকরণ সক্ষম করুন",
"Enable New Sign Ups": "নতুন সাইনআপ চালু করুন",
"Enable Web Search": "ওয়েব অনুসন্ধান সক্ষম করুন",
"Enabled": "",
"Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "আপনার সিএসভি ফাইলটিতে এই ক্রমে 4 টি কলাম অন্তর্ভুক্ত রয়েছে তা নিশ্চিত করুন: নাম, ইমেল, পাসওয়ার্ড, ভূমিকা।.",
"Enter {{role}} message here": "{{role}} মেসেজ এখানে লিখুন",
......@@ -280,10 +285,15 @@
"Frequency Penalty": "ফ্রিকোয়েন্সি পেনাল্টি",
"Function created successfully": "",
"Function deleted successfully": "",
"Function Description (e.g. A filter to remove profanity from text)": "",
"Function ID (e.g. my_filter)": "",
"Function is now globally disabled": "",
"Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "",
"Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"General": "সাধারণ",
"General Settings": "সাধারণ সেটিংসমূহ",
......@@ -302,6 +312,7 @@
"Hide Model": "",
"How can I help you today?": "আপনাকে আজ কিভাবে সাহায্য করতে পারি?",
"Hybrid Search": "হাইব্রিড অনুসন্ধান",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
"Image Generation (Experimental)": "ইমেজ জেনারেশন (পরিক্ষামূলক)",
"Image Generation Engine": "ইমেজ জেনারেশন ইঞ্জিন",
"Image Settings": "ছবির সেটিংসমূহ",
......@@ -442,6 +453,7 @@
"Pipelines Valves": "পাইপলাইন ভালভ",
"Plain text (.txt)": "প্লায়েন টেক্সট (.txt)",
"Playground": "খেলাঘর",
"Please carefully review the following warnings:": "",
"Positive attitude": "পজিটিভ আক্রমণ",
"Previous 30 days": "পূর্ব ৩০ দিন",
"Previous 7 days": "পূর্ব ৭ দিন",
......@@ -607,7 +619,13 @@
"Tool deleted successfully": "",
"Tool imported successfully": "",
"Tool updated successfully": "",
"Toolkit Description (e.g. A toolkit for performing various operations)": "",
"Toolkit ID (e.g. my_toolkit)": "",
"Toolkit Name (e.g. My ToolKit)": "",
"Tools": "",
"Tools are a function calling system with arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K",
"Top P": "Top P",
"Trouble accessing Ollama?": "Ollama এক্সেস করতে সমস্যা হচ্ছে?",
......@@ -649,6 +667,7 @@
"Version": "ভার্সন",
"Voice": "",
"Warning": "সতর্কীকরণ",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "সতর্কীকরণ: আপনি যদি আপনার এম্বেডিং মডেল আপডেট বা পরিবর্তন করেন, তাহলে আপনাকে সমস্ত নথি পুনরায় আমদানি করতে হবে।.",
"Web": "ওয়েব",
"Web API": "",
......
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "S'ha eliminat {{name}}",
"Description": "Descripció",
"Didn't fully follow instructions": "No s'han seguit les instruccions completament",
"Disabled": "",
"Discover a function": "Descobrir una funció",
"Discover a model": "Descobrir un model",
"Discover a prompt": "Descobrir una indicació",
......@@ -188,11 +189,14 @@
"Dismissible": "Descartable",
"Display Emoji in Call": "Mostrar emojis a la trucada",
"Display the username instead of You in the Chat": "Mostrar el nom d'usuari en lloc de 'Tu' al xat",
"Do not install functions from sources you do not fully trust.": "",
"Do not install tools from sources you do not fully trust.": "",
"Document": "Document",
"Document Settings": "Preferències de documents",
"Documentation": "Documentació",
"Documents": "Documents",
"does not make any external connections, and your data stays securely on your locally hosted server.": "no realitza connexions externes, i les teves dades romanen segures al teu servidor allotjat localment.",
"don": "",
"Don't Allow": "No permetre",
"Don't have an account?": "No tens un compte?",
"Don't like the style": "No t'agrada l'estil?",
......@@ -215,6 +219,7 @@
"Enable Community Sharing": "Activar l'ús compartit amb la comunitat",
"Enable New Sign Ups": "Permetre nous registres",
"Enable Web Search": "Activar la cerca web",
"Enabled": "",
"Engine": "Motor",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assegura't que els teus fitxers CSV inclouen 4 columnes en aquest ordre: Nom, Correu electrònic, Contrasenya, Rol.",
"Enter {{role}} message here": "Introdueix aquí el missatge de {{role}}",
......@@ -280,10 +285,15 @@
"Frequency Penalty": "Penalització per freqüència",
"Function created successfully": "La funció s'ha creat correctament",
"Function deleted successfully": "La funció s'ha eliminat correctament",
"Function Description (e.g. A filter to remove profanity from text)": "",
"Function ID (e.g. my_filter)": "",
"Function is now globally disabled": "La funció ha estat desactivada globalment",
"Function is now globally enabled": "La funció ha estat activada globalment",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "La funció s'ha actualitzat correctament",
"Functions": "Funcions",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "Les funcions s'han importat correctament",
"General": "General",
"General Settings": "Preferències generals",
......@@ -302,6 +312,7 @@
"Hide Model": "Amagar el model",
"How can I help you today?": "Com et puc ajudar avui?",
"Hybrid Search": "Cerca híbrida",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
"Image Generation (Experimental)": "Generació d'imatges (Experimental)",
"Image Generation Engine": "Motor de generació d'imatges",
"Image Settings": "Preferències d'imatges",
......@@ -442,6 +453,7 @@
"Pipelines Valves": "Vàlvules de les Pipelines",
"Plain text (.txt)": "Text pla (.txt)",
"Playground": "Zona de jocs",
"Please carefully review the following warnings:": "",
"Positive attitude": "Actitud positiva",
"Previous 30 days": "30 dies anteriors",
"Previous 7 days": "7 dies anteriors",
......@@ -608,7 +620,13 @@
"Tool deleted successfully": "Eina eliminada correctament",
"Tool imported successfully": "Eina importada correctament",
"Tool updated successfully": "Eina actualitzada correctament",
"Toolkit Description (e.g. A toolkit for performing various operations)": "",
"Toolkit ID (e.g. my_toolkit)": "",
"Toolkit Name (e.g. My ToolKit)": "",
"Tools": "Eines",
"Tools are a function calling system with arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K",
"Top P": "Top P",
"Trouble accessing Ollama?": "Problemes en accedir a Ollama?",
......@@ -650,6 +668,7 @@
"Version": "Versió",
"Voice": "Veu",
"Warning": "Avís",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Avís: Si s'actualitza o es canvia el model d'incrustació, s'hauran de tornar a importar tots els documents.",
"Web": "Web",
"Web API": "Web API",
......
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "",
"Description": "Deskripsyon",
"Didn't fully follow instructions": "",
"Disabled": "",
"Discover a function": "",
"Discover a model": "",
"Discover a prompt": "Pagkaplag usa ka prompt",
......@@ -188,11 +189,14 @@
"Dismissible": "",
"Display Emoji in Call": "",
"Display the username instead of You in the Chat": "Ipakita ang username imbes nga 'Ikaw' sa Panaghisgutan",
"Do not install functions from sources you do not fully trust.": "",
"Do not install tools from sources you do not fully trust.": "",
"Document": "Dokumento",
"Document Settings": "Mga Setting sa Dokumento",
"Documentation": "",
"Documents": "Mga dokumento",
"does not make any external connections, and your data stays securely on your locally hosted server.": "wala maghimo ug eksternal nga koneksyon, ug ang imong data nagpabiling luwas sa imong lokal nga host server.",
"don": "",
"Don't Allow": "Dili tugotan",
"Don't have an account?": "Wala kay account ?",
"Don't like the style": "",
......@@ -215,6 +219,7 @@
"Enable Community Sharing": "",
"Enable New Sign Ups": "I-enable ang bag-ong mga rehistro",
"Enable Web Search": "",
"Enabled": "",
"Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "Pagsulod sa mensahe {{role}} dinhi",
......@@ -280,10 +285,15 @@
"Frequency Penalty": "",
"Function created successfully": "",
"Function deleted successfully": "",
"Function Description (e.g. A filter to remove profanity from text)": "",
"Function ID (e.g. my_filter)": "",
"Function is now globally disabled": "",
"Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "",
"Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"General": "Heneral",
"General Settings": "kinatibuk-ang mga setting",
......@@ -302,6 +312,7 @@
"Hide Model": "",
"How can I help you today?": "Unsaon nako pagtabang kanimo karon?",
"Hybrid Search": "",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
"Image Generation (Experimental)": "Pagmugna og hulagway (Eksperimento)",
"Image Generation Engine": "Makina sa paghimo og imahe",
"Image Settings": "Mga Setting sa Imahen",
......@@ -442,6 +453,7 @@
"Pipelines Valves": "",
"Plain text (.txt)": "",
"Playground": "Dulaanan",
"Please carefully review the following warnings:": "",
"Positive attitude": "",
"Previous 30 days": "",
"Previous 7 days": "",
......@@ -607,7 +619,13 @@
"Tool deleted successfully": "",
"Tool imported successfully": "",
"Tool updated successfully": "",
"Toolkit Description (e.g. A toolkit for performing various operations)": "",
"Toolkit ID (e.g. my_toolkit)": "",
"Toolkit Name (e.g. My ToolKit)": "",
"Tools": "",
"Tools are a function calling system with arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K",
"Top P": "Ibabaw nga P",
"Trouble accessing Ollama?": "Adunay mga problema sa pag-access sa Ollama?",
......@@ -649,6 +667,7 @@
"Version": "Bersyon",
"Voice": "",
"Warning": "",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web",
"Web API": "",
......
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "{{name}} gelöscht",
"Description": "Beschreibung",
"Didn't fully follow instructions": "Nicht genau den Answeisungen gefolgt",
"Disabled": "",
"Discover a function": "Entdecken Sie weitere Funktionen",
"Discover a model": "Entdecken Sie weitere Modelle",
"Discover a prompt": "Entdecken Sie weitere Prompts",
......@@ -188,11 +189,14 @@
"Dismissible": "ausblendbar",
"Display Emoji in Call": "Emojis im Anruf anzeigen",
"Display the username instead of You in the Chat": "Soll \"Sie\" durch Ihren Benutzernamen ersetzt werden?",
"Do not install functions from sources you do not fully trust.": "",
"Do not install tools from sources you do not fully trust.": "",
"Document": "Dokument",
"Document Settings": "Dokumenteinstellungen",
"Documentation": "Dokumentation",
"Documents": "Dokumente",
"does not make any external connections, and your data stays securely on your locally hosted server.": "stellt keine externen Verbindungen her, und Ihre Daten bleiben sicher auf Ihrem lokal gehosteten Server.",
"don": "",
"Don't Allow": "Verbieten",
"Don't have an account?": "Haben Sie noch kein Benutzerkonto?",
"Don't like the style": "schlechter Schreibstil",
......@@ -215,6 +219,7 @@
"Enable Community Sharing": "Community-Freigabe aktivieren",
"Enable New Sign Ups": "Registrierung erlauben",
"Enable Web Search": "Websuche aktivieren",
"Enabled": "",
"Engine": "Engine",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Stellen Sie sicher, dass Ihre CSV-Datei 4 Spalten in dieser Reihenfolge enthält: Name, E-Mail, Passwort, Rolle.",
"Enter {{role}} message here": "Geben Sie die {{role}}-Nachricht hier ein",
......@@ -280,10 +285,15 @@
"Frequency Penalty": "Frequenzstrafe",
"Function created successfully": "Funktion erfolgreich erstellt",
"Function deleted successfully": "Funktion erfolgreich gelöscht",
"Function Description (e.g. A filter to remove profanity from text)": "",
"Function ID (e.g. my_filter)": "",
"Function is now globally disabled": "",
"Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "Funktion erfolgreich aktualisiert",
"Functions": "Funktionen",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "Funktionen erfolgreich importiert",
"General": "Allgemein",
"General Settings": "Allgemeine Einstellungen",
......@@ -302,6 +312,7 @@
"Hide Model": "Modell ausblenden",
"How can I help you today?": "Wie kann ich Ihnen heute helfen?",
"Hybrid Search": "Hybride Suche",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
"Image Generation (Experimental)": "Bildgenerierung (experimentell)",
"Image Generation Engine": "Bildgenerierungs-Engine",
"Image Settings": "Bildeinstellungen",
......@@ -442,6 +453,7 @@
"Pipelines Valves": "Pipeline Valves",
"Plain text (.txt)": "Nur Text (.txt)",
"Playground": "Testumgebung",
"Please carefully review the following warnings:": "",
"Positive attitude": "Positive Einstellung",
"Previous 30 days": "Vorherige 30 Tage",
"Previous 7 days": "Vorherige 7 Tage",
......@@ -607,7 +619,13 @@
"Tool deleted successfully": "Werkzeug erfolgreich gelöscht",
"Tool imported successfully": "Werkzeug erfolgreich importiert",
"Tool updated successfully": "Werkzeug erfolgreich aktualisiert",
"Toolkit Description (e.g. A toolkit for performing various operations)": "",
"Toolkit ID (e.g. my_toolkit)": "",
"Toolkit Name (e.g. My ToolKit)": "",
"Tools": "Werkzeuge",
"Tools are a function calling system with arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K",
"Top P": "Top P",
"Trouble accessing Ollama?": "Probleme beim Zugriff auf Ollama?",
......@@ -649,6 +667,7 @@
"Version": "Version",
"Voice": "Stimme",
"Warning": "Warnung",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Warnung: Wenn Sie das Einbettungsmodell aktualisieren oder ändern, müssen Sie alle Dokumente erneut importieren.",
"Web": "Web",
"Web API": "Web-API",
......
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "",
"Description": "Description",
"Didn't fully follow instructions": "",
"Disabled": "",
"Discover a function": "",
"Discover a model": "",
"Discover a prompt": "Discover a prompt",
......@@ -188,11 +189,14 @@
"Dismissible": "",
"Display Emoji in Call": "",
"Display the username instead of You in the Chat": "Display username instead of You in Chat",
"Do not install functions from sources you do not fully trust.": "",
"Do not install tools from sources you do not fully trust.": "",
"Document": "Document",
"Document Settings": "Document Settings",
"Documentation": "",
"Documents": "Documents",
"does not make any external connections, and your data stays securely on your locally hosted server.": "does not connect external, data stays safe locally.",
"don": "",
"Don't Allow": "Don't Allow",
"Don't have an account?": "No account? Much sad.",
"Don't like the style": "",
......@@ -215,6 +219,7 @@
"Enable Community Sharing": "",
"Enable New Sign Ups": "Enable New Bark Ups",
"Enable Web Search": "",
"Enabled": "",
"Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "Enter {{role}} bork here",
......@@ -280,10 +285,15 @@
"Frequency Penalty": "",
"Function created successfully": "",
"Function deleted successfully": "",
"Function Description (e.g. A filter to remove profanity from text)": "",
"Function ID (e.g. my_filter)": "",
"Function is now globally disabled": "",
"Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "",
"Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"General": "Woweral",
"General Settings": "General Doge Settings",
......@@ -302,6 +312,7 @@
"Hide Model": "",
"How can I help you today?": "How can I halp u today?",
"Hybrid Search": "",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
"Image Generation (Experimental)": "Image Wow (Much Experiment)",
"Image Generation Engine": "Image Engine",
"Image Settings": "Settings for Wowmage",
......@@ -442,6 +453,7 @@
"Pipelines Valves": "",
"Plain text (.txt)": "Plain text (.txt)",
"Playground": "Playground",
"Please carefully review the following warnings:": "",
"Positive attitude": "",
"Previous 30 days": "",
"Previous 7 days": "",
......@@ -609,7 +621,13 @@
"Tool deleted successfully": "",
"Tool imported successfully": "",
"Tool updated successfully": "",
"Toolkit Description (e.g. A toolkit for performing various operations)": "",
"Toolkit ID (e.g. my_toolkit)": "",
"Toolkit Name (e.g. My ToolKit)": "",
"Tools": "",
"Tools are a function calling system with arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K very top",
"Top P": "Top P very top",
"Trouble accessing Ollama?": "Trouble accessing Ollama? Much trouble?",
......@@ -651,6 +669,7 @@
"Version": "Version much version",
"Voice": "",
"Warning": "",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web very web",
"Web API": "",
......
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "",
"Description": "",
"Didn't fully follow instructions": "",
"Disabled": "",
"Discover a function": "",
"Discover a model": "",
"Discover a prompt": "",
......@@ -188,11 +189,14 @@
"Dismissible": "",
"Display Emoji in Call": "",
"Display the username instead of You in the Chat": "",
"Do not install functions from sources you do not fully trust.": "",
"Do not install tools from sources you do not fully trust.": "",
"Document": "",
"Document Settings": "",
"Documentation": "",
"Documents": "",
"does not make any external connections, and your data stays securely on your locally hosted server.": "",
"don": "",
"Don't Allow": "",
"Don't have an account?": "",
"Don't like the style": "",
......@@ -215,6 +219,7 @@
"Enable Community Sharing": "",
"Enable New Sign Ups": "",
"Enable Web Search": "",
"Enabled": "",
"Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "",
......@@ -280,10 +285,15 @@
"Frequency Penalty": "",
"Function created successfully": "",
"Function deleted successfully": "",
"Function Description (e.g. A filter to remove profanity from text)": "",
"Function ID (e.g. my_filter)": "",
"Function is now globally disabled": "",
"Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "",
"Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"General": "",
"General Settings": "",
......@@ -302,6 +312,7 @@
"Hide Model": "",
"How can I help you today?": "",
"Hybrid Search": "",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
"Image Generation (Experimental)": "",
"Image Generation Engine": "",
"Image Settings": "",
......@@ -442,6 +453,7 @@
"Pipelines Valves": "",
"Plain text (.txt)": "",
"Playground": "",
"Please carefully review the following warnings:": "",
"Positive attitude": "",
"Previous 30 days": "",
"Previous 7 days": "",
......@@ -607,7 +619,13 @@
"Tool deleted successfully": "",
"Tool imported successfully": "",
"Tool updated successfully": "",
"Toolkit Description (e.g. A toolkit for performing various operations)": "",
"Toolkit ID (e.g. my_toolkit)": "",
"Toolkit Name (e.g. My ToolKit)": "",
"Tools": "",
"Tools are a function calling system with arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "",
"Top P": "",
"Trouble accessing Ollama?": "",
......@@ -649,6 +667,7 @@
"Version": "",
"Voice": "",
"Warning": "",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "",
"Web API": "",
......
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "",
"Description": "",
"Didn't fully follow instructions": "",
"Disabled": "",
"Discover a function": "",
"Discover a model": "",
"Discover a prompt": "",
......@@ -188,11 +189,14 @@
"Dismissible": "",
"Display Emoji in Call": "",
"Display the username instead of You in the Chat": "",
"Do not install functions from sources you do not fully trust.": "",
"Do not install tools from sources you do not fully trust.": "",
"Document": "",
"Document Settings": "",
"Documentation": "",
"Documents": "",
"does not make any external connections, and your data stays securely on your locally hosted server.": "",
"don": "",
"Don't Allow": "",
"Don't have an account?": "",
"Don't like the style": "",
......@@ -215,6 +219,7 @@
"Enable Community Sharing": "",
"Enable New Sign Ups": "",
"Enable Web Search": "",
"Enabled": "",
"Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "",
......@@ -280,10 +285,15 @@
"Frequency Penalty": "",
"Function created successfully": "",
"Function deleted successfully": "",
"Function Description (e.g. A filter to remove profanity from text)": "",
"Function ID (e.g. my_filter)": "",
"Function is now globally disabled": "",
"Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "",
"Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"General": "",
"General Settings": "",
......@@ -302,6 +312,7 @@
"Hide Model": "",
"How can I help you today?": "",
"Hybrid Search": "",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
"Image Generation (Experimental)": "",
"Image Generation Engine": "",
"Image Settings": "",
......@@ -442,6 +453,7 @@
"Pipelines Valves": "",
"Plain text (.txt)": "",
"Playground": "",
"Please carefully review the following warnings:": "",
"Positive attitude": "",
"Previous 30 days": "",
"Previous 7 days": "",
......@@ -607,7 +619,13 @@
"Tool deleted successfully": "",
"Tool imported successfully": "",
"Tool updated successfully": "",
"Toolkit Description (e.g. A toolkit for performing various operations)": "",
"Toolkit ID (e.g. my_toolkit)": "",
"Toolkit Name (e.g. My ToolKit)": "",
"Tools": "",
"Tools are a function calling system with arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "",
"Top P": "",
"Trouble accessing Ollama?": "",
......@@ -649,6 +667,7 @@
"Version": "",
"Voice": "",
"Warning": "",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "",
"Web API": "",
......
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "Eliminado {{nombre}}",
"Description": "Descripción",
"Didn't fully follow instructions": "No siguió las instrucciones",
"Disabled": "",
"Discover a function": "Descubre una función",
"Discover a model": "Descubrir un modelo",
"Discover a prompt": "Descubre un Prompt",
......@@ -188,11 +189,14 @@
"Dismissible": "Desestimable",
"Display Emoji in Call": "Muestra Emoji en llamada",
"Display the username instead of You in the Chat": "Mostrar el nombre de usuario en lugar de Usted en el chat",
"Do not install functions from sources you do not fully trust.": "",
"Do not install tools from sources you do not fully trust.": "",
"Document": "Documento",
"Document Settings": "Configuración del Documento",
"Documentation": "Documentación",
"Documents": "Documentos",
"does not make any external connections, and your data stays securely on your locally hosted server.": "no realiza ninguna conexión externa y sus datos permanecen seguros en su servidor alojado localmente.",
"don": "",
"Don't Allow": "No Permitir",
"Don't have an account?": "¿No tienes una cuenta?",
"Don't like the style": "No te gusta el estilo?",
......@@ -215,6 +219,7 @@
"Enable Community Sharing": "Habilitar el uso compartido de la comunidad",
"Enable New Sign Ups": "Habilitar Nuevos Registros",
"Enable Web Search": "Habilitar la búsqueda web",
"Enabled": "",
"Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asegúrese de que su archivo CSV incluya 4 columnas en este orden: Nombre, Correo Electrónico, Contraseña, Rol.",
"Enter {{role}} message here": "Ingrese el mensaje {{role}} aquí",
......@@ -280,10 +285,15 @@
"Frequency Penalty": "Penalización de frecuencia",
"Function created successfully": "Función creada exitosamente",
"Function deleted successfully": "Función borrada exitosamente",
"Function Description (e.g. A filter to remove profanity from text)": "",
"Function ID (e.g. my_filter)": "",
"Function is now globally disabled": "",
"Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "Función actualizada exitosamente",
"Functions": "Funciones",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "Funciones importadas exitosamente",
"General": "General",
"General Settings": "Opciones Generales",
......@@ -302,6 +312,7 @@
"Hide Model": "Esconder Modelo",
"How can I help you today?": "¿Cómo puedo ayudarte hoy?",
"Hybrid Search": "Búsqueda Híbrida",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
"Image Generation (Experimental)": "Generación de imágenes (experimental)",
"Image Generation Engine": "Motor de generación de imágenes",
"Image Settings": "Ajustes de la Imágen",
......@@ -442,6 +453,7 @@
"Pipelines Valves": "Tuberías Válvulas",
"Plain text (.txt)": "Texto plano (.txt)",
"Playground": "Patio de juegos",
"Please carefully review the following warnings:": "",
"Positive attitude": "Actitud positiva",
"Previous 30 days": "Últimos 30 días",
"Previous 7 days": "Últimos 7 días",
......@@ -608,7 +620,13 @@
"Tool deleted successfully": "Herramienta eliminada con éxito",
"Tool imported successfully": "Herramienta importada con éxito",
"Tool updated successfully": "Herramienta actualizada con éxito",
"Toolkit Description (e.g. A toolkit for performing various operations)": "",
"Toolkit ID (e.g. my_toolkit)": "",
"Toolkit Name (e.g. My ToolKit)": "",
"Tools": "Herramientas",
"Tools are a function calling system with arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K",
"Top P": "Top P",
"Trouble accessing Ollama?": "¿Problemas para acceder a Ollama?",
......@@ -650,6 +668,7 @@
"Version": "Versión",
"Voice": "Voz",
"Warning": "Advertencia",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Advertencia: Si actualiza o cambia su modelo de inserción, necesitará volver a importar todos los documentos.",
"Web": "Web",
"Web API": "API Web",
......
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "حذف شده {{name}}",
"Description": "توضیحات",
"Didn't fully follow instructions": "نمی تواند دستورالعمل را کامل پیگیری کند",
"Disabled": "",
"Discover a function": "",
"Discover a model": "کشف یک مدل",
"Discover a prompt": "یک اعلان را کشف کنید",
......@@ -188,11 +189,14 @@
"Dismissible": "",
"Display Emoji in Call": "",
"Display the username instead of You in the Chat": "نمایش نام کاربری به جای «شما» در چت",
"Do not install functions from sources you do not fully trust.": "",
"Do not install tools from sources you do not fully trust.": "",
"Document": "سند",
"Document Settings": "تنظیمات سند",
"Documentation": "",
"Documents": "اسناد",
"does not make any external connections, and your data stays securely on your locally hosted server.": "هیچ اتصال خارجی ایجاد نمی کند و داده های شما به طور ایمن در سرور میزبان محلی شما باقی می ماند.",
"don": "",
"Don't Allow": "اجازه نده",
"Don't have an account?": "حساب کاربری ندارید؟",
"Don't like the style": "نظری ندارید؟",
......@@ -215,6 +219,7 @@
"Enable Community Sharing": "فعالسازی اشتراک انجمن",
"Enable New Sign Ups": "فعال کردن ثبت نام\u200cهای جدید",
"Enable Web Search": "فعالسازی جستجوی وب",
"Enabled": "",
"Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "اطمینان حاصل کنید که فایل CSV شما شامل چهار ستون در این ترتیب است: نام، ایمیل، رمز عبور، نقش.",
"Enter {{role}} message here": "پیام {{role}} را اینجا وارد کنید",
......@@ -280,10 +285,15 @@
"Frequency Penalty": "مجازات فرکانس",
"Function created successfully": "",
"Function deleted successfully": "",
"Function Description (e.g. A filter to remove profanity from text)": "",
"Function ID (e.g. my_filter)": "",
"Function is now globally disabled": "",
"Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "",
"Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"General": "عمومی",
"General Settings": "تنظیمات عمومی",
......@@ -302,6 +312,7 @@
"Hide Model": "",
"How can I help you today?": "امروز چطور می توانم کمک تان کنم؟",
"Hybrid Search": "جستجوی همزمان",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
"Image Generation (Experimental)": "تولید تصویر (آزمایشی)",
"Image Generation Engine": "موتور تولید تصویر",
"Image Settings": "تنظیمات تصویر",
......@@ -442,6 +453,7 @@
"Pipelines Valves": "شیرالات خطوط لوله",
"Plain text (.txt)": "متن ساده (.txt)",
"Playground": "زمین بازی",
"Please carefully review the following warnings:": "",
"Positive attitude": "نظرات مثبت",
"Previous 30 days": "30 روز قبل",
"Previous 7 days": "7 روز قبل",
......@@ -607,7 +619,13 @@
"Tool deleted successfully": "",
"Tool imported successfully": "",
"Tool updated successfully": "",
"Toolkit Description (e.g. A toolkit for performing various operations)": "",
"Toolkit ID (e.g. my_toolkit)": "",
"Toolkit Name (e.g. My ToolKit)": "",
"Tools": "",
"Tools are a function calling system with arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K",
"Top P": "Top P",
"Trouble accessing Ollama?": "در دسترسی به اولاما مشکل دارید؟",
......@@ -649,6 +667,7 @@
"Version": "نسخه",
"Voice": "",
"Warning": "هشدار",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "هشدار: اگر شما به روز کنید یا تغییر دهید مدل شما، باید تمام سند ها را مجددا وارد کنید.",
"Web": "وب",
"Web API": "",
......
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "Poistettu {{nimi}}",
"Description": "Kuvaus",
"Didn't fully follow instructions": "Ei noudattanut ohjeita täysin",
"Disabled": "",
"Discover a function": "",
"Discover a model": "Tutustu malliin",
"Discover a prompt": "Löydä kehote",
......@@ -188,11 +189,14 @@
"Dismissible": "",
"Display Emoji in Call": "",
"Display the username instead of You in the Chat": "Näytä käyttäjänimi keskustelussa",
"Do not install functions from sources you do not fully trust.": "",
"Do not install tools from sources you do not fully trust.": "",
"Document": "Asiakirja",
"Document Settings": "Asiakirja-asetukset",
"Documentation": "",
"Documents": "Asiakirjat",
"does not make any external connections, and your data stays securely on your locally hosted server.": "ei tee ulkoisia yhteyksiä, ja tietosi pysyvät turvallisesti paikallisesti isännöidyllä palvelimellasi.",
"don": "",
"Don't Allow": "Älä salli",
"Don't have an account?": "Eikö sinulla ole tiliä?",
"Don't like the style": "En pidä tyylistä",
......@@ -215,6 +219,7 @@
"Enable Community Sharing": "Ota yhteisön jakaminen käyttöön",
"Enable New Sign Ups": "Salli uudet rekisteröitymiset",
"Enable Web Search": "Ota verkkohaku käyttöön",
"Enabled": "",
"Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Varmista, että CSV-tiedostossasi on 4 saraketta seuraavassa järjestyksessä: Nimi, Sähköposti, Salasana, Rooli.",
"Enter {{role}} message here": "Kirjoita {{role}} viesti tähän",
......@@ -280,10 +285,15 @@
"Frequency Penalty": "Taajuussakko",
"Function created successfully": "",
"Function deleted successfully": "",
"Function Description (e.g. A filter to remove profanity from text)": "",
"Function ID (e.g. my_filter)": "",
"Function is now globally disabled": "",
"Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "",
"Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"General": "Yleinen",
"General Settings": "Yleisasetukset",
......@@ -302,6 +312,7 @@
"Hide Model": "",
"How can I help you today?": "Kuinka voin auttaa tänään?",
"Hybrid Search": "Hybridihaku",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
"Image Generation (Experimental)": "Kuvagenerointi (kokeellinen)",
"Image Generation Engine": "Kuvagenerointimoottori",
"Image Settings": "Kuva-asetukset",
......@@ -442,6 +453,7 @@
"Pipelines Valves": "Putkistot Venttiilit",
"Plain text (.txt)": "Pelkkä teksti (.txt)",
"Playground": "Leikkipaikka",
"Please carefully review the following warnings:": "",
"Positive attitude": "Positiivinen asenne",
"Previous 30 days": "Edelliset 30 päivää",
"Previous 7 days": "Edelliset 7 päivää",
......@@ -607,7 +619,13 @@
"Tool deleted successfully": "",
"Tool imported successfully": "",
"Tool updated successfully": "",
"Toolkit Description (e.g. A toolkit for performing various operations)": "",
"Toolkit ID (e.g. my_toolkit)": "",
"Toolkit Name (e.g. My ToolKit)": "",
"Tools": "",
"Tools are a function calling system with arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K",
"Top P": "Top P",
"Trouble accessing Ollama?": "Ongelmia Ollama-yhteydessä?",
......@@ -649,6 +667,7 @@
"Version": "Versio",
"Voice": "",
"Warning": "Varoitus",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Varoitus: Jos päivität tai vaihdat upotusmallia, sinun on tuotava kaikki asiakirjat uudelleen.",
"Web": "Web",
"Web API": "",
......
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "Supprimé {{name}}",
"Description": "Description",
"Didn't fully follow instructions": "N'a pas entièrement respecté les instructions",
"Disabled": "",
"Discover a function": "Découvrez une fonction",
"Discover a model": "Découvrir un modèle",
"Discover a prompt": "Découvrir une suggestion",
......@@ -188,11 +189,14 @@
"Dismissible": "Fermeture",
"Display Emoji in Call": "Afficher les emojis pendant l'appel",
"Display the username instead of You in the Chat": "Afficher le nom d'utilisateur à la place de \"Vous\" dans le Chat",
"Do not install functions from sources you do not fully trust.": "",
"Do not install tools from sources you do not fully trust.": "",
"Document": "Document",
"Document Settings": "Paramètres du document",
"Documentation": "Documentation",
"Documents": "Documents",
"does not make any external connections, and your data stays securely on your locally hosted server.": "ne fait aucune connexion externe et garde vos données en sécurité sur votre serveur local.",
"don": "",
"Don't Allow": "Ne pas autoriser",
"Don't have an account?": "Vous n'avez pas de compte ?",
"Don't like the style": "N'apprécie pas le style",
......@@ -215,6 +219,7 @@
"Enable Community Sharing": "Activer le partage communautaire",
"Enable New Sign Ups": "Activer les nouvelles inscriptions",
"Enable Web Search": "Activer la recherche sur le Web",
"Enabled": "",
"Engine": "Moteur",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
"Enter {{role}} message here": "Entrez le message {{role}} ici",
......@@ -280,10 +285,15 @@
"Frequency Penalty": "Pénalité de fréquence",
"Function created successfully": "La fonction a été créée avec succès",
"Function deleted successfully": "Fonction supprimée avec succès",
"Function Description (e.g. A filter to remove profanity from text)": "",
"Function ID (e.g. my_filter)": "",
"Function is now globally disabled": "",
"Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "La fonction a été mise à jour avec succès",
"Functions": "Fonctions",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "Fonctions importées avec succès",
"General": "Général",
"General Settings": "Paramètres Généraux",
......@@ -302,6 +312,7 @@
"Hide Model": "Masquer le modèle",
"How can I help you today?": "Comment puis-je vous être utile aujourd'hui ?",
"Hybrid Search": "Recherche hybride",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
"Image Generation (Experimental)": "Génération d'images (expérimental)",
"Image Generation Engine": "Moteur de génération d'images",
"Image Settings": "Paramètres de l'image",
......@@ -442,6 +453,7 @@
"Pipelines Valves": "Vannes de Pipelines",
"Plain text (.txt)": "Texte simple (.txt)",
"Playground": "Aire de jeux",
"Please carefully review the following warnings:": "",
"Positive attitude": "Attitude positive",
"Previous 30 days": "30 derniers jours",
"Previous 7 days": "7 derniers jours",
......@@ -608,7 +620,13 @@
"Tool deleted successfully": "Outil supprimé avec succès",
"Tool imported successfully": "Outil importé avec succès",
"Tool updated successfully": "L'outil a été mis à jour avec succès",
"Toolkit Description (e.g. A toolkit for performing various operations)": "",
"Toolkit ID (e.g. my_toolkit)": "",
"Toolkit Name (e.g. My ToolKit)": "",
"Tools": "Outils",
"Tools are a function calling system with arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K",
"Top P": "Top P",
"Trouble accessing Ollama?": "Rencontrez-vous des difficultés pour accéder à Ollama ?",
......@@ -650,6 +668,7 @@
"Version": "Version améliorée",
"Voice": "Voix",
"Warning": "Avertissement !",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Avertissement : Si vous mettez à jour ou modifiez votre modèle d'encodage, vous devrez réimporter tous les documents.",
"Web": "Web",
"Web API": "API Web",
......
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "Supprimé {{name}}",
"Description": "Description",
"Didn't fully follow instructions": "N'a pas entièrement respecté les instructions",
"Disabled": "",
"Discover a function": "Découvrez une fonction",
"Discover a model": "Découvrir un modèle",
"Discover a prompt": "Découvrir une suggestion",
......@@ -188,11 +189,14 @@
"Dismissible": "Fermeture",
"Display Emoji in Call": "Afficher les emojis pendant l'appel",
"Display the username instead of You in the Chat": "Afficher le nom d'utilisateur à la place de \"Vous\" dans le Chat",
"Do not install functions from sources you do not fully trust.": "",
"Do not install tools from sources you do not fully trust.": "",
"Document": "Document",
"Document Settings": "Paramètres du document",
"Documentation": "Documentation",
"Documents": "Documents",
"does not make any external connections, and your data stays securely on your locally hosted server.": "ne fait aucune connexion externe et garde vos données en sécurité sur votre serveur local.",
"don": "",
"Don't Allow": "Ne pas autoriser",
"Don't have an account?": "Vous n'avez pas de compte ?",
"Don't like the style": "N'apprécie pas le style",
......@@ -215,6 +219,7 @@
"Enable Community Sharing": "Activer le partage communautaire",
"Enable New Sign Ups": "Activer les nouvelles inscriptions",
"Enable Web Search": "Activer la recherche web",
"Enabled": "",
"Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
"Enter {{role}} message here": "Entrez le message {{role}} ici",
......@@ -280,10 +285,15 @@
"Frequency Penalty": "Pénalité de fréquence",
"Function created successfully": "La fonction a été créée avec succès",
"Function deleted successfully": "Fonction supprimée avec succès",
"Function Description (e.g. A filter to remove profanity from text)": "",
"Function ID (e.g. my_filter)": "",
"Function is now globally disabled": "",
"Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "La fonction a été mise à jour avec succès",
"Functions": "Fonctions",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "Fonctions importées avec succès",
"General": "Général",
"General Settings": "Paramètres Généraux",
......@@ -302,6 +312,7 @@
"Hide Model": "Masquer le modèle",
"How can I help you today?": "Comment puis-je vous être utile aujourd'hui ?",
"Hybrid Search": "Recherche hybride",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
"Image Generation (Experimental)": "Génération d'images (expérimental)",
"Image Generation Engine": "Moteur de génération d'images",
"Image Settings": "Paramètres de l'image",
......@@ -442,6 +453,7 @@
"Pipelines Valves": "Vannes de Pipelines",
"Plain text (.txt)": "Texte simple (.txt)",
"Playground": "Aire de jeux",
"Please carefully review the following warnings:": "",
"Positive attitude": "Attitude positive",
"Previous 30 days": "30 derniers jours",
"Previous 7 days": "7 derniers jours",
......@@ -608,7 +620,13 @@
"Tool deleted successfully": "Outil supprimé avec succès",
"Tool imported successfully": "Outil importé avec succès",
"Tool updated successfully": "L'outil a été mis à jour avec succès",
"Toolkit Description (e.g. A toolkit for performing various operations)": "",
"Toolkit ID (e.g. my_toolkit)": "",
"Toolkit Name (e.g. My ToolKit)": "",
"Tools": "Outils",
"Tools are a function calling system with arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K",
"Top P": "Top P",
"Trouble accessing Ollama?": "Rencontrez-vous des difficultés pour accéder à Ollama ?",
......@@ -650,6 +668,7 @@
"Version": "Version améliorée",
"Voice": "Voix",
"Warning": "Avertissement !",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Avertissement : Si vous mettez à jour ou modifiez votre modèle d'encodage, vous devrez réimporter tous les documents.",
"Web": "Web",
"Web API": "API Web",
......
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "נמחק {{name}}",
"Description": "תיאור",
"Didn't fully follow instructions": "לא עקב אחרי ההוראות באופן מלא",
"Disabled": "",
"Discover a function": "",
"Discover a model": "גלה מודל",
"Discover a prompt": "גלה פקודה",
......@@ -188,11 +189,14 @@
"Dismissible": "",
"Display Emoji in Call": "",
"Display the username instead of You in the Chat": "הצג את שם המשתמש במקום 'אתה' בצ'אט",
"Do not install functions from sources you do not fully trust.": "",
"Do not install tools from sources you do not fully trust.": "",
"Document": "מסמך",
"Document Settings": "הגדרות מסמך",
"Documentation": "",
"Documents": "מסמכים",
"does not make any external connections, and your data stays securely on your locally hosted server.": "לא מבצע חיבורים חיצוניים, והנתונים שלך נשמרים באופן מאובטח בשרת המקומי שלך.",
"don": "",
"Don't Allow": "אל תאפשר",
"Don't have an account?": "אין לך חשבון?",
"Don't like the style": "לא אוהב את הסגנון",
......@@ -215,6 +219,7 @@
"Enable Community Sharing": "הפיכת שיתוף קהילה לזמין",
"Enable New Sign Ups": "אפשר הרשמות חדשות",
"Enable Web Search": "הפיכת חיפוש באינטרנט לזמין",
"Enabled": "",
"Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ודא שקובץ ה-CSV שלך כולל 4 עמודות בסדר הבא: שם, דוא\"ל, סיסמה, תפקיד.",
"Enter {{role}} message here": "הזן הודעת {{role}} כאן",
......@@ -280,10 +285,15 @@
"Frequency Penalty": "עונש תדירות",
"Function created successfully": "",
"Function deleted successfully": "",
"Function Description (e.g. A filter to remove profanity from text)": "",
"Function ID (e.g. my_filter)": "",
"Function is now globally disabled": "",
"Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "",
"Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"General": "כללי",
"General Settings": "הגדרות כלליות",
......@@ -302,6 +312,7 @@
"Hide Model": "",
"How can I help you today?": "כיצד אוכל לעזור לך היום?",
"Hybrid Search": "חיפוש היברידי",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
"Image Generation (Experimental)": "יצירת תמונות (ניסיוני)",
"Image Generation Engine": "מנוע יצירת תמונות",
"Image Settings": "הגדרות תמונה",
......@@ -442,6 +453,7 @@
"Pipelines Valves": "צינורות שסתומים",
"Plain text (.txt)": "טקסט פשוט (.txt)",
"Playground": "אזור משחקים",
"Please carefully review the following warnings:": "",
"Positive attitude": "גישה חיובית",
"Previous 30 days": "30 הימים הקודמים",
"Previous 7 days": "7 הימים הקודמים",
......@@ -608,7 +620,13 @@
"Tool deleted successfully": "",
"Tool imported successfully": "",
"Tool updated successfully": "",
"Toolkit Description (e.g. A toolkit for performing various operations)": "",
"Toolkit ID (e.g. my_toolkit)": "",
"Toolkit Name (e.g. My ToolKit)": "",
"Tools": "",
"Tools are a function calling system with arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K",
"Top P": "Top P",
"Trouble accessing Ollama?": "קשה לגשת לOllama?",
......@@ -650,6 +668,7 @@
"Version": "גרסה",
"Voice": "",
"Warning": "אזהרה",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "אזהרה: אם תעדכן או תשנה את מודל ההטבעה שלך, יהיה עליך לייבא מחדש את כל המסמכים.",
"Web": "רשת",
"Web API": "",
......
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "{{name}} हटा दिया गया",
"Description": "विवरण",
"Didn't fully follow instructions": "निर्देशों का पूरी तरह से पालन नहीं किया",
"Disabled": "",
"Discover a function": "",
"Discover a model": "एक मॉडल की खोज करें",
"Discover a prompt": "प्रॉम्प्ट खोजें",
......@@ -188,11 +189,14 @@
"Dismissible": "",
"Display Emoji in Call": "",
"Display the username instead of You in the Chat": "चैट में 'आप' के स्थान पर उपयोगकर्ता नाम प्रदर्शित करें",
"Do not install functions from sources you do not fully trust.": "",
"Do not install tools from sources you do not fully trust.": "",
"Document": "दस्तावेज़",
"Document Settings": "दस्तावेज़ सेटिंग्स",
"Documentation": "",
"Documents": "दस्तावेज़",
"does not make any external connections, and your data stays securely on your locally hosted server.": "कोई बाहरी कनेक्शन नहीं बनाता है, और आपका डेटा आपके स्थानीय रूप से होस्ट किए गए सर्वर पर सुरक्षित रूप से रहता है।",
"don": "",
"Don't Allow": "अनुमति न दें",
"Don't have an account?": "कोई खाता नहीं है?",
"Don't like the style": "शैली पसंद नहीं है",
......@@ -215,6 +219,7 @@
"Enable Community Sharing": "समुदाय साझाकरण सक्षम करें",
"Enable New Sign Ups": "नए साइन अप सक्रिय करें",
"Enable Web Search": "वेब खोज सक्षम करें",
"Enabled": "",
"Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "सुनिश्चित करें कि आपकी CSV फ़ाइल में इस क्रम में 4 कॉलम शामिल हैं: नाम, ईमेल, पासवर्ड, भूमिका।",
"Enter {{role}} message here": "यहां {{role}} संदेश दर्ज करें",
......@@ -280,10 +285,15 @@
"Frequency Penalty": "फ्रीक्वेंसी पेनल्टी",
"Function created successfully": "",
"Function deleted successfully": "",
"Function Description (e.g. A filter to remove profanity from text)": "",
"Function ID (e.g. my_filter)": "",
"Function is now globally disabled": "",
"Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "",
"Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "",
"General": "सामान्य",
"General Settings": "सामान्य सेटिंग्स",
......@@ -302,6 +312,7 @@
"Hide Model": "",
"How can I help you today?": "आज मैं आपकी कैसे मदद कर सकता हूँ?",
"Hybrid Search": "हाइब्रिड खोज",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
"Image Generation (Experimental)": "छवि निर्माण (प्रायोगिक)",
"Image Generation Engine": "छवि निर्माण इंजन",
"Image Settings": "छवि सेटिंग्स",
......@@ -442,6 +453,7 @@
"Pipelines Valves": "पाइपलाइन वाल्व",
"Plain text (.txt)": "सादा पाठ (.txt)",
"Playground": "कार्यक्षेत्र",
"Please carefully review the following warnings:": "",
"Positive attitude": "सकारात्मक रवैया",
"Previous 30 days": "पिछले 30 दिन",
"Previous 7 days": "पिछले 7 दिन",
......@@ -607,7 +619,13 @@
"Tool deleted successfully": "",
"Tool imported successfully": "",
"Tool updated successfully": "",
"Toolkit Description (e.g. A toolkit for performing various operations)": "",
"Toolkit ID (e.g. my_toolkit)": "",
"Toolkit Name (e.g. My ToolKit)": "",
"Tools": "",
"Tools are a function calling system with arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "शीर्ष K",
"Top P": "शीर्ष P",
"Trouble accessing Ollama?": "Ollama तक पहुँचने में परेशानी हो रही है?",
......@@ -649,6 +667,7 @@
"Version": "संस्करण",
"Voice": "",
"Warning": "चेतावनी",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "चेतावनी: यदि आप अपने एम्बेडिंग मॉडल को अपडेट या बदलते हैं, तो आपको सभी दस्तावेज़ों को फिर से आयात करने की आवश्यकता होगी।",
"Web": "वेब",
"Web API": "",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment