mirror of
https://github.com/open-webui/open-webui.git
synced 2025-03-27 02:02:31 +01:00
refac
This commit is contained in:
parent
5551a4bff5
commit
426f8f29ad
@ -65,7 +65,7 @@
|
||||
};
|
||||
|
||||
const shareHandler = async () => {
|
||||
toast.success($i18n.t('Redirecting you to OpenWebUI Community'));
|
||||
toast.success($i18n.t('Redirecting you to Open WebUI Community'));
|
||||
|
||||
// remove snapshot from feedbacks
|
||||
const feedbacksToShare = feedbacks.map((f) => {
|
||||
@ -266,7 +266,7 @@
|
||||
}}
|
||||
>
|
||||
<div class=" self-center mr-2 font-medium line-clamp-1">
|
||||
{$i18n.t('Share to OpenWebUI Community')}
|
||||
{$i18n.t('Share to Open WebUI Community')}
|
||||
</div>
|
||||
|
||||
<div class=" self-center">
|
||||
|
@ -65,7 +65,7 @@
|
||||
return null;
|
||||
});
|
||||
|
||||
toast.success($i18n.t('Redirecting you to OpenWebUI Community'));
|
||||
toast.success($i18n.t('Redirecting you to Open WebUI Community'));
|
||||
|
||||
const url = 'https://openwebui.com';
|
||||
|
||||
@ -453,7 +453,7 @@
|
||||
{#if $config?.features.enable_community_sharing}
|
||||
<div class=" my-16">
|
||||
<div class=" text-xl font-medium mb-1 line-clamp-1">
|
||||
{$i18n.t('Made by OpenWebUI Community')}
|
||||
{$i18n.t('Made by Open WebUI Community')}
|
||||
</div>
|
||||
|
||||
<a
|
||||
|
@ -638,7 +638,7 @@
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 20 20"
|
||||
fill="currentColor"
|
||||
class="w-4 h-4"
|
||||
class="size-4"
|
||||
>
|
||||
<path
|
||||
d="M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z"
|
||||
@ -1242,7 +1242,7 @@
|
||||
{/if}
|
||||
|
||||
{#if !history.currentId || history.messages[history.currentId]?.done == true}
|
||||
{#if prompt === ''}
|
||||
{#if prompt === '' && files.length === 0}
|
||||
<div class=" flex items-center">
|
||||
<Tooltip content={$i18n.t('Call')}>
|
||||
<button
|
||||
@ -1301,13 +1301,13 @@
|
||||
<Tooltip content={$i18n.t('Send message')}>
|
||||
<button
|
||||
id="send-message-button"
|
||||
class="{prompt !== ''
|
||||
class="{!(prompt === '' && files.length === 0)
|
||||
? webSearchEnabled || ($settings?.webSearch ?? false) === 'always'
|
||||
? 'bg-blue-500 text-white hover:bg-blue-400 '
|
||||
: 'bg-black text-white hover:bg-gray-900 dark:bg-white dark:text-black dark:hover:bg-gray-100 '
|
||||
: 'text-white bg-gray-200 dark:text-gray-900 dark:bg-gray-700 disabled'} transition rounded-full p-1.5 self-center"
|
||||
type="submit"
|
||||
disabled={prompt === ''}
|
||||
disabled={prompt === '' && files.length === 0}
|
||||
>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
|
@ -30,7 +30,7 @@
|
||||
const _chat = chat.chat;
|
||||
console.log('share', _chat);
|
||||
|
||||
toast.success($i18n.t('Redirecting you to OpenWebUI Community'));
|
||||
toast.success($i18n.t('Redirecting you to Open WebUI Community'));
|
||||
const url = 'https://openwebui.com';
|
||||
// const url = 'http://localhost:5173';
|
||||
|
||||
@ -143,7 +143,7 @@
|
||||
show = false;
|
||||
}}
|
||||
>
|
||||
{$i18n.t('Share to OpenWebUI Community')}
|
||||
{$i18n.t('Share to Open WebUI Community')}
|
||||
</button>
|
||||
{/if}
|
||||
|
||||
|
@ -82,7 +82,7 @@
|
||||
};
|
||||
|
||||
const shareModelHandler = async (model) => {
|
||||
toast.success($i18n.t('Redirecting you to OpenWebUI Community'));
|
||||
toast.success($i18n.t('Redirecting you to Open WebUI Community'));
|
||||
|
||||
const url = 'https://openwebui.com';
|
||||
|
||||
@ -479,7 +479,7 @@
|
||||
{#if $config?.features.enable_community_sharing}
|
||||
<div class=" my-16">
|
||||
<div class=" text-xl font-medium mb-1 line-clamp-1">
|
||||
{$i18n.t('Made by OpenWebUI Community')}
|
||||
{$i18n.t('Made by Open WebUI Community')}
|
||||
</div>
|
||||
|
||||
<a
|
||||
|
@ -40,7 +40,7 @@
|
||||
$: filteredItems = prompts.filter((p) => query === '' || p.command.includes(query));
|
||||
|
||||
const shareHandler = async (prompt) => {
|
||||
toast.success($i18n.t('Redirecting you to OpenWebUI Community'));
|
||||
toast.success($i18n.t('Redirecting you to Open WebUI Community'));
|
||||
|
||||
const url = 'https://openwebui.com';
|
||||
|
||||
@ -319,7 +319,7 @@
|
||||
{#if $config?.features.enable_community_sharing}
|
||||
<div class=" my-16">
|
||||
<div class=" text-xl font-medium mb-1 line-clamp-1">
|
||||
{$i18n.t('Made by OpenWebUI Community')}
|
||||
{$i18n.t('Made by Open WebUI Community')}
|
||||
</div>
|
||||
|
||||
<a
|
||||
|
@ -65,7 +65,7 @@
|
||||
return null;
|
||||
});
|
||||
|
||||
toast.success($i18n.t('Redirecting you to OpenWebUI Community'));
|
||||
toast.success($i18n.t('Redirecting you to Open WebUI Community'));
|
||||
|
||||
const url = 'https://openwebui.com';
|
||||
|
||||
@ -438,7 +438,7 @@
|
||||
{#if $config?.features.enable_community_sharing}
|
||||
<div class=" my-16">
|
||||
<div class=" text-xl font-medium mb-1 line-clamp-1">
|
||||
{$i18n.t('Made by OpenWebUI Community')}
|
||||
{$i18n.t('Made by Open WebUI Community')}
|
||||
</div>
|
||||
|
||||
<a
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
"LTR": "من جهة اليسار إلى اليمين",
|
||||
"Made by OpenWebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
|
||||
"Made by Open WebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
|
||||
"Make sure to enclose them with": "تأكد من إرفاقها",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "أقراء لي",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "سجل صوت",
|
||||
"Redirecting you to OpenWebUI Community": "OpenWebUI إعادة توجيهك إلى مجتمع ",
|
||||
"Redirecting you to Open WebUI Community": "OpenWebUI إعادة توجيهك إلى مجتمع ",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "تم حفظ الاعدادات بنجاح",
|
||||
"Share": "كشاركة",
|
||||
"Share Chat": "مشاركة الدردشة",
|
||||
"Share to OpenWebUI Community": "OpenWebUI شارك في مجتمع",
|
||||
"Share to Open WebUI Community": "OpenWebUI شارك في مجتمع",
|
||||
"Show": "عرض",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Направено от OpenWebUI общността",
|
||||
"Made by Open WebUI Community": "Направено от OpenWebUI общността",
|
||||
"Make sure to enclose them with": "Уверете се, че са заключени с",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Прочети на Голос",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Записване на глас",
|
||||
"Redirecting you to OpenWebUI Community": "Пренасочване към OpenWebUI общността",
|
||||
"Redirecting you to Open WebUI Community": "Пренасочване към OpenWebUI общността",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Настройките са запазени успешно!",
|
||||
"Share": "Подели",
|
||||
"Share Chat": "Подели Чат",
|
||||
"Share to OpenWebUI Community": "Споделите с OpenWebUI Общността",
|
||||
"Share to Open WebUI Community": "Споделите с OpenWebUI Общността",
|
||||
"Show": "Покажи",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "OpenWebUI কমিউনিটিকর্তৃক নির্মিত",
|
||||
"Made by Open WebUI Community": "OpenWebUI কমিউনিটিকর্তৃক নির্মিত",
|
||||
"Make sure to enclose them with": "এটা দিয়ে বন্ধনী দিতে ভুলবেন না",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "পড়াশোনা করুন",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "ভয়েস রেকর্ড করুন",
|
||||
"Redirecting you to OpenWebUI Community": "আপনাকে OpenWebUI কমিউনিটিতে পাঠানো হচ্ছে",
|
||||
"Redirecting you to Open WebUI Community": "আপনাকে OpenWebUI কমিউনিটিতে পাঠানো হচ্ছে",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "সেটিংগুলো সফলভাবে সংরক্ষিত হয়েছে",
|
||||
"Share": "শেয়ার করুন",
|
||||
"Share Chat": "চ্যাট শেয়ার করুন",
|
||||
"Share to OpenWebUI Community": "OpenWebUI কমিউনিটিতে শেয়ার করুন",
|
||||
"Share to Open WebUI Community": "OpenWebUI কমিউনিটিতে শেয়ার করুন",
|
||||
"Show": "দেখান",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Models locals",
|
||||
"Lost": "Perdut",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Creat per la Comunitat OpenWebUI",
|
||||
"Made by Open WebUI Community": "Creat per la Comunitat OpenWebUI",
|
||||
"Make sure to enclose them with": "Assegura't d'envoltar-los amb",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Assegura't d'exportar un fitxer workflow.json com a format API des de ComfyUI.",
|
||||
"Manage": "Gestionar",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Llegir en veu alta",
|
||||
"Reasoning Effort": "Esforç de raonament",
|
||||
"Record voice": "Enregistrar la veu",
|
||||
"Redirecting you to OpenWebUI Community": "Redirigint-te a la comunitat OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "Redirigint-te a la comunitat OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Redueix la probabilitat de generar ximpleries. Un valor més alt (p. ex. 100) donarà respostes més diverses, mentre que un valor més baix (p. ex. 10) serà més conservador. (Per defecte: 40)",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Fes referència a tu mateix com a \"Usuari\" (p. ex., \"L'usuari està aprenent espanyol\")",
|
||||
"References from": "Referències de",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Les preferències s'han desat correctament",
|
||||
"Share": "Compartir",
|
||||
"Share Chat": "Compartir el xat",
|
||||
"Share to OpenWebUI Community": "Compartir amb la comunitat OpenWebUI",
|
||||
"Share to Open WebUI Community": "Compartir amb la comunitat OpenWebUI",
|
||||
"Show": "Mostrar",
|
||||
"Show \"What's New\" modal on login": "Veure 'Què hi ha de nou' a l'entrada",
|
||||
"Show Admin Details in Account Pending Overlay": "Mostrar els detalls de l'administrador a la superposició del compte pendent",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
"LTR": "",
|
||||
"Made by OpenWebUI Community": "Gihimo sa komunidad sa OpenWebUI",
|
||||
"Made by Open WebUI Community": "Gihimo sa komunidad sa OpenWebUI",
|
||||
"Make sure to enclose them with": "Siguruha nga palibutan sila",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Irekord ang tingog",
|
||||
"Redirecting you to OpenWebUI Community": "Gi-redirect ka sa komunidad sa OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "Gi-redirect ka sa komunidad sa OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Malampuson nga na-save ang mga setting!",
|
||||
"Share": "",
|
||||
"Share Chat": "",
|
||||
"Share to OpenWebUI Community": "Ipakigbahin sa komunidad sa OpenWebUI",
|
||||
"Share to Open WebUI Community": "Ipakigbahin sa komunidad sa OpenWebUI",
|
||||
"Show": "Pagpakita",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Lokální modely",
|
||||
"Lost": "Ztracený",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Vytvořeno komunitou OpenWebUI",
|
||||
"Made by Open WebUI Community": "Vytvořeno komunitou OpenWebUI",
|
||||
"Make sure to enclose them with": "Ujistěte se, že jsou uzavřeny pomocí",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Ujistěte se, že exportujete soubor workflow.json ve formátu API z ComfyUI.",
|
||||
"Manage": "Spravovat",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Číst nahlas",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Nahrát hlas",
|
||||
"Redirecting you to OpenWebUI Community": "Přesměrování na komunitu OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "Přesměrování na komunitu OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Odkazujte na sebe jako na \"uživatele\" (např. \"Uživatel se učí španělsky\").",
|
||||
"References from": "Reference z",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Nastavení byla úspěšně uložena!",
|
||||
"Share": "Sdílet",
|
||||
"Share Chat": "Sdílet chat",
|
||||
"Share to OpenWebUI Community": "Sdílet s komunitou OpenWebUI",
|
||||
"Share to Open WebUI Community": "Sdílet s komunitou OpenWebUI",
|
||||
"Show": "Zobrazit",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "Zobrazit podrobnosti administrátora v překryvném okně s čekajícím účtem",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Lokale modeller",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Lavet af OpenWebUI Community",
|
||||
"Made by Open WebUI Community": "Lavet af OpenWebUI Community",
|
||||
"Make sure to enclose them with": "Sørg for at omslutte dem med",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Sørg for at eksportere en workflow.json-fil som API-format fra ComfyUI.",
|
||||
"Manage": "Administrer",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Læs højt",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Optag stemme",
|
||||
"Redirecting you to OpenWebUI Community": "Omdirigerer dig til OpenWebUI Community",
|
||||
"Redirecting you to Open WebUI Community": "Omdirigerer dig til OpenWebUI Community",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Referer til dig selv som \"Bruger\" (f.eks. \"Bruger lærer spansk\")",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Indstillinger gemt!",
|
||||
"Share": "Del",
|
||||
"Share Chat": "Del chat",
|
||||
"Share to OpenWebUI Community": "Del til OpenWebUI Community",
|
||||
"Share to Open WebUI Community": "Del til OpenWebUI Community",
|
||||
"Show": "Vis",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "Vis administratordetaljer i overlay for ventende konto",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Lokale Modelle",
|
||||
"Lost": "Verloren",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Von der OpenWebUI-Community",
|
||||
"Made by Open WebUI Community": "Von der OpenWebUI-Community",
|
||||
"Make sure to enclose them with": "Umschließe Variablen mit",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Stellen Sie sicher, dass sie eine workflow.json-Datei im API-Format von ComfyUI exportieren.",
|
||||
"Manage": "Verwalten",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Vorlesen",
|
||||
"Reasoning Effort": "Schlussfolgerungsaufwand",
|
||||
"Record voice": "Stimme aufnehmen",
|
||||
"Redirecting you to OpenWebUI Community": "Sie werden zur OpenWebUI-Community weitergeleitet",
|
||||
"Redirecting you to Open WebUI Community": "Sie werden zur OpenWebUI-Community weitergeleitet",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Reduziert die Wahrscheinlichkeit, Unsinn zu generieren. Ein höherer Wert (z.B. 100) liefert vielfältigere Antworten, während ein niedrigerer Wert (z.B. 10) konservativer ist. (Standard: 40)",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Beziehen Sie sich auf sich selbst als \"Benutzer\" (z. B. \"Benutzer lernt Spanisch\")",
|
||||
"References from": "Referenzen aus",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Einstellungen erfolgreich gespeichert!",
|
||||
"Share": "Teilen",
|
||||
"Share Chat": "Unterhaltung teilen",
|
||||
"Share to OpenWebUI Community": "Mit OpenWebUI Community teilen",
|
||||
"Share to Open WebUI Community": "Mit OpenWebUI Community teilen",
|
||||
"Show": "Anzeigen",
|
||||
"Show \"What's New\" modal on login": "\"Was gibt's Neues\"-Modal beim Anmelden anzeigen",
|
||||
"Show Admin Details in Account Pending Overlay": "Admin-Details im Account-Pending-Overlay anzeigen",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
"LTR": "",
|
||||
"Made by OpenWebUI Community": "Made by OpenWebUI Community",
|
||||
"Made by Open WebUI Community": "Made by Open WebUI Community",
|
||||
"Make sure to enclose them with": "Make sure to enclose them with",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Record Bark",
|
||||
"Redirecting you to OpenWebUI Community": "Redirecting you to OpenWebUI Community",
|
||||
"Redirecting you to Open WebUI Community": "Redirecting you to Open WebUI Community",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Settings saved successfully! Very success!",
|
||||
"Share": "",
|
||||
"Share Chat": "",
|
||||
"Share to OpenWebUI Community": "Share to OpenWebUI Community much community",
|
||||
"Share to Open WebUI Community": "Share to Open WebUI Community much community",
|
||||
"Show": "Show much show",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Τοπικά Μοντέλα",
|
||||
"Lost": "Χαμένος",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Δημιουργήθηκε από την Κοινότητα OpenWebUI",
|
||||
"Made by Open WebUI Community": "Δημιουργήθηκε από την Κοινότητα OpenWebUI",
|
||||
"Make sure to enclose them with": "Βεβαιωθείτε ότι τα περικλείετε με",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Βεβαιωθείτε ότι εξάγετε ένα αρχείο workflow.json ως μορφή API από το ComfyUI.",
|
||||
"Manage": "Διαχείριση",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Ανάγνωση Φωναχτά",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Εγγραφή φωνής",
|
||||
"Redirecting you to OpenWebUI Community": "Μετακατεύθυνση στην Κοινότητα OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "Μετακατεύθυνση στην Κοινότητα OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Μειώνει την πιθανότητα δημιουργίας ανοησιών. Μια υψηλότερη τιμή (π.χ. 100) θα δώσει πιο ποικίλες απαντήσεις, ενώ μια χαμηλότερη τιμή (π.χ. 10) θα δημιουργήσει πιο συντηρητικές απαντήσεις. (Προεπιλογή: 40)",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Αναφέρεστε στον εαυτό σας ως \"User\" (π.χ., \"User μαθαίνει Ισπανικά\")",
|
||||
"References from": "Αναφορές από",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Οι Ρυθμίσεις αποθηκεύτηκαν με επιτυχία!",
|
||||
"Share": "Κοινή Χρήση",
|
||||
"Share Chat": "Κοινή Χρήση Συνομιλίας",
|
||||
"Share to OpenWebUI Community": "Κοινή Χρήση στην Κοινότητα OpenWebUI",
|
||||
"Share to Open WebUI Community": "Κοινή Χρήση στην Κοινότητα OpenWebUI",
|
||||
"Show": "Εμφάνιση",
|
||||
"Show \"What's New\" modal on login": "Εμφάνιση του παράθυρου \"Τι νέο υπάρχει\" κατά την είσοδο",
|
||||
"Show Admin Details in Account Pending Overlay": "Εμφάνιση Λεπτομερειών Διαχειριστή στο Υπέρθεση Εκκρεμής Λογαριασμού",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
"LTR": "",
|
||||
"Made by OpenWebUI Community": "",
|
||||
"Made by Open WebUI Community": "",
|
||||
"Make sure to enclose them with": "",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "",
|
||||
"Redirecting you to OpenWebUI Community": "",
|
||||
"Redirecting you to Open WebUI Community": "",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "",
|
||||
"Share": "",
|
||||
"Share Chat": "",
|
||||
"Share to OpenWebUI Community": "",
|
||||
"Share to Open WebUI Community": "",
|
||||
"Show": "",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
"LTR": "",
|
||||
"Made by OpenWebUI Community": "",
|
||||
"Made by Open WebUI Community": "",
|
||||
"Make sure to enclose them with": "",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "",
|
||||
"Redirecting you to OpenWebUI Community": "",
|
||||
"Redirecting you to Open WebUI Community": "",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "",
|
||||
"Share": "",
|
||||
"Share Chat": "",
|
||||
"Share to OpenWebUI Community": "",
|
||||
"Share to Open WebUI Community": "",
|
||||
"Show": "",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Modelos locales",
|
||||
"Lost": "Perdido",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Hecho por la comunidad de OpenWebUI",
|
||||
"Made by Open WebUI Community": "Hecho por la comunidad de OpenWebUI",
|
||||
"Make sure to enclose them with": "Asegúrese de adjuntarlos con",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Asegúrese de exportar un archivo workflow.json en formato API desde ComfyUI.",
|
||||
"Manage": "Gestionar",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Leer en voz alta",
|
||||
"Reasoning Effort": "Esfuerzo de razonamiento",
|
||||
"Record voice": "Grabar voz",
|
||||
"Redirecting you to OpenWebUI Community": "Redireccionándote a la comunidad OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "Redireccionándote a la comunidad OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Reduce la probabilidad de generar tonterías. Un valor más alto (p.ej. 100) dará respuestas más diversas, mientras que un valor más bajo (p.ej. 10) será más conservador. (Predeterminado: 40)",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Referirse a usted mismo como \"Usuario\" (por ejemplo, \"El usuario está aprendiendo Español\")",
|
||||
"References from": "Referencias de",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "¡Configuración guardada con éxito!",
|
||||
"Share": "Compartir",
|
||||
"Share Chat": "Compartir Chat",
|
||||
"Share to OpenWebUI Community": "Compartir con la comunidad OpenWebUI",
|
||||
"Share to Open WebUI Community": "Compartir con la comunidad OpenWebUI",
|
||||
"Show": "Mostrar",
|
||||
"Show \"What's New\" modal on login": "Mostrar modal \"Qué hay de nuevo\" al iniciar sesión",
|
||||
"Show Admin Details in Account Pending Overlay": "Mostrar detalles de administración en la capa de espera de la cuenta",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Modelo lokalak",
|
||||
"Lost": "Galduta",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "OpenWebUI Komunitateak egina",
|
||||
"Made by Open WebUI Community": "OpenWebUI Komunitateak egina",
|
||||
"Make sure to enclose them with": "Ziurtatu hauek gehitzen dituzula",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Ziurtatu workflow.json fitxategia API formatu gisa esportatzen duzula ComfyUI-tik.",
|
||||
"Manage": "Kudeatu",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Irakurri ozen",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Grabatu ahotsa",
|
||||
"Redirecting you to OpenWebUI Community": "OpenWebUI Komunitatera berbideratzen",
|
||||
"Redirecting you to Open WebUI Community": "OpenWebUI Komunitatera berbideratzen",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Zentzugabekeriak sortzeko probabilitatea murrizten du. Balio altuago batek (adib. 100) erantzun anitzagoak emango ditu, balio baxuago batek (adib. 10) kontserbadoreagoa izango den bitartean. (Lehenetsia: 40)",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Egin erreferentzia zure buruari \"Erabiltzaile\" gisa (adib., \"Erabiltzailea gaztelania ikasten ari da\")",
|
||||
"References from": "Erreferentziak hemendik",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Ezarpenak ongi gorde dira!",
|
||||
"Share": "Partekatu",
|
||||
"Share Chat": "Partekatu txata",
|
||||
"Share to OpenWebUI Community": "Partekatu OpenWebUI komunitatearekin",
|
||||
"Share to Open WebUI Community": "Partekatu OpenWebUI komunitatearekin",
|
||||
"Show": "Erakutsi",
|
||||
"Show \"What's New\" modal on login": "Erakutsi \"Berritasunak\" modala saioa hastean",
|
||||
"Show Admin Details in Account Pending Overlay": "Erakutsi administratzaile xehetasunak kontu zain geruzan",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "ساخته شده توسط OpenWebUI Community",
|
||||
"Made by Open WebUI Community": "ساخته شده توسط OpenWebUI Community",
|
||||
"Make sure to enclose them with": "مطمئن شوید که آنها را با این محصور کنید:",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "خواندن به صورت صوتی",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "ضبط صدا",
|
||||
"Redirecting you to OpenWebUI Community": "در حال هدایت به OpenWebUI Community",
|
||||
"Redirecting you to Open WebUI Community": "در حال هدایت به OpenWebUI Community",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "تنظیمات با موفقیت ذخیره شد!",
|
||||
"Share": "اشتراک\u200cگذاری",
|
||||
"Share Chat": "اشتراک\u200cگذاری چت",
|
||||
"Share to OpenWebUI Community": "اشتراک گذاری با OpenWebUI Community",
|
||||
"Share to Open WebUI Community": "اشتراک گذاری با OpenWebUI Community",
|
||||
"Show": "نمایش",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Paikalliset mallit",
|
||||
"Lost": "Mennyt",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Tehnyt OpenWebUI-yhteisö",
|
||||
"Made by Open WebUI Community": "Tehnyt OpenWebUI-yhteisö",
|
||||
"Make sure to enclose them with": "Varmista, että suljet ne",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Muista viedä workflow.json-tiedosto API-muodossa ComfyUI:sta.",
|
||||
"Manage": "Hallitse",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Lue ääneen",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Nauhoita ääni",
|
||||
"Redirecting you to OpenWebUI Community": "Ohjataan sinut OpenWebUI-yhteisöön",
|
||||
"Redirecting you to Open WebUI Community": "Ohjataan sinut OpenWebUI-yhteisöön",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Vähentää merkityksetöntä sisältöä tuottavan todennäköisyyttä. Korkeampi arvo (esim. 100) antaa monipuolisempia vastauksia, kun taas alhaisempi arvo (esim. 10) on konservatiivisempi. (Oletus: 40)",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Viittaa itseen \"Käyttäjänä\" (esim. \"Käyttäjä opiskelee espanjaa\")",
|
||||
"References from": "Viitteet lähteistä",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Asetukset tallennettu onnistuneesti!",
|
||||
"Share": "Jaa",
|
||||
"Share Chat": "Jaa keskustelu",
|
||||
"Share to OpenWebUI Community": "Jaa OpenWebUI-yhteisöön",
|
||||
"Share to Open WebUI Community": "Jaa OpenWebUI-yhteisöön",
|
||||
"Show": "Näytä",
|
||||
"Show \"What's New\" modal on login": "Näytä \"Mitä uutta\" -modaali kirjautumisen yhteydessä",
|
||||
"Show Admin Details in Account Pending Overlay": "Näytä ylläpitäjän tiedot odottavan tilin päällä",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Modèles locaux",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Réalisé par la communauté OpenWebUI",
|
||||
"Made by Open WebUI Community": "Réalisé par la communauté OpenWebUI",
|
||||
"Make sure to enclose them with": "Assurez-vous de les inclure dans",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Gérer",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Lire à haute voix",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Enregistrer la voix",
|
||||
"Redirecting you to OpenWebUI Community": "Redirection vers la communauté OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "Redirection vers la communauté OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Désignez-vous comme « Utilisateur » (par ex. « L'utilisateur apprend l'espagnol »)",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Paramètres enregistrés avec succès !",
|
||||
"Share": "Partager",
|
||||
"Share Chat": "Partage de conversation",
|
||||
"Share to OpenWebUI Community": "Partager avec la communauté OpenWebUI",
|
||||
"Share to Open WebUI Community": "Partager avec la communauté OpenWebUI",
|
||||
"Show": "Montrer",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "Afficher les détails de l'administrateur dans la superposition en attente du compte",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Modèles locaux",
|
||||
"Lost": "Perdu",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Réalisé par la communauté OpenWebUI",
|
||||
"Made by Open WebUI Community": "Réalisé par la communauté OpenWebUI",
|
||||
"Make sure to enclose them with": "Assurez-vous de les inclure dans",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Veillez à exporter un fichier workflow.json au format API depuis ComfyUI.",
|
||||
"Manage": "Gérer",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Lire à haute voix",
|
||||
"Reasoning Effort": "Effort de raisonnement",
|
||||
"Record voice": "Enregistrer la voix",
|
||||
"Redirecting you to OpenWebUI Community": "Redirection vers la communauté OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "Redirection vers la communauté OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Réduit la probabilité de générer des non-sens. Une valeur plus élevée (par exemple 100) donnera des réponses plus diversifiées, tandis qu'une valeur plus basse (par exemple 10) sera plus conservatrice. (Par défaut : 40)",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Désignez-vous comme « Utilisateur » (par ex. « L'utilisateur apprend l'espagnol »)",
|
||||
"References from": "Références de",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Paramètres enregistrés avec succès !",
|
||||
"Share": "Partager",
|
||||
"Share Chat": "Partage de conversation",
|
||||
"Share to OpenWebUI Community": "Partager avec la communauté OpenWebUI",
|
||||
"Share to Open WebUI Community": "Partager avec la communauté OpenWebUI",
|
||||
"Show": "Afficher",
|
||||
"Show \"What's New\" modal on login": "Afficher la fenêtre modale \"Quoi de neuf\" lors de la connexion",
|
||||
"Show Admin Details in Account Pending Overlay": "Afficher les coordonnées de l'administrateur aux comptes en attente",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "נוצר על ידי קהילת OpenWebUI",
|
||||
"Made by Open WebUI Community": "נוצר על ידי קהילת OpenWebUI",
|
||||
"Make sure to enclose them with": "ודא להקיף אותם עם",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "קרא בקול",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "הקלט קול",
|
||||
"Redirecting you to OpenWebUI Community": "מפנה אותך לקהילת OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "מפנה אותך לקהילת OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "ההגדרות נשמרו בהצלחה!",
|
||||
"Share": "שתף",
|
||||
"Share Chat": "שתף צ'אט",
|
||||
"Share to OpenWebUI Community": "שתף לקהילת OpenWebUI",
|
||||
"Share to Open WebUI Community": "שתף לקהילת OpenWebUI",
|
||||
"Show": "הצג",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "OpenWebUI समुदाय द्वारा निर्मित",
|
||||
"Made by Open WebUI Community": "OpenWebUI समुदाय द्वारा निर्मित",
|
||||
"Make sure to enclose them with": "उन्हें संलग्न करना सुनिश्चित करें",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "जोर से पढ़ें",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "आवाज रिकॉर्ड करना",
|
||||
"Redirecting you to OpenWebUI Community": "आपको OpenWebUI समुदाय पर पुनर्निर्देशित किया जा रहा है",
|
||||
"Redirecting you to Open WebUI Community": "आपको OpenWebUI समुदाय पर पुनर्निर्देशित किया जा रहा है",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "सेटिंग्स सफलतापूर्वक सहेजी गईं!",
|
||||
"Share": "साझा करें",
|
||||
"Share Chat": "चैट साझा करें",
|
||||
"Share to OpenWebUI Community": "OpenWebUI समुदाय में साझा करें",
|
||||
"Share to Open WebUI Community": "OpenWebUI समुदाय में साझा करें",
|
||||
"Show": "दिखाओ",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Lokalni modeli",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Izradio OpenWebUI Community",
|
||||
"Made by Open WebUI Community": "Izradio OpenWebUI Community",
|
||||
"Make sure to enclose them with": "Provjerite da ih zatvorite s",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Upravljaj",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Čitaj naglas",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Snimanje glasa",
|
||||
"Redirecting you to OpenWebUI Community": "Preusmjeravanje na OpenWebUI zajednicu",
|
||||
"Redirecting you to Open WebUI Community": "Preusmjeravanje na OpenWebUI zajednicu",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Nazivajte se \"Korisnik\" (npr. \"Korisnik uči španjolski\")",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Postavke su uspješno spremljene!",
|
||||
"Share": "Podijeli",
|
||||
"Share Chat": "Podijeli razgovor",
|
||||
"Share to OpenWebUI Community": "Podijeli u OpenWebUI zajednici",
|
||||
"Share to Open WebUI Community": "Podijeli u OpenWebUI zajednici",
|
||||
"Show": "Pokaži",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Helyi modellek",
|
||||
"Lost": "Elveszett",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Az OpenWebUI közösség által készítve",
|
||||
"Made by Open WebUI Community": "Az OpenWebUI közösség által készítve",
|
||||
"Make sure to enclose them with": "Győződjön meg róla, hogy körülveszi őket",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Győződjön meg róla, hogy exportál egy workflow.json fájlt API formátumban a ComfyUI-ból.",
|
||||
"Manage": "Kezelés",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Felolvasás",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Hang rögzítése",
|
||||
"Redirecting you to OpenWebUI Community": "Átirányítás az OpenWebUI közösséghez",
|
||||
"Redirecting you to Open WebUI Community": "Átirányítás az OpenWebUI közösséghez",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Hivatkozzon magára \"Felhasználó\"-ként (pl. \"A Felhasználó spanyolul tanul\")",
|
||||
"References from": "Hivatkozások innen",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Beállítások sikeresen mentve!",
|
||||
"Share": "Megosztás",
|
||||
"Share Chat": "Beszélgetés megosztása",
|
||||
"Share to OpenWebUI Community": "Megosztás az OpenWebUI közösséggel",
|
||||
"Share to Open WebUI Community": "Megosztás az OpenWebUI közösséggel",
|
||||
"Show": "Mutat",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "Admin részletek megjelenítése a függő fiók átfedésben",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Model Lokal",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Dibuat oleh Komunitas OpenWebUI",
|
||||
"Made by Open WebUI Community": "Dibuat oleh Komunitas OpenWebUI",
|
||||
"Make sure to enclose them with": "Pastikan untuk melampirkannya dengan",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Mengelola",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Baca dengan Keras",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Rekam suara",
|
||||
"Redirecting you to OpenWebUI Community": "Mengarahkan Anda ke Komunitas OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "Mengarahkan Anda ke Komunitas OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Merujuk diri Anda sebagai \"Pengguna\" (misalnya, \"Pengguna sedang belajar bahasa Spanyol\")",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Pengaturan berhasil disimpan!",
|
||||
"Share": "Berbagi",
|
||||
"Share Chat": "Bagikan Obrolan",
|
||||
"Share to OpenWebUI Community": "Bagikan ke Komunitas OpenWebUI",
|
||||
"Share to Open WebUI Community": "Bagikan ke Komunitas OpenWebUI",
|
||||
"Show": "Tampilkan",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "Tampilkan Detail Admin di Hamparan Akun Tertunda",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Múnlaí Áitiúla",
|
||||
"Lost": "Cailleadh",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Déanta ag OpenWebUI Community",
|
||||
"Made by Open WebUI Community": "Déanta ag OpenWebUI Community",
|
||||
"Make sure to enclose them with": "Déan cinnte iad a cheangal le",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Déan cinnte comhad workflow.json a onnmhairiú mar fhormáid API ó ComfyUI.",
|
||||
"Manage": "Bainistiú",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Léigh Ard",
|
||||
"Reasoning Effort": "Iarracht Réasúnúcháin",
|
||||
"Record voice": "Taifead guth",
|
||||
"Redirecting you to OpenWebUI Community": "Tú a atreorú chuig OpenWebUI Community",
|
||||
"Redirecting you to Open WebUI Community": "Tú a atreorú chuig OpenWebUI Community",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Laghdaíonn sé an dóchúlacht go giniúint nonsense. Tabharfaidh luach níos airde (m.sh. 100) freagraí níos éagsúla, agus beidh luach níos ísle (m.sh. 10) níos coimeádaí. (Réamhshocrú: 40)",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Tagairt duit féin mar \"Úsáideoir\" (m.sh., \"Tá an úsáideoir ag foghlaim Spáinnis\")",
|
||||
"References from": "Tagairtí ó",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Socruithe sábhálta go rathúil!",
|
||||
"Share": "Comhroinn",
|
||||
"Share Chat": "Comhroinn Comhrá",
|
||||
"Share to OpenWebUI Community": "Comhroinn le Pobal OpenWebUI",
|
||||
"Share to Open WebUI Community": "Comhroinn le Pobal OpenWebUI",
|
||||
"Show": "Taispeáin",
|
||||
"Show \"What's New\" modal on login": "Taispeáin módúil \"Cad atá Nua\" ar logáil isteach",
|
||||
"Show Admin Details in Account Pending Overlay": "Taispeáin Sonraí Riaracháin sa Chuntas ar Feitheamh Forleagan",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Realizzato dalla comunità OpenWebUI",
|
||||
"Made by Open WebUI Community": "Realizzato dalla comunità OpenWebUI",
|
||||
"Make sure to enclose them with": "Assicurati di racchiuderli con",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Leggi ad alta voce",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Registra voce",
|
||||
"Redirecting you to OpenWebUI Community": "Reindirizzamento alla comunità OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "Reindirizzamento alla comunità OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Impostazioni salvate con successo!",
|
||||
"Share": "Condividi",
|
||||
"Share Chat": "Condividi chat",
|
||||
"Share to OpenWebUI Community": "Condividi con la comunità OpenWebUI",
|
||||
"Share to Open WebUI Community": "Condividi con la comunità OpenWebUI",
|
||||
"Show": "Mostra",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "ローカルモデル",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "OpenWebUI コミュニティによって作成",
|
||||
"Made by Open WebUI Community": "OpenWebUI コミュニティによって作成",
|
||||
"Make sure to enclose them with": "必ず次で囲んでください",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "管理",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "読み上げ",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "音声を録音",
|
||||
"Redirecting you to OpenWebUI Community": "OpenWebUI コミュニティにリダイレクトしています",
|
||||
"Redirecting you to Open WebUI Community": "OpenWebUI コミュニティにリダイレクトしています",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "設定が正常に保存されました!",
|
||||
"Share": "共有",
|
||||
"Share Chat": "チャットを共有",
|
||||
"Share to OpenWebUI Community": "OpenWebUI コミュニティに共有",
|
||||
"Share to Open WebUI Community": "OpenWebUI コミュニティに共有",
|
||||
"Show": "表示",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "დამზადებულია OpenWebUI საზოგადოების მიერ",
|
||||
"Made by Open WebUI Community": "დამზადებულია OpenWebUI საზოგადოების მიერ",
|
||||
"Make sure to enclose them with": "დარწმუნდით, რომ დაურთეთ ისინი",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "ხმის ჩაწერა",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "ხმის ჩაწერა",
|
||||
"Redirecting you to OpenWebUI Community": "გადამისამართდებით OpenWebUI საზოგადოებაში",
|
||||
"Redirecting you to Open WebUI Community": "გადამისამართდებით OpenWebUI საზოგადოებაში",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "პარამეტრები წარმატებით განახლდა!",
|
||||
"Share": "გაზიარება",
|
||||
"Share Chat": "გაზიარება",
|
||||
"Share to OpenWebUI Community": "გააზიარე OpenWebUI საზოგადოებაში ",
|
||||
"Share to Open WebUI Community": "გააზიარე OpenWebUI საზოგადოებაში ",
|
||||
"Show": "ჩვენება",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "로컬 모델",
|
||||
"Lost": "패배",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "OpenWebUI 커뮤니티에 의해 개발됨",
|
||||
"Made by Open WebUI Community": "OpenWebUI 커뮤니티에 의해 개발됨",
|
||||
"Make sure to enclose them with": "꼭 다음으로 감싸세요:",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "꼭 workflow.json 파일을 ComfyUI의 API 형식대로 내보내세요",
|
||||
"Manage": "관리",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "읽어주기",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "음성 녹음",
|
||||
"Redirecting you to OpenWebUI Community": "OpenWebUI 커뮤니티로 리디렉션 중",
|
||||
"Redirecting you to Open WebUI Community": "OpenWebUI 커뮤니티로 리디렉션 중",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "스스로를 \"사용자\" 라고 지칭하세요. (예: \"사용자는 영어를 배우고 있습니다\")",
|
||||
"References from": "출처",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "설정이 성공적으로 저장되었습니다!",
|
||||
"Share": "공유",
|
||||
"Share Chat": "채팅 공유",
|
||||
"Share to OpenWebUI Community": "OpenWebUI 커뮤니티에 공유",
|
||||
"Share to Open WebUI Community": "OpenWebUI 커뮤니티에 공유",
|
||||
"Show": "보기",
|
||||
"Show \"What's New\" modal on login": "로그인시 \"새로운 기능\" 모달 보기",
|
||||
"Show Admin Details in Account Pending Overlay": "사용자용 계정 보류 설명창에, 관리자 상세 정보 노출",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Lokalūs modeliai",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Sukurta OpenWebUI bendruomenės",
|
||||
"Made by Open WebUI Community": "Sukurta OpenWebUI bendruomenės",
|
||||
"Make sure to enclose them with": "Užtikrinktie, kad įtraukiate viduje:",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Tvarkyti",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Skaityti garsiai",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Įrašyti balsą",
|
||||
"Redirecting you to OpenWebUI Community": "Perkeliam Jus į OpenWebUI bendruomenę",
|
||||
"Redirecting you to Open WebUI Community": "Perkeliam Jus į OpenWebUI bendruomenę",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Vadinkite save Naudotoju (pvz. Naudotojas mokosi prancūzų kalbos)",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Parametrai sėkmingai išsaugoti!",
|
||||
"Share": "Dalintis",
|
||||
"Share Chat": "Dalintis pokalbiu",
|
||||
"Share to OpenWebUI Community": "Dalintis su OpenWebUI bendruomene",
|
||||
"Share to Open WebUI Community": "Dalintis su OpenWebUI bendruomene",
|
||||
"Show": "Rodyti",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "Rodyti administratoriaus duomenis laukiant paskyros patvirtinimo",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Model Tempatan",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Dicipta oleh Komuniti OpenWebUI",
|
||||
"Made by Open WebUI Community": "Dicipta oleh Komuniti OpenWebUI",
|
||||
"Make sure to enclose them with": "Pastikan untuk melampirkannya dengan",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Urus",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Baca dengan lantang",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Rakam suara",
|
||||
"Redirecting you to OpenWebUI Community": "Membawa anda ke Komuniti OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "Membawa anda ke Komuniti OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Rujuk diri anda sebagai \"User\" (cth, \"Pengguna sedang belajar bahasa Sepanyol\")",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Tetapan berjaya disimpan!",
|
||||
"Share": "Kongsi",
|
||||
"Share Chat": "Kongsi Perbualan",
|
||||
"Share to OpenWebUI Community": "Kongsi kepada Komuniti OpenWebUI",
|
||||
"Share to Open WebUI Community": "Kongsi kepada Komuniti OpenWebUI",
|
||||
"Show": "Tunjukkan",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "Tunjukkan Butiran Pentadbir dalam Akaun Menunggu Tindanan",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Lokale modeller",
|
||||
"Lost": "Tapt",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Laget av OpenWebUI-fellesskapet",
|
||||
"Made by Open WebUI Community": "Laget av OpenWebUI-fellesskapet",
|
||||
"Make sure to enclose them with": "Sørg for å omslutte dem med",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Sørg for å eksportere en workflow.json-fil i API-formatet fra ComfyUI.",
|
||||
"Manage": "Administrer",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Les høyt",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Ta opp tale",
|
||||
"Redirecting you to OpenWebUI Community": "Omdirigerer deg til OpenWebUI-fellesskapet",
|
||||
"Redirecting you to Open WebUI Community": "Omdirigerer deg til OpenWebUI-fellesskapet",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Reduserer sannsynligheten for å generere meningsløse svar. En høyere verdi (f.eks. 100) vil gi mer varierte svar, mens en lavere verdi (f.eks. 10) vil være mer konservativ. (Standard: 40)",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Omtal deg selv som \"Bruker\" (f.eks. \"Bruker lærer spansk\")",
|
||||
"References from": "Henviser fra",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Innstillinger lagret!",
|
||||
"Share": "Del",
|
||||
"Share Chat": "Del chat",
|
||||
"Share to OpenWebUI Community": "Del med OpenWebUI-fellesskapet",
|
||||
"Share to Open WebUI Community": "Del med OpenWebUI-fellesskapet",
|
||||
"Show": "Vis",
|
||||
"Show \"What's New\" modal on login": "Vis \"Hva er nytt\"-modal ved innlogging",
|
||||
"Show Admin Details in Account Pending Overlay": "Vis administratordetaljer i ventende kontovisning",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Lokale modellen",
|
||||
"Lost": "Verloren",
|
||||
"LTR": "LNR",
|
||||
"Made by OpenWebUI Community": "Gemaakt door OpenWebUI Community",
|
||||
"Made by Open WebUI Community": "Gemaakt door OpenWebUI Community",
|
||||
"Make sure to enclose them with": "Zorg ervoor dat je ze omringt met",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Zorg ervoor dat je een workflow.json-bestand als API-formaat exporteert vanuit ComfyUI.",
|
||||
"Manage": "Beheren",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Voorlezen",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Neem stem op",
|
||||
"Redirecting you to OpenWebUI Community": "Je wordt doorgestuurd naar OpenWebUI Community",
|
||||
"Redirecting you to Open WebUI Community": "Je wordt doorgestuurd naar OpenWebUI Community",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Vermindert de kans op het genereren van onzin. Een hogere waarde (bijv. 100) zal meer diverse antwoorden geven, terwijl een lagere waarde (bijv. 10) conservatiever zal zijn. (Standaard: 40)",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Refereer naar jezelf als \"user\" (bv. \"User is Spaans aan het leren\"",
|
||||
"References from": "Referenties van",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Instellingen succesvol opgeslagen!",
|
||||
"Share": "Delen",
|
||||
"Share Chat": "Deel chat",
|
||||
"Share to OpenWebUI Community": "Deel naar OpenWebUI-community",
|
||||
"Share to Open WebUI Community": "Deel naar OpenWebUI-community",
|
||||
"Show": "Toon",
|
||||
"Show \"What's New\" modal on login": "Toon \"Wat is nieuw\" bij inloggen",
|
||||
"Show Admin Details in Account Pending Overlay": "Admin-details weergeven in overlay in afwachting van account",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਦੁਆਰਾ ਬਣਾਇਆ ਗਿਆ",
|
||||
"Made by Open WebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਦੁਆਰਾ ਬਣਾਇਆ ਗਿਆ",
|
||||
"Make sure to enclose them with": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਉਨ੍ਹਾਂ ਨੂੰ ਘੇਰੋ",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "ਜੋਰ ਨਾਲ ਪੜ੍ਹੋ",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "ਆਵਾਜ਼ ਰਿਕਾਰਡ ਕਰੋ",
|
||||
"Redirecting you to OpenWebUI Community": "ਤੁਹਾਨੂੰ ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਵੱਲ ਰੀਡਾਇਰੈਕਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ",
|
||||
"Redirecting you to Open WebUI Community": "ਤੁਹਾਨੂੰ ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਵੱਲ ਰੀਡਾਇਰੈਕਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "ਸੈਟਿੰਗਾਂ ਸਫਲਤਾਪੂਰਵਕ ਸੰਭਾਲੀਆਂ ਗਈਆਂ!",
|
||||
"Share": "ਸਾਂਝਾ ਕਰੋ",
|
||||
"Share Chat": "ਗੱਲਬਾਤ ਸਾਂਝੀ ਕਰੋ",
|
||||
"Share to OpenWebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਨਾਲ ਸਾਂਝਾ ਕਰੋ",
|
||||
"Share to Open WebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਨਾਲ ਸਾਂਝਾ ਕਰੋ",
|
||||
"Show": "ਦਿਖਾਓ",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Stworzone przez społeczność OpenWebUI",
|
||||
"Made by Open WebUI Community": "Stworzone przez społeczność OpenWebUI",
|
||||
"Make sure to enclose them with": "Upewnij się, że są one zamknięte w",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Czytaj na głos",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Nagraj głos",
|
||||
"Redirecting you to OpenWebUI Community": "Przekierowujemy Cię do społeczności OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "Przekierowujemy Cię do społeczności OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Ustawienia zapisane pomyślnie!",
|
||||
"Share": "Udostępnij",
|
||||
"Share Chat": "Udostępnij czat",
|
||||
"Share to OpenWebUI Community": "Dziel się z społecznością OpenWebUI",
|
||||
"Share to Open WebUI Community": "Dziel się z społecznością OpenWebUI",
|
||||
"Show": "Pokaż",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Modelos Locais",
|
||||
"Lost": "Perdeu",
|
||||
"LTR": "Esquerda para Direita",
|
||||
"Made by OpenWebUI Community": "Feito pela Comunidade OpenWebUI",
|
||||
"Made by Open WebUI Community": "Feito pela Comunidade OpenWebUI",
|
||||
"Make sure to enclose them with": "Certifique-se de encerrá-los com",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Certifique-se de exportar um arquivo workflow.json como o formato API do ComfyUI.",
|
||||
"Manage": "Gerenciar",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Ler em Voz Alta",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Gravar voz",
|
||||
"Redirecting you to OpenWebUI Community": "Redirecionando você para a Comunidade OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "Redirecionando você para a Comunidade OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Reduz a probabilidade de gerar absurdos. Um valor mais alto (por exemplo, 100) dará respostas mais diversas, enquanto um valor mais baixo (por exemplo, 10) será mais conservador. (Padrão: 40)",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Refira-se como \"Usuário\" (por exemplo, \"Usuário está aprendendo espanhol\")",
|
||||
"References from": "Referências de",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Configurações salvas com sucesso!",
|
||||
"Share": "Compartilhar",
|
||||
"Share Chat": "Compartilhar Chat",
|
||||
"Share to OpenWebUI Community": "Compartilhar com a Comunidade OpenWebUI",
|
||||
"Share to Open WebUI Community": "Compartilhar com a Comunidade OpenWebUI",
|
||||
"Show": "Mostrar",
|
||||
"Show \"What's New\" modal on login": "Mostrar \"O que há de Novo\" no login",
|
||||
"Show Admin Details in Account Pending Overlay": "Mostrar Detalhes do Administrador na Sobreposição de Conta Pendentes",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Modelos Locais",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Feito pela Comunidade OpenWebUI",
|
||||
"Made by Open WebUI Community": "Feito pela Comunidade OpenWebUI",
|
||||
"Make sure to enclose them with": "Certifique-se de colocá-los entre",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Gerir",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Ler em Voz Alta",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Gravar voz",
|
||||
"Redirecting you to OpenWebUI Community": "Redirecionando-o para a Comunidade OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "Redirecionando-o para a Comunidade OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Refera-se a si próprio como \"User\" (por exemplo, \"User está a aprender Espanhol\")",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Configurações guardadas com sucesso!",
|
||||
"Share": "Partilhar",
|
||||
"Share Chat": "Partilhar Conversa",
|
||||
"Share to OpenWebUI Community": "Partilhar com a Comunidade OpenWebUI",
|
||||
"Share to Open WebUI Community": "Partilhar com a Comunidade OpenWebUI",
|
||||
"Show": "Mostrar",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "Mostrar Detalhes do Administrador na sobreposição de Conta Pendente",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Modele Locale",
|
||||
"Lost": "Pierdut",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Realizat de Comunitatea OpenWebUI",
|
||||
"Made by Open WebUI Community": "Realizat de Comunitatea OpenWebUI",
|
||||
"Make sure to enclose them with": "Asigurați-vă că le închideți cu",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Asigură-te că exporți un fișier {{workflow.json}} în format API din {{ComfyUI}}.",
|
||||
"Manage": "Gestionează",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Citește cu Voce Tare",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Înregistrează vocea",
|
||||
"Redirecting you to OpenWebUI Community": "Vă redirecționăm către Comunitatea OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "Vă redirecționăm către Comunitatea OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Referiți-vă la dvs. ca \"Utilizator\" (de ex., \"Utilizatorul învață spaniolă\")",
|
||||
"References from": "Referințe din",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Setările au fost salvate cu succes!",
|
||||
"Share": "Partajează",
|
||||
"Share Chat": "Partajează Conversația",
|
||||
"Share to OpenWebUI Community": "Partajează cu Comunitatea OpenWebUI",
|
||||
"Share to Open WebUI Community": "Partajează cu Comunitatea OpenWebUI",
|
||||
"Show": "Afișează",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "Afișează Detaliile Administratorului în Suprapunerea Contului În Așteptare",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Локальные модели",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Сделано сообществом OpenWebUI",
|
||||
"Made by Open WebUI Community": "Сделано сообществом OpenWebUI",
|
||||
"Make sure to enclose them with": "Убедитесь, что они заключены в",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Убедитесь, что экспортируете файл workflow.json в формате API из ComfyUI.",
|
||||
"Manage": "Управлять",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Прочитать вслух",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Записать голос",
|
||||
"Redirecting you to OpenWebUI Community": "Перенаправляем вас в сообщество OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "Перенаправляем вас в сообщество OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Называйте себя \"User\" (например, \"User is learning Spanish\").",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Настройки успешно сохранены!",
|
||||
"Share": "Поделиться",
|
||||
"Share Chat": "Поделиться чатом",
|
||||
"Share to OpenWebUI Community": "Поделиться с сообществом OpenWebUI",
|
||||
"Share to Open WebUI Community": "Поделиться с сообществом OpenWebUI",
|
||||
"Show": "Показать",
|
||||
"Show \"What's New\" modal on login": "Показывать окно «Что нового» при входе в систему",
|
||||
"Show Admin Details in Account Pending Overlay": "Показывать данные администратора в оверлее ожидающей учетной записи",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Lokálne modely",
|
||||
"Lost": "Stratený",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Vytvorené komunitou OpenWebUI",
|
||||
"Made by Open WebUI Community": "Vytvorené komunitou OpenWebUI",
|
||||
"Make sure to enclose them with": "Uistite sa, že sú uzavreté pomocou",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Uistite sa, že exportujete súbor workflow.json vo formáte API z ComfyUI.",
|
||||
"Manage": "Spravovať",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Čítať nahlas",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Nahrať hlas",
|
||||
"Redirecting you to OpenWebUI Community": "Presmerovanie na komunitu OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "Presmerovanie na komunitu OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Odkazujte na seba ako na \"užívateľa\" (napr. \"Užívateľ sa učí španielsky\").",
|
||||
"References from": "Referencie z",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Nastavenia boli úspešne uložené!",
|
||||
"Share": "Zdieľať",
|
||||
"Share Chat": "Zdieľať chat",
|
||||
"Share to OpenWebUI Community": "Zdieľať s komunitou OpenWebUI",
|
||||
"Share to Open WebUI Community": "Zdieľať s komunitou OpenWebUI",
|
||||
"Show": "Zobraziť",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "Zobraziť podrobnosti administrátora v prekryvnom okne s čakajúcim účtom",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Локални модели",
|
||||
"Lost": "Пораза",
|
||||
"LTR": "ЛНД",
|
||||
"Made by OpenWebUI Community": "Израдила OpenWebUI заједница",
|
||||
"Made by Open WebUI Community": "Израдила OpenWebUI заједница",
|
||||
"Make sure to enclose them with": "Уверите се да их затворите са",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Управљај",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Прочитај наглас",
|
||||
"Reasoning Effort": "Јачина размишљања",
|
||||
"Record voice": "Сними глас",
|
||||
"Redirecting you to OpenWebUI Community": "Преусмеравање на OpenWebUI заједницу",
|
||||
"Redirecting you to Open WebUI Community": "Преусмеравање на OpenWebUI заједницу",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
|
||||
"References from": "Референце од",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Подешавања успешно сачувана!",
|
||||
"Share": "Подели",
|
||||
"Share Chat": "Подели ћаскање",
|
||||
"Share to OpenWebUI Community": "Подели са OpenWebUI заједницом",
|
||||
"Share to Open WebUI Community": "Подели са OpenWebUI заједницом",
|
||||
"Show": "Прикажи",
|
||||
"Show \"What's New\" modal on login": "Прикажи \"Погледај шта је ново\" прозорче при пријави",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Lokala modeller",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Skapad av OpenWebUI Community",
|
||||
"Made by Open WebUI Community": "Skapad av OpenWebUI Community",
|
||||
"Make sure to enclose them with": "Se till att bifoga dem med",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "Hantera",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Läs igenom",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Spela in röst",
|
||||
"Redirecting you to OpenWebUI Community": "Omdirigerar dig till OpenWebUI Community",
|
||||
"Redirecting you to Open WebUI Community": "Omdirigerar dig till OpenWebUI Community",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Referera till dig själv som \"Användare\" (t.ex. \"Användaren lär sig spanska\")",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Inställningar sparades framgångsrikt!",
|
||||
"Share": "Dela",
|
||||
"Share Chat": "Dela chatt",
|
||||
"Share to OpenWebUI Community": "Dela till OpenWebUI Community",
|
||||
"Share to Open WebUI Community": "Dela till OpenWebUI Community",
|
||||
"Show": "Visa",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "Visa administratörsinformation till väntande konton",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "โมเดลท้องถิ่น",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "สร้างโดยชุมชน OpenWebUI",
|
||||
"Made by Open WebUI Community": "สร้างโดยชุมชน OpenWebUI",
|
||||
"Make sure to enclose them with": "",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "จัดการ",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "อ่านออกเสียง",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "บันทึกเสียง",
|
||||
"Redirecting you to OpenWebUI Community": "กำลังเปลี่ยนเส้นทางคุณไปยังชุมชน OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "กำลังเปลี่ยนเส้นทางคุณไปยังชุมชน OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "เรียกตัวเองว่า \"ผู้ใช้\" (เช่น \"ผู้ใช้กำลังเรียนภาษาสเปน\")",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "บันทึกการตั้งค่าเรียบร้อยแล้ว!",
|
||||
"Share": "แชร์",
|
||||
"Share Chat": "แชร์แชท",
|
||||
"Share to OpenWebUI Community": "แชร์ไปยังชุมชน OpenWebUI",
|
||||
"Share to Open WebUI Community": "แชร์ไปยังชุมชน OpenWebUI",
|
||||
"Show": "แสดง",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "แสดงรายละเอียดผู้ดูแลระบบในหน้าจอรอการอนุมัติบัญชี",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
"LTR": "",
|
||||
"Made by OpenWebUI Community": "",
|
||||
"Made by Open WebUI Community": "",
|
||||
"Make sure to enclose them with": "",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Manage": "",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "",
|
||||
"Redirecting you to OpenWebUI Community": "",
|
||||
"Redirecting you to Open WebUI Community": "",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "",
|
||||
"Share": "",
|
||||
"Share Chat": "",
|
||||
"Share to OpenWebUI Community": "",
|
||||
"Share to Open WebUI Community": "",
|
||||
"Show": "",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Yerel Modeller",
|
||||
"Lost": "Kayıp",
|
||||
"LTR": "Soldan Sağa",
|
||||
"Made by OpenWebUI Community": "OpenWebUI Topluluğu tarafından yapılmıştır",
|
||||
"Made by Open WebUI Community": "OpenWebUI Topluluğu tarafından yapılmıştır",
|
||||
"Make sure to enclose them with": "Değişkenlerinizi şu şekilde biçimlendirin:",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "ComfyUI'dan API formatında bir workflow.json dosyası olarak dışa aktardığınızdan emin olun.",
|
||||
"Manage": "Yönet",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Sesli Oku",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Ses kaydı yap",
|
||||
"Redirecting you to OpenWebUI Community": "OpenWebUI Topluluğuna yönlendiriliyorsunuz",
|
||||
"Redirecting you to Open WebUI Community": "OpenWebUI Topluluğuna yönlendiriliyorsunuz",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Kendinizden \"User\" olarak bahsedin (örneğin, \"User İspanyolca öğreniyor\")",
|
||||
"References from": "Referanslar arasından",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Ayarlar başarıyla kaydedildi!",
|
||||
"Share": "Paylaş",
|
||||
"Share Chat": "Sohbeti Paylaş",
|
||||
"Share to OpenWebUI Community": "OpenWebUI Topluluğu ile Paylaş",
|
||||
"Share to Open WebUI Community": "OpenWebUI Topluluğu ile Paylaş",
|
||||
"Show": "Göster",
|
||||
"Show \"What's New\" modal on login": "Girişte \"Yenilikler\" modalını göster",
|
||||
"Show Admin Details in Account Pending Overlay": "Yönetici Ayrıntılarını Hesap Bekliyor Ekranında Göster",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "Локальні моделі",
|
||||
"Lost": "Втрачене",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Зроблено спільнотою OpenWebUI",
|
||||
"Made by Open WebUI Community": "Зроблено спільнотою OpenWebUI",
|
||||
"Make sure to enclose them with": "Переконайтеся, що вони закриті",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Обов'язково експортуйте файл workflow.json у форматі API з ComfyUI.",
|
||||
"Manage": "Керувати",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Читати вголос",
|
||||
"Reasoning Effort": "Зусилля на міркування",
|
||||
"Record voice": "Записати голос",
|
||||
"Redirecting you to OpenWebUI Community": "Перенаправляємо вас до спільноти OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "Перенаправляємо вас до спільноти OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Знижує ймовірність генерації безглуздих відповідей. Вищі значення (напр., 100) призведуть до більш різноманітних відповідей, тоді як нижчі значення (напр., 10) будуть більш обережними. (За замовчуванням: 40)",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Називайте себе \"Користувач\" (напр., \"Користувач вивчає іспанську мову\")",
|
||||
"References from": "Посилання з",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Налаштування успішно збережено!",
|
||||
"Share": "Поділитися",
|
||||
"Share Chat": "Поділитися чатом",
|
||||
"Share to OpenWebUI Community": "Поділитися зі спільнотою OpenWebUI",
|
||||
"Share to Open WebUI Community": "Поділитися зі спільнотою OpenWebUI",
|
||||
"Show": "Показати",
|
||||
"Show \"What's New\" modal on login": "Показати модальне вікно \"Що нового\" під час входу.",
|
||||
"Show Admin Details in Account Pending Overlay": "Відобразити дані адміна у вікні очікування облікового запису",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "مقامی ماڈلز",
|
||||
"Lost": "گم شدہ",
|
||||
"LTR": "بائیں سے دائیں",
|
||||
"Made by OpenWebUI Community": "اوپن ویب یو آئی کمیونٹی کی جانب سے تیار کردہ",
|
||||
"Made by Open WebUI Community": "اوپن ویب یو آئی کمیونٹی کی جانب سے تیار کردہ",
|
||||
"Make sure to enclose them with": "انہیں کے ساتھ شامل کریں",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "یقینی بنائیں کہ ComfyUI سے workflow.json فائل کو API فارمیٹ میں ایکسپورٹ کریں",
|
||||
"Manage": "مینیج کریں",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "بُلند آواز میں پڑھیں",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "صوت ریکارڈ کریں",
|
||||
"Redirecting you to OpenWebUI Community": "آپ کو اوپن ویب یو آئی کمیونٹی کی طرف ری ڈائریکٹ کیا جا رہا ہے",
|
||||
"Redirecting you to Open WebUI Community": "آپ کو اوپن ویب یو آئی کمیونٹی کی طرف ری ڈائریکٹ کیا جا رہا ہے",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "خود کو \"صارف\" کے طور پر حوالہ دیں (جیسے، \"صارف ہسپانوی سیکھ رہا ہے\")",
|
||||
"References from": "سے حوالہ جات",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "ترتیبات کامیابی کے ساتھ محفوظ ہو گئیں!",
|
||||
"Share": "اشتراک کریں",
|
||||
"Share Chat": "چیٹ شیئر کریں",
|
||||
"Share to OpenWebUI Community": "اوپن ویب یوآئی کمیونٹی کے ساتھ شیئر کریں\n",
|
||||
"Share to Open WebUI Community": "اوپن ویب یوآئی کمیونٹی کے ساتھ شیئر کریں\n",
|
||||
"Show": "دکھائیں",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "اکاؤنٹ پینڈنگ اوورلے میں ایڈمن کی تفصیلات دکھائیں",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "",
|
||||
"Lost": "",
|
||||
"LTR": "LTR",
|
||||
"Made by OpenWebUI Community": "Được tạo bởi Cộng đồng OpenWebUI",
|
||||
"Made by Open WebUI Community": "Được tạo bởi Cộng đồng OpenWebUI",
|
||||
"Make sure to enclose them with": "Hãy chắc chắn bao quanh chúng bằng",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Đảm bảo xuất tệp Workflow.json đúng format API của ComfyUI.",
|
||||
"Manage": "Quản lý",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "Đọc ra loa",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Ghi âm",
|
||||
"Redirecting you to OpenWebUI Community": "Đang chuyển hướng bạn đến Cộng đồng OpenWebUI",
|
||||
"Redirecting you to Open WebUI Community": "Đang chuyển hướng bạn đến Cộng đồng OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Hãy coi bản thân mình như \"Người dùng\" (ví dụ: \"Người dùng đang học Tiếng Tây Ban Nha\")",
|
||||
"References from": "",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "Cài đặt đã được lưu thành công!",
|
||||
"Share": "Chia sẻ",
|
||||
"Share Chat": "Chia sẻ Chat",
|
||||
"Share to OpenWebUI Community": "Chia sẻ đến Cộng đồng OpenWebUI",
|
||||
"Share to Open WebUI Community": "Chia sẻ đến Cộng đồng OpenWebUI",
|
||||
"Show": "Hiển thị",
|
||||
"Show \"What's New\" modal on login": "",
|
||||
"Show Admin Details in Account Pending Overlay": "Hiển thị thông tin của Quản trị viên trên màn hình hiển thị Tài khoản đang chờ xử lý",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "本地模型",
|
||||
"Lost": "落败",
|
||||
"LTR": "从左至右",
|
||||
"Made by OpenWebUI Community": "由 OpenWebUI 社区制作",
|
||||
"Made by Open WebUI Community": "由 OpenWebUI 社区制作",
|
||||
"Make sure to enclose them with": "确保将它们包含在内",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "确保从 ComfyUI 导出 API 格式的 workflow.json 文件。",
|
||||
"Manage": "管理",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "朗读",
|
||||
"Reasoning Effort": "推理努力",
|
||||
"Record voice": "录音",
|
||||
"Redirecting you to OpenWebUI Community": "正在将您重定向到 OpenWebUI 社区",
|
||||
"Redirecting you to Open WebUI Community": "正在将您重定向到 OpenWebUI 社区",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "降低产生无意义答案的概率。数值越大(如 100),答案就越多样化,而数值越小(如 10),答案就越保守。(默认值:40)",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "使用\"User\" (用户) 来指代自己(例如:“User 正在学习西班牙语”)",
|
||||
"References from": "来自",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "设置已保存",
|
||||
"Share": "分享",
|
||||
"Share Chat": "分享对话",
|
||||
"Share to OpenWebUI Community": "分享到 OpenWebUI 社区",
|
||||
"Share to Open WebUI Community": "分享到 OpenWebUI 社区",
|
||||
"Show": "显示",
|
||||
"Show \"What's New\" modal on login": "在登录时显示“更新内容”弹窗",
|
||||
"Show Admin Details in Account Pending Overlay": "在用户待激活界面中显示管理员邮箱等详细信息",
|
||||
|
@ -574,7 +574,7 @@
|
||||
"Local Models": "本機模型",
|
||||
"Lost": "已遺失",
|
||||
"LTR": "從左到右",
|
||||
"Made by OpenWebUI Community": "由 OpenWebUI 社群製作",
|
||||
"Made by Open WebUI Community": "由 OpenWebUI 社群製作",
|
||||
"Make sure to enclose them with": "請務必將它們放在",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "請確保從 ComfyUI 匯出 workflow.json 檔案為 API 格式。",
|
||||
"Manage": "管理",
|
||||
@ -754,7 +754,7 @@
|
||||
"Read Aloud": "大聲朗讀",
|
||||
"Reasoning Effort": "推理程度",
|
||||
"Record voice": "錄音",
|
||||
"Redirecting you to OpenWebUI Community": "正在將您重導向至 OpenWebUI 社群",
|
||||
"Redirecting you to Open WebUI Community": "正在將您重導向至 OpenWebUI 社群",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "降低產生無意義內容的機率。較高的值(例如 100)會給出更多樣化的答案,而較低的值(例如 10)會更保守。(預設:40)",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "以「使用者」稱呼自己(例如:「使用者正在學習西班牙文」)",
|
||||
"References from": "引用來源",
|
||||
@ -869,7 +869,7 @@
|
||||
"Settings saved successfully!": "設定已成功儲存!",
|
||||
"Share": "分享",
|
||||
"Share Chat": "分享對話",
|
||||
"Share to OpenWebUI Community": "分享到 OpenWebUI 社群",
|
||||
"Share to Open WebUI Community": "分享到 OpenWebUI 社群",
|
||||
"Show": "顯示",
|
||||
"Show \"What's New\" modal on login": "登入時顯示「新功能」對話框",
|
||||
"Show Admin Details in Account Pending Overlay": "在帳號待審覆蓋層中顯示管理員詳細資訊",
|
||||
|
Loading…
x
Reference in New Issue
Block a user