"backend/vscode:/vscode.git/clone" did not exist on "509d2a61eb1006a50fa661ab088014bec53abcbc"
Unverified Commit 6e843ab5 authored by Timothy Jaeryang Baek's avatar Timothy Jaeryang Baek Committed by GitHub
Browse files

Merge pull request #3882 from open-webui/dev

0.3.9
parents eff736ac b3a0d47a
......@@ -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,20 @@
>
<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,9 @@ 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 +238,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 +266,20 @@ 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>
......@@ -44,23 +44,25 @@
}}
>
<div class="px-1 text-sm">
<div class=" my-2">
The developers behind this plugin are passionate volunteers from the community. If you
find this plugin helpful, please consider contributing to its development.
<div class="my-2">
{$i18n.t(
'The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.'
)}
</div>
<div class=" my-2">
Your entire contribution will go directly to the plugin developer; Open WebUI does not
take any percentage. However, the chosen funding platform might have its own fees.
<div class="my-2">
{$i18n.t(
'Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.'
)}
</div>
<hr class=" dark:border-gray-800 my-3" />
<hr class="dark:border-gray-800 my-3" />
<div class="my-2">
Support this plugin: <a
{$i18n.t('Support this plugin:')}
<a
href={manifest.funding_url}
target="_blank"
class=" underline text-blue-400 hover:text-blue-300">{manifest.funding_url}</a
class="underline text-blue-400 hover:text-blue-300">{manifest.funding_url}</a
>
</div>
</div>
......
......@@ -13,6 +13,7 @@
import { getToolValvesById, getToolValvesSpecById, updateToolValvesById } from '$lib/apis/tools';
import Spinner from '../../common/Spinner.svelte';
import Switch from '$lib/components/common/Switch.svelte';
import Valves from '$lib/components/common/Valves.svelte';
const i18n = getContext('i18n');
const dispatch = createEventDispatcher();
......@@ -127,91 +128,7 @@
>
<div class="px-1">
{#if !loading}
{#if valvesSpec}
{#each Object.keys(valvesSpec.properties) as property, idx}
<div class=" py-0.5 w-full justify-between">
<div class="flex w-full justify-between">
<div class=" self-center text-xs font-medium">
{valvesSpec.properties[property].title}
{#if (valvesSpec?.required ?? []).includes(property)}
<span class=" text-gray-500">*required</span>
{/if}
</div>
<button
class="p-1 px-3 text-xs flex rounded transition"
type="button"
on:click={() => {
valves[property] =
(valves[property] ?? null) === null
? valvesSpec.properties[property]?.default ?? ''
: null;
}}
>
{#if (valves[property] ?? null) === null}
<span class="ml-2 self-center">
{#if (valvesSpec?.required ?? []).includes(property)}
{$i18n.t('None')}
{:else}
{$i18n.t('Default')}
{/if}
</span>
{:else}
<span class="ml-2 self-center"> {$i18n.t('Custom')} </span>
{/if}
</button>
</div>
{#if (valves[property] ?? null) !== null}
<!-- {valves[property]} -->
<div class="flex mt-0.5 mb-1.5 space-x-2">
<div class=" flex-1">
{#if valvesSpec.properties[property]?.enum ?? null}
<select
class="w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
bind:value={valves[property]}
>
{#each valvesSpec.properties[property].enum as option}
<option value={option} selected={option === valves[property]}>
{option}
</option>
{/each}
</select>
{:else if (valvesSpec.properties[property]?.type ?? null) === 'boolean'}
<div class="flex justify-between items-center">
<div class="text-xs text-gray-500">
{valves[property] ? 'Enabled' : 'Disabled'}
</div>
<div class=" pr-2">
<Switch bind:state={valves[property]} />
</div>
</div>
{:else}
<input
class="w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
type="text"
placeholder={valvesSpec.properties[property].title}
bind:value={valves[property]}
autocomplete="off"
required
/>
{/if}
</div>
</div>
{/if}
{#if (valvesSpec.properties[property]?.description ?? null) !== null}
<div class="text-xs text-gray-500">
{valvesSpec.properties[property].description}
</div>
{/if}
</div>
{/each}
{:else}
<div class="text-sm">No valves</div>
{/if}
<Valves {valvesSpec} bind:valves />
{:else}
<Spinner className="size-5" />
{/if}
......
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "حذف {{name}}",
"Description": "وصف",
"Didn't fully follow instructions": "لم أتبع التعليمات بشكل كامل",
"Disabled": "",
"Discover a function": "",
"Discover a model": "اكتشف نموذجا",
"Discover a prompt": "اكتشاف موجه",
......@@ -188,6 +189,8 @@
"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": "",
......@@ -195,6 +198,8 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "لا يجري أي اتصالات خارجية، وتظل بياناتك آمنة على الخادم المستضاف محليًا.",
"Don't Allow": "لا تسمح بذلك",
"Don't have an account?": "ليس لديك حساب؟",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"Don't like the style": "لا أحب النمط",
"Done": "",
"Download": "تحميل",
......@@ -215,6 +220,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}} هنا",
......@@ -236,6 +242,7 @@
"Enter Serply API Key": "",
"Enter Serpstack API Key": "أدخل مفتاح واجهة برمجة تطبيقات Serpstack",
"Enter stop sequence": "أدخل تسلسل التوقف",
"Enter system prompt": "",
"Enter Tavily API Key": "",
"Enter Tika Server URL": "",
"Enter Top K": "أدخل Top K",
......@@ -243,6 +250,7 @@
"Enter URL (e.g. http://localhost:11434)": "URL (e.g. http://localhost:11434)",
"Enter Your Email": "أدخل البريد الاكتروني",
"Enter Your Full Name": "أدخل الاسم كامل",
"Enter your message": "",
"Enter Your Password": "ادخل كلمة المرور",
"Enter Your Role": "أدخل الصلاحيات",
"Error": "خطأ",
......@@ -266,6 +274,7 @@
"File": "",
"File Mode": "وضع الملف",
"File not found.": "لم يتم العثور على الملف.",
"Files": "",
"Filter is now globally disabled": "",
"Filter is now globally enabled": "",
"Filters": "",
......@@ -278,14 +287,22 @@
"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": "الاعدادات العامة",
"Generate Image": "",
"Generating search query": "إنشاء استعلام بحث",
"Generation Info": "معلومات الجيل",
"Get up and running with": "",
"Global": "",
"Good Response": "استجابة جيدة",
"Google PSE API Key": "مفتاح واجهة برمجة تطبيقات PSE من Google",
......@@ -298,6 +315,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": "إعدادات الصورة",
......@@ -328,6 +346,7 @@
"Keyboard shortcuts": "اختصارات لوحة المفاتيح",
"Knowledge": "",
"Language": "اللغة",
"large language models, locally.": "",
"Last Active": "آخر نشاط",
"Last Modified": "",
"Light": "فاتح",
......@@ -438,6 +457,7 @@
"Pipelines Valves": "صمامات خطوط الأنابيب",
"Plain text (.txt)": "نص عادي (.txt)",
"Playground": "مكان التجربة",
"Please carefully review the following warnings:": "",
"Positive attitude": "موقف ايجابي",
"Previous 30 days": "أخر 30 يوم",
"Previous 7 days": "أخر 7 أيام",
......@@ -475,6 +495,7 @@
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "من اليمين إلى اليسار",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "",
"Save": "حفظ",
"Save & Create": "حفظ وإنشاء",
......@@ -562,6 +583,8 @@
"Success": "نجاح",
"Successfully updated.": "تم التحديث بنجاح",
"Suggested": "مقترحات",
"Support": "",
"Support this plugin:": "",
"System": "النظام",
"System Prompt": "محادثة النظام",
"Tags": "الوسوم",
......@@ -574,6 +597,7 @@
"Text-to-Speech Engine": "محرك تحويل النص إلى كلام",
"Tfs Z": "Tfs Z",
"Thanks for your feedback!": "شكرا لملاحظاتك!",
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "يجب أن تكون النتيجة قيمة تتراوح بين 0.0 (0%) و1.0 (100%).",
"Theme": "الثيم",
"Thinking...": "",
......@@ -607,7 +631,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 +679,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": "",
......@@ -675,6 +706,7 @@
"You're a helpful assistant.": "مساعدك المفيد هنا",
"You're now logged in.": "لقد قمت الآن بتسجيل الدخول.",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Youtube": "Youtube",
"Youtube Loader Settings": "Youtube تحميل اعدادات"
}
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "Изтрито {{име}}",
"Description": "Описание",
"Didn't fully follow instructions": "Не следва инструкциите",
"Disabled": "",
"Discover a function": "",
"Discover a model": "Открийте модел",
"Discover a prompt": "Откриване на промпт",
......@@ -188,6 +189,8 @@
"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": "",
......@@ -195,6 +198,8 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "няма външни връзки, и вашите данни остават сигурни на локално назначен сървър.",
"Don't Allow": "Не Позволявай",
"Don't have an account?": "Нямате акаунт?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"Don't like the style": "Не харесваш стила?",
"Done": "",
"Download": "Изтегляне отменено",
......@@ -215,6 +220,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}} тук",
......@@ -236,6 +242,7 @@
"Enter Serply API Key": "",
"Enter Serpstack API Key": "Въведете Serpstack API ключ",
"Enter stop sequence": "Въведете стоп последователност",
"Enter system prompt": "",
"Enter Tavily API Key": "",
"Enter Tika Server URL": "",
"Enter Top K": "Въведете Top K",
......@@ -243,6 +250,7 @@
"Enter URL (e.g. http://localhost:11434)": "Въведете URL (напр. http://localhost:11434)",
"Enter Your Email": "Въведете имейл",
"Enter Your Full Name": "Въведете вашето пълно име",
"Enter your message": "",
"Enter Your Password": "Въведете вашата парола",
"Enter Your Role": "Въведете вашата роля",
"Error": "Грешка",
......@@ -266,6 +274,7 @@
"File": "",
"File Mode": "Файл Мод",
"File not found.": "Файл не е намерен.",
"Files": "",
"Filter is now globally disabled": "",
"Filter is now globally enabled": "",
"Filters": "",
......@@ -278,14 +287,22 @@
"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": "Основни Настройки",
"Generate Image": "",
"Generating search query": "Генериране на заявка за търсене",
"Generation Info": "Информация за Генерация",
"Get up and running with": "",
"Global": "",
"Good Response": "Добра отговор",
"Google PSE API Key": "Google PSE API ключ",
......@@ -298,6 +315,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": "Настройки на изображения",
......@@ -328,6 +346,7 @@
"Keyboard shortcuts": "Клавиши за бърз достъп",
"Knowledge": "",
"Language": "Език",
"large language models, locally.": "",
"Last Active": "Последни активни",
"Last Modified": "",
"Light": "Светъл",
......@@ -438,6 +457,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 дни",
......@@ -475,6 +495,7 @@
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "",
"Save": "Запис",
"Save & Create": "Запис & Създаване",
......@@ -558,6 +579,8 @@
"Success": "Успех",
"Successfully updated.": "Успешно обновено.",
"Suggested": "Препоръчано",
"Support": "",
"Support this plugin:": "",
"System": "Система",
"System Prompt": "Системен Промпт",
"Tags": "Тагове",
......@@ -570,6 +593,7 @@
"Text-to-Speech Engine": "Text-to-Speech Engine",
"Tfs Z": "Tfs Z",
"Thanks for your feedback!": "Благодарим ви за вашия отзив!",
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "The score should be a value between 0.0 (0%) and 1.0 (100%).",
"Theme": "Тема",
"Thinking...": "",
......@@ -603,7 +627,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?",
......@@ -645,6 +675,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": "",
......@@ -671,6 +702,7 @@
"You're a helpful assistant.": "Вие сте полезен асистент.",
"You're now logged in.": "Сега, вие влязохте в системата.",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Youtube": "Youtube",
"Youtube Loader Settings": "Youtube Loader Settings"
}
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "{{name}} মোছা হয়েছে",
"Description": "বিবরণ",
"Didn't fully follow instructions": "ইনস্ট্রাকশন সম্পূর্ণ অনুসরণ করা হয়নি",
"Disabled": "",
"Discover a function": "",
"Discover a model": "একটি মডেল আবিষ্কার করুন",
"Discover a prompt": "একটি প্রম্পট খুঁজে বের করুন",
......@@ -188,6 +189,8 @@
"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": "",
......@@ -195,6 +198,8 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "কোন এক্সটার্নাল কানেকশন তৈরি করে না, এবং আপনার ডেটা আর লোকালি হোস্টেড সার্ভারেই নিরাপদে থাকে।",
"Don't Allow": "অনুমোদন দেবেন না",
"Don't have an account?": "একাউন্ট নেই?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"Don't like the style": "স্টাইল পছন্দ করেন না",
"Done": "",
"Download": "ডাউনলোড",
......@@ -215,6 +220,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}} মেসেজ এখানে লিখুন",
......@@ -236,6 +242,7 @@
"Enter Serply API Key": "",
"Enter Serpstack API Key": "Serpstack API কী লিখুন",
"Enter stop sequence": "স্টপ সিকোয়েন্স লিখুন",
"Enter system prompt": "",
"Enter Tavily API Key": "",
"Enter Tika Server URL": "",
"Enter Top K": "Top K লিখুন",
......@@ -243,6 +250,7 @@
"Enter URL (e.g. http://localhost:11434)": "ইউআরএল দিন (যেমন http://localhost:11434)",
"Enter Your Email": "আপনার ইমেইল লিখুন",
"Enter Your Full Name": "আপনার পূর্ণ নাম লিখুন",
"Enter your message": "",
"Enter Your Password": "আপনার পাসওয়ার্ড লিখুন",
"Enter Your Role": "আপনার রোল লিখুন",
"Error": "ত্রুটি",
......@@ -266,6 +274,7 @@
"File": "",
"File Mode": "ফাইল মোড",
"File not found.": "ফাইল পাওয়া যায়নি",
"Files": "",
"Filter is now globally disabled": "",
"Filter is now globally enabled": "",
"Filters": "",
......@@ -278,14 +287,22 @@
"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": "সাধারণ সেটিংসমূহ",
"Generate Image": "",
"Generating search query": "অনুসন্ধান ক্যোয়ারী তৈরি করা হচ্ছে",
"Generation Info": "জেনারেশন ইনফো",
"Get up and running with": "",
"Global": "",
"Good Response": "ভালো সাড়া",
"Google PSE API Key": "গুগল পিএসই এপিআই কী",
......@@ -298,6 +315,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": "ছবির সেটিংসমূহ",
......@@ -328,6 +346,7 @@
"Keyboard shortcuts": "কিবোর্ড শর্টকাটসমূহ",
"Knowledge": "",
"Language": "ভাষা",
"large language models, locally.": "",
"Last Active": "সর্বশেষ সক্রিয়",
"Last Modified": "",
"Light": "লাইট",
......@@ -438,6 +457,7 @@
"Pipelines Valves": "পাইপলাইন ভালভ",
"Plain text (.txt)": "প্লায়েন টেক্সট (.txt)",
"Playground": "খেলাঘর",
"Please carefully review the following warnings:": "",
"Positive attitude": "পজিটিভ আক্রমণ",
"Previous 30 days": "পূর্ব ৩০ দিন",
"Previous 7 days": "পূর্ব ৭ দিন",
......@@ -475,6 +495,7 @@
"Rosé Pine": "রোজ পাইন",
"Rosé Pine Dawn": "ভোরের রোজ পাইন",
"RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "",
"Save": "সংরক্ষণ",
"Save & Create": "সংরক্ষণ এবং তৈরি করুন",
......@@ -558,6 +579,8 @@
"Success": "সফল",
"Successfully updated.": "সফলভাবে আপডেট হয়েছে",
"Suggested": "প্রস্তাবিত",
"Support": "",
"Support this plugin:": "",
"System": "সিস্টেম",
"System Prompt": "সিস্টেম প্রম্পট",
"Tags": "ট্যাগসমূহ",
......@@ -570,6 +593,7 @@
"Text-to-Speech Engine": "টেক্সট-টু-স্পিচ ইঞ্জিন",
"Tfs Z": "Tfs Z",
"Thanks for your feedback!": "আপনার মতামত ধন্যবাদ!",
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "স্কোর একটি 0.0 (0%) এবং 1.0 (100%) এর মধ্যে একটি মান হওয়া উচিত।",
"Theme": "থিম",
"Thinking...": "",
......@@ -603,7 +627,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 এক্সেস করতে সমস্যা হচ্ছে?",
......@@ -645,6 +675,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": "",
......@@ -671,6 +702,7 @@
"You're a helpful assistant.": "আপনি একজন উপকারী এসিস্ট্যান্ট",
"You're now logged in.": "আপনি এখন লগইন করা অবস্থায় আছেন",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Youtube": "YouTube",
"Youtube Loader Settings": "YouTube লোডার সেটিংস"
}
......@@ -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": "Deshabilitat",
"Discover a function": "Descobrir una funció",
"Discover a model": "Descobrir un model",
"Discover a prompt": "Descobrir una indicació",
......@@ -188,6 +189,8 @@
"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.": "No instal·lis funcions de fonts en què no confiïs plenament.",
"Do not install tools from sources you do not fully trust.": "No instal·lis eines de fonts en què no confiïs plenament.",
"Document": "Document",
"Document Settings": "Preferències de documents",
"Documentation": "Documentació",
......@@ -195,6 +198,8 @@
"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't Allow": "No permetre",
"Don't have an account?": "No tens un compte?",
"don't install random functions from sources you don't trust.": "no instal·lis funcions aleatòries de fonts en què no confiïs.",
"don't install random tools from sources you don't trust.": "no instal·lis eines aleatòries de fonts en què no confiïs.",
"Don't like the style": "No t'agrada l'estil?",
"Done": "Fet",
"Download": "Descarregar",
......@@ -215,6 +220,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": "Habilitat",
"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}}",
......@@ -236,6 +242,7 @@
"Enter Serply API Key": "Introdueix la clau API Serply",
"Enter Serpstack API Key": "Introdueix la clau API Serpstack",
"Enter stop sequence": "Introdueix la seqüència de parada",
"Enter system prompt": "Introdueix la indicació de sistema",
"Enter Tavily API Key": "Introdueix la clau API de Tavily",
"Enter Tika Server URL": "Introdueix l'URL del servidor Tika",
"Enter Top K": "Introdueix Top K",
......@@ -243,6 +250,7 @@
"Enter URL (e.g. http://localhost:11434)": "Introdueix l'URL (p. ex. http://localhost:11434)",
"Enter Your Email": "Introdueix el teu correu electrònic",
"Enter Your Full Name": "Introdueix el teu nom complet",
"Enter your message": "Introdueix el teu missatge",
"Enter Your Password": "Introdueix la teva contrasenya",
"Enter Your Role": "Introdueix el teu rol",
"Error": "Error",
......@@ -266,6 +274,7 @@
"File": "Arxiu",
"File Mode": "Mode d'arxiu",
"File not found.": "No s'ha trobat l'arxiu.",
"Files": "",
"Filter is now globally disabled": "El filtre ha estat desactivat globalment",
"Filter is now globally enabled": "El filtre ha estat activat globalment",
"Filters": "Filtres",
......@@ -278,14 +287,22 @@
"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)": "Descripció de la funció (per exemple, un filtre per eliminar paraules malsonants del text)",
"Function ID (e.g. my_filter)": "ID de la funció (per exemple, el_meu_filtre)",
"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)": "Nom de la funció (per exemple, El Meu Filtre)",
"Function updated successfully": "La funció s'ha actualitzat correctament",
"Functions": "Funcions",
"Functions allow arbitrary code execution": "Les funcions permeten l'execució de codi arbitrari",
"Functions allow arbitrary code execution.": "Les funcions permeten l'execució de codi arbitrari.",
"Functions imported successfully": "Les funcions s'han importat correctament",
"General": "General",
"General Settings": "Preferències generals",
"Generate Image": "Generar imatge",
"Generating search query": "Generant consulta",
"Generation Info": "Informació sobre la generació",
"Get up and running with": "Posa't en marxa amb",
"Global": "Global",
"Good Response": "Bona resposta",
"Google PSE API Key": "Clau API PSE de Google",
......@@ -298,6 +315,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.": "Afirmo que he llegit i entenc les implicacions de la meva acció. Soc conscient dels riscos associats a l'execució de codi arbitrari i he verificat la fiabilitat de la font.",
"Image Generation (Experimental)": "Generació d'imatges (Experimental)",
"Image Generation Engine": "Motor de generació d'imatges",
"Image Settings": "Preferències d'imatges",
......@@ -328,6 +346,7 @@
"Keyboard shortcuts": "Dreceres de teclat",
"Knowledge": "Coneixement",
"Language": "Idioma",
"large language models, locally.": "models de llenguatge extensos, localment",
"Last Active": "Activitat recent",
"Last Modified": "Modificació",
"Light": "Clar",
......@@ -438,6 +457,7 @@
"Pipelines Valves": "Vàlvules de les Pipelines",
"Plain text (.txt)": "Text pla (.txt)",
"Playground": "Zona de jocs",
"Please carefully review the following warnings:": "Si us plau, revisa els següents avisos amb cura:",
"Positive attitude": "Actitud positiva",
"Previous 30 days": "30 dies anteriors",
"Previous 7 days": "7 dies anteriors",
......@@ -475,6 +495,7 @@
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Albada Rosé Pine",
"RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "Executa Llama 2, Code Llama, i altres models. Personalitza i crea els teus propis models.",
"Running": "S'està executant",
"Save": "Desar",
"Save & Create": "Desar i crear",
......@@ -559,6 +580,8 @@
"Success": "Èxit",
"Successfully updated.": "Actualitzat correctament.",
"Suggested": "Suggerit",
"Support": "Dona suport",
"Support this plugin:": "Dona suport a aquest complement:",
"System": "Sistema",
"System Prompt": "Indicació del Sistema",
"Tags": "Etiquetes",
......@@ -571,6 +594,7 @@
"Text-to-Speech Engine": "Motor de text a veu",
"Tfs Z": "Tfs Z",
"Thanks for your feedback!": "Gràcies pel teu comentari!",
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Els desenvolupadors d'aquest complement són voluntaris apassionats de la comunitat. Si trobeu útil aquest complement, considereu contribuir al seu desenvolupament.",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "El valor de puntuació hauria de ser entre 0.0 (0%) i 1.0 (100%).",
"Theme": "Tema",
"Thinking...": "Pensant...",
......@@ -604,7 +628,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)": "Descripció del kit d'eines (p. ex. Un kit d'eines per fer diverses operacions)",
"Toolkit ID (e.g. my_toolkit)": "ID del kit d'eines (p. ex. el_meu_kit)",
"Toolkit Name (e.g. My ToolKit)": "Nom del kit d'eines (p. ex. El meu kit)",
"Tools": "Eines",
"Tools are a function calling system with arbitrary code execution": "Les eines són un sistema de crida a funcions amb execució de codi arbitrari",
"Tools have a function calling system that allows arbitrary code execution": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari",
"Tools have a function calling system that allows arbitrary code execution.": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari.",
"Top K": "Top K",
"Top P": "Top P",
"Trouble accessing Ollama?": "Problemes en accedir a Ollama?",
......@@ -646,6 +676,7 @@
"Version": "Versió",
"Voice": "Veu",
"Warning": "Avís",
"Warning:": "Avís:",
"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",
......@@ -672,6 +703,7 @@
"You're a helpful assistant.": "Ets un assistent útil.",
"You're now logged in.": "Ara estàs connectat.",
"Your account status is currently pending activation.": "El compte està actualment pendent d'activació",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Tota la teva contribució anirà directament al desenvolupador del complement; Open WebUI no se'n queda cap percentatge. Tanmateix, la plataforma de finançament escollida pot tenir les seves pròpies comissions.",
"Youtube": "Youtube",
"Youtube Loader Settings": "Preferències del carregador de Youtube"
}
......@@ -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,6 +189,8 @@
"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": "",
......@@ -195,6 +198,8 @@
"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't Allow": "Dili tugotan",
"Don't have an account?": "Wala kay account ?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"Don't like the style": "",
"Done": "",
"Download": "",
......@@ -215,6 +220,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",
......@@ -236,6 +242,7 @@
"Enter Serply API Key": "",
"Enter Serpstack API Key": "",
"Enter stop sequence": "Pagsulod sa katapusan nga han-ay",
"Enter system prompt": "",
"Enter Tavily API Key": "",
"Enter Tika Server URL": "",
"Enter Top K": "Pagsulod sa Top K",
......@@ -243,6 +250,7 @@
"Enter URL (e.g. http://localhost:11434)": "",
"Enter Your Email": "Pagsulod sa imong e-mail address",
"Enter Your Full Name": "Ibutang ang imong tibuok nga ngalan",
"Enter your message": "",
"Enter Your Password": "Ibutang ang imong password",
"Enter Your Role": "",
"Error": "",
......@@ -266,6 +274,7 @@
"File": "",
"File Mode": "File mode",
"File not found.": "Wala makit-an ang file.",
"Files": "",
"Filter is now globally disabled": "",
"Filter is now globally enabled": "",
"Filters": "",
......@@ -278,14 +287,22 @@
"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",
"Generate Image": "",
"Generating search query": "",
"Generation Info": "",
"Get up and running with": "",
"Global": "",
"Good Response": "",
"Google PSE API Key": "",
......@@ -298,6 +315,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",
......@@ -328,6 +346,7 @@
"Keyboard shortcuts": "Mga shortcut sa keyboard",
"Knowledge": "",
"Language": "Pinulongan",
"large language models, locally.": "",
"Last Active": "",
"Last Modified": "",
"Light": "Kahayag",
......@@ -438,6 +457,7 @@
"Pipelines Valves": "",
"Plain text (.txt)": "",
"Playground": "Dulaanan",
"Please carefully review the following warnings:": "",
"Positive attitude": "",
"Previous 30 days": "",
"Previous 7 days": "",
......@@ -475,6 +495,7 @@
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Aube Pine Rosé",
"RTL": "",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "",
"Save": "Tipigi",
"Save & Create": "I-save ug Paghimo",
......@@ -558,6 +579,8 @@
"Success": "Kalampusan",
"Successfully updated.": "Malampuson nga na-update.",
"Suggested": "",
"Support": "",
"Support this plugin:": "",
"System": "Sistema",
"System Prompt": "Madasig nga Sistema",
"Tags": "Mga tag",
......@@ -570,6 +593,7 @@
"Text-to-Speech Engine": "Text-to-speech nga makina",
"Tfs Z": "Tfs Z",
"Thanks for your feedback!": "",
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "",
"Theme": "Tema",
"Thinking...": "",
......@@ -603,7 +627,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?",
......@@ -645,6 +675,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": "",
......@@ -671,6 +702,7 @@
"You're a helpful assistant.": "Usa ka ka mapuslanon nga katabang",
"You're now logged in.": "Konektado ka na karon.",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Youtube": "",
"Youtube Loader Settings": ""
}
......@@ -130,7 +130,7 @@
"Content Extraction": "Inhaltsextraktion",
"Context Length": "Kontextlänge",
"Continue Response": "Antwort fortsetzen",
"Continue with {{provider}}": "Mit {{Anbieter}} fortfahren",
"Continue with {{provider}}": "Mit {{provider}} fortfahren",
"Controls": "",
"Copied shared chat URL to clipboard!": "Freigabelink in die Zwischenablage kopiert!",
"Copy": "Kopieren",
......@@ -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,6 +189,8 @@
"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",
......@@ -195,6 +198,8 @@
"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't Allow": "Verbieten",
"Don't have an account?": "Haben Sie noch kein Benutzerkonto?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"Don't like the style": "schlechter Schreibstil",
"Done": "Erledigt",
"Download": "Exportieren",
......@@ -215,6 +220,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",
......@@ -236,6 +242,7 @@
"Enter Serply API Key": "Geben Sie den",
"Enter Serpstack API Key": "Geben Sie den Serpstack-API-Schlüssel ein",
"Enter stop sequence": "Stop-Sequenz eingeben",
"Enter system prompt": "",
"Enter Tavily API Key": "Geben Sie den Tavily-API-Schlüssel ein",
"Enter Tika Server URL": "Geben Sie die Tika-Server-URL ein",
"Enter Top K": "Geben Sie Top K ein",
......@@ -243,6 +250,7 @@
"Enter URL (e.g. http://localhost:11434)": "Geben Sie die URL ein (z. B. http://localhost:11434)",
"Enter Your Email": "Geben Sie Ihre E-Mail-Adresse ein",
"Enter Your Full Name": "Geben Sie Ihren vollständigen Namen ein",
"Enter your message": "",
"Enter Your Password": "Geben Sie Ihr Passwort ein",
"Enter Your Role": "Geben Sie Ihre Rolle ein",
"Error": "Fehler",
......@@ -266,6 +274,7 @@
"File": "Datei",
"File Mode": "Datei-Modus",
"File not found.": "Datei nicht gefunden.",
"Files": "",
"Filter is now globally disabled": "Filter ist jetzt global deaktiviert",
"Filter is now globally enabled": "Filter ist jetzt global aktiviert",
"Filters": "Filter",
......@@ -278,14 +287,22 @@
"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",
"Generate Image": "Bild erzeugen",
"Generating search query": "Suchanfrage wird erstellt",
"Generation Info": "Generierungsinformationen",
"Get up and running with": "",
"Global": "Global",
"Good Response": "Gute Antwort",
"Google PSE API Key": "Google PSE-API-Schlüssel",
......@@ -298,6 +315,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",
......@@ -328,6 +346,7 @@
"Keyboard shortcuts": "Tastenkombinationen",
"Knowledge": "Wissen",
"Language": "Sprache",
"large language models, locally.": "",
"Last Active": "Zuletzt aktiv",
"Last Modified": "Zuletzt bearbeitet",
"Light": "Hell",
......@@ -438,6 +457,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",
......@@ -475,6 +495,7 @@
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "Läuft",
"Save": "Speichern",
"Save & Create": "Erstellen",
......@@ -558,6 +579,8 @@
"Success": "Erfolg",
"Successfully updated.": "Erfolgreich aktualisiert.",
"Suggested": "Vorgeschlagen",
"Support": "",
"Support this plugin:": "",
"System": "System",
"System Prompt": "System-Prompt",
"Tags": "Tags",
......@@ -570,6 +593,7 @@
"Text-to-Speech Engine": "Text-zu-Sprache-Engine",
"Tfs Z": "Tfs Z",
"Thanks for your feedback!": "Danke für Ihr Feedback!",
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Die Punktzahl sollte ein Wert zwischen 0,0 (0 %) und 1,0 (100 %) sein.",
"Theme": "Design",
"Thinking...": "Denke nach...",
......@@ -603,7 +627,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?",
......@@ -645,6 +675,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",
......@@ -671,6 +702,7 @@
"You're a helpful assistant.": "Du bist ein hilfreicher Assistent.",
"You're now logged in.": "Sie sind jetzt eingeloggt.",
"Your account status is currently pending activation.": "Ihr Kontostatus ist derzeit ausstehend und wartet auf Aktivierung.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Youtube": "YouTube",
"Youtube Loader Settings": "YouTube-Ladeeinstellungen"
}
......@@ -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,6 +189,8 @@
"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": "",
......@@ -195,6 +198,8 @@
"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't Allow": "Don't Allow",
"Don't have an account?": "No account? Much sad.",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"Don't like the style": "",
"Done": "",
"Download": "",
......@@ -215,6 +220,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",
......@@ -236,6 +242,7 @@
"Enter Serply API Key": "",
"Enter Serpstack API Key": "",
"Enter stop sequence": "Enter stop bark",
"Enter system prompt": "",
"Enter Tavily API Key": "",
"Enter Tika Server URL": "",
"Enter Top K": "Enter Top Wow",
......@@ -243,6 +250,7 @@
"Enter URL (e.g. http://localhost:11434)": "",
"Enter Your Email": "Enter Your Dogemail",
"Enter Your Full Name": "Enter Your Full Wow",
"Enter your message": "",
"Enter Your Password": "Enter Your Barkword",
"Enter Your Role": "",
"Error": "",
......@@ -266,6 +274,7 @@
"File": "",
"File Mode": "Bark Mode",
"File not found.": "Bark not found.",
"Files": "",
"Filter is now globally disabled": "",
"Filter is now globally enabled": "",
"Filters": "",
......@@ -278,14 +287,22 @@
"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",
"Generate Image": "",
"Generating search query": "",
"Generation Info": "",
"Get up and running with": "",
"Global": "",
"Good Response": "",
"Google PSE API Key": "",
......@@ -298,6 +315,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",
......@@ -328,6 +346,7 @@
"Keyboard shortcuts": "Keyboard Barkcuts",
"Knowledge": "",
"Language": "Doge Speak",
"large language models, locally.": "",
"Last Active": "",
"Last Modified": "",
"Light": "Light",
......@@ -438,6 +457,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": "",
......@@ -475,6 +495,7 @@
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "",
"Save": "Save much wow",
"Save & Create": "Save & Create much create",
......@@ -560,6 +581,8 @@
"Success": "Success very success",
"Successfully updated.": "Successfully updated. Very updated.",
"Suggested": "",
"Support": "",
"Support this plugin:": "",
"System": "System very system",
"System Prompt": "System Prompt much prompt",
"Tags": "Tags very tags",
......@@ -572,6 +595,7 @@
"Text-to-Speech Engine": "Text-to-Speech Engine much speak",
"Tfs Z": "Tfs Z much Z",
"Thanks for your feedback!": "",
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "",
"Theme": "Theme much theme",
"Thinking...": "",
......@@ -605,7 +629,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?",
......@@ -647,6 +677,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": "",
......@@ -673,6 +704,7 @@
"You're a helpful assistant.": "You're a helpful assistant. Much helpful.",
"You're now logged in.": "You're now logged in. Much logged.",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Youtube": "",
"Youtube Loader Settings": ""
}
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "",
"Description": "",
"Didn't fully follow instructions": "",
"Disabled": "",
"Discover a function": "",
"Discover a model": "",
"Discover a prompt": "",
......@@ -188,6 +189,8 @@
"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": "",
......@@ -195,6 +198,8 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "",
"Don't Allow": "",
"Don't have an account?": "",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"Don't like the style": "",
"Done": "",
"Download": "",
......@@ -215,6 +220,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": "",
......@@ -236,6 +242,7 @@
"Enter Serply API Key": "",
"Enter Serpstack API Key": "",
"Enter stop sequence": "",
"Enter system prompt": "",
"Enter Tavily API Key": "",
"Enter Tika Server URL": "",
"Enter Top K": "",
......@@ -243,6 +250,7 @@
"Enter URL (e.g. http://localhost:11434)": "",
"Enter Your Email": "",
"Enter Your Full Name": "",
"Enter your message": "",
"Enter Your Password": "",
"Enter Your Role": "",
"Error": "",
......@@ -266,6 +274,7 @@
"File": "",
"File Mode": "",
"File not found.": "",
"Files": "",
"Filter is now globally disabled": "",
"Filter is now globally enabled": "",
"Filters": "",
......@@ -278,14 +287,22 @@
"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": "",
"Generate Image": "",
"Generating search query": "",
"Generation Info": "",
"Get up and running with": "",
"Global": "",
"Good Response": "",
"Google PSE API Key": "",
......@@ -298,6 +315,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": "",
......@@ -328,6 +346,7 @@
"Keyboard shortcuts": "",
"Knowledge": "",
"Language": "",
"large language models, locally.": "",
"Last Active": "",
"Last Modified": "",
"Light": "",
......@@ -438,6 +457,7 @@
"Pipelines Valves": "",
"Plain text (.txt)": "",
"Playground": "",
"Please carefully review the following warnings:": "",
"Positive attitude": "",
"Previous 30 days": "",
"Previous 7 days": "",
......@@ -475,6 +495,7 @@
"Rosé Pine": "",
"Rosé Pine Dawn": "",
"RTL": "",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "",
"Save": "",
"Save & Create": "",
......@@ -558,6 +579,8 @@
"Success": "",
"Successfully updated.": "",
"Suggested": "",
"Support": "",
"Support this plugin:": "",
"System": "",
"System Prompt": "",
"Tags": "",
......@@ -570,6 +593,7 @@
"Text-to-Speech Engine": "",
"Tfs Z": "",
"Thanks for your feedback!": "",
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "",
"Theme": "",
"Thinking...": "",
......@@ -603,7 +627,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?": "",
......@@ -645,6 +675,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": "",
......@@ -671,6 +702,7 @@
"You're a helpful assistant.": "",
"You're now logged in.": "",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Youtube": "",
"Youtube Loader Settings": ""
}
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "",
"Description": "",
"Didn't fully follow instructions": "",
"Disabled": "",
"Discover a function": "",
"Discover a model": "",
"Discover a prompt": "",
......@@ -188,6 +189,8 @@
"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": "",
......@@ -195,6 +198,8 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "",
"Don't Allow": "",
"Don't have an account?": "",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"Don't like the style": "",
"Done": "",
"Download": "",
......@@ -215,6 +220,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": "",
......@@ -236,6 +242,7 @@
"Enter Serply API Key": "",
"Enter Serpstack API Key": "",
"Enter stop sequence": "",
"Enter system prompt": "",
"Enter Tavily API Key": "",
"Enter Tika Server URL": "",
"Enter Top K": "",
......@@ -243,6 +250,7 @@
"Enter URL (e.g. http://localhost:11434)": "",
"Enter Your Email": "",
"Enter Your Full Name": "",
"Enter your message": "",
"Enter Your Password": "",
"Enter Your Role": "",
"Error": "",
......@@ -266,6 +274,7 @@
"File": "",
"File Mode": "",
"File not found.": "",
"Files": "",
"Filter is now globally disabled": "",
"Filter is now globally enabled": "",
"Filters": "",
......@@ -278,14 +287,22 @@
"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": "",
"Generate Image": "",
"Generating search query": "",
"Generation Info": "",
"Get up and running with": "",
"Global": "",
"Good Response": "",
"Google PSE API Key": "",
......@@ -298,6 +315,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": "",
......@@ -328,6 +346,7 @@
"Keyboard shortcuts": "",
"Knowledge": "",
"Language": "",
"large language models, locally.": "",
"Last Active": "",
"Last Modified": "",
"Light": "",
......@@ -438,6 +457,7 @@
"Pipelines Valves": "",
"Plain text (.txt)": "",
"Playground": "",
"Please carefully review the following warnings:": "",
"Positive attitude": "",
"Previous 30 days": "",
"Previous 7 days": "",
......@@ -475,6 +495,7 @@
"Rosé Pine": "",
"Rosé Pine Dawn": "",
"RTL": "",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "",
"Save": "",
"Save & Create": "",
......@@ -558,6 +579,8 @@
"Success": "",
"Successfully updated.": "",
"Suggested": "",
"Support": "",
"Support this plugin:": "",
"System": "",
"System Prompt": "",
"Tags": "",
......@@ -570,6 +593,7 @@
"Text-to-Speech Engine": "",
"Tfs Z": "",
"Thanks for your feedback!": "",
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "",
"Theme": "",
"Thinking...": "",
......@@ -603,7 +627,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?": "",
......@@ -645,6 +675,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": "",
......@@ -671,6 +702,7 @@
"You're a helpful assistant.": "",
"You're now logged in.": "",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Youtube": "",
"Youtube Loader Settings": ""
}
......@@ -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,6 +189,8 @@
"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",
......@@ -195,6 +198,8 @@
"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't Allow": "No Permitir",
"Don't have an account?": "¿No tienes una cuenta?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"Don't like the style": "No te gusta el estilo?",
"Done": "Hecho",
"Download": "Descargar",
......@@ -215,6 +220,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í",
......@@ -236,6 +242,7 @@
"Enter Serply API Key": "Ingrese la clave API de Serply",
"Enter Serpstack API Key": "Ingrese la clave API de Serpstack",
"Enter stop sequence": "Ingrese la secuencia de parada",
"Enter system prompt": "",
"Enter Tavily API Key": "Ingrese la clave API de Tavily",
"Enter Tika Server URL": "",
"Enter Top K": "Ingrese el Top K",
......@@ -243,6 +250,7 @@
"Enter URL (e.g. http://localhost:11434)": "Ingrese la URL (p.ej., http://localhost:11434)",
"Enter Your Email": "Ingrese su correo electrónico",
"Enter Your Full Name": "Ingrese su nombre completo",
"Enter your message": "",
"Enter Your Password": "Ingrese su contraseña",
"Enter Your Role": "Ingrese su rol",
"Error": "Error",
......@@ -266,6 +274,7 @@
"File": "Archivo",
"File Mode": "Modo de archivo",
"File not found.": "Archivo no encontrado.",
"Files": "",
"Filter is now globally disabled": "",
"Filter is now globally enabled": "",
"Filters": "Filtros",
......@@ -278,14 +287,22 @@
"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",
"Generate Image": "Generar imagen",
"Generating search query": "Generación de consultas de búsqueda",
"Generation Info": "Información de Generación",
"Get up and running with": "",
"Global": "",
"Good Response": "Buena Respuesta",
"Google PSE API Key": "Clave API de Google PSE",
......@@ -298,6 +315,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",
......@@ -328,6 +346,7 @@
"Keyboard shortcuts": "Atajos de teclado",
"Knowledge": "Conocimiento",
"Language": "Lenguaje",
"large language models, locally.": "",
"Last Active": "Última Actividad",
"Last Modified": "Modificado por última vez",
"Light": "Claro",
......@@ -438,6 +457,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",
......@@ -475,6 +495,7 @@
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "Ejecutando",
"Save": "Guardar",
"Save & Create": "Guardar y Crear",
......@@ -559,6 +580,8 @@
"Success": "Éxito",
"Successfully updated.": "Actualizado exitosamente.",
"Suggested": "Sugerido",
"Support": "",
"Support this plugin:": "",
"System": "Sistema",
"System Prompt": "Prompt del sistema",
"Tags": "Etiquetas",
......@@ -571,6 +594,7 @@
"Text-to-Speech Engine": "Motor de texto a voz",
"Tfs Z": "Tfs Z",
"Thanks for your feedback!": "¡Gracias por tu retroalimentación!",
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "El puntaje debe ser un valor entre 0.0 (0%) y 1.0 (100%).",
"Theme": "Tema",
"Thinking...": "Pensando...",
......@@ -604,7 +628,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?",
......@@ -646,6 +676,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",
......@@ -672,6 +703,7 @@
"You're a helpful assistant.": "Usted es un asistente útil.",
"You're now logged in.": "Usted ahora está conectado.",
"Your account status is currently pending activation.": "El estado de su cuenta actualmente se encuentra pendiente de activación.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Youtube": "Youtube",
"Youtube Loader Settings": "Configuración del cargador de Youtube"
}
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "حذف شده {{name}}",
"Description": "توضیحات",
"Didn't fully follow instructions": "نمی تواند دستورالعمل را کامل پیگیری کند",
"Disabled": "",
"Discover a function": "",
"Discover a model": "کشف یک مدل",
"Discover a prompt": "یک اعلان را کشف کنید",
......@@ -188,6 +189,8 @@
"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": "",
......@@ -195,6 +198,8 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "هیچ اتصال خارجی ایجاد نمی کند و داده های شما به طور ایمن در سرور میزبان محلی شما باقی می ماند.",
"Don't Allow": "اجازه نده",
"Don't have an account?": "حساب کاربری ندارید؟",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"Don't like the style": "نظری ندارید؟",
"Done": "",
"Download": "دانلود کن",
......@@ -215,6 +220,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}} را اینجا وارد کنید",
......@@ -236,6 +242,7 @@
"Enter Serply API Key": "",
"Enter Serpstack API Key": "کلید API Serpstack را وارد کنید",
"Enter stop sequence": "توالی توقف را وارد کنید",
"Enter system prompt": "",
"Enter Tavily API Key": "",
"Enter Tika Server URL": "",
"Enter Top K": "مقدار Top K را وارد کنید",
......@@ -243,6 +250,7 @@
"Enter URL (e.g. http://localhost:11434)": "مقدار URL را وارد کنید (مثال http://localhost:11434)",
"Enter Your Email": "ایمیل خود را وارد کنید",
"Enter Your Full Name": "نام کامل خود را وارد کنید",
"Enter your message": "",
"Enter Your Password": "رمز عبور خود را وارد کنید",
"Enter Your Role": "نقش خود را وارد کنید",
"Error": "خطا",
......@@ -266,6 +274,7 @@
"File": "",
"File Mode": "حالت فایل",
"File not found.": "فایل یافت نشد.",
"Files": "",
"Filter is now globally disabled": "",
"Filter is now globally enabled": "",
"Filters": "",
......@@ -278,14 +287,22 @@
"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": "تنظیمات عمومی",
"Generate Image": "",
"Generating search query": "در حال تولید پرسوجوی جستجو",
"Generation Info": "اطلاعات تولید",
"Get up and running with": "",
"Global": "",
"Good Response": "پاسخ خوب",
"Google PSE API Key": "گوگل PSE API کلید",
......@@ -298,6 +315,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": "تنظیمات تصویر",
......@@ -328,6 +346,7 @@
"Keyboard shortcuts": "میانبرهای صفحه کلید",
"Knowledge": "",
"Language": "زبان",
"large language models, locally.": "",
"Last Active": "آخرین فعال",
"Last Modified": "",
"Light": "روشن",
......@@ -438,6 +457,7 @@
"Pipelines Valves": "شیرالات خطوط لوله",
"Plain text (.txt)": "متن ساده (.txt)",
"Playground": "زمین بازی",
"Please carefully review the following warnings:": "",
"Positive attitude": "نظرات مثبت",
"Previous 30 days": "30 روز قبل",
"Previous 7 days": "7 روز قبل",
......@@ -475,6 +495,7 @@
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "",
"Save": "ذخیره",
"Save & Create": "ذخیره و ایجاد",
......@@ -558,6 +579,8 @@
"Success": "موفقیت",
"Successfully updated.": "با موفقیت به روز شد",
"Suggested": "پیشنهادی",
"Support": "",
"Support this plugin:": "",
"System": "سیستم",
"System Prompt": "پرامپت سیستم",
"Tags": "تگ\u200cها",
......@@ -570,6 +593,7 @@
"Text-to-Speech Engine": "موتور تبدیل متن به گفتار",
"Tfs Z": "Tfs Z",
"Thanks for your feedback!": "با تشکر از بازخورد شما!",
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "امتیاز باید یک مقدار بین 0.0 (0%) و 1.0 (100%) باشد.",
"Theme": "قالب",
"Thinking...": "",
......@@ -603,7 +627,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?": "در دسترسی به اولاما مشکل دارید؟",
......@@ -645,6 +675,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": "",
......@@ -671,6 +702,7 @@
"You're a helpful assistant.": "تو یک دستیار سودمند هستی.",
"You're now logged in.": "شما اکنون وارد شده\u200cاید.",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Youtube": "یوتیوب",
"Youtube Loader Settings": "تنظیمات لودر یوتیوب"
}
......@@ -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,6 +189,8 @@
"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": "",
......@@ -195,6 +198,8 @@
"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't Allow": "Älä salli",
"Don't have an account?": "Eikö sinulla ole tiliä?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"Don't like the style": "En pidä tyylistä",
"Done": "",
"Download": "Lataa",
......@@ -215,6 +220,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",
......@@ -236,6 +242,7 @@
"Enter Serply API Key": "",
"Enter Serpstack API Key": "Anna Serpstack API -avain",
"Enter stop sequence": "Syötä lopetussekvenssi",
"Enter system prompt": "",
"Enter Tavily API Key": "",
"Enter Tika Server URL": "",
"Enter Top K": "Syötä Top K",
......@@ -243,6 +250,7 @@
"Enter URL (e.g. http://localhost:11434)": "Syötä URL (esim. http://localhost:11434)",
"Enter Your Email": "Syötä sähköpostiosoitteesi",
"Enter Your Full Name": "Syötä koko nimesi",
"Enter your message": "",
"Enter Your Password": "Syötä salasanasi",
"Enter Your Role": "Syötä roolisi",
"Error": "Virhe",
......@@ -266,6 +274,7 @@
"File": "",
"File Mode": "Tiedostotila",
"File not found.": "Tiedostoa ei löytynyt.",
"Files": "",
"Filter is now globally disabled": "",
"Filter is now globally enabled": "",
"Filters": "",
......@@ -278,14 +287,22 @@
"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",
"Generate Image": "",
"Generating search query": "Hakukyselyn luominen",
"Generation Info": "Generointitiedot",
"Get up and running with": "",
"Global": "",
"Good Response": "Hyvä vastaus",
"Google PSE API Key": "Google PSE API -avain",
......@@ -298,6 +315,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",
......@@ -328,6 +346,7 @@
"Keyboard shortcuts": "Pikanäppäimet",
"Knowledge": "",
"Language": "Kieli",
"large language models, locally.": "",
"Last Active": "Viimeksi aktiivinen",
"Last Modified": "",
"Light": "Vaalea",
......@@ -438,6 +457,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ää",
......@@ -475,6 +495,7 @@
"Rosé Pine": "Rosee-mänty",
"Rosé Pine Dawn": "Aamuinen Rosee-mänty",
"RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "",
"Save": "Tallenna",
"Save & Create": "Tallenna ja luo",
......@@ -558,6 +579,8 @@
"Success": "Onnistui",
"Successfully updated.": "Päivitetty onnistuneesti.",
"Suggested": "Suositeltu",
"Support": "",
"Support this plugin:": "",
"System": "Järjestelmä",
"System Prompt": "Järjestelmäkehote",
"Tags": "Tagit",
......@@ -570,6 +593,7 @@
"Text-to-Speech Engine": "Puhemoottori",
"Tfs Z": "TFS Z",
"Thanks for your feedback!": "Kiitos palautteestasi!",
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Pisteytyksen tulee olla arvo välillä 0.0 (0%) ja 1.0 (100%).",
"Theme": "Teema",
"Thinking...": "",
......@@ -603,7 +627,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ä?",
......@@ -645,6 +675,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": "",
......@@ -671,6 +702,7 @@
"You're a helpful assistant.": "Olet avulias apulainen.",
"You're now logged in.": "Olet nyt kirjautunut sisään.",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Youtube": "Youtube",
"Youtube Loader Settings": "Youtube Loader-asetukset"
}
......@@ -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,6 +189,8 @@
"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",
......@@ -195,6 +198,8 @@
"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't Allow": "Ne pas autoriser",
"Don't have an account?": "Vous n'avez pas de compte ?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"Don't like the style": "N'apprécie pas le style",
"Done": "Terminé",
"Download": "Télécharger",
......@@ -215,6 +220,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",
......@@ -236,6 +242,7 @@
"Enter Serply API Key": "Entrez la clé API Serply",
"Enter Serpstack API Key": "Entrez la clé API Serpstack",
"Enter stop sequence": "Entrez la séquence d'arrêt",
"Enter system prompt": "",
"Enter Tavily API Key": "Entrez la clé API Tavily",
"Enter Tika Server URL": "",
"Enter Top K": "Entrez les Top K",
......@@ -243,6 +250,7 @@
"Enter URL (e.g. http://localhost:11434)": "Entrez l'URL (par ex. http://localhost:11434)",
"Enter Your Email": "Entrez votre adresse e-mail",
"Enter Your Full Name": "Entrez votre nom complet",
"Enter your message": "",
"Enter Your Password": "Entrez votre mot de passe",
"Enter Your Role": "Entrez votre rôle",
"Error": "Erreur",
......@@ -266,6 +274,7 @@
"File": "Fichier",
"File Mode": "Mode fichier",
"File not found.": "Fichier introuvable.",
"Files": "",
"Filter is now globally disabled": "Le filtre est maintenant désactivé globalement",
"Filter is now globally enabled": "Le filtre est désormais activé globalement",
"Filters": "Filtres",
......@@ -278,14 +287,22 @@
"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",
"Generate Image": "Générer une image",
"Generating search query": "Génération d'une requête de recherche",
"Generation Info": "Informations sur la génération",
"Get up and running with": "",
"Global": "Mondial",
"Good Response": "Bonne réponse",
"Google PSE API Key": "Clé API Google PSE",
......@@ -298,6 +315,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",
......@@ -328,6 +346,7 @@
"Keyboard shortcuts": "Raccourcis clavier",
"Knowledge": "Connaissance",
"Language": "Langue",
"large language models, locally.": "",
"Last Active": "Dernière activité",
"Last Modified": "Dernière modification",
"Light": "Lumineux",
......@@ -438,6 +457,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",
......@@ -475,6 +495,7 @@
"Rosé Pine": "Pin rosé",
"Rosé Pine Dawn": "Aube de Pin Rosé",
"RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "Courir",
"Save": "Enregistrer",
"Save & Create": "Enregistrer & Créer",
......@@ -559,6 +580,8 @@
"Success": "Réussite",
"Successfully updated.": "Mise à jour réussie.",
"Suggested": "Sugéré",
"Support": "",
"Support this plugin:": "",
"System": "Système",
"System Prompt": "Prompt du système",
"Tags": "Balises",
......@@ -571,6 +594,7 @@
"Text-to-Speech Engine": "Moteur de synthèse vocale",
"Tfs Z": "Tfs Z",
"Thanks for your feedback!": "Merci pour vos commentaires !",
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Le score doit être une valeur comprise entre 0,0 (0\u00a0%) et 1,0 (100\u00a0%).",
"Theme": "Thème",
"Thinking...": "En train de réfléchir...",
......@@ -604,7 +628,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 ?",
......@@ -646,6 +676,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",
......@@ -672,6 +703,7 @@
"You're a helpful assistant.": "Vous êtes un assistant serviable.",
"You're now logged in.": "Vous êtes désormais connecté.",
"Your account status is currently pending activation.": "Votre statut de compte est actuellement en attente d'activation.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Youtube": "YouTube",
"Youtube Loader Settings": "Paramètres de l'outil de téléchargement YouTube"
}
......@@ -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,6 +189,8 @@
"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",
......@@ -195,6 +198,8 @@
"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't Allow": "Ne pas autoriser",
"Don't have an account?": "Vous n'avez pas de compte ?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"Don't like the style": "N'apprécie pas le style",
"Done": "Terminé",
"Download": "Télécharger",
......@@ -215,6 +220,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",
......@@ -236,6 +242,7 @@
"Enter Serply API Key": "Entrez la clé API Serply",
"Enter Serpstack API Key": "Entrez la clé API Serpstack",
"Enter stop sequence": "Entrez la séquence d'arrêt",
"Enter system prompt": "",
"Enter Tavily API Key": "Entrez la clé API Tavily",
"Enter Tika Server URL": "",
"Enter Top K": "Entrez les Top K",
......@@ -243,6 +250,7 @@
"Enter URL (e.g. http://localhost:11434)": "Entrez l'URL (par ex. http://localhost:11434)",
"Enter Your Email": "Entrez votre adresse e-mail",
"Enter Your Full Name": "Entrez votre nom complet",
"Enter your message": "",
"Enter Your Password": "Entrez votre mot de passe",
"Enter Your Role": "Entrez votre rôle",
"Error": "Erreur",
......@@ -266,6 +274,7 @@
"File": "Fichier",
"File Mode": "Mode fichier",
"File not found.": "Fichier introuvable.",
"Files": "",
"Filter is now globally disabled": "Le filtre est maintenant désactivé globalement",
"Filter is now globally enabled": "Le filtre est désormais activé globalement",
"Filters": "Filtres",
......@@ -278,14 +287,22 @@
"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",
"Generate Image": "Générer une image",
"Generating search query": "Génération d'une requête de recherche",
"Generation Info": "Informations sur la génération",
"Get up and running with": "",
"Global": "Mondial",
"Good Response": "Bonne réponse",
"Google PSE API Key": "Clé API Google PSE",
......@@ -298,6 +315,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",
......@@ -328,6 +346,7 @@
"Keyboard shortcuts": "Raccourcis clavier",
"Knowledge": "Connaissance",
"Language": "Langue",
"large language models, locally.": "",
"Last Active": "Dernière activité",
"Last Modified": "Dernière modification",
"Light": "Lumineux",
......@@ -438,6 +457,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",
......@@ -475,6 +495,7 @@
"Rosé Pine": "Pin rosé",
"Rosé Pine Dawn": "Aube de Pin Rosé",
"RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "Courir",
"Save": "Enregistrer",
"Save & Create": "Enregistrer & Créer",
......@@ -559,6 +580,8 @@
"Success": "Réussite",
"Successfully updated.": "Mise à jour réussie.",
"Suggested": "Sugéré",
"Support": "",
"Support this plugin:": "",
"System": "Système",
"System Prompt": "Prompt du système",
"Tags": "Balises",
......@@ -571,6 +594,7 @@
"Text-to-Speech Engine": "Moteur de synthèse vocale",
"Tfs Z": "Tfs Z",
"Thanks for your feedback!": "Merci pour vos commentaires !",
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Le score doit être une valeur comprise entre 0,0 (0\u00a0%) et 1,0 (100\u00a0%).",
"Theme": "Thème",
"Thinking...": "En train de réfléchir...",
......@@ -604,7 +628,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 ?",
......@@ -646,6 +676,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",
......@@ -672,6 +703,7 @@
"You're a helpful assistant.": "Vous êtes un assistant serviable.",
"You're now logged in.": "Vous êtes désormais connecté.",
"Your account status is currently pending activation.": "Votre statut de compte est actuellement en attente d'activation.",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Youtube": "YouTube",
"Youtube Loader Settings": "Paramètres de l'outil de téléchargement YouTube"
}
......@@ -177,6 +177,7 @@
"Deleted {{name}}": "נמחק {{name}}",
"Description": "תיאור",
"Didn't fully follow instructions": "לא עקב אחרי ההוראות באופן מלא",
"Disabled": "",
"Discover a function": "",
"Discover a model": "גלה מודל",
"Discover a prompt": "גלה פקודה",
......@@ -188,6 +189,8 @@
"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": "",
......@@ -195,6 +198,8 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "לא מבצע חיבורים חיצוניים, והנתונים שלך נשמרים באופן מאובטח בשרת המקומי שלך.",
"Don't Allow": "אל תאפשר",
"Don't have an account?": "אין לך חשבון?",
"don't install random functions from sources you don't trust.": "",
"don't install random tools from sources you don't trust.": "",
"Don't like the style": "לא אוהב את הסגנון",
"Done": "",
"Download": "הורד",
......@@ -215,6 +220,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}} כאן",
......@@ -236,6 +242,7 @@
"Enter Serply API Key": "",
"Enter Serpstack API Key": "הזן מפתח API של Serpstack",
"Enter stop sequence": "הזן רצף עצירה",
"Enter system prompt": "",
"Enter Tavily API Key": "",
"Enter Tika Server URL": "",
"Enter Top K": "הזן Top K",
......@@ -243,6 +250,7 @@
"Enter URL (e.g. http://localhost:11434)": "הזן כתובת URL (למשל http://localhost:11434)",
"Enter Your Email": "הזן את דוא\"ל שלך",
"Enter Your Full Name": "הזן את שמך המלא",
"Enter your message": "",
"Enter Your Password": "הזן את הסיסמה שלך",
"Enter Your Role": "הזן את התפקיד שלך",
"Error": "שגיאה",
......@@ -266,6 +274,7 @@
"File": "",
"File Mode": "מצב קובץ",
"File not found.": "הקובץ לא נמצא.",
"Files": "",
"Filter is now globally disabled": "",
"Filter is now globally enabled": "",
"Filters": "",
......@@ -278,14 +287,22 @@
"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": "הגדרות כלליות",
"Generate Image": "",
"Generating search query": "יצירת שאילתת חיפוש",
"Generation Info": "מידע על היצירה",
"Get up and running with": "",
"Global": "",
"Good Response": "תגובה טובה",
"Google PSE API Key": "מפתח API של Google PSE",
......@@ -298,6 +315,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": "הגדרות תמונה",
......@@ -328,6 +346,7 @@
"Keyboard shortcuts": "קיצורי מקלדת",
"Knowledge": "",
"Language": "שפה",
"large language models, locally.": "",
"Last Active": "פעיל לאחרונה",
"Last Modified": "",
"Light": "בהיר",
......@@ -438,6 +457,7 @@
"Pipelines Valves": "צינורות שסתומים",
"Plain text (.txt)": "טקסט פשוט (.txt)",
"Playground": "אזור משחקים",
"Please carefully review the following warnings:": "",
"Positive attitude": "גישה חיובית",
"Previous 30 days": "30 הימים הקודמים",
"Previous 7 days": "7 הימים הקודמים",
......@@ -475,6 +495,7 @@
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "",
"Save": "שמור",
"Save & Create": "שמור וצור",
......@@ -559,6 +580,8 @@
"Success": "הצלחה",
"Successfully updated.": "עדכון הצלחה.",
"Suggested": "מומלץ",
"Support": "",
"Support this plugin:": "",
"System": "מערכת",
"System Prompt": "תגובת מערכת",
"Tags": "תגיות",
......@@ -571,6 +594,7 @@
"Text-to-Speech Engine": "מנוע טקסט לדיבור",
"Tfs Z": "Tfs Z",
"Thanks for your feedback!": "תודה על המשוב שלך!",
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "ציון צריך להיות ערך בין 0.0 (0%) ל-1.0 (100%)",
"Theme": "נושא",
"Thinking...": "",
......@@ -604,7 +628,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?",
......@@ -646,6 +676,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": "",
......@@ -672,6 +703,7 @@
"You're a helpful assistant.": "אתה עוזר מועיל.",
"You're now logged in.": "כעת אתה מחובר.",
"Your account status is currently pending activation.": "",
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
"Youtube": "Youtube",
"Youtube Loader Settings": "הגדרות Youtube Loader"
}
This diff is collapsed.
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