"vscode:/vscode.git/clone" did not exist on "906e4105d7883384d5982eea160c4d7c1eb9327a"
Unverified Commit 8a11985f authored by Timothy Jaeryang Baek's avatar Timothy Jaeryang Baek Committed by GitHub
Browse files

Merge pull request #3887 from OriginalSimon/dev

Added i18n keys and update of Ukrainian translation
parents 40075f69 731b3654
...@@ -235,7 +235,7 @@ ...@@ -235,7 +235,7 @@
</a> </a>
<div class="flex flex-row gap-0.5 self-center"> <div class="flex flex-row gap-0.5 self-center">
{#if func?.meta?.manifest?.funding_url ?? false} {#if func?.meta?.manifest?.funding_url ?? false}
<Tooltip content="Support"> <Tooltip content={$i18n.t('Support')}>
<button <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" 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" type="button"
...@@ -249,7 +249,7 @@ ...@@ -249,7 +249,7 @@
</Tooltip> </Tooltip>
{/if} {/if}
<Tooltip content="Valves"> <Tooltip content={$i18n.t('Valves')}>
<button <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" 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" type="button"
...@@ -314,7 +314,7 @@ ...@@ -314,7 +314,7 @@
</FunctionMenu> </FunctionMenu>
<div class=" self-center mx-1"> <div class=" self-center mx-1">
<Tooltip content={func.is_active ? 'Enabled' : 'Disabled'}> <Tooltip content={func.is_active ? $i18n.t('Enabled') : $i18n.t('Disabled')}>
<Switch <Switch
bind:state={func.is_active} bind:state={func.is_active}
on:change={async (e) => { on:change={async (e) => {
...@@ -494,15 +494,15 @@ ...@@ -494,15 +494,15 @@
<div>Please carefully review the following warnings:</div> <div>Please carefully review the following warnings:</div>
<ul class=" mt-1 list-disc pl-4 text-xs"> <ul class=" mt-1 list-disc pl-4 text-xs">
<li>Functions allow arbitrary code execution.</li> <li>{$i18n.t('Functions allow arbitrary code execution.')}</li>
<li>Do not install functions from sources you do not fully trust.</li> <li>{$i18n.t('Do not install functions from sources you do not fully trust.')}</li>
</ul> </ul>
</div> </div>
<div class="my-3"> <div class="my-3">
I acknowledge that I have read and I understand the implications of my action. I am aware of {$i18n.t(
the risks associated with executing arbitrary code and I have verified the trustworthiness of '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.'
the source. )}
</div> </div>
</div> </div>
</ConfirmDialog> </ConfirmDialog>
...@@ -309,7 +309,7 @@ class Pipe: ...@@ -309,7 +309,7 @@ class Pipe:
<input <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" 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" type="text"
placeholder="Function Name (e.g. My Filter)" placeholder={$i18n.t('Function Name (e.g. My Filter)')}
bind:value={name} bind:value={name}
required required
/> />
...@@ -317,7 +317,7 @@ class Pipe: ...@@ -317,7 +317,7 @@ class Pipe:
<input <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" 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" type="text"
placeholder="Function ID (e.g. my_filter)" placeholder={$i18n.t('Function ID (e.g. my_filter)')}
bind:value={id} bind:value={id}
required required
disabled={edit} disabled={edit}
...@@ -326,7 +326,9 @@ class Pipe: ...@@ -326,7 +326,9 @@ class Pipe:
<input <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" 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" type="text"
placeholder="Function Description (e.g. A filter to remove profanity from text)" placeholder={$i18n.t(
'Function Description (e.g. A filter to remove profanity from text)'
)}
bind:value={meta.description} bind:value={meta.description}
required required
/> />
...@@ -348,10 +350,10 @@ class Pipe: ...@@ -348,10 +350,10 @@ class Pipe:
<div class="pb-3 flex justify-between"> <div class="pb-3 flex justify-between">
<div class="flex-1 pr-3"> <div class="flex-1 pr-3">
<div class="text-xs text-gray-500 line-clamp-2"> <div class="text-xs text-gray-500 line-clamp-2">
<span class=" font-semibold dark:text-gray-200">Warning:</span> Functions allow <span class=" font-semibold dark:text-gray-200">{$i18n.t('Warning:')}</span>
arbitrary code execution <br />— {$i18n.t('Functions allow arbitrary code execution')} <br />—
<span class=" font-medium dark:text-gray-400" <span class=" font-medium dark:text-gray-400"
>don't install random functions from sources you don't trust.</span >{$i18n.t(`don't install random functions from sources you don't trust.`)}</span
> >
</div> </div>
</div> </div>
...@@ -376,18 +378,18 @@ class Pipe: ...@@ -376,18 +378,18 @@ class Pipe:
> >
<div class="text-sm text-gray-500"> <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 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"> <ul class=" mt-1 list-disc pl-4 text-xs">
<li>Functions allow arbitrary code execution.</li> <li>{$i18n.t('Functions allow arbitrary code execution.')}</li>
<li>Do not install functions from sources you do not fully trust.</li> <li>{$i18n.t('Do not install functions from sources you do not fully trust.')}</li>
</ul> </ul>
</div> </div>
<div class="my-3"> <div class="my-3">
I acknowledge that I have read and I understand the implications of my action. I am aware of {$i18n.t(
the risks associated with executing arbitrary code and I have verified the trustworthiness of '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.'
the source. )}
</div> </div>
</div> </div>
</ConfirmDialog> </ConfirmDialog>
...@@ -221,7 +221,7 @@ ...@@ -221,7 +221,7 @@
</Tooltip> </Tooltip>
{/if} {/if}
<Tooltip content="Valves"> <Tooltip content={$i18n.t('Valves')}>
<button <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" 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" type="button"
...@@ -436,18 +436,20 @@ ...@@ -436,18 +436,20 @@
> >
<div class="text-sm text-gray-500"> <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 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"> <ul class=" mt-1 list-disc pl-4 text-xs">
<li>Tools have a function calling system that allows arbitrary code execution.</li> <li>
<li>Do not install tools from sources you do not fully trust.</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> </ul>
</div> </div>
<div class="my-3"> <div class="my-3">
I acknowledge that I have read and I understand the implications of my action. I am aware of {$i18n.t(
the risks associated with executing arbitrary code and I have verified the trustworthiness of '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.'
the source. )}
</div> </div>
</div> </div>
</ConfirmDialog> </ConfirmDialog>
...@@ -197,7 +197,7 @@ class Tools: ...@@ -197,7 +197,7 @@ class Tools:
<input <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" 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" type="text"
placeholder="Toolkit Name (e.g. My ToolKit)" placeholder={$i18n.t('Toolkit Name (e.g. My ToolKit)')}
bind:value={name} bind:value={name}
required required
/> />
...@@ -205,7 +205,7 @@ class Tools: ...@@ -205,7 +205,7 @@ class Tools:
<input <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" 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" type="text"
placeholder="Toolkit ID (e.g. my_toolkit)" placeholder={$i18n.t('Toolkit ID (e.g. my_toolkit)')}
bind:value={id} bind:value={id}
required required
disabled={edit} disabled={edit}
...@@ -214,7 +214,9 @@ class Tools: ...@@ -214,7 +214,9 @@ class Tools:
<input <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" 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" 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} bind:value={meta.description}
required required
/> />
...@@ -236,10 +238,10 @@ class Tools: ...@@ -236,10 +238,10 @@ class Tools:
<div class="pb-3 flex justify-between"> <div class="pb-3 flex justify-between">
<div class="flex-1 pr-3"> <div class="flex-1 pr-3">
<div class="text-xs text-gray-500 line-clamp-2"> <div class="text-xs text-gray-500 line-clamp-2">
<span class=" font-semibold dark:text-gray-200">Warning:</span> Tools are a function <span class=" font-semibold dark:text-gray-200">{$i18n.t('Warning:')}</span>
calling system with arbitrary code execution <br />— {$i18n.t('Tools are a function calling system with arbitrary code execution')} <br />—
<span class=" font-medium dark:text-gray-400" <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>
</div> </div>
...@@ -264,18 +266,20 @@ class Tools: ...@@ -264,18 +266,20 @@ class Tools:
> >
<div class="text-sm text-gray-500"> <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 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"> <ul class=" mt-1 list-disc pl-4 text-xs">
<li>Tools have a function calling system that allows arbitrary code execution.</li> <li>
<li>Do not install tools from sources you do not fully trust.</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> </ul>
</div> </div>
<div class="my-3"> <div class="my-3">
I acknowledge that I have read and I understand the implications of my action. I am aware of {$i18n.t(
the risks associated with executing arbitrary code and I have verified the trustworthiness of '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.'
the source. )}
</div> </div>
</div> </div>
</ConfirmDialog> </ConfirmDialog>
...@@ -44,23 +44,25 @@ ...@@ -44,23 +44,25 @@
}} }}
> >
<div class="px-1 text-sm"> <div class="px-1 text-sm">
<div class=" my-2"> <div class="my-2">
The developers behind this plugin are passionate volunteers from the community. If you {$i18n.t(
find this plugin helpful, please consider contributing to its development. '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>
<div class=" my-2"> <div class="my-2">
Your entire contribution will go directly to the plugin developer; Open WebUI does not {$i18n.t(
take any percentage. However, the chosen funding platform might have its own fees. '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> </div>
<hr class=" dark:border-gray-800 my-3" /> <hr class="dark:border-gray-800 my-3" />
<div class="my-2"> <div class="my-2">
Support this plugin: <a {$i18n.t('Support this plugin:')}
<a
href={manifest.funding_url} href={manifest.funding_url}
target="_blank" 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>
</div> </div>
......
...@@ -177,6 +177,7 @@ ...@@ -177,6 +177,7 @@
"Deleted {{name}}": "حذف {{name}}", "Deleted {{name}}": "حذف {{name}}",
"Description": "وصف", "Description": "وصف",
"Didn't fully follow instructions": "لم أتبع التعليمات بشكل كامل", "Didn't fully follow instructions": "لم أتبع التعليمات بشكل كامل",
"Disabled": "",
"Discover a function": "", "Discover a function": "",
"Discover a model": "اكتشف نموذجا", "Discover a model": "اكتشف نموذجا",
"Discover a prompt": "اكتشاف موجه", "Discover a prompt": "اكتشاف موجه",
...@@ -188,6 +189,8 @@ ...@@ -188,6 +189,8 @@
"Dismissible": "", "Dismissible": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
"Display the username instead of You in the Chat": "اعرض اسم المستخدم بدلاً منك في الدردشة", "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": "المستند",
"Document Settings": "أعدادات المستند", "Document Settings": "أعدادات المستند",
"Documentation": "", "Documentation": "",
...@@ -195,6 +198,8 @@ ...@@ -195,6 +198,8 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "لا يجري أي اتصالات خارجية، وتظل بياناتك آمنة على الخادم المستضاف محليًا.", "does not make any external connections, and your data stays securely on your locally hosted server.": "لا يجري أي اتصالات خارجية، وتظل بياناتك آمنة على الخادم المستضاف محليًا.",
"Don't Allow": "لا تسمح بذلك", "Don't Allow": "لا تسمح بذلك",
"Don't have an account?": "ليس لديك حساب؟", "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": "لا أحب النمط", "Don't like the style": "لا أحب النمط",
"Done": "", "Done": "",
"Download": "تحميل", "Download": "تحميل",
...@@ -215,6 +220,7 @@ ...@@ -215,6 +220,7 @@
"Enable Community Sharing": "تمكين مشاركة المجتمع", "Enable Community Sharing": "تمكين مشاركة المجتمع",
"Enable New Sign Ups": "تفعيل عمليات التسجيل الجديدة", "Enable New Sign Ups": "تفعيل عمليات التسجيل الجديدة",
"Enable Web Search": "تمكين بحث الويب", "Enable Web Search": "تمكين بحث الويب",
"Enabled": "",
"Engine": "", "Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.", "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}} هنا", "Enter {{role}} message here": "أدخل رسالة {{role}} هنا",
...@@ -280,16 +286,22 @@ ...@@ -280,16 +286,22 @@
"Frequency Penalty": "عقوبة التردد", "Frequency Penalty": "عقوبة التردد",
"Function created successfully": "", "Function created successfully": "",
"Function deleted 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 disabled": "",
"Function is now globally enabled": "", "Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "", "Function updated successfully": "",
"Functions": "", "Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "", "Functions imported successfully": "",
"General": "عام", "General": "عام",
"General Settings": "الاعدادات العامة", "General Settings": "الاعدادات العامة",
"Generate Image": "", "Generate Image": "",
"Generating search query": "إنشاء استعلام بحث", "Generating search query": "إنشاء استعلام بحث",
"Generation Info": "معلومات الجيل", "Generation Info": "معلومات الجيل",
"Get up and running with": "",
"Global": "", "Global": "",
"Good Response": "استجابة جيدة", "Good Response": "استجابة جيدة",
"Google PSE API Key": "مفتاح واجهة برمجة تطبيقات PSE من Google", "Google PSE API Key": "مفتاح واجهة برمجة تطبيقات PSE من Google",
...@@ -302,6 +314,7 @@ ...@@ -302,6 +314,7 @@
"Hide Model": "", "Hide Model": "",
"How can I help you today?": "كيف استطيع مساعدتك اليوم؟", "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 (Experimental)": "توليد الصور (تجريبي)",
"Image Generation Engine": "محرك توليد الصور", "Image Generation Engine": "محرك توليد الصور",
"Image Settings": "إعدادات الصورة", "Image Settings": "إعدادات الصورة",
...@@ -332,6 +345,7 @@ ...@@ -332,6 +345,7 @@
"Keyboard shortcuts": "اختصارات لوحة المفاتيح", "Keyboard shortcuts": "اختصارات لوحة المفاتيح",
"Knowledge": "", "Knowledge": "",
"Language": "اللغة", "Language": "اللغة",
"large language models, locally.": "",
"Last Active": "آخر نشاط", "Last Active": "آخر نشاط",
"Last Modified": "", "Last Modified": "",
"Light": "فاتح", "Light": "فاتح",
...@@ -442,6 +456,7 @@ ...@@ -442,6 +456,7 @@
"Pipelines Valves": "صمامات خطوط الأنابيب", "Pipelines Valves": "صمامات خطوط الأنابيب",
"Plain text (.txt)": "نص عادي (.txt)", "Plain text (.txt)": "نص عادي (.txt)",
"Playground": "مكان التجربة", "Playground": "مكان التجربة",
"Please carefully review the following warnings:": "",
"Positive attitude": "موقف ايجابي", "Positive attitude": "موقف ايجابي",
"Previous 30 days": "أخر 30 يوم", "Previous 30 days": "أخر 30 يوم",
"Previous 7 days": "أخر 7 أيام", "Previous 7 days": "أخر 7 أيام",
...@@ -479,6 +494,7 @@ ...@@ -479,6 +494,7 @@
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "من اليمين إلى اليسار", "RTL": "من اليمين إلى اليسار",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "", "Running": "",
"Save": "حفظ", "Save": "حفظ",
"Save & Create": "حفظ وإنشاء", "Save & Create": "حفظ وإنشاء",
...@@ -566,6 +582,8 @@ ...@@ -566,6 +582,8 @@
"Success": "نجاح", "Success": "نجاح",
"Successfully updated.": "تم التحديث بنجاح", "Successfully updated.": "تم التحديث بنجاح",
"Suggested": "مقترحات", "Suggested": "مقترحات",
"Support": "",
"Support this plugin:": "",
"System": "النظام", "System": "النظام",
"System Prompt": "محادثة النظام", "System Prompt": "محادثة النظام",
"Tags": "الوسوم", "Tags": "الوسوم",
...@@ -578,6 +596,7 @@ ...@@ -578,6 +596,7 @@
"Text-to-Speech Engine": "محرك تحويل النص إلى كلام", "Text-to-Speech Engine": "محرك تحويل النص إلى كلام",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "شكرا لملاحظاتك!", "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%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "يجب أن تكون النتيجة قيمة تتراوح بين 0.0 (0%) و1.0 (100%).",
"Theme": "الثيم", "Theme": "الثيم",
"Thinking...": "", "Thinking...": "",
...@@ -611,7 +630,13 @@ ...@@ -611,7 +630,13 @@
"Tool deleted successfully": "", "Tool deleted successfully": "",
"Tool imported successfully": "", "Tool imported successfully": "",
"Tool updated 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": "",
"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 K": "Top K",
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "هل تواجه مشكلة في الوصول", "Trouble accessing Ollama?": "هل تواجه مشكلة في الوصول",
...@@ -653,6 +678,7 @@ ...@@ -653,6 +678,7 @@
"Version": "إصدار", "Version": "إصدار",
"Voice": "", "Voice": "",
"Warning": "تحذير", "Warning": "تحذير",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "تحذير: إذا قمت بتحديث أو تغيير نموذج التضمين الخاص بك، فستحتاج إلى إعادة استيراد كافة المستندات.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "تحذير: إذا قمت بتحديث أو تغيير نموذج التضمين الخاص بك، فستحتاج إلى إعادة استيراد كافة المستندات.",
"Web": "Web", "Web": "Web",
"Web API": "", "Web API": "",
...@@ -679,6 +705,7 @@ ...@@ -679,6 +705,7 @@
"You're a helpful assistant.": "مساعدك المفيد هنا", "You're a helpful assistant.": "مساعدك المفيد هنا",
"You're now logged in.": "لقد قمت الآن بتسجيل الدخول.", "You're now logged in.": "لقد قمت الآن بتسجيل الدخول.",
"Your account status is currently pending activation.": "", "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": "Youtube",
"Youtube Loader Settings": "Youtube تحميل اعدادات" "Youtube Loader Settings": "Youtube تحميل اعدادات"
} }
...@@ -177,6 +177,7 @@ ...@@ -177,6 +177,7 @@
"Deleted {{name}}": "Изтрито {{име}}", "Deleted {{name}}": "Изтрито {{име}}",
"Description": "Описание", "Description": "Описание",
"Didn't fully follow instructions": "Не следва инструкциите", "Didn't fully follow instructions": "Не следва инструкциите",
"Disabled": "",
"Discover a function": "", "Discover a function": "",
"Discover a model": "Открийте модел", "Discover a model": "Открийте модел",
"Discover a prompt": "Откриване на промпт", "Discover a prompt": "Откриване на промпт",
...@@ -188,6 +189,8 @@ ...@@ -188,6 +189,8 @@
"Dismissible": "", "Dismissible": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
"Display the username instead of You in the Chat": "Показване на потребителското име вместо Вие в чата", "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": "Документ",
"Document Settings": "Документ Настройки", "Document Settings": "Документ Настройки",
"Documentation": "", "Documentation": "",
...@@ -195,6 +198,8 @@ ...@@ -195,6 +198,8 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "няма външни връзки, и вашите данни остават сигурни на локално назначен сървър.", "does not make any external connections, and your data stays securely on your locally hosted server.": "няма външни връзки, и вашите данни остават сигурни на локално назначен сървър.",
"Don't Allow": "Не Позволявай", "Don't Allow": "Не Позволявай",
"Don't have an account?": "Нямате акаунт?", "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": "Не харесваш стила?", "Don't like the style": "Не харесваш стила?",
"Done": "", "Done": "",
"Download": "Изтегляне отменено", "Download": "Изтегляне отменено",
...@@ -215,6 +220,7 @@ ...@@ -215,6 +220,7 @@
"Enable Community Sharing": "Разрешаване на споделяне в общност", "Enable Community Sharing": "Разрешаване на споделяне в общност",
"Enable New Sign Ups": "Вклюване на Нови Потребители", "Enable New Sign Ups": "Вклюване на Нови Потребители",
"Enable Web Search": "Разрешаване на търсене в уеб", "Enable Web Search": "Разрешаване на търсене в уеб",
"Enabled": "",
"Engine": "", "Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверете се, че вашият CSV файл включва 4 колони в следния ред: Име, Имейл, Парола, Роля.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверете се, че вашият CSV файл включва 4 колони в следния ред: Име, Имейл, Парола, Роля.",
"Enter {{role}} message here": "Въведете съобщение за {{role}} тук", "Enter {{role}} message here": "Въведете съобщение за {{role}} тук",
...@@ -280,16 +286,22 @@ ...@@ -280,16 +286,22 @@
"Frequency Penalty": "Наказание за честота", "Frequency Penalty": "Наказание за честота",
"Function created successfully": "", "Function created successfully": "",
"Function deleted 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 disabled": "",
"Function is now globally enabled": "", "Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "", "Function updated successfully": "",
"Functions": "", "Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "", "Functions imported successfully": "",
"General": "Основни", "General": "Основни",
"General Settings": "Основни Настройки", "General Settings": "Основни Настройки",
"Generate Image": "", "Generate Image": "",
"Generating search query": "Генериране на заявка за търсене", "Generating search query": "Генериране на заявка за търсене",
"Generation Info": "Информация за Генерация", "Generation Info": "Информация за Генерация",
"Get up and running with": "",
"Global": "", "Global": "",
"Good Response": "Добра отговор", "Good Response": "Добра отговор",
"Google PSE API Key": "Google PSE API ключ", "Google PSE API Key": "Google PSE API ключ",
...@@ -302,6 +314,7 @@ ...@@ -302,6 +314,7 @@
"Hide Model": "", "Hide Model": "",
"How can I help you today?": "Как мога да ви помогна днес?", "How can I help you today?": "Как мога да ви помогна днес?",
"Hybrid Search": "Hybrid Search", "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 (Experimental)": "Генерация на изображения (Експериментално)",
"Image Generation Engine": "Двигател за генериране на изображения", "Image Generation Engine": "Двигател за генериране на изображения",
"Image Settings": "Настройки на изображения", "Image Settings": "Настройки на изображения",
...@@ -332,6 +345,7 @@ ...@@ -332,6 +345,7 @@
"Keyboard shortcuts": "Клавиши за бърз достъп", "Keyboard shortcuts": "Клавиши за бърз достъп",
"Knowledge": "", "Knowledge": "",
"Language": "Език", "Language": "Език",
"large language models, locally.": "",
"Last Active": "Последни активни", "Last Active": "Последни активни",
"Last Modified": "", "Last Modified": "",
"Light": "Светъл", "Light": "Светъл",
...@@ -442,6 +456,7 @@ ...@@ -442,6 +456,7 @@
"Pipelines Valves": "Тръбопроводи Вентили", "Pipelines Valves": "Тръбопроводи Вентили",
"Plain text (.txt)": "Plain text (.txt)", "Plain text (.txt)": "Plain text (.txt)",
"Playground": "Плейграунд", "Playground": "Плейграунд",
"Please carefully review the following warnings:": "",
"Positive attitude": "Позитивна ативност", "Positive attitude": "Позитивна ативност",
"Previous 30 days": "Предыдущите 30 дни", "Previous 30 days": "Предыдущите 30 дни",
"Previous 7 days": "Предыдущите 7 дни", "Previous 7 days": "Предыдущите 7 дни",
...@@ -479,6 +494,7 @@ ...@@ -479,6 +494,7 @@
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "RTL", "RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "", "Running": "",
"Save": "Запис", "Save": "Запис",
"Save & Create": "Запис & Създаване", "Save & Create": "Запис & Създаване",
...@@ -562,6 +578,8 @@ ...@@ -562,6 +578,8 @@
"Success": "Успех", "Success": "Успех",
"Successfully updated.": "Успешно обновено.", "Successfully updated.": "Успешно обновено.",
"Suggested": "Препоръчано", "Suggested": "Препоръчано",
"Support": "",
"Support this plugin:": "",
"System": "Система", "System": "Система",
"System Prompt": "Системен Промпт", "System Prompt": "Системен Промпт",
"Tags": "Тагове", "Tags": "Тагове",
...@@ -574,6 +592,7 @@ ...@@ -574,6 +592,7 @@
"Text-to-Speech Engine": "Text-to-Speech Engine", "Text-to-Speech Engine": "Text-to-Speech Engine",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "Благодарим ви за вашия отзив!", "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%).", "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": "Тема", "Theme": "Тема",
"Thinking...": "", "Thinking...": "",
...@@ -607,7 +626,13 @@ ...@@ -607,7 +626,13 @@
"Tool deleted successfully": "", "Tool deleted successfully": "",
"Tool imported successfully": "", "Tool imported successfully": "",
"Tool updated 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": "",
"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 K": "Top K",
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Проблеми с достъпът до Ollama?", "Trouble accessing Ollama?": "Проблеми с достъпът до Ollama?",
...@@ -649,6 +674,7 @@ ...@@ -649,6 +674,7 @@
"Version": "Версия", "Version": "Версия",
"Voice": "", "Voice": "",
"Warning": "Предупреждение", "Warning": "Предупреждение",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Предупреждение: Ако актуализирате или промените вашия модел за вграждане, трябва да повторите импортирането на всички документи.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Предупреждение: Ако актуализирате или промените вашия модел за вграждане, трябва да повторите импортирането на всички документи.",
"Web": "Уеб", "Web": "Уеб",
"Web API": "", "Web API": "",
...@@ -675,6 +701,7 @@ ...@@ -675,6 +701,7 @@
"You're a helpful assistant.": "Вие сте полезен асистент.", "You're a helpful assistant.": "Вие сте полезен асистент.",
"You're now logged in.": "Сега, вие влязохте в системата.", "You're now logged in.": "Сега, вие влязохте в системата.",
"Your account status is currently pending activation.": "", "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": "Youtube",
"Youtube Loader Settings": "Youtube Loader Settings" "Youtube Loader Settings": "Youtube Loader Settings"
} }
...@@ -177,6 +177,7 @@ ...@@ -177,6 +177,7 @@
"Deleted {{name}}": "{{name}} মোছা হয়েছে", "Deleted {{name}}": "{{name}} মোছা হয়েছে",
"Description": "বিবরণ", "Description": "বিবরণ",
"Didn't fully follow instructions": "ইনস্ট্রাকশন সম্পূর্ণ অনুসরণ করা হয়নি", "Didn't fully follow instructions": "ইনস্ট্রাকশন সম্পূর্ণ অনুসরণ করা হয়নি",
"Disabled": "",
"Discover a function": "", "Discover a function": "",
"Discover a model": "একটি মডেল আবিষ্কার করুন", "Discover a model": "একটি মডেল আবিষ্কার করুন",
"Discover a prompt": "একটি প্রম্পট খুঁজে বের করুন", "Discover a prompt": "একটি প্রম্পট খুঁজে বের করুন",
...@@ -188,6 +189,8 @@ ...@@ -188,6 +189,8 @@
"Dismissible": "", "Dismissible": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
"Display the username instead of You in the Chat": "চ্যাটে 'আপনি'-র পরবর্তে ইউজারনেম দেখান", "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": "ডকুমেন্ট",
"Document Settings": "ডকুমেন্ট সেটিংসমূহ", "Document Settings": "ডকুমেন্ট সেটিংসমূহ",
"Documentation": "", "Documentation": "",
...@@ -195,6 +198,8 @@ ...@@ -195,6 +198,8 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "কোন এক্সটার্নাল কানেকশন তৈরি করে না, এবং আপনার ডেটা আর লোকালি হোস্টেড সার্ভারেই নিরাপদে থাকে।", "does not make any external connections, and your data stays securely on your locally hosted server.": "কোন এক্সটার্নাল কানেকশন তৈরি করে না, এবং আপনার ডেটা আর লোকালি হোস্টেড সার্ভারেই নিরাপদে থাকে।",
"Don't Allow": "অনুমোদন দেবেন না", "Don't Allow": "অনুমোদন দেবেন না",
"Don't have an account?": "একাউন্ট নেই?", "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": "স্টাইল পছন্দ করেন না", "Don't like the style": "স্টাইল পছন্দ করেন না",
"Done": "", "Done": "",
"Download": "ডাউনলোড", "Download": "ডাউনলোড",
...@@ -215,6 +220,7 @@ ...@@ -215,6 +220,7 @@
"Enable Community Sharing": "সম্প্রদায় শেয়ারকরণ সক্ষম করুন", "Enable Community Sharing": "সম্প্রদায় শেয়ারকরণ সক্ষম করুন",
"Enable New Sign Ups": "নতুন সাইনআপ চালু করুন", "Enable New Sign Ups": "নতুন সাইনআপ চালু করুন",
"Enable Web Search": "ওয়েব অনুসন্ধান সক্ষম করুন", "Enable Web Search": "ওয়েব অনুসন্ধান সক্ষম করুন",
"Enabled": "",
"Engine": "", "Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "আপনার সিএসভি ফাইলটিতে এই ক্রমে 4 টি কলাম অন্তর্ভুক্ত রয়েছে তা নিশ্চিত করুন: নাম, ইমেল, পাসওয়ার্ড, ভূমিকা।.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "আপনার সিএসভি ফাইলটিতে এই ক্রমে 4 টি কলাম অন্তর্ভুক্ত রয়েছে তা নিশ্চিত করুন: নাম, ইমেল, পাসওয়ার্ড, ভূমিকা।.",
"Enter {{role}} message here": "{{role}} মেসেজ এখানে লিখুন", "Enter {{role}} message here": "{{role}} মেসেজ এখানে লিখুন",
...@@ -280,16 +286,22 @@ ...@@ -280,16 +286,22 @@
"Frequency Penalty": "ফ্রিকোয়েন্সি পেনাল্টি", "Frequency Penalty": "ফ্রিকোয়েন্সি পেনাল্টি",
"Function created successfully": "", "Function created successfully": "",
"Function deleted 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 disabled": "",
"Function is now globally enabled": "", "Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "", "Function updated successfully": "",
"Functions": "", "Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "", "Functions imported successfully": "",
"General": "সাধারণ", "General": "সাধারণ",
"General Settings": "সাধারণ সেটিংসমূহ", "General Settings": "সাধারণ সেটিংসমূহ",
"Generate Image": "", "Generate Image": "",
"Generating search query": "অনুসন্ধান ক্যোয়ারী তৈরি করা হচ্ছে", "Generating search query": "অনুসন্ধান ক্যোয়ারী তৈরি করা হচ্ছে",
"Generation Info": "জেনারেশন ইনফো", "Generation Info": "জেনারেশন ইনফো",
"Get up and running with": "",
"Global": "", "Global": "",
"Good Response": "ভালো সাড়া", "Good Response": "ভালো সাড়া",
"Google PSE API Key": "গুগল পিএসই এপিআই কী", "Google PSE API Key": "গুগল পিএসই এপিআই কী",
...@@ -302,6 +314,7 @@ ...@@ -302,6 +314,7 @@
"Hide Model": "", "Hide Model": "",
"How can I help you today?": "আপনাকে আজ কিভাবে সাহায্য করতে পারি?", "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 (Experimental)": "ইমেজ জেনারেশন (পরিক্ষামূলক)",
"Image Generation Engine": "ইমেজ জেনারেশন ইঞ্জিন", "Image Generation Engine": "ইমেজ জেনারেশন ইঞ্জিন",
"Image Settings": "ছবির সেটিংসমূহ", "Image Settings": "ছবির সেটিংসমূহ",
...@@ -332,6 +345,7 @@ ...@@ -332,6 +345,7 @@
"Keyboard shortcuts": "কিবোর্ড শর্টকাটসমূহ", "Keyboard shortcuts": "কিবোর্ড শর্টকাটসমূহ",
"Knowledge": "", "Knowledge": "",
"Language": "ভাষা", "Language": "ভাষা",
"large language models, locally.": "",
"Last Active": "সর্বশেষ সক্রিয়", "Last Active": "সর্বশেষ সক্রিয়",
"Last Modified": "", "Last Modified": "",
"Light": "লাইট", "Light": "লাইট",
...@@ -442,6 +456,7 @@ ...@@ -442,6 +456,7 @@
"Pipelines Valves": "পাইপলাইন ভালভ", "Pipelines Valves": "পাইপলাইন ভালভ",
"Plain text (.txt)": "প্লায়েন টেক্সট (.txt)", "Plain text (.txt)": "প্লায়েন টেক্সট (.txt)",
"Playground": "খেলাঘর", "Playground": "খেলাঘর",
"Please carefully review the following warnings:": "",
"Positive attitude": "পজিটিভ আক্রমণ", "Positive attitude": "পজিটিভ আক্রমণ",
"Previous 30 days": "পূর্ব ৩০ দিন", "Previous 30 days": "পূর্ব ৩০ দিন",
"Previous 7 days": "পূর্ব ৭ দিন", "Previous 7 days": "পূর্ব ৭ দিন",
...@@ -479,6 +494,7 @@ ...@@ -479,6 +494,7 @@
"Rosé Pine": "রোজ পাইন", "Rosé Pine": "রোজ পাইন",
"Rosé Pine Dawn": "ভোরের রোজ পাইন", "Rosé Pine Dawn": "ভোরের রোজ পাইন",
"RTL": "RTL", "RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "", "Running": "",
"Save": "সংরক্ষণ", "Save": "সংরক্ষণ",
"Save & Create": "সংরক্ষণ এবং তৈরি করুন", "Save & Create": "সংরক্ষণ এবং তৈরি করুন",
...@@ -562,6 +578,8 @@ ...@@ -562,6 +578,8 @@
"Success": "সফল", "Success": "সফল",
"Successfully updated.": "সফলভাবে আপডেট হয়েছে", "Successfully updated.": "সফলভাবে আপডেট হয়েছে",
"Suggested": "প্রস্তাবিত", "Suggested": "প্রস্তাবিত",
"Support": "",
"Support this plugin:": "",
"System": "সিস্টেম", "System": "সিস্টেম",
"System Prompt": "সিস্টেম প্রম্পট", "System Prompt": "সিস্টেম প্রম্পট",
"Tags": "ট্যাগসমূহ", "Tags": "ট্যাগসমূহ",
...@@ -574,6 +592,7 @@ ...@@ -574,6 +592,7 @@
"Text-to-Speech Engine": "টেক্সট-টু-স্পিচ ইঞ্জিন", "Text-to-Speech Engine": "টেক্সট-টু-স্পিচ ইঞ্জিন",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "আপনার মতামত ধন্যবাদ!", "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%) এর মধ্যে একটি মান হওয়া উচিত।", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "স্কোর একটি 0.0 (0%) এবং 1.0 (100%) এর মধ্যে একটি মান হওয়া উচিত।",
"Theme": "থিম", "Theme": "থিম",
"Thinking...": "", "Thinking...": "",
...@@ -607,7 +626,13 @@ ...@@ -607,7 +626,13 @@
"Tool deleted successfully": "", "Tool deleted successfully": "",
"Tool imported successfully": "", "Tool imported successfully": "",
"Tool updated 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": "",
"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 K": "Top K",
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Ollama এক্সেস করতে সমস্যা হচ্ছে?", "Trouble accessing Ollama?": "Ollama এক্সেস করতে সমস্যা হচ্ছে?",
...@@ -649,6 +674,7 @@ ...@@ -649,6 +674,7 @@
"Version": "ভার্সন", "Version": "ভার্সন",
"Voice": "", "Voice": "",
"Warning": "সতর্কীকরণ", "Warning": "সতর্কীকরণ",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "সতর্কীকরণ: আপনি যদি আপনার এম্বেডিং মডেল আপডেট বা পরিবর্তন করেন, তাহলে আপনাকে সমস্ত নথি পুনরায় আমদানি করতে হবে।.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "সতর্কীকরণ: আপনি যদি আপনার এম্বেডিং মডেল আপডেট বা পরিবর্তন করেন, তাহলে আপনাকে সমস্ত নথি পুনরায় আমদানি করতে হবে।.",
"Web": "ওয়েব", "Web": "ওয়েব",
"Web API": "", "Web API": "",
...@@ -675,6 +701,7 @@ ...@@ -675,6 +701,7 @@
"You're a helpful assistant.": "আপনি একজন উপকারী এসিস্ট্যান্ট", "You're a helpful assistant.": "আপনি একজন উপকারী এসিস্ট্যান্ট",
"You're now logged in.": "আপনি এখন লগইন করা অবস্থায় আছেন", "You're now logged in.": "আপনি এখন লগইন করা অবস্থায় আছেন",
"Your account status is currently pending activation.": "", "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": "YouTube",
"Youtube Loader Settings": "YouTube লোডার সেটিংস" "Youtube Loader Settings": "YouTube লোডার সেটিংস"
} }
...@@ -177,6 +177,7 @@ ...@@ -177,6 +177,7 @@
"Deleted {{name}}": "S'ha eliminat {{name}}", "Deleted {{name}}": "S'ha eliminat {{name}}",
"Description": "Descripció", "Description": "Descripció",
"Didn't fully follow instructions": "No s'han seguit les instruccions completament", "Didn't fully follow instructions": "No s'han seguit les instruccions completament",
"Disabled": "",
"Discover a function": "Descobrir una funció", "Discover a function": "Descobrir una funció",
"Discover a model": "Descobrir un model", "Discover a model": "Descobrir un model",
"Discover a prompt": "Descobrir una indicació", "Discover a prompt": "Descobrir una indicació",
...@@ -188,6 +189,8 @@ ...@@ -188,6 +189,8 @@
"Dismissible": "Descartable", "Dismissible": "Descartable",
"Display Emoji in Call": "Mostrar emojis a la trucada", "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", "Display the username instead of You in the Chat": "Mostrar el nom d'usuari en lloc de 'Tu' al xat",
"Do not install functions from sources you do not fully trust.": "",
"Do not install tools from sources you do not fully trust.": "",
"Document": "Document", "Document": "Document",
"Document Settings": "Preferències de documents", "Document Settings": "Preferències de documents",
"Documentation": "Documentació", "Documentation": "Documentació",
...@@ -195,6 +198,8 @@ ...@@ -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.", "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 Allow": "No permetre",
"Don't have an account?": "No tens un compte?", "Don't have an account?": "No tens un 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": "No t'agrada l'estil?", "Don't like the style": "No t'agrada l'estil?",
"Done": "Fet", "Done": "Fet",
"Download": "Descarregar", "Download": "Descarregar",
...@@ -215,6 +220,7 @@ ...@@ -215,6 +220,7 @@
"Enable Community Sharing": "Activar l'ús compartit amb la comunitat", "Enable Community Sharing": "Activar l'ús compartit amb la comunitat",
"Enable New Sign Ups": "Permetre nous registres", "Enable New Sign Ups": "Permetre nous registres",
"Enable Web Search": "Activar la cerca web", "Enable Web Search": "Activar la cerca web",
"Enabled": "",
"Engine": "Motor", "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.", "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}}", "Enter {{role}} message here": "Introdueix aquí el missatge de {{role}}",
...@@ -280,16 +286,22 @@ ...@@ -280,16 +286,22 @@
"Frequency Penalty": "Penalització per freqüència", "Frequency Penalty": "Penalització per freqüència",
"Function created successfully": "La funció s'ha creat correctament", "Function created successfully": "La funció s'ha creat correctament",
"Function deleted successfully": "La funció s'ha eliminat correctament", "Function deleted successfully": "La funció s'ha eliminat correctament",
"Function Description (e.g. A filter to remove profanity from text)": "",
"Function ID (e.g. my_filter)": "",
"Function is now globally disabled": "La funció ha estat desactivada globalment", "Function is now globally disabled": "La funció ha estat desactivada globalment",
"Function is now globally enabled": "La funció ha estat activada globalment", "Function is now globally enabled": "La funció ha estat activada globalment",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "La funció s'ha actualitzat correctament", "Function updated successfully": "La funció s'ha actualitzat correctament",
"Functions": "Funcions", "Functions": "Funcions",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "Les funcions s'han importat correctament", "Functions imported successfully": "Les funcions s'han importat correctament",
"General": "General", "General": "General",
"General Settings": "Preferències generals", "General Settings": "Preferències generals",
"Generate Image": "Generar imatge", "Generate Image": "Generar imatge",
"Generating search query": "Generant consulta", "Generating search query": "Generant consulta",
"Generation Info": "Informació sobre la generació", "Generation Info": "Informació sobre la generació",
"Get up and running with": "",
"Global": "Global", "Global": "Global",
"Good Response": "Bona resposta", "Good Response": "Bona resposta",
"Google PSE API Key": "Clau API PSE de Google", "Google PSE API Key": "Clau API PSE de Google",
...@@ -302,6 +314,7 @@ ...@@ -302,6 +314,7 @@
"Hide Model": "Amagar el model", "Hide Model": "Amagar el model",
"How can I help you today?": "Com et puc ajudar avui?", "How can I help you today?": "Com et puc ajudar avui?",
"Hybrid Search": "Cerca híbrida", "Hybrid Search": "Cerca híbrida",
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
"Image Generation (Experimental)": "Generació d'imatges (Experimental)", "Image Generation (Experimental)": "Generació d'imatges (Experimental)",
"Image Generation Engine": "Motor de generació d'imatges", "Image Generation Engine": "Motor de generació d'imatges",
"Image Settings": "Preferències d'imatges", "Image Settings": "Preferències d'imatges",
...@@ -332,6 +345,7 @@ ...@@ -332,6 +345,7 @@
"Keyboard shortcuts": "Dreceres de teclat", "Keyboard shortcuts": "Dreceres de teclat",
"Knowledge": "Coneixement", "Knowledge": "Coneixement",
"Language": "Idioma", "Language": "Idioma",
"large language models, locally.": "",
"Last Active": "Activitat recent", "Last Active": "Activitat recent",
"Last Modified": "Modificació", "Last Modified": "Modificació",
"Light": "Clar", "Light": "Clar",
...@@ -442,6 +456,7 @@ ...@@ -442,6 +456,7 @@
"Pipelines Valves": "Vàlvules de les Pipelines", "Pipelines Valves": "Vàlvules de les Pipelines",
"Plain text (.txt)": "Text pla (.txt)", "Plain text (.txt)": "Text pla (.txt)",
"Playground": "Zona de jocs", "Playground": "Zona de jocs",
"Please carefully review the following warnings:": "",
"Positive attitude": "Actitud positiva", "Positive attitude": "Actitud positiva",
"Previous 30 days": "30 dies anteriors", "Previous 30 days": "30 dies anteriors",
"Previous 7 days": "7 dies anteriors", "Previous 7 days": "7 dies anteriors",
...@@ -479,6 +494,7 @@ ...@@ -479,6 +494,7 @@
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Albada Rosé Pine", "Rosé Pine Dawn": "Albada Rosé Pine",
"RTL": "RTL", "RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "S'està executant", "Running": "S'està executant",
"Save": "Desar", "Save": "Desar",
"Save & Create": "Desar i crear", "Save & Create": "Desar i crear",
...@@ -563,6 +579,8 @@ ...@@ -563,6 +579,8 @@
"Success": "Èxit", "Success": "Èxit",
"Successfully updated.": "Actualitzat correctament.", "Successfully updated.": "Actualitzat correctament.",
"Suggested": "Suggerit", "Suggested": "Suggerit",
"Support": "",
"Support this plugin:": "",
"System": "Sistema", "System": "Sistema",
"System Prompt": "Indicació del Sistema", "System Prompt": "Indicació del Sistema",
"Tags": "Etiquetes", "Tags": "Etiquetes",
...@@ -575,6 +593,7 @@ ...@@ -575,6 +593,7 @@
"Text-to-Speech Engine": "Motor de text a veu", "Text-to-Speech Engine": "Motor de text a veu",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "Gràcies pel teu comentari!", "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.": "",
"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%).", "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", "Theme": "Tema",
"Thinking...": "Pensant...", "Thinking...": "Pensant...",
...@@ -608,7 +627,13 @@ ...@@ -608,7 +627,13 @@
"Tool deleted successfully": "Eina eliminada correctament", "Tool deleted successfully": "Eina eliminada correctament",
"Tool imported successfully": "Eina importada correctament", "Tool imported successfully": "Eina importada correctament",
"Tool updated successfully": "Eina actualitzada correctament", "Tool updated successfully": "Eina actualitzada correctament",
"Toolkit Description (e.g. A toolkit for performing various operations)": "",
"Toolkit ID (e.g. my_toolkit)": "",
"Toolkit Name (e.g. My ToolKit)": "",
"Tools": "Eines", "Tools": "Eines",
"Tools are a function calling system with arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution": "",
"Tools have a function calling system that allows arbitrary code execution.": "",
"Top K": "Top K", "Top K": "Top K",
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Problemes en accedir a Ollama?", "Trouble accessing Ollama?": "Problemes en accedir a Ollama?",
...@@ -650,6 +675,7 @@ ...@@ -650,6 +675,7 @@
"Version": "Versió", "Version": "Versió",
"Voice": "Veu", "Voice": "Veu",
"Warning": "Avís", "Warning": "Avís",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Avís: Si s'actualitza o es canvia el model d'incrustació, s'hauran de tornar a importar tots els documents.", "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": "Web",
"Web API": "Web API", "Web API": "Web API",
...@@ -676,6 +702,7 @@ ...@@ -676,6 +702,7 @@
"You're a helpful assistant.": "Ets un assistent útil.", "You're a helpful assistant.": "Ets un assistent útil.",
"You're now logged in.": "Ara estàs connectat.", "You're now logged in.": "Ara estàs connectat.",
"Your account status is currently pending activation.": "El compte està actualment pendent d'activació", "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.": "",
"Youtube": "Youtube", "Youtube": "Youtube",
"Youtube Loader Settings": "Preferències del carregador de Youtube" "Youtube Loader Settings": "Preferències del carregador de Youtube"
} }
...@@ -177,6 +177,7 @@ ...@@ -177,6 +177,7 @@
"Deleted {{name}}": "", "Deleted {{name}}": "",
"Description": "Deskripsyon", "Description": "Deskripsyon",
"Didn't fully follow instructions": "", "Didn't fully follow instructions": "",
"Disabled": "",
"Discover a function": "", "Discover a function": "",
"Discover a model": "", "Discover a model": "",
"Discover a prompt": "Pagkaplag usa ka prompt", "Discover a prompt": "Pagkaplag usa ka prompt",
...@@ -188,6 +189,8 @@ ...@@ -188,6 +189,8 @@
"Dismissible": "", "Dismissible": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
"Display the username instead of You in the Chat": "Ipakita ang username imbes nga 'Ikaw' sa Panaghisgutan", "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": "Dokumento",
"Document Settings": "Mga Setting sa Dokumento", "Document Settings": "Mga Setting sa Dokumento",
"Documentation": "", "Documentation": "",
...@@ -195,6 +198,8 @@ ...@@ -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.", "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 Allow": "Dili tugotan",
"Don't have an account?": "Wala kay account ?", "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": "", "Don't like the style": "",
"Done": "", "Done": "",
"Download": "", "Download": "",
...@@ -215,6 +220,7 @@ ...@@ -215,6 +220,7 @@
"Enable Community Sharing": "", "Enable Community Sharing": "",
"Enable New Sign Ups": "I-enable ang bag-ong mga rehistro", "Enable New Sign Ups": "I-enable ang bag-ong mga rehistro",
"Enable Web Search": "", "Enable Web Search": "",
"Enabled": "",
"Engine": "", "Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "Pagsulod sa mensahe {{role}} dinhi", "Enter {{role}} message here": "Pagsulod sa mensahe {{role}} dinhi",
...@@ -280,16 +286,22 @@ ...@@ -280,16 +286,22 @@
"Frequency Penalty": "", "Frequency Penalty": "",
"Function created successfully": "", "Function created successfully": "",
"Function deleted 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 disabled": "",
"Function is now globally enabled": "", "Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "", "Function updated successfully": "",
"Functions": "", "Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "", "Functions imported successfully": "",
"General": "Heneral", "General": "Heneral",
"General Settings": "kinatibuk-ang mga setting", "General Settings": "kinatibuk-ang mga setting",
"Generate Image": "", "Generate Image": "",
"Generating search query": "", "Generating search query": "",
"Generation Info": "", "Generation Info": "",
"Get up and running with": "",
"Global": "", "Global": "",
"Good Response": "", "Good Response": "",
"Google PSE API Key": "", "Google PSE API Key": "",
...@@ -302,6 +314,7 @@ ...@@ -302,6 +314,7 @@
"Hide Model": "", "Hide Model": "",
"How can I help you today?": "Unsaon nako pagtabang kanimo karon?", "How can I help you today?": "Unsaon nako pagtabang kanimo karon?",
"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)": "Pagmugna og hulagway (Eksperimento)", "Image Generation (Experimental)": "Pagmugna og hulagway (Eksperimento)",
"Image Generation Engine": "Makina sa paghimo og imahe", "Image Generation Engine": "Makina sa paghimo og imahe",
"Image Settings": "Mga Setting sa Imahen", "Image Settings": "Mga Setting sa Imahen",
...@@ -332,6 +345,7 @@ ...@@ -332,6 +345,7 @@
"Keyboard shortcuts": "Mga shortcut sa keyboard", "Keyboard shortcuts": "Mga shortcut sa keyboard",
"Knowledge": "", "Knowledge": "",
"Language": "Pinulongan", "Language": "Pinulongan",
"large language models, locally.": "",
"Last Active": "", "Last Active": "",
"Last Modified": "", "Last Modified": "",
"Light": "Kahayag", "Light": "Kahayag",
...@@ -442,6 +456,7 @@ ...@@ -442,6 +456,7 @@
"Pipelines Valves": "", "Pipelines Valves": "",
"Plain text (.txt)": "", "Plain text (.txt)": "",
"Playground": "Dulaanan", "Playground": "Dulaanan",
"Please carefully review the following warnings:": "",
"Positive attitude": "", "Positive attitude": "",
"Previous 30 days": "", "Previous 30 days": "",
"Previous 7 days": "", "Previous 7 days": "",
...@@ -479,6 +494,7 @@ ...@@ -479,6 +494,7 @@
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Aube Pine Rosé", "Rosé Pine Dawn": "Aube Pine Rosé",
"RTL": "", "RTL": "",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "", "Running": "",
"Save": "Tipigi", "Save": "Tipigi",
"Save & Create": "I-save ug Paghimo", "Save & Create": "I-save ug Paghimo",
...@@ -562,6 +578,8 @@ ...@@ -562,6 +578,8 @@
"Success": "Kalampusan", "Success": "Kalampusan",
"Successfully updated.": "Malampuson nga na-update.", "Successfully updated.": "Malampuson nga na-update.",
"Suggested": "", "Suggested": "",
"Support": "",
"Support this plugin:": "",
"System": "Sistema", "System": "Sistema",
"System Prompt": "Madasig nga Sistema", "System Prompt": "Madasig nga Sistema",
"Tags": "Mga tag", "Tags": "Mga tag",
...@@ -574,6 +592,7 @@ ...@@ -574,6 +592,7 @@
"Text-to-Speech Engine": "Text-to-speech nga makina", "Text-to-Speech Engine": "Text-to-speech nga makina",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "", "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": "Tema", "Theme": "Tema",
"Thinking...": "", "Thinking...": "",
...@@ -607,7 +626,13 @@ ...@@ -607,7 +626,13 @@
"Tool deleted successfully": "", "Tool deleted successfully": "",
"Tool imported successfully": "", "Tool imported successfully": "",
"Tool updated 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": "",
"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 K": "Top K",
"Top P": "Ibabaw nga P", "Top P": "Ibabaw nga P",
"Trouble accessing Ollama?": "Adunay mga problema sa pag-access sa Ollama?", "Trouble accessing Ollama?": "Adunay mga problema sa pag-access sa Ollama?",
...@@ -649,6 +674,7 @@ ...@@ -649,6 +674,7 @@
"Version": "Bersyon", "Version": "Bersyon",
"Voice": "", "Voice": "",
"Warning": "", "Warning": "",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web", "Web": "Web",
"Web API": "", "Web API": "",
...@@ -675,6 +701,7 @@ ...@@ -675,6 +701,7 @@
"You're a helpful assistant.": "Usa ka ka mapuslanon nga katabang", "You're a helpful assistant.": "Usa ka ka mapuslanon nga katabang",
"You're now logged in.": "Konektado ka na karon.", "You're now logged in.": "Konektado ka na karon.",
"Your account status is currently pending activation.": "", "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 @@ ...@@ -177,6 +177,7 @@
"Deleted {{name}}": "{{name}} gelöscht", "Deleted {{name}}": "{{name}} gelöscht",
"Description": "Beschreibung", "Description": "Beschreibung",
"Didn't fully follow instructions": "Nicht genau den Answeisungen gefolgt", "Didn't fully follow instructions": "Nicht genau den Answeisungen gefolgt",
"Disabled": "",
"Discover a function": "Entdecken Sie weitere Funktionen", "Discover a function": "Entdecken Sie weitere Funktionen",
"Discover a model": "Entdecken Sie weitere Modelle", "Discover a model": "Entdecken Sie weitere Modelle",
"Discover a prompt": "Entdecken Sie weitere Prompts", "Discover a prompt": "Entdecken Sie weitere Prompts",
...@@ -188,6 +189,8 @@ ...@@ -188,6 +189,8 @@
"Dismissible": "ausblendbar", "Dismissible": "ausblendbar",
"Display Emoji in Call": "Emojis im Anruf anzeigen", "Display Emoji in Call": "Emojis im Anruf anzeigen",
"Display the username instead of You in the Chat": "Soll \"Sie\" durch Ihren Benutzernamen ersetzt werden?", "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": "Dokument",
"Document Settings": "Dokumenteinstellungen", "Document Settings": "Dokumenteinstellungen",
"Documentation": "Dokumentation", "Documentation": "Dokumentation",
...@@ -195,6 +198,8 @@ ...@@ -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.", "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 Allow": "Verbieten",
"Don't have an account?": "Haben Sie noch kein Benutzerkonto?", "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", "Don't like the style": "schlechter Schreibstil",
"Done": "Erledigt", "Done": "Erledigt",
"Download": "Exportieren", "Download": "Exportieren",
...@@ -215,6 +220,7 @@ ...@@ -215,6 +220,7 @@
"Enable Community Sharing": "Community-Freigabe aktivieren", "Enable Community Sharing": "Community-Freigabe aktivieren",
"Enable New Sign Ups": "Registrierung erlauben", "Enable New Sign Ups": "Registrierung erlauben",
"Enable Web Search": "Websuche aktivieren", "Enable Web Search": "Websuche aktivieren",
"Enabled": "",
"Engine": "Engine", "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.", "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", "Enter {{role}} message here": "Geben Sie die {{role}}-Nachricht hier ein",
...@@ -280,16 +286,22 @@ ...@@ -280,16 +286,22 @@
"Frequency Penalty": "Frequenzstrafe", "Frequency Penalty": "Frequenzstrafe",
"Function created successfully": "Funktion erfolgreich erstellt", "Function created successfully": "Funktion erfolgreich erstellt",
"Function deleted successfully": "Funktion erfolgreich gelöscht", "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 disabled": "",
"Function is now globally enabled": "", "Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "Funktion erfolgreich aktualisiert", "Function updated successfully": "Funktion erfolgreich aktualisiert",
"Functions": "Funktionen", "Functions": "Funktionen",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "Funktionen erfolgreich importiert", "Functions imported successfully": "Funktionen erfolgreich importiert",
"General": "Allgemein", "General": "Allgemein",
"General Settings": "Allgemeine Einstellungen", "General Settings": "Allgemeine Einstellungen",
"Generate Image": "Bild erzeugen", "Generate Image": "Bild erzeugen",
"Generating search query": "Suchanfrage wird erstellt", "Generating search query": "Suchanfrage wird erstellt",
"Generation Info": "Generierungsinformationen", "Generation Info": "Generierungsinformationen",
"Get up and running with": "",
"Global": "Global", "Global": "Global",
"Good Response": "Gute Antwort", "Good Response": "Gute Antwort",
"Google PSE API Key": "Google PSE-API-Schlüssel", "Google PSE API Key": "Google PSE-API-Schlüssel",
...@@ -302,6 +314,7 @@ ...@@ -302,6 +314,7 @@
"Hide Model": "Modell ausblenden", "Hide Model": "Modell ausblenden",
"How can I help you today?": "Wie kann ich Ihnen heute helfen?", "How can I help you today?": "Wie kann ich Ihnen heute helfen?",
"Hybrid Search": "Hybride Suche", "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 (Experimental)": "Bildgenerierung (experimentell)",
"Image Generation Engine": "Bildgenerierungs-Engine", "Image Generation Engine": "Bildgenerierungs-Engine",
"Image Settings": "Bildeinstellungen", "Image Settings": "Bildeinstellungen",
...@@ -332,6 +345,7 @@ ...@@ -332,6 +345,7 @@
"Keyboard shortcuts": "Tastenkombinationen", "Keyboard shortcuts": "Tastenkombinationen",
"Knowledge": "Wissen", "Knowledge": "Wissen",
"Language": "Sprache", "Language": "Sprache",
"large language models, locally.": "",
"Last Active": "Zuletzt aktiv", "Last Active": "Zuletzt aktiv",
"Last Modified": "Zuletzt bearbeitet", "Last Modified": "Zuletzt bearbeitet",
"Light": "Hell", "Light": "Hell",
...@@ -442,6 +456,7 @@ ...@@ -442,6 +456,7 @@
"Pipelines Valves": "Pipeline Valves", "Pipelines Valves": "Pipeline Valves",
"Plain text (.txt)": "Nur Text (.txt)", "Plain text (.txt)": "Nur Text (.txt)",
"Playground": "Testumgebung", "Playground": "Testumgebung",
"Please carefully review the following warnings:": "",
"Positive attitude": "Positive Einstellung", "Positive attitude": "Positive Einstellung",
"Previous 30 days": "Vorherige 30 Tage", "Previous 30 days": "Vorherige 30 Tage",
"Previous 7 days": "Vorherige 7 Tage", "Previous 7 days": "Vorherige 7 Tage",
...@@ -479,6 +494,7 @@ ...@@ -479,6 +494,7 @@
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "RTL", "RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "Läuft", "Running": "Läuft",
"Save": "Speichern", "Save": "Speichern",
"Save & Create": "Erstellen", "Save & Create": "Erstellen",
...@@ -562,6 +578,8 @@ ...@@ -562,6 +578,8 @@
"Success": "Erfolg", "Success": "Erfolg",
"Successfully updated.": "Erfolgreich aktualisiert.", "Successfully updated.": "Erfolgreich aktualisiert.",
"Suggested": "Vorgeschlagen", "Suggested": "Vorgeschlagen",
"Support": "",
"Support this plugin:": "",
"System": "System", "System": "System",
"System Prompt": "System-Prompt", "System Prompt": "System-Prompt",
"Tags": "Tags", "Tags": "Tags",
...@@ -574,6 +592,7 @@ ...@@ -574,6 +592,7 @@
"Text-to-Speech Engine": "Text-zu-Sprache-Engine", "Text-to-Speech Engine": "Text-zu-Sprache-Engine",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "Danke für Ihr Feedback!", "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.", "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", "Theme": "Design",
"Thinking...": "Denke nach...", "Thinking...": "Denke nach...",
...@@ -607,7 +626,13 @@ ...@@ -607,7 +626,13 @@
"Tool deleted successfully": "Werkzeug erfolgreich gelöscht", "Tool deleted successfully": "Werkzeug erfolgreich gelöscht",
"Tool imported successfully": "Werkzeug erfolgreich importiert", "Tool imported successfully": "Werkzeug erfolgreich importiert",
"Tool updated successfully": "Werkzeug erfolgreich aktualisiert", "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": "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 K": "Top K",
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Probleme beim Zugriff auf Ollama?", "Trouble accessing Ollama?": "Probleme beim Zugriff auf Ollama?",
...@@ -649,6 +674,7 @@ ...@@ -649,6 +674,7 @@
"Version": "Version", "Version": "Version",
"Voice": "Stimme", "Voice": "Stimme",
"Warning": "Warnung", "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.", "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": "Web",
"Web API": "Web-API", "Web API": "Web-API",
...@@ -675,6 +701,7 @@ ...@@ -675,6 +701,7 @@
"You're a helpful assistant.": "Du bist ein hilfreicher Assistent.", "You're a helpful assistant.": "Du bist ein hilfreicher Assistent.",
"You're now logged in.": "Sie sind jetzt eingeloggt.", "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 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": "YouTube",
"Youtube Loader Settings": "YouTube-Ladeeinstellungen" "Youtube Loader Settings": "YouTube-Ladeeinstellungen"
} }
...@@ -177,6 +177,7 @@ ...@@ -177,6 +177,7 @@
"Deleted {{name}}": "", "Deleted {{name}}": "",
"Description": "Description", "Description": "Description",
"Didn't fully follow instructions": "", "Didn't fully follow instructions": "",
"Disabled": "",
"Discover a function": "", "Discover a function": "",
"Discover a model": "", "Discover a model": "",
"Discover a prompt": "Discover a prompt", "Discover a prompt": "Discover a prompt",
...@@ -188,6 +189,8 @@ ...@@ -188,6 +189,8 @@
"Dismissible": "", "Dismissible": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
"Display the username instead of You in the Chat": "Display username instead of You in Chat", "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": "Document",
"Document Settings": "Document Settings", "Document Settings": "Document Settings",
"Documentation": "", "Documentation": "",
...@@ -195,6 +198,8 @@ ...@@ -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.", "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 Allow": "Don't Allow",
"Don't have an account?": "No account? Much sad.", "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": "", "Don't like the style": "",
"Done": "", "Done": "",
"Download": "", "Download": "",
...@@ -215,6 +220,7 @@ ...@@ -215,6 +220,7 @@
"Enable Community Sharing": "", "Enable Community Sharing": "",
"Enable New Sign Ups": "Enable New Bark Ups", "Enable New Sign Ups": "Enable New Bark Ups",
"Enable Web Search": "", "Enable Web Search": "",
"Enabled": "",
"Engine": "", "Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "Enter {{role}} bork here", "Enter {{role}} message here": "Enter {{role}} bork here",
...@@ -280,16 +286,22 @@ ...@@ -280,16 +286,22 @@
"Frequency Penalty": "", "Frequency Penalty": "",
"Function created successfully": "", "Function created successfully": "",
"Function deleted 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 disabled": "",
"Function is now globally enabled": "", "Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "", "Function updated successfully": "",
"Functions": "", "Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "", "Functions imported successfully": "",
"General": "Woweral", "General": "Woweral",
"General Settings": "General Doge Settings", "General Settings": "General Doge Settings",
"Generate Image": "", "Generate Image": "",
"Generating search query": "", "Generating search query": "",
"Generation Info": "", "Generation Info": "",
"Get up and running with": "",
"Global": "", "Global": "",
"Good Response": "", "Good Response": "",
"Google PSE API Key": "", "Google PSE API Key": "",
...@@ -302,6 +314,7 @@ ...@@ -302,6 +314,7 @@
"Hide Model": "", "Hide Model": "",
"How can I help you today?": "How can I halp u today?", "How can I help you today?": "How can I halp u 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 Wow (Much Experiment)", "Image Generation (Experimental)": "Image Wow (Much Experiment)",
"Image Generation Engine": "Image Engine", "Image Generation Engine": "Image Engine",
"Image Settings": "Settings for Wowmage", "Image Settings": "Settings for Wowmage",
...@@ -332,6 +345,7 @@ ...@@ -332,6 +345,7 @@
"Keyboard shortcuts": "Keyboard Barkcuts", "Keyboard shortcuts": "Keyboard Barkcuts",
"Knowledge": "", "Knowledge": "",
"Language": "Doge Speak", "Language": "Doge Speak",
"large language models, locally.": "",
"Last Active": "", "Last Active": "",
"Last Modified": "", "Last Modified": "",
"Light": "Light", "Light": "Light",
...@@ -442,6 +456,7 @@ ...@@ -442,6 +456,7 @@
"Pipelines Valves": "", "Pipelines Valves": "",
"Plain text (.txt)": "Plain text (.txt)", "Plain text (.txt)": "Plain text (.txt)",
"Playground": "Playground", "Playground": "Playground",
"Please carefully review the following warnings:": "",
"Positive attitude": "", "Positive attitude": "",
"Previous 30 days": "", "Previous 30 days": "",
"Previous 7 days": "", "Previous 7 days": "",
...@@ -479,6 +494,7 @@ ...@@ -479,6 +494,7 @@
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "", "RTL": "",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "", "Running": "",
"Save": "Save much wow", "Save": "Save much wow",
"Save & Create": "Save & Create much create", "Save & Create": "Save & Create much create",
...@@ -564,6 +580,8 @@ ...@@ -564,6 +580,8 @@
"Success": "Success very success", "Success": "Success very success",
"Successfully updated.": "Successfully updated. Very updated.", "Successfully updated.": "Successfully updated. Very updated.",
"Suggested": "", "Suggested": "",
"Support": "",
"Support this plugin:": "",
"System": "System very system", "System": "System very system",
"System Prompt": "System Prompt much prompt", "System Prompt": "System Prompt much prompt",
"Tags": "Tags very tags", "Tags": "Tags very tags",
...@@ -576,6 +594,7 @@ ...@@ -576,6 +594,7 @@
"Text-to-Speech Engine": "Text-to-Speech Engine much speak", "Text-to-Speech Engine": "Text-to-Speech Engine much speak",
"Tfs Z": "Tfs Z much Z", "Tfs Z": "Tfs Z much Z",
"Thanks for your feedback!": "", "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": "Theme much theme", "Theme": "Theme much theme",
"Thinking...": "", "Thinking...": "",
...@@ -609,7 +628,13 @@ ...@@ -609,7 +628,13 @@
"Tool deleted successfully": "", "Tool deleted successfully": "",
"Tool imported successfully": "", "Tool imported successfully": "",
"Tool updated 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": "",
"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 K": "Top K very top",
"Top P": "Top P very top", "Top P": "Top P very top",
"Trouble accessing Ollama?": "Trouble accessing Ollama? Much trouble?", "Trouble accessing Ollama?": "Trouble accessing Ollama? Much trouble?",
...@@ -651,6 +676,7 @@ ...@@ -651,6 +676,7 @@
"Version": "Version much version", "Version": "Version much version",
"Voice": "", "Voice": "",
"Warning": "", "Warning": "",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web very web", "Web": "Web very web",
"Web API": "", "Web API": "",
...@@ -677,6 +703,7 @@ ...@@ -677,6 +703,7 @@
"You're a helpful assistant.": "You're a helpful assistant. Much helpful.", "You're a helpful assistant.": "You're a helpful assistant. Much helpful.",
"You're now logged in.": "You're now logged in. Much logged.", "You're now logged in.": "You're now logged in. Much logged.",
"Your account status is currently pending activation.": "", "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 @@ ...@@ -177,6 +177,7 @@
"Deleted {{name}}": "", "Deleted {{name}}": "",
"Description": "", "Description": "",
"Didn't fully follow instructions": "", "Didn't fully follow instructions": "",
"Disabled": "",
"Discover a function": "", "Discover a function": "",
"Discover a model": "", "Discover a model": "",
"Discover a prompt": "", "Discover a prompt": "",
...@@ -188,6 +189,8 @@ ...@@ -188,6 +189,8 @@
"Dismissible": "", "Dismissible": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
"Display the username instead of You in the Chat": "", "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": "",
"Document Settings": "", "Document Settings": "",
"Documentation": "", "Documentation": "",
...@@ -195,6 +198,8 @@ ...@@ -195,6 +198,8 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "", "does not make any external connections, and your data stays securely on your locally hosted server.": "",
"Don't Allow": "", "Don't Allow": "",
"Don't have an account?": "", "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": "", "Don't like the style": "",
"Done": "", "Done": "",
"Download": "", "Download": "",
...@@ -215,6 +220,7 @@ ...@@ -215,6 +220,7 @@
"Enable Community Sharing": "", "Enable Community Sharing": "",
"Enable New Sign Ups": "", "Enable New Sign Ups": "",
"Enable Web Search": "", "Enable Web Search": "",
"Enabled": "",
"Engine": "", "Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "", "Enter {{role}} message here": "",
...@@ -280,16 +286,22 @@ ...@@ -280,16 +286,22 @@
"Frequency Penalty": "", "Frequency Penalty": "",
"Function created successfully": "", "Function created successfully": "",
"Function deleted 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 disabled": "",
"Function is now globally enabled": "", "Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "", "Function updated successfully": "",
"Functions": "", "Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "", "Functions imported successfully": "",
"General": "", "General": "",
"General Settings": "", "General Settings": "",
"Generate Image": "", "Generate Image": "",
"Generating search query": "", "Generating search query": "",
"Generation Info": "", "Generation Info": "",
"Get up and running with": "",
"Global": "", "Global": "",
"Good Response": "", "Good Response": "",
"Google PSE API Key": "", "Google PSE API Key": "",
...@@ -302,6 +314,7 @@ ...@@ -302,6 +314,7 @@
"Hide Model": "", "Hide Model": "",
"How can I help you today?": "", "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 (Experimental)": "",
"Image Generation Engine": "", "Image Generation Engine": "",
"Image Settings": "", "Image Settings": "",
...@@ -332,6 +345,7 @@ ...@@ -332,6 +345,7 @@
"Keyboard shortcuts": "", "Keyboard shortcuts": "",
"Knowledge": "", "Knowledge": "",
"Language": "", "Language": "",
"large language models, locally.": "",
"Last Active": "", "Last Active": "",
"Last Modified": "", "Last Modified": "",
"Light": "", "Light": "",
...@@ -442,6 +456,7 @@ ...@@ -442,6 +456,7 @@
"Pipelines Valves": "", "Pipelines Valves": "",
"Plain text (.txt)": "", "Plain text (.txt)": "",
"Playground": "", "Playground": "",
"Please carefully review the following warnings:": "",
"Positive attitude": "", "Positive attitude": "",
"Previous 30 days": "", "Previous 30 days": "",
"Previous 7 days": "", "Previous 7 days": "",
...@@ -479,6 +494,7 @@ ...@@ -479,6 +494,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": "", "Running": "",
"Save": "", "Save": "",
"Save & Create": "", "Save & Create": "",
...@@ -562,6 +578,8 @@ ...@@ -562,6 +578,8 @@
"Success": "", "Success": "",
"Successfully updated.": "", "Successfully updated.": "",
"Suggested": "", "Suggested": "",
"Support": "",
"Support this plugin:": "",
"System": "", "System": "",
"System Prompt": "", "System Prompt": "",
"Tags": "", "Tags": "",
...@@ -574,6 +592,7 @@ ...@@ -574,6 +592,7 @@
"Text-to-Speech Engine": "", "Text-to-Speech Engine": "",
"Tfs Z": "", "Tfs Z": "",
"Thanks for your feedback!": "", "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": "", "Theme": "",
"Thinking...": "", "Thinking...": "",
...@@ -607,7 +626,13 @@ ...@@ -607,7 +626,13 @@
"Tool deleted successfully": "", "Tool deleted successfully": "",
"Tool imported successfully": "", "Tool imported successfully": "",
"Tool updated 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": "",
"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?": "", "Trouble accessing Ollama?": "",
...@@ -649,6 +674,7 @@ ...@@ -649,6 +674,7 @@
"Version": "", "Version": "",
"Voice": "", "Voice": "",
"Warning": "", "Warning": "",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "", "Web": "",
"Web API": "", "Web API": "",
...@@ -675,6 +701,7 @@ ...@@ -675,6 +701,7 @@
"You're a helpful assistant.": "", "You're a helpful assistant.": "",
"You're now logged in.": "", "You're now logged in.": "",
"Your account status is currently pending activation.": "", "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 @@ ...@@ -177,6 +177,7 @@
"Deleted {{name}}": "", "Deleted {{name}}": "",
"Description": "", "Description": "",
"Didn't fully follow instructions": "", "Didn't fully follow instructions": "",
"Disabled": "",
"Discover a function": "", "Discover a function": "",
"Discover a model": "", "Discover a model": "",
"Discover a prompt": "", "Discover a prompt": "",
...@@ -188,6 +189,8 @@ ...@@ -188,6 +189,8 @@
"Dismissible": "", "Dismissible": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
"Display the username instead of You in the Chat": "", "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": "",
"Document Settings": "", "Document Settings": "",
"Documentation": "", "Documentation": "",
...@@ -195,6 +198,8 @@ ...@@ -195,6 +198,8 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "", "does not make any external connections, and your data stays securely on your locally hosted server.": "",
"Don't Allow": "", "Don't Allow": "",
"Don't have an account?": "", "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": "", "Don't like the style": "",
"Done": "", "Done": "",
"Download": "", "Download": "",
...@@ -215,6 +220,7 @@ ...@@ -215,6 +220,7 @@
"Enable Community Sharing": "", "Enable Community Sharing": "",
"Enable New Sign Ups": "", "Enable New Sign Ups": "",
"Enable Web Search": "", "Enable Web Search": "",
"Enabled": "",
"Engine": "", "Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "", "Enter {{role}} message here": "",
...@@ -280,16 +286,22 @@ ...@@ -280,16 +286,22 @@
"Frequency Penalty": "", "Frequency Penalty": "",
"Function created successfully": "", "Function created successfully": "",
"Function deleted 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 disabled": "",
"Function is now globally enabled": "", "Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "", "Function updated successfully": "",
"Functions": "", "Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "", "Functions imported successfully": "",
"General": "", "General": "",
"General Settings": "", "General Settings": "",
"Generate Image": "", "Generate Image": "",
"Generating search query": "", "Generating search query": "",
"Generation Info": "", "Generation Info": "",
"Get up and running with": "",
"Global": "", "Global": "",
"Good Response": "", "Good Response": "",
"Google PSE API Key": "", "Google PSE API Key": "",
...@@ -302,6 +314,7 @@ ...@@ -302,6 +314,7 @@
"Hide Model": "", "Hide Model": "",
"How can I help you today?": "", "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 (Experimental)": "",
"Image Generation Engine": "", "Image Generation Engine": "",
"Image Settings": "", "Image Settings": "",
...@@ -332,6 +345,7 @@ ...@@ -332,6 +345,7 @@
"Keyboard shortcuts": "", "Keyboard shortcuts": "",
"Knowledge": "", "Knowledge": "",
"Language": "", "Language": "",
"large language models, locally.": "",
"Last Active": "", "Last Active": "",
"Last Modified": "", "Last Modified": "",
"Light": "", "Light": "",
...@@ -442,6 +456,7 @@ ...@@ -442,6 +456,7 @@
"Pipelines Valves": "", "Pipelines Valves": "",
"Plain text (.txt)": "", "Plain text (.txt)": "",
"Playground": "", "Playground": "",
"Please carefully review the following warnings:": "",
"Positive attitude": "", "Positive attitude": "",
"Previous 30 days": "", "Previous 30 days": "",
"Previous 7 days": "", "Previous 7 days": "",
...@@ -479,6 +494,7 @@ ...@@ -479,6 +494,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": "", "Running": "",
"Save": "", "Save": "",
"Save & Create": "", "Save & Create": "",
...@@ -562,6 +578,8 @@ ...@@ -562,6 +578,8 @@
"Success": "", "Success": "",
"Successfully updated.": "", "Successfully updated.": "",
"Suggested": "", "Suggested": "",
"Support": "",
"Support this plugin:": "",
"System": "", "System": "",
"System Prompt": "", "System Prompt": "",
"Tags": "", "Tags": "",
...@@ -574,6 +592,7 @@ ...@@ -574,6 +592,7 @@
"Text-to-Speech Engine": "", "Text-to-Speech Engine": "",
"Tfs Z": "", "Tfs Z": "",
"Thanks for your feedback!": "", "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": "", "Theme": "",
"Thinking...": "", "Thinking...": "",
...@@ -607,7 +626,13 @@ ...@@ -607,7 +626,13 @@
"Tool deleted successfully": "", "Tool deleted successfully": "",
"Tool imported successfully": "", "Tool imported successfully": "",
"Tool updated 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": "",
"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?": "", "Trouble accessing Ollama?": "",
...@@ -649,6 +674,7 @@ ...@@ -649,6 +674,7 @@
"Version": "", "Version": "",
"Voice": "", "Voice": "",
"Warning": "", "Warning": "",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "", "Web": "",
"Web API": "", "Web API": "",
...@@ -675,6 +701,7 @@ ...@@ -675,6 +701,7 @@
"You're a helpful assistant.": "", "You're a helpful assistant.": "",
"You're now logged in.": "", "You're now logged in.": "",
"Your account status is currently pending activation.": "", "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 @@ ...@@ -177,6 +177,7 @@
"Deleted {{name}}": "Eliminado {{nombre}}", "Deleted {{name}}": "Eliminado {{nombre}}",
"Description": "Descripción", "Description": "Descripción",
"Didn't fully follow instructions": "No siguió las instrucciones", "Didn't fully follow instructions": "No siguió las instrucciones",
"Disabled": "",
"Discover a function": "Descubre una función", "Discover a function": "Descubre una función",
"Discover a model": "Descubrir un modelo", "Discover a model": "Descubrir un modelo",
"Discover a prompt": "Descubre un Prompt", "Discover a prompt": "Descubre un Prompt",
...@@ -188,6 +189,8 @@ ...@@ -188,6 +189,8 @@
"Dismissible": "Desestimable", "Dismissible": "Desestimable",
"Display Emoji in Call": "Muestra Emoji en llamada", "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", "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": "Documento",
"Document Settings": "Configuración del Documento", "Document Settings": "Configuración del Documento",
"Documentation": "Documentación", "Documentation": "Documentación",
...@@ -195,6 +198,8 @@ ...@@ -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.", "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 Allow": "No Permitir",
"Don't have an account?": "¿No tienes una cuenta?", "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?", "Don't like the style": "No te gusta el estilo?",
"Done": "Hecho", "Done": "Hecho",
"Download": "Descargar", "Download": "Descargar",
...@@ -215,6 +220,7 @@ ...@@ -215,6 +220,7 @@
"Enable Community Sharing": "Habilitar el uso compartido de la comunidad", "Enable Community Sharing": "Habilitar el uso compartido de la comunidad",
"Enable New Sign Ups": "Habilitar Nuevos Registros", "Enable New Sign Ups": "Habilitar Nuevos Registros",
"Enable Web Search": "Habilitar la búsqueda web", "Enable Web Search": "Habilitar la búsqueda web",
"Enabled": "",
"Engine": "", "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.", "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í", "Enter {{role}} message here": "Ingrese el mensaje {{role}} aquí",
...@@ -280,16 +286,22 @@ ...@@ -280,16 +286,22 @@
"Frequency Penalty": "Penalización de frecuencia", "Frequency Penalty": "Penalización de frecuencia",
"Function created successfully": "Función creada exitosamente", "Function created successfully": "Función creada exitosamente",
"Function deleted successfully": "Función borrada 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 disabled": "",
"Function is now globally enabled": "", "Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "Función actualizada exitosamente", "Function updated successfully": "Función actualizada exitosamente",
"Functions": "Funciones", "Functions": "Funciones",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "Funciones importadas exitosamente", "Functions imported successfully": "Funciones importadas exitosamente",
"General": "General", "General": "General",
"General Settings": "Opciones Generales", "General Settings": "Opciones Generales",
"Generate Image": "Generar imagen", "Generate Image": "Generar imagen",
"Generating search query": "Generación de consultas de búsqueda", "Generating search query": "Generación de consultas de búsqueda",
"Generation Info": "Información de Generación", "Generation Info": "Información de Generación",
"Get up and running with": "",
"Global": "", "Global": "",
"Good Response": "Buena Respuesta", "Good Response": "Buena Respuesta",
"Google PSE API Key": "Clave API de Google PSE", "Google PSE API Key": "Clave API de Google PSE",
...@@ -302,6 +314,7 @@ ...@@ -302,6 +314,7 @@
"Hide Model": "Esconder Modelo", "Hide Model": "Esconder Modelo",
"How can I help you today?": "¿Cómo puedo ayudarte hoy?", "How can I help you today?": "¿Cómo puedo ayudarte hoy?",
"Hybrid Search": "Búsqueda Híbrida", "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 (Experimental)": "Generación de imágenes (experimental)",
"Image Generation Engine": "Motor de generación de imágenes", "Image Generation Engine": "Motor de generación de imágenes",
"Image Settings": "Ajustes de la Imágen", "Image Settings": "Ajustes de la Imágen",
...@@ -332,6 +345,7 @@ ...@@ -332,6 +345,7 @@
"Keyboard shortcuts": "Atajos de teclado", "Keyboard shortcuts": "Atajos de teclado",
"Knowledge": "Conocimiento", "Knowledge": "Conocimiento",
"Language": "Lenguaje", "Language": "Lenguaje",
"large language models, locally.": "",
"Last Active": "Última Actividad", "Last Active": "Última Actividad",
"Last Modified": "Modificado por última vez", "Last Modified": "Modificado por última vez",
"Light": "Claro", "Light": "Claro",
...@@ -442,6 +456,7 @@ ...@@ -442,6 +456,7 @@
"Pipelines Valves": "Tuberías Válvulas", "Pipelines Valves": "Tuberías Válvulas",
"Plain text (.txt)": "Texto plano (.txt)", "Plain text (.txt)": "Texto plano (.txt)",
"Playground": "Patio de juegos", "Playground": "Patio de juegos",
"Please carefully review the following warnings:": "",
"Positive attitude": "Actitud positiva", "Positive attitude": "Actitud positiva",
"Previous 30 days": "Últimos 30 días", "Previous 30 days": "Últimos 30 días",
"Previous 7 days": "Últimos 7 días", "Previous 7 days": "Últimos 7 días",
...@@ -479,6 +494,7 @@ ...@@ -479,6 +494,7 @@
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "RTL", "RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "Ejecutando", "Running": "Ejecutando",
"Save": "Guardar", "Save": "Guardar",
"Save & Create": "Guardar y Crear", "Save & Create": "Guardar y Crear",
...@@ -563,6 +579,8 @@ ...@@ -563,6 +579,8 @@
"Success": "Éxito", "Success": "Éxito",
"Successfully updated.": "Actualizado exitosamente.", "Successfully updated.": "Actualizado exitosamente.",
"Suggested": "Sugerido", "Suggested": "Sugerido",
"Support": "",
"Support this plugin:": "",
"System": "Sistema", "System": "Sistema",
"System Prompt": "Prompt del sistema", "System Prompt": "Prompt del sistema",
"Tags": "Etiquetas", "Tags": "Etiquetas",
...@@ -575,6 +593,7 @@ ...@@ -575,6 +593,7 @@
"Text-to-Speech Engine": "Motor de texto a voz", "Text-to-Speech Engine": "Motor de texto a voz",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "¡Gracias por tu retroalimentación!", "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%).", "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", "Theme": "Tema",
"Thinking...": "Pensando...", "Thinking...": "Pensando...",
...@@ -608,7 +627,13 @@ ...@@ -608,7 +627,13 @@
"Tool deleted successfully": "Herramienta eliminada con éxito", "Tool deleted successfully": "Herramienta eliminada con éxito",
"Tool imported successfully": "Herramienta importada con éxito", "Tool imported successfully": "Herramienta importada con éxito",
"Tool updated successfully": "Herramienta actualizada 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": "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 K": "Top K",
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "¿Problemas para acceder a Ollama?", "Trouble accessing Ollama?": "¿Problemas para acceder a Ollama?",
...@@ -650,6 +675,7 @@ ...@@ -650,6 +675,7 @@
"Version": "Versión", "Version": "Versión",
"Voice": "Voz", "Voice": "Voz",
"Warning": "Advertencia", "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.", "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": "Web",
"Web API": "API Web", "Web API": "API Web",
...@@ -676,6 +702,7 @@ ...@@ -676,6 +702,7 @@
"You're a helpful assistant.": "Usted es un asistente útil.", "You're a helpful assistant.": "Usted es un asistente útil.",
"You're now logged in.": "Usted ahora está conectado.", "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 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": "Youtube",
"Youtube Loader Settings": "Configuración del cargador de Youtube" "Youtube Loader Settings": "Configuración del cargador de Youtube"
} }
...@@ -177,6 +177,7 @@ ...@@ -177,6 +177,7 @@
"Deleted {{name}}": "حذف شده {{name}}", "Deleted {{name}}": "حذف شده {{name}}",
"Description": "توضیحات", "Description": "توضیحات",
"Didn't fully follow instructions": "نمی تواند دستورالعمل را کامل پیگیری کند", "Didn't fully follow instructions": "نمی تواند دستورالعمل را کامل پیگیری کند",
"Disabled": "",
"Discover a function": "", "Discover a function": "",
"Discover a model": "کشف یک مدل", "Discover a model": "کشف یک مدل",
"Discover a prompt": "یک اعلان را کشف کنید", "Discover a prompt": "یک اعلان را کشف کنید",
...@@ -188,6 +189,8 @@ ...@@ -188,6 +189,8 @@
"Dismissible": "", "Dismissible": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
"Display the username instead of You in the Chat": "نمایش نام کاربری به جای «شما» در چت", "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": "سند",
"Document Settings": "تنظیمات سند", "Document Settings": "تنظیمات سند",
"Documentation": "", "Documentation": "",
...@@ -195,6 +198,8 @@ ...@@ -195,6 +198,8 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "هیچ اتصال خارجی ایجاد نمی کند و داده های شما به طور ایمن در سرور میزبان محلی شما باقی می ماند.", "does not make any external connections, and your data stays securely on your locally hosted server.": "هیچ اتصال خارجی ایجاد نمی کند و داده های شما به طور ایمن در سرور میزبان محلی شما باقی می ماند.",
"Don't Allow": "اجازه نده", "Don't Allow": "اجازه نده",
"Don't have an account?": "حساب کاربری ندارید؟", "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": "نظری ندارید؟", "Don't like the style": "نظری ندارید؟",
"Done": "", "Done": "",
"Download": "دانلود کن", "Download": "دانلود کن",
...@@ -215,6 +220,7 @@ ...@@ -215,6 +220,7 @@
"Enable Community Sharing": "فعالسازی اشتراک انجمن", "Enable Community Sharing": "فعالسازی اشتراک انجمن",
"Enable New Sign Ups": "فعال کردن ثبت نام\u200cهای جدید", "Enable New Sign Ups": "فعال کردن ثبت نام\u200cهای جدید",
"Enable Web Search": "فعالسازی جستجوی وب", "Enable Web Search": "فعالسازی جستجوی وب",
"Enabled": "",
"Engine": "", "Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "اطمینان حاصل کنید که فایل CSV شما شامل چهار ستون در این ترتیب است: نام، ایمیل، رمز عبور، نقش.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "اطمینان حاصل کنید که فایل CSV شما شامل چهار ستون در این ترتیب است: نام، ایمیل، رمز عبور، نقش.",
"Enter {{role}} message here": "پیام {{role}} را اینجا وارد کنید", "Enter {{role}} message here": "پیام {{role}} را اینجا وارد کنید",
...@@ -280,16 +286,22 @@ ...@@ -280,16 +286,22 @@
"Frequency Penalty": "مجازات فرکانس", "Frequency Penalty": "مجازات فرکانس",
"Function created successfully": "", "Function created successfully": "",
"Function deleted 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 disabled": "",
"Function is now globally enabled": "", "Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "", "Function updated successfully": "",
"Functions": "", "Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "", "Functions imported successfully": "",
"General": "عمومی", "General": "عمومی",
"General Settings": "تنظیمات عمومی", "General Settings": "تنظیمات عمومی",
"Generate Image": "", "Generate Image": "",
"Generating search query": "در حال تولید پرسوجوی جستجو", "Generating search query": "در حال تولید پرسوجوی جستجو",
"Generation Info": "اطلاعات تولید", "Generation Info": "اطلاعات تولید",
"Get up and running with": "",
"Global": "", "Global": "",
"Good Response": "پاسخ خوب", "Good Response": "پاسخ خوب",
"Google PSE API Key": "گوگل PSE API کلید", "Google PSE API Key": "گوگل PSE API کلید",
...@@ -302,6 +314,7 @@ ...@@ -302,6 +314,7 @@
"Hide Model": "", "Hide Model": "",
"How can I help you today?": "امروز چطور می توانم کمک تان کنم؟", "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 (Experimental)": "تولید تصویر (آزمایشی)",
"Image Generation Engine": "موتور تولید تصویر", "Image Generation Engine": "موتور تولید تصویر",
"Image Settings": "تنظیمات تصویر", "Image Settings": "تنظیمات تصویر",
...@@ -332,6 +345,7 @@ ...@@ -332,6 +345,7 @@
"Keyboard shortcuts": "میانبرهای صفحه کلید", "Keyboard shortcuts": "میانبرهای صفحه کلید",
"Knowledge": "", "Knowledge": "",
"Language": "زبان", "Language": "زبان",
"large language models, locally.": "",
"Last Active": "آخرین فعال", "Last Active": "آخرین فعال",
"Last Modified": "", "Last Modified": "",
"Light": "روشن", "Light": "روشن",
...@@ -442,6 +456,7 @@ ...@@ -442,6 +456,7 @@
"Pipelines Valves": "شیرالات خطوط لوله", "Pipelines Valves": "شیرالات خطوط لوله",
"Plain text (.txt)": "متن ساده (.txt)", "Plain text (.txt)": "متن ساده (.txt)",
"Playground": "زمین بازی", "Playground": "زمین بازی",
"Please carefully review the following warnings:": "",
"Positive attitude": "نظرات مثبت", "Positive attitude": "نظرات مثبت",
"Previous 30 days": "30 روز قبل", "Previous 30 days": "30 روز قبل",
"Previous 7 days": "7 روز قبل", "Previous 7 days": "7 روز قبل",
...@@ -479,6 +494,7 @@ ...@@ -479,6 +494,7 @@
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "RTL", "RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "", "Running": "",
"Save": "ذخیره", "Save": "ذخیره",
"Save & Create": "ذخیره و ایجاد", "Save & Create": "ذخیره و ایجاد",
...@@ -562,6 +578,8 @@ ...@@ -562,6 +578,8 @@
"Success": "موفقیت", "Success": "موفقیت",
"Successfully updated.": "با موفقیت به روز شد", "Successfully updated.": "با موفقیت به روز شد",
"Suggested": "پیشنهادی", "Suggested": "پیشنهادی",
"Support": "",
"Support this plugin:": "",
"System": "سیستم", "System": "سیستم",
"System Prompt": "پرامپت سیستم", "System Prompt": "پرامپت سیستم",
"Tags": "تگ\u200cها", "Tags": "تگ\u200cها",
...@@ -574,6 +592,7 @@ ...@@ -574,6 +592,7 @@
"Text-to-Speech Engine": "موتور تبدیل متن به گفتار", "Text-to-Speech Engine": "موتور تبدیل متن به گفتار",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "با تشکر از بازخورد شما!", "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%) باشد.", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "امتیاز باید یک مقدار بین 0.0 (0%) و 1.0 (100%) باشد.",
"Theme": "قالب", "Theme": "قالب",
"Thinking...": "", "Thinking...": "",
...@@ -607,7 +626,13 @@ ...@@ -607,7 +626,13 @@
"Tool deleted successfully": "", "Tool deleted successfully": "",
"Tool imported successfully": "", "Tool imported successfully": "",
"Tool updated 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": "",
"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 K": "Top K",
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "در دسترسی به اولاما مشکل دارید؟", "Trouble accessing Ollama?": "در دسترسی به اولاما مشکل دارید؟",
...@@ -649,6 +674,7 @@ ...@@ -649,6 +674,7 @@
"Version": "نسخه", "Version": "نسخه",
"Voice": "", "Voice": "",
"Warning": "هشدار", "Warning": "هشدار",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "هشدار: اگر شما به روز کنید یا تغییر دهید مدل شما، باید تمام سند ها را مجددا وارد کنید.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "هشدار: اگر شما به روز کنید یا تغییر دهید مدل شما، باید تمام سند ها را مجددا وارد کنید.",
"Web": "وب", "Web": "وب",
"Web API": "", "Web API": "",
...@@ -675,6 +701,7 @@ ...@@ -675,6 +701,7 @@
"You're a helpful assistant.": "تو یک دستیار سودمند هستی.", "You're a helpful assistant.": "تو یک دستیار سودمند هستی.",
"You're now logged in.": "شما اکنون وارد شده\u200cاید.", "You're now logged in.": "شما اکنون وارد شده\u200cاید.",
"Your account status is currently pending activation.": "", "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 @@ ...@@ -177,6 +177,7 @@
"Deleted {{name}}": "Poistettu {{nimi}}", "Deleted {{name}}": "Poistettu {{nimi}}",
"Description": "Kuvaus", "Description": "Kuvaus",
"Didn't fully follow instructions": "Ei noudattanut ohjeita täysin", "Didn't fully follow instructions": "Ei noudattanut ohjeita täysin",
"Disabled": "",
"Discover a function": "", "Discover a function": "",
"Discover a model": "Tutustu malliin", "Discover a model": "Tutustu malliin",
"Discover a prompt": "Löydä kehote", "Discover a prompt": "Löydä kehote",
...@@ -188,6 +189,8 @@ ...@@ -188,6 +189,8 @@
"Dismissible": "", "Dismissible": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
"Display the username instead of You in the Chat": "Näytä käyttäjänimi keskustelussa", "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": "Asiakirja",
"Document Settings": "Asiakirja-asetukset", "Document Settings": "Asiakirja-asetukset",
"Documentation": "", "Documentation": "",
...@@ -195,6 +198,8 @@ ...@@ -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.", "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 Allow": "Älä salli",
"Don't have an account?": "Eikö sinulla ole tiliä?", "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ä", "Don't like the style": "En pidä tyylistä",
"Done": "", "Done": "",
"Download": "Lataa", "Download": "Lataa",
...@@ -215,6 +220,7 @@ ...@@ -215,6 +220,7 @@
"Enable Community Sharing": "Ota yhteisön jakaminen käyttöön", "Enable Community Sharing": "Ota yhteisön jakaminen käyttöön",
"Enable New Sign Ups": "Salli uudet rekisteröitymiset", "Enable New Sign Ups": "Salli uudet rekisteröitymiset",
"Enable Web Search": "Ota verkkohaku käyttöön", "Enable Web Search": "Ota verkkohaku käyttöön",
"Enabled": "",
"Engine": "", "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.", "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", "Enter {{role}} message here": "Kirjoita {{role}} viesti tähän",
...@@ -280,16 +286,22 @@ ...@@ -280,16 +286,22 @@
"Frequency Penalty": "Taajuussakko", "Frequency Penalty": "Taajuussakko",
"Function created successfully": "", "Function created successfully": "",
"Function deleted 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 disabled": "",
"Function is now globally enabled": "", "Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "", "Function updated successfully": "",
"Functions": "", "Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "", "Functions imported successfully": "",
"General": "Yleinen", "General": "Yleinen",
"General Settings": "Yleisasetukset", "General Settings": "Yleisasetukset",
"Generate Image": "", "Generate Image": "",
"Generating search query": "Hakukyselyn luominen", "Generating search query": "Hakukyselyn luominen",
"Generation Info": "Generointitiedot", "Generation Info": "Generointitiedot",
"Get up and running with": "",
"Global": "", "Global": "",
"Good Response": "Hyvä vastaus", "Good Response": "Hyvä vastaus",
"Google PSE API Key": "Google PSE API -avain", "Google PSE API Key": "Google PSE API -avain",
...@@ -302,6 +314,7 @@ ...@@ -302,6 +314,7 @@
"Hide Model": "", "Hide Model": "",
"How can I help you today?": "Kuinka voin auttaa tänään?", "How can I help you today?": "Kuinka voin auttaa tänään?",
"Hybrid Search": "Hybridihaku", "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 (Experimental)": "Kuvagenerointi (kokeellinen)",
"Image Generation Engine": "Kuvagenerointimoottori", "Image Generation Engine": "Kuvagenerointimoottori",
"Image Settings": "Kuva-asetukset", "Image Settings": "Kuva-asetukset",
...@@ -332,6 +345,7 @@ ...@@ -332,6 +345,7 @@
"Keyboard shortcuts": "Pikanäppäimet", "Keyboard shortcuts": "Pikanäppäimet",
"Knowledge": "", "Knowledge": "",
"Language": "Kieli", "Language": "Kieli",
"large language models, locally.": "",
"Last Active": "Viimeksi aktiivinen", "Last Active": "Viimeksi aktiivinen",
"Last Modified": "", "Last Modified": "",
"Light": "Vaalea", "Light": "Vaalea",
...@@ -442,6 +456,7 @@ ...@@ -442,6 +456,7 @@
"Pipelines Valves": "Putkistot Venttiilit", "Pipelines Valves": "Putkistot Venttiilit",
"Plain text (.txt)": "Pelkkä teksti (.txt)", "Plain text (.txt)": "Pelkkä teksti (.txt)",
"Playground": "Leikkipaikka", "Playground": "Leikkipaikka",
"Please carefully review the following warnings:": "",
"Positive attitude": "Positiivinen asenne", "Positive attitude": "Positiivinen asenne",
"Previous 30 days": "Edelliset 30 päivää", "Previous 30 days": "Edelliset 30 päivää",
"Previous 7 days": "Edelliset 7 päivää", "Previous 7 days": "Edelliset 7 päivää",
...@@ -479,6 +494,7 @@ ...@@ -479,6 +494,7 @@
"Rosé Pine": "Rosee-mänty", "Rosé Pine": "Rosee-mänty",
"Rosé Pine Dawn": "Aamuinen Rosee-mänty", "Rosé Pine Dawn": "Aamuinen Rosee-mänty",
"RTL": "RTL", "RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "", "Running": "",
"Save": "Tallenna", "Save": "Tallenna",
"Save & Create": "Tallenna ja luo", "Save & Create": "Tallenna ja luo",
...@@ -562,6 +578,8 @@ ...@@ -562,6 +578,8 @@
"Success": "Onnistui", "Success": "Onnistui",
"Successfully updated.": "Päivitetty onnistuneesti.", "Successfully updated.": "Päivitetty onnistuneesti.",
"Suggested": "Suositeltu", "Suggested": "Suositeltu",
"Support": "",
"Support this plugin:": "",
"System": "Järjestelmä", "System": "Järjestelmä",
"System Prompt": "Järjestelmäkehote", "System Prompt": "Järjestelmäkehote",
"Tags": "Tagit", "Tags": "Tagit",
...@@ -574,6 +592,7 @@ ...@@ -574,6 +592,7 @@
"Text-to-Speech Engine": "Puhemoottori", "Text-to-Speech Engine": "Puhemoottori",
"Tfs Z": "TFS Z", "Tfs Z": "TFS Z",
"Thanks for your feedback!": "Kiitos palautteestasi!", "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%).", "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", "Theme": "Teema",
"Thinking...": "", "Thinking...": "",
...@@ -607,7 +626,13 @@ ...@@ -607,7 +626,13 @@
"Tool deleted successfully": "", "Tool deleted successfully": "",
"Tool imported successfully": "", "Tool imported successfully": "",
"Tool updated 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": "",
"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 K": "Top K",
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Ongelmia Ollama-yhteydessä?", "Trouble accessing Ollama?": "Ongelmia Ollama-yhteydessä?",
...@@ -649,6 +674,7 @@ ...@@ -649,6 +674,7 @@
"Version": "Versio", "Version": "Versio",
"Voice": "", "Voice": "",
"Warning": "Varoitus", "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.", "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": "Web",
"Web API": "", "Web API": "",
...@@ -675,6 +701,7 @@ ...@@ -675,6 +701,7 @@
"You're a helpful assistant.": "Olet avulias apulainen.", "You're a helpful assistant.": "Olet avulias apulainen.",
"You're now logged in.": "Olet nyt kirjautunut sisään.", "You're now logged in.": "Olet nyt kirjautunut sisään.",
"Your account status is currently pending activation.": "", "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": "Youtube",
"Youtube Loader Settings": "Youtube Loader-asetukset" "Youtube Loader Settings": "Youtube Loader-asetukset"
} }
...@@ -177,6 +177,7 @@ ...@@ -177,6 +177,7 @@
"Deleted {{name}}": "Supprimé {{name}}", "Deleted {{name}}": "Supprimé {{name}}",
"Description": "Description", "Description": "Description",
"Didn't fully follow instructions": "N'a pas entièrement respecté les instructions", "Didn't fully follow instructions": "N'a pas entièrement respecté les instructions",
"Disabled": "",
"Discover a function": "Découvrez une fonction", "Discover a function": "Découvrez une fonction",
"Discover a model": "Découvrir un modèle", "Discover a model": "Découvrir un modèle",
"Discover a prompt": "Découvrir une suggestion", "Discover a prompt": "Découvrir une suggestion",
...@@ -188,6 +189,8 @@ ...@@ -188,6 +189,8 @@
"Dismissible": "Fermeture", "Dismissible": "Fermeture",
"Display Emoji in Call": "Afficher les emojis pendant l'appel", "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", "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": "Document",
"Document Settings": "Paramètres du document", "Document Settings": "Paramètres du document",
"Documentation": "Documentation", "Documentation": "Documentation",
...@@ -195,6 +198,8 @@ ...@@ -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.", "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 Allow": "Ne pas autoriser",
"Don't have an account?": "Vous n'avez pas de compte ?", "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", "Don't like the style": "N'apprécie pas le style",
"Done": "Terminé", "Done": "Terminé",
"Download": "Télécharger", "Download": "Télécharger",
...@@ -215,6 +220,7 @@ ...@@ -215,6 +220,7 @@
"Enable Community Sharing": "Activer le partage communautaire", "Enable Community Sharing": "Activer le partage communautaire",
"Enable New Sign Ups": "Activer les nouvelles inscriptions", "Enable New Sign Ups": "Activer les nouvelles inscriptions",
"Enable Web Search": "Activer la recherche sur le Web", "Enable Web Search": "Activer la recherche sur le Web",
"Enabled": "",
"Engine": "Moteur", "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.", "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", "Enter {{role}} message here": "Entrez le message {{role}} ici",
...@@ -280,16 +286,22 @@ ...@@ -280,16 +286,22 @@
"Frequency Penalty": "Pénalité de fréquence", "Frequency Penalty": "Pénalité de fréquence",
"Function created successfully": "La fonction a été créée avec succès", "Function created successfully": "La fonction a été créée avec succès",
"Function deleted successfully": "Fonction supprimé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 disabled": "",
"Function is now globally enabled": "", "Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "La fonction a été mise à jour avec succès", "Function updated successfully": "La fonction a été mise à jour avec succès",
"Functions": "Fonctions", "Functions": "Fonctions",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "Fonctions importées avec succès", "Functions imported successfully": "Fonctions importées avec succès",
"General": "Général", "General": "Général",
"General Settings": "Paramètres Généraux", "General Settings": "Paramètres Généraux",
"Generate Image": "Générer une image", "Generate Image": "Générer une image",
"Generating search query": "Génération d'une requête de recherche", "Generating search query": "Génération d'une requête de recherche",
"Generation Info": "Informations sur la génération", "Generation Info": "Informations sur la génération",
"Get up and running with": "",
"Global": "Mondial", "Global": "Mondial",
"Good Response": "Bonne réponse", "Good Response": "Bonne réponse",
"Google PSE API Key": "Clé API Google PSE", "Google PSE API Key": "Clé API Google PSE",
...@@ -302,6 +314,7 @@ ...@@ -302,6 +314,7 @@
"Hide Model": "Masquer le modèle", "Hide Model": "Masquer le modèle",
"How can I help you today?": "Comment puis-je vous être utile aujourd'hui ?", "How can I help you today?": "Comment puis-je vous être utile aujourd'hui ?",
"Hybrid Search": "Recherche hybride", "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 (Experimental)": "Génération d'images (expérimental)",
"Image Generation Engine": "Moteur de génération d'images", "Image Generation Engine": "Moteur de génération d'images",
"Image Settings": "Paramètres de l'image", "Image Settings": "Paramètres de l'image",
...@@ -332,6 +345,7 @@ ...@@ -332,6 +345,7 @@
"Keyboard shortcuts": "Raccourcis clavier", "Keyboard shortcuts": "Raccourcis clavier",
"Knowledge": "Connaissance", "Knowledge": "Connaissance",
"Language": "Langue", "Language": "Langue",
"large language models, locally.": "",
"Last Active": "Dernière activité", "Last Active": "Dernière activité",
"Last Modified": "Dernière modification", "Last Modified": "Dernière modification",
"Light": "Lumineux", "Light": "Lumineux",
...@@ -442,6 +456,7 @@ ...@@ -442,6 +456,7 @@
"Pipelines Valves": "Vannes de Pipelines", "Pipelines Valves": "Vannes de Pipelines",
"Plain text (.txt)": "Texte simple (.txt)", "Plain text (.txt)": "Texte simple (.txt)",
"Playground": "Aire de jeux", "Playground": "Aire de jeux",
"Please carefully review the following warnings:": "",
"Positive attitude": "Attitude positive", "Positive attitude": "Attitude positive",
"Previous 30 days": "30 derniers jours", "Previous 30 days": "30 derniers jours",
"Previous 7 days": "7 derniers jours", "Previous 7 days": "7 derniers jours",
...@@ -479,6 +494,7 @@ ...@@ -479,6 +494,7 @@
"Rosé Pine": "Pin rosé", "Rosé Pine": "Pin rosé",
"Rosé Pine Dawn": "Aube de Pin Rosé", "Rosé Pine Dawn": "Aube de Pin Rosé",
"RTL": "RTL", "RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "Courir", "Running": "Courir",
"Save": "Enregistrer", "Save": "Enregistrer",
"Save & Create": "Enregistrer & Créer", "Save & Create": "Enregistrer & Créer",
...@@ -563,6 +579,8 @@ ...@@ -563,6 +579,8 @@
"Success": "Réussite", "Success": "Réussite",
"Successfully updated.": "Mise à jour réussie.", "Successfully updated.": "Mise à jour réussie.",
"Suggested": "Sugéré", "Suggested": "Sugéré",
"Support": "",
"Support this plugin:": "",
"System": "Système", "System": "Système",
"System Prompt": "Prompt du système", "System Prompt": "Prompt du système",
"Tags": "Balises", "Tags": "Balises",
...@@ -575,6 +593,7 @@ ...@@ -575,6 +593,7 @@
"Text-to-Speech Engine": "Moteur de synthèse vocale", "Text-to-Speech Engine": "Moteur de synthèse vocale",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "Merci pour vos commentaires !", "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%).", "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", "Theme": "Thème",
"Thinking...": "En train de réfléchir...", "Thinking...": "En train de réfléchir...",
...@@ -608,7 +627,13 @@ ...@@ -608,7 +627,13 @@
"Tool deleted successfully": "Outil supprimé avec succès", "Tool deleted successfully": "Outil supprimé avec succès",
"Tool imported successfully": "Outil importé avec succès", "Tool imported successfully": "Outil importé avec succès",
"Tool updated successfully": "L'outil a été mis à jour 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": "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 K": "Top K",
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Rencontrez-vous des difficultés pour accéder à Ollama ?", "Trouble accessing Ollama?": "Rencontrez-vous des difficultés pour accéder à Ollama ?",
...@@ -650,6 +675,7 @@ ...@@ -650,6 +675,7 @@
"Version": "Version améliorée", "Version": "Version améliorée",
"Voice": "Voix", "Voice": "Voix",
"Warning": "Avertissement !", "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.", "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": "Web",
"Web API": "API Web", "Web API": "API Web",
...@@ -676,6 +702,7 @@ ...@@ -676,6 +702,7 @@
"You're a helpful assistant.": "Vous êtes un assistant serviable.", "You're a helpful assistant.": "Vous êtes un assistant serviable.",
"You're now logged in.": "Vous êtes désormais connecté.", "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 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": "YouTube",
"Youtube Loader Settings": "Paramètres de l'outil de téléchargement YouTube" "Youtube Loader Settings": "Paramètres de l'outil de téléchargement YouTube"
} }
...@@ -177,6 +177,7 @@ ...@@ -177,6 +177,7 @@
"Deleted {{name}}": "Supprimé {{name}}", "Deleted {{name}}": "Supprimé {{name}}",
"Description": "Description", "Description": "Description",
"Didn't fully follow instructions": "N'a pas entièrement respecté les instructions", "Didn't fully follow instructions": "N'a pas entièrement respecté les instructions",
"Disabled": "",
"Discover a function": "Découvrez une fonction", "Discover a function": "Découvrez une fonction",
"Discover a model": "Découvrir un modèle", "Discover a model": "Découvrir un modèle",
"Discover a prompt": "Découvrir une suggestion", "Discover a prompt": "Découvrir une suggestion",
...@@ -188,6 +189,8 @@ ...@@ -188,6 +189,8 @@
"Dismissible": "Fermeture", "Dismissible": "Fermeture",
"Display Emoji in Call": "Afficher les emojis pendant l'appel", "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", "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": "Document",
"Document Settings": "Paramètres du document", "Document Settings": "Paramètres du document",
"Documentation": "Documentation", "Documentation": "Documentation",
...@@ -195,6 +198,8 @@ ...@@ -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.", "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 Allow": "Ne pas autoriser",
"Don't have an account?": "Vous n'avez pas de compte ?", "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", "Don't like the style": "N'apprécie pas le style",
"Done": "Terminé", "Done": "Terminé",
"Download": "Télécharger", "Download": "Télécharger",
...@@ -215,6 +220,7 @@ ...@@ -215,6 +220,7 @@
"Enable Community Sharing": "Activer le partage communautaire", "Enable Community Sharing": "Activer le partage communautaire",
"Enable New Sign Ups": "Activer les nouvelles inscriptions", "Enable New Sign Ups": "Activer les nouvelles inscriptions",
"Enable Web Search": "Activer la recherche web", "Enable Web Search": "Activer la recherche web",
"Enabled": "",
"Engine": "", "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.", "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", "Enter {{role}} message here": "Entrez le message {{role}} ici",
...@@ -280,16 +286,22 @@ ...@@ -280,16 +286,22 @@
"Frequency Penalty": "Pénalité de fréquence", "Frequency Penalty": "Pénalité de fréquence",
"Function created successfully": "La fonction a été créée avec succès", "Function created successfully": "La fonction a été créée avec succès",
"Function deleted successfully": "Fonction supprimé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 disabled": "",
"Function is now globally enabled": "", "Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "La fonction a été mise à jour avec succès", "Function updated successfully": "La fonction a été mise à jour avec succès",
"Functions": "Fonctions", "Functions": "Fonctions",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "Fonctions importées avec succès", "Functions imported successfully": "Fonctions importées avec succès",
"General": "Général", "General": "Général",
"General Settings": "Paramètres Généraux", "General Settings": "Paramètres Généraux",
"Generate Image": "Générer une image", "Generate Image": "Générer une image",
"Generating search query": "Génération d'une requête de recherche", "Generating search query": "Génération d'une requête de recherche",
"Generation Info": "Informations sur la génération", "Generation Info": "Informations sur la génération",
"Get up and running with": "",
"Global": "Mondial", "Global": "Mondial",
"Good Response": "Bonne réponse", "Good Response": "Bonne réponse",
"Google PSE API Key": "Clé API Google PSE", "Google PSE API Key": "Clé API Google PSE",
...@@ -302,6 +314,7 @@ ...@@ -302,6 +314,7 @@
"Hide Model": "Masquer le modèle", "Hide Model": "Masquer le modèle",
"How can I help you today?": "Comment puis-je vous être utile aujourd'hui ?", "How can I help you today?": "Comment puis-je vous être utile aujourd'hui ?",
"Hybrid Search": "Recherche hybride", "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 (Experimental)": "Génération d'images (expérimental)",
"Image Generation Engine": "Moteur de génération d'images", "Image Generation Engine": "Moteur de génération d'images",
"Image Settings": "Paramètres de l'image", "Image Settings": "Paramètres de l'image",
...@@ -332,6 +345,7 @@ ...@@ -332,6 +345,7 @@
"Keyboard shortcuts": "Raccourcis clavier", "Keyboard shortcuts": "Raccourcis clavier",
"Knowledge": "Connaissance", "Knowledge": "Connaissance",
"Language": "Langue", "Language": "Langue",
"large language models, locally.": "",
"Last Active": "Dernière activité", "Last Active": "Dernière activité",
"Last Modified": "Dernière modification", "Last Modified": "Dernière modification",
"Light": "Lumineux", "Light": "Lumineux",
...@@ -442,6 +456,7 @@ ...@@ -442,6 +456,7 @@
"Pipelines Valves": "Vannes de Pipelines", "Pipelines Valves": "Vannes de Pipelines",
"Plain text (.txt)": "Texte simple (.txt)", "Plain text (.txt)": "Texte simple (.txt)",
"Playground": "Aire de jeux", "Playground": "Aire de jeux",
"Please carefully review the following warnings:": "",
"Positive attitude": "Attitude positive", "Positive attitude": "Attitude positive",
"Previous 30 days": "30 derniers jours", "Previous 30 days": "30 derniers jours",
"Previous 7 days": "7 derniers jours", "Previous 7 days": "7 derniers jours",
...@@ -479,6 +494,7 @@ ...@@ -479,6 +494,7 @@
"Rosé Pine": "Pin rosé", "Rosé Pine": "Pin rosé",
"Rosé Pine Dawn": "Aube de Pin Rosé", "Rosé Pine Dawn": "Aube de Pin Rosé",
"RTL": "RTL", "RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "Courir", "Running": "Courir",
"Save": "Enregistrer", "Save": "Enregistrer",
"Save & Create": "Enregistrer & Créer", "Save & Create": "Enregistrer & Créer",
...@@ -563,6 +579,8 @@ ...@@ -563,6 +579,8 @@
"Success": "Réussite", "Success": "Réussite",
"Successfully updated.": "Mise à jour réussie.", "Successfully updated.": "Mise à jour réussie.",
"Suggested": "Sugéré", "Suggested": "Sugéré",
"Support": "",
"Support this plugin:": "",
"System": "Système", "System": "Système",
"System Prompt": "Prompt du système", "System Prompt": "Prompt du système",
"Tags": "Balises", "Tags": "Balises",
...@@ -575,6 +593,7 @@ ...@@ -575,6 +593,7 @@
"Text-to-Speech Engine": "Moteur de synthèse vocale", "Text-to-Speech Engine": "Moteur de synthèse vocale",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "Merci pour vos commentaires !", "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%).", "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", "Theme": "Thème",
"Thinking...": "En train de réfléchir...", "Thinking...": "En train de réfléchir...",
...@@ -608,7 +627,13 @@ ...@@ -608,7 +627,13 @@
"Tool deleted successfully": "Outil supprimé avec succès", "Tool deleted successfully": "Outil supprimé avec succès",
"Tool imported successfully": "Outil importé avec succès", "Tool imported successfully": "Outil importé avec succès",
"Tool updated successfully": "L'outil a été mis à jour 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": "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 K": "Top K",
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Rencontrez-vous des difficultés pour accéder à Ollama ?", "Trouble accessing Ollama?": "Rencontrez-vous des difficultés pour accéder à Ollama ?",
...@@ -650,6 +675,7 @@ ...@@ -650,6 +675,7 @@
"Version": "Version améliorée", "Version": "Version améliorée",
"Voice": "Voix", "Voice": "Voix",
"Warning": "Avertissement !", "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.", "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": "Web",
"Web API": "API Web", "Web API": "API Web",
...@@ -676,6 +702,7 @@ ...@@ -676,6 +702,7 @@
"You're a helpful assistant.": "Vous êtes un assistant serviable.", "You're a helpful assistant.": "Vous êtes un assistant serviable.",
"You're now logged in.": "Vous êtes désormais connecté.", "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 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": "YouTube",
"Youtube Loader Settings": "Paramètres de l'outil de téléchargement YouTube" "Youtube Loader Settings": "Paramètres de l'outil de téléchargement YouTube"
} }
...@@ -177,6 +177,7 @@ ...@@ -177,6 +177,7 @@
"Deleted {{name}}": "נמחק {{name}}", "Deleted {{name}}": "נמחק {{name}}",
"Description": "תיאור", "Description": "תיאור",
"Didn't fully follow instructions": "לא עקב אחרי ההוראות באופן מלא", "Didn't fully follow instructions": "לא עקב אחרי ההוראות באופן מלא",
"Disabled": "",
"Discover a function": "", "Discover a function": "",
"Discover a model": "גלה מודל", "Discover a model": "גלה מודל",
"Discover a prompt": "גלה פקודה", "Discover a prompt": "גלה פקודה",
...@@ -188,6 +189,8 @@ ...@@ -188,6 +189,8 @@
"Dismissible": "", "Dismissible": "",
"Display Emoji in Call": "", "Display Emoji in Call": "",
"Display the username instead of You in the Chat": "הצג את שם המשתמש במקום 'אתה' בצ'אט", "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": "מסמך",
"Document Settings": "הגדרות מסמך", "Document Settings": "הגדרות מסמך",
"Documentation": "", "Documentation": "",
...@@ -195,6 +198,8 @@ ...@@ -195,6 +198,8 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "לא מבצע חיבורים חיצוניים, והנתונים שלך נשמרים באופן מאובטח בשרת המקומי שלך.", "does not make any external connections, and your data stays securely on your locally hosted server.": "לא מבצע חיבורים חיצוניים, והנתונים שלך נשמרים באופן מאובטח בשרת המקומי שלך.",
"Don't Allow": "אל תאפשר", "Don't Allow": "אל תאפשר",
"Don't have an account?": "אין לך חשבון?", "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": "לא אוהב את הסגנון", "Don't like the style": "לא אוהב את הסגנון",
"Done": "", "Done": "",
"Download": "הורד", "Download": "הורד",
...@@ -215,6 +220,7 @@ ...@@ -215,6 +220,7 @@
"Enable Community Sharing": "הפיכת שיתוף קהילה לזמין", "Enable Community Sharing": "הפיכת שיתוף קהילה לזמין",
"Enable New Sign Ups": "אפשר הרשמות חדשות", "Enable New Sign Ups": "אפשר הרשמות חדשות",
"Enable Web Search": "הפיכת חיפוש באינטרנט לזמין", "Enable Web Search": "הפיכת חיפוש באינטרנט לזמין",
"Enabled": "",
"Engine": "", "Engine": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ודא שקובץ ה-CSV שלך כולל 4 עמודות בסדר הבא: שם, דוא\"ל, סיסמה, תפקיד.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ודא שקובץ ה-CSV שלך כולל 4 עמודות בסדר הבא: שם, דוא\"ל, סיסמה, תפקיד.",
"Enter {{role}} message here": "הזן הודעת {{role}} כאן", "Enter {{role}} message here": "הזן הודעת {{role}} כאן",
...@@ -280,16 +286,22 @@ ...@@ -280,16 +286,22 @@
"Frequency Penalty": "עונש תדירות", "Frequency Penalty": "עונש תדירות",
"Function created successfully": "", "Function created successfully": "",
"Function deleted 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 disabled": "",
"Function is now globally enabled": "", "Function is now globally enabled": "",
"Function Name (e.g. My Filter)": "",
"Function updated successfully": "", "Function updated successfully": "",
"Functions": "", "Functions": "",
"Functions allow arbitrary code execution": "",
"Functions allow arbitrary code execution.": "",
"Functions imported successfully": "", "Functions imported successfully": "",
"General": "כללי", "General": "כללי",
"General Settings": "הגדרות כלליות", "General Settings": "הגדרות כלליות",
"Generate Image": "", "Generate Image": "",
"Generating search query": "יצירת שאילתת חיפוש", "Generating search query": "יצירת שאילתת חיפוש",
"Generation Info": "מידע על היצירה", "Generation Info": "מידע על היצירה",
"Get up and running with": "",
"Global": "", "Global": "",
"Good Response": "תגובה טובה", "Good Response": "תגובה טובה",
"Google PSE API Key": "מפתח API של Google PSE", "Google PSE API Key": "מפתח API של Google PSE",
...@@ -302,6 +314,7 @@ ...@@ -302,6 +314,7 @@
"Hide Model": "", "Hide Model": "",
"How can I help you today?": "כיצד אוכל לעזור לך היום?", "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 (Experimental)": "יצירת תמונות (ניסיוני)",
"Image Generation Engine": "מנוע יצירת תמונות", "Image Generation Engine": "מנוע יצירת תמונות",
"Image Settings": "הגדרות תמונה", "Image Settings": "הגדרות תמונה",
...@@ -332,6 +345,7 @@ ...@@ -332,6 +345,7 @@
"Keyboard shortcuts": "קיצורי מקלדת", "Keyboard shortcuts": "קיצורי מקלדת",
"Knowledge": "", "Knowledge": "",
"Language": "שפה", "Language": "שפה",
"large language models, locally.": "",
"Last Active": "פעיל לאחרונה", "Last Active": "פעיל לאחרונה",
"Last Modified": "", "Last Modified": "",
"Light": "בהיר", "Light": "בהיר",
...@@ -442,6 +456,7 @@ ...@@ -442,6 +456,7 @@
"Pipelines Valves": "צינורות שסתומים", "Pipelines Valves": "צינורות שסתומים",
"Plain text (.txt)": "טקסט פשוט (.txt)", "Plain text (.txt)": "טקסט פשוט (.txt)",
"Playground": "אזור משחקים", "Playground": "אזור משחקים",
"Please carefully review the following warnings:": "",
"Positive attitude": "גישה חיובית", "Positive attitude": "גישה חיובית",
"Previous 30 days": "30 הימים הקודמים", "Previous 30 days": "30 הימים הקודמים",
"Previous 7 days": "7 הימים הקודמים", "Previous 7 days": "7 הימים הקודמים",
...@@ -479,6 +494,7 @@ ...@@ -479,6 +494,7 @@
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "RTL", "RTL": "RTL",
"Run Llama 2, Code Llama, and other models. Customize and create your own.": "",
"Running": "", "Running": "",
"Save": "שמור", "Save": "שמור",
"Save & Create": "שמור וצור", "Save & Create": "שמור וצור",
...@@ -563,6 +579,8 @@ ...@@ -563,6 +579,8 @@
"Success": "הצלחה", "Success": "הצלחה",
"Successfully updated.": "עדכון הצלחה.", "Successfully updated.": "עדכון הצלחה.",
"Suggested": "מומלץ", "Suggested": "מומלץ",
"Support": "",
"Support this plugin:": "",
"System": "מערכת", "System": "מערכת",
"System Prompt": "תגובת מערכת", "System Prompt": "תגובת מערכת",
"Tags": "תגיות", "Tags": "תגיות",
...@@ -575,6 +593,7 @@ ...@@ -575,6 +593,7 @@
"Text-to-Speech Engine": "מנוע טקסט לדיבור", "Text-to-Speech Engine": "מנוע טקסט לדיבור",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "תודה על המשוב שלך!", "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%)", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "ציון צריך להיות ערך בין 0.0 (0%) ל-1.0 (100%)",
"Theme": "נושא", "Theme": "נושא",
"Thinking...": "", "Thinking...": "",
...@@ -608,7 +627,13 @@ ...@@ -608,7 +627,13 @@
"Tool deleted successfully": "", "Tool deleted successfully": "",
"Tool imported successfully": "", "Tool imported successfully": "",
"Tool updated 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": "",
"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 K": "Top K",
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "קשה לגשת לOllama?", "Trouble accessing Ollama?": "קשה לגשת לOllama?",
...@@ -650,6 +675,7 @@ ...@@ -650,6 +675,7 @@
"Version": "גרסה", "Version": "גרסה",
"Voice": "", "Voice": "",
"Warning": "אזהרה", "Warning": "אזהרה",
"Warning:": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "אזהרה: אם תעדכן או תשנה את מודל ההטבעה שלך, יהיה עליך לייבא מחדש את כל המסמכים.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "אזהרה: אם תעדכן או תשנה את מודל ההטבעה שלך, יהיה עליך לייבא מחדש את כל המסמכים.",
"Web": "רשת", "Web": "רשת",
"Web API": "", "Web API": "",
...@@ -676,6 +702,7 @@ ...@@ -676,6 +702,7 @@
"You're a helpful assistant.": "אתה עוזר מועיל.", "You're a helpful assistant.": "אתה עוזר מועיל.",
"You're now logged in.": "כעת אתה מחובר.", "You're now logged in.": "כעת אתה מחובר.",
"Your account status is currently pending activation.": "", "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": "Youtube",
"Youtube Loader Settings": "הגדרות Youtube Loader" "Youtube Loader Settings": "הגדרות Youtube Loader"
} }
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