Merge pull request #1838 from Maximilian-Pichler/german-locale

German locale
This commit is contained in:
Timothy Jaeryang Baek 2024-04-29 00:21:42 -07:00 committed by GitHub
commit 0235b0f6f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
37 changed files with 2291 additions and 390 deletions

View file

@ -70,7 +70,7 @@
> >
<tr> <tr>
<th scope="col" class="px-3 py-2"> {$i18n.t('Name')} </th> <th scope="col" class="px-3 py-2"> {$i18n.t('Name')} </th>
<th scope="col" class="px-3 py-2 hidden md:flex"> {$i18n.t('Created At')} </th> <th scope="col" class="px-3 py-2 hidden md:flex"> {$i18n.t('Created at')} </th>
<th scope="col" class="px-3 py-2 text-right" /> <th scope="col" class="px-3 py-2 text-right" />
</tr> </tr>
</thead> </thead>
@ -96,7 +96,7 @@
<td class="px-3 py-1 text-right"> <td class="px-3 py-1 text-right">
<div class="flex justify-end w-full"> <div class="flex justify-end w-full">
<Tooltip content="Delete Chat"> <Tooltip content={$i18n.t('Delete Chat')}>
<button <button
class="self-center w-fit text-sm px-2 py-2 hover:bg-black/5 dark:hover:bg-white/5 rounded-xl" class="self-center w-fit text-sm px-2 py-2 hover:bg-black/5 dark:hover:bg-white/5 rounded-xl"
on:click={async () => { on:click={async () => {
@ -133,7 +133,7 @@
{/each} --> {/each} -->
</div> </div>
{:else} {:else}
<div class="text-left text-sm w-full mb-8">{user.name} has no conversations.</div> <div class="text-left text-sm w-full mb-8">{user.name} {$i18n.t('has no conversations.')}</div>
{/if} {/if}
</div> </div>
</div> </div>

View file

@ -494,7 +494,7 @@
{/if} {/if}
{#if !readOnly} {#if !readOnly}
<Tooltip content="Edit" placement="bottom"> <Tooltip content={$i18n.t('Edit')} placement="bottom">
<button <button
class="{isLastMessage class="{isLastMessage
? 'visible' ? 'visible'
@ -521,7 +521,7 @@
</Tooltip> </Tooltip>
{/if} {/if}
<Tooltip content="Copy" placement="bottom"> <Tooltip content={$i18n.t('Copy')} placement="bottom">
<button <button
class="{isLastMessage class="{isLastMessage
? 'visible' ? 'visible'
@ -548,7 +548,7 @@
</Tooltip> </Tooltip>
{#if !readOnly} {#if !readOnly}
<Tooltip content="Good Response" placement="bottom"> <Tooltip content={$i18n.t('Good Response')} placement="bottom">
<button <button
class="{isLastMessage class="{isLastMessage
? 'visible' ? 'visible'
@ -583,7 +583,7 @@
</button> </button>
</Tooltip> </Tooltip>
<Tooltip content="Bad Response" placement="bottom"> <Tooltip content={$i18n.t('Bad Response')} placement="bottom">
<button <button
class="{isLastMessage class="{isLastMessage
? 'visible' ? 'visible'
@ -618,7 +618,7 @@
</Tooltip> </Tooltip>
{/if} {/if}
<Tooltip content="Read Aloud" placement="bottom"> <Tooltip content={$i18n.t('Read Aloud')} placement="bottom">
<button <button
id="speak-button-{message.id}" id="speak-button-{message.id}"
class="{isLastMessage class="{isLastMessage
@ -767,7 +767,7 @@
{/if} {/if}
{#if message.info} {#if message.info}
<Tooltip content="Generation Info" placement="bottom"> <Tooltip content={$i18n.t('Generation Info')} placement="bottom">
<button <button
class=" {isLastMessage class=" {isLastMessage
? 'visible' ? 'visible'
@ -796,7 +796,7 @@
{/if} {/if}
{#if isLastMessage && !readOnly} {#if isLastMessage && !readOnly}
<Tooltip content="Continue Response" placement="bottom"> <Tooltip content={$i18n.t('Continue Response')} placement="bottom">
<button <button
type="button" type="button"
class="{isLastMessage class="{isLastMessage
@ -828,7 +828,7 @@
</button> </button>
</Tooltip> </Tooltip>
<Tooltip content="Regenerate" placement="bottom"> <Tooltip content={$i18n.t('Regenerate')} placement="bottom">
<button <button
type="button" type="button"
class="{isLastMessage class="{isLastMessage

View file

@ -266,7 +266,7 @@
{/if} {/if}
{#if !readOnly} {#if !readOnly}
<Tooltip content="Edit" placement="bottom"> <Tooltip content={$i18n.t('Edit')} placement="bottom">
<button <button
class="invisible group-hover:visible p-1 rounded dark:hover:text-white hover:text-black transition edit-user-message-button" class="invisible group-hover:visible p-1 rounded dark:hover:text-white hover:text-black transition edit-user-message-button"
on:click={() => { on:click={() => {
@ -291,7 +291,7 @@
</Tooltip> </Tooltip>
{/if} {/if}
<Tooltip content="Copy" placement="bottom"> <Tooltip content={$i18n.t('Copy')} placement="bottom">
<button <button
class="invisible group-hover:visible p-1 rounded dark:hover:text-white hover:text-black transition" class="invisible group-hover:visible p-1 rounded dark:hover:text-white hover:text-black transition"
on:click={() => { on:click={() => {
@ -316,7 +316,7 @@
</Tooltip> </Tooltip>
{#if !isFirstMessage && !readOnly} {#if !isFirstMessage && !readOnly}
<Tooltip content="Delete" placement="bottom"> <Tooltip content={$i18n.t('Delete')} placement="bottom">
<button <button
class="invisible group-hover:visible p-1 rounded dark:hover:text-white hover:text-black transition" class="invisible group-hover:visible p-1 rounded dark:hover:text-white hover:text-black transition"
on:click={() => { on:click={() => {

View file

@ -57,7 +57,7 @@
{#if selectedModelIdx === 0} {#if selectedModelIdx === 0}
<div class=" self-center mr-2 disabled:text-gray-600 disabled:hover:text-gray-600"> <div class=" self-center mr-2 disabled:text-gray-600 disabled:hover:text-gray-600">
<Tooltip content="Add Model"> <Tooltip content={$i18n.t('Add Model')}>
<button <button
class=" " class=" "
{disabled} {disabled}

View file

@ -21,7 +21,7 @@
export let value = ''; export let value = '';
export let placeholder = 'Select a model'; export let placeholder = 'Select a model';
export let searchEnabled = true; export let searchEnabled = true;
export let searchPlaceholder = 'Search a model'; export let searchPlaceholder = $i18n.t('Search a model');
export let items = [{ value: 'mango', label: 'Mango' }]; export let items = [{ value: 'mango', label: 'Mango' }];

View file

@ -1,6 +1,9 @@
<script lang="ts"> <script lang="ts">
import TagInput from './Tags/TagInput.svelte'; import TagInput from './Tags/TagInput.svelte';
import TagList from './Tags/TagList.svelte'; import TagList from './Tags/TagList.svelte';
import { getContext } from 'svelte';
const i18n = getContext('i18n');
export let tags = []; export let tags = [];
@ -17,7 +20,7 @@
/> />
<TagInput <TagInput
label={tags.length == 0 ? 'Add Tags' : ''} label={tags.length == 0 ? $i18n.t('Add Tags') : ''}
on:add={(e) => { on:add={(e) => {
addTag(e.detail); addTag(e.detail);
}} }}

View file

@ -42,7 +42,7 @@
<div class="flex self-center w-[1px] h-5 mx-2 bg-gray-300 dark:bg-stone-700" /> <div class="flex self-center w-[1px] h-5 mx-2 bg-gray-300 dark:bg-stone-700" />
{#if !shareEnabled} {#if !shareEnabled}
<Tooltip content="Settings"> <Tooltip content={$i18n.t('Settings')}>
<button <button
class="cursor-pointer p-1.5 flex dark:hover:bg-gray-700 rounded-full transition" class="cursor-pointer p-1.5 flex dark:hover:bg-gray-700 rounded-full transition"
id="open-settings-button" id="open-settings-button"
@ -104,7 +104,7 @@
</button> </button>
</Menu> </Menu>
{/if} {/if}
<Tooltip content="New Chat"> <Tooltip content={$i18n.t('New Chat')}>
<button <button
id="new-chat-button" id="new-chat-button"
class=" cursor-pointer p-1.5 flex dark:hover:bg-gray-700 rounded-full transition" class=" cursor-pointer p-1.5 flex dark:hover:bg-gray-700 rounded-full transition"

View file

@ -1,5 +1,6 @@
<script lang="ts"> <script lang="ts">
import { DropdownMenu } from 'bits-ui'; import { DropdownMenu } from 'bits-ui';
import { getContext } from 'svelte';
import fileSaver from 'file-saver'; import fileSaver from 'file-saver';
const { saveAs } = fileSaver; const { saveAs } = fileSaver;
@ -12,6 +13,8 @@
import { downloadChatAsPDF } from '$lib/apis/utils'; import { downloadChatAsPDF } from '$lib/apis/utils';
const i18n = getContext('i18n');
export let shareEnabled: boolean = false; export let shareEnabled: boolean = false;
export let shareHandler: Function; export let shareHandler: Function;
export let downloadHandler: Function; export let downloadHandler: Function;
@ -104,7 +107,7 @@
d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
/> />
</svg> </svg>
<div class="flex items-center">Settings</div> <div class="flex items-center">{$i18n.t('Settings')}</div>
</DropdownMenu.Item> </DropdownMenu.Item>
{#if shareEnabled} {#if shareEnabled}
@ -126,7 +129,7 @@
clip-rule="evenodd" clip-rule="evenodd"
/> />
</svg> </svg>
<div class="flex items-center">Share</div> <div class="flex items-center">{$i18n.t('Share')}</div>
</DropdownMenu.Item> </DropdownMenu.Item>
<!-- <DropdownMenu.Item <!-- <DropdownMenu.Item
@ -154,7 +157,7 @@
/> />
</svg> </svg>
<div class="flex items-center">Download</div> <div class="flex items-center">{$i18n.t('Download')}</div>
</DropdownMenu.SubTrigger> </DropdownMenu.SubTrigger>
<DropdownMenu.SubContent <DropdownMenu.SubContent
class="w-full rounded-lg px-1 py-1.5 border border-gray-300/30 dark:border-gray-700/50 z-50 bg-white dark:bg-gray-900 dark:text-white shadow-lg" class="w-full rounded-lg px-1 py-1.5 border border-gray-300/30 dark:border-gray-700/50 z-50 bg-white dark:bg-gray-900 dark:text-white shadow-lg"
@ -167,7 +170,7 @@
downloadTxt(); downloadTxt();
}} }}
> >
<div class="flex items-center line-clamp-1">Plain text (.txt)</div> <div class="flex items-center line-clamp-1">{$i18n.t('Plain text (.txt)')}</div>
</DropdownMenu.Item> </DropdownMenu.Item>
<DropdownMenu.Item <DropdownMenu.Item
@ -176,7 +179,7 @@
downloadPdf(); downloadPdf();
}} }}
> >
<div class="flex items-center line-clamp-1">PDF document (.pdf)</div> <div class="flex items-center line-clamp-1">{$i18n.t('PDF document (.pdf)')}</div>
</DropdownMenu.Item> </DropdownMenu.Item>
</DropdownMenu.SubContent> </DropdownMenu.SubContent>
</DropdownMenu.Sub> </DropdownMenu.Sub>

View file

@ -610,7 +610,7 @@
</button> </button>
</ChatMenu> </ChatMenu>
<Tooltip content="Archive"> <Tooltip content={$i18n.t('Archive')}>
<button <button
aria-label="Archive" aria-label="Archive"
class=" self-center dark:hover:text-white transition" class=" self-center dark:hover:text-white transition"

View file

@ -1,6 +1,7 @@
<script lang="ts"> <script lang="ts">
import { DropdownMenu } from 'bits-ui'; import { DropdownMenu } from 'bits-ui';
import { flyAndScale } from '$lib/utils/transitions'; import { flyAndScale } from '$lib/utils/transitions';
import { getContext } from 'svelte'
import Dropdown from '$lib/components/common/Dropdown.svelte'; import Dropdown from '$lib/components/common/Dropdown.svelte';
import GarbageBin from '$lib/components/icons/GarbageBin.svelte'; import GarbageBin from '$lib/components/icons/GarbageBin.svelte';
@ -9,6 +10,8 @@
import Tags from '$lib/components/chat/Tags.svelte'; import Tags from '$lib/components/chat/Tags.svelte';
import Share from '$lib/components/icons/Share.svelte'; import Share from '$lib/components/icons/Share.svelte';
const i18n = getContext('i18n');
export let shareHandler: Function; export let shareHandler: Function;
export let renameHandler: Function; export let renameHandler: Function;
export let deleteHandler: Function; export let deleteHandler: Function;
@ -27,7 +30,7 @@
} }
}} }}
> >
<Tooltip content="More"> <Tooltip content={$i18n.t('More')}>
<slot /> <slot />
</Tooltip> </Tooltip>

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(например `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(например `sh webui.sh --api`)",
"(latest)": "(последна)", "(latest)": "(последна)",
"{{modelName}} is thinking...": "{{modelName}} мисли ...", "{{modelName}} is thinking...": "{{modelName}} мисли ...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}} Изисква се Бекенд", "{{webUIName}} Backend Required": "{{webUIName}} Изисква се Бекенд",
"a user": "потребител", "a user": "потребител",
"About": "Относно", "About": "Относно",
"Account": "Акаунт", "Account": "Акаунт",
"Action": "Действие", "Accurate information": "",
"Add a model": "Добавяне на модел", "Add a model": "Добавяне на модел",
"Add a model tag name": "Добавяне на име на таг за модел", "Add a model tag name": "Добавяне на име на таг за модел",
"Add a short description about what this modelfile does": "Добавяне на кратко описание за това какво прави този модфайл", "Add a short description about what this modelfile does": "Добавяне на кратко описание за това какво прави този модфайл",
@ -17,7 +18,8 @@
"Add Docs": "Добавяне на Документи", "Add Docs": "Добавяне на Документи",
"Add Files": "Добавяне на Файлове", "Add Files": "Добавяне на Файлове",
"Add message": "Добавяне на съобщение", "Add message": "Добавяне на съобщение",
"add tags": "добавяне на тагове", "Add Model": "",
"Add Tags": "добавяне на тагове",
"Adjusting these settings will apply changes universally to all users.": "При промяна на тези настройки промените се прилагат за всички потребители.", "Adjusting these settings will apply changes universally to all users.": "При промяна на тези настройки промените се прилагат за всички потребители.",
"admin": "админ", "admin": "админ",
"Admin Panel": "Панел на Администратор", "Admin Panel": "Панел на Администратор",
@ -33,9 +35,14 @@
"and": "и", "and": "и",
"API Base URL": "API Базов URL", "API Base URL": "API Базов URL",
"API Key": "API Ключ", "API Key": "API Ключ",
"API Key created.": "",
"API keys": "",
"API RPM": "API RPM", "API RPM": "API RPM",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "са разрешени - Активирайте тази команда чрез въвеждане", "are allowed - Activate this command by typing": "са разрешени - Активирайте тази команда чрез въвеждане",
"Are you sure?": "Сигурни ли сте?", "Are you sure?": "Сигурни ли сте?",
"Attention to detail": "",
"Audio": "Аудио", "Audio": "Аудио",
"Auto-playback response": "Аувтоматично възпроизвеждане на Отговора", "Auto-playback response": "Аувтоматично възпроизвеждане на Отговора",
"Auto-send input after 3 sec.": "Аувтоматично изпращане на входа след 3 сек.", "Auto-send input after 3 sec.": "Аувтоматично изпращане на входа след 3 сек.",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Базов URL е задължителен.", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Базов URL е задължителен.",
"available!": "наличен!", "available!": "наличен!",
"Back": "Назад", "Back": "Назад",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "Режим на Създаване", "Builder Mode": "Режим на Създаване",
"Cancel": "Отказ", "Cancel": "Отказ",
"Categories": "Категории", "Categories": "Категории",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "Натиснете върху бутона за промяна на ролята на потребителя.", "Click on the user role button to change a user's role.": "Натиснете върху бутона за промяна на ролята на потребителя.",
"Close": "Затвори", "Close": "Затвори",
"Collection": "Колекция", "Collection": "Колекция",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "Команда", "Command": "Команда",
"Confirm Password": "Потвърди Парола", "Confirm Password": "Потвърди Парола",
"Connections": "Връзки", "Connections": "Връзки",
"Content": "Съдържание", "Content": "Съдържание",
"Context Length": "Дължина на Контекста", "Context Length": "Дължина на Контекста",
"Continue Response": "",
"Conversation Mode": "Режим на Чат", "Conversation Mode": "Режим на Чат",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "Копиране на последен код блок", "Copy last code block": "Копиране на последен код блок",
"Copy last response": "Копиране на последен отговор", "Copy last response": "Копиране на последен отговор",
"Copy Link": "",
"Copying to clipboard was successful!": "Копирането в клипборда беше успешно!", "Copying to clipboard was successful!": "Копирането в клипборда беше успешно!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Създайте кратка фраза от 3-5 думи като заглавие за следващото запитване, като стриктно спазвате ограничението от 3-5 думи и избягвате използването на думата 'заглавие':", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Създайте кратка фраза от 3-5 думи като заглавие за следващото запитване, като стриктно спазвате ограничението от 3-5 думи и избягвате използването на думата 'заглавие':",
"Create a modelfile": "Създаване на модфайл", "Create a modelfile": "Създаване на модфайл",
"Create Account": "Създаване на Акаунт", "Create Account": "Създаване на Акаунт",
"Created at": "Създадено на", "Created at": "Създадено на",
"Created by": "Създадено от", "Created At": "",
"Current Model": "Текущ модел", "Current Model": "Текущ модел",
"Current Password": "Текуща Парола", "Current Password": "Текуща Парола",
"Custom": "Персонализиран", "Custom": "Персонализиран",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "По подразбиране", "Default": "По подразбиране",
"Default (Automatic1111)": "По подразбиране (Automatic1111)", "Default (Automatic1111)": "По подразбиране (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "По подразбиране (Web API)", "Default (Web API)": "По подразбиране (Web API)",
"Default model updated": "Моделът по подразбиране е обновен", "Default model updated": "Моделът по подразбиране е обновен",
"Default Prompt Suggestions": "Промпт Предложения по подразбиране", "Default Prompt Suggestions": "Промпт Предложения по подразбиране",
"Default User Role": "Роля на потребителя по подразбиране", "Default User Role": "Роля на потребителя по подразбиране",
"delete": "изтриване", "delete": "изтриване",
"Delete": "",
"Delete a model": "Изтриване на модел", "Delete a model": "Изтриване на модел",
"Delete chat": "Изтриване на чат", "Delete chat": "Изтриване на чат",
"Delete Chat": "",
"Delete Chats": "Изтриване на Чатове", "Delete Chats": "Изтриване на Чатове",
"Delete User": "",
"Deleted {{deleteModelTag}}": "Изтрито {{deleteModelTag}}", "Deleted {{deleteModelTag}}": "Изтрито {{deleteModelTag}}",
"Deleted {tagName}": "Изтрито {tagName}", "Deleted {{tagName}}": "",
"Description": "Описание", "Description": "Описание",
"Notifications": "Десктоп Известия", "Didn't fully follow instructions": "",
"Disabled": "Деактивиран", "Disabled": "Деактивиран",
"Discover a modelfile": "Откриване на модфайл", "Discover a modelfile": "Откриване на модфайл",
"Discover a prompt": "Откриване на промпт", "Discover a prompt": "Откриване на промпт",
@ -113,18 +133,21 @@
"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?": "Нямате акаунт?",
"Download as a File": "Сваляне като Файл", "Don't like the style": "",
"Download": "",
"Download Database": "Сваляне на база данни", "Download Database": "Сваляне на база данни",
"Drop any files here to add to the conversation": "Пускане на файлове тук, за да ги добавите в чата", "Drop any files here to add to the conversation": "Пускане на файлове тук, за да ги добавите в чата",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр. '30с','10м'. Валидни единици са 'с', 'м', 'ч'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр. '30с','10м'. Валидни единици са 'с', 'м', 'ч'.",
"Edit": "",
"Edit Doc": "Редактиране на документ", "Edit Doc": "Редактиране на документ",
"Edit User": "Редактиране на потребител", "Edit User": "Редактиране на потребител",
"Email": "Имейл", "Email": "Имейл",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "Вклюване на Чат История", "Enable Chat History": "Вклюване на Чат История",
"Enable New Sign Ups": "Вклюване на Нови Потребители", "Enable New Sign Ups": "Вклюване на Нови Потребители",
"Enabled": "Включено", "Enabled": "Включено",
"Enter {{role}} message here": "Въведете съобщение за {{role}} тук", "Enter {{role}} message here": "Въведете съобщение за {{role}} тук",
"Enter API Key": "Въведете API ключ",
"Enter Chunk Overlap": "Въведете Chunk Overlap", "Enter Chunk Overlap": "Въведете Chunk Overlap",
"Enter Chunk Size": "Въведете Chunk Size", "Enter Chunk Size": "Въведете Chunk Size",
"Enter Image Size (e.g. 512x512)": "Въведете размер на изображението (напр. 512x512)", "Enter Image Size (e.g. 512x512)": "Въведете размер на изображението (напр. 512x512)",
@ -135,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "Въведете Max Tokens (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "Въведете Max Tokens (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "Въведете таг на модел (напр. {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "Въведете таг на модел (напр. {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "Въведете брой стъпки (напр. 50)", "Enter Number of Steps (e.g. 50)": "Въведете брой стъпки (напр. 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "Въведете стоп последователност", "Enter stop sequence": "Въведете стоп последователност",
"Enter Top K": "Въведете Top K", "Enter Top K": "Въведете Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Въведете URL (напр. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Въведете URL (напр. http://127.0.0.1:7860/)",
@ -147,20 +171,29 @@
"Export Documents Mapping": "Експортване на документен мапинг", "Export Documents Mapping": "Експортване на документен мапинг",
"Export Modelfiles": "Експортване на модфайлове", "Export Modelfiles": "Експортване на модфайлове",
"Export Prompts": "Експортване на промптове", "Export Prompts": "Експортване на промптове",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "Грешка при четене на съдържанието от клипборда", "Failed to read clipboard contents": "Грешка при четене на съдържанието от клипборда",
"Feel free to add specific details": "",
"File Mode": "Файл Мод", "File Mode": "Файл Мод",
"File not found.": "Файл не е намерен.", "File not found.": "Файл не е намерен.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "",
"Focus chat input": "Фокусиране на чат вход", "Focus chat input": "Фокусиране на чат вход",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "Форматирайте вашите променливи, като използвате квадратни скоби, както следва:", "Format your variables using square brackets like this:": "Форматирайте вашите променливи, като използвате квадратни скоби, както следва:",
"From (Base Model)": "От (Базов модел)", "From (Base Model)": "От (Базов модел)",
"Fluidly stream large external response chunks": "Плавно предаване на големи части от външен отговор", "Fluidly stream large external response chunks": "Плавно предаване на големи части от външен отговор",
"Full Screen Mode": "На Цял екран", "Full Screen Mode": "На Цял екран",
"General": "Основни", "General": "Основни",
"General Settings": "Основни Настройки", "General Settings": "Основни Настройки",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "Здравей, {{name}}", "Hello, {{name}}": "Здравей, {{name}}",
"Hide": "Скрий", "Hide": "Скрий",
"Hide Additional Params": "Скрий допълнителни параметри", "Hide Additional Params": "Скрий допълнителни параметри",
"How can I help you today?": "Как мога да ви помогна днес?", "How can I help you today?": "Как мога да ви помогна днес?",
"Hybrid Search": "",
"Image Generation (Experimental)": "Генерация на изображения (Експериментално)", "Image Generation (Experimental)": "Генерация на изображения (Експериментално)",
"Image Generation Engine": "Двигател за генериране на изображения", "Image Generation Engine": "Двигател за генериране на изображения",
"Image Settings": "Настройки на изображения", "Image Settings": "Настройки на изображения",
@ -178,6 +211,7 @@
"Keep Alive": "Keep Alive", "Keep Alive": "Keep Alive",
"Keyboard shortcuts": "Клавиши за бърз достъп", "Keyboard shortcuts": "Клавиши за бърз достъп",
"Language": "Език", "Language": "Език",
"Last Active": "",
"Light": "Светъл", "Light": "Светъл",
"Listening...": "Слушам...", "Listening...": "Слушам...",
"LLMs can make mistakes. Verify important information.": "LLMs могат да правят грешки. Проверете важните данни.", "LLMs can make mistakes. Verify important information.": "LLMs могат да правят грешки. Проверете важните данни.",
@ -192,10 +226,12 @@
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "MMMM DD, YYYY": "MMMM DD, YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "Моделът '{{modelName}}' беше успешно свален.", "Model '{{modelName}}' has been successfully downloaded.": "Моделът '{{modelName}}' беше успешно свален.",
"Model '{{modelTag}}' is already in queue for downloading.": "Моделът '{{modelTag}}' е вече в очакване за сваляне.", "Model '{{modelTag}}' is already in queue for downloading.": "Моделът '{{modelTag}}' е вече в очакване за сваляне.",
"Model {{modelId}} not found": "Моделът {{modelId}} не е намерен", "Model {{modelId}} not found": "Моделът {{modelId}} не е намерен",
"Model {{modelName}} already exists.": "Моделът {{modelName}} вече съществува.", "Model {{modelName}} already exists.": "Моделът {{modelName}} вече съществува.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Name": "Име на модел", "Model Name": "Име на модел",
"Model not selected": "Не е избран модел", "Model not selected": "Не е избран модел",
"Model Tag Name": "Име на таг на модел", "Model Tag Name": "Име на таг на модел",
@ -206,6 +242,7 @@
"Modelfile Content": "Съдържание на модфайл", "Modelfile Content": "Съдържание на модфайл",
"Modelfiles": "Модфайлове", "Modelfiles": "Модфайлове",
"Models": "Модели", "Models": "Модели",
"More": "",
"My Documents": "Мои документи", "My Documents": "Мои документи",
"My Modelfiles": "Мои модфайлове", "My Modelfiles": "Мои модфайлове",
"My Prompts": "Мои промптове", "My Prompts": "Мои промптове",
@ -214,10 +251,14 @@
"Name your modelfile": "Име на модфайла", "Name your modelfile": "Име на модфайла",
"New Chat": "Нов чат", "New Chat": "Нов чат",
"New Password": "Нова парола", "New Password": "Нова парола",
"Not factually correct": "",
"Not sure what to add?": "Не сте сигурни, какво да добавите?", "Not sure what to add?": "Не сте сигурни, какво да добавите?",
"Not sure what to write? Switch to": "Не сте сигурни, какво да напишете? Превключете към", "Not sure what to write? Switch to": "Не сте сигурни, какво да напишете? Превключете към",
"Notifications": "Десктоп Известия",
"Off": "Изкл.", "Off": "Изкл.",
"Okay, Let's Go!": "ОК, Нека започваме!", "Okay, Let's Go!": "ОК, Нека започваме!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "Ollama Базов URL", "Ollama Base URL": "Ollama Базов URL",
"Ollama Version": "Ollama Версия", "Ollama Version": "Ollama Версия",
"On": "Вкл.", "On": "Вкл.",
@ -230,18 +271,24 @@
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "Open AI (Dall-E)", "Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "Отвори нов чат", "Open new chat": "Отвори нов чат",
"OpenAI": "",
"OpenAI API": "OpenAI API", "OpenAI API": "OpenAI API",
"OpenAI API Key": "OpenAI API ключ", "OpenAI API Config": "",
"OpenAI API Key is required.": "OpenAI API ключ е задължителен.", "OpenAI API Key is required.": "OpenAI API ключ е задължителен.",
"OpenAI URL/Key required.": "",
"or": "или", "or": "или",
"Other": "",
"Parameters": "Параметри", "Parameters": "Параметри",
"Password": "Парола", "Password": "Парола",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "PDF Extract Images (OCR)", "PDF Extract Images (OCR)": "PDF Extract Images (OCR)",
"pending": "в очакване", "pending": "в очакване",
"Permission denied when accessing microphone: {{error}}": "Permission denied when accessing microphone: {{error}}", "Permission denied when accessing microphone: {{error}}": "Permission denied when accessing microphone: {{error}}",
"Plain text (.txt)": "",
"Playground": "Плейграунд", "Playground": "Плейграунд",
"Archived Chats": "Архив истории чата", "Positive attitude": "",
"Profile": "Профил", "Profile Image": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
"Prompt Content": "Съдържание на промпта", "Prompt Content": "Съдържание на промпта",
"Prompt suggestions": "Промпт предложения", "Prompt suggestions": "Промпт предложения",
"Prompts": "Промптове", "Prompts": "Промптове",
@ -250,12 +297,18 @@
"Query Params": "Query Параметри", "Query Params": "Query Параметри",
"RAG Template": "RAG Шаблон", "RAG Template": "RAG Шаблон",
"Raw Format": "Raw Формат", "Raw Format": "Raw Формат",
"Read Aloud": "",
"Record voice": "Записване на глас", "Record voice": "Записване на глас",
"Redirecting you to OpenWebUI Community": "Пренасочване към OpenWebUI общността", "Redirecting you to OpenWebUI Community": "Пренасочване към OpenWebUI общността",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "Бележки по изданието", "Release Notes": "Бележки по изданието",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "Repeat Last N", "Repeat Last N": "Repeat Last N",
"Repeat Penalty": "Repeat Penalty", "Repeat Penalty": "Repeat Penalty",
"Request Mode": "Request Mode", "Request Mode": "Request Mode",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Ресет Vector Storage", "Reset Vector Storage": "Ресет Vector Storage",
"Response AutoCopy to Clipboard": "Аувтоматично копиране на отговор в клипборда", "Response AutoCopy to Clipboard": "Аувтоматично копиране на отговор в клипборда",
"Role": "Роля", "Role": "Роля",
@ -270,6 +323,7 @@
"Scan complete!": "Сканиране завършено!", "Scan complete!": "Сканиране завършено!",
"Scan for documents from {{path}}": "Сканиране за документи в {{path}}", "Scan for documents from {{path}}": "Сканиране за документи в {{path}}",
"Search": "Търси", "Search": "Търси",
"Search a model": "",
"Search Documents": "Търси Документи", "Search Documents": "Търси Документи",
"Search Prompts": "Търси Промптове", "Search Prompts": "Търси Промптове",
"See readme.md for instructions": "Виж readme.md за инструкции", "See readme.md for instructions": "Виж readme.md за инструкции",
@ -289,37 +343,46 @@
"Set Voice": "Задай Глас", "Set Voice": "Задай Глас",
"Settings": "Настройки", "Settings": "Настройки",
"Settings saved successfully!": "Настройките са запазени успешно!", "Settings saved successfully!": "Настройките са запазени успешно!",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "Споделите с OpenWebUI Общността", "Share to OpenWebUI Community": "Споделите с OpenWebUI Общността",
"short-summary": "short-summary", "short-summary": "short-summary",
"Show": "Покажи", "Show": "Покажи",
"Show Additional Params": "Покажи допълнителни параметри", "Show Additional Params": "Покажи допълнителни параметри",
"Show shortcuts": "Покажи", "Show shortcuts": "Покажи",
"Showcased creativity": "",
"sidebar": "sidebar", "sidebar": "sidebar",
"Sign in": "Вписване", "Sign in": "Вписване",
"Sign Out": "Изход", "Sign Out": "Изход",
"Sign up": "Регистрация", "Sign up": "Регистрация",
"Signing in": "",
"Speech recognition error: {{error}}": "Speech recognition error: {{error}}", "Speech recognition error: {{error}}": "Speech recognition error: {{error}}",
"Speech-to-Text Engine": "Speech-to-Text Engine", "Speech-to-Text Engine": "Speech-to-Text Engine",
"SpeechRecognition API is not supported in this browser.": "SpeechRecognition API is not supported in this browser.", "SpeechRecognition API is not supported in this browser.": "SpeechRecognition API is not supported in this browser.",
"Stop Sequence": "Stop Sequence", "Stop Sequence": "Stop Sequence",
"STT Settings": "STT Настройки", "STT Settings": "STT Настройки",
"Submit": "Изпращане", "Submit": "Изпращане",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "Успех", "Success": "Успех",
"Successfully updated.": "Успешно обновено.", "Successfully updated.": "Успешно обновено.",
"Sync All": "Синхронизиране на всички", "Sync All": "Синхронизиране на всички",
"System": "Система", "System": "Система",
"System Prompt": "Системен Промпт", "System Prompt": "Системен Промпт",
"Tags": "Тагове", "Tags": "Тагове",
"Tell us more:": "",
"Temperature": "Температура", "Temperature": "Температура",
"Template": "Шаблон", "Template": "Шаблон",
"Text Completion": "Text Completion", "Text Completion": "Text Completion",
"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!": "",
"Theme": "Тема", "Theme": "Тема",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Това гарантира, че ценните ви разговори се запазват сигурно във вашата бекенд база данни. Благодарим ви!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Това гарантира, че ценните ви разговори се запазват сигурно във вашата бекенд база данни. Благодарим ви!",
"This setting does not sync across browsers or devices.": "Тази настройка не се синхронизира между браузъри или устройства.", "This setting does not sync across browsers or devices.": "Тази настройка не се синхронизира между браузъри или устройства.",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Съвет: Актуализирайте няколко слота за променливи последователно, като натискате клавиша Tab в чат входа след всяка подмяна.", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Съвет: Актуализирайте няколко слота за променливи последователно, като натискате клавиша Tab в чат входа след всяка подмяна.",
"Title": "Заглавие", "Title": "Заглавие",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "Автоматично Генериране на Заглавие", "Title Auto-Generation": "Автоматично Генериране на Заглавие",
"Title Generation Prompt": "Промпт за Генериране на Заглавие", "Title Generation Prompt": "Промпт за Генериране на Заглавие",
"to": "в", "to": "в",
@ -335,13 +398,19 @@
"Type Hugging Face Resolve (Download) URL": "Въведете Hugging Face Resolve (Download) URL", "Type Hugging Face Resolve (Download) URL": "Въведете Hugging Face Resolve (Download) URL",
"Uh-oh! There was an issue connecting to {{provider}}.": "О, не! Възникна проблем при свързването с {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "О, не! Възникна проблем при свързването с {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Непознат файлов тип '{{file_type}}', но се приема и обработва като текст", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Непознат файлов тип '{{file_type}}', но се приема и обработва като текст",
"Update and Copy Link": "",
"Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "Обновяване на парола", "Update password": "Обновяване на парола",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "Качване на GGUF модел", "Upload a GGUF model": "Качване на GGUF модел",
"Upload files": "Качване на файлове", "Upload files": "Качване на файлове",
"Upload Progress": "Прогрес на качването", "Upload Progress": "Прогрес на качването",
"URL Mode": "URL Mode", "URL Mode": "URL Mode",
"Use '#' in the prompt input to load and select your documents.": "Използвайте '#' във промпта за да заредите и изберете вашите документи.", "Use '#' in the prompt input to load and select your documents.": "Използвайте '#' във промпта за да заредите и изберете вашите документи.",
"Use Gravatar": "Използвайте Gravatar", "Use Gravatar": "Използвайте Gravatar",
"Use Initials": "",
"user": "потребител", "user": "потребител",
"User Permissions": "Права на потребителя", "User Permissions": "Права на потребителя",
"Users": "Потребители", "Users": "Потребители",
@ -350,7 +419,9 @@
"variable": "променлива", "variable": "променлива",
"variable to have them replaced with clipboard content.": "променливи да се заменят съдържанието от клипборд.", "variable to have them replaced with clipboard content.": "променливи да се заменят съдържанието от клипборд.",
"Version": "Версия", "Version": "Версия",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Уеб", "Web": "Уеб",
"Webhook URL": "",
"WebUI Add-ons": "WebUI Добавки", "WebUI Add-ons": "WebUI Добавки",
"WebUI Settings": "WebUI Настройки", "WebUI Settings": "WebUI Настройки",
"WebUI will make requests to": "WebUI ще направи заявки към", "WebUI will make requests to": "WebUI ще направи заявки към",

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(যেমন `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(যেমন `sh webui.sh --api`)",
"(latest)": "(সর্বশেষ)", "(latest)": "(সর্বশেষ)",
"{{modelName}} is thinking...": "{{modelName}} চিন্তা করছে...", "{{modelName}} is thinking...": "{{modelName}} চিন্তা করছে...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}} ব্যাকএন্ড আবশ্যক", "{{webUIName}} Backend Required": "{{webUIName}} ব্যাকএন্ড আবশ্যক",
"a user": "একজন ব্যাবহারকারী", "a user": "একজন ব্যাবহারকারী",
"About": "সম্পর্কে", "About": "সম্পর্কে",
"Account": "একাউন্ট", "Account": "একাউন্ট",
"Action": "একশন", "Accurate information": "",
"Add a model": "একটি মডেল যোগ করুন", "Add a model": "একটি মডেল যোগ করুন",
"Add a model tag name": "একটি মডেল ট্যাগ যোগ করুন", "Add a model tag name": "একটি মডেল ট্যাগ যোগ করুন",
"Add a short description about what this modelfile does": "এই মডেলফাইলটির সম্পর্কে সংক্ষিপ্ত বিবরণ যোগ করুন", "Add a short description about what this modelfile does": "এই মডেলফাইলটির সম্পর্কে সংক্ষিপ্ত বিবরণ যোগ করুন",
@ -17,7 +18,8 @@
"Add Docs": "ডকুমেন্ট যোগ করুন", "Add Docs": "ডকুমেন্ট যোগ করুন",
"Add Files": "ফাইল যোগ করুন", "Add Files": "ফাইল যোগ করুন",
"Add message": "মেসেজ যোগ করুন", "Add message": "মেসেজ যোগ করুন",
"add tags": "ট্যাগ যোগ করুন", "Add Model": "",
"Add Tags": "ট্যাগ যোগ করুন",
"Adjusting these settings will apply changes universally to all users.": "এই সেটিংগুলো পরিবর্তন করলে তা সব ইউজারের উপরেই প্রয়োগ করা হবে", "Adjusting these settings will apply changes universally to all users.": "এই সেটিংগুলো পরিবর্তন করলে তা সব ইউজারের উপরেই প্রয়োগ করা হবে",
"admin": "এডমিন", "admin": "এডমিন",
"Admin Panel": "এডমিন প্যানেল", "Admin Panel": "এডমিন প্যানেল",
@ -33,9 +35,14 @@
"and": "এবং", "and": "এবং",
"API Base URL": "এপিআই বেজ ইউআরএল", "API Base URL": "এপিআই বেজ ইউআরএল",
"API Key": "এপিআই কোড", "API Key": "এপিআই কোড",
"API Key created.": "",
"API keys": "",
"API RPM": "এপিআই আরপিএম", "API RPM": "এপিআই আরপিএম",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "অনুমোদিত - কমান্ডটি চালু করার জন্য লিখুন", "are allowed - Activate this command by typing": "অনুমোদিত - কমান্ডটি চালু করার জন্য লিখুন",
"Are you sure?": "আপনি নিশ্চিত?", "Are you sure?": "আপনি নিশ্চিত?",
"Attention to detail": "",
"Audio": "অডিও", "Audio": "অডিও",
"Auto-playback response": "রেসপন্স অটো-প্লেব্যাক", "Auto-playback response": "রেসপন্স অটো-প্লেব্যাক",
"Auto-send input after 3 sec.": "৩ সেকেন্ড পর ইনপুট সংয়ক্রিয়ভাবে পাঠান", "Auto-send input after 3 sec.": "৩ সেকেন্ড পর ইনপুট সংয়ক্রিয়ভাবে পাঠান",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 বেজ ইউআরএল আবশ্যক", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 বেজ ইউআরএল আবশ্যক",
"available!": "উপলব্ধ!", "available!": "উপলব্ধ!",
"Back": "পেছনে", "Back": "পেছনে",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "বিল্ডার মোড", "Builder Mode": "বিল্ডার মোড",
"Cancel": "বাতিল", "Cancel": "বাতিল",
"Categories": "ক্যাটাগরিসমূহ", "Categories": "ক্যাটাগরিসমূহ",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "ইউজারের পদবি পরিবর্তন করার জন্য ইউজারের পদবি বাটনে ক্লিক করুন", "Click on the user role button to change a user's role.": "ইউজারের পদবি পরিবর্তন করার জন্য ইউজারের পদবি বাটনে ক্লিক করুন",
"Close": "বন্ধ", "Close": "বন্ধ",
"Collection": "সংগ্রহ", "Collection": "সংগ্রহ",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "কমান্ড", "Command": "কমান্ড",
"Confirm Password": "পাসওয়ার্ড নিশ্চিত করুন", "Confirm Password": "পাসওয়ার্ড নিশ্চিত করুন",
"Connections": "কানেকশনগুলো", "Connections": "কানেকশনগুলো",
"Content": "বিষয়বস্তু", "Content": "বিষয়বস্তু",
"Context Length": "কনটেক্সটের দৈর্ঘ্য", "Context Length": "কনটেক্সটের দৈর্ঘ্য",
"Continue Response": "",
"Conversation Mode": "কথোপকথন মোড", "Conversation Mode": "কথোপকথন মোড",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "সর্বশেষ কোড ব্লক কপি করুন", "Copy last code block": "সর্বশেষ কোড ব্লক কপি করুন",
"Copy last response": "সর্বশেষ রেসপন্স কপি করুন", "Copy last response": "সর্বশেষ রেসপন্স কপি করুন",
"Copy Link": "",
"Copying to clipboard was successful!": "ক্লিপবোর্ডে কপি করা সফল হয়েছে", "Copying to clipboard was successful!": "ক্লিপবোর্ডে কপি করা সফল হয়েছে",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "'title' শব্দটি ব্যবহার না করে নিম্মোক্ত অনুসন্ধানের জন্য সংক্ষেপে সর্বোচ্চ ৩-৫ শব্দের একটি হেডার তৈরি করুন", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "'title' শব্দটি ব্যবহার না করে নিম্মোক্ত অনুসন্ধানের জন্য সংক্ষেপে সর্বোচ্চ ৩-৫ শব্দের একটি হেডার তৈরি করুন",
"Create a modelfile": "একটি মডেলফাইল তৈরি করুন", "Create a modelfile": "একটি মডেলফাইল তৈরি করুন",
"Create Account": "একাউন্ট তৈরি করুন", "Create Account": "একাউন্ট তৈরি করুন",
"Created at": "নির্মানকাল", "Created at": "নির্মানকাল",
"Created by": "নির্মাতা", "Created At": "",
"Current Model": "বর্তমান মডেল", "Current Model": "বর্তমান মডেল",
"Current Password": "বর্তমান পাসওয়ার্ড", "Current Password": "বর্তমান পাসওয়ার্ড",
"Custom": "কাস্টম", "Custom": "কাস্টম",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "ডিফল্ট", "Default": "ডিফল্ট",
"Default (Automatic1111)": "ডিফল্ট (Automatic1111)", "Default (Automatic1111)": "ডিফল্ট (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "ডিফল্ট (Web API)", "Default (Web API)": "ডিফল্ট (Web API)",
"Default model updated": "ডিফল্ট মডেল আপডেট হয়েছে", "Default model updated": "ডিফল্ট মডেল আপডেট হয়েছে",
"Default Prompt Suggestions": "ডিফল্ট প্রম্পট সাজেশন", "Default Prompt Suggestions": "ডিফল্ট প্রম্পট সাজেশন",
"Default User Role": "ইউজারের ডিফল্ট পদবি", "Default User Role": "ইউজারের ডিফল্ট পদবি",
"delete": "মুছে ফেলুন", "delete": "মুছে ফেলুন",
"Delete": "",
"Delete a model": "একটি মডেল মুছে ফেলুন", "Delete a model": "একটি মডেল মুছে ফেলুন",
"Delete chat": "চ্যাট মুছে ফেলুন", "Delete chat": "চ্যাট মুছে ফেলুন",
"Delete Chat": "",
"Delete Chats": "চ্যাটগুলো মুছে ফেলুন", "Delete Chats": "চ্যাটগুলো মুছে ফেলুন",
"Delete User": "",
"Deleted {{deleteModelTag}}": "{{deleteModelTag}} মুছে ফেলা হয়েছে", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} মুছে ফেলা হয়েছে",
"Deleted {tagName}": "{tagName} মুছে ফেলা হয়েছে", "Deleted {{tagName}}": "",
"Description": "বিবরণ", "Description": "বিবরণ",
"Notifications": "নোটিফিকেশনসমূহ", "Didn't fully follow instructions": "",
"Disabled": "অক্ষম", "Disabled": "অক্ষম",
"Discover a modelfile": "একটি মডেলফাইল খুঁজে বের করুন", "Discover a modelfile": "একটি মডেলফাইল খুঁজে বের করুন",
"Discover a prompt": "একটি প্রম্পট খুঁজে বের করুন", "Discover a prompt": "একটি প্রম্পট খুঁজে বের করুন",
@ -113,19 +133,21 @@
"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?": "একাউন্ট নেই?",
"Download as a File": "ফাইল হিসেবে ডাউনলোড করুন", "Don't like the style": "",
"Download": "",
"Download Database": "ডেটাবেজ ডাউনলোড করুন", "Download Database": "ডেটাবেজ ডাউনলোড করুন",
"Drop any files here to add to the conversation": "আলোচনায় যুক্ত করার জন্য যে কোন ফাইল এখানে ড্রপ করুন", "Drop any files here to add to the conversation": "আলোচনায় যুক্ত করার জন্য যে কোন ফাইল এখানে ড্রপ করুন",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "যেমন '30s','10m'. সময়ের অনুমোদিত অনুমোদিত এককগুলি হচ্ছে 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "যেমন '30s','10m'. সময়ের অনুমোদিত অনুমোদিত এককগুলি হচ্ছে 's', 'm', 'h'.",
"Edit": "",
"Edit Doc": "ডকুমেন্ট এডিট করুন", "Edit Doc": "ডকুমেন্ট এডিট করুন",
"Edit User": "ইউজার এডিট করুন", "Edit User": "ইউজার এডিট করুন",
"Email": "ইমেইল", "Email": "ইমেইল",
"Embedding model: {{embedding_model}}": "এমবেডিং মডেল: {{embedding_model}}", "Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "চ্যাট হিস্টোরি চালু করুন", "Enable Chat History": "চ্যাট হিস্টোরি চালু করুন",
"Enable New Sign Ups": "নতুন সাইনআপ চালু করুন", "Enable New Sign Ups": "নতুন সাইনআপ চালু করুন",
"Enabled": "চালু করা হয়েছে", "Enabled": "চালু করা হয়েছে",
"Enter {{role}} message here": "{{role}} মেসেজ এখানে লিখুন", "Enter {{role}} message here": "{{role}} মেসেজ এখানে লিখুন",
"Enter API Key": "API Key লিখুন",
"Enter Chunk Overlap": "চাঙ্ক ওভারল্যাপ লিখুন", "Enter Chunk Overlap": "চাঙ্ক ওভারল্যাপ লিখুন",
"Enter Chunk Size": "চাংক সাইজ লিখুন", "Enter Chunk Size": "চাংক সাইজ লিখুন",
"Enter Image Size (e.g. 512x512)": "ছবির মাপ লিখুন (যেমন 512x512)", "Enter Image Size (e.g. 512x512)": "ছবির মাপ লিখুন (যেমন 512x512)",
@ -136,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "সর্বোচ্চ টোকেন সংখ্যা দিন (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "সর্বোচ্চ টোকেন সংখ্যা দিন (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "মডেল ট্যাগ লিখুন (e.g. {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "মডেল ট্যাগ লিখুন (e.g. {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "ধাপের সংখ্যা দিন (যেমন: 50)", "Enter Number of Steps (e.g. 50)": "ধাপের সংখ্যা দিন (যেমন: 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "স্টপ সিকোয়েন্স লিখুন", "Enter stop sequence": "স্টপ সিকোয়েন্স লিখুন",
"Enter Top K": "Top K লিখুন", "Enter Top K": "Top K লিখুন",
"Enter URL (e.g. http://127.0.0.1:7860/)": "ইউআরএল দিন (যেমন http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "ইউআরএল দিন (যেমন http://127.0.0.1:7860/)",
@ -148,21 +171,28 @@
"Export Documents Mapping": "ডকুমেন্টসমূহ ম্যাপিং এক্সপোর্ট করুন", "Export Documents Mapping": "ডকুমেন্টসমূহ ম্যাপিং এক্সপোর্ট করুন",
"Export Modelfiles": "মডেলফাইলগুলো এক্সপোর্ট করুন", "Export Modelfiles": "মডেলফাইলগুলো এক্সপোর্ট করুন",
"Export Prompts": "প্রম্পটগুলো একপোর্ট করুন", "Export Prompts": "প্রম্পটগুলো একপোর্ট করুন",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "ক্লিপবোর্ডের বিষয়বস্তু পড়া সম্ভব হয়নি", "Failed to read clipboard contents": "ক্লিপবোর্ডের বিষয়বস্তু পড়া সম্ভব হয়নি",
"Feel free to add specific details": "",
"File Mode": "ফাইল মোড", "File Mode": "ফাইল মোড",
"File not found.": "ফাইল পাওয়া যায়নি", "File not found.": "ফাইল পাওয়া যায়নি",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "ফিঙ্গারপ্রিন্ট স্পুফিং ধরা পড়েছে: অ্যাভাটার হিসেবে নামের আদ্যক্ষর ব্যবহার করা যাচ্ছে না। ডিফল্ট প্রোফাইল পিকচারে ফিরিয়ে নেয়া হচ্ছে।", "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "ফিঙ্গারপ্রিন্ট স্পুফিং ধরা পড়েছে: অ্যাভাটার হিসেবে নামের আদ্যক্ষর ব্যবহার করা যাচ্ছে না। ডিফল্ট প্রোফাইল পিকচারে ফিরিয়ে নেয়া হচ্ছে।",
"Fluidly stream large external response chunks": "বড় এক্সটার্নাল রেসপন্স চাঙ্কগুলো মসৃণভাবে প্রবাহিত করুন", "Fluidly stream large external response chunks": "বড় এক্সটার্নাল রেসপন্স চাঙ্কগুলো মসৃণভাবে প্রবাহিত করুন",
"Focus chat input": "চ্যাট ইনপুট ফোকাস করুন", "Focus chat input": "চ্যাট ইনপুট ফোকাস করুন",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "আপনার ভেরিয়বলগুলো এভাবে স্কয়ার ব্রাকেটের মাধ্যমে সাজান", "Format your variables using square brackets like this:": "আপনার ভেরিয়বলগুলো এভাবে স্কয়ার ব্রাকেটের মাধ্যমে সাজান",
"From (Base Model)": "উৎস (বেজ মডেল)", "From (Base Model)": "উৎস (বেজ মডেল)",
"Full Screen Mode": "ফুলস্ক্রিন মোড", "Full Screen Mode": "ফুলস্ক্রিন মোড",
"General": "সাধারণ", "General": "সাধারণ",
"General Settings": "সাধারণ সেটিংসমূহ", "General Settings": "সাধারণ সেটিংসমূহ",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "হ্যালো, {{name}}", "Hello, {{name}}": "হ্যালো, {{name}}",
"Hide": "লুকান", "Hide": "লুকান",
"Hide Additional Params": "অতিরিক্ত প্যারামিটাগুলো লুকান", "Hide Additional Params": "অতিরিক্ত প্যারামিটাগুলো লুকান",
"How can I help you today?": "আপনাকে আজ কিভাবে সাহায্য করতে পারি?", "How can I help you today?": "আপনাকে আজ কিভাবে সাহায্য করতে পারি?",
"Hybrid Search": "",
"Image Generation (Experimental)": "ইমেজ জেনারেশন (পরিক্ষামূলক)", "Image Generation (Experimental)": "ইমেজ জেনারেশন (পরিক্ষামূলক)",
"Image Generation Engine": "ইমেজ জেনারেশন ইঞ্জিন", "Image Generation Engine": "ইমেজ জেনারেশন ইঞ্জিন",
"Image Settings": "ছবির সেটিংসমূহ", "Image Settings": "ছবির সেটিংসমূহ",
@ -180,6 +210,7 @@
"Keep Alive": "সচল রাখুন", "Keep Alive": "সচল রাখুন",
"Keyboard shortcuts": "কিবোর্ড শর্টকাটসমূহ", "Keyboard shortcuts": "কিবোর্ড শর্টকাটসমূহ",
"Language": "ভাষা", "Language": "ভাষা",
"Last Active": "",
"Light": "লাইট", "Light": "লাইট",
"OLED Dark": "OLED ডার্ক", "OLED Dark": "OLED ডার্ক",
"Listening...": "শুনছে...", "Listening...": "শুনছে...",
@ -195,10 +226,9 @@
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "MMMM DD, YYYY": "MMMM DD, YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' মডেল সফলভাবে ডাউনলোড হয়েছে।", "Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' মডেল সফলভাবে ডাউনলোড হয়েছে।",
"Model '{{modelTag}}' is already in queue for downloading.": "{{modelTag}} ডাউনলোডের জন্য আগে থেকেই অপেক্ষমান আছে।", "Model '{{modelTag}}' is already in queue for downloading.": "{{modelTag}} ডাউনলোডের জন্য আগে থেকেই অপেক্ষমান আছে।",
"Model {{embedding_model}} update complete!": "{{embedding_model}} মডেল আপডেট হয়ে গেছে!",
"Model {{embedding_model}} update failed or not required!": "{{embedding_model}} মডেল আপডেট ব্যর্থ হয়েছে অথবা প্রয়োজন নেই",
"Model {{modelId}} not found": "{{modelId}} মডেল পাওয়া যায়নি", "Model {{modelId}} not found": "{{modelId}} মডেল পাওয়া যায়নি",
"Model {{modelName}} already exists.": "{{modelName}} মডেল আগে থেকেই আছে", "Model {{modelName}} already exists.": "{{modelName}} মডেল আগে থেকেই আছে",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "মডেল ফাইলসিস্টেম পাথ পাওয়া গেছে। আপডেটের জন্য মডেলের শর্টনেম আবশ্যক, এগিয়ে যাওয়া যাচ্ছে না।", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "মডেল ফাইলসিস্টেম পাথ পাওয়া গেছে। আপডেটের জন্য মডেলের শর্টনেম আবশ্যক, এগিয়ে যাওয়া যাচ্ছে না।",
@ -212,6 +242,7 @@
"Modelfile Content": "মডেলফাইল কনটেন্ট", "Modelfile Content": "মডেলফাইল কনটেন্ট",
"Modelfiles": "মডেলফাইলসমূহ", "Modelfiles": "মডেলফাইলসমূহ",
"Models": "মডেলসমূহ", "Models": "মডেলসমূহ",
"More": "",
"My Documents": "আমার ডকুমেন্টসমূহ", "My Documents": "আমার ডকুমেন্টসমূহ",
"My Modelfiles": "আমার মডেলফাইলসমূহ", "My Modelfiles": "আমার মডেলফাইলসমূহ",
"My Prompts": "আমার প্রম্পটসমূহ", "My Prompts": "আমার প্রম্পটসমূহ",
@ -220,10 +251,14 @@
"Name your modelfile": "আপনার মডেলফাইলের নাম দিন", "Name your modelfile": "আপনার মডেলফাইলের নাম দিন",
"New Chat": "নতুন চ্যাট", "New Chat": "নতুন চ্যাট",
"New Password": "নতুন পাসওয়ার্ড", "New Password": "নতুন পাসওয়ার্ড",
"Not factually correct": "",
"Not sure what to add?": "কী যুক্ত করতে হবে নিশ্চিত না?", "Not sure what to add?": "কী যুক্ত করতে হবে নিশ্চিত না?",
"Not sure what to write? Switch to": "কী লিখতে হবে নিশ্চিত না? পরিবর্তন করুন:", "Not sure what to write? Switch to": "কী লিখতে হবে নিশ্চিত না? পরিবর্তন করুন:",
"Notifications": "নোটিফিকেশনসমূহ",
"Off": "বন্ধ", "Off": "বন্ধ",
"Okay, Let's Go!": "ঠিক আছে, চলুন যাই!", "Okay, Let's Go!": "ঠিক আছে, চলুন যাই!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "Ollama বেজ ইউআরএল", "Ollama Base URL": "Ollama বেজ ইউআরএল",
"Ollama Version": "Ollama ভার্সন", "Ollama Version": "Ollama ভার্সন",
"On": "চালু", "On": "চালু",
@ -236,15 +271,20 @@
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "Open AI (Dall-E)", "Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "নতুন চ্যাট খুলুন", "Open new chat": "নতুন চ্যাট খুলুন",
"OpenAI": "",
"OpenAI API": "OpenAI এপিআই", "OpenAI API": "OpenAI এপিআই",
"OpenAI API Key": "OpenAI এপিআই কোড", "OpenAI API Config": "",
"OpenAI API Key is required.": "OpenAI API কোড আবশ্যক", "OpenAI API Key is required.": "OpenAI API কোড আবশ্যক",
"OpenAI URL/Key required.": "",
"or": "অথবা", "or": "অথবা",
"Other": "",
"Parameters": "প্যারামিটারসমূহ", "Parameters": "প্যারামিটারসমূহ",
"Password": "পাসওয়ার্ড", "Password": "পাসওয়ার্ড",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "পিডিএফ এর ছবি থেকে লেখা বের করুন (OCR)", "PDF Extract Images (OCR)": "পিডিএফ এর ছবি থেকে লেখা বের করুন (OCR)",
"pending": "অপেক্ষমান", "pending": "অপেক্ষমান",
"Permission denied when accessing microphone: {{error}}": "মাইক্রোফোন ব্যবহারের অনুমতি পাওয়া যায়নি: {{error}}", "Permission denied when accessing microphone: {{error}}": "মাইক্রোফোন ব্যবহারের অনুমতি পাওয়া যায়নি: {{error}}",
"Plain text (.txt)": "",
"Playground": "খেলাঘর", "Playground": "খেলাঘর",
"Archived Chats": "চ্যাট ইতিহাস সংরক্ষণাগার", "Archived Chats": "চ্যাট ইতিহাস সংরক্ষণাগার",
"Profile": "প্রোফাইল", "Profile": "প্রোফাইল",
@ -256,12 +296,18 @@
"Query Params": "Query প্যারামিটারসমূহ", "Query Params": "Query প্যারামিটারসমূহ",
"RAG Template": "RAG টেম্পলেট", "RAG Template": "RAG টেম্পলেট",
"Raw Format": "Raw ফরম্যাট", "Raw Format": "Raw ফরম্যাট",
"Read Aloud": "",
"Record voice": "ভয়েস রেকর্ড করুন", "Record voice": "ভয়েস রেকর্ড করুন",
"Redirecting you to OpenWebUI Community": "আপনাকে OpenWebUI কমিউনিটিতে পাঠানো হচ্ছে", "Redirecting you to OpenWebUI Community": "আপনাকে OpenWebUI কমিউনিটিতে পাঠানো হচ্ছে",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "রিলিজ নোটসমূহ", "Release Notes": "রিলিজ নোটসমূহ",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "রিপিট Last N", "Repeat Last N": "রিপিট Last N",
"Repeat Penalty": "রিপিট প্যানাল্টি", "Repeat Penalty": "রিপিট প্যানাল্টি",
"Request Mode": "রিকোয়েস্ট মোড", "Request Mode": "রিকোয়েস্ট মোড",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "ভেক্টর স্টোরেজ রিসেট করুন", "Reset Vector Storage": "ভেক্টর স্টোরেজ রিসেট করুন",
"Response AutoCopy to Clipboard": "রেসপন্সগুলো স্বয়ংক্রিভাবে ক্লিপবোর্ডে কপি হবে", "Response AutoCopy to Clipboard": "রেসপন্সগুলো স্বয়ংক্রিভাবে ক্লিপবোর্ডে কপি হবে",
"Role": "পদবি", "Role": "পদবি",
@ -276,6 +322,7 @@
"Scan complete!": "স্ক্যান সম্পন্ন হয়েছে!", "Scan complete!": "স্ক্যান সম্পন্ন হয়েছে!",
"Scan for documents from {{path}}": "ডকুমেন্টসমূহের জন্য {{path}} স্ক্যান করুন", "Scan for documents from {{path}}": "ডকুমেন্টসমূহের জন্য {{path}} স্ক্যান করুন",
"Search": "অনুসন্ধান", "Search": "অনুসন্ধান",
"Search a model": "",
"Search Documents": "ডকুমেন্টসমূহ অনুসন্ধান করুন", "Search Documents": "ডকুমেন্টসমূহ অনুসন্ধান করুন",
"Search Prompts": "প্রম্পটসমূহ অনুসন্ধান করুন", "Search Prompts": "প্রম্পটসমূহ অনুসন্ধান করুন",
"See readme.md for instructions": "নির্দেশিকার জন্য readme.md দেখুন", "See readme.md for instructions": "নির্দেশিকার জন্য readme.md দেখুন",
@ -295,37 +342,46 @@
"Set Voice": "কন্ঠস্বর নির্ধারণ করুন", "Set Voice": "কন্ঠস্বর নির্ধারণ করুন",
"Settings": "সেটিংসমূহ", "Settings": "সেটিংসমূহ",
"Settings saved successfully!": "সেটিংগুলো সফলভাবে সংরক্ষিত হয়েছে", "Settings saved successfully!": "সেটিংগুলো সফলভাবে সংরক্ষিত হয়েছে",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "OpenWebUI কমিউনিটিতে শেয়ার করুন", "Share to OpenWebUI Community": "OpenWebUI কমিউনিটিতে শেয়ার করুন",
"short-summary": "সংক্ষিপ্ত বিবরণ", "short-summary": "সংক্ষিপ্ত বিবরণ",
"Show": "দেখান", "Show": "দেখান",
"Show Additional Params": "অতিরিক্ত প্যারামিটারগুলো দেখান", "Show Additional Params": "অতিরিক্ত প্যারামিটারগুলো দেখান",
"Show shortcuts": "শর্টকাটগুলো দেখান", "Show shortcuts": "শর্টকাটগুলো দেখান",
"Showcased creativity": "",
"sidebar": "সাইডবার", "sidebar": "সাইডবার",
"Sign in": "সাইন ইন", "Sign in": "সাইন ইন",
"Sign Out": "সাইন আউট", "Sign Out": "সাইন আউট",
"Sign up": "সাইন আপ", "Sign up": "সাইন আপ",
"Signing in": "",
"Speech recognition error: {{error}}": "স্পিচ রিকগনিশনে সমস্যা: {{error}}", "Speech recognition error: {{error}}": "স্পিচ রিকগনিশনে সমস্যা: {{error}}",
"Speech-to-Text Engine": "স্পিচ-টু-টেক্সট ইঞ্জিন", "Speech-to-Text Engine": "স্পিচ-টু-টেক্সট ইঞ্জিন",
"SpeechRecognition API is not supported in this browser.": "এই ব্রাউজার স্পিচরিকগনিশন এপিআই সাপোর্ট করে না।", "SpeechRecognition API is not supported in this browser.": "এই ব্রাউজার স্পিচরিকগনিশন এপিআই সাপোর্ট করে না।",
"Stop Sequence": "সিকোয়েন্স থামান", "Stop Sequence": "সিকোয়েন্স থামান",
"STT Settings": "STT সেটিংস", "STT Settings": "STT সেটিংস",
"Submit": "সাবমিট", "Submit": "সাবমিট",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "সফল", "Success": "সফল",
"Successfully updated.": "সফলভাবে আপডেট হয়েছে", "Successfully updated.": "সফলভাবে আপডেট হয়েছে",
"Sync All": "সব সিংক্রোনাইজ করুন", "Sync All": "সব সিংক্রোনাইজ করুন",
"System": "সিস্টেম", "System": "সিস্টেম",
"System Prompt": "সিস্টেম প্রম্পট", "System Prompt": "সিস্টেম প্রম্পট",
"Tags": "ট্যাগসমূহ", "Tags": "ট্যাগসমূহ",
"Tell us more:": "",
"Temperature": "তাপমাত্রা", "Temperature": "তাপমাত্রা",
"Template": "টেম্পলেট", "Template": "টেম্পলেট",
"Text Completion": "লেখা সম্পন্নকরণ", "Text Completion": "লেখা সম্পন্নকরণ",
"Text-to-Speech Engine": "টেক্সট-টু-স্পিচ ইঞ্জিন", "Text-to-Speech Engine": "টেক্সট-টু-স্পিচ ইঞ্জিন",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "",
"Theme": "থিম", "Theme": "থিম",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "এটা নিশ্চিত করে যে, আপনার গুরুত্বপূর্ণ আলোচনা নিরাপদে আপনার ব্যাকএন্ড ডেটাবেজে সংরক্ষিত আছে। ধন্যবাদ!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "এটা নিশ্চিত করে যে, আপনার গুরুত্বপূর্ণ আলোচনা নিরাপদে আপনার ব্যাকএন্ড ডেটাবেজে সংরক্ষিত আছে। ধন্যবাদ!",
"This setting does not sync across browsers or devices.": "এই সেটিং অন্যন্য ব্রাউজার বা ডিভাইসের সাথে সিঙ্ক্রোনাইজ নয় না।", "This setting does not sync across browsers or devices.": "এই সেটিং অন্যন্য ব্রাউজার বা ডিভাইসের সাথে সিঙ্ক্রোনাইজ নয় না।",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "পরামর্শ: একাধিক ভেরিয়েবল স্লট একের পর এক রিপ্লেস করার জন্য চ্যাট ইনপুটে কিবোর্ডের Tab বাটন ব্যবহার করুন।", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "পরামর্শ: একাধিক ভেরিয়েবল স্লট একের পর এক রিপ্লেস করার জন্য চ্যাট ইনপুটে কিবোর্ডের Tab বাটন ব্যবহার করুন।",
"Title": "শিরোনাম", "Title": "শিরোনাম",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "স্বয়ংক্রিয় শিরোনামগঠন", "Title Auto-Generation": "স্বয়ংক্রিয় শিরোনামগঠন",
"Title Generation Prompt": "শিরোনামগঠন প্রম্পট", "Title Generation Prompt": "শিরোনামগঠন প্রম্পট",
"to": "প্রতি", "to": "প্রতি",
@ -340,11 +396,13 @@
"TTS Settings": "TTS সেটিংসমূহ", "TTS Settings": "TTS সেটিংসমূহ",
"Type Hugging Face Resolve (Download) URL": "Hugging Face থেকে ডাউনলোড করার ইউআরএল টাইপ করুন", "Type Hugging Face Resolve (Download) URL": "Hugging Face থেকে ডাউনলোড করার ইউআরএল টাইপ করুন",
"Uh-oh! There was an issue connecting to {{provider}}.": "ওহ-হো! {{provider}} এর সাথে কানেকশনে সমস্যা হয়েছে।", "Uh-oh! There was an issue connecting to {{provider}}.": "ওহ-হো! {{provider}} এর সাথে কানেকশনে সমস্যা হয়েছে।",
"Understand that updating or changing your embedding model requires reset of the vector database and re-import of all documents. You have been warned!": "জেনে রাখুন, এমবেডিং মডেল আপডেট বা পরিবর্তন করতে হলে ভেক্টর ডেটাবেজ রিসেট করতে হবে এবং সব ডকুমেন্ট আবার নতুন করে ইমপোর্ট করতে হবে। এ বিষয়ে আপনাকে আগেই সাবধান করা হলো।",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "অপরিচিত ফাইল ফরম্যাট '{{file_type}}', তবে প্লেইন টেক্সট হিসেবে গ্রহণ করা হলো", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "অপরিচিত ফাইল ফরম্যাট '{{file_type}}', তবে প্লেইন টেক্সট হিসেবে গ্রহণ করা হলো",
"Update": "আপডেট", "Update and Copy Link": "",
"Update embedding model {{embedding_model}}": "{{embedding_model}} এমবেডিং মডেল আপডেট করুন", "Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "পাসওয়ার্ড আপডেট করুন", "Update password": "পাসওয়ার্ড আপডেট করুন",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "একটি GGUF মডেল আপলোড করুন", "Upload a GGUF model": "একটি GGUF মডেল আপলোড করুন",
"Upload files": "ফাইলগুলো আপলোড করুন", "Upload files": "ফাইলগুলো আপলোড করুন",
"Upload Progress": "আপলোড হচ্ছে", "Upload Progress": "আপলোড হচ্ছে",
@ -360,7 +418,9 @@
"variable": "ভেরিয়েবল", "variable": "ভেরিয়েবল",
"variable to have them replaced with clipboard content.": "ক্লিপবোর্ডের কন্টেন্ট দিয়ে যেই ভেরিয়েবল রিপ্লেস করা যাবে।", "variable to have them replaced with clipboard content.": "ক্লিপবোর্ডের কন্টেন্ট দিয়ে যেই ভেরিয়েবল রিপ্লেস করা যাবে।",
"Version": "ভার্সন", "Version": "ভার্সন",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "ওয়েব", "Web": "ওয়েব",
"Webhook URL": "",
"WebUI Add-ons": "WebUI এড-অনসমূহ", "WebUI Add-ons": "WebUI এড-অনসমূহ",
"WebUI Settings": "WebUI সেটিংসমূহ", "WebUI Settings": "WebUI সেটিংসমূহ",
"WebUI will make requests to": "WebUI যেখানে রিকোয়েস্ট পাঠাবে", "WebUI will make requests to": "WebUI যেখানে রিকোয়েস্ট পাঠাবে",

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(p. ex. `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(p. ex. `sh webui.sh --api`)",
"(latest)": "(últim)", "(latest)": "(últim)",
"{{modelName}} is thinking...": "{{modelName}} està pensant...", "{{modelName}} is thinking...": "{{modelName}} està pensant...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "Es requereix Backend de {{webUIName}}", "{{webUIName}} Backend Required": "Es requereix Backend de {{webUIName}}",
"a user": "un usuari", "a user": "un usuari",
"About": "Sobre", "About": "Sobre",
"Account": "Compte", "Account": "Compte",
"Action": "Acció", "Accurate information": "",
"Add a model": "Afegeix un model", "Add a model": "Afegeix un model",
"Add a model tag name": "Afegeix un nom d'etiqueta de model", "Add a model tag name": "Afegeix un nom d'etiqueta de model",
"Add a short description about what this modelfile does": "Afegeix una descripció curta del que fa aquest arxiu de model", "Add a short description about what this modelfile does": "Afegeix una descripció curta del que fa aquest arxiu de model",
@ -17,7 +18,8 @@
"Add Docs": "Afegeix Documents", "Add Docs": "Afegeix Documents",
"Add Files": "Afegeix Arxius", "Add Files": "Afegeix Arxius",
"Add message": "Afegeix missatge", "Add message": "Afegeix missatge",
"add tags": "afegeix etiquetes", "Add Model": "",
"Add Tags": "afegeix etiquetes",
"Adjusting these settings will apply changes universally to all users.": "Ajustar aquests paràmetres aplicarà canvis de manera universal a tots els usuaris.", "Adjusting these settings will apply changes universally to all users.": "Ajustar aquests paràmetres aplicarà canvis de manera universal a tots els usuaris.",
"admin": "administrador", "admin": "administrador",
"Admin Panel": "Panell d'Administració", "Admin Panel": "Panell d'Administració",
@ -33,9 +35,14 @@
"and": "i", "and": "i",
"API Base URL": "URL Base de l'API", "API Base URL": "URL Base de l'API",
"API Key": "Clau de l'API", "API Key": "Clau de l'API",
"API Key created.": "",
"API keys": "",
"API RPM": "RPM de l'API", "API RPM": "RPM de l'API",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "estan permesos - Activa aquesta comanda escrivint", "are allowed - Activate this command by typing": "estan permesos - Activa aquesta comanda escrivint",
"Are you sure?": "Estàs segur?", "Are you sure?": "Estàs segur?",
"Attention to detail": "",
"Audio": "Àudio", "Audio": "Àudio",
"Auto-playback response": "Resposta de reproducció automàtica", "Auto-playback response": "Resposta de reproducció automàtica",
"Auto-send input after 3 sec.": "Enviar entrada automàticament després de 3 segons", "Auto-send input after 3 sec.": "Enviar entrada automàticament després de 3 segons",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "Es requereix l'URL Base AUTOMATIC1111.", "AUTOMATIC1111 Base URL is required.": "Es requereix l'URL Base AUTOMATIC1111.",
"available!": "disponible!", "available!": "disponible!",
"Back": "Enrere", "Back": "Enrere",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "Mode Constructor", "Builder Mode": "Mode Constructor",
"Cancel": "Cancel·la", "Cancel": "Cancel·la",
"Categories": "Categories", "Categories": "Categories",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "Fes clic al botó de rol d'usuari per canviar el rol d'un usuari.", "Click on the user role button to change a user's role.": "Fes clic al botó de rol d'usuari per canviar el rol d'un usuari.",
"Close": "Tanca", "Close": "Tanca",
"Collection": "Col·lecció", "Collection": "Col·lecció",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "Comanda", "Command": "Comanda",
"Confirm Password": "Confirma la Contrasenya", "Confirm Password": "Confirma la Contrasenya",
"Connections": "Connexions", "Connections": "Connexions",
"Content": "Contingut", "Content": "Contingut",
"Context Length": "Longitud del Context", "Context Length": "Longitud del Context",
"Continue Response": "",
"Conversation Mode": "Mode de Conversa", "Conversation Mode": "Mode de Conversa",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "Copia l'últim bloc de codi", "Copy last code block": "Copia l'últim bloc de codi",
"Copy last response": "Copia l'última resposta", "Copy last response": "Copia l'última resposta",
"Copy Link": "",
"Copying to clipboard was successful!": "La còpia al porta-retalls ha estat exitosa!", "Copying to clipboard was successful!": "La còpia al porta-retalls ha estat exitosa!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Crea una frase concisa de 3-5 paraules com a capçalera per a la següent consulta, seguint estrictament el límit de 3-5 paraules i evitant l'ús de la paraula 'títol':", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Crea una frase concisa de 3-5 paraules com a capçalera per a la següent consulta, seguint estrictament el límit de 3-5 paraules i evitant l'ús de la paraula 'títol':",
"Create a modelfile": "Crea un fitxer de model", "Create a modelfile": "Crea un fitxer de model",
"Create Account": "Crea un Compte", "Create Account": "Crea un Compte",
"Created at": "Creat el", "Created at": "Creat el",
"Created by": "Creat per", "Created At": "",
"Current Model": "Model Actual", "Current Model": "Model Actual",
"Current Password": "Contrasenya Actual", "Current Password": "Contrasenya Actual",
"Custom": "Personalitzat", "Custom": "Personalitzat",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "Per defecte", "Default": "Per defecte",
"Default (Automatic1111)": "Per defecte (Automatic1111)", "Default (Automatic1111)": "Per defecte (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "Per defecte (Web API)", "Default (Web API)": "Per defecte (Web API)",
"Default model updated": "Model per defecte actualitzat", "Default model updated": "Model per defecte actualitzat",
"Default Prompt Suggestions": "Suggeriments de Prompt Per Defecte", "Default Prompt Suggestions": "Suggeriments de Prompt Per Defecte",
"Default User Role": "Rol d'Usuari Per Defecte", "Default User Role": "Rol d'Usuari Per Defecte",
"delete": "esborra", "delete": "esborra",
"Delete": "",
"Delete a model": "Esborra un model", "Delete a model": "Esborra un model",
"Delete chat": "Esborra xat", "Delete chat": "Esborra xat",
"Delete Chat": "",
"Delete Chats": "Esborra Xats", "Delete Chats": "Esborra Xats",
"Delete User": "",
"Deleted {{deleteModelTag}}": "Esborrat {{deleteModelTag}}", "Deleted {{deleteModelTag}}": "Esborrat {{deleteModelTag}}",
"Deleted {tagName}": "Esborrat {tagName}", "Deleted {{tagName}}": "",
"Description": "Descripció", "Description": "Descripció",
"Notifications": "Notificacions d'Escriptori", "Didn't fully follow instructions": "",
"Disabled": "Desactivat", "Disabled": "Desactivat",
"Discover a modelfile": "Descobreix un fitxer de model", "Discover a modelfile": "Descobreix un fitxer de model",
"Discover a prompt": "Descobreix un prompt", "Discover a prompt": "Descobreix un prompt",
@ -113,18 +133,21 @@
"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?",
"Download as a File": "Descarrega com a Arxiu", "Don't like the style": "",
"Download": "",
"Download Database": "Descarrega Base de Dades", "Download Database": "Descarrega Base de Dades",
"Drop any files here to add to the conversation": "Deixa qualsevol arxiu aquí per afegir-lo a la conversa", "Drop any files here to add to the conversation": "Deixa qualsevol arxiu aquí per afegir-lo a la conversa",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ex. '30s','10m'. Les unitats de temps vàlides són 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ex. '30s','10m'. Les unitats de temps vàlides són 's', 'm', 'h'.",
"Edit": "",
"Edit Doc": "Edita Document", "Edit Doc": "Edita Document",
"Edit User": "Edita Usuari", "Edit User": "Edita Usuari",
"Email": "Correu electrònic", "Email": "Correu electrònic",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "Activa Historial de Xat", "Enable Chat History": "Activa Historial de Xat",
"Enable New Sign Ups": "Permet Noves Inscripcions", "Enable New Sign Ups": "Permet Noves Inscripcions",
"Enabled": "Activat", "Enabled": "Activat",
"Enter {{role}} message here": "Introdueix aquí el missatge de {{role}}", "Enter {{role}} message here": "Introdueix aquí el missatge de {{role}}",
"Enter API Key": "Introdueix la Clau API",
"Enter Chunk Overlap": "Introdueix el Solapament de Blocs", "Enter Chunk Overlap": "Introdueix el Solapament de Blocs",
"Enter Chunk Size": "Introdueix la Mida del Bloc", "Enter Chunk Size": "Introdueix la Mida del Bloc",
"Enter Image Size (e.g. 512x512)": "Introdueix la Mida de la Imatge (p. ex. 512x512)", "Enter Image Size (e.g. 512x512)": "Introdueix la Mida de la Imatge (p. ex. 512x512)",
@ -135,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "Introdueix el Màxim de Tokens (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "Introdueix el Màxim de Tokens (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "Introdueix l'etiqueta del model (p. ex. {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "Introdueix l'etiqueta del model (p. ex. {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "Introdueix el Nombre de Passos (p. ex. 50)", "Enter Number of Steps (e.g. 50)": "Introdueix el Nombre de Passos (p. ex. 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "Introdueix la seqüència de parada", "Enter stop sequence": "Introdueix la seqüència de parada",
"Enter Top K": "Introdueix Top K", "Enter Top K": "Introdueix Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Introdueix l'URL (p. ex. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Introdueix l'URL (p. ex. http://127.0.0.1:7860/)",
@ -147,20 +171,29 @@
"Export Documents Mapping": "Exporta el Mapatge de Documents", "Export Documents Mapping": "Exporta el Mapatge de Documents",
"Export Modelfiles": "Exporta Fitxers de Model", "Export Modelfiles": "Exporta Fitxers de Model",
"Export Prompts": "Exporta Prompts", "Export Prompts": "Exporta Prompts",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "No s'ha pogut llegir el contingut del porta-retalls", "Failed to read clipboard contents": "No s'ha pogut llegir el contingut del porta-retalls",
"Feel free to add specific details": "",
"File Mode": "Mode Arxiu", "File Mode": "Mode Arxiu",
"File not found.": "Arxiu no trobat.", "File not found.": "Arxiu no trobat.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "",
"Focus chat input": "Enfoca l'entrada del xat", "Focus chat input": "Enfoca l'entrada del xat",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "Formata les teves variables utilitzant claudàtors així:", "Format your variables using square brackets like this:": "Formata les teves variables utilitzant claudàtors així:",
"From (Base Model)": "Des de (Model Base)", "From (Base Model)": "Des de (Model Base)",
"Fluidly stream large external response chunks": "Transmita con fluidez grandes fragmentos de respuesta externa", "Fluidly stream large external response chunks": "Transmita con fluidez grandes fragmentos de respuesta externa",
"Full Screen Mode": "Mode de Pantalla Completa", "Full Screen Mode": "Mode de Pantalla Completa",
"General": "General", "General": "General",
"General Settings": "Configuració General", "General Settings": "Configuració General",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "Hola, {{name}}", "Hello, {{name}}": "Hola, {{name}}",
"Hide": "Amaga", "Hide": "Amaga",
"Hide Additional Params": "Amaga Paràmetres Addicionals", "Hide Additional Params": "Amaga Paràmetres Addicionals",
"How can I help you today?": "Com et puc ajudar avui?", "How can I help you today?": "Com et puc ajudar avui?",
"Hybrid Search": "",
"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": "Configuració d'Imatges", "Image Settings": "Configuració d'Imatges",
@ -178,6 +211,7 @@
"Keep Alive": "Mantén Actiu", "Keep Alive": "Mantén Actiu",
"Keyboard shortcuts": "Dreceres de Teclat", "Keyboard shortcuts": "Dreceres de Teclat",
"Language": "Idioma", "Language": "Idioma",
"Last Active": "",
"Light": "Clar", "Light": "Clar",
"OLED Dark": "OLED escuro", "OLED Dark": "OLED escuro",
"Listening...": "Escoltant...", "Listening...": "Escoltant...",
@ -193,10 +227,12 @@
"Mirostat Eta": "Eta de Mirostat", "Mirostat Eta": "Eta de Mirostat",
"Mirostat Tau": "Tau de Mirostat", "Mirostat Tau": "Tau de Mirostat",
"MMMM DD, YYYY": "DD de MMMM, YYYY", "MMMM DD, YYYY": "DD de MMMM, YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "El model '{{modelName}}' s'ha descarregat amb èxit.", "Model '{{modelName}}' has been successfully downloaded.": "El model '{{modelName}}' s'ha descarregat amb èxit.",
"Model '{{modelTag}}' is already in queue for downloading.": "El model '{{modelTag}}' ja està en cua per ser descarregat.", "Model '{{modelTag}}' is already in queue for downloading.": "El model '{{modelTag}}' ja està en cua per ser descarregat.",
"Model {{modelId}} not found": "Model {{modelId}} no trobat", "Model {{modelId}} not found": "Model {{modelId}} no trobat",
"Model {{modelName}} already exists.": "El model {{modelName}} ja existeix.", "Model {{modelName}} already exists.": "El model {{modelName}} ja existeix.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Name": "Nom del Model", "Model Name": "Nom del Model",
"Model not selected": "Model no seleccionat", "Model not selected": "Model no seleccionat",
"Model Tag Name": "Nom de l'Etiqueta del Model", "Model Tag Name": "Nom de l'Etiqueta del Model",
@ -207,6 +243,7 @@
"Modelfile Content": "Contingut del Fitxer de Model", "Modelfile Content": "Contingut del Fitxer de Model",
"Modelfiles": "Fitxers de Model", "Modelfiles": "Fitxers de Model",
"Models": "Models", "Models": "Models",
"More": "",
"My Documents": "Els Meus Documents", "My Documents": "Els Meus Documents",
"My Modelfiles": "Els Meus Fitxers de Model", "My Modelfiles": "Els Meus Fitxers de Model",
"My Prompts": "Els Meus Prompts", "My Prompts": "Els Meus Prompts",
@ -215,10 +252,14 @@
"Name your modelfile": "Nomena el teu fitxer de model", "Name your modelfile": "Nomena el teu fitxer de model",
"New Chat": "Xat Nou", "New Chat": "Xat Nou",
"New Password": "Nova Contrasenya", "New Password": "Nova Contrasenya",
"Not factually correct": "",
"Not sure what to add?": "No estàs segur del que afegir?", "Not sure what to add?": "No estàs segur del que afegir?",
"Not sure what to write? Switch to": "No estàs segur del que escriure? Canvia a", "Not sure what to write? Switch to": "No estàs segur del que escriure? Canvia a",
"Notifications": "Notificacions d'Escriptori",
"Off": "Desactivat", "Off": "Desactivat",
"Okay, Let's Go!": "D'acord, Anem!", "Okay, Let's Go!": "D'acord, Anem!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "URL Base d'Ollama", "Ollama Base URL": "URL Base d'Ollama",
"Ollama Version": "Versió d'Ollama", "Ollama Version": "Versió d'Ollama",
"On": "Activat", "On": "Activat",
@ -231,15 +272,20 @@
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "Open AI (Dall-E)", "Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "Obre un nou xat", "Open new chat": "Obre un nou xat",
"OpenAI": "",
"OpenAI API": "API d'OpenAI", "OpenAI API": "API d'OpenAI",
"OpenAI API Key": "Clau API d'OpenAI", "OpenAI API Config": "",
"OpenAI API Key is required.": "Es requereix la Clau API d'OpenAI.", "OpenAI API Key is required.": "Es requereix la Clau API d'OpenAI.",
"OpenAI URL/Key required.": "",
"or": "o", "or": "o",
"Other": "",
"Parameters": "Paràmetres", "Parameters": "Paràmetres",
"Password": "Contrasenya", "Password": "Contrasenya",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "Extreu Imatges de PDF (OCR)", "PDF Extract Images (OCR)": "Extreu Imatges de PDF (OCR)",
"pending": "pendent", "pending": "pendent",
"Permission denied when accessing microphone: {{error}}": "Permís denegat en accedir al micròfon: {{error}}", "Permission denied when accessing microphone: {{error}}": "Permís denegat en accedir al micròfon: {{error}}",
"Plain text (.txt)": "",
"Playground": "Zona de Jocs", "Playground": "Zona de Jocs",
"Archived Chats": "Arxiu d'historial de xat", "Archived Chats": "Arxiu d'historial de xat",
"Profile": "Perfil", "Profile": "Perfil",
@ -251,12 +297,18 @@
"Query Params": "Paràmetres de Consulta", "Query Params": "Paràmetres de Consulta",
"RAG Template": "Plantilla RAG", "RAG Template": "Plantilla RAG",
"Raw Format": "Format Brut", "Raw Format": "Format Brut",
"Read Aloud": "",
"Record voice": "Enregistra veu", "Record voice": "Enregistra veu",
"Redirecting you to OpenWebUI Community": "Redirigint-te a la Comunitat OpenWebUI", "Redirecting you to OpenWebUI Community": "Redirigint-te a la Comunitat OpenWebUI",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "Notes de la Versió", "Release Notes": "Notes de la Versió",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "Repeteix Últim N", "Repeat Last N": "Repeteix Últim N",
"Repeat Penalty": "Penalització de Repetició", "Repeat Penalty": "Penalització de Repetició",
"Request Mode": "Mode de Sol·licitud", "Request Mode": "Mode de Sol·licitud",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Reinicia l'Emmagatzematge de Vectors", "Reset Vector Storage": "Reinicia l'Emmagatzematge de Vectors",
"Response AutoCopy to Clipboard": "Resposta AutoCopiar al Portapapers", "Response AutoCopy to Clipboard": "Resposta AutoCopiar al Portapapers",
"Role": "Rol", "Role": "Rol",
@ -271,6 +323,7 @@
"Scan complete!": "Escaneig completat!", "Scan complete!": "Escaneig completat!",
"Scan for documents from {{path}}": "Escaneja documents des de {{path}}", "Scan for documents from {{path}}": "Escaneja documents des de {{path}}",
"Search": "Cerca", "Search": "Cerca",
"Search a model": "",
"Search Documents": "Cerca Documents", "Search Documents": "Cerca Documents",
"Search Prompts": "Cerca Prompts", "Search Prompts": "Cerca Prompts",
"See readme.md for instructions": "Consulta el readme.md per a instruccions", "See readme.md for instructions": "Consulta el readme.md per a instruccions",
@ -290,37 +343,46 @@
"Set Voice": "Estableix Veu", "Set Voice": "Estableix Veu",
"Settings": "Configuracions", "Settings": "Configuracions",
"Settings saved successfully!": "Configuracions guardades amb èxit!", "Settings saved successfully!": "Configuracions guardades amb èxit!",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "Comparteix amb la Comunitat OpenWebUI", "Share to OpenWebUI Community": "Comparteix amb la Comunitat OpenWebUI",
"short-summary": "resum curt", "short-summary": "resum curt",
"Show": "Mostra", "Show": "Mostra",
"Show Additional Params": "Mostra Paràmetres Addicionals", "Show Additional Params": "Mostra Paràmetres Addicionals",
"Show shortcuts": "Mostra dreceres", "Show shortcuts": "Mostra dreceres",
"Showcased creativity": "",
"sidebar": "barra lateral", "sidebar": "barra lateral",
"Sign in": "Inicia sessió", "Sign in": "Inicia sessió",
"Sign Out": "Tanca sessió", "Sign Out": "Tanca sessió",
"Sign up": "Registra't", "Sign up": "Registra't",
"Signing in": "",
"Speech recognition error: {{error}}": "Error de reconeixement de veu: {{error}}", "Speech recognition error: {{error}}": "Error de reconeixement de veu: {{error}}",
"Speech-to-Text Engine": "Motor de Veu a Text", "Speech-to-Text Engine": "Motor de Veu a Text",
"SpeechRecognition API is not supported in this browser.": "L'API de Reconèixer Veu no és compatible amb aquest navegador.", "SpeechRecognition API is not supported in this browser.": "L'API de Reconèixer Veu no és compatible amb aquest navegador.",
"Stop Sequence": "Atura Seqüència", "Stop Sequence": "Atura Seqüència",
"STT Settings": "Configuracions STT", "STT Settings": "Configuracions STT",
"Submit": "Envia", "Submit": "Envia",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "Èxit", "Success": "Èxit",
"Successfully updated.": "Actualitzat amb èxit.", "Successfully updated.": "Actualitzat amb èxit.",
"Sync All": "Sincronitza Tot", "Sync All": "Sincronitza Tot",
"System": "Sistema", "System": "Sistema",
"System Prompt": "Prompt del Sistema", "System Prompt": "Prompt del Sistema",
"Tags": "Etiquetes", "Tags": "Etiquetes",
"Tell us more:": "",
"Temperature": "Temperatura", "Temperature": "Temperatura",
"Template": "Plantilla", "Template": "Plantilla",
"Text Completion": "Completació de Text", "Text Completion": "Completació de Text",
"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!": "",
"Theme": "Tema", "Theme": "Tema",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Això assegura que les teves converses valuoses queden segurament guardades a la teva base de dades backend. Gràcies!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Això assegura que les teves converses valuoses queden segurament guardades a la teva base de dades backend. Gràcies!",
"This setting does not sync across browsers or devices.": "Aquesta configuració no es sincronitza entre navegadors ni dispositius.", "This setting does not sync across browsers or devices.": "Aquesta configuració no es sincronitza entre navegadors ni dispositius.",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Consell: Actualitza diversos espais de variables consecutivament prement la tecla de tabulació en l'entrada del xat després de cada reemplaçament.", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Consell: Actualitza diversos espais de variables consecutivament prement la tecla de tabulació en l'entrada del xat després de cada reemplaçament.",
"Title": "Títol", "Title": "Títol",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "Auto-Generació de Títol", "Title Auto-Generation": "Auto-Generació de Títol",
"Title Generation Prompt": "Prompt de Generació de Títol", "Title Generation Prompt": "Prompt de Generació de Títol",
"to": "a", "to": "a",
@ -336,13 +398,19 @@
"Type Hugging Face Resolve (Download) URL": "Escriu URL de Resolució (Descàrrega) de Hugging Face", "Type Hugging Face Resolve (Download) URL": "Escriu URL de Resolució (Descàrrega) de Hugging Face",
"Uh-oh! There was an issue connecting to {{provider}}.": "Uf! Hi va haver un problema connectant-se a {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Uf! Hi va haver un problema connectant-se a {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipus d'Arxiu Desconegut '{{file_type}}', però acceptant i tractant com a text pla", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipus d'Arxiu Desconegut '{{file_type}}', però acceptant i tractant com a text pla",
"Update and Copy Link": "",
"Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "Actualitza contrasenya", "Update password": "Actualitza contrasenya",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "Puja un model GGUF", "Upload a GGUF model": "Puja un model GGUF",
"Upload files": "Puja arxius", "Upload files": "Puja arxius",
"Upload Progress": "Progrés de Càrrega", "Upload Progress": "Progrés de Càrrega",
"URL Mode": "Mode URL", "URL Mode": "Mode URL",
"Use '#' in the prompt input to load and select your documents.": "Utilitza '#' a l'entrada del prompt per carregar i seleccionar els teus documents.", "Use '#' in the prompt input to load and select your documents.": "Utilitza '#' a l'entrada del prompt per carregar i seleccionar els teus documents.",
"Use Gravatar": "Utilitza Gravatar", "Use Gravatar": "Utilitza Gravatar",
"Use Initials": "",
"user": "usuari", "user": "usuari",
"User Permissions": "Permisos d'Usuari", "User Permissions": "Permisos d'Usuari",
"Users": "Usuaris", "Users": "Usuaris",
@ -351,7 +419,9 @@
"variable": "variable", "variable": "variable",
"variable to have them replaced with clipboard content.": "variable per tenir-les reemplaçades amb el contingut del porta-retalls.", "variable to have them replaced with clipboard content.": "variable per tenir-les reemplaçades amb el contingut del porta-retalls.",
"Version": "Versió", "Version": "Versió",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web", "Web": "Web",
"Webhook URL": "",
"WebUI Add-ons": "Complements de WebUI", "WebUI Add-ons": "Complements de WebUI",
"WebUI Settings": "Configuració de WebUI", "WebUI Settings": "Configuració de WebUI",
"WebUI will make requests to": "WebUI farà peticions a", "WebUI will make requests to": "WebUI farà peticions a",

View file

@ -4,20 +4,22 @@
"(e.g. `sh webui.sh --api`)": "(z.B. `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(z.B. `sh webui.sh --api`)",
"(latest)": "(neueste)", "(latest)": "(neueste)",
"{{modelName}} is thinking...": "{{modelName}} denkt nach...", "{{modelName}} is thinking...": "{{modelName}} denkt nach...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}}-Backend erforderlich", "{{webUIName}} Backend Required": "{{webUIName}}-Backend erforderlich",
"a user": "", "a user": "ein Benutzer",
"About": "Über", "About": "Über",
"Account": "Account", "Account": "Account",
"Action": "Aktion", "Accurate information": "Genaue Information",
"Add a model": "Füge ein Modell hinzu", "Add a model": "Füge ein Modell hinzu",
"Add a model tag name": "Benenne dein Modell-Tag", "Add a model tag name": "Benenne deinen Modell-Tag",
"Add a short description about what this modelfile does": "Füge eine kurze Beschreibung hinzu, was dieses Modelfile kann", "Add a short description about what this modelfile does": "Füge eine kurze Beschreibung hinzu, was dieses Modelfile kann",
"Add a short title for this prompt": "Füge einen kurzen Titel für diesen Prompt hinzu", "Add a short title for this prompt": "Füge einen kurzen Titel für diesen Prompt hinzu",
"Add a tag": "Tag hinzugügen", "Add a tag": "Tag hinzufügen",
"Add Docs": "Dokumente hinzufügen", "Add Docs": "Dokumente hinzufügen",
"Add Files": "Dateien hinzufügen", "Add Files": "Dateien hinzufügen",
"Add message": "Nachricht eingeben", "Add message": "Nachricht eingeben",
"add tags": "Tags hinzufügen", "Add Model": "Modell hinzufügen",
"Add Tags": "Tags hinzufügen",
"Adjusting these settings will apply changes universally to all users.": "Das Anpassen dieser Einstellungen wirkt sich universell auf alle Benutzer aus.", "Adjusting these settings will apply changes universally to all users.": "Das Anpassen dieser Einstellungen wirkt sich universell auf alle Benutzer aus.",
"admin": "Administrator", "admin": "Administrator",
"Admin Panel": "Admin Panel", "Admin Panel": "Admin Panel",
@ -29,20 +31,27 @@
"Allow Chat Deletion": "Chat Löschung erlauben", "Allow Chat Deletion": "Chat Löschung erlauben",
"alphanumeric characters and hyphens": "alphanumerische Zeichen und Bindestriche", "alphanumeric characters and hyphens": "alphanumerische Zeichen und Bindestriche",
"Already have an account?": "Hast du vielleicht schon ein Account?", "Already have an account?": "Hast du vielleicht schon ein Account?",
"an assistant": "", "an assistant": "ein Assistent",
"and": "und", "and": "und",
"API Base URL": "API Basis URL", "API Base URL": "API Basis URL",
"API Key": "API Key", "API Key": "API Key",
"API Key created.": "API Key erstellt",
"API keys": "",
"API RPM": "API RPM", "API RPM": "API RPM",
"Archive": "Archivieren",
"Archived Chats": "Archivierte Chats",
"are allowed - Activate this command by typing": "sind erlaubt - Aktiviere diesen Befehl, indem du", "are allowed - Activate this command by typing": "sind erlaubt - Aktiviere diesen Befehl, indem du",
"Are you sure?": "", "Are you sure?": "Bist du sicher?",
"Attention to detail": "Auge fürs Detail",
"Audio": "Audio", "Audio": "Audio",
"Auto-playback response": "Automatische Wiedergabe der Antwort", "Auto-playback response": "Automatische Wiedergabe der Antwort",
"Auto-send input after 3 sec.": "Automatisches Senden der Eingabe nach 3 Sek", "Auto-send input after 3 sec.": "Automatisches Senden der Eingabe nach 3 Sek",
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Basis URL", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 Basis URL",
"AUTOMATIC1111 Base URL is required.": "", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Basis URL wird benötigt",
"available!": "verfügbar!", "available!": "verfügbar!",
"Back": "Zurück", "Back": "Zurück",
"Bad Response": "Schlechte Antwort",
"Being lazy": "Faul sein",
"Builder Mode": "Builder Modus", "Builder Mode": "Builder Modus",
"Cancel": "Abbrechen", "Cancel": "Abbrechen",
"Categories": "Kategorien", "Categories": "Kategorien",
@ -53,33 +62,40 @@
"Chats": "Chats", "Chats": "Chats",
"Check Again": "Erneut überprüfen", "Check Again": "Erneut überprüfen",
"Check for updates": "Nach Updates suchen", "Check for updates": "Nach Updates suchen",
"Checking for updates...": "Nach Updates suchen...", "Checking for updates...": "Sucht nach Updates...",
"Choose a model before saving...": "Wähle bitte zuerst ein Modell, bevor du speicherst...", "Choose a model before saving...": "Wähle bitte zuerst ein Modell, bevor du speicherst...",
"Chunk Overlap": "Chunk Overlap", "Chunk Overlap": "Chunk Overlap",
"Chunk Params": "Chunk Parameter", "Chunk Params": "Chunk Parameter",
"Chunk Size": "Chunk Size", "Chunk Size": "Chunk Size",
"Click here for help.": "Klicke hier für Hilfe.", "Click here for help.": "Klicke hier für Hilfe.",
"Click here to check other modelfiles.": "Klicke hier, um andere Modelfiles zu überprüfen.", "Click here to check other modelfiles.": "Klicke hier, um andere Modelfiles zu überprüfen.",
"Click here to select": "", "Click here to select": "Klicke hier um auszuwählen",
"Click here to select documents.": "", "Click here to select documents.": "Klicke hier um Dokumente auszuwählen",
"click here.": "hier klicken.", "click here.": "hier klicken.",
"Click on the user role button to change a user's role.": "Klicke auf die Benutzerrollenschaltfläche, um die Rolle eines Benutzers zu ändern.", "Click on the user role button to change a user's role.": "Klicke auf die Benutzerrollenschaltfläche, um die Rolle eines Benutzers zu ändern.",
"Close": "Schließe", "Close": "Schließe",
"Collection": "Kollektion", "Collection": "Kollektion",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "ComfyUI Base URL wird benötigt.",
"Command": "Befehl", "Command": "Befehl",
"Confirm Password": "Passwort bestätigen", "Confirm Password": "Passwort bestätigen",
"Connections": "Verbindungen", "Connections": "Verbindungen",
"Content": "Inhalt", "Content": "Inhalt",
"Context Length": "Context Length", "Context Length": "Context Length",
"Continue Response": "Antwort fortsetzen",
"Conversation Mode": "Konversationsmodus", "Conversation Mode": "Konversationsmodus",
"Copied shared chat URL to clipboard!": "Geteilte Chat-URL in die Zwischenablage kopiert!",
"Copy": "Kopieren",
"Copy last code block": "Letzten Codeblock kopieren", "Copy last code block": "Letzten Codeblock kopieren",
"Copy last response": "Letzte Antwort kopieren", "Copy last response": "Letzte Antwort kopieren",
"Copy Link": "kopiere Link",
"Copying to clipboard was successful!": "Das Kopieren in die Zwischenablage war erfolgreich!", "Copying to clipboard was successful!": "Das Kopieren in die Zwischenablage war erfolgreich!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Erstelle einen prägnanten Satz mit 3-5 Wörtern als Überschrift für die folgende Abfrage. Halte dich dabei strikt an die 3-5-Wort-Grenze und vermeide die Verwendung des Wortes Titel:", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Erstelle einen prägnanten Satz mit 3-5 Wörtern als Überschrift für die folgende Abfrage. Halte dich dabei strikt an die 3-5-Wort-Grenze und vermeide die Verwendung des Wortes Titel:",
"Create a modelfile": "Modelfiles erstellen", "Create a modelfile": "Modelfiles erstellen",
"Create Account": "Konto erstellen", "Create Account": "Konto erstellen",
"Created at": "Erstellt am", "Created at": "Erstellt am",
"Created by": "Erstellt von", "Created At": "Erstellt am",
"Current Model": "Aktuelles Modell", "Current Model": "Aktuelles Modell",
"Current Password": "Aktuelles Passwort", "Current Password": "Aktuelles Passwort",
"Custom": "Benutzerdefiniert", "Custom": "Benutzerdefiniert",
@ -88,21 +104,25 @@
"Database": "Datenbank", "Database": "Datenbank",
"DD/MM/YYYY HH:mm": "DD.MM.YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD.MM.YYYY HH:mm",
"Default": "Standard", "Default": "Standard",
"Default (Automatic1111)": "", "Default (Automatic1111)": "Standard (Automatic1111)",
"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
"Default (Web API)": "Standard (Web-API)", "Default (Web API)": "Standard (Web-API)",
"Default model updated": "Standardmodell aktualisiert", "Default model updated": "Standardmodell aktualisiert",
"Default Prompt Suggestions": "Standard-Prompt-Vorschläge", "Default Prompt Suggestions": "Standard-Prompt-Vorschläge",
"Default User Role": "Standardbenutzerrolle", "Default User Role": "Standardbenutzerrolle",
"delete": "löschen", "delete": "löschen",
"Delete": "Löschen",
"Delete a model": "Ein Modell löschen", "Delete a model": "Ein Modell löschen",
"Delete chat": "Chat löschen", "Delete chat": "Chat löschen",
"Delete Chat": "Chat löschen",
"Delete Chats": "Chats löschen", "Delete Chats": "Chats löschen",
"Delete User": "Benutzer löschen",
"Deleted {{deleteModelTag}}": "{{deleteModelTag}} gelöscht", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} gelöscht",
"Deleted {tagName}": "{tagName} gelöscht", "Deleted {{tagName}}": "{{tagName}} gelöscht",
"Description": "Beschreibung", "Description": "Beschreibung",
"Notifications": "Desktop-Benachrichtigungen", "Didn't fully follow instructions": "Nicht genau den Answeisungen gefolgt",
"Disabled": "Deaktiviert", "Disabled": "Deaktiviert",
"Discover a modelfile": "Eine Modelfiles entdecken", "Discover a modelfile": "Ein Modelfile entdecken",
"Discover a prompt": "Einen Prompt entdecken", "Discover a prompt": "Einen Prompt entdecken",
"Discover, download, and explore custom prompts": "Benutzerdefinierte Prompts entdecken, herunterladen und erkunden", "Discover, download, and explore custom prompts": "Benutzerdefinierte Prompts entdecken, herunterladen und erkunden",
"Discover, download, and explore model presets": "Modellvorgaben entdecken, herunterladen und erkunden", "Discover, download, and explore model presets": "Modellvorgaben entdecken, herunterladen und erkunden",
@ -112,57 +132,70 @@
"Documents": "Dokumente", "Documents": "Dokumente",
"does not make any external connections, and your data stays securely on your locally hosted server.": "stellt keine externen Verbindungen her, und Deine Daten bleiben sicher auf Deinen 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 Deine Daten bleiben sicher auf Deinen lokal gehosteten Server.",
"Don't Allow": "Nicht erlauben", "Don't Allow": "Nicht erlauben",
"Don't have an account?": "Hast du vielleicht noch kein Account?", "Don't have an account?": "Hast du vielleicht noch kein Konto?",
"Download as a File": "Als Datei herunterladen", "Don't like the style": "Dir gefällt der Style nicht",
"Download": "Herunterladen",
"Download Database": "Datenbank herunterladen", "Download Database": "Datenbank herunterladen",
"Drop any files here to add to the conversation": "Lasse Dateien hier fallen, um sie dem Chat anzuhängen", "Drop any files here to add to the conversation": "Ziehe Dateien in diesen Bereich, um sie an den Chat anzuhängen",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "z.B. '30s','10m'. Gültige Zeiteinheiten sind 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "z.B. '30s','10m'. Gültige Zeiteinheiten sind 's', 'm', 'h'.",
"Edit": "Bearbeiten",
"Edit Doc": "Dokument bearbeiten", "Edit Doc": "Dokument bearbeiten",
"Edit User": "Benutzer bearbeiten", "Edit User": "Benutzer bearbeiten",
"Email": "E-Mail", "Email": "E-Mail",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "Das Embedding Modell wurde auf \"{{embedding_model}}\" gesetzt",
"Enable Chat History": "Chat-Verlauf aktivieren", "Enable Chat History": "Chat-Verlauf aktivieren",
"Enable New Sign Ups": "Neue Anmeldungen aktivieren", "Enable New Sign Ups": "Neue Anmeldungen aktivieren",
"Enabled": "Aktiviert", "Enabled": "Aktiviert",
"Enter {{role}} message here": "", "Enter {{role}} message here": "Gib die {{role}} Nachricht hier ein",
"Enter API Key": "", "Enter Chunk Overlap": "Gib den Chunk Overlap ein",
"Enter Chunk Overlap": "", "Enter Chunk Size": "Gib die Chunk Size ein",
"Enter Chunk Size": "", "Enter Image Size (e.g. 512x512)": "Gib die Bildgröße ein (z.B. 512x512)",
"Enter Image Size (e.g. 512x512)": "", "Enter LiteLLM API Base URL (litellm_params.api_base)": "Gib die LiteLLM API BASE URL ein (litellm_params.api_base)",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "", "Enter LiteLLM API Key (litellm_params.api_key)": "Gib den LiteLLM API Key ein (litellm_params.api_key)",
"Enter LiteLLM API Key (litellm_params.api_key)": "", "Enter LiteLLM API RPM (litellm_params.rpm)": "Gib die LiteLLM API RPM ein (litellm_params.rpm)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "", "Enter LiteLLM Model (litellm_params.model)": "Gib das LiteLLM Model ein (litellm_params.model)",
"Enter LiteLLM Model (litellm_params.model)": "", "Enter Max Tokens (litellm_params.max_tokens)": "Gib die maximalen Token ein (litellm_params.max_tokens) an",
"Enter Max Tokens (litellm_params.max_tokens)": "", "Enter model tag (e.g. {{modelTag}})": "Gib den Model-Tag ein",
"Enter model tag (e.g. {{modelTag}})": "", "Enter Number of Steps (e.g. 50)": "Gib die Anzahl an Schritten ein (z.B. 50)",
"Enter Number of Steps (e.g. 50)": "", "Enter Relevance Threshold": "Gib die Relevanzschwelle",
"Enter stop sequence": "Stop-Sequenz eingeben", "Enter stop sequence": "Stop-Sequenz eingeben",
"Enter Top K": "", "Enter Top K": "Gib Top K ein",
"Enter URL (e.g. http://127.0.0.1:7860/)": "", "Enter URL (e.g. http://127.0.0.1:7860/)": "Gib die URL ein (z.B. http://127.0.0.1:7860/)",
"Enter Your Email": "Geben Deine E-Mail-Adresse ein", "Enter Your Email": "Gib deine E-Mail-Adresse ein",
"Enter Your Full Name": "Gebe Deinen vollständigen Namen ein", "Enter Your Full Name": "Gib deinen vollständigen Namen ein",
"Enter Your Password": "Gebe Dein Passwort ein", "Enter Your Password": "Gib dein Passwort ein",
"Experimental": "Experimentell", "Experimental": "Experimentell",
"Export All Chats (All Users)": "Alle Chats exportieren (alle Benutzer)", "Export All Chats (All Users)": "Alle Chats exportieren (alle Benutzer)",
"Export Chats": "Chats exportieren", "Export Chats": "Chats exportieren",
"Export Documents Mapping": "Dokumentenmapping exportieren", "Export Documents Mapping": "Dokumentenmapping exportieren",
"Export Modelfiles": "Modelfiles exportieren", "Export Modelfiles": "Modelfiles exportieren",
"Export Prompts": "Prompts exportieren", "Export Prompts": "Prompts exportieren",
"Failed to create API Key.": "API Key erstellen fehlgeschlagen",
"Failed to read clipboard contents": "Fehler beim Lesen des Zwischenablageninhalts", "Failed to read clipboard contents": "Fehler beim Lesen des Zwischenablageninhalts",
"File Mode": "File Mode", "Feel free to add specific details": "Ergänze Details.",
"File Mode": "File Modus",
"File not found.": "Datei nicht gefunden.", "File not found.": "Datei nicht gefunden.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Fingerprint spoofing erkannt: Initialen können nicht als Avatar verwendet werden. Es wird auf das Standardprofilbild zurückgegriffen.",
"Fluidly stream large external response chunks": "Flüssiges Streamen großer externer Antwortblöcke",
"Focus chat input": "Chat-Eingabe fokussieren", "Focus chat input": "Chat-Eingabe fokussieren",
"Format your variables using square brackets like this:": "Formatiere Deine Variablen mit eckigen Klammern wie folgt:", "Followed instructions perfectly": "Anweisungen perfekt befolgt",
"Format your variables using square brackets like this:": "Formatiere deine Variablen mit eckigen Klammern wie folgt:",
"From (Base Model)": "Von (Basismodell)", "From (Base Model)": "Von (Basismodell)",
"Fluidly stream large external response chunks": "Streamen Sie große externe Antwortblöcke flüssig", "Fluidly stream large external response chunks": "Streamen Sie große externe Antwortblöcke flüssig",
"Full Screen Mode": "Vollbildmodus", "Full Screen Mode": "Vollbildmodus",
"General": "Allgemein", "General": "Allgemein",
"General Settings": "Allgemeine Einstellungen", "General Settings": "Allgemeine Einstellungen",
"Generation Info": "Generierungsinformationen",
"Good Response": "Gute Antwort",
"has no conversations.": "hat keine Unterhaltungen.",
"Hello, {{name}}": "Hallo, {{name}}", "Hello, {{name}}": "Hallo, {{name}}",
"Hide": "Verbergen", "Hide": "Verbergen",
"Hide Additional Params": "Hide Additional Params", "Hide Additional Params": "Verstecke zusätzliche Parameter",
"How can I help you today?": "Wie kann ich Dir heute helfen?", "How can I help you today?": "Wie kann ich Dir heute helfen?",
"Hybrid Search": "Hybride Suche",
"Image Generation (Experimental)": "Bildgenerierung (experimentell)", "Image Generation (Experimental)": "Bildgenerierung (experimentell)",
"Image Generation Engine": "", "Image Generation Engine": "Bildgenerierungs-Engine",
"Image Settings": "Bildeinstellungen", "Image Settings": "Bildeinstellungen",
"Images": "Bilder", "Images": "Bilder",
"Import Chats": "Chats importieren", "Import Chats": "Chats importieren",
@ -178,12 +211,13 @@
"Keep Alive": "Keep Alive", "Keep Alive": "Keep Alive",
"Keyboard shortcuts": "Tastenkürzel", "Keyboard shortcuts": "Tastenkürzel",
"Language": "Sprache", "Language": "Sprache",
"Last Active": "Zuletzt aktiv",
"Light": "Hell", "Light": "Hell",
"OLED Dark": "OLED Dunkel", "OLED Dark": "OLED Dunkel",
"Listening...": "Hören...", "Listening...": "Hören...",
"LLMs can make mistakes. Verify important information.": "LLMs können Fehler machen. Überprüfe wichtige Informationen.", "LLMs can make mistakes. Verify important information.": "LLMs können Fehler machen. Überprüfe wichtige Informationen.",
"Made by OpenWebUI Community": "Von der OpenWebUI-Community", "Made by OpenWebUI Community": "Von der OpenWebUI-Community",
"Make sure to enclose them with": "Formatiere Deine Variablen mit:", "Make sure to enclose them with": "Formatiere deine Variablen mit:",
"Manage LiteLLM Models": "LiteLLM-Modelle verwalten", "Manage LiteLLM Models": "LiteLLM-Modelle verwalten",
"Manage Models": "Modelle verwalten", "Manage Models": "Modelle verwalten",
"Manage Ollama Models": "Ollama-Modelle verwalten", "Manage Ollama Models": "Ollama-Modelle verwalten",
@ -192,11 +226,13 @@
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "DD.MM.YYYY", "MMMM DD, YYYY": "DD MMMM YYYY",
"MMMM DD, YYYY HH:mm": "DD MMMM YYYY HH:mm",
"Model '{{modelName}}' has been successfully downloaded.": "Modell '{{modelName}}' wurde erfolgreich heruntergeladen.", "Model '{{modelName}}' has been successfully downloaded.": "Modell '{{modelName}}' wurde erfolgreich heruntergeladen.",
"Model '{{modelTag}}' is already in queue for downloading.": "Modell '{{modelTag}}' befindet sich bereits in der Warteschlange zum Herunterladen.", "Model '{{modelTag}}' is already in queue for downloading.": "Modell '{{modelTag}}' befindet sich bereits in der Warteschlange zum Herunterladen.",
"Model {{modelId}} not found": "Modell {{modelId}} nicht gefunden", "Model {{modelId}} not found": "Modell {{modelId}} nicht gefunden",
"Model {{modelName}} already exists.": "Modell {{modelName}} existiert bereits.", "Model {{modelName}} already exists.": "Modell {{modelName}} existiert bereits.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modell-Dateisystempfad erkannt. Modellkurzname ist für das Update erforderlich, Fortsetzung nicht möglich.",
"Model Name": "Modellname", "Model Name": "Modellname",
"Model not selected": "Modell nicht ausgewählt", "Model not selected": "Modell nicht ausgewählt",
"Model Tag Name": "Modell-Tag-Name", "Model Tag Name": "Modell-Tag-Name",
@ -207,41 +243,55 @@
"Modelfile Content": "Modelfile Content", "Modelfile Content": "Modelfile Content",
"Modelfiles": "Modelfiles", "Modelfiles": "Modelfiles",
"Models": "Modelle", "Models": "Modelle",
"More": "Mehr",
"My Documents": "Meine Dokumente", "My Documents": "Meine Dokumente",
"My Modelfiles": "Meine Modelfiles", "My Modelfiles": "Meine Modelfiles",
"My Prompts": "Meine Prompts", "My Prompts": "Meine Prompts",
"Name": "Name", "Name": "Name",
"Name Tag": "Namens-Tag", "Name Tag": "Namens-Tag",
"Name your modelfile": "Name your modelfile", "Name your modelfile": "Benenne dein modelfile",
"New Chat": "Neuer Chat", "New Chat": "Neuer Chat",
"New Password": "Neues Passwort", "New Password": "Neues Passwort",
"Not factually correct": "Nicht sachlich korrekt.",
"Not sure what to add?": "Nicht sicher, was hinzugefügt werden soll?", "Not sure what to add?": "Nicht sicher, was hinzugefügt werden soll?",
"Not sure what to write? Switch to": "Nicht sicher, was Du schreiben sollst? Wechsel zu", "Not sure what to write? Switch to": "Nicht sicher, was Du schreiben sollst? Wechsel zu",
"Notifications": "Desktop-Benachrichtigungen",
"Off": "Aus", "Off": "Aus",
"Okay, Let's Go!": "Okay, los geht's!", "Okay, Let's Go!": "Okay, los geht's!",
"Ollama Base URL": "", "OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "Ollama Basis URL",
"Ollama Version": "Ollama-Version", "Ollama Version": "Ollama-Version",
"On": "Ein", "On": "Ein",
"Only": "Nur", "Only": "Nur",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Nur alphanumerische Zeichen und Bindestriche sind im Befehlsstring erlaubt.", "Only alphanumeric characters and hyphens are allowed in the command string.": "Nur alphanumerische Zeichen und Bindestriche sind im Befehlsstring erlaubt.",
"Oops! Hold tight! Your files are still in the processing oven. We're cooking them up to perfection. Please be patient and we'll let you know once they're ready.": "Hoppla! Warte noch einen Moment! Die Dateien sind noch im der Verarbeitung. Bitte habe etwas Geduld und wir informieren Dich, sobald sie bereit sind.", "Oops! Hold tight! Your files are still in the processing oven. We're cooking them up to perfection. Please be patient and we'll let you know once they're ready.": "Hoppla! Warte noch einen Moment! Die Dateien sind noch im der Verarbeitung. Bitte habe etwas Geduld und wir informieren Dich, sobald sie bereit sind.",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Oops! Looks like the URL is invalid. Please double-check and try again.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Hoppla! Es sieht so aus, als wäre die URL ungültig. Bitte überprüfe sie und versuche es nochmal.",
"Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.", "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Hoppla! Du verwendest eine nicht unterstützte Methode (nur Frontend). Bitte stelle die WebUI vom Backend aus bereit.",
"Open": "Öffne", "Open": "Öffne",
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "", "Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "Neuen Chat öffnen", "Open new chat": "Neuen Chat öffnen",
"OpenAI": "",
"OpenAI API": "OpenAI-API", "OpenAI API": "OpenAI-API",
"OpenAI API Key": "", "OpenAI API Config": "OpenAI API Konfiguration",
"OpenAI API Key is required.": "", "OpenAI API Key is required.": "OpenAI API Key erforderlich.",
"OpenAI URL/Key required.": "OpenAI URL/Key erforderlich.",
"or": "oder", "or": "oder",
"Other": "Andere",
"Parameters": "Parameter", "Parameters": "Parameter",
"Password": "Passwort", "Password": "Passwort",
"PDF Extract Images (OCR)": "Text von Bilder aus PDFs extrahieren (OCR)", "PDF document (.pdf)": "PDF-Dokument (.pdf)",
"PDF Extract Images (OCR)": "Text von Bildern aus PDFs extrahieren (OCR)",
"pending": "ausstehend", "pending": "ausstehend",
"Permission denied when accessing microphone: {{error}}": "Zugriff auf das Mikrofon verweigert: {{error}}", "Permission denied when accessing microphone: {{error}}": "Zugriff auf das Mikrofon verweigert: {{error}}",
"Plain text (.txt)": "Nur Text (.txt)",
"Playground": "Playground",
"Positive attitude": "Positive Einstellung",
"Profile Image": "Profilbild",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (z.B. Erzähle mir eine interessante Tatsache über das Römische Reich.",
"Playground": "Spielplatz", "Playground": "Spielplatz",
"Archived Chats": "Archivierte Chats",
"Profile": "Profil", "Profile": "Profil",
"Prompt Content": "Prompt-Inhalt", "Prompt Content": "Prompt-Inhalt",
"Prompt suggestions": "Prompt-Vorschläge", "Prompt suggestions": "Prompt-Vorschläge",
@ -251,12 +301,18 @@
"Query Params": "Query Parameter", "Query Params": "Query Parameter",
"RAG Template": "RAG-Vorlage", "RAG Template": "RAG-Vorlage",
"Raw Format": "Rohformat", "Raw Format": "Rohformat",
"Read Aloud": "Vorlesen",
"Record voice": "Stimme aufnehmen", "Record voice": "Stimme aufnehmen",
"Redirecting you to OpenWebUI Community": "Du wirst zur OpenWebUI-Community weitergeleitet", "Redirecting you to OpenWebUI Community": "Du wirst zur OpenWebUI-Community weitergeleitet",
"Refused when it shouldn't have": "Abgelehnt, obwohl es nicht hätte sein sollen.",
"Regenerate": "Neu generieren",
"Release Notes": "Versionshinweise", "Release Notes": "Versionshinweise",
"Relevance Threshold": "",
"Remove": "Entfernen",
"Repeat Last N": "Repeat Last N", "Repeat Last N": "Repeat Last N",
"Repeat Penalty": "Repeat Penalty", "Repeat Penalty": "Repeat Penalty",
"Request Mode": "Request-Modus", "Request Mode": "Request-Modus",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Vektorspeicher zurücksetzen", "Reset Vector Storage": "Vektorspeicher zurücksetzen",
"Response AutoCopy to Clipboard": "Antwort automatisch in die Zwischenablage kopieren", "Response AutoCopy to Clipboard": "Antwort automatisch in die Zwischenablage kopieren",
"Role": "Rolle", "Role": "Rolle",
@ -266,19 +322,20 @@
"Save & Create": "Speichern und erstellen", "Save & Create": "Speichern und erstellen",
"Save & Submit": "Speichern und senden", "Save & Submit": "Speichern und senden",
"Save & Update": "Speichern und aktualisieren", "Save & Update": "Speichern und aktualisieren",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Das direkte Speichern von Chat-Protokollen im Browser-Speicher wird nicht mehr unterstützt. Bitte nehme Dir einen Moment Zeit, um Deine Chat-Protokolle herunterzuladen und zu löschen, indem Du auf die Schaltfläche unten klickst. Keine Sorge, Du kannst Deine Chat-Protokolle problemlos über das Backend wieder importieren.", "Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Das direkte Speichern von Chat-Protokollen im Browser-Speicher wird nicht mehr unterstützt. Bitte nimm Dir einen Moment Zeit, um deine Chat-Protokolle herunterzuladen und zu löschen, indem Du auf die Schaltfläche unten klickst. Keine Sorge, Du kannst deine Chat-Protokolle problemlos über das Backend wieder importieren.",
"Scan": "Scannen", "Scan": "Scannen",
"Scan complete!": "Scan abgeschlossen!", "Scan complete!": "Scan abgeschlossen!",
"Scan for documents from {{path}}": "Dokumente von {{path}} scannen", "Scan for documents from {{path}}": "Dokumente von {{path}} scannen",
"Search": "Suchen", "Search": "Suchen",
"Search a model": "Ein Modell suchen",
"Search Documents": "Dokumente suchen", "Search Documents": "Dokumente suchen",
"Search Prompts": "Prompts suchen", "Search Prompts": "Prompts suchen",
"See readme.md for instructions": "Anleitung in readme.md anzeigen", "See readme.md for instructions": "Anleitung in readme.md anzeigen",
"See what's new": "Was gibt's Neues", "See what's new": "Was gibt's Neues",
"Seed": "Seed", "Seed": "Seed",
"Select a mode": "", "Select a mode": "Einen Modus auswählen",
"Select a model": "Ein Modell auswählen", "Select a model": "Ein Modell auswählen",
"Select an Ollama instance": "", "Select an Ollama instance": "Eine Ollama Instanz auswählen",
"Send a Message": "Eine Nachricht senden", "Send a Message": "Eine Nachricht senden",
"Send message": "Nachricht senden", "Send message": "Nachricht senden",
"Server connection verified": "Serververbindung überprüft", "Server connection verified": "Serververbindung überprüft",
@ -290,42 +347,51 @@
"Set Voice": "Stimme festlegen", "Set Voice": "Stimme festlegen",
"Settings": "Einstellungen", "Settings": "Einstellungen",
"Settings saved successfully!": "Einstellungen erfolgreich gespeichert!", "Settings saved successfully!": "Einstellungen erfolgreich gespeichert!",
"Share": "Teilen",
"Share Chat": "Chat teilen",
"Share to OpenWebUI Community": "Mit OpenWebUI Community teilen", "Share to OpenWebUI Community": "Mit OpenWebUI Community teilen",
"short-summary": "kurze-zusammenfassung", "short-summary": "kurze-zusammenfassung",
"Show": "Anzeigen", "Show": "Anzeigen",
"Show Additional Params": "Show Additional Params", "Show Additional Params": "Zusätzliche Parameter anzeigen",
"Show shortcuts": "Verknüpfungen anzeigen", "Show shortcuts": "Verknüpfungen anzeigen",
"Showcased creativity": "Kreativität zur Schau gestellt",
"sidebar": "Seitenleiste", "sidebar": "Seitenleiste",
"Sign in": "Anmelden", "Sign in": "Anmelden",
"Sign Out": "Abmelden", "Sign Out": "Abmelden",
"Sign up": "Registrieren", "Sign up": "Registrieren",
"Signing in": "Anmeldung",
"Speech recognition error: {{error}}": "Spracherkennungsfehler: {{error}}", "Speech recognition error: {{error}}": "Spracherkennungsfehler: {{error}}",
"Speech-to-Text Engine": "Sprache-zu-Text-Engine", "Speech-to-Text Engine": "Sprache-zu-Text-Engine",
"SpeechRecognition API is not supported in this browser.": "Die SpeechRecognition-API wird in diesem Browser nicht unterstützt.", "SpeechRecognition API is not supported in this browser.": "Die Spracherkennungs-API wird in diesem Browser nicht unterstützt.",
"Stop Sequence": "Stop Sequence", "Stop Sequence": "Stop Sequence",
"STT Settings": "STT-Einstellungen", "STT Settings": "STT-Einstellungen",
"Submit": "Senden", "Submit": "Senden",
"Subtitle (e.g. about the Roman Empire)": "Untertitel (z.B. über das Römische Reich)",
"Success": "Erfolg", "Success": "Erfolg",
"Successfully updated.": "Erfolgreich aktualisiert.", "Successfully updated.": "Erfolgreich aktualisiert.",
"Sync All": "Alles synchronisieren", "Sync All": "Alles synchronisieren",
"System": "System", "System": "System",
"System Prompt": "System-Prompt", "System Prompt": "System-Prompt",
"Tags": "Tags", "Tags": "Tags",
"Tell us more:": "Erzähl uns mehr",
"Temperature": "Temperatur", "Temperature": "Temperatur",
"Template": "Vorlage", "Template": "Vorlage",
"Text Completion": "Textvervollständigung", "Text Completion": "Textvervollständigung",
"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 dein Feedback",
"Theme": "Design", "Theme": "Design",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dadurch werden Deine wertvollen Unterhaltungen sicher in der Backend-Datenbank gespeichert. Vielen Dank!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dadurch werden deine wertvollen Unterhaltungen sicher in der Backend-Datenbank gespeichert. Vielen Dank!",
"This setting does not sync across browsers or devices.": "Diese Einstellung wird nicht zwischen Browsern oder Geräten synchronisiert.", "This setting does not sync across browsers or devices.": "Diese Einstellung wird nicht zwischen Browsern oder Geräten synchronisiert.",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.", "Thorough explanation": "Genaue Erklärung",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Tipp: Aktualisiere mehrere Variablen nacheinander, indem du nach jeder Aktualisierung die Tabulatortaste im Chat-Eingabefeld drückst.",
"Title": "Titel", "Title": "Titel",
"Title (e.g. Tell me a fun fact)": "Titel (z.B. Erzähle mir eine lustige Tatsache",
"Title Auto-Generation": "Automatische Titelgenerierung", "Title Auto-Generation": "Automatische Titelgenerierung",
"Title Generation Prompt": "Prompt für Titelgenerierung", "Title Generation Prompt": "Prompt für Titelgenerierung",
"to": "für", "to": "für",
"To access the available model names for downloading,": "Um auf die verfügbaren Modellnamen zum Herunterladen zuzugreifen,", "To access the available model names for downloading,": "Um auf die verfügbaren Modellnamen zum Herunterladen zuzugreifen,",
"To access the GGUF models available for downloading,": "To access the GGUF models available for downloading,", "To access the GGUF models available for downloading,": "Um auf die verfügbaren GGUF Modelle zum Herunterladen zuzugreifen",
"to chat input.": "to chat input.", "to chat input.": "to chat input.",
"Toggle settings": "Einstellungen umschalten", "Toggle settings": "Einstellungen umschalten",
"Toggle sidebar": "Seitenleiste umschalten", "Toggle sidebar": "Seitenleiste umschalten",
@ -333,16 +399,22 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Probleme beim Zugriff auf Ollama?", "Trouble accessing Ollama?": "Probleme beim Zugriff auf Ollama?",
"TTS Settings": "TTS-Einstellungen", "TTS Settings": "TTS-Einstellungen",
"Type Hugging Face Resolve (Download) URL": "", "Type Hugging Face Resolve (Download) URL": "Gib die Hugging Face Resolve (Download) URL ein",
"Uh-oh! There was an issue connecting to {{provider}}.": "Ups! Es gab ein Problem bei der Verbindung mit {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Ups! Es gab ein Problem bei der Verbindung mit {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Unknown File Type '{{file_type}}', but accepting and treating as plain text", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Unbekannter Dateityp '{{file_type}}', wird jedoch akzeptiert und als einfacher Text behandelt.",
"Update and Copy Link": "Erneuern und kopieren",
"Update Embedding Model": "Embedding Modell aktualisieren",
"Update embedding model (e.g. {{model}})": "Embedding Modell aktualisieren (z.B. {{model}})",
"Update password": "Passwort aktualisieren", "Update password": "Passwort aktualisieren",
"Upload a GGUF model": "Upload a GGUF model", "Update Reranking Model": "Reranking Model aktualisieren",
"Update reranking model (e.g. {{model}})": "Reranking Model aktualisieren (z.B. {{model}})",
"Upload a GGUF model": "GGUF Model hochladen",
"Upload files": "Dateien hochladen", "Upload files": "Dateien hochladen",
"Upload Progress": "Upload Progress", "Upload Progress": "Upload Progress",
"URL Mode": "URL Mode", "URL Mode": "URL Modus",
"Use '#' in the prompt input to load and select your documents.": "Verwende '#' in der Prompt-Eingabe, um Deine Dokumente zu laden und auszuwählen.", "Use '#' in the prompt input to load and select your documents.": "Verwende '#' in der Prompt-Eingabe, um deine Dokumente zu laden und auszuwählen.",
"Use Gravatar": "", "Use Gravatar": "verwende Gravatar ",
"Use Initials": "verwende Initialen",
"user": "Benutzer", "user": "Benutzer",
"User Permissions": "Benutzerberechtigungen", "User Permissions": "Benutzerberechtigungen",
"Users": "Benutzer", "Users": "Benutzer",
@ -351,12 +423,14 @@
"variable": "Variable", "variable": "Variable",
"variable to have them replaced with clipboard content.": "Variable, um den Inhalt der Zwischenablage beim Nutzen des Prompts zu ersetzen.", "variable to have them replaced with clipboard content.": "Variable, um den Inhalt der Zwischenablage beim Nutzen des Prompts zu ersetzen.",
"Version": "Version", "Version": "Version",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Warnung: Wenn du dein Einbettungsmodell aktualisierst oder änderst, musst du alle Dokumente erneut importieren.",
"Web": "Web", "Web": "Web",
"Webhook URL": "",
"WebUI Add-ons": "WebUI-Add-Ons", "WebUI Add-ons": "WebUI-Add-Ons",
"WebUI Settings": "WebUI-Einstellungen", "WebUI Settings": "WebUI-Einstellungen",
"WebUI will make requests to": "Wenn aktiviert sendet WebUI externe Anfragen an", "WebUI will make requests to": "Wenn aktiviert sendet WebUI externe Anfragen an",
"Whats New in": "Was gibt's Neues in", "Whats New in": "Was gibt's Neues in",
"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Wenn die Historie ausgeschaltet ist, werden neue Chats nicht in Deiner Historie auf Deine Geräte angezeigt.", "When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Wenn die Historie ausgeschaltet ist, werden neue Chats nicht in deiner Historie auf deine Geräte angezeigt.",
"Whisper (Local)": "Whisper (Lokal)", "Whisper (Local)": "Whisper (Lokal)",
"Write a prompt suggestion (e.g. Who are you?)": "Gebe einen Prompt-Vorschlag ein (z.B. Wer bist du?)", "Write a prompt suggestion (e.g. Who are you?)": "Gebe einen Prompt-Vorschlag ein (z.B. Wer bist du?)",
"Write a summary in 50 words that summarizes [topic or keyword].": "Schreibe eine kurze Zusammenfassung in 50 Wörtern, die [Thema oder Schlüsselwort] zusammenfasst.", "Write a summary in 50 words that summarizes [topic or keyword].": "Schreibe eine kurze Zusammenfassung in 50 Wörtern, die [Thema oder Schlüsselwort] zusammenfasst.",

View file

@ -1,64 +1,435 @@
{ {
"analyze": "analyse", "'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "",
"analyzed": "analysed", "(Beta)": "",
"analyzes": "analyses", "(e.g. `sh webui.sh --api`)": "",
"apologize": "apologise", "(latest)": "",
"apologized": "apologised", "{{modelName}} is thinking...": "",
"apologizes": "apologises", "{{user}}'s Chats": "",
"apologizing": "apologising", "{{webUIName}} Backend Required": "",
"canceled": "cancelled", "a user": "",
"canceling": "cancelling", "About": "",
"capitalize": "capitalise", "Account": "",
"capitalized": "capitalised", "Accurate information": "",
"capitalizes": "capitalises", "Add a model": "",
"center": "centre", "Add a model tag name": "",
"centered": "centred", "Add a short description about what this modelfile does": "",
"color": "colour", "Add a short title for this prompt": "",
"colorize": "colourise", "Add a tag": "",
"customize": "customise", "Add Docs": "",
"customizes": "customises", "Add Files": "",
"defense": "defence", "Add message": "",
"dialog": "dialogue", "Add Model": "",
"emphasize": "emphasise", "Add Tags": "",
"emphasized": "emphasised", "Adjusting these settings will apply changes universally to all users.": "",
"emphasizes": "emphasises", "admin": "",
"favor": "favour", "Admin Panel": "",
"favorable": "favourable", "Admin Settings": "",
"favorite": "favourite", "Advanced Parameters": "",
"favoritism": "favouritism", "all": "",
"labor": "labour", "All Users": "",
"labored": "laboured", "Allow": "",
"laboring": "labouring", "Allow Chat Deletion": "",
"maximize": "maximise", "alphanumeric characters and hyphens": "",
"maximizes": "maximises", "Already have an account?": "",
"minimize": "minimise", "an assistant": "",
"minimizes": "minimises", "and": "",
"neighbor": "neighbour", "API Base URL": "",
"neighborhood": "neighbourhood", "API Key": "",
"offense": "offence", "API Key created.": "",
"organize": "organise", "API keys": "",
"organizes": "organises", "API RPM": "",
"personalize": "personalise", "Archive": "",
"personalizes": "personalises", "Archived Chats": "",
"program": "programme", "are allowed - Activate this command by typing": "",
"programmed": "programmed", "Are you sure?": "",
"programs": "programmes", "Attention to detail": "",
"quantization": "quantisation", "Audio": "",
"quantize": "quantise", "Auto-playback response": "",
"randomize": "randomise", "Auto-send input after 3 sec.": "",
"randomizes": "randomises", "AUTOMATIC1111 Base URL": "",
"realize": "realise", "AUTOMATIC1111 Base URL is required.": "",
"realizes": "realises", "available!": "",
"recognize": "recognise", "Back": "",
"recognizes": "recognises", "Bad Response": "",
"summarize": "summarise", "Being lazy": "",
"summarizes": "summarises", "Builder Mode": "",
"theater": "theatre", "Cancel": "",
"theaters": "theatres", "Categories": "",
"toward": "towards", "Change Password": "",
"traveled": "travelled", "Chat": "",
"traveler": "traveller", "Chat History": "",
"traveling": "travelling", "Chat History is off for this browser.": "",
"utilize": "utilise", "Chats": "",
"utilizes": "utilises" "Check Again": "",
"Check for updates": "",
"Checking for updates...": "",
"Choose a model before saving...": "",
"Chunk Overlap": "",
"Chunk Params": "",
"Chunk Size": "",
"Click here for help.": "",
"Click here to check other modelfiles.": "",
"Click here to select": "",
"Click here to select documents.": "",
"click here.": "",
"Click on the user role button to change a user's role.": "",
"Close": "",
"Collection": "",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "",
"Confirm Password": "",
"Connections": "",
"Content": "",
"Context Length": "",
"Continue Response": "",
"Conversation Mode": "",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "",
"Copy last response": "",
"Copy Link": "",
"Copying to clipboard was successful!": "",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "",
"Create a modelfile": "",
"Create Account": "",
"Created at": "",
"Created At": "",
"Current Model": "",
"Current Password": "",
"Custom": "",
"Customize Ollama models for a specific purpose": "",
"Dark": "",
"Database": "",
"DD/MM/YYYY HH:mm": "",
"Default": "",
"Default (Automatic1111)": "",
"Default (SentenceTransformers)": "",
"Default (Web API)": "",
"Default model updated": "",
"Default Prompt Suggestions": "",
"Default User Role": "",
"delete": "",
"Delete": "",
"Delete a model": "",
"Delete chat": "",
"Delete Chat": "",
"Delete Chats": "",
"Delete User": "",
"Deleted {{deleteModelTag}}": "",
"Deleted {{tagName}}": "",
"Description": "",
"Didn't fully follow instructions": "",
"Disabled": "",
"Discover a modelfile": "",
"Discover a prompt": "",
"Discover, download, and explore custom prompts": "",
"Discover, download, and explore model presets": "",
"Display the username instead of You in the Chat": "",
"Document": "",
"Document Settings": "",
"Documents": "",
"does not make any external connections, and your data stays securely on your locally hosted server.": "",
"Don't Allow": "",
"Don't have an account?": "",
"Don't like the style": "",
"Download": "",
"Download Database": "",
"Drop any files here to add to the conversation": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
"Edit": "",
"Edit Doc": "",
"Edit User": "",
"Email": "",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "",
"Enable New Sign Ups": "",
"Enabled": "",
"Enter {{role}} message here": "",
"Enter Chunk Overlap": "",
"Enter Chunk Size": "",
"Enter Image Size (e.g. 512x512)": "",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "",
"Enter LiteLLM API Key (litellm_params.api_key)": "",
"Enter LiteLLM API RPM (litellm_params.rpm)": "",
"Enter LiteLLM Model (litellm_params.model)": "",
"Enter Max Tokens (litellm_params.max_tokens)": "",
"Enter model tag (e.g. {{modelTag}})": "",
"Enter Number of Steps (e.g. 50)": "",
"Enter Relevance Threshold": "",
"Enter stop sequence": "",
"Enter Top K": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "",
"Enter Your Email": "",
"Enter Your Full Name": "",
"Enter Your Password": "",
"Experimental": "",
"Export All Chats (All Users)": "",
"Export Chats": "",
"Export Documents Mapping": "",
"Export Modelfiles": "",
"Export Prompts": "",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "",
"Feel free to add specific details": "",
"File Mode": "",
"File not found.": "",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "",
"Focus chat input": "",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "",
"From (Base Model)": "",
"Full Screen Mode": "",
"General": "",
"General Settings": "",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "",
"Hide": "",
"Hide Additional Params": "",
"How can I help you today?": "",
"Hybrid Search": "",
"Image Generation (Experimental)": "",
"Image Generation Engine": "",
"Image Settings": "",
"Images": "",
"Import Chats": "",
"Import Documents Mapping": "",
"Import Modelfiles": "",
"Import Prompts": "",
"Include `--api` flag when running stable-diffusion-webui": "",
"Interface": "",
"join our Discord for help.": "",
"JSON": "",
"JWT Expiration": "",
"JWT Token": "",
"Keep Alive": "",
"Keyboard shortcuts": "",
"Language": "",
"Last Active": "",
"Light": "",
"Listening...": "",
"LLMs can make mistakes. Verify important information.": "",
"Made by OpenWebUI Community": "",
"Make sure to enclose them with": "",
"Manage LiteLLM Models": "",
"Manage Models": "",
"Manage Ollama Models": "",
"Max Tokens": "",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "",
"Mirostat": "",
"Mirostat Eta": "",
"Mirostat Tau": "",
"MMMM DD, YYYY": "",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "",
"Model '{{modelTag}}' is already in queue for downloading.": "",
"Model {{modelId}} not found": "",
"Model {{modelName}} already exists.": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Name": "",
"Model not selected": "",
"Model Tag Name": "",
"Model Whitelisting": "",
"Model(s) Whitelisted": "",
"Modelfile": "",
"Modelfile Advanced Settings": "",
"Modelfile Content": "",
"Modelfiles": "",
"Models": "",
"More": "",
"My Documents": "",
"My Modelfiles": "",
"My Prompts": "",
"Name": "",
"Name Tag": "",
"Name your modelfile": "",
"New Chat": "",
"New Password": "",
"Not factually correct": "",
"Not sure what to add?": "",
"Not sure what to write? Switch to": "",
"Notifications": "",
"Off": "",
"Okay, Let's Go!": "",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "",
"Ollama Version": "",
"On": "",
"Only": "",
"Only alphanumeric characters and hyphens are allowed in the command string.": "",
"Oops! Hold tight! Your files are still in the processing oven. We're cooking them up to perfection. Please be patient and we'll let you know once they're ready.": "",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "",
"Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "",
"Open": "",
"Open AI": "",
"Open AI (Dall-E)": "",
"Open new chat": "",
"OpenAI": "",
"OpenAI API": "",
"OpenAI API Config": "",
"OpenAI API Key is required.": "",
"OpenAI URL/Key required.": "",
"or": "",
"Other": "",
"Parameters": "",
"Password": "",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "",
"pending": "",
"Permission denied when accessing microphone: {{error}}": "",
"Plain text (.txt)": "",
"Playground": "",
"Positive attitude": "",
"Profile Image": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
"Prompt Content": "",
"Prompt suggestions": "",
"Prompts": "",
"Pull a model from Ollama.com": "",
"Pull Progress": "",
"Query Params": "",
"RAG Template": "",
"Raw Format": "",
"Read Aloud": "",
"Record voice": "",
"Redirecting you to OpenWebUI Community": "",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "",
"Repeat Penalty": "",
"Request Mode": "",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "",
"Response AutoCopy to Clipboard": "",
"Role": "",
"Rosé Pine": "",
"Rosé Pine Dawn": "",
"Save": "",
"Save & Create": "",
"Save & Submit": "",
"Save & Update": "",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "",
"Scan": "",
"Scan complete!": "",
"Scan for documents from {{path}}": "",
"Search": "",
"Search a model": "",
"Search Documents": "",
"Search Prompts": "",
"See readme.md for instructions": "",
"See what's new": "",
"Seed": "",
"Select a mode": "",
"Select a model": "",
"Select an Ollama instance": "",
"Send a Message": "",
"Send message": "",
"Server connection verified": "",
"Set as default": "",
"Set Default Model": "",
"Set Image Size": "",
"Set Steps": "",
"Set Title Auto-Generation Model": "",
"Set Voice": "",
"Settings": "",
"Settings saved successfully!": "",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "",
"short-summary": "",
"Show": "",
"Show Additional Params": "",
"Show shortcuts": "",
"Showcased creativity": "",
"sidebar": "",
"Sign in": "",
"Sign Out": "",
"Sign up": "",
"Signing in": "",
"Speech recognition error: {{error}}": "",
"Speech-to-Text Engine": "",
"SpeechRecognition API is not supported in this browser.": "",
"Stop Sequence": "",
"STT Settings": "",
"Submit": "",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "",
"Successfully updated.": "",
"Sync All": "",
"System": "",
"System Prompt": "",
"Tags": "",
"Tell us more:": "",
"Temperature": "",
"Template": "",
"Text Completion": "",
"Text-to-Speech Engine": "",
"Tfs Z": "",
"Thanks for your feedback!": "",
"Theme": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "",
"This setting does not sync across browsers or devices.": "",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "",
"Title": "",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "",
"Title Generation Prompt": "",
"to": "",
"To access the available model names for downloading,": "",
"To access the GGUF models available for downloading,": "",
"to chat input.": "",
"Toggle settings": "",
"Toggle sidebar": "",
"Top K": "",
"Top P": "",
"Trouble accessing Ollama?": "",
"TTS Settings": "",
"Type Hugging Face Resolve (Download) URL": "",
"Uh-oh! There was an issue connecting to {{provider}}.": "",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "",
"Update and Copy Link": "",
"Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "",
"Upload files": "",
"Upload Progress": "",
"URL Mode": "",
"Use '#' in the prompt input to load and select your documents.": "",
"Use Gravatar": "",
"Use Initials": "",
"user": "",
"User Permissions": "",
"Users": "",
"Utilize": "",
"Valid time units:": "",
"variable": "",
"variable to have them replaced with clipboard content.": "",
"Version": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "",
"Webhook URL": "",
"WebUI Add-ons": "",
"WebUI Settings": "",
"WebUI will make requests to": "",
"Whats New in": "",
"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "",
"Whisper (Local)": "",
"Write a prompt suggestion (e.g. Who are you?)": "",
"Write a summary in 50 words that summarizes [topic or keyword].": "",
"You": "",
"You're a helpful assistant.": "",
"You're now logged in.": ""
} }

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "", "(e.g. `sh webui.sh --api`)": "",
"(latest)": "", "(latest)": "",
"{{modelName}} is thinking...": "", "{{modelName}} is thinking...": "",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "", "{{webUIName}} Backend Required": "",
"a user": "", "a user": "",
"About": "", "About": "",
"Account": "", "Account": "",
"Action": "", "Accurate information": "",
"Add a model": "", "Add a model": "",
"Add a model tag name": "", "Add a model tag name": "",
"Add a short description about what this modelfile does": "", "Add a short description about what this modelfile does": "",
@ -17,7 +18,8 @@
"Add Docs": "", "Add Docs": "",
"Add Files": "", "Add Files": "",
"Add message": "", "Add message": "",
"add tags": "", "Add Model": "",
"Add Tags": "",
"Adjusting these settings will apply changes universally to all users.": "", "Adjusting these settings will apply changes universally to all users.": "",
"admin": "", "admin": "",
"Admin Panel": "", "Admin Panel": "",
@ -33,9 +35,14 @@
"and": "", "and": "",
"API Base URL": "", "API Base URL": "",
"API Key": "", "API Key": "",
"API Key created.": "",
"API keys": "",
"API RPM": "", "API RPM": "",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "", "are allowed - Activate this command by typing": "",
"Are you sure?": "", "Are you sure?": "",
"Attention to detail": "",
"Audio": "", "Audio": "",
"Auto-playback response": "", "Auto-playback response": "",
"Auto-send input after 3 sec.": "", "Auto-send input after 3 sec.": "",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "", "AUTOMATIC1111 Base URL is required.": "",
"available!": "", "available!": "",
"Back": "", "Back": "",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "", "Builder Mode": "",
"Cancel": "", "Cancel": "",
"Categories": "", "Categories": "",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "", "Click on the user role button to change a user's role.": "",
"Close": "", "Close": "",
"Collection": "", "Collection": "",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "", "Command": "",
"Confirm Password": "", "Confirm Password": "",
"Connections": "", "Connections": "",
"Content": "", "Content": "",
"Context Length": "", "Context Length": "",
"Continue Response": "",
"Conversation Mode": "", "Conversation Mode": "",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "", "Copy last code block": "",
"Copy last response": "", "Copy last response": "",
"Copy Link": "",
"Copying to clipboard was successful!": "", "Copying to clipboard was successful!": "",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "",
"Create a modelfile": "", "Create a modelfile": "",
"Create Account": "", "Create Account": "",
"Created at": "", "Created at": "",
"Created by": "", "Created At": "",
"Current Model": "", "Current Model": "",
"Current Password": "", "Current Password": "",
"Custom": "", "Custom": "",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "", "DD/MM/YYYY HH:mm": "",
"Default": "", "Default": "",
"Default (Automatic1111)": "", "Default (Automatic1111)": "",
"Default (SentenceTransformers)": "",
"Default (Web API)": "", "Default (Web API)": "",
"Default model updated": "", "Default model updated": "",
"Default Prompt Suggestions": "", "Default Prompt Suggestions": "",
"Default User Role": "", "Default User Role": "",
"delete": "", "delete": "",
"Delete": "",
"Delete a model": "", "Delete a model": "",
"Delete chat": "", "Delete chat": "",
"Delete Chat": "",
"Delete Chats": "", "Delete Chats": "",
"Delete User": "",
"Deleted {{deleteModelTag}}": "", "Deleted {{deleteModelTag}}": "",
"Deleted {tagName}": "", "Deleted {{tagName}}": "",
"Description": "", "Description": "",
"Notifications": "", "Didn't fully follow instructions": "",
"Disabled": "", "Disabled": "",
"Discover a modelfile": "", "Discover a modelfile": "",
"Discover a prompt": "", "Discover a prompt": "",
@ -113,19 +133,21 @@
"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?": "",
"Download as a File": "", "Don't like the style": "",
"Download": "",
"Download Database": "", "Download Database": "",
"Drop any files here to add to the conversation": "", "Drop any files here to add to the conversation": "",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
"Edit": "",
"Edit Doc": "", "Edit Doc": "",
"Edit User": "", "Edit User": "",
"Email": "", "Email": "",
"Embedding model: {{embedding_model}}": "", "Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "", "Enable Chat History": "",
"Enable New Sign Ups": "", "Enable New Sign Ups": "",
"Enabled": "", "Enabled": "",
"Enter {{role}} message here": "", "Enter {{role}} message here": "",
"Enter API Key": "",
"Enter Chunk Overlap": "", "Enter Chunk Overlap": "",
"Enter Chunk Size": "", "Enter Chunk Size": "",
"Enter Image Size (e.g. 512x512)": "", "Enter Image Size (e.g. 512x512)": "",
@ -136,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "", "Enter Max Tokens (litellm_params.max_tokens)": "",
"Enter model tag (e.g. {{modelTag}})": "", "Enter model tag (e.g. {{modelTag}})": "",
"Enter Number of Steps (e.g. 50)": "", "Enter Number of Steps (e.g. 50)": "",
"Enter Relevance Threshold": "",
"Enter stop sequence": "", "Enter stop sequence": "",
"Enter Top K": "", "Enter Top K": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "", "Enter URL (e.g. http://127.0.0.1:7860/)": "",
@ -148,21 +171,28 @@
"Export Documents Mapping": "", "Export Documents Mapping": "",
"Export Modelfiles": "", "Export Modelfiles": "",
"Export Prompts": "", "Export Prompts": "",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "", "Failed to read clipboard contents": "",
"Feel free to add specific details": "",
"File Mode": "", "File Mode": "",
"File not found.": "", "File not found.": "",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "", "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "", "Fluidly stream large external response chunks": "",
"Focus chat input": "", "Focus chat input": "",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "", "Format your variables using square brackets like this:": "",
"From (Base Model)": "", "From (Base Model)": "",
"Full Screen Mode": "", "Full Screen Mode": "",
"General": "", "General": "",
"General Settings": "", "General Settings": "",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "", "Hello, {{name}}": "",
"Hide": "", "Hide": "",
"Hide Additional Params": "", "Hide Additional Params": "",
"How can I help you today?": "", "How can I help you today?": "",
"Hybrid Search": "",
"Image Generation (Experimental)": "", "Image Generation (Experimental)": "",
"Image Generation Engine": "", "Image Generation Engine": "",
"Image Settings": "", "Image Settings": "",
@ -180,6 +210,7 @@
"Keep Alive": "", "Keep Alive": "",
"Keyboard shortcuts": "", "Keyboard shortcuts": "",
"Language": "", "Language": "",
"Last Active": "",
"Light": "", "Light": "",
"OLED Dark": "", "OLED Dark": "",
"Listening...": "", "Listening...": "",
@ -195,10 +226,9 @@
"Mirostat Eta": "", "Mirostat Eta": "",
"Mirostat Tau": "", "Mirostat Tau": "",
"MMMM DD, YYYY": "", "MMMM DD, YYYY": "",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "", "Model '{{modelName}}' has been successfully downloaded.": "",
"Model '{{modelTag}}' is already in queue for downloading.": "", "Model '{{modelTag}}' is already in queue for downloading.": "",
"Model {{embedding_model}} update complete!": "",
"Model {{embedding_model}} update failed or not required!": "",
"Model {{modelId}} not found": "", "Model {{modelId}} not found": "",
"Model {{modelName}} already exists.": "", "Model {{modelName}} already exists.": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
@ -212,6 +242,7 @@
"Modelfile Content": "", "Modelfile Content": "",
"Modelfiles": "", "Modelfiles": "",
"Models": "", "Models": "",
"More": "",
"My Documents": "", "My Documents": "",
"My Modelfiles": "", "My Modelfiles": "",
"My Prompts": "", "My Prompts": "",
@ -220,10 +251,14 @@
"Name your modelfile": "", "Name your modelfile": "",
"New Chat": "", "New Chat": "",
"New Password": "", "New Password": "",
"Not factually correct": "",
"Not sure what to add?": "", "Not sure what to add?": "",
"Not sure what to write? Switch to": "", "Not sure what to write? Switch to": "",
"Notifications": "",
"Off": "", "Off": "",
"Okay, Let's Go!": "", "Okay, Let's Go!": "",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "", "Ollama Base URL": "",
"Ollama Version": "", "Ollama Version": "",
"On": "", "On": "",
@ -236,15 +271,20 @@
"Open AI": "", "Open AI": "",
"Open AI (Dall-E)": "", "Open AI (Dall-E)": "",
"Open new chat": "", "Open new chat": "",
"OpenAI": "",
"OpenAI API": "", "OpenAI API": "",
"OpenAI API Key": "", "OpenAI API Config": "",
"OpenAI API Key is required.": "", "OpenAI API Key is required.": "",
"OpenAI URL/Key required.": "",
"or": "", "or": "",
"Other": "",
"Parameters": "", "Parameters": "",
"Password": "", "Password": "",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "", "PDF Extract Images (OCR)": "",
"pending": "", "pending": "",
"Permission denied when accessing microphone: {{error}}": "", "Permission denied when accessing microphone: {{error}}": "",
"Plain text (.txt)": "",
"Playground": "", "Playground": "",
"Archived Chats": "", "Archived Chats": "",
"Profile": "", "Profile": "",
@ -256,12 +296,18 @@
"Query Params": "", "Query Params": "",
"RAG Template": "", "RAG Template": "",
"Raw Format": "", "Raw Format": "",
"Read Aloud": "",
"Record voice": "", "Record voice": "",
"Redirecting you to OpenWebUI Community": "", "Redirecting you to OpenWebUI Community": "",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "", "Release Notes": "",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "", "Repeat Last N": "",
"Repeat Penalty": "", "Repeat Penalty": "",
"Request Mode": "", "Request Mode": "",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "", "Reset Vector Storage": "",
"Response AutoCopy to Clipboard": "", "Response AutoCopy to Clipboard": "",
"Role": "", "Role": "",
@ -276,6 +322,7 @@
"Scan complete!": "", "Scan complete!": "",
"Scan for documents from {{path}}": "", "Scan for documents from {{path}}": "",
"Search": "", "Search": "",
"Search a model": "",
"Search Documents": "", "Search Documents": "",
"Search Prompts": "", "Search Prompts": "",
"See readme.md for instructions": "", "See readme.md for instructions": "",
@ -295,37 +342,46 @@
"Set Voice": "", "Set Voice": "",
"Settings": "", "Settings": "",
"Settings saved successfully!": "", "Settings saved successfully!": "",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "", "Share to OpenWebUI Community": "",
"short-summary": "", "short-summary": "",
"Show": "", "Show": "",
"Show Additional Params": "", "Show Additional Params": "",
"Show shortcuts": "", "Show shortcuts": "",
"Showcased creativity": "",
"sidebar": "", "sidebar": "",
"Sign in": "", "Sign in": "",
"Sign Out": "", "Sign Out": "",
"Sign up": "", "Sign up": "",
"Signing in": "",
"Speech recognition error: {{error}}": "", "Speech recognition error: {{error}}": "",
"Speech-to-Text Engine": "", "Speech-to-Text Engine": "",
"SpeechRecognition API is not supported in this browser.": "", "SpeechRecognition API is not supported in this browser.": "",
"Stop Sequence": "", "Stop Sequence": "",
"STT Settings": "", "STT Settings": "",
"Submit": "", "Submit": "",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "", "Success": "",
"Successfully updated.": "", "Successfully updated.": "",
"Sync All": "", "Sync All": "",
"System": "", "System": "",
"System Prompt": "", "System Prompt": "",
"Tags": "", "Tags": "",
"Tell us more:": "",
"Temperature": "", "Temperature": "",
"Template": "", "Template": "",
"Text Completion": "", "Text Completion": "",
"Text-to-Speech Engine": "", "Text-to-Speech Engine": "",
"Tfs Z": "", "Tfs Z": "",
"Thanks for your feedback!": "",
"Theme": "", "Theme": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "",
"This setting does not sync across browsers or devices.": "", "This setting does not sync across browsers or devices.": "",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "",
"Title": "", "Title": "",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "", "Title Auto-Generation": "",
"Title Generation Prompt": "", "Title Generation Prompt": "",
"to": "", "to": "",
@ -340,11 +396,13 @@
"TTS Settings": "", "TTS Settings": "",
"Type Hugging Face Resolve (Download) URL": "", "Type Hugging Face Resolve (Download) URL": "",
"Uh-oh! There was an issue connecting to {{provider}}.": "", "Uh-oh! There was an issue connecting to {{provider}}.": "",
"Understand that updating or changing your embedding model requires reset of the vector database and re-import of all documents. You have been warned!": "",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "",
"Update": "", "Update and Copy Link": "",
"Update embedding model {{embedding_model}}": "", "Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "", "Update password": "",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "", "Upload a GGUF model": "",
"Upload files": "", "Upload files": "",
"Upload Progress": "", "Upload Progress": "",
@ -360,7 +418,9 @@
"variable": "", "variable": "",
"variable to have them replaced with clipboard content.": "", "variable to have them replaced with clipboard content.": "",
"Version": "", "Version": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "", "Web": "",
"Webhook URL": "",
"WebUI Add-ons": "", "WebUI Add-ons": "",
"WebUI Settings": "", "WebUI Settings": "",
"WebUI will make requests to": "", "WebUI will make requests to": "",

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(p.ej. `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(p.ej. `sh webui.sh --api`)",
"(latest)": "(latest)", "(latest)": "(latest)",
"{{modelName}} is thinking...": "{{modelName}} está pensando...", "{{modelName}} is thinking...": "{{modelName}} está pensando...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}} Servidor Requerido", "{{webUIName}} Backend Required": "{{webUIName}} Servidor Requerido",
"a user": "un usuario", "a user": "un usuario",
"About": "Sobre nosotros", "About": "Sobre nosotros",
"Account": "Cuenta", "Account": "Cuenta",
"Action": "Acción", "Accurate information": "",
"Add a model": "Agregar un modelo", "Add a model": "Agregar un modelo",
"Add a model tag name": "Agregar un nombre de etiqueta de modelo", "Add a model tag name": "Agregar un nombre de etiqueta de modelo",
"Add a short description about what this modelfile does": "Agregue una descripción corta de lo que este modelfile hace", "Add a short description about what this modelfile does": "Agregue una descripción corta de lo que este modelfile hace",
@ -17,7 +18,8 @@
"Add Docs": "Agregar Documentos", "Add Docs": "Agregar Documentos",
"Add Files": "Agregar Archivos", "Add Files": "Agregar Archivos",
"Add message": "Agregar Prompt", "Add message": "Agregar Prompt",
"add tags": "agregar etiquetas", "Add Model": "",
"Add Tags": "agregar etiquetas",
"Adjusting these settings will apply changes universally to all users.": "Ajustar estas opciones aplicará los cambios universalmente a todos los usuarios.", "Adjusting these settings will apply changes universally to all users.": "Ajustar estas opciones aplicará los cambios universalmente a todos los usuarios.",
"admin": "admin", "admin": "admin",
"Admin Panel": "Panel de Administración", "Admin Panel": "Panel de Administración",
@ -33,7 +35,11 @@
"and": "y", "and": "y",
"API Base URL": "Dirección URL de la API", "API Base URL": "Dirección URL de la API",
"API Key": "Clave de la API ", "API Key": "Clave de la API ",
"API Key created.": "",
"API keys": "",
"API RPM": "RPM de la API", "API RPM": "RPM de la API",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "están permitidos - Active este comando escribiendo", "are allowed - Activate this command by typing": "están permitidos - Active este comando escribiendo",
"Are you sure?": "¿Está seguro?", "Are you sure?": "¿Está seguro?",
"Audio": "Audio", "Audio": "Audio",
@ -66,12 +72,17 @@
"Click on the user role button to change a user's role.": "Presiona en el botón de roles del usuario para cambiar su rol.", "Click on the user role button to change a user's role.": "Presiona en el botón de roles del usuario para cambiar su rol.",
"Close": "Cerrar", "Close": "Cerrar",
"Collection": "Colección", "Collection": "Colección",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "Comando", "Command": "Comando",
"Confirm Password": "Confirmar Contraseña", "Confirm Password": "Confirmar Contraseña",
"Connections": "Conexiones", "Connections": "Conexiones",
"Content": "Contenido", "Content": "Contenido",
"Context Length": "Longitud del contexto", "Context Length": "Longitud del contexto",
"Conversation Mode": "Modo de Conversación", "Conversation Mode": "Modo de Conversación",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "Copia el último bloque de código", "Copy last code block": "Copia el último bloque de código",
"Copy last response": "Copia la última respuesta", "Copy last response": "Copia la última respuesta",
"Copying to clipboard was successful!": "¡La copia al portapapeles se ha realizado correctamente!", "Copying to clipboard was successful!": "¡La copia al portapapeles se ha realizado correctamente!",
@ -79,7 +90,7 @@
"Create a modelfile": "Crea un modelfile", "Create a modelfile": "Crea un modelfile",
"Create Account": "Crear una cuenta", "Create Account": "Crear una cuenta",
"Created at": "Creado en", "Created at": "Creado en",
"Created by": "Creado por", "Created At": "",
"Current Model": "Modelo Actual", "Current Model": "Modelo Actual",
"Current Password": "Contraseña Actual", "Current Password": "Contraseña Actual",
"Custom": "Personalizado", "Custom": "Personalizado",
@ -89,18 +100,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "Por defecto", "Default": "Por defecto",
"Default (Automatic1111)": "Por defecto (Automatic1111)", "Default (Automatic1111)": "Por defecto (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "Por defecto (Web API)", "Default (Web API)": "Por defecto (Web API)",
"Default model updated": "El modelo por defecto ha sido actualizado", "Default model updated": "El modelo por defecto ha sido actualizado",
"Default Prompt Suggestions": "Sugerencias de mensajes por defecto", "Default Prompt Suggestions": "Sugerencias de mensajes por defecto",
"Default User Role": "Rol por defecto para usuarios", "Default User Role": "Rol por defecto para usuarios",
"delete": "borrar", "delete": "borrar",
"Delete": "",
"Delete a model": "Borra un modelo", "Delete a model": "Borra un modelo",
"Delete chat": "Borrar chat", "Delete chat": "Borrar chat",
"Delete Chat": "",
"Delete Chats": "Borrar Chats", "Delete Chats": "Borrar Chats",
"Delete User": "",
"Deleted {{deleteModelTag}}": "Se borró {{deleteModelTag}}", "Deleted {{deleteModelTag}}": "Se borró {{deleteModelTag}}",
"Deleted {tagName}": "Se borró {tagName}", "Deleted {{tagName}}": "",
"Description": "Descripción", "Description": "Descripción",
"Notifications": "Notificaciones", "Didn't fully follow instructions": "",
"Disabled": "Desactivado", "Disabled": "Desactivado",
"Discover a modelfile": "Descubre un modelfile", "Discover a modelfile": "Descubre un modelfile",
"Discover a prompt": "Descubre un Prompt", "Discover a prompt": "Descubre un Prompt",
@ -117,10 +132,12 @@
"Download Database": "Descarga la Base de Datos", "Download Database": "Descarga la Base de Datos",
"Drop any files here to add to the conversation": "Suelta cualquier archivo aquí para agregarlo a la conversación", "Drop any files here to add to the conversation": "Suelta cualquier archivo aquí para agregarlo a la conversación",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p.ej. '30s','10m'. Unidades válidas de tiempo son 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p.ej. '30s','10m'. Unidades válidas de tiempo son 's', 'm', 'h'.",
"Edit": "",
"Edit Doc": "Editar Documento", "Edit Doc": "Editar Documento",
"Edit User": "Editar Usuario", "Edit User": "Editar Usuario",
"Email": "Email", "Email": "Email",
"Embedding model: {{embedding_model}}": "Modelo de Embedding: {{embedding_model}}", "Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "Activa el Historial de Chat", "Enable Chat History": "Activa el Historial de Chat",
"Enable New Sign Ups": "Habilitar Nuevos Registros", "Enable New Sign Ups": "Habilitar Nuevos Registros",
"Enabled": "Activado", "Enabled": "Activado",
@ -148,7 +165,9 @@
"Export Documents Mapping": "Exportar el mapeo de documentos", "Export Documents Mapping": "Exportar el mapeo de documentos",
"Export Modelfiles": "Exportar Modelfiles", "Export Modelfiles": "Exportar Modelfiles",
"Export Prompts": "Exportar Prompts", "Export Prompts": "Exportar Prompts",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "No se pudo leer el contenido del portapapeles", "Failed to read clipboard contents": "No se pudo leer el contenido del portapapeles",
"Feel free to add specific details": "",
"File Mode": "Modo de archivo", "File Mode": "Modo de archivo",
"File not found.": "Archivo no encontrado.", "File not found.": "Archivo no encontrado.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Se detectó suplantación de huellas: No se pueden usar las iniciales como avatar. Por defecto se utiliza la imagen de perfil predeterminada.", "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Se detectó suplantación de huellas: No se pueden usar las iniciales como avatar. Por defecto se utiliza la imagen de perfil predeterminada.",
@ -159,10 +178,14 @@
"Full Screen Mode": "Modo de Pantalla Completa", "Full Screen Mode": "Modo de Pantalla Completa",
"General": "General", "General": "General",
"General Settings": "Opciones Generales", "General Settings": "Opciones Generales",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "Hola, {{name}}", "Hello, {{name}}": "Hola, {{name}}",
"Hide": "Esconder", "Hide": "Esconder",
"Hide Additional Params": "Esconde los Parámetros Adicionales", "Hide Additional Params": "Esconde los Parámetros Adicionales",
"How can I help you today?": "¿Cómo puedo ayudarte hoy?", "How can I help you today?": "¿Cómo puedo ayudarte hoy?",
"Hybrid Search": "",
"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",
@ -180,6 +203,7 @@
"Keep Alive": "Mantener Vivo", "Keep Alive": "Mantener Vivo",
"Keyboard shortcuts": "Atajos de teclado", "Keyboard shortcuts": "Atajos de teclado",
"Language": "Lenguaje", "Language": "Lenguaje",
"Last Active": "",
"Light": "Claro", "Light": "Claro",
"OLED Dark": "OLED oscuro", "OLED Dark": "OLED oscuro",
"Listening...": "Escuchando...", "Listening...": "Escuchando...",
@ -195,6 +219,7 @@
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "MMMM DD, YYYY": "MMMM DD, YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "El modelo '{{modelName}}' se ha descargado correctamente.", "Model '{{modelName}}' has been successfully downloaded.": "El modelo '{{modelName}}' se ha descargado correctamente.",
"Model '{{modelTag}}' is already in queue for downloading.": "El modelo '{{modelTag}}' ya está en cola para descargar.", "Model '{{modelTag}}' is already in queue for downloading.": "El modelo '{{modelTag}}' ya está en cola para descargar.",
"Model {{embedding_model}} update complete!": "¡La actualización del modelo {{embedding_model}} fue completada!", "Model {{embedding_model}} update complete!": "¡La actualización del modelo {{embedding_model}} fue completada!",
@ -212,6 +237,7 @@
"Modelfile Content": "Contenido del Modelfile", "Modelfile Content": "Contenido del Modelfile",
"Modelfiles": "Modelfiles", "Modelfiles": "Modelfiles",
"Models": "Modelos", "Models": "Modelos",
"More": "",
"My Documents": "Mis Documentos", "My Documents": "Mis Documentos",
"My Modelfiles": "Mis Modelfiles", "My Modelfiles": "Mis Modelfiles",
"My Prompts": "Mis Prompts", "My Prompts": "Mis Prompts",
@ -236,12 +262,14 @@
"Open AI": "Abrir AI", "Open AI": "Abrir AI",
"Open AI (Dall-E)": "Abrir AI (Dall-E)", "Open AI (Dall-E)": "Abrir AI (Dall-E)",
"Open new chat": "Abrir nuevo chat", "Open new chat": "Abrir nuevo chat",
"OpenAI": "",
"OpenAI API": "OpenAI API", "OpenAI API": "OpenAI API",
"OpenAI API Key": "Clave de la API de OpenAI", "OpenAI API Key": "Clave de la API de OpenAI",
"OpenAI API Key is required.": "La Clave de la API de OpenAI es requerida.", "OpenAI API Key is required.": "La Clave de la API de OpenAI es requerida.",
"or": "o", "or": "o",
"Parameters": "Parámetros", "Parameters": "Parámetros",
"Password": "Contraseña", "Password": "Contraseña",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "Extraer imágenes de PDF (OCR)", "PDF Extract Images (OCR)": "Extraer imágenes de PDF (OCR)",
"pending": "pendiente", "pending": "pendiente",
"Permission denied when accessing microphone: {{error}}": "Permiso denegado al acceder al micrófono: {{error}}", "Permission denied when accessing microphone: {{error}}": "Permiso denegado al acceder al micrófono: {{error}}",
@ -258,10 +286,15 @@
"Raw Format": "Formato sin procesar", "Raw Format": "Formato sin procesar",
"Record voice": "Grabar voz", "Record voice": "Grabar voz",
"Redirecting you to OpenWebUI Community": "Redireccionándote a la comunidad OpenWebUI", "Redirecting you to OpenWebUI Community": "Redireccionándote a la comunidad OpenWebUI",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "Notas de la versión", "Release Notes": "Notas de la versión",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "Repetir las últimas N", "Repeat Last N": "Repetir las últimas N",
"Repeat Penalty": "Penalidad de repetición", "Repeat Penalty": "Penalidad de repetición",
"Request Mode": "Modo de petición", "Request Mode": "Modo de petición",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Restablecer almacenamiento vectorial", "Reset Vector Storage": "Restablecer almacenamiento vectorial",
"Response AutoCopy to Clipboard": "Copiar respuesta automáticamente al portapapeles", "Response AutoCopy to Clipboard": "Copiar respuesta automáticamente al portapapeles",
"Role": "Rol", "Role": "Rol",
@ -276,6 +309,7 @@
"Scan complete!": "¡Escaneo completado!", "Scan complete!": "¡Escaneo completado!",
"Scan for documents from {{path}}": "Escanear en busca de documentos desde {{path}}", "Scan for documents from {{path}}": "Escanear en busca de documentos desde {{path}}",
"Search": "Buscar", "Search": "Buscar",
"Search a model": "",
"Search Documents": "Buscar Documentos", "Search Documents": "Buscar Documentos",
"Search Prompts": "Buscar Prompts", "Search Prompts": "Buscar Prompts",
"See readme.md for instructions": "Vea el readme.md para instrucciones", "See readme.md for instructions": "Vea el readme.md para instrucciones",
@ -300,6 +334,7 @@
"Show": "Mostrar", "Show": "Mostrar",
"Show Additional Params": "Mostrar parámetros adicionales", "Show Additional Params": "Mostrar parámetros adicionales",
"Show shortcuts": "Mostrar atajos", "Show shortcuts": "Mostrar atajos",
"Showcased creativity": "",
"sidebar": "barra lateral", "sidebar": "barra lateral",
"Sign in": "Iniciar sesión", "Sign in": "Iniciar sesión",
"Sign Out": "Cerrar sesión", "Sign Out": "Cerrar sesión",
@ -310,22 +345,26 @@
"Stop Sequence": "Detener secuencia", "Stop Sequence": "Detener secuencia",
"STT Settings": "Configuraciones de STT", "STT Settings": "Configuraciones de STT",
"Submit": "Enviar", "Submit": "Enviar",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "Éxito", "Success": "Éxito",
"Successfully updated.": "Actualizado exitosamente.", "Successfully updated.": "Actualizado exitosamente.",
"Sync All": "Sincronizar todo", "Sync All": "Sincronizar todo",
"System": "Sistema", "System": "Sistema",
"System Prompt": "Prompt del sistema", "System Prompt": "Prompt del sistema",
"Tags": "Etiquetas", "Tags": "Etiquetas",
"Tell us more:": "",
"Temperature": "Temperatura", "Temperature": "Temperatura",
"Template": "Plantilla", "Template": "Plantilla",
"Text Completion": "Finalización de texto", "Text Completion": "Finalización de texto",
"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!": "",
"Theme": "Tema", "Theme": "Tema",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Esto garantiza que sus valiosas conversaciones se guarden de forma segura en su base de datos en el backend. ¡Gracias!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Esto garantiza que sus valiosas conversaciones se guarden de forma segura en su base de datos en el backend. ¡Gracias!",
"This setting does not sync across browsers or devices.": "Esta configuración no se sincroniza entre navegadores o dispositivos.", "This setting does not sync across browsers or devices.": "Esta configuración no se sincroniza entre navegadores o dispositivos.",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Consejo: Actualice múltiples variables consecutivamente presionando la tecla tab en la entrada del chat después de cada reemplazo.", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Consejo: Actualice múltiples variables consecutivamente presionando la tecla tab en la entrada del chat después de cada reemplazo.",
"Title": "Título", "Title": "Título",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "Generación automática de títulos", "Title Auto-Generation": "Generación automática de títulos",
"Title Generation Prompt": "Prompt de generación de título", "Title Generation Prompt": "Prompt de generación de título",
"to": "para", "to": "para",
@ -360,7 +399,9 @@
"variable": "variable", "variable": "variable",
"variable to have them replaced with clipboard content.": "variable para reemplazarlos con el contenido del portapapeles.", "variable to have them replaced with clipboard content.": "variable para reemplazarlos con el contenido del portapapeles.",
"Version": "Versión", "Version": "Versión",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web", "Web": "Web",
"Webhook URL": "",
"WebUI Add-ons": "WebUI Add-ons", "WebUI Add-ons": "WebUI Add-ons",
"WebUI Settings": "Configuración del WebUI", "WebUI Settings": "Configuración del WebUI",
"WebUI will make requests to": "WebUI realizará solicitudes a", "WebUI will make requests to": "WebUI realizará solicitudes a",

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(e.g. `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(e.g. `sh webui.sh --api`)",
"(latest)": "(آخرین)", "(latest)": "(آخرین)",
"{{modelName}} is thinking...": "{{modelName}} در حال فکر کردن است...", "{{modelName}} is thinking...": "{{modelName}} در حال فکر کردن است...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "بکند {{webUIName}} نیاز است.", "{{webUIName}} Backend Required": "بکند {{webUIName}} نیاز است.",
"a user": "یک کاربر", "a user": "یک کاربر",
"About": "درباره", "About": "درباره",
"Account": "حساب کاربری", "Account": "حساب کاربری",
"Action": "عمل", "Accurate information": "",
"Add a model": "اضافه کردن یک مدل", "Add a model": "اضافه کردن یک مدل",
"Add a model tag name": "اضافه کردن یک نام تگ برای مدل", "Add a model tag name": "اضافه کردن یک نام تگ برای مدل",
"Add a short description about what this modelfile does": "توضیح کوتاهی در مورد کاری که این فایل\u200cمدل انجام می دهد اضافه کنید", "Add a short description about what this modelfile does": "توضیح کوتاهی در مورد کاری که این فایل\u200cمدل انجام می دهد اضافه کنید",
@ -17,7 +18,8 @@
"Add Docs": "اضافه کردن اسناد", "Add Docs": "اضافه کردن اسناد",
"Add Files": "اضافه کردن فایل\u200cها", "Add Files": "اضافه کردن فایل\u200cها",
"Add message": "اضافه کردن پیغام", "Add message": "اضافه کردن پیغام",
"add tags": "اضافه کردن تگ\u200cها", "Add Model": "",
"Add Tags": "اضافه کردن تگ\u200cها",
"Adjusting these settings will apply changes universally to all users.": "با تنظیم این تنظیمات، تغییرات به طور کلی برای همه کاربران اعمال می شود.", "Adjusting these settings will apply changes universally to all users.": "با تنظیم این تنظیمات، تغییرات به طور کلی برای همه کاربران اعمال می شود.",
"admin": "مدیر", "admin": "مدیر",
"Admin Panel": "پنل مدیریت", "Admin Panel": "پنل مدیریت",
@ -33,9 +35,14 @@
"and": "و", "and": "و",
"API Base URL": "API Base URL", "API Base URL": "API Base URL",
"API Key": "API Key", "API Key": "API Key",
"API Key created.": "",
"API keys": "",
"API RPM": "API RPM", "API RPM": "API RPM",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "مجاز هستند - این دستور را با تایپ کردن این فعال کنید:", "are allowed - Activate this command by typing": "مجاز هستند - این دستور را با تایپ کردن این فعال کنید:",
"Are you sure?": "آیا مطمئن هستید؟", "Are you sure?": "آیا مطمئن هستید؟",
"Attention to detail": "",
"Audio": "صدا", "Audio": "صدا",
"Auto-playback response": "پخش خودکار پاسخ ", "Auto-playback response": "پخش خودکار پاسخ ",
"Auto-send input after 3 sec.": "به طور خودکار ورودی را پس از 3 ثانیه ارسال کن.", "Auto-send input after 3 sec.": "به طور خودکار ورودی را پس از 3 ثانیه ارسال کن.",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "به URL پایه AUTOMATIC1111 مورد نیاز است.", "AUTOMATIC1111 Base URL is required.": "به URL پایه AUTOMATIC1111 مورد نیاز است.",
"available!": "در دسترس!", "available!": "در دسترس!",
"Back": "بازگشت", "Back": "بازگشت",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "حالت سازنده", "Builder Mode": "حالت سازنده",
"Cancel": "لغو", "Cancel": "لغو",
"Categories": "دسته\u200cبندی\u200cها", "Categories": "دسته\u200cبندی\u200cها",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "برای تغییر نقش کاربر، روی دکمه نقش کاربر کلیک کنید.", "Click on the user role button to change a user's role.": "برای تغییر نقش کاربر، روی دکمه نقش کاربر کلیک کنید.",
"Close": "بسته", "Close": "بسته",
"Collection": "مجموعه", "Collection": "مجموعه",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "دستور", "Command": "دستور",
"Confirm Password": "تایید رمز عبور", "Confirm Password": "تایید رمز عبور",
"Connections": "ارتباطات", "Connections": "ارتباطات",
"Content": "محتوا", "Content": "محتوا",
"Context Length": "طول زمینه", "Context Length": "طول زمینه",
"Continue Response": "",
"Conversation Mode": "حالت مکالمه", "Conversation Mode": "حالت مکالمه",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "کپی آخرین بلوک کد", "Copy last code block": "کپی آخرین بلوک کد",
"Copy last response": "کپی آخرین پاسخ", "Copy last response": "کپی آخرین پاسخ",
"Copy Link": "",
"Copying to clipboard was successful!": "کپی کردن در کلیپ بورد با موفقیت انجام شد!", "Copying to clipboard was successful!": "کپی کردن در کلیپ بورد با موفقیت انجام شد!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "یک عبارت مختصر و ۳ تا ۵ کلمه ای را به عنوان سرفصل برای پرس و جو زیر ایجاد کنید، به شدت محدودیت ۳-۵ کلمه را رعایت کنید و از استفاده از کلمه 'عنوان' خودداری کنید:", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "یک عبارت مختصر و ۳ تا ۵ کلمه ای را به عنوان سرفصل برای پرس و جو زیر ایجاد کنید، به شدت محدودیت ۳-۵ کلمه را رعایت کنید و از استفاده از کلمه 'عنوان' خودداری کنید:",
"Create a modelfile": "ایجاد یک فایل مدل", "Create a modelfile": "ایجاد یک فایل مدل",
"Create Account": "ساخت حساب کاربری", "Create Account": "ساخت حساب کاربری",
"Created at": "ایجاد شده در", "Created at": "ایجاد شده در",
"Created by": "ایجاد شده توسط", "Created At": "",
"Current Model": "مدل فعلی", "Current Model": "مدل فعلی",
"Current Password": "رمز عبور فعلی", "Current Password": "رمز عبور فعلی",
"Custom": "دلخواه", "Custom": "دلخواه",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "پیشفرض", "Default": "پیشفرض",
"Default (Automatic1111)": "پیشفرض (Automatic1111)", "Default (Automatic1111)": "پیشفرض (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "پیشفرض (Web API)", "Default (Web API)": "پیشفرض (Web API)",
"Default model updated": "مدل پیشفرض به\u200cروزرسانی شد", "Default model updated": "مدل پیشفرض به\u200cروزرسانی شد",
"Default Prompt Suggestions": "پیشنهادات پرامپت پیش فرض", "Default Prompt Suggestions": "پیشنهادات پرامپت پیش فرض",
"Default User Role": "نقش کاربر پیش فرض", "Default User Role": "نقش کاربر پیش فرض",
"delete": "حذف", "delete": "حذف",
"Delete": "",
"Delete a model": "حذف یک مدل", "Delete a model": "حذف یک مدل",
"Delete chat": "حذف گپ", "Delete chat": "حذف گپ",
"Delete Chat": "",
"Delete Chats": "حذف گپ\u200cها", "Delete Chats": "حذف گپ\u200cها",
"Delete User": "",
"Deleted {{deleteModelTag}}": "{{deleteModelTag}} پاک شد", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} پاک شد",
"Deleted {tagName}": "{tagName} حذف شد", "Deleted {{tagName}}": "",
"Description": "توضیحات", "Description": "توضیحات",
"Notifications": "اعلان", "Didn't fully follow instructions": "",
"Disabled": "غیرفعال", "Disabled": "غیرفعال",
"Discover a modelfile": "فایل مدل را کشف کنید", "Discover a modelfile": "فایل مدل را کشف کنید",
"Discover a prompt": "یک اعلان را کشف کنید", "Discover a prompt": "یک اعلان را کشف کنید",
@ -113,18 +133,21 @@
"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?": "حساب کاربری ندارید؟",
"Download as a File": "دانلود به صورت فایل", "Don't like the style": "",
"Download": "",
"Download Database": "دانلود پایگاه داده", "Download Database": "دانلود پایگاه داده",
"Drop any files here to add to the conversation": "هر فایلی را اینجا رها کنید تا به مکالمه اضافه شود", "Drop any files here to add to the conversation": "هر فایلی را اینجا رها کنید تا به مکالمه اضافه شود",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "به طور مثال '30s','10m'. واحد\u200cهای زمانی معتبر 's', 'm', 'h' هستند.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "به طور مثال '30s','10m'. واحد\u200cهای زمانی معتبر 's', 'm', 'h' هستند.",
"Edit": "",
"Edit Doc": "ویرایش سند", "Edit Doc": "ویرایش سند",
"Edit User": "ویرایش کاربر", "Edit User": "ویرایش کاربر",
"Email": "ایمیل", "Email": "ایمیل",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "تاریخچه چت را فعال کنید", "Enable Chat History": "تاریخچه چت را فعال کنید",
"Enable New Sign Ups": "فعال کردن ثبت نام\u200cهای جدید", "Enable New Sign Ups": "فعال کردن ثبت نام\u200cهای جدید",
"Enabled": "فعال", "Enabled": "فعال",
"Enter {{role}} message here": "پیام {{role}} را اینجا وارد کنید", "Enter {{role}} message here": "پیام {{role}} را اینجا وارد کنید",
"Enter API Key": "کلید API را وارد کنید",
"Enter Chunk Overlap": "مقدار Chunk Overlap را وارد کنید", "Enter Chunk Overlap": "مقدار Chunk Overlap را وارد کنید",
"Enter Chunk Size": "مقدار Chunk Size را وارد کنید", "Enter Chunk Size": "مقدار Chunk Size را وارد کنید",
"Enter Image Size (e.g. 512x512)": "اندازه تصویر را وارد کنید (مثال: 512x512)", "Enter Image Size (e.g. 512x512)": "اندازه تصویر را وارد کنید (مثال: 512x512)",
@ -135,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "حداکثر تعداد توکن را وارد کنید (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "حداکثر تعداد توکن را وارد کنید (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "تگ مدل را وارد کنید (مثلا {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "تگ مدل را وارد کنید (مثلا {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "تعداد گام ها را وارد کنید (مثال: 50)", "Enter Number of Steps (e.g. 50)": "تعداد گام ها را وارد کنید (مثال: 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "توالی توقف را وارد کنید", "Enter stop sequence": "توالی توقف را وارد کنید",
"Enter Top K": "مقدار Top K را وارد کنید", "Enter Top K": "مقدار Top K را وارد کنید",
"Enter URL (e.g. http://127.0.0.1:7860/)": "مقدار URL را وارد کنید (مثال http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "مقدار URL را وارد کنید (مثال http://127.0.0.1:7860/)",
@ -147,20 +171,29 @@
"Export Documents Mapping": "اکسپورت از نگاشت اسناد", "Export Documents Mapping": "اکسپورت از نگاشت اسناد",
"Export Modelfiles": "اکسپورت از فایل\u200cهای مدل", "Export Modelfiles": "اکسپورت از فایل\u200cهای مدل",
"Export Prompts": "اکسپورت از پرامپت\u200cها", "Export Prompts": "اکسپورت از پرامپت\u200cها",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "خواندن محتوای کلیپ بورد ناموفق بود", "Failed to read clipboard contents": "خواندن محتوای کلیپ بورد ناموفق بود",
"Feel free to add specific details": "",
"File Mode": "حالت فایل", "File Mode": "حالت فایل",
"File not found.": "فایل یافت نشد.", "File not found.": "فایل یافت نشد.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "",
"Focus chat input": "فوکوس کردن ورودی گپ", "Focus chat input": "فوکوس کردن ورودی گپ",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "متغیرهای خود را با استفاده از براکت مربع به شکل زیر قالب بندی کنید:", "Format your variables using square brackets like this:": "متغیرهای خود را با استفاده از براکت مربع به شکل زیر قالب بندی کنید:",
"From (Base Model)": "از (مدل پایه)", "From (Base Model)": "از (مدل پایه)",
"Fluidly stream large external response chunks": "تکه های پاسخ خارجی بزرگ را به صورت سیال پخش کنید", "Fluidly stream large external response chunks": "تکه های پاسخ خارجی بزرگ را به صورت سیال پخش کنید",
"Full Screen Mode": "حالت تمام صفحه", "Full Screen Mode": "حالت تمام صفحه",
"General": "عمومی", "General": "عمومی",
"General Settings": "تنظیمات عمومی", "General Settings": "تنظیمات عمومی",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "سلام، {{name}}", "Hello, {{name}}": "سلام، {{name}}",
"Hide": "پنهان", "Hide": "پنهان",
"Hide Additional Params": "پنهان کردن پارامترهای اضافه", "Hide Additional Params": "پنهان کردن پارامترهای اضافه",
"How can I help you today?": "امروز چطور می توانم کمک تان کنم؟", "How can I help you today?": "امروز چطور می توانم کمک تان کنم؟",
"Hybrid Search": "",
"Image Generation (Experimental)": "تولید تصویر (آزمایشی)", "Image Generation (Experimental)": "تولید تصویر (آزمایشی)",
"Image Generation Engine": "موتور تولید تصویر", "Image Generation Engine": "موتور تولید تصویر",
"Image Settings": "تنظیمات تصویر", "Image Settings": "تنظیمات تصویر",
@ -178,6 +211,7 @@
"Keep Alive": "Keep Alive", "Keep Alive": "Keep Alive",
"Keyboard shortcuts": "میانبرهای صفحه کلید", "Keyboard shortcuts": "میانبرهای صفحه کلید",
"Language": "زبان", "Language": "زبان",
"Last Active": "",
"Light": "روشن", "Light": "روشن",
"OLED Dark": "OLED تاریک", "OLED Dark": "OLED تاریک",
"Listening...": "در حال گوش دادن...", "Listening...": "در حال گوش دادن...",
@ -193,10 +227,12 @@
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "MMMM DD, YYYY": "MMMM DD, YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "مدل '{{modelName}}' با موفقیت دانلود شد.", "Model '{{modelName}}' has been successfully downloaded.": "مدل '{{modelName}}' با موفقیت دانلود شد.",
"Model '{{modelTag}}' is already in queue for downloading.": "مدل '{{modelTag}}' در حال حاضر در صف برای دانلود است.", "Model '{{modelTag}}' is already in queue for downloading.": "مدل '{{modelTag}}' در حال حاضر در صف برای دانلود است.",
"Model {{modelId}} not found": "مدل {{modelId}} یافت نشد", "Model {{modelId}} not found": "مدل {{modelId}} یافت نشد",
"Model {{modelName}} already exists.": "مدل {{modelName}} در حال حاضر وجود دارد.", "Model {{modelName}} already exists.": "مدل {{modelName}} در حال حاضر وجود دارد.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Name": "نام مدل", "Model Name": "نام مدل",
"Model not selected": "مدل انتخاب نشده", "Model not selected": "مدل انتخاب نشده",
"Model Tag Name": "نام تگ مدل", "Model Tag Name": "نام تگ مدل",
@ -207,6 +243,7 @@
"Modelfile Content": "محتویات فایل مدل", "Modelfile Content": "محتویات فایل مدل",
"Modelfiles": "فایل\u200cهای مدل", "Modelfiles": "فایل\u200cهای مدل",
"Models": "مدل\u200cها", "Models": "مدل\u200cها",
"More": "",
"My Documents": "اسناد من", "My Documents": "اسناد من",
"My Modelfiles": "فایل\u200cهای مدل من", "My Modelfiles": "فایل\u200cهای مدل من",
"My Prompts": "پرامپت\u200cهای من", "My Prompts": "پرامپت\u200cهای من",
@ -215,10 +252,14 @@
"Name your modelfile": "فایل مدل را نام\u200cگذاری کنید", "Name your modelfile": "فایل مدل را نام\u200cگذاری کنید",
"New Chat": "گپ جدید", "New Chat": "گپ جدید",
"New Password": "رمز عبور جدید", "New Password": "رمز عبور جدید",
"Not factually correct": "",
"Not sure what to add?": "مطمئن نیستید چه چیزی را اضافه کنید؟", "Not sure what to add?": "مطمئن نیستید چه چیزی را اضافه کنید؟",
"Not sure what to write? Switch to": "مطمئن نیستید چه بنویسید؟ تغییر به", "Not sure what to write? Switch to": "مطمئن نیستید چه بنویسید؟ تغییر به",
"Notifications": "اعلان",
"Off": "خاموش", "Off": "خاموش",
"Okay, Let's Go!": "باشه، بزن بریم!", "Okay, Let's Go!": "باشه، بزن بریم!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "URL پایه اولاما", "Ollama Base URL": "URL پایه اولاما",
"Ollama Version": "نسخه اولاما", "Ollama Version": "نسخه اولاما",
"On": "روشن", "On": "روشن",
@ -231,15 +272,20 @@
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "Open AI (Dall-E)", "Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "باز کردن گپ جدید", "Open new chat": "باز کردن گپ جدید",
"OpenAI": "",
"OpenAI API": "OpenAI API", "OpenAI API": "OpenAI API",
"OpenAI API Key": "کلید OpenAI API", "OpenAI API Config": "",
"OpenAI API Key is required.": "مقدار کلید OpenAI API مورد نیاز است.", "OpenAI API Key is required.": "مقدار کلید OpenAI API مورد نیاز است.",
"OpenAI URL/Key required.": "",
"or": "روشن", "or": "روشن",
"Other": "",
"Parameters": "پارامترها", "Parameters": "پارامترها",
"Password": "رمز عبور", "Password": "رمز عبور",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "استخراج تصاویر از PDF (OCR)", "PDF Extract Images (OCR)": "استخراج تصاویر از PDF (OCR)",
"pending": "در انتظار", "pending": "در انتظار",
"Permission denied when accessing microphone: {{error}}": "هنگام دسترسی به میکروفون، اجازه داده نشد: {{error}}", "Permission denied when accessing microphone: {{error}}": "هنگام دسترسی به میکروفون، اجازه داده نشد: {{error}}",
"Plain text (.txt)": "",
"Playground": "زمین بازی", "Playground": "زمین بازی",
"Archived Chats": "آرشیو تاریخچه چت", "Archived Chats": "آرشیو تاریخچه چت",
"Profile": "پروفایل", "Profile": "پروفایل",
@ -251,12 +297,18 @@
"Query Params": "پارامترهای پرس و جو", "Query Params": "پارامترهای پرس و جو",
"RAG Template": "RAG الگوی", "RAG Template": "RAG الگوی",
"Raw Format": "فرمت خام", "Raw Format": "فرمت خام",
"Read Aloud": "",
"Record voice": "ضبط صدا", "Record voice": "ضبط صدا",
"Redirecting you to OpenWebUI Community": "در حال هدایت به OpenWebUI Community", "Redirecting you to OpenWebUI Community": "در حال هدایت به OpenWebUI Community",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "یادداشت\u200cهای انتشار", "Release Notes": "یادداشت\u200cهای انتشار",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "Repeat Last N", "Repeat Last N": "Repeat Last N",
"Repeat Penalty": "Repeat Penalty", "Repeat Penalty": "Repeat Penalty",
"Request Mode": "حالت درخواست", "Request Mode": "حالت درخواست",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "بازنشانی ذخیره سازی برداری", "Reset Vector Storage": "بازنشانی ذخیره سازی برداری",
"Response AutoCopy to Clipboard": "کپی خودکار پاسخ به کلیپ بورد", "Response AutoCopy to Clipboard": "کپی خودکار پاسخ به کلیپ بورد",
"Role": "نقش", "Role": "نقش",
@ -271,6 +323,7 @@
"Scan complete!": "اسکن کامل شد!", "Scan complete!": "اسکن کامل شد!",
"Scan for documents from {{path}}": "اسکن اسناد از {{path}}", "Scan for documents from {{path}}": "اسکن اسناد از {{path}}",
"Search": "جستجو", "Search": "جستجو",
"Search a model": "",
"Search Documents": "جستجوی اسناد", "Search Documents": "جستجوی اسناد",
"Search Prompts": "جستجوی پرامپت\u200cها", "Search Prompts": "جستجوی پرامپت\u200cها",
"See readme.md for instructions": "برای مشاهده دستورالعمل\u200cها به readme.md مراجعه کنید", "See readme.md for instructions": "برای مشاهده دستورالعمل\u200cها به readme.md مراجعه کنید",
@ -290,37 +343,46 @@
"Set Voice": "تنظیم صدا", "Set Voice": "تنظیم صدا",
"Settings": "تنظیمات", "Settings": "تنظیمات",
"Settings saved successfully!": "تنظیمات با موفقیت ذخیره شد!", "Settings saved successfully!": "تنظیمات با موفقیت ذخیره شد!",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "اشتراک گذاری با OpenWebUI Community", "Share to OpenWebUI Community": "اشتراک گذاری با OpenWebUI Community",
"short-summary": "خلاصه کوتاه", "short-summary": "خلاصه کوتاه",
"Show": "نمایش", "Show": "نمایش",
"Show Additional Params": "نمایش پارامترهای اضافه", "Show Additional Params": "نمایش پارامترهای اضافه",
"Show shortcuts": "نمایش میانبرها", "Show shortcuts": "نمایش میانبرها",
"Showcased creativity": "",
"sidebar": "نوار کناری", "sidebar": "نوار کناری",
"Sign in": "ورود", "Sign in": "ورود",
"Sign Out": "خروج", "Sign Out": "خروج",
"Sign up": "ثبت نام", "Sign up": "ثبت نام",
"Signing in": "",
"Speech recognition error: {{error}}": "خطای تشخیص گفتار: {{error}}", "Speech recognition error: {{error}}": "خطای تشخیص گفتار: {{error}}",
"Speech-to-Text Engine": "موتور گفتار به متن", "Speech-to-Text Engine": "موتور گفتار به متن",
"SpeechRecognition API is not supported in this browser.": "API تشخیص گفتار در این مرورگر پشتیبانی نمی شود.", "SpeechRecognition API is not supported in this browser.": "API تشخیص گفتار در این مرورگر پشتیبانی نمی شود.",
"Stop Sequence": "توالی توقف", "Stop Sequence": "توالی توقف",
"STT Settings": "STT تنظیمات", "STT Settings": "STT تنظیمات",
"Submit": "ارسال", "Submit": "ارسال",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "موفقیت", "Success": "موفقیت",
"Successfully updated.": "با موفقیت به روز شد", "Successfully updated.": "با موفقیت به روز شد",
"Sync All": "همگام سازی همه", "Sync All": "همگام سازی همه",
"System": "سیستم", "System": "سیستم",
"System Prompt": "پرامپت سیستم", "System Prompt": "پرامپت سیستم",
"Tags": "تگ\u200cها", "Tags": "تگ\u200cها",
"Tell us more:": "",
"Temperature": "دما", "Temperature": "دما",
"Template": "الگو", "Template": "الگو",
"Text Completion": "تکمیل متن", "Text Completion": "تکمیل متن",
"Text-to-Speech Engine": "موتور تبدیل متن به گفتار", "Text-to-Speech Engine": "موتور تبدیل متن به گفتار",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "",
"Theme": "قالب", "Theme": "قالب",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "این تضمین می کند که مکالمات ارزشمند شما به طور ایمن در پایگاه داده بکند ذخیره می شود. تشکر!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "این تضمین می کند که مکالمات ارزشمند شما به طور ایمن در پایگاه داده بکند ذخیره می شود. تشکر!",
"This setting does not sync across browsers or devices.": "این تنظیم در مرورگرها یا دستگاه\u200cها همگام\u200cسازی نمی\u200cشود.", "This setting does not sync across browsers or devices.": "این تنظیم در مرورگرها یا دستگاه\u200cها همگام\u200cسازی نمی\u200cشود.",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "با فشردن کلید Tab در ورودی چت پس از هر بار تعویض، چندین متغیر را به صورت متوالی به روزرسانی کنید.", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "با فشردن کلید Tab در ورودی چت پس از هر بار تعویض، چندین متغیر را به صورت متوالی به روزرسانی کنید.",
"Title": "عنوان", "Title": "عنوان",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "تولید خودکار عنوان", "Title Auto-Generation": "تولید خودکار عنوان",
"Title Generation Prompt": "پرامپت تولید عنوان", "Title Generation Prompt": "پرامپت تولید عنوان",
"to": "به", "to": "به",
@ -336,13 +398,19 @@
"Type Hugging Face Resolve (Download) URL": "مقدار URL دانلود (Resolve) Hugging Face را وارد کنید", "Type Hugging Face Resolve (Download) URL": "مقدار URL دانلود (Resolve) Hugging Face را وارد کنید",
"Uh-oh! There was an issue connecting to {{provider}}.": "اوه اوه! مشکلی در اتصال به {{provider}} وجود داشت.", "Uh-oh! There was an issue connecting to {{provider}}.": "اوه اوه! مشکلی در اتصال به {{provider}} وجود داشت.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "نوع فایل '{{file_type}}' ناشناخته است، به عنوان یک فایل متنی ساده با آن برخورد می شود.", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "نوع فایل '{{file_type}}' ناشناخته است، به عنوان یک فایل متنی ساده با آن برخورد می شود.",
"Update and Copy Link": "",
"Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "به روزرسانی رمزعبور", "Update password": "به روزرسانی رمزعبور",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "آپلود یک مدل GGUF", "Upload a GGUF model": "آپلود یک مدل GGUF",
"Upload files": "بارگذاری فایل\u200cها", "Upload files": "بارگذاری فایل\u200cها",
"Upload Progress": "پیشرفت آپلود", "Upload Progress": "پیشرفت آپلود",
"URL Mode": "حالت URL", "URL Mode": "حالت URL",
"Use '#' in the prompt input to load and select your documents.": "در پرامپت از '#' برای لود و انتخاب اسناد خود استفاده کنید.", "Use '#' in the prompt input to load and select your documents.": "در پرامپت از '#' برای لود و انتخاب اسناد خود استفاده کنید.",
"Use Gravatar": "استفاده از گراواتار", "Use Gravatar": "استفاده از گراواتار",
"Use Initials": "",
"user": "کاربر", "user": "کاربر",
"User Permissions": "مجوزهای کاربر", "User Permissions": "مجوزهای کاربر",
"Users": "کاربران", "Users": "کاربران",
@ -351,7 +419,9 @@
"variable": "متغیر", "variable": "متغیر",
"variable to have them replaced with clipboard content.": "متغیر برای جایگزینی آنها با محتوای کلیپ بورد.", "variable to have them replaced with clipboard content.": "متغیر برای جایگزینی آنها با محتوای کلیپ بورد.",
"Version": "نسخه", "Version": "نسخه",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "وب", "Web": "وب",
"Webhook URL": "",
"WebUI Add-ons": "WebUI افزونه\u200cهای", "WebUI Add-ons": "WebUI افزونه\u200cهای",
"WebUI Settings": "تنظیمات WebUI", "WebUI Settings": "تنظیمات WebUI",
"WebUI will make requests to": "WebUI درخواست\u200cها را ارسال خواهد کرد به", "WebUI will make requests to": "WebUI درخواست\u200cها را ارسال خواهد کرد به",

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(par ex. `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(par ex. `sh webui.sh --api`)",
"(latest)": "", "(latest)": "",
"{{modelName}} is thinking...": "{{modelName}} réfléchit...", "{{modelName}} is thinking...": "{{modelName}} réfléchit...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "Backend {{webUIName}} requis", "{{webUIName}} Backend Required": "Backend {{webUIName}} requis",
"a user": "un utilisateur", "a user": "un utilisateur",
"About": "À propos", "About": "À propos",
"Account": "Compte", "Account": "Compte",
"Action": "Action", "Accurate information": "",
"Add a model": "Ajouter un modèle", "Add a model": "Ajouter un modèle",
"Add a model tag name": "Ajouter un nom de tag pour le modèle", "Add a model tag name": "Ajouter un nom de tag pour le modèle",
"Add a short description about what this modelfile does": "Ajouter une courte description de ce que fait ce fichier de modèle", "Add a short description about what this modelfile does": "Ajouter une courte description de ce que fait ce fichier de modèle",
@ -17,7 +18,8 @@
"Add Docs": "Ajouter des documents", "Add Docs": "Ajouter des documents",
"Add Files": "Ajouter des fichiers", "Add Files": "Ajouter des fichiers",
"Add message": "Ajouter un message", "Add message": "Ajouter un message",
"add tags": "ajouter des tags", "Add Model": "",
"Add Tags": "ajouter des tags",
"Adjusting these settings will apply changes universally to all users.": "L'ajustement de ces paramètres appliquera les changements à tous les utilisateurs.", "Adjusting these settings will apply changes universally to all users.": "L'ajustement de ces paramètres appliquera les changements à tous les utilisateurs.",
"admin": "Administrateur", "admin": "Administrateur",
"Admin Panel": "Panneau d'administration", "Admin Panel": "Panneau d'administration",
@ -33,9 +35,14 @@
"and": "et", "and": "et",
"API Base URL": "URL de base de l'API", "API Base URL": "URL de base de l'API",
"API Key": "Clé API", "API Key": "Clé API",
"API Key created.": "",
"API keys": "",
"API RPM": "RPM API", "API RPM": "RPM API",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "sont autorisés - Activez cette commande en tapant", "are allowed - Activate this command by typing": "sont autorisés - Activez cette commande en tapant",
"Are you sure?": "Êtes-vous sûr ?", "Are you sure?": "Êtes-vous sûr ?",
"Attention to detail": "",
"Audio": "Audio", "Audio": "Audio",
"Auto-playback response": "Réponse en lecture automatique", "Auto-playback response": "Réponse en lecture automatique",
"Auto-send input after 3 sec.": "Envoyer automatiquement l'entrée après 3 sec.", "Auto-send input after 3 sec.": "Envoyer automatiquement l'entrée après 3 sec.",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "L'URL de base AUTOMATIC1111 est requise.", "AUTOMATIC1111 Base URL is required.": "L'URL de base AUTOMATIC1111 est requise.",
"available!": "disponible !", "available!": "disponible !",
"Back": "Retour", "Back": "Retour",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "Mode Constructeur", "Builder Mode": "Mode Constructeur",
"Cancel": "Annuler", "Cancel": "Annuler",
"Categories": "Catégories", "Categories": "Catégories",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "Cliquez sur le bouton de rôle d'utilisateur pour changer le rôle d'un utilisateur.", "Click on the user role button to change a user's role.": "Cliquez sur le bouton de rôle d'utilisateur pour changer le rôle d'un utilisateur.",
"Close": "Fermer", "Close": "Fermer",
"Collection": "Collection", "Collection": "Collection",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "Commande", "Command": "Commande",
"Confirm Password": "Confirmer le mot de passe", "Confirm Password": "Confirmer le mot de passe",
"Connections": "Connexions", "Connections": "Connexions",
"Content": "Contenu", "Content": "Contenu",
"Context Length": "Longueur du contexte", "Context Length": "Longueur du contexte",
"Continue Response": "",
"Conversation Mode": "Mode de conversation", "Conversation Mode": "Mode de conversation",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "Copier le dernier bloc de code", "Copy last code block": "Copier le dernier bloc de code",
"Copy last response": "Copier la dernière réponse", "Copy last response": "Copier la dernière réponse",
"Copy Link": "",
"Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !", "Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Créez une phrase concise de 3 à 5 mots comme en-tête pour la requête suivante, en respectant strictement la limite de 3 à 5 mots et en évitant l'utilisation du mot 'titre' :", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Créez une phrase concise de 3 à 5 mots comme en-tête pour la requête suivante, en respectant strictement la limite de 3 à 5 mots et en évitant l'utilisation du mot 'titre' :",
"Create a modelfile": "Créer un fichier de modèle", "Create a modelfile": "Créer un fichier de modèle",
"Create Account": "Créer un compte", "Create Account": "Créer un compte",
"Created at": "Créé le", "Created at": "Créé le",
"Created by": "Créé par", "Created At": "",
"Current Model": "Modèle actuel", "Current Model": "Modèle actuel",
"Current Password": "Mot de passe actuel", "Current Password": "Mot de passe actuel",
"Custom": "Personnalisé", "Custom": "Personnalisé",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "Par défaut", "Default": "Par défaut",
"Default (Automatic1111)": "Par défaut (Automatic1111)", "Default (Automatic1111)": "Par défaut (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "Par défaut (API Web)", "Default (Web API)": "Par défaut (API Web)",
"Default model updated": "Modèle par défaut mis à jour", "Default model updated": "Modèle par défaut mis à jour",
"Default Prompt Suggestions": "Suggestions de prompt par défaut", "Default Prompt Suggestions": "Suggestions de prompt par défaut",
"Default User Role": "Rôle d'utilisateur par défaut", "Default User Role": "Rôle d'utilisateur par défaut",
"delete": "supprimer", "delete": "supprimer",
"Delete": "",
"Delete a model": "Supprimer un modèle", "Delete a model": "Supprimer un modèle",
"Delete chat": "Supprimer la discussion", "Delete chat": "Supprimer la discussion",
"Delete Chat": "",
"Delete Chats": "Supprimer les discussions", "Delete Chats": "Supprimer les discussions",
"Delete User": "",
"Deleted {{deleteModelTag}}": "{{deleteModelTag}} supprimé", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} supprimé",
"Deleted {tagName}": "{tagName} supprimé", "Deleted {{tagName}}": "",
"Description": "Description", "Description": "Description",
"Notifications": "Notifications de bureau", "Didn't fully follow instructions": "",
"Disabled": "Désactivé", "Disabled": "Désactivé",
"Discover a modelfile": "Découvrir un fichier de modèle", "Discover a modelfile": "Découvrir un fichier de modèle",
"Discover a prompt": "Découvrir un prompt", "Discover a prompt": "Découvrir un prompt",
@ -113,18 +133,21 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "ne fait aucune connexion externe, et vos données restent en sécurité sur votre serveur hébergé localement.", "does not make any external connections, and your data stays securely on your locally hosted server.": "ne fait aucune connexion externe, et vos données restent en sécurité sur votre serveur hébergé localement.",
"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 ?",
"Download as a File": "Télécharger en tant que fichier", "Don't like the style": "",
"Download": "",
"Download Database": "Télécharger la base de données", "Download Database": "Télécharger la base de données",
"Drop any files here to add to the conversation": "Déposez n'importe quel fichier ici pour les ajouter à la conversation", "Drop any files here to add to the conversation": "Déposez n'importe quel fichier ici pour les ajouter à la conversation",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ex. '30s', '10m'. Les unités de temps valides sont 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ex. '30s', '10m'. Les unités de temps valides sont 's', 'm', 'h'.",
"Edit": "",
"Edit Doc": "Éditer le document", "Edit Doc": "Éditer le document",
"Edit User": "Éditer l'utilisateur", "Edit User": "Éditer l'utilisateur",
"Email": "Email", "Email": "Email",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "Activer l'historique des discussions", "Enable Chat History": "Activer l'historique des discussions",
"Enable New Sign Ups": "Activer les nouvelles inscriptions", "Enable New Sign Ups": "Activer les nouvelles inscriptions",
"Enabled": "Activé", "Enabled": "Activé",
"Enter {{role}} message here": "Entrez le message {{role}} ici", "Enter {{role}} message here": "Entrez le message {{role}} ici",
"Enter API Key": "Entrez la clé API",
"Enter Chunk Overlap": "Entrez le chevauchement de bloc", "Enter Chunk Overlap": "Entrez le chevauchement de bloc",
"Enter Chunk Size": "Entrez la taille du bloc", "Enter Chunk Size": "Entrez la taille du bloc",
"Enter Image Size (e.g. 512x512)": "Entrez la taille de l'image (p. ex. 512x512)", "Enter Image Size (e.g. 512x512)": "Entrez la taille de l'image (p. ex. 512x512)",
@ -135,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "Entrez le nombre max de tokens (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "Entrez le nombre max de tokens (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "Entrez le tag du modèle (p. ex. {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "Entrez le tag du modèle (p. ex. {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "Entrez le nombre d'étapes (p. ex. 50)", "Enter Number of Steps (e.g. 50)": "Entrez le nombre d'étapes (p. ex. 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "Entrez la séquence de fin", "Enter stop sequence": "Entrez la séquence de fin",
"Enter Top K": "Entrez Top K", "Enter Top K": "Entrez Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Entrez l'URL (p. ex. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Entrez l'URL (p. ex. http://127.0.0.1:7860/)",
@ -147,20 +171,29 @@
"Export Documents Mapping": "Exporter le mappage des documents", "Export Documents Mapping": "Exporter le mappage des documents",
"Export Modelfiles": "Exporter les fichiers de modèle", "Export Modelfiles": "Exporter les fichiers de modèle",
"Export Prompts": "Exporter les prompts", "Export Prompts": "Exporter les prompts",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers", "Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
"Feel free to add specific details": "",
"File Mode": "Mode fichier", "File Mode": "Mode fichier",
"File not found.": "Fichier introuvable.", "File not found.": "Fichier introuvable.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "",
"Focus chat input": "Se concentrer sur l'entrée de la discussion", "Focus chat input": "Se concentrer sur l'entrée de la discussion",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "Formatez vos variables en utilisant des crochets comme ceci :", "Format your variables using square brackets like this:": "Formatez vos variables en utilisant des crochets comme ceci :",
"From (Base Model)": "De (Modèle de base)", "From (Base Model)": "De (Modèle de base)",
"Fluidly stream large external response chunks": "Diffusez de manière fluide de gros morceaux de réponses externes", "Fluidly stream large external response chunks": "Diffusez de manière fluide de gros morceaux de réponses externes",
"Full Screen Mode": "Mode plein écran", "Full Screen Mode": "Mode plein écran",
"General": "Général", "General": "Général",
"General Settings": "Paramètres généraux", "General Settings": "Paramètres généraux",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "Bonjour, {{name}}", "Hello, {{name}}": "Bonjour, {{name}}",
"Hide": "Cacher", "Hide": "Cacher",
"Hide Additional Params": "Cacher les paramètres supplémentaires", "Hide Additional Params": "Cacher les paramètres supplémentaires",
"How can I help you today?": "Comment puis-je vous aider aujourd'hui ?", "How can I help you today?": "Comment puis-je vous aider aujourd'hui ?",
"Hybrid Search": "",
"Image Generation (Experimental)": "Génération d'image (Expérimental)", "Image Generation (Experimental)": "Génération d'image (Expérimental)",
"Image Generation Engine": "Moteur de génération d'image", "Image Generation Engine": "Moteur de génération d'image",
"Image Settings": "Paramètres de l'image", "Image Settings": "Paramètres de l'image",
@ -178,6 +211,7 @@
"Keep Alive": "Garder actif", "Keep Alive": "Garder actif",
"Keyboard shortcuts": "Raccourcis clavier", "Keyboard shortcuts": "Raccourcis clavier",
"Language": "Langue", "Language": "Langue",
"Last Active": "",
"Light": "Lumière", "Light": "Lumière",
"OLED Dark": "OLED sombre", "OLED Dark": "OLED sombre",
"Listening...": "Écoute...", "Listening...": "Écoute...",
@ -193,10 +227,12 @@
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "MMMM DD, YYYY": "MMMM DD, YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "Le modèle '{{modelName}}' a été téléchargé avec succès.", "Model '{{modelName}}' has been successfully downloaded.": "Le modèle '{{modelName}}' a été téléchargé avec succès.",
"Model '{{modelTag}}' is already in queue for downloading.": "Le modèle '{{modelTag}}' est déjà dans la file d'attente pour le téléchargement.", "Model '{{modelTag}}' is already in queue for downloading.": "Le modèle '{{modelTag}}' est déjà dans la file d'attente pour le téléchargement.",
"Model {{modelId}} not found": "Modèle {{modelId}} non trouvé", "Model {{modelId}} not found": "Modèle {{modelId}} non trouvé",
"Model {{modelName}} already exists.": "Le modèle {{modelName}} existe déjà.", "Model {{modelName}} already exists.": "Le modèle {{modelName}} existe déjà.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Name": "Nom du modèle", "Model Name": "Nom du modèle",
"Model not selected": "Modèle non sélectionné", "Model not selected": "Modèle non sélectionné",
"Model Tag Name": "Nom de tag du modèle", "Model Tag Name": "Nom de tag du modèle",
@ -207,6 +243,7 @@
"Modelfile Content": "Contenu du fichier de modèle", "Modelfile Content": "Contenu du fichier de modèle",
"Modelfiles": "Fichiers de modèle", "Modelfiles": "Fichiers de modèle",
"Models": "Modèles", "Models": "Modèles",
"More": "",
"My Documents": "Mes documents", "My Documents": "Mes documents",
"My Modelfiles": "Mes fichiers de modèle", "My Modelfiles": "Mes fichiers de modèle",
"My Prompts": "Mes prompts", "My Prompts": "Mes prompts",
@ -215,10 +252,14 @@
"Name your modelfile": "Nommez votre fichier de modèle", "Name your modelfile": "Nommez votre fichier de modèle",
"New Chat": "Nouvelle discussion", "New Chat": "Nouvelle discussion",
"New Password": "Nouveau mot de passe", "New Password": "Nouveau mot de passe",
"Not factually correct": "",
"Not sure what to add?": "Pas sûr de quoi ajouter ?", "Not sure what to add?": "Pas sûr de quoi ajouter ?",
"Not sure what to write? Switch to": "Pas sûr de quoi écrire ? Changez pour", "Not sure what to write? Switch to": "Pas sûr de quoi écrire ? Changez pour",
"Notifications": "Notifications de bureau",
"Off": "Éteint", "Off": "Éteint",
"Okay, Let's Go!": "Okay, Allons-y !", "Okay, Let's Go!": "Okay, Allons-y !",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "URL de Base Ollama", "Ollama Base URL": "URL de Base Ollama",
"Ollama Version": "Version Ollama", "Ollama Version": "Version Ollama",
"On": "Activé", "On": "Activé",
@ -231,15 +272,20 @@
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "Open AI (Dall-E)", "Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "Ouvrir une nouvelle discussion", "Open new chat": "Ouvrir une nouvelle discussion",
"OpenAI": "",
"OpenAI API": "API OpenAI", "OpenAI API": "API OpenAI",
"OpenAI API Key": "Clé API OpenAI", "OpenAI API Config": "",
"OpenAI API Key is required.": "La clé API OpenAI est requise.", "OpenAI API Key is required.": "La clé API OpenAI est requise.",
"OpenAI URL/Key required.": "",
"or": "ou", "or": "ou",
"Other": "",
"Parameters": "Paramètres", "Parameters": "Paramètres",
"Password": "Mot de passe", "Password": "Mot de passe",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)", "PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)",
"pending": "en attente", "pending": "en attente",
"Permission denied when accessing microphone: {{error}}": "Permission refusée lors de l'accès au microphone : {{error}}", "Permission denied when accessing microphone: {{error}}": "Permission refusée lors de l'accès au microphone : {{error}}",
"Plain text (.txt)": "",
"Playground": "Aire de jeu", "Playground": "Aire de jeu",
"Archived Chats": "enregistrement du chat", "Archived Chats": "enregistrement du chat",
"Profile": "Profil", "Profile": "Profil",
@ -251,12 +297,18 @@
"Query Params": "Paramètres de requête", "Query Params": "Paramètres de requête",
"RAG Template": "Modèle RAG", "RAG Template": "Modèle RAG",
"Raw Format": "Format brut", "Raw Format": "Format brut",
"Read Aloud": "",
"Record voice": "Enregistrer la voix", "Record voice": "Enregistrer la voix",
"Redirecting you to OpenWebUI Community": "Vous redirige vers la communauté OpenWebUI", "Redirecting you to OpenWebUI Community": "Vous redirige vers la communauté OpenWebUI",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "Notes de version", "Release Notes": "Notes de version",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "Répéter les N derniers", "Repeat Last N": "Répéter les N derniers",
"Repeat Penalty": "Pénalité de répétition", "Repeat Penalty": "Pénalité de répétition",
"Request Mode": "Mode de requête", "Request Mode": "Mode de requête",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Réinitialiser le stockage vectoriel", "Reset Vector Storage": "Réinitialiser le stockage vectoriel",
"Response AutoCopy to Clipboard": "Copie automatique de la réponse vers le presse-papiers", "Response AutoCopy to Clipboard": "Copie automatique de la réponse vers le presse-papiers",
"Role": "Rôle", "Role": "Rôle",
@ -271,6 +323,7 @@
"Scan complete!": "Scan terminé !", "Scan complete!": "Scan terminé !",
"Scan for documents from {{path}}": "Scanner des documents depuis {{path}}", "Scan for documents from {{path}}": "Scanner des documents depuis {{path}}",
"Search": "Recherche", "Search": "Recherche",
"Search a model": "",
"Search Documents": "Rechercher des documents", "Search Documents": "Rechercher des documents",
"Search Prompts": "Rechercher des prompts", "Search Prompts": "Rechercher des prompts",
"See readme.md for instructions": "Voir readme.md pour les instructions", "See readme.md for instructions": "Voir readme.md pour les instructions",
@ -290,37 +343,46 @@
"Set Voice": "Définir la voix", "Set Voice": "Définir la voix",
"Settings": "Paramètres", "Settings": "Paramètres",
"Settings saved successfully!": "Paramètres enregistrés avec succès !", "Settings saved successfully!": "Paramètres enregistrés avec succès !",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "Partager avec la communauté OpenWebUI", "Share to OpenWebUI Community": "Partager avec la communauté OpenWebUI",
"short-summary": "résumé court", "short-summary": "résumé court",
"Show": "Afficher", "Show": "Afficher",
"Show Additional Params": "Afficher les paramètres supplémentaires", "Show Additional Params": "Afficher les paramètres supplémentaires",
"Show shortcuts": "Afficher les raccourcis", "Show shortcuts": "Afficher les raccourcis",
"Showcased creativity": "",
"sidebar": "barre latérale", "sidebar": "barre latérale",
"Sign in": "Se connecter", "Sign in": "Se connecter",
"Sign Out": "Se déconnecter", "Sign Out": "Se déconnecter",
"Sign up": "S'inscrire", "Sign up": "S'inscrire",
"Signing in": "",
"Speech recognition error: {{error}}": "Erreur de reconnaissance vocale : {{error}}", "Speech recognition error: {{error}}": "Erreur de reconnaissance vocale : {{error}}",
"Speech-to-Text Engine": "Moteur reconnaissance vocale", "Speech-to-Text Engine": "Moteur reconnaissance vocale",
"SpeechRecognition API is not supported in this browser.": "L'API SpeechRecognition n'est pas prise en charge dans ce navigateur.", "SpeechRecognition API is not supported in this browser.": "L'API SpeechRecognition n'est pas prise en charge dans ce navigateur.",
"Stop Sequence": "Séquence d'arrêt", "Stop Sequence": "Séquence d'arrêt",
"STT Settings": "Paramètres de STT", "STT Settings": "Paramètres de STT",
"Submit": "Soumettre", "Submit": "Soumettre",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "Succès", "Success": "Succès",
"Successfully updated.": "Mis à jour avec succès.", "Successfully updated.": "Mis à jour avec succès.",
"Sync All": "Synchroniser tout", "Sync All": "Synchroniser tout",
"System": "Système", "System": "Système",
"System Prompt": "Prompt Système", "System Prompt": "Prompt Système",
"Tags": "Tags", "Tags": "Tags",
"Tell us more:": "",
"Temperature": "Température", "Temperature": "Température",
"Template": "Modèle", "Template": "Modèle",
"Text Completion": "Complétion de texte", "Text Completion": "Complétion de texte",
"Text-to-Speech Engine": "Moteur de texte à la parole", "Text-to-Speech Engine": "Moteur de texte à la parole",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "",
"Theme": "Thème", "Theme": "Thème",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Cela garantit que vos précieuses conversations sont enregistrées en toute sécurité dans votre base de données backend. Merci !", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Cela garantit que vos précieuses conversations sont enregistrées en toute sécurité dans votre base de données backend. Merci !",
"This setting does not sync across browsers or devices.": "Ce réglage ne se synchronise pas entre les navigateurs ou les appareils.", "This setting does not sync across browsers or devices.": "Ce réglage ne se synchronise pas entre les navigateurs ou les appareils.",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Astuce : Mettez à jour plusieurs emplacements de variables consécutivement en appuyant sur la touche tabulation dans l'entrée de chat après chaque remplacement.", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Astuce : Mettez à jour plusieurs emplacements de variables consécutivement en appuyant sur la touche tabulation dans l'entrée de chat après chaque remplacement.",
"Title": "Titre", "Title": "Titre",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "Génération automatique de titre", "Title Auto-Generation": "Génération automatique de titre",
"Title Generation Prompt": "Prompt de génération de titre", "Title Generation Prompt": "Prompt de génération de titre",
"to": "à", "to": "à",
@ -336,13 +398,19 @@
"Type Hugging Face Resolve (Download) URL": "Entrez l'URL de résolution (téléchargement) Hugging Face", "Type Hugging Face Resolve (Download) URL": "Entrez l'URL de résolution (téléchargement) Hugging Face",
"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh ! Il y a eu un problème de connexion à {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh ! Il y a eu un problème de connexion à {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Type de fichier inconnu '{{file_type}}', mais accepté et traité comme du texte brut", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Type de fichier inconnu '{{file_type}}', mais accepté et traité comme du texte brut",
"Update and Copy Link": "",
"Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "Mettre à jour le mot de passe", "Update password": "Mettre à jour le mot de passe",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "Téléverser un modèle GGUF", "Upload a GGUF model": "Téléverser un modèle GGUF",
"Upload files": "Téléverser des fichiers", "Upload files": "Téléverser des fichiers",
"Upload Progress": "Progression du Téléversement", "Upload Progress": "Progression du Téléversement",
"URL Mode": "Mode URL", "URL Mode": "Mode URL",
"Use '#' in the prompt input to load and select your documents.": "Utilisez '#' dans l'entrée de prompt pour charger et sélectionner vos documents.", "Use '#' in the prompt input to load and select your documents.": "Utilisez '#' dans l'entrée de prompt pour charger et sélectionner vos documents.",
"Use Gravatar": "Utiliser Gravatar", "Use Gravatar": "Utiliser Gravatar",
"Use Initials": "",
"user": "utilisateur", "user": "utilisateur",
"User Permissions": "Permissions de l'utilisateur", "User Permissions": "Permissions de l'utilisateur",
"Users": "Utilisateurs", "Users": "Utilisateurs",
@ -351,7 +419,9 @@
"variable": "variable", "variable": "variable",
"variable to have them replaced with clipboard content.": "variable pour les remplacer par le contenu du presse-papiers.", "variable to have them replaced with clipboard content.": "variable pour les remplacer par le contenu du presse-papiers.",
"Version": "Version", "Version": "Version",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web", "Web": "Web",
"Webhook URL": "",
"WebUI Add-ons": "Add-ons WebUI", "WebUI Add-ons": "Add-ons WebUI",
"WebUI Settings": "Paramètres WebUI", "WebUI Settings": "Paramètres WebUI",
"WebUI will make requests to": "WebUI effectuera des demandes à", "WebUI will make requests to": "WebUI effectuera des demandes à",

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(par ex. `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(par ex. `sh webui.sh --api`)",
"(latest)": "", "(latest)": "",
"{{modelName}} is thinking...": "{{modelName}} réfléchit...", "{{modelName}} is thinking...": "{{modelName}} réfléchit...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "Backend {{webUIName}} requis", "{{webUIName}} Backend Required": "Backend {{webUIName}} requis",
"a user": "un utilisateur", "a user": "un utilisateur",
"About": "À propos", "About": "À propos",
"Account": "Compte", "Account": "Compte",
"Action": "Action", "Accurate information": "",
"Add a model": "Ajouter un modèle", "Add a model": "Ajouter un modèle",
"Add a model tag name": "Ajouter un nom de tag pour le modèle", "Add a model tag name": "Ajouter un nom de tag pour le modèle",
"Add a short description about what this modelfile does": "Ajouter une courte description de ce que fait ce fichier de modèle", "Add a short description about what this modelfile does": "Ajouter une courte description de ce que fait ce fichier de modèle",
@ -17,7 +18,8 @@
"Add Docs": "Ajouter des documents", "Add Docs": "Ajouter des documents",
"Add Files": "Ajouter des fichiers", "Add Files": "Ajouter des fichiers",
"Add message": "Ajouter un message", "Add message": "Ajouter un message",
"add tags": "ajouter des tags", "Add Model": "",
"Add Tags": "ajouter des tags",
"Adjusting these settings will apply changes universally to all users.": "L'ajustement de ces paramètres appliquera les changements à tous les utilisateurs.", "Adjusting these settings will apply changes universally to all users.": "L'ajustement de ces paramètres appliquera les changements à tous les utilisateurs.",
"admin": "Administrateur", "admin": "Administrateur",
"Admin Panel": "Panneau d'administration", "Admin Panel": "Panneau d'administration",
@ -33,9 +35,14 @@
"and": "et", "and": "et",
"API Base URL": "URL de base de l'API", "API Base URL": "URL de base de l'API",
"API Key": "Clé API", "API Key": "Clé API",
"API Key created.": "",
"API keys": "",
"API RPM": "RPM API", "API RPM": "RPM API",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "sont autorisés - Activez cette commande en tapant", "are allowed - Activate this command by typing": "sont autorisés - Activez cette commande en tapant",
"Are you sure?": "Êtes-vous sûr ?", "Are you sure?": "Êtes-vous sûr ?",
"Attention to detail": "",
"Audio": "Audio", "Audio": "Audio",
"Auto-playback response": "Réponse en lecture automatique", "Auto-playback response": "Réponse en lecture automatique",
"Auto-send input after 3 sec.": "Envoyer automatiquement l'entrée après 3 sec.", "Auto-send input after 3 sec.": "Envoyer automatiquement l'entrée après 3 sec.",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "L'URL de base AUTOMATIC1111 est requise.", "AUTOMATIC1111 Base URL is required.": "L'URL de base AUTOMATIC1111 est requise.",
"available!": "disponible !", "available!": "disponible !",
"Back": "Retour", "Back": "Retour",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "Mode Constructeur", "Builder Mode": "Mode Constructeur",
"Cancel": "Annuler", "Cancel": "Annuler",
"Categories": "Catégories", "Categories": "Catégories",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "Cliquez sur le bouton de rôle d'utilisateur pour changer le rôle d'un utilisateur.", "Click on the user role button to change a user's role.": "Cliquez sur le bouton de rôle d'utilisateur pour changer le rôle d'un utilisateur.",
"Close": "Fermer", "Close": "Fermer",
"Collection": "Collection", "Collection": "Collection",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "Commande", "Command": "Commande",
"Confirm Password": "Confirmer le mot de passe", "Confirm Password": "Confirmer le mot de passe",
"Connections": "Connexions", "Connections": "Connexions",
"Content": "Contenu", "Content": "Contenu",
"Context Length": "Longueur du contexte", "Context Length": "Longueur du contexte",
"Continue Response": "",
"Conversation Mode": "Mode de conversation", "Conversation Mode": "Mode de conversation",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "Copier le dernier bloc de code", "Copy last code block": "Copier le dernier bloc de code",
"Copy last response": "Copier la dernière réponse", "Copy last response": "Copier la dernière réponse",
"Copy Link": "",
"Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !", "Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Créez une phrase concise de 3-5 mots comme en-tête pour la requête suivante, en respectant strictement la limite de 3-5 mots et en évitant l'utilisation du mot 'titre' :", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Créez une phrase concise de 3-5 mots comme en-tête pour la requête suivante, en respectant strictement la limite de 3-5 mots et en évitant l'utilisation du mot 'titre' :",
"Create a modelfile": "Créer un fichier de modèle", "Create a modelfile": "Créer un fichier de modèle",
"Create Account": "Créer un compte", "Create Account": "Créer un compte",
"Created at": "Créé le", "Created at": "Créé le",
"Created by": "Créé par", "Created At": "",
"Current Model": "Modèle actuel", "Current Model": "Modèle actuel",
"Current Password": "Mot de passe actuel", "Current Password": "Mot de passe actuel",
"Custom": "Personnalisé", "Custom": "Personnalisé",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "Par défaut", "Default": "Par défaut",
"Default (Automatic1111)": "Par défaut (Automatic1111)", "Default (Automatic1111)": "Par défaut (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "Par défaut (API Web)", "Default (Web API)": "Par défaut (API Web)",
"Default model updated": "Modèle par défaut mis à jour", "Default model updated": "Modèle par défaut mis à jour",
"Default Prompt Suggestions": "Suggestions de prompt par défaut", "Default Prompt Suggestions": "Suggestions de prompt par défaut",
"Default User Role": "Rôle d'utilisateur par défaut", "Default User Role": "Rôle d'utilisateur par défaut",
"delete": "supprimer", "delete": "supprimer",
"Delete": "",
"Delete a model": "Supprimer un modèle", "Delete a model": "Supprimer un modèle",
"Delete chat": "Supprimer le chat", "Delete chat": "Supprimer le chat",
"Delete Chat": "",
"Delete Chats": "Supprimer les chats", "Delete Chats": "Supprimer les chats",
"Delete User": "",
"Deleted {{deleteModelTag}}": "{{deleteModelTag}} supprimé", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} supprimé",
"Deleted {tagName}": "{tagName} supprimé", "Deleted {{tagName}}": "",
"Description": "Description", "Description": "Description",
"Notifications": "Notifications de bureau", "Didn't fully follow instructions": "",
"Disabled": "Désactivé", "Disabled": "Désactivé",
"Discover a modelfile": "Découvrir un fichier de modèle", "Discover a modelfile": "Découvrir un fichier de modèle",
"Discover a prompt": "Découvrir un prompt", "Discover a prompt": "Découvrir un prompt",
@ -113,18 +133,21 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "ne fait aucune connexion externe, et vos données restent en sécurité sur votre serveur hébergé localement.", "does not make any external connections, and your data stays securely on your locally hosted server.": "ne fait aucune connexion externe, et vos données restent en sécurité sur votre serveur hébergé localement.",
"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 ?",
"Download as a File": "Télécharger en tant que fichier", "Don't like the style": "",
"Download": "",
"Download Database": "Télécharger la base de données", "Download Database": "Télécharger la base de données",
"Drop any files here to add to the conversation": "Déposez des fichiers ici pour les ajouter à la conversation", "Drop any files here to add to the conversation": "Déposez des fichiers ici pour les ajouter à la conversation",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10m'. Les unités de temps valides sont 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10m'. Les unités de temps valides sont 's', 'm', 'h'.",
"Edit": "",
"Edit Doc": "Éditer le document", "Edit Doc": "Éditer le document",
"Edit User": "Éditer l'utilisateur", "Edit User": "Éditer l'utilisateur",
"Email": "Email", "Email": "Email",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "Activer l'historique du chat", "Enable Chat History": "Activer l'historique du chat",
"Enable New Sign Ups": "Activer les nouvelles inscriptions", "Enable New Sign Ups": "Activer les nouvelles inscriptions",
"Enabled": "Activé", "Enabled": "Activé",
"Enter {{role}} message here": "Entrez le message {{role}} ici", "Enter {{role}} message here": "Entrez le message {{role}} ici",
"Enter API Key": "Entrez la clé API",
"Enter Chunk Overlap": "Entrez le chevauchement de bloc", "Enter Chunk Overlap": "Entrez le chevauchement de bloc",
"Enter Chunk Size": "Entrez la taille du bloc", "Enter Chunk Size": "Entrez la taille du bloc",
"Enter Image Size (e.g. 512x512)": "Entrez la taille de l'image (p. ex. 512x512)", "Enter Image Size (e.g. 512x512)": "Entrez la taille de l'image (p. ex. 512x512)",
@ -135,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "Entrez le nombre max de tokens (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "Entrez le nombre max de tokens (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "Entrez le tag du modèle (p. ex. {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "Entrez le tag du modèle (p. ex. {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "Entrez le nombre d'étapes (p. ex. 50)", "Enter Number of Steps (e.g. 50)": "Entrez le nombre d'étapes (p. ex. 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "Entrez la séquence de fin", "Enter stop sequence": "Entrez la séquence de fin",
"Enter Top K": "Entrez Top K", "Enter Top K": "Entrez Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Entrez l'URL (p. ex. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Entrez l'URL (p. ex. http://127.0.0.1:7860/)",
@ -147,20 +171,29 @@
"Export Documents Mapping": "Exporter la correspondance des documents", "Export Documents Mapping": "Exporter la correspondance des documents",
"Export Modelfiles": "Exporter les fichiers de modèle", "Export Modelfiles": "Exporter les fichiers de modèle",
"Export Prompts": "Exporter les prompts", "Export Prompts": "Exporter les prompts",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers", "Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
"Feel free to add specific details": "",
"File Mode": "Mode fichier", "File Mode": "Mode fichier",
"File not found.": "Fichier non trouvé.", "File not found.": "Fichier non trouvé.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "",
"Focus chat input": "Concentrer sur l'entrée du chat", "Focus chat input": "Concentrer sur l'entrée du chat",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "Formatez vos variables en utilisant des crochets comme ceci :", "Format your variables using square brackets like this:": "Formatez vos variables en utilisant des crochets comme ceci :",
"From (Base Model)": "De (Modèle de base)", "From (Base Model)": "De (Modèle de base)",
"Fluidly stream large external response chunks": "Diffusez de manière fluide de gros morceaux de réponses externes", "Fluidly stream large external response chunks": "Diffusez de manière fluide de gros morceaux de réponses externes",
"Full Screen Mode": "Mode plein écran", "Full Screen Mode": "Mode plein écran",
"General": "Général", "General": "Général",
"General Settings": "Paramètres généraux", "General Settings": "Paramètres généraux",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "Bonjour, {{name}}", "Hello, {{name}}": "Bonjour, {{name}}",
"Hide": "Cacher", "Hide": "Cacher",
"Hide Additional Params": "Hide additional params", "Hide Additional Params": "Hide additional params",
"How can I help you today?": "Comment puis-je vous aider aujourd'hui ?", "How can I help you today?": "Comment puis-je vous aider aujourd'hui ?",
"Hybrid Search": "",
"Image Generation (Experimental)": "Génération d'image (Expérimental)", "Image Generation (Experimental)": "Génération d'image (Expérimental)",
"Image Generation Engine": "Moteur de génération d'image", "Image Generation Engine": "Moteur de génération d'image",
"Image Settings": "Paramètres d'image", "Image Settings": "Paramètres d'image",
@ -178,6 +211,7 @@
"Keep Alive": "Garder en vie", "Keep Alive": "Garder en vie",
"Keyboard shortcuts": "Raccourcis clavier", "Keyboard shortcuts": "Raccourcis clavier",
"Language": "Langue", "Language": "Langue",
"Last Active": "",
"Light": "Clair", "Light": "Clair",
"OLED Dark": "OLED sombre", "OLED Dark": "OLED sombre",
"Listening...": "Écoute...", "Listening...": "Écoute...",
@ -193,10 +227,12 @@
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "MMMM DD, YYYY": "MMMM DD, YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "Le modèle '{{modelName}}' a été téléchargé avec succès.", "Model '{{modelName}}' has been successfully downloaded.": "Le modèle '{{modelName}}' a été téléchargé avec succès.",
"Model '{{modelTag}}' is already in queue for downloading.": "Le modèle '{{modelTag}}' est déjà dans la file d'attente pour le téléchargement.", "Model '{{modelTag}}' is already in queue for downloading.": "Le modèle '{{modelTag}}' est déjà dans la file d'attente pour le téléchargement.",
"Model {{modelId}} not found": "Modèle {{modelId}} non trouvé", "Model {{modelId}} not found": "Modèle {{modelId}} non trouvé",
"Model {{modelName}} already exists.": "Le modèle {{modelName}} existe déjà.", "Model {{modelName}} already exists.": "Le modèle {{modelName}} existe déjà.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Name": "Nom du modèle", "Model Name": "Nom du modèle",
"Model not selected": "Modèle non sélectionné", "Model not selected": "Modèle non sélectionné",
"Model Tag Name": "Nom de tag du modèle", "Model Tag Name": "Nom de tag du modèle",
@ -207,6 +243,7 @@
"Modelfile Content": "Contenu du fichier de modèle", "Modelfile Content": "Contenu du fichier de modèle",
"Modelfiles": "Fichiers de modèle", "Modelfiles": "Fichiers de modèle",
"Models": "Modèles", "Models": "Modèles",
"More": "",
"My Documents": "Mes documents", "My Documents": "Mes documents",
"My Modelfiles": "Mes fichiers de modèle", "My Modelfiles": "Mes fichiers de modèle",
"My Prompts": "Mes prompts", "My Prompts": "Mes prompts",
@ -215,10 +252,14 @@
"Name your modelfile": "Nommez votre fichier de modèle", "Name your modelfile": "Nommez votre fichier de modèle",
"New Chat": "Nouveau chat", "New Chat": "Nouveau chat",
"New Password": "Nouveau mot de passe", "New Password": "Nouveau mot de passe",
"Not factually correct": "",
"Not sure what to add?": "Vous ne savez pas quoi ajouter ?", "Not sure what to add?": "Vous ne savez pas quoi ajouter ?",
"Not sure what to write? Switch to": "Vous ne savez pas quoi écrire ? Basculer vers", "Not sure what to write? Switch to": "Vous ne savez pas quoi écrire ? Basculer vers",
"Notifications": "Notifications de bureau",
"Off": "Désactivé", "Off": "Désactivé",
"Okay, Let's Go!": "D'accord, allons-y !", "Okay, Let's Go!": "D'accord, allons-y !",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "URL de Base Ollama", "Ollama Base URL": "URL de Base Ollama",
"Ollama Version": "Version Ollama", "Ollama Version": "Version Ollama",
"On": "Activé", "On": "Activé",
@ -231,15 +272,20 @@
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "Open AI (Dall-E)", "Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "Ouvrir un nouveau chat", "Open new chat": "Ouvrir un nouveau chat",
"OpenAI": "",
"OpenAI API": "API OpenAI", "OpenAI API": "API OpenAI",
"OpenAI API Key": "Clé API OpenAI", "OpenAI API Config": "",
"OpenAI API Key is required.": "La clé API OpenAI est requise.", "OpenAI API Key is required.": "La clé API OpenAI est requise.",
"OpenAI URL/Key required.": "",
"or": "ou", "or": "ou",
"Other": "",
"Parameters": "Paramètres", "Parameters": "Paramètres",
"Password": "Mot de passe", "Password": "Mot de passe",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)", "PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)",
"pending": "en attente", "pending": "en attente",
"Permission denied when accessing microphone: {{error}}": "Permission refusée lors de l'accès au microphone : {{error}}", "Permission denied when accessing microphone: {{error}}": "Permission refusée lors de l'accès au microphone : {{error}}",
"Plain text (.txt)": "",
"Playground": "Aire de jeu", "Playground": "Aire de jeu",
"Archived Chats": "enregistrement du chat", "Archived Chats": "enregistrement du chat",
"Profile": "Profil", "Profile": "Profil",
@ -251,12 +297,18 @@
"Query Params": "Paramètres de requête", "Query Params": "Paramètres de requête",
"RAG Template": "Modèle RAG", "RAG Template": "Modèle RAG",
"Raw Format": "Format brut", "Raw Format": "Format brut",
"Read Aloud": "",
"Record voice": "Enregistrer la voix", "Record voice": "Enregistrer la voix",
"Redirecting you to OpenWebUI Community": "Vous redirige vers la communauté OpenWebUI", "Redirecting you to OpenWebUI Community": "Vous redirige vers la communauté OpenWebUI",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "Notes de version", "Release Notes": "Notes de version",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "Répéter les derniers N", "Repeat Last N": "Répéter les derniers N",
"Repeat Penalty": "Pénalité de répétition", "Repeat Penalty": "Pénalité de répétition",
"Request Mode": "Mode de demande", "Request Mode": "Mode de demande",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Réinitialiser le stockage de vecteur", "Reset Vector Storage": "Réinitialiser le stockage de vecteur",
"Response AutoCopy to Clipboard": "Copie automatique de la réponse dans le presse-papiers", "Response AutoCopy to Clipboard": "Copie automatique de la réponse dans le presse-papiers",
"Role": "Rôle", "Role": "Rôle",
@ -271,6 +323,7 @@
"Scan complete!": "Scan terminé !", "Scan complete!": "Scan terminé !",
"Scan for documents from {{path}}": "Scanner des documents depuis {{path}}", "Scan for documents from {{path}}": "Scanner des documents depuis {{path}}",
"Search": "Recherche", "Search": "Recherche",
"Search a model": "",
"Search Documents": "Rechercher des documents", "Search Documents": "Rechercher des documents",
"Search Prompts": "Rechercher des prompts", "Search Prompts": "Rechercher des prompts",
"See readme.md for instructions": "Voir readme.md pour les instructions", "See readme.md for instructions": "Voir readme.md pour les instructions",
@ -290,37 +343,46 @@
"Set Voice": "Définir la voix", "Set Voice": "Définir la voix",
"Settings": "Paramètres", "Settings": "Paramètres",
"Settings saved successfully!": "Paramètres enregistrés avec succès !", "Settings saved successfully!": "Paramètres enregistrés avec succès !",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "Partager avec la communauté OpenWebUI", "Share to OpenWebUI Community": "Partager avec la communauté OpenWebUI",
"short-summary": "résumé court", "short-summary": "résumé court",
"Show": "Montrer", "Show": "Montrer",
"Show Additional Params": "Afficher les paramètres supplémentaires", "Show Additional Params": "Afficher les paramètres supplémentaires",
"Show shortcuts": "Afficher les raccourcis", "Show shortcuts": "Afficher les raccourcis",
"Showcased creativity": "",
"sidebar": "barre latérale", "sidebar": "barre latérale",
"Sign in": "Se connecter", "Sign in": "Se connecter",
"Sign Out": "Se déconnecter", "Sign Out": "Se déconnecter",
"Sign up": "S'inscrire", "Sign up": "S'inscrire",
"Signing in": "",
"Speech recognition error: {{error}}": "Erreur de reconnaissance vocale : {{error}}", "Speech recognition error: {{error}}": "Erreur de reconnaissance vocale : {{error}}",
"Speech-to-Text Engine": "Moteur de reconnaissance vocale", "Speech-to-Text Engine": "Moteur de reconnaissance vocale",
"SpeechRecognition API is not supported in this browser.": "L'API SpeechRecognition n'est pas prise en charge dans ce navigateur.", "SpeechRecognition API is not supported in this browser.": "L'API SpeechRecognition n'est pas prise en charge dans ce navigateur.",
"Stop Sequence": "Séquence d'arrêt", "Stop Sequence": "Séquence d'arrêt",
"STT Settings": "Paramètres STT", "STT Settings": "Paramètres STT",
"Submit": "Soumettre", "Submit": "Soumettre",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "Succès", "Success": "Succès",
"Successfully updated.": "Mis à jour avec succès.", "Successfully updated.": "Mis à jour avec succès.",
"Sync All": "Synchroniser tout", "Sync All": "Synchroniser tout",
"System": "Système", "System": "Système",
"System Prompt": "Invite de système", "System Prompt": "Invite de système",
"Tags": "Tags", "Tags": "Tags",
"Tell us more:": "",
"Temperature": "Température", "Temperature": "Température",
"Template": "Modèle", "Template": "Modèle",
"Text Completion": "Complétion de texte", "Text Completion": "Complétion de texte",
"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!": "",
"Theme": "Thème", "Theme": "Thème",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Cela garantit que vos précieuses conversations sont en sécurité dans votre base de données. Merci !", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Cela garantit que vos précieuses conversations sont en sécurité dans votre base de données. Merci !",
"This setting does not sync across browsers or devices.": "Ce paramètre ne se synchronise pas entre les navigateurs ou les appareils.", "This setting does not sync across browsers or devices.": "Ce paramètre ne se synchronise pas entre les navigateurs ou les appareils.",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.",
"Title": "Titre", "Title": "Titre",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "Génération automatique de titre", "Title Auto-Generation": "Génération automatique de titre",
"Title Generation Prompt": "Prompt de génération de titre", "Title Generation Prompt": "Prompt de génération de titre",
"to": "à", "to": "à",
@ -336,13 +398,19 @@
"Type Hugging Face Resolve (Download) URL": "Entrez l'URL de résolution (téléchargement) Hugging Face", "Type Hugging Face Resolve (Download) URL": "Entrez l'URL de résolution (téléchargement) Hugging Face",
"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh ! Il y a eu un problème de connexion à {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh ! Il y a eu un problème de connexion à {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Type de fichier inconnu '{{file_type}}', mais accepté et traité comme du texte brut", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Type de fichier inconnu '{{file_type}}', mais accepté et traité comme du texte brut",
"Update and Copy Link": "",
"Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "Mettre à jour le mot de passe", "Update password": "Mettre à jour le mot de passe",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "Téléverser un modèle GGUF", "Upload a GGUF model": "Téléverser un modèle GGUF",
"Upload files": "Téléverser des fichiers", "Upload files": "Téléverser des fichiers",
"Upload Progress": "Progression du Téléversement", "Upload Progress": "Progression du Téléversement",
"URL Mode": "Mode URL", "URL Mode": "Mode URL",
"Use '#' in the prompt input to load and select your documents.": "Utilisez '#' dans l'entrée du prompt pour charger et sélectionner vos documents.", "Use '#' in the prompt input to load and select your documents.": "Utilisez '#' dans l'entrée du prompt pour charger et sélectionner vos documents.",
"Use Gravatar": "Utiliser Gravatar", "Use Gravatar": "Utiliser Gravatar",
"Use Initials": "",
"user": "utilisateur", "user": "utilisateur",
"User Permissions": "Permissions d'utilisateur", "User Permissions": "Permissions d'utilisateur",
"Users": "Utilisateurs", "Users": "Utilisateurs",
@ -351,7 +419,9 @@
"variable": "variable", "variable": "variable",
"variable to have them replaced with clipboard content.": "variable pour les remplacer par le contenu du presse-papiers.", "variable to have them replaced with clipboard content.": "variable pour les remplacer par le contenu du presse-papiers.",
"Version": "Version", "Version": "Version",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web", "Web": "Web",
"Webhook URL": "",
"WebUI Add-ons": "Add-ons WebUI", "WebUI Add-ons": "Add-ons WebUI",
"WebUI Settings": "Paramètres WebUI", "WebUI Settings": "Paramètres WebUI",
"WebUI will make requests to": "WebUI effectuera des demandes à", "WebUI will make requests to": "WebUI effectuera des demandes à",

View file

@ -1,14 +1,15 @@
{ {
"'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'s', 'm', 'h', 'd', 'w' o '-1' per nessuna scadenza.", "'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'s', 'm', 'h', 'd', 'w' o '-1' per nessuna scadenza.",
"(Beta)": "(Beta)", "(Beta)": "(Beta)",
"(e.g. sh webui.sh --api)": "(ad esempio sh webui.sh --api)", "(e.g. `sh webui.sh --api`)": "",
"(latest)": "(ultima)", "(latest)": "(ultima)",
"{{modelName}} is thinking...": "{{modelName}} sta pensando...", "{{modelName}} is thinking...": "{{modelName}} sta pensando...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}} Backend richiesto", "{{webUIName}} Backend Required": "{{webUIName}} Backend richiesto",
"a user": "un utente", "a user": "un utente",
"About": "Informazioni", "About": "Informazioni",
"Account": "Account", "Account": "Account",
"Action": "Azione", "Accurate information": "",
"Add a model": "Aggiungi un modello", "Add a model": "Aggiungi un modello",
"Add a model tag name": "Aggiungi un nome tag del modello", "Add a model tag name": "Aggiungi un nome tag del modello",
"Add a short description about what this modelfile does": "Aggiungi una breve descrizione di ciò che fa questo file modello", "Add a short description about what this modelfile does": "Aggiungi una breve descrizione di ciò che fa questo file modello",
@ -17,7 +18,8 @@
"Add Docs": "Aggiungi documenti", "Add Docs": "Aggiungi documenti",
"Add Files": "Aggiungi file", "Add Files": "Aggiungi file",
"Add message": "Aggiungi messaggio", "Add message": "Aggiungi messaggio",
"add tags": "aggiungi tag", "Add Model": "",
"Add Tags": "aggiungi tag",
"Adjusting these settings will apply changes universally to all users.": "La modifica di queste impostazioni applicherà le modifiche universalmente a tutti gli utenti.", "Adjusting these settings will apply changes universally to all users.": "La modifica di queste impostazioni applicherà le modifiche universalmente a tutti gli utenti.",
"admin": "amministratore", "admin": "amministratore",
"Admin Panel": "Pannello di amministrazione", "Admin Panel": "Pannello di amministrazione",
@ -33,9 +35,14 @@
"and": "e", "and": "e",
"API Base URL": "URL base API", "API Base URL": "URL base API",
"API Key": "Chiave API", "API Key": "Chiave API",
"API Key created.": "",
"API keys": "",
"API RPM": "API RPM", "API RPM": "API RPM",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "sono consentiti - Attiva questo comando digitando", "are allowed - Activate this command by typing": "sono consentiti - Attiva questo comando digitando",
"Are you sure?": "Sei sicuro?", "Are you sure?": "Sei sicuro?",
"Attention to detail": "",
"Audio": "Audio", "Audio": "Audio",
"Auto-playback response": "Riproduzione automatica della risposta", "Auto-playback response": "Riproduzione automatica della risposta",
"Auto-send input after 3 sec.": "Invio automatico dell'input dopo 3 secondi.", "Auto-send input after 3 sec.": "Invio automatico dell'input dopo 3 secondi.",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "L'URL base AUTOMATIC1111 è obbligatorio.", "AUTOMATIC1111 Base URL is required.": "L'URL base AUTOMATIC1111 è obbligatorio.",
"available!": "disponibile!", "available!": "disponibile!",
"Back": "Indietro", "Back": "Indietro",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "Modalità costruttore", "Builder Mode": "Modalità costruttore",
"Cancel": "Annulla", "Cancel": "Annulla",
"Categories": "Categorie", "Categories": "Categorie",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "Clicca sul pulsante del ruolo utente per modificare il ruolo di un utente.", "Click on the user role button to change a user's role.": "Clicca sul pulsante del ruolo utente per modificare il ruolo di un utente.",
"Close": "Chiudi", "Close": "Chiudi",
"Collection": "Collezione", "Collection": "Collezione",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "Comando", "Command": "Comando",
"Confirm Password": "Conferma password", "Confirm Password": "Conferma password",
"Connections": "Connessioni", "Connections": "Connessioni",
"Content": "Contenuto", "Content": "Contenuto",
"Context Length": "Lunghezza contesto", "Context Length": "Lunghezza contesto",
"Continue Response": "",
"Conversation Mode": "Modalità conversazione", "Conversation Mode": "Modalità conversazione",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "Copia ultimo blocco di codice", "Copy last code block": "Copia ultimo blocco di codice",
"Copy last response": "Copia ultima risposta", "Copy last response": "Copia ultima risposta",
"Copy Link": "",
"Copying to clipboard was successful!": "Copia negli appunti riuscita!", "Copying to clipboard was successful!": "Copia negli appunti riuscita!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Crea una frase concisa di 3-5 parole come intestazione per la seguente query, aderendo rigorosamente al limite di 3-5 parole ed evitando l'uso della parola 'titolo':", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Crea una frase concisa di 3-5 parole come intestazione per la seguente query, aderendo rigorosamente al limite di 3-5 parole ed evitando l'uso della parola 'titolo':",
"Create a modelfile": "Crea un file modello", "Create a modelfile": "Crea un file modello",
"Create Account": "Crea account", "Create Account": "Crea account",
"Created at": "Creato il", "Created at": "Creato il",
"Created by": "Creato da", "Created At": "",
"Current Model": "Modello corrente", "Current Model": "Modello corrente",
"Current Password": "Password corrente", "Current Password": "Password corrente",
"Custom": "Personalizzato", "Custom": "Personalizzato",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "Predefinito", "Default": "Predefinito",
"Default (Automatic1111)": "Predefinito (Automatic1111)", "Default (Automatic1111)": "Predefinito (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "Predefinito (API Web)", "Default (Web API)": "Predefinito (API Web)",
"Default model updated": "Modello predefinito aggiornato", "Default model updated": "Modello predefinito aggiornato",
"Default Prompt Suggestions": "Suggerimenti prompt predefiniti", "Default Prompt Suggestions": "Suggerimenti prompt predefiniti",
"Default User Role": "Ruolo utente predefinito", "Default User Role": "Ruolo utente predefinito",
"delete": "elimina", "delete": "elimina",
"Delete": "",
"Delete a model": "Elimina un modello", "Delete a model": "Elimina un modello",
"Delete chat": "Elimina chat", "Delete chat": "Elimina chat",
"Delete Chat": "",
"Delete Chats": "Elimina chat", "Delete Chats": "Elimina chat",
"Delete User": "",
"Deleted {{deleteModelTag}}": "Eliminato {{deleteModelTag}}", "Deleted {{deleteModelTag}}": "Eliminato {{deleteModelTag}}",
"Deleted {tagName}": "Eliminato {tagName}", "Deleted {{tagName}}": "",
"Description": "Descrizione", "Description": "Descrizione",
"Notifications": "Notifiche desktop", "Didn't fully follow instructions": "",
"Disabled": "Disabilitato", "Disabled": "Disabilitato",
"Discover a modelfile": "Scopri un file modello", "Discover a modelfile": "Scopri un file modello",
"Discover a prompt": "Scopri un prompt", "Discover a prompt": "Scopri un prompt",
@ -113,18 +133,21 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "non effettua connessioni esterne e i tuoi dati rimangono al sicuro sul tuo server ospitato localmente.", "does not make any external connections, and your data stays securely on your locally hosted server.": "non effettua connessioni esterne e i tuoi dati rimangono al sicuro sul tuo server ospitato localmente.",
"Don't Allow": "Non consentire", "Don't Allow": "Non consentire",
"Don't have an account?": "Non hai un account?", "Don't have an account?": "Non hai un account?",
"Download as a File": "Scarica come file", "Don't like the style": "",
"Download": "",
"Download Database": "Scarica database", "Download Database": "Scarica database",
"Drop any files here to add to the conversation": "Trascina qui i file da aggiungere alla conversazione", "Drop any files here to add to the conversation": "Trascina qui i file da aggiungere alla conversazione",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ad esempio '30s','10m'. Le unità di tempo valide sono 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ad esempio '30s','10m'. Le unità di tempo valide sono 's', 'm', 'h'.",
"Edit": "",
"Edit Doc": "Modifica documento", "Edit Doc": "Modifica documento",
"Edit User": "Modifica utente", "Edit User": "Modifica utente",
"Email": "Email", "Email": "Email",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "Abilita cronologia chat", "Enable Chat History": "Abilita cronologia chat",
"Enable New Sign Ups": "Abilita nuove iscrizioni", "Enable New Sign Ups": "Abilita nuove iscrizioni",
"Enabled": "Abilitato", "Enabled": "Abilitato",
"Enter {{role}} message here": "Inserisci il messaggio per {{role}} qui", "Enter {{role}} message here": "Inserisci il messaggio per {{role}} qui",
"Enter API Key": "Inserisci la chiave API",
"Enter Chunk Overlap": "Inserisci la sovrapposizione chunk", "Enter Chunk Overlap": "Inserisci la sovrapposizione chunk",
"Enter Chunk Size": "Inserisci la dimensione chunk", "Enter Chunk Size": "Inserisci la dimensione chunk",
"Enter Image Size (e.g. 512x512)": "Inserisci la dimensione dell'immagine (ad esempio 512x512)", "Enter Image Size (e.g. 512x512)": "Inserisci la dimensione dell'immagine (ad esempio 512x512)",
@ -135,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "Inserisci Max Tokens (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "Inserisci Max Tokens (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "Inserisci il tag del modello (ad esempio {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "Inserisci il tag del modello (ad esempio {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "Inserisci il numero di passaggi (ad esempio 50)", "Enter Number of Steps (e.g. 50)": "Inserisci il numero di passaggi (ad esempio 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "Inserisci la sequenza di arresto", "Enter stop sequence": "Inserisci la sequenza di arresto",
"Enter Top K": "Inserisci Top K", "Enter Top K": "Inserisci Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Inserisci URL (ad esempio http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Inserisci URL (ad esempio http://127.0.0.1:7860/)",
@ -147,20 +171,29 @@
"Export Documents Mapping": "Esporta mappatura documenti", "Export Documents Mapping": "Esporta mappatura documenti",
"Export Modelfiles": "Esporta file modello", "Export Modelfiles": "Esporta file modello",
"Export Prompts": "Esporta prompt", "Export Prompts": "Esporta prompt",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "Impossibile leggere il contenuto degli appunti", "Failed to read clipboard contents": "Impossibile leggere il contenuto degli appunti",
"Feel free to add specific details": "",
"File Mode": "Modalità file", "File Mode": "Modalità file",
"File not found.": "File non trovato.", "File not found.": "File non trovato.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "",
"Focus chat input": "Metti a fuoco l'input della chat", "Focus chat input": "Metti a fuoco l'input della chat",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "Formatta le tue variabili usando parentesi quadre come questa:", "Format your variables using square brackets like this:": "Formatta le tue variabili usando parentesi quadre come questa:",
"From (Base Model)": "Da (modello base)", "From (Base Model)": "Da (modello base)",
"Fluidly stream large external response chunks": "Trasmetti in modo fluido blocchi di risposta esterni di grandi dimensioni", "Fluidly stream large external response chunks": "Trasmetti in modo fluido blocchi di risposta esterni di grandi dimensioni",
"Full Screen Mode": "Modalità a schermo intero", "Full Screen Mode": "Modalità a schermo intero",
"General": "Generale", "General": "Generale",
"General Settings": "Impostazioni generali", "General Settings": "Impostazioni generali",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "Ciao, {{name}}", "Hello, {{name}}": "Ciao, {{name}}",
"Hide": "Nascondi", "Hide": "Nascondi",
"Hide Additional Params": "Nascondi parametri aggiuntivi", "Hide Additional Params": "Nascondi parametri aggiuntivi",
"How can I help you today?": "Come posso aiutarti oggi?", "How can I help you today?": "Come posso aiutarti oggi?",
"Hybrid Search": "",
"Image Generation (Experimental)": "Generazione di immagini (sperimentale)", "Image Generation (Experimental)": "Generazione di immagini (sperimentale)",
"Image Generation Engine": "Motore di generazione immagini", "Image Generation Engine": "Motore di generazione immagini",
"Image Settings": "Impostazioni immagine", "Image Settings": "Impostazioni immagine",
@ -169,7 +202,7 @@
"Import Documents Mapping": "Importa mappatura documenti", "Import Documents Mapping": "Importa mappatura documenti",
"Import Modelfiles": "Importa file modello", "Import Modelfiles": "Importa file modello",
"Import Prompts": "Importa prompt", "Import Prompts": "Importa prompt",
"Include --api flag when running stable-diffusion-webui": "Includi il flag --api quando esegui stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "",
"Interface": "Interfaccia", "Interface": "Interfaccia",
"join our Discord for help.": "unisciti al nostro Discord per ricevere aiuto.", "join our Discord for help.": "unisciti al nostro Discord per ricevere aiuto.",
"JSON": "JSON", "JSON": "JSON",
@ -178,6 +211,7 @@
"Keep Alive": "Mantieni attivo", "Keep Alive": "Mantieni attivo",
"Keyboard shortcuts": "Scorciatoie da tastiera", "Keyboard shortcuts": "Scorciatoie da tastiera",
"Language": "Lingua", "Language": "Lingua",
"Last Active": "",
"Light": "Chiaro", "Light": "Chiaro",
"OLED Dark": "OLED scuro", "OLED Dark": "OLED scuro",
"Listening...": "Ascolto...", "Listening...": "Ascolto...",
@ -193,10 +227,12 @@
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "MMMM DD, YYYY": "MMMM DD, YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "Il modello '{{modelName}}' è stato scaricato con successo.", "Model '{{modelName}}' has been successfully downloaded.": "Il modello '{{modelName}}' è stato scaricato con successo.",
"Model '{{modelTag}}' is already in queue for downloading.": "Il modello '{{modelTag}}' è già in coda per il download.", "Model '{{modelTag}}' is already in queue for downloading.": "Il modello '{{modelTag}}' è già in coda per il download.",
"Model {{modelId}} not found": "Modello {{modelId}} non trovato", "Model {{modelId}} not found": "Modello {{modelId}} non trovato",
"Model {{modelName}} already exists.": "Il modello {{modelName}} esiste già.", "Model {{modelName}} already exists.": "Il modello {{modelName}} esiste già.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Name": "Nome modello", "Model Name": "Nome modello",
"Model not selected": "Modello non selezionato", "Model not selected": "Modello non selezionato",
"Model Tag Name": "Nome tag del modello", "Model Tag Name": "Nome tag del modello",
@ -207,6 +243,7 @@
"Modelfile Content": "Contenuto del file modello", "Modelfile Content": "Contenuto del file modello",
"Modelfiles": "File modello", "Modelfiles": "File modello",
"Models": "Modelli", "Models": "Modelli",
"More": "",
"My Documents": "I miei documenti", "My Documents": "I miei documenti",
"My Modelfiles": "I miei file modello", "My Modelfiles": "I miei file modello",
"My Prompts": "I miei prompt", "My Prompts": "I miei prompt",
@ -215,10 +252,14 @@
"Name your modelfile": "Assegna un nome al tuo file modello", "Name your modelfile": "Assegna un nome al tuo file modello",
"New Chat": "Nuova chat", "New Chat": "Nuova chat",
"New Password": "Nuova password", "New Password": "Nuova password",
"Not factually correct": "",
"Not sure what to add?": "Non sei sicuro di cosa aggiungere?", "Not sure what to add?": "Non sei sicuro di cosa aggiungere?",
"Not sure what to write? Switch to": "Non sei sicuro di cosa scrivere? Passa a", "Not sure what to write? Switch to": "Non sei sicuro di cosa scrivere? Passa a",
"Notifications": "Notifiche desktop",
"Off": "Disattivato", "Off": "Disattivato",
"Okay, Let's Go!": "Ok, andiamo!", "Okay, Let's Go!": "Ok, andiamo!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "URL base Ollama", "Ollama Base URL": "URL base Ollama",
"Ollama Version": "Versione Ollama", "Ollama Version": "Versione Ollama",
"On": "Attivato", "On": "Attivato",
@ -231,12 +272,16 @@
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "Open AI (Dall-E)", "Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "Apri nuova chat", "Open new chat": "Apri nuova chat",
"OpenAI": "",
"OpenAI API": "API OpenAI", "OpenAI API": "API OpenAI",
"OpenAI API Key": "Chiave API OpenAI", "OpenAI API Config": "",
"OpenAI API Key is required.": "La chiave API OpenAI è obbligatoria.", "OpenAI API Key is required.": "La chiave API OpenAI è obbligatoria.",
"OpenAI URL/Key required.": "",
"or": "o", "or": "o",
"Other": "",
"Parameters": "Parametri", "Parameters": "Parametri",
"Password": "Password", "Password": "Password",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "Estrazione immagini PDF (OCR)", "PDF Extract Images (OCR)": "Estrazione immagini PDF (OCR)",
"pending": "in sospeso", "pending": "in sospeso",
"Permission denied when accessing microphone: {{error}}": "Autorizzazione negata durante l'accesso al microfono: {{error}}", "Permission denied when accessing microphone: {{error}}": "Autorizzazione negata durante l'accesso al microfono: {{error}}",
@ -251,12 +296,18 @@
"Query Params": "Parametri query", "Query Params": "Parametri query",
"RAG Template": "Modello RAG", "RAG Template": "Modello RAG",
"Raw Format": "Formato raw", "Raw Format": "Formato raw",
"Read Aloud": "",
"Record voice": "Registra voce", "Record voice": "Registra voce",
"Redirecting you to OpenWebUI Community": "Reindirizzamento alla comunità OpenWebUI", "Redirecting you to OpenWebUI Community": "Reindirizzamento alla comunità OpenWebUI",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "Note di rilascio", "Release Notes": "Note di rilascio",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "Ripeti ultimi N", "Repeat Last N": "Ripeti ultimi N",
"Repeat Penalty": "Penalità di ripetizione", "Repeat Penalty": "Penalità di ripetizione",
"Request Mode": "Modalità richiesta", "Request Mode": "Modalità richiesta",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Reimposta archivio vettoriale", "Reset Vector Storage": "Reimposta archivio vettoriale",
"Response AutoCopy to Clipboard": "Copia automatica della risposta negli appunti", "Response AutoCopy to Clipboard": "Copia automatica della risposta negli appunti",
"Role": "Ruolo", "Role": "Ruolo",
@ -271,6 +322,7 @@
"Scan complete!": "Scansione completata!", "Scan complete!": "Scansione completata!",
"Scan for documents from {{path}}": "Cerca documenti da {{path}}", "Scan for documents from {{path}}": "Cerca documenti da {{path}}",
"Search": "Cerca", "Search": "Cerca",
"Search a model": "",
"Search Documents": "Cerca documenti", "Search Documents": "Cerca documenti",
"Search Prompts": "Cerca prompt", "Search Prompts": "Cerca prompt",
"See readme.md for instructions": "Vedi readme.md per le istruzioni", "See readme.md for instructions": "Vedi readme.md per le istruzioni",
@ -290,37 +342,46 @@
"Set Voice": "Imposta voce", "Set Voice": "Imposta voce",
"Settings": "Impostazioni", "Settings": "Impostazioni",
"Settings saved successfully!": "Impostazioni salvate con successo!", "Settings saved successfully!": "Impostazioni salvate con successo!",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "Condividi con la comunità OpenWebUI", "Share to OpenWebUI Community": "Condividi con la comunità OpenWebUI",
"short-summary": "riassunto-breve", "short-summary": "riassunto-breve",
"Show": "Mostra", "Show": "Mostra",
"Show Additional Params": "Mostra parametri aggiuntivi", "Show Additional Params": "Mostra parametri aggiuntivi",
"Show shortcuts": "Mostra", "Show shortcuts": "Mostra",
"Showcased creativity": "",
"sidebar": "barra laterale", "sidebar": "barra laterale",
"Sign in": "Accedi", "Sign in": "Accedi",
"Sign Out": "Esci", "Sign Out": "Esci",
"Sign up": "Registrati", "Sign up": "Registrati",
"Signing in": "",
"Speech recognition error: {{error}}": "Errore di riconoscimento vocale: {{error}}", "Speech recognition error: {{error}}": "Errore di riconoscimento vocale: {{error}}",
"Speech-to-Text Engine": "Motore da voce a testo", "Speech-to-Text Engine": "Motore da voce a testo",
"SpeechRecognition API is not supported in this browser.": "L'API SpeechRecognition non è supportata in questo browser.", "SpeechRecognition API is not supported in this browser.": "L'API SpeechRecognition non è supportata in questo browser.",
"Stop Sequence": "Sequenza di arresto", "Stop Sequence": "Sequenza di arresto",
"STT Settings": "Impostazioni STT", "STT Settings": "Impostazioni STT",
"Submit": "Invia", "Submit": "Invia",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "Successo", "Success": "Successo",
"Successfully updated.": "Aggiornato con successo.", "Successfully updated.": "Aggiornato con successo.",
"Sync All": "Sincronizza tutto", "Sync All": "Sincronizza tutto",
"System": "Sistema", "System": "Sistema",
"System Prompt": "Prompt di sistema", "System Prompt": "Prompt di sistema",
"Tags": "Tag", "Tags": "Tag",
"Tell us more:": "",
"Temperature": "Temperatura", "Temperature": "Temperatura",
"Template": "Modello", "Template": "Modello",
"Text Completion": "Completamento del testo", "Text Completion": "Completamento del testo",
"Text-to-Speech Engine": "Motore da testo a voce", "Text-to-Speech Engine": "Motore da testo a voce",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "",
"Theme": "Tema", "Theme": "Tema",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Ciò garantisce che le tue preziose conversazioni siano salvate in modo sicuro nel tuo database backend. Grazie!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Ciò garantisce che le tue preziose conversazioni siano salvate in modo sicuro nel tuo database backend. Grazie!",
"This setting does not sync across browsers or devices.": "Questa impostazione non si sincronizza tra browser o dispositivi.", "This setting does not sync across browsers or devices.": "Questa impostazione non si sincronizza tra browser o dispositivi.",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Suggerimento: aggiorna più slot di variabili consecutivamente premendo il tasto tab nell'input della chat dopo ogni sostituzione.", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Suggerimento: aggiorna più slot di variabili consecutivamente premendo il tasto tab nell'input della chat dopo ogni sostituzione.",
"Title": "Titolo", "Title": "Titolo",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "Generazione automatica del titolo", "Title Auto-Generation": "Generazione automatica del titolo",
"Title Generation Prompt": "Prompt di generazione del titolo", "Title Generation Prompt": "Prompt di generazione del titolo",
"to": "a", "to": "a",
@ -336,13 +397,19 @@
"Type Hugging Face Resolve (Download) URL": "Digita l'URL di Hugging Face Resolve (Download)", "Type Hugging Face Resolve (Download) URL": "Digita l'URL di Hugging Face Resolve (Download)",
"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Si è verificato un problema durante la connessione a {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Si è verificato un problema durante la connessione a {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipo di file sconosciuto '{{file_type}}', ma accettato e trattato come testo normale", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipo di file sconosciuto '{{file_type}}', ma accettato e trattato come testo normale",
"Update and Copy Link": "",
"Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "Aggiorna password", "Update password": "Aggiorna password",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "Carica un modello GGUF", "Upload a GGUF model": "Carica un modello GGUF",
"Upload files": "Carica file", "Upload files": "Carica file",
"Upload Progress": "Avanzamento caricamento", "Upload Progress": "Avanzamento caricamento",
"URL Mode": "Modalità URL", "URL Mode": "Modalità URL",
"Use '#' in the prompt input to load and select your documents.": "Usa '#' nell'input del prompt per caricare e selezionare i tuoi documenti.", "Use '#' in the prompt input to load and select your documents.": "Usa '#' nell'input del prompt per caricare e selezionare i tuoi documenti.",
"Use Gravatar": "Usa Gravatar", "Use Gravatar": "Usa Gravatar",
"Use Initials": "",
"user": "utente", "user": "utente",
"User Permissions": "Autorizzazioni utente", "User Permissions": "Autorizzazioni utente",
"Users": "Utenti", "Users": "Utenti",
@ -351,7 +418,9 @@
"variable": "variabile", "variable": "variabile",
"variable to have them replaced with clipboard content.": "variabile per farli sostituire con il contenuto degli appunti.", "variable to have them replaced with clipboard content.": "variabile per farli sostituire con il contenuto degli appunti.",
"Version": "Versione", "Version": "Versione",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web", "Web": "Web",
"Webhook URL": "",
"WebUI Add-ons": "Componenti aggiuntivi WebUI", "WebUI Add-ons": "Componenti aggiuntivi WebUI",
"WebUI Settings": "Impostazioni WebUI", "WebUI Settings": "Impostazioni WebUI",
"WebUI will make requests to": "WebUI effettuerà richieste a", "WebUI will make requests to": "WebUI effettuerà richieste a",

View file

@ -1,14 +1,15 @@
{ {
"'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'s', 'm', 'h', 'd', 'w' または '-1' で無期限。", "'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'s', 'm', 'h', 'd', 'w' または '-1' で無期限。",
"(Beta)": "(ベータ版)", "(Beta)": "(ベータ版)",
"(e.g. sh webui.sh --api)": "(例: sh webui.sh --api)", "(e.g. `sh webui.sh --api`)": "",
"(latest)": "(最新)", "(latest)": "(最新)",
"{{modelName}} is thinking...": "{{modelName}} は思考中です...", "{{modelName}} is thinking...": "{{modelName}} は思考中です...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}} バックエンドが必要です", "{{webUIName}} Backend Required": "{{webUIName}} バックエンドが必要です",
"a user": "ユーザー", "a user": "ユーザー",
"About": "概要", "About": "概要",
"Account": "アカウント", "Account": "アカウント",
"Action": "アクション", "Accurate information": "",
"Add a model": "モデルを追加", "Add a model": "モデルを追加",
"Add a model tag name": "モデルタグ名を追加", "Add a model tag name": "モデルタグ名を追加",
"Add a short description about what this modelfile does": "このモデルファイルの機能に関する簡単な説明を追加", "Add a short description about what this modelfile does": "このモデルファイルの機能に関する簡単な説明を追加",
@ -17,7 +18,8 @@
"Add Docs": "ドキュメントを追加", "Add Docs": "ドキュメントを追加",
"Add Files": "ファイルを追加", "Add Files": "ファイルを追加",
"Add message": "メッセージを追加", "Add message": "メッセージを追加",
"add tags": "タグを追加", "Add Model": "",
"Add Tags": "タグを追加",
"Adjusting these settings will apply changes universally to all users.": "これらの設定を調整すると、すべてのユーザーに普遍的に変更が適用されます。", "Adjusting these settings will apply changes universally to all users.": "これらの設定を調整すると、すべてのユーザーに普遍的に変更が適用されます。",
"admin": "管理者", "admin": "管理者",
"Admin Panel": "管理者パネル", "Admin Panel": "管理者パネル",
@ -33,9 +35,14 @@
"and": "および", "and": "および",
"API Base URL": "API ベース URL", "API Base URL": "API ベース URL",
"API Key": "API キー", "API Key": "API キー",
"API Key created.": "",
"API keys": "",
"API RPM": "API RPM", "API RPM": "API RPM",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "が許可されています - 次のように入力してこのコマンドをアクティブ化します", "are allowed - Activate this command by typing": "が許可されています - 次のように入力してこのコマンドをアクティブ化します",
"Are you sure?": "よろしいですか?", "Are you sure?": "よろしいですか?",
"Attention to detail": "",
"Audio": "オーディオ", "Audio": "オーディオ",
"Auto-playback response": "応答の自動再生", "Auto-playback response": "応答の自動再生",
"Auto-send input after 3 sec.": "3 秒後に自動的に出力を送信", "Auto-send input after 3 sec.": "3 秒後に自動的に出力を送信",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ベース URL が必要です。", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ベース URL が必要です。",
"available!": "利用可能!", "available!": "利用可能!",
"Back": "戻る", "Back": "戻る",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "ビルダーモード", "Builder Mode": "ビルダーモード",
"Cancel": "キャンセル", "Cancel": "キャンセル",
"Categories": "カテゴリ", "Categories": "カテゴリ",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "ユーザーの役割を変更するには、ユーザー役割ボタンをクリックしてください。", "Click on the user role button to change a user's role.": "ユーザーの役割を変更するには、ユーザー役割ボタンをクリックしてください。",
"Close": "閉じる", "Close": "閉じる",
"Collection": "コレクション", "Collection": "コレクション",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "コマンド", "Command": "コマンド",
"Confirm Password": "パスワードを確認", "Confirm Password": "パスワードを確認",
"Connections": "接続", "Connections": "接続",
"Content": "コンテンツ", "Content": "コンテンツ",
"Context Length": "コンテキストの長さ", "Context Length": "コンテキストの長さ",
"Continue Response": "",
"Conversation Mode": "会話モード", "Conversation Mode": "会話モード",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "最後のコードブロックをコピー", "Copy last code block": "最後のコードブロックをコピー",
"Copy last response": "最後の応答をコピー", "Copy last response": "最後の応答をコピー",
"Copy Link": "",
"Copying to clipboard was successful!": "クリップボードへのコピーが成功しました!", "Copying to clipboard was successful!": "クリップボードへのコピーが成功しました!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "次のクエリの見出しとして、3〜5語の簡潔なフレーズを作成してください。3〜5語の制限を厳守し、「タイトル」という単語の使用を避けてください。", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "次のクエリの見出しとして、3〜5語の簡潔なフレーズを作成してください。3〜5語の制限を厳守し、「タイトル」という単語の使用を避けてください。",
"Create a modelfile": "モデルファイルを作成", "Create a modelfile": "モデルファイルを作成",
"Create Account": "アカウントを作成", "Create Account": "アカウントを作成",
"Created at": "作成日時", "Created at": "作成日時",
"Created by": "作成者", "Created At": "",
"Current Model": "現在のモデル", "Current Model": "現在のモデル",
"Current Password": "現在のパスワード", "Current Password": "現在のパスワード",
"Custom": "カスタム", "Custom": "カスタム",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "デフォルト", "Default": "デフォルト",
"Default (Automatic1111)": "デフォルト (Automatic1111)", "Default (Automatic1111)": "デフォルト (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "デフォルト (Web API)", "Default (Web API)": "デフォルト (Web API)",
"Default model updated": "デフォルトモデルが更新されました", "Default model updated": "デフォルトモデルが更新されました",
"Default Prompt Suggestions": "デフォルトのプロンプトの提案", "Default Prompt Suggestions": "デフォルトのプロンプトの提案",
"Default User Role": "デフォルトのユーザー役割", "Default User Role": "デフォルトのユーザー役割",
"delete": "削除", "delete": "削除",
"Delete": "",
"Delete a model": "モデルを削除", "Delete a model": "モデルを削除",
"Delete chat": "チャットを削除", "Delete chat": "チャットを削除",
"Delete Chat": "",
"Delete Chats": "チャットを削除", "Delete Chats": "チャットを削除",
"Delete User": "",
"Deleted {{deleteModelTag}}": "{{deleteModelTag}} を削除しました", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} を削除しました",
"Deleted {tagName}": "{tagName} を削除しました", "Deleted {{tagName}}": "",
"Description": "説明", "Description": "説明",
"Notifications": "デスクトップ通知", "Didn't fully follow instructions": "",
"Disabled": "無効", "Disabled": "無効",
"Discover a modelfile": "モデルファイルを見つける", "Discover a modelfile": "モデルファイルを見つける",
"Discover a prompt": "プロンプトを見つける", "Discover a prompt": "プロンプトを見つける",
@ -113,18 +133,21 @@
"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?": "アカウントをお持ちではありませんか?",
"Download as a File": "ファイルとしてダウンロード", "Don't like the style": "",
"Download": "",
"Download Database": "データベースをダウンロード", "Download Database": "データベースをダウンロード",
"Drop any files here to add to the conversation": "会話を追加するには、ここにファイルをドロップしてください", "Drop any files here to add to the conversation": "会話を追加するには、ここにファイルをドロップしてください",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例: '30秒'、'10分'。有効な時間単位は '秒'、'分'、'時間' です。", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例: '30秒'、'10分'。有効な時間単位は '秒'、'分'、'時間' です。",
"Edit": "",
"Edit Doc": "ドキュメントを編集", "Edit Doc": "ドキュメントを編集",
"Edit User": "ユーザーを編集", "Edit User": "ユーザーを編集",
"Email": "メールアドレス", "Email": "メールアドレス",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "チャット履歴を有効化", "Enable Chat History": "チャット履歴を有効化",
"Enable New Sign Ups": "新規登録を有効化", "Enable New Sign Ups": "新規登録を有効化",
"Enabled": "有効", "Enabled": "有効",
"Enter {{role}} message here": "{{role}} メッセージをここに入力してください", "Enter {{role}} message here": "{{role}} メッセージをここに入力してください",
"Enter API Key": "API キーを入力してください",
"Enter Chunk Overlap": "チャンクオーバーラップを入力してください", "Enter Chunk Overlap": "チャンクオーバーラップを入力してください",
"Enter Chunk Size": "チャンクサイズを入力してください", "Enter Chunk Size": "チャンクサイズを入力してください",
"Enter Image Size (e.g. 512x512)": "画像サイズを入力してください (例: 512x512)", "Enter Image Size (e.g. 512x512)": "画像サイズを入力してください (例: 512x512)",
@ -135,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "最大トークン数を入力してください (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "最大トークン数を入力してください (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "モデルタグを入力してください (例: {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "モデルタグを入力してください (例: {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "ステップ数を入力してください (例: 50)", "Enter Number of Steps (e.g. 50)": "ステップ数を入力してください (例: 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "ストップシーケンスを入力してください", "Enter stop sequence": "ストップシーケンスを入力してください",
"Enter Top K": "トップ K を入力してください", "Enter Top K": "トップ K を入力してください",
"Enter URL (e.g. http://127.0.0.1:7860/)": "URL を入力してください (例: http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "URL を入力してください (例: http://127.0.0.1:7860/)",
@ -147,20 +171,29 @@
"Export Documents Mapping": "ドキュメントマッピングをエクスポート", "Export Documents Mapping": "ドキュメントマッピングをエクスポート",
"Export Modelfiles": "モデルファイルをエクスポート", "Export Modelfiles": "モデルファイルをエクスポート",
"Export Prompts": "プロンプトをエクスポート", "Export Prompts": "プロンプトをエクスポート",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "クリップボードの内容を読み取れませんでした", "Failed to read clipboard contents": "クリップボードの内容を読み取れませんでした",
"Feel free to add specific details": "",
"File Mode": "ファイルモード", "File Mode": "ファイルモード",
"File not found.": "ファイルが見つかりません。", "File not found.": "ファイルが見つかりません。",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "",
"Focus chat input": "チャット入力をフォーカス", "Focus chat input": "チャット入力をフォーカス",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "次のように角括弧を使用して変数をフォーマットします。", "Format your variables using square brackets like this:": "次のように角括弧を使用して変数をフォーマットします。",
"From (Base Model)": "From (ベースモデル)", "From (Base Model)": "From (ベースモデル)",
"Fluidly stream large external response chunks": "大規模な外部応答チャンクを流動的にストリーミングする", "Fluidly stream large external response chunks": "大規模な外部応答チャンクを流動的にストリーミングする",
"Full Screen Mode": "フルスクリーンモード", "Full Screen Mode": "フルスクリーンモード",
"General": "一般", "General": "一般",
"General Settings": "一般設定", "General Settings": "一般設定",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "こんにちは、{{name}} さん", "Hello, {{name}}": "こんにちは、{{name}} さん",
"Hide": "非表示", "Hide": "非表示",
"Hide Additional Params": "追加パラメーターを非表示", "Hide Additional Params": "追加パラメーターを非表示",
"How can I help you today?": "今日はどのようにお手伝いしましょうか?", "How can I help you today?": "今日はどのようにお手伝いしましょうか?",
"Hybrid Search": "",
"Image Generation (Experimental)": "画像生成 (実験的)", "Image Generation (Experimental)": "画像生成 (実験的)",
"Image Generation Engine": "画像生成エンジン", "Image Generation Engine": "画像生成エンジン",
"Image Settings": "画像設定", "Image Settings": "画像設定",
@ -169,7 +202,7 @@
"Import Documents Mapping": "ドキュメントマッピングをインポート", "Import Documents Mapping": "ドキュメントマッピングをインポート",
"Import Modelfiles": "モデルファイルをインポート", "Import Modelfiles": "モデルファイルをインポート",
"Import Prompts": "プロンプトをインポート", "Import Prompts": "プロンプトをインポート",
"Include --api flag when running stable-diffusion-webui": "stable-diffusion-webui を実行するときに --api フラグを含める", "Include `--api` flag when running stable-diffusion-webui": "",
"Interface": "インターフェース", "Interface": "インターフェース",
"join our Discord for help.": "ヘルプについては、Discord に参加してください。", "join our Discord for help.": "ヘルプについては、Discord に参加してください。",
"JSON": "JSON", "JSON": "JSON",
@ -178,6 +211,7 @@
"Keep Alive": "キープアライブ", "Keep Alive": "キープアライブ",
"Keyboard shortcuts": "キーボードショートカット", "Keyboard shortcuts": "キーボードショートカット",
"Language": "言語", "Language": "言語",
"Last Active": "",
"Light": "ライト", "Light": "ライト",
"OLED Dark": "OLEDダーク", "OLED Dark": "OLEDダーク",
"Listening...": "聞いています...", "Listening...": "聞いています...",
@ -193,10 +227,12 @@
"Mirostat Eta": "ミロスタット Eta", "Mirostat Eta": "ミロスタット Eta",
"Mirostat Tau": "ミロスタット Tau", "Mirostat Tau": "ミロスタット Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "MMMM DD, YYYY": "MMMM DD, YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "モデル '{{modelName}}' が正常にダウンロードされました。", "Model '{{modelName}}' has been successfully downloaded.": "モデル '{{modelName}}' が正常にダウンロードされました。",
"Model '{{modelTag}}' is already in queue for downloading.": "モデル '{{modelTag}}' はすでにダウンロード待ち行列に入っています。", "Model '{{modelTag}}' is already in queue for downloading.": "モデル '{{modelTag}}' はすでにダウンロード待ち行列に入っています。",
"Model {{modelId}} not found": "モデル {{modelId}} が見つかりません", "Model {{modelId}} not found": "モデル {{modelId}} が見つかりません",
"Model {{modelName}} already exists.": "モデル {{modelName}} はすでに存在します。", "Model {{modelName}} already exists.": "モデル {{modelName}} はすでに存在します。",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Name": "モデル名", "Model Name": "モデル名",
"Model not selected": "モデルが選択されていません", "Model not selected": "モデルが選択されていません",
"Model Tag Name": "モデルタグ名", "Model Tag Name": "モデルタグ名",
@ -207,6 +243,7 @@
"Modelfile Content": "モデルファイルの内容", "Modelfile Content": "モデルファイルの内容",
"Modelfiles": "モデルファイル", "Modelfiles": "モデルファイル",
"Models": "モデル", "Models": "モデル",
"More": "",
"My Documents": "マイ ドキュメント", "My Documents": "マイ ドキュメント",
"My Modelfiles": "マイ モデルファイル", "My Modelfiles": "マイ モデルファイル",
"My Prompts": "マイ プロンプト", "My Prompts": "マイ プロンプト",
@ -215,10 +252,14 @@
"Name your modelfile": "モデルファイルに名前を付ける", "Name your modelfile": "モデルファイルに名前を付ける",
"New Chat": "新しいチャット", "New Chat": "新しいチャット",
"New Password": "新しいパスワード", "New Password": "新しいパスワード",
"Not factually correct": "",
"Not sure what to add?": "何を追加すればよいかわからない?", "Not sure what to add?": "何を追加すればよいかわからない?",
"Not sure what to write? Switch to": "何を書けばよいかわからない? 次に切り替える", "Not sure what to write? Switch to": "何を書けばよいかわからない? 次に切り替える",
"Notifications": "デスクトップ通知",
"Off": "オフ", "Off": "オフ",
"Okay, Let's Go!": "OK、始めましょう", "Okay, Let's Go!": "OK、始めましょう",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "Ollama ベース URL", "Ollama Base URL": "Ollama ベース URL",
"Ollama Version": "Ollama バージョン", "Ollama Version": "Ollama バージョン",
"On": "オン", "On": "オン",
@ -231,15 +272,20 @@
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "Open AI (Dall-E)", "Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "新しいチャットを開く", "Open new chat": "新しいチャットを開く",
"OpenAI": "",
"OpenAI API": "OpenAI API", "OpenAI API": "OpenAI API",
"OpenAI API Key": "OpenAI API キー", "OpenAI API Config": "",
"OpenAI API Key is required.": "OpenAI API キーが必要です。", "OpenAI API Key is required.": "OpenAI API キーが必要です。",
"OpenAI URL/Key required.": "",
"or": "または", "or": "または",
"Other": "",
"Parameters": "パラメーター", "Parameters": "パラメーター",
"Password": "パスワード", "Password": "パスワード",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "PDF 画像抽出 (OCR)", "PDF Extract Images (OCR)": "PDF 画像抽出 (OCR)",
"pending": "保留中", "pending": "保留中",
"Permission denied when accessing microphone: {{error}}": "マイクへのアクセス時に権限が拒否されました: {{error}}", "Permission denied when accessing microphone: {{error}}": "マイクへのアクセス時に権限が拒否されました: {{error}}",
"Plain text (.txt)": "",
"Playground": "プレイグラウンド", "Playground": "プレイグラウンド",
"Archived Chats": "チャット記録", "Archived Chats": "チャット記録",
"Profile": "プロフィール", "Profile": "プロフィール",
@ -251,12 +297,18 @@
"Query Params": "クエリパラメーター", "Query Params": "クエリパラメーター",
"RAG Template": "RAG テンプレート", "RAG Template": "RAG テンプレート",
"Raw Format": "Raw 形式", "Raw Format": "Raw 形式",
"Read Aloud": "",
"Record voice": "音声を録音", "Record voice": "音声を録音",
"Redirecting you to OpenWebUI Community": "OpenWebUI コミュニティにリダイレクトしています", "Redirecting you to OpenWebUI Community": "OpenWebUI コミュニティにリダイレクトしています",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "リリースノート", "Release Notes": "リリースノート",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "最後の N を繰り返す", "Repeat Last N": "最後の N を繰り返す",
"Repeat Penalty": "繰り返しペナルティ", "Repeat Penalty": "繰り返しペナルティ",
"Request Mode": "リクエストモード", "Request Mode": "リクエストモード",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "ベクトルストレージをリセット", "Reset Vector Storage": "ベクトルストレージをリセット",
"Response AutoCopy to Clipboard": "クリップボードへの応答の自動コピー", "Response AutoCopy to Clipboard": "クリップボードへの応答の自動コピー",
"Role": "役割", "Role": "役割",
@ -271,6 +323,7 @@
"Scan complete!": "スキャン完了!", "Scan complete!": "スキャン完了!",
"Scan for documents from {{path}}": "{{path}} からドキュメントをスキャン", "Scan for documents from {{path}}": "{{path}} からドキュメントをスキャン",
"Search": "検索", "Search": "検索",
"Search a model": "",
"Search Documents": "ドキュメントを検索", "Search Documents": "ドキュメントを検索",
"Search Prompts": "プロンプトを検索", "Search Prompts": "プロンプトを検索",
"See readme.md for instructions": "手順については readme.md を参照してください", "See readme.md for instructions": "手順については readme.md を参照してください",
@ -290,37 +343,46 @@
"Set Voice": "音声を設定", "Set Voice": "音声を設定",
"Settings": "設定", "Settings": "設定",
"Settings saved successfully!": "設定が正常に保存されました!", "Settings saved successfully!": "設定が正常に保存されました!",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "OpenWebUI コミュニティに共有", "Share to OpenWebUI Community": "OpenWebUI コミュニティに共有",
"short-summary": "short-summary", "short-summary": "short-summary",
"Show": "表示", "Show": "表示",
"Show Additional Params": "追加パラメーターを表示", "Show Additional Params": "追加パラメーターを表示",
"Show shortcuts": "表示", "Show shortcuts": "表示",
"Showcased creativity": "",
"sidebar": "サイドバー", "sidebar": "サイドバー",
"Sign in": "サインイン", "Sign in": "サインイン",
"Sign Out": "サインアウト", "Sign Out": "サインアウト",
"Sign up": "サインアップ", "Sign up": "サインアップ",
"Signing in": "",
"Speech recognition error: {{error}}": "音声認識エラー: {{error}}", "Speech recognition error: {{error}}": "音声認識エラー: {{error}}",
"Speech-to-Text Engine": "音声テキスト変換エンジン", "Speech-to-Text Engine": "音声テキスト変換エンジン",
"SpeechRecognition API is not supported in this browser.": "このブラウザでは SpeechRecognition API がサポートされていません。", "SpeechRecognition API is not supported in this browser.": "このブラウザでは SpeechRecognition API がサポートされていません。",
"Stop Sequence": "ストップシーケンス", "Stop Sequence": "ストップシーケンス",
"STT Settings": "STT 設定", "STT Settings": "STT 設定",
"Submit": "送信", "Submit": "送信",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "成功", "Success": "成功",
"Successfully updated.": "正常に更新されました。", "Successfully updated.": "正常に更新されました。",
"Sync All": "すべてを同期", "Sync All": "すべてを同期",
"System": "システム", "System": "システム",
"System Prompt": "システムプロンプト", "System Prompt": "システムプロンプト",
"Tags": "タグ", "Tags": "タグ",
"Tell us more:": "",
"Temperature": "温度", "Temperature": "温度",
"Template": "テンプレート", "Template": "テンプレート",
"Text Completion": "テキスト補完", "Text Completion": "テキスト補完",
"Text-to-Speech Engine": "テキスト音声変換エンジン", "Text-to-Speech Engine": "テキスト音声変換エンジン",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "",
"Theme": "テーマ", "Theme": "テーマ",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "これは、貴重な会話がバックエンドデータベースに安全に保存されることを保証します。ありがとうございます!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "これは、貴重な会話がバックエンドデータベースに安全に保存されることを保証します。ありがとうございます!",
"This setting does not sync across browsers or devices.": "この設定は、ブラウザやデバイス間で同期されません。", "This setting does not sync across browsers or devices.": "この設定は、ブラウザやデバイス間で同期されません。",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "ヒント: 各置換後にチャット入力で Tab キーを押すことで、複数の変数スロットを連続して更新できます。", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "ヒント: 各置換後にチャット入力で Tab キーを押すことで、複数の変数スロットを連続して更新できます。",
"Title": "タイトル", "Title": "タイトル",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "タイトル自動生成", "Title Auto-Generation": "タイトル自動生成",
"Title Generation Prompt": "タイトル生成プロンプト", "Title Generation Prompt": "タイトル生成プロンプト",
"to": "まで", "to": "まで",
@ -336,13 +398,19 @@
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ダウンロード) URL を入力してください", "Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ダウンロード) URL を入力してください",
"Uh-oh! There was an issue connecting to {{provider}}.": "おっと! {{provider}} への接続に問題が発生しました。", "Uh-oh! There was an issue connecting to {{provider}}.": "おっと! {{provider}} への接続に問題が発生しました。",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "不明なファイルタイプ '{{file_type}}' ですが、プレーンテキストとして受け入れて処理します", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "不明なファイルタイプ '{{file_type}}' ですが、プレーンテキストとして受け入れて処理します",
"Update and Copy Link": "",
"Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "パスワードを更新", "Update password": "パスワードを更新",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "GGUF モデルをアップロード", "Upload a GGUF model": "GGUF モデルをアップロード",
"Upload files": "ファイルをアップロード", "Upload files": "ファイルをアップロード",
"Upload Progress": "アップロードの進行状況", "Upload Progress": "アップロードの進行状況",
"URL Mode": "URL モード", "URL Mode": "URL モード",
"Use '#' in the prompt input to load and select your documents.": "プロンプト入力で '#' を使用して、ドキュメントを読み込んで選択します。", "Use '#' in the prompt input to load and select your documents.": "プロンプト入力で '#' を使用して、ドキュメントを読み込んで選択します。",
"Use Gravatar": "Gravatar を使用する", "Use Gravatar": "Gravatar を使用する",
"Use Initials": "",
"user": "ユーザー", "user": "ユーザー",
"User Permissions": "ユーザー権限", "User Permissions": "ユーザー権限",
"Users": "ユーザー", "Users": "ユーザー",
@ -351,7 +419,9 @@
"variable": "変数", "variable": "変数",
"variable to have them replaced with clipboard content.": "クリップボードの内容に置き換える変数。", "variable to have them replaced with clipboard content.": "クリップボードの内容に置き換える変数。",
"Version": "バージョン", "Version": "バージョン",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "ウェブ", "Web": "ウェブ",
"Webhook URL": "",
"WebUI Add-ons": "WebUI アドオン", "WebUI Add-ons": "WebUI アドオン",
"WebUI Settings": "WebUI 設定", "WebUI Settings": "WebUI 設定",
"WebUI will make requests to": "WebUI は次に対してリクエストを行います", "WebUI will make requests to": "WebUI は次に対してリクエストを行います",

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(მაგ. `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(მაგ. `sh webui.sh --api`)",
"(latest)": "(უახლესი)", "(latest)": "(უახლესი)",
"{{modelName}} is thinking...": "{{modelName}} ფიქრობს...", "{{modelName}} is thinking...": "{{modelName}} ფიქრობს...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}} საჭიროა ბექენდი", "{{webUIName}} Backend Required": "{{webUIName}} საჭიროა ბექენდი",
"a user": "მომხმარებელი", "a user": "მომხმარებელი",
"About": "შესახებ", "About": "შესახებ",
"Account": "ანგარიში", "Account": "ანგარიში",
"Action": "ქმედება", "Accurate information": "",
"Add a model": "მოდელის დამატება", "Add a model": "მოდელის დამატება",
"Add a model tag name": "მოდელის ტეგის სახელის დამატება", "Add a model tag name": "მოდელის ტეგის სახელის დამატება",
"Add a short description about what this modelfile does": "დაამატე მოკლე აღწერა იმის შესახებ, თუ რას აკეთებს ეს მოდელური ფაილი", "Add a short description about what this modelfile does": "დაამატე მოკლე აღწერა იმის შესახებ, თუ რას აკეთებს ეს მოდელური ფაილი",
@ -17,7 +18,8 @@
"Add Docs": "დოკუმენტის დამატება", "Add Docs": "დოკუმენტის დამატება",
"Add Files": "ფაილების დამატება", "Add Files": "ფაილების დამატება",
"Add message": "შეტყობინების დამატება", "Add message": "შეტყობინების დამატება",
"add tags": "ტეგების დამატება", "Add Model": "",
"Add Tags": "ტეგების დამატება",
"Adjusting these settings will apply changes universally to all users.": "ამ პარამეტრების რეგულირება ცვლილებებს უნივერსალურად გამოიყენებს ყველა მომხმარებლისთვის", "Adjusting these settings will apply changes universally to all users.": "ამ პარამეტრების რეგულირება ცვლილებებს უნივერსალურად გამოიყენებს ყველა მომხმარებლისთვის",
"admin": "ადმინისტრატორი", "admin": "ადმინისტრატორი",
"Admin Panel": "ადმინ პანელი", "Admin Panel": "ადმინ პანელი",
@ -33,9 +35,14 @@
"and": "და", "and": "და",
"API Base URL": "API საბაზისო URL", "API Base URL": "API საბაზისო URL",
"API Key": "API გასაღები", "API Key": "API გასაღები",
"API Key created.": "",
"API keys": "",
"API RPM": "API RPM", "API RPM": "API RPM",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "დაშვებულია - ბრძანების გასააქტიურებლად აკრიფეთ:", "are allowed - Activate this command by typing": "დაშვებულია - ბრძანების გასააქტიურებლად აკრიფეთ:",
"Are you sure?": "დარწმუნებული ხარ?", "Are you sure?": "დარწმუნებული ხარ?",
"Attention to detail": "",
"Audio": "ხმოვანი", "Audio": "ხმოვანი",
"Auto-playback response": "ავტომატური დაკვრის პასუხი", "Auto-playback response": "ავტომატური დაკვრის პასუხი",
"Auto-send input after 3 sec.": "შეყვანის ავტომატური გაგზავნა 3 წამის შემდეგ ", "Auto-send input after 3 sec.": "შეყვანის ავტომატური გაგზავნა 3 წამის შემდეგ ",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 საბაზისო მისამართი აუცილებელია", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 საბაზისო მისამართი აუცილებელია",
"available!": "ხელმისაწვდომია!", "available!": "ხელმისაწვდომია!",
"Back": "უკან", "Back": "უკან",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "მოდელის შექმნა", "Builder Mode": "მოდელის შექმნა",
"Cancel": "გაუქმება", "Cancel": "გაუქმება",
"Categories": "კატეგორიები", "Categories": "კატეგორიები",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "დააკლიკეთ მომხმარებლის როლის ღილაკს რომ შეცვალოთ მომხმარების როლი", "Click on the user role button to change a user's role.": "დააკლიკეთ მომხმარებლის როლის ღილაკს რომ შეცვალოთ მომხმარების როლი",
"Close": "დახურვა", "Close": "დახურვა",
"Collection": "ნაკრები", "Collection": "ნაკრები",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "ბრძანება", "Command": "ბრძანება",
"Confirm Password": "პაროლის დამოწმება", "Confirm Password": "პაროლის დამოწმება",
"Connections": "კავშირები", "Connections": "კავშირები",
"Content": "კონტენტი", "Content": "კონტენტი",
"Context Length": "კონტექსტის სიგრძე", "Context Length": "კონტექსტის სიგრძე",
"Continue Response": "",
"Conversation Mode": "საუბრი რეჟიმი", "Conversation Mode": "საუბრი რეჟიმი",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "ბოლო ბლოკის კოპირება", "Copy last code block": "ბოლო ბლოკის კოპირება",
"Copy last response": "ბოლო პასუხის კოპირება", "Copy last response": "ბოლო პასუხის კოპირება",
"Copy Link": "",
"Copying to clipboard was successful!": "კლავიატურაზე კოპირება წარმატებით დასრულდა", "Copying to clipboard was successful!": "კლავიატურაზე კოპირება წარმატებით დასრულდა",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "შექმენით მოკლე, 3-5 სიტყვიანი ფრაზა, როგორც სათაური თქვენი შემდეგი შეკითხვისთვის, მკაცრად დაიცავით 3-5 სიტყვის ლიმიტი და მოერიდეთ გამოიყენოთ სიტყვა „სათაური“.", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "შექმენით მოკლე, 3-5 სიტყვიანი ფრაზა, როგორც სათაური თქვენი შემდეგი შეკითხვისთვის, მკაცრად დაიცავით 3-5 სიტყვის ლიმიტი და მოერიდეთ გამოიყენოთ სიტყვა „სათაური“.",
"Create a modelfile": "მოდელური ფაილის შექმნა", "Create a modelfile": "მოდელური ფაილის შექმნა",
"Create Account": "ანგარიშის შექმნა", "Create Account": "ანგარიშის შექმნა",
"Created at": "შექმნილია", "Created at": "შექმნილია",
"Created by": "ავტორი", "Created At": "",
"Current Model": "მიმდინარე მოდელი", "Current Model": "მიმდინარე მოდელი",
"Current Password": "მიმდინარე პაროლი", "Current Password": "მიმდინარე პაროლი",
"Custom": "საკუთარი", "Custom": "საკუთარი",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "დეფოლტი", "Default": "დეფოლტი",
"Default (Automatic1111)": "დეფოლტ (Automatic1111)", "Default (Automatic1111)": "დეფოლტ (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "დეფოლტ (Web API)", "Default (Web API)": "დეფოლტ (Web API)",
"Default model updated": "დეფოლტ მოდელი განახლებულია", "Default model updated": "დეფოლტ მოდელი განახლებულია",
"Default Prompt Suggestions": "", "Default Prompt Suggestions": "",
"Default User Role": "მომხმარებლის დეფოლტ როლი", "Default User Role": "მომხმარებლის დეფოლტ როლი",
"delete": "წაშლა", "delete": "წაშლა",
"Delete": "",
"Delete a model": "მოდელის წაშლა", "Delete a model": "მოდელის წაშლა",
"Delete chat": "შეტყობინების წაშლა", "Delete chat": "შეტყობინების წაშლა",
"Delete Chat": "",
"Delete Chats": "შეტყობინებების წაშლა", "Delete Chats": "შეტყობინებების წაშლა",
"Delete User": "",
"Deleted {{deleteModelTag}}": "{{deleteModelTag}} წაშლილია", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} წაშლილია",
"Deleted {tagName}": "{tagName} წაშლილია", "Deleted {{tagName}}": "",
"Description": "აღწერა", "Description": "აღწერა",
"Notifications": "შეტყობინება", "Didn't fully follow instructions": "",
"Disabled": "გაუქმებულია", "Disabled": "გაუქმებულია",
"Discover a modelfile": "აღმოაჩინეთ მოდელური ფაილი", "Discover a modelfile": "აღმოაჩინეთ მოდელური ფაილი",
"Discover a prompt": "აღმოაჩინეთ მოთხოვნა", "Discover a prompt": "აღმოაჩინეთ მოთხოვნა",
@ -113,19 +133,21 @@
"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?": "არ გაქვს ანგარიში?",
"Download as a File": "გადმოწერე როგორც ფაილი", "Don't like the style": "",
"Download": "",
"Download Database": "გადმოწერე მონაცემთა ბაზა", "Download Database": "გადმოწერე მონაცემთა ბაზა",
"Drop any files here to add to the conversation": "გადაიტანეთ ფაილები აქ, რათა დაამატოთ ისინი მიმოწერაში", "Drop any files here to add to the conversation": "გადაიტანეთ ფაილები აქ, რათა დაამატოთ ისინი მიმოწერაში",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "მაგალითად, '30წ', '10მ'. მოქმედი დროის ერთეულები: 'წ', 'წთ', 'სთ'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "მაგალითად, '30წ', '10მ'. მოქმედი დროის ერთეულები: 'წ', 'წთ', 'სთ'.",
"Edit": "",
"Edit Doc": "დოკუმენტის ედიტირება", "Edit Doc": "დოკუმენტის ედიტირება",
"Edit User": "მომხმარებლის ედიტირება", "Edit User": "მომხმარებლის ედიტირება",
"Email": "ელ-ფოსტა", "Email": "ელ-ფოსტა",
"Embedding model: {{embedding_model}}": "ჩაშენების მოდელი: {{embedding_model}}", "Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "მიმოწერის ისტორიის ჩართვა", "Enable Chat History": "მიმოწერის ისტორიის ჩართვა",
"Enable New Sign Ups": "ახალი რეგისტრაციების ჩართვა", "Enable New Sign Ups": "ახალი რეგისტრაციების ჩართვა",
"Enabled": "ჩართულია", "Enabled": "ჩართულია",
"Enter {{role}} message here": "შეიყვანე {{role}} შეტყობინება აქ", "Enter {{role}} message here": "შეიყვანე {{role}} შეტყობინება აქ",
"Enter API Key": "შეიყვანე API Key",
"Enter Chunk Overlap": "შეიყვანეთ ნაწილის გადახურვა", "Enter Chunk Overlap": "შეიყვანეთ ნაწილის გადახურვა",
"Enter Chunk Size": "შეიყვანე ბლოკის ზომა", "Enter Chunk Size": "შეიყვანე ბლოკის ზომა",
"Enter Image Size (e.g. 512x512)": "შეიყვანეთ სურათის ზომა (მაგ. 512x512)", "Enter Image Size (e.g. 512x512)": "შეიყვანეთ სურათის ზომა (მაგ. 512x512)",
@ -136,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "შეიყვანეთ მაქსიმალური ტოკენები (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "შეიყვანეთ მაქსიმალური ტოკენები (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "შეიყვანეთ მოდელის ტეგი (მაგ. {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "შეიყვანეთ მოდელის ტეგი (მაგ. {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "შეიყვანეთ ნაბიჯების რაოდენობა (მაგ. 50)", "Enter Number of Steps (e.g. 50)": "შეიყვანეთ ნაბიჯების რაოდენობა (მაგ. 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "შეიყვანეთ ტოპ თანმიმდევრობა", "Enter stop sequence": "შეიყვანეთ ტოპ თანმიმდევრობა",
"Enter Top K": "შეიყვანეთ Top K", "Enter Top K": "შეიყვანეთ Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "შეიყვანეთ მისამართი (მაგალითად http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "შეიყვანეთ მისამართი (მაგალითად http://127.0.0.1:7860/)",
@ -148,21 +171,29 @@
"Export Documents Mapping": "დოკუმენტების კავშირის ექსპორტი", "Export Documents Mapping": "დოკუმენტების კავშირის ექსპორტი",
"Export Modelfiles": "მოდელური ფაილების ექსპორტი", "Export Modelfiles": "მოდელური ფაილების ექსპორტი",
"Export Prompts": "მოთხოვნების ექსპორტი", "Export Prompts": "მოთხოვნების ექსპორტი",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "ბუფერში შიგთავსის წაკითხვა ვერ მოხერხდა", "Failed to read clipboard contents": "ბუფერში შიგთავსის წაკითხვა ვერ მოხერხდა",
"Feel free to add specific details": "",
"File Mode": "ფაილური რეჟიმი", "File Mode": "ფაილური რეჟიმი",
"File not found.": "ფაილი ვერ მოიძებნა", "File not found.": "ფაილი ვერ მოიძებნა",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "აღმოჩენილია თითის ანაბეჭდის გაყალბება: ინიციალების გამოყენება ავატარად შეუძლებელია. დეფოლტ პროფილის დეფოლტ სურათი.", "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "აღმოჩენილია თითის ანაბეჭდის გაყალბება: ინიციალების გამოყენება ავატარად შეუძლებელია. დეფოლტ პროფილის დეფოლტ სურათი.",
"Fluidly stream large external response chunks": "",
"Focus chat input": "ჩეთის შეყვანის ფოკუსი", "Focus chat input": "ჩეთის შეყვანის ფოკუსი",
"Followed instructions perfectly": "",
"Fluidly stream large external response chunks": "თხევადი ნაკადი დიდი გარე საპასუხო ნაწილაკების", "Fluidly stream large external response chunks": "თხევადი ნაკადი დიდი გარე საპასუხო ნაწილაკების",
"Format your variables using square brackets like this:": "დააფორმატეთ თქვენი ცვლადები კვადრატული ფრჩხილების გამოყენებით:", "Format your variables using square brackets like this:": "დააფორმატეთ თქვენი ცვლადები კვადრატული ფრჩხილების გამოყენებით:",
"From (Base Model)": "(საბაზო მოდელი) დან", "From (Base Model)": "(საბაზო მოდელი) დან",
"Full Screen Mode": "Სრული ეკრანის რეჟიმი", "Full Screen Mode": "Სრული ეკრანის რეჟიმი",
"General": "ზოგადი", "General": "ზოგადი",
"General Settings": "ზოგადი პარამეტრები", "General Settings": "ზოგადი პარამეტრები",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "გამარჯობა, {{name}}", "Hello, {{name}}": "გამარჯობა, {{name}}",
"Hide": "დამალვა", "Hide": "დამალვა",
"Hide Additional Params": "დამატებითი პარამეტრების დამალვა", "Hide Additional Params": "დამატებითი პარამეტრების დამალვა",
"How can I help you today?": "როგორ შემიძლია დაგეხმარო დღეს?", "How can I help you today?": "როგორ შემიძლია დაგეხმარო დღეს?",
"Hybrid Search": "",
"Image Generation (Experimental)": "სურათების გენერაცია (ექსპერიმენტული)", "Image Generation (Experimental)": "სურათების გენერაცია (ექსპერიმენტული)",
"Image Generation Engine": "სურათის გენერაციის ძრავა", "Image Generation Engine": "სურათის გენერაციის ძრავა",
"Image Settings": "სურათის პარამეტრები", "Image Settings": "სურათის პარამეტრები",
@ -180,6 +211,7 @@
"Keep Alive": "აქტიურად დატოვება", "Keep Alive": "აქტიურად დატოვება",
"Keyboard shortcuts": "კლავიატურის მალსახმობები", "Keyboard shortcuts": "კლავიატურის მალსახმობები",
"Language": "ენა", "Language": "ენა",
"Last Active": "",
"Light": "მსუბუქი", "Light": "მსუბუქი",
"OLED Dark": "OLED მუქი", "OLED Dark": "OLED მუქი",
"Listening...": "გისმენ...", "Listening...": "გისმენ...",
@ -195,10 +227,9 @@
"Mirostat Eta": "მიროსტატი ეტა", "Mirostat Eta": "მიროსტატი ეტა",
"Mirostat Tau": "მიროსტატი ტაუ", "Mirostat Tau": "მიროსტატი ტაუ",
"MMMM DD, YYYY": "თვე დღე, წელი", "MMMM DD, YYYY": "თვე დღე, წელი",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "მოდელი „{{modelName}}“ წარმატებით ჩამოიტვირთა.", "Model '{{modelName}}' has been successfully downloaded.": "მოდელი „{{modelName}}“ წარმატებით ჩამოიტვირთა.",
"Model '{{modelTag}}' is already in queue for downloading.": "მოდელი „{{modelTag}}“ უკვე ჩამოტვირთვის რიგშია.", "Model '{{modelTag}}' is already in queue for downloading.": "მოდელი „{{modelTag}}“ უკვე ჩამოტვირთვის რიგშია.",
"Model {{embedding_model}} update complete!": "მოდელის {{embedding_model}} განახლება დასრულდა!",
"Model {{embedding_model}} update failed or not required!": "მოდელის {{embedding_model}} განახლება ვერ მოხერხდა ან არ არის საჭირო!",
"Model {{modelId}} not found": "მოდელი {{modelId}} ვერ მოიძებნა", "Model {{modelId}} not found": "მოდელი {{modelId}} ვერ მოიძებნა",
"Model {{modelName}} already exists.": "მოდელი {{modelName}} უკვე არსებობს.", "Model {{modelName}} already exists.": "მოდელი {{modelName}} უკვე არსებობს.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "აღმოჩენილია მოდელის ფაილური სისტემის გზა. განახლებისთვის საჭიროა მოდელის მოკლე სახელი, გაგრძელება შეუძლებელია.", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "აღმოჩენილია მოდელის ფაილური სისტემის გზა. განახლებისთვის საჭიროა მოდელის მოკლე სახელი, გაგრძელება შეუძლებელია.",
@ -212,6 +243,7 @@
"Modelfile Content": "მოდელური ფაილის კონტენტი", "Modelfile Content": "მოდელური ფაილის კონტენტი",
"Modelfiles": "მოდელური ფაილები", "Modelfiles": "მოდელური ფაილები",
"Models": "მოდელები", "Models": "მოდელები",
"More": "",
"My Documents": "ჩემი დოკუმენტები", "My Documents": "ჩემი დოკუმენტები",
"My Modelfiles": "ჩემი მოდელური ფაილები", "My Modelfiles": "ჩემი მოდელური ფაილები",
"My Prompts": "ჩემი მოთხოვნები", "My Prompts": "ჩემი მოთხოვნები",
@ -220,10 +252,14 @@
"Name your modelfile": "თქვენი მოდელური ფაილის სახელი", "Name your modelfile": "თქვენი მოდელური ფაილის სახელი",
"New Chat": "ახალი მიმოწერა", "New Chat": "ახალი მიმოწერა",
"New Password": "ახალი პაროლი", "New Password": "ახალი პაროლი",
"Not factually correct": "",
"Not sure what to add?": "არ იცი რა დაამატო?", "Not sure what to add?": "არ იცი რა დაამატო?",
"Not sure what to write? Switch to": "არ იცი რა დაწერო? გადართვა:", "Not sure what to write? Switch to": "არ იცი რა დაწერო? გადართვა:",
"Notifications": "შეტყობინება",
"Off": "გამორთვა", "Off": "გამორთვა",
"Okay, Let's Go!": "კარგი, წავედით!", "Okay, Let's Go!": "კარგი, წავედით!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "Ollama ბაზისური მისამართი", "Ollama Base URL": "Ollama ბაზისური მისამართი",
"Ollama Version": "Ollama ვერსია", "Ollama Version": "Ollama ვერსია",
"On": "ჩართვა", "On": "ჩართვა",
@ -236,15 +272,20 @@
"Open AI": "ღია AI", "Open AI": "ღია AI",
"Open AI (Dall-E)": "Open AI (Dall-E)", "Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "ახალი მიმოწერის გახსნა", "Open new chat": "ახალი მიმოწერის გახსნა",
"OpenAI": "",
"OpenAI API": "OpenAI API", "OpenAI API": "OpenAI API",
"OpenAI API Key": "OpenAI API გასაღები", "OpenAI API Config": "",
"OpenAI API Key is required.": "OpenAI API გასაღები აუცილებელია", "OpenAI API Key is required.": "OpenAI API გასაღები აუცილებელია",
"OpenAI URL/Key required.": "",
"or": "ან", "or": "ან",
"Other": "",
"Parameters": "პარამეტრები", "Parameters": "პარამეტრები",
"Password": "პაროლი", "Password": "პაროლი",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "PDF იდან ამოღებული სურათები (OCR)", "PDF Extract Images (OCR)": "PDF იდან ამოღებული სურათები (OCR)",
"pending": "ლოდინის რეჟიმშია", "pending": "ლოდინის რეჟიმშია",
"Permission denied when accessing microphone: {{error}}": "ნებართვა უარყოფილია მიკროფონზე წვდომისას: {{error}}", "Permission denied when accessing microphone: {{error}}": "ნებართვა უარყოფილია მიკროფონზე წვდომისას: {{error}}",
"Plain text (.txt)": "",
"Playground": "სათამაშო მოედანი", "Playground": "სათამაშო მოედანი",
"Archived Chats": "ჩატის ისტორიის არქივი", "Archived Chats": "ჩატის ისტორიის არქივი",
"Profile": "პროფილი", "Profile": "პროფილი",
@ -256,12 +297,18 @@
"Query Params": "პარამეტრების ძიება", "Query Params": "პარამეტრების ძიება",
"RAG Template": "RAG შაბლონი", "RAG Template": "RAG შაბლონი",
"Raw Format": "საწყისი ფორმატი", "Raw Format": "საწყისი ფორმატი",
"Read Aloud": "",
"Record voice": "ხმის ჩაწერა", "Record voice": "ხმის ჩაწერა",
"Redirecting you to OpenWebUI Community": "გადამისამართდებით OpenWebUI საზოგადოებაში", "Redirecting you to OpenWebUI Community": "გადამისამართდებით OpenWebUI საზოგადოებაში",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "Გამოშვების შენიშვნები", "Release Notes": "Გამოშვების შენიშვნები",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "გაიმეორეთ ბოლო N", "Repeat Last N": "გაიმეორეთ ბოლო N",
"Repeat Penalty": "გაიმეორეთ პენალტი", "Repeat Penalty": "გაიმეორეთ პენალტი",
"Request Mode": "მოთხოვნის რეჟიმი", "Request Mode": "მოთხოვნის რეჟიმი",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "ვექტორული მეხსიერების გადატვირთვა", "Reset Vector Storage": "ვექტორული მეხსიერების გადატვირთვა",
"Response AutoCopy to Clipboard": "პასუხის ავტომატური კოპირება ბუფერში", "Response AutoCopy to Clipboard": "პასუხის ავტომატური კოპირება ბუფერში",
"Role": "როლი", "Role": "როლი",
@ -276,6 +323,7 @@
"Scan complete!": "სკანირება დასრულდა!", "Scan complete!": "სკანირება დასრულდა!",
"Scan for documents from {{path}}": "დოკუმენტების სკანირება {{ path}}-დან", "Scan for documents from {{path}}": "დოკუმენტების სკანირება {{ path}}-დან",
"Search": "ძიება", "Search": "ძიება",
"Search a model": "",
"Search Documents": "დოკუმენტების ძიება", "Search Documents": "დოკუმენტების ძიება",
"Search Prompts": "მოთხოვნების ძიება", "Search Prompts": "მოთხოვნების ძიება",
"See readme.md for instructions": "იხილეთ readme.md ინსტრუქციებისთვის", "See readme.md for instructions": "იხილეთ readme.md ინსტრუქციებისთვის",
@ -295,37 +343,46 @@
"Set Voice": "ხმის დაყენება", "Set Voice": "ხმის დაყენება",
"Settings": "ხელსაწყოები", "Settings": "ხელსაწყოები",
"Settings saved successfully!": "პარამეტრები წარმატებით განახლდა!", "Settings saved successfully!": "პარამეტრები წარმატებით განახლდა!",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "გააზიარე OpenWebUI საზოგადოებაში ", "Share to OpenWebUI Community": "გააზიარე OpenWebUI საზოგადოებაში ",
"short-summary": "მოკლე შინაარსი", "short-summary": "მოკლე შინაარსი",
"Show": "ჩვენება", "Show": "ჩვენება",
"Show Additional Params": "დამატებითი პარამეტრების ჩვენება", "Show Additional Params": "დამატებითი პარამეტრების ჩვენება",
"Show shortcuts": "მალსახმობების ჩვენება", "Show shortcuts": "მალსახმობების ჩვენება",
"Showcased creativity": "",
"sidebar": "საიდბარი", "sidebar": "საიდბარი",
"Sign in": "ავტორიზაცია", "Sign in": "ავტორიზაცია",
"Sign Out": "გასვლა", "Sign Out": "გასვლა",
"Sign up": "რეგისტრაცია", "Sign up": "რეგისტრაცია",
"Signing in": "",
"Speech recognition error: {{error}}": "მეტყველების ამოცნობის შეცდომა: {{error}}", "Speech recognition error: {{error}}": "მეტყველების ამოცნობის შეცდომა: {{error}}",
"Speech-to-Text Engine": "ხმოვან-ტექსტური ძრავი", "Speech-to-Text Engine": "ხმოვან-ტექსტური ძრავი",
"SpeechRecognition API is not supported in this browser.": "მეტყველების ამოცნობის API არ არის მხარდაჭერილი ამ ბრაუზერში.", "SpeechRecognition API is not supported in this browser.": "მეტყველების ამოცნობის API არ არის მხარდაჭერილი ამ ბრაუზერში.",
"Stop Sequence": "შეჩერების თანმიმდევრობა", "Stop Sequence": "შეჩერების თანმიმდევრობა",
"STT Settings": "მეტყველების ამოცნობის პარამეტრები", "STT Settings": "მეტყველების ამოცნობის პარამეტრები",
"Submit": "გაგზავნა", "Submit": "გაგზავნა",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "წარმატება", "Success": "წარმატება",
"Successfully updated.": "წარმატებით განახლდა", "Successfully updated.": "წარმატებით განახლდა",
"Sync All": "სინქრონიზაცია", "Sync All": "სინქრონიზაცია",
"System": "სისტემა", "System": "სისტემა",
"System Prompt": "სისტემური მოთხოვნა", "System Prompt": "სისტემური მოთხოვნა",
"Tags": "ტეგები", "Tags": "ტეგები",
"Tell us more:": "",
"Temperature": "ტემპერატურა", "Temperature": "ტემპერატურა",
"Template": "შაბლონი", "Template": "შაბლონი",
"Text Completion": "ტექსტის დასრულება", "Text Completion": "ტექსტის დასრულება",
"Text-to-Speech Engine": "ტექსტურ-ხმოვანი ძრავი", "Text-to-Speech Engine": "ტექსტურ-ხმოვანი ძრავი",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "",
"Theme": "თემა", "Theme": "თემა",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "ეს უზრუნველყოფს, რომ თქვენი ძვირფასი საუბრები უსაფრთხოდ შეინახება თქვენს backend მონაცემთა ბაზაში. Გმადლობთ!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "ეს უზრუნველყოფს, რომ თქვენი ძვირფასი საუბრები უსაფრთხოდ შეინახება თქვენს backend მონაცემთა ბაზაში. Გმადლობთ!",
"This setting does not sync across browsers or devices.": "ეს პარამეტრი არ სინქრონიზდება ბრაუზერებსა და მოწყობილობებში", "This setting does not sync across browsers or devices.": "ეს პარამეტრი არ სინქრონიზდება ბრაუზერებსა და მოწყობილობებში",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "რჩევა: განაახლეთ რამდენიმე ცვლადი სლოტი თანმიმდევრულად, ყოველი ჩანაცვლების შემდეგ ჩატის ღილაკზე დაჭერით.", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "რჩევა: განაახლეთ რამდენიმე ცვლადი სლოტი თანმიმდევრულად, ყოველი ჩანაცვლების შემდეგ ჩატის ღილაკზე დაჭერით.",
"Title": "სათაური", "Title": "სათაური",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "სათაურის ავტო-გენერაცია", "Title Auto-Generation": "სათაურის ავტო-გენერაცია",
"Title Generation Prompt": "სათაურის გენერაციის მოთხოვნა ", "Title Generation Prompt": "სათაურის გენერაციის მოთხოვნა ",
"to": "ში", "to": "ში",
@ -340,11 +397,13 @@
"TTS Settings": "TTS პარამეტრები", "TTS Settings": "TTS პარამეტრები",
"Type Hugging Face Resolve (Download) URL": "სცადე გადმოწერო Hugging Face Resolve URL", "Type Hugging Face Resolve (Download) URL": "სცადე გადმოწერო Hugging Face Resolve URL",
"Uh-oh! There was an issue connecting to {{provider}}.": "{{provider}}-თან დაკავშირების პრობლემა წარმოიშვა.", "Uh-oh! There was an issue connecting to {{provider}}.": "{{provider}}-თან დაკავშირების პრობლემა წარმოიშვა.",
"Understand that updating or changing your embedding model requires reset of the vector database and re-import of all documents. You have been warned!": "გაითვალისწინეთ, რომ თქვენი ჩაშენების მოდელის განახლება ან შეცვლა მოითხოვს ვექტორული მონაცემთა ბაზის გადატვირთვას და ყველა დოკუმენტის ხელახლა იმპორტს. ფრთხილად!",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "უცნობი ფაილის ტიპი „{{file_type}}“, მაგრამ მიიღება და განიხილება როგორც მარტივი ტექსტი", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "უცნობი ფაილის ტიპი „{{file_type}}“, მაგრამ მიიღება და განიხილება როგორც მარტივი ტექსტი",
"Update": "განახლება", "Update and Copy Link": "",
"Update embedding model {{embedding_model}}": "განაახლე ჩაშენების მოდელი {{embedding_model}}", "Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "პაროლის განახლება", "Update password": "პაროლის განახლება",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "GGUF მოდელის ატვირთვა", "Upload a GGUF model": "GGUF მოდელის ატვირთვა",
"Upload files": "ფაილების ატვირთვა", "Upload files": "ფაილების ატვირთვა",
"Upload Progress": "პროგრესის ატვირთვა", "Upload Progress": "პროგრესის ატვირთვა",
@ -360,7 +419,9 @@
"variable": "ცვლადი", "variable": "ცვლადი",
"variable to have them replaced with clipboard content.": "ცვლადი, რომ შეცვალოს ისინი ბუფერში შიგთავსით.", "variable to have them replaced with clipboard content.": "ცვლადი, რომ შეცვალოს ისინი ბუფერში შიგთავსით.",
"Version": "ვერსია", "Version": "ვერსია",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "ვები", "Web": "ვები",
"Webhook URL": "",
"WebUI Add-ons": "WebUI დანამატები", "WebUI Add-ons": "WebUI დანამატები",
"WebUI Settings": "WebUI პარამეტრები", "WebUI Settings": "WebUI პარამეტრები",
"WebUI will make requests to": "WebUI გამოგიგზავნით მოთხოვნებს", "WebUI will make requests to": "WebUI გამოგიგზავნით მოთხოვნებს",

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(예: `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(예: `sh webui.sh --api`)",
"(latest)": "(latest)", "(latest)": "(latest)",
"{{modelName}} is thinking...": "{{modelName}} 이(가) 생각중입니다....", "{{modelName}} is thinking...": "{{modelName}} 이(가) 생각중입니다....",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}} 백엔드가 필요합니다.", "{{webUIName}} Backend Required": "{{webUIName}} 백엔드가 필요합니다.",
"a user": "사용자", "a user": "사용자",
"About": "소개", "About": "소개",
"Account": "계정", "Account": "계정",
"Action": "액션", "Accurate information": "",
"Add a model": "모델 추가", "Add a model": "모델 추가",
"Add a model tag name": "모델 태그명 추가", "Add a model tag name": "모델 태그명 추가",
"Add a short description about what this modelfile does": "이 모델파일이 하는 일에 대한 간단한 설명 추가", "Add a short description about what this modelfile does": "이 모델파일이 하는 일에 대한 간단한 설명 추가",
@ -17,7 +18,8 @@
"Add Docs": "문서 추가", "Add Docs": "문서 추가",
"Add Files": "파일 추가", "Add Files": "파일 추가",
"Add message": "메시지 추가", "Add message": "메시지 추가",
"add tags": "태그들 추가", "Add Model": "",
"Add Tags": "태그들 추가",
"Adjusting these settings will apply changes universally to all users.": "이 설정을 조정하면 모든 사용자에게 적용됩니다.", "Adjusting these settings will apply changes universally to all users.": "이 설정을 조정하면 모든 사용자에게 적용됩니다.",
"admin": "관리자", "admin": "관리자",
"Admin Panel": "관리자 패널", "Admin Panel": "관리자 패널",
@ -33,9 +35,14 @@
"and": "그리고", "and": "그리고",
"API Base URL": "API 기본 URL", "API Base URL": "API 기본 URL",
"API Key": "API키", "API Key": "API키",
"API Key created.": "",
"API keys": "",
"API RPM": "API RPM", "API RPM": "API RPM",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "허용됩니다 - 이 명령을 활성화하려면 입력하세요.", "are allowed - Activate this command by typing": "허용됩니다 - 이 명령을 활성화하려면 입력하세요.",
"Are you sure?": "확실합니까?", "Are you sure?": "확실합니까?",
"Attention to detail": "",
"Audio": "오디오", "Audio": "오디오",
"Auto-playback response": "응답 자동 재생", "Auto-playback response": "응답 자동 재생",
"Auto-send input after 3 sec.": "3초 후 입력 자동 전송", "Auto-send input after 3 sec.": "3초 후 입력 자동 전송",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Base URL이 필요합니다.", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Base URL이 필요합니다.",
"available!": "사용 가능!", "available!": "사용 가능!",
"Back": "뒤로가기", "Back": "뒤로가기",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "빌더 모드", "Builder Mode": "빌더 모드",
"Cancel": "취소", "Cancel": "취소",
"Categories": "분류", "Categories": "분류",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "사용자 역할 버튼을 클릭하여 사용자의 역할을 변경하세요.", "Click on the user role button to change a user's role.": "사용자 역할 버튼을 클릭하여 사용자의 역할을 변경하세요.",
"Close": "닫기", "Close": "닫기",
"Collection": "컬렉션", "Collection": "컬렉션",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "명령", "Command": "명령",
"Confirm Password": "비밀번호 확인", "Confirm Password": "비밀번호 확인",
"Connections": "연결", "Connections": "연결",
"Content": "내용", "Content": "내용",
"Context Length": "내용 길이", "Context Length": "내용 길이",
"Continue Response": "",
"Conversation Mode": "대화 모드", "Conversation Mode": "대화 모드",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "마지막 코드 블록 복사", "Copy last code block": "마지막 코드 블록 복사",
"Copy last response": "마지막 응답 복사", "Copy last response": "마지막 응답 복사",
"Copy Link": "",
"Copying to clipboard was successful!": "클립보드에 복사되었습니다!", "Copying to clipboard was successful!": "클립보드에 복사되었습니다!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "다음 질문에 대한 제목으로 간결한 3-5 단어 문구를 만드되 3-5 단어 제한을 엄격히 준수하고 'title' 단어 사용을 피하세요:", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "다음 질문에 대한 제목으로 간결한 3-5 단어 문구를 만드되 3-5 단어 제한을 엄격히 준수하고 'title' 단어 사용을 피하세요:",
"Create a modelfile": "모델파일 만들기", "Create a modelfile": "모델파일 만들기",
"Create Account": "계정 만들기", "Create Account": "계정 만들기",
"Created at": "생성일", "Created at": "생성일",
"Created by": "생성자", "Created At": "",
"Current Model": "현재 모델", "Current Model": "현재 모델",
"Current Password": "현재 비밀번호", "Current Password": "현재 비밀번호",
"Custom": "사용자 정의", "Custom": "사용자 정의",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "기본값", "Default": "기본값",
"Default (Automatic1111)": "기본값 (Automatic1111)", "Default (Automatic1111)": "기본값 (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "기본값 (Web API)", "Default (Web API)": "기본값 (Web API)",
"Default model updated": "기본 모델이 업데이트되었습니다.", "Default model updated": "기본 모델이 업데이트되었습니다.",
"Default Prompt Suggestions": "기본 프롬프트 제안", "Default Prompt Suggestions": "기본 프롬프트 제안",
"Default User Role": "기본 사용자 역할", "Default User Role": "기본 사용자 역할",
"delete": "삭제", "delete": "삭제",
"Delete": "",
"Delete a model": "모델 삭제", "Delete a model": "모델 삭제",
"Delete chat": "채팅 삭제", "Delete chat": "채팅 삭제",
"Delete Chat": "",
"Delete Chats": "채팅들 삭제", "Delete Chats": "채팅들 삭제",
"Delete User": "",
"Deleted {{deleteModelTag}}": "{{deleteModelTag}} 삭제됨", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} 삭제됨",
"Deleted {tagName}": "{tagName} 삭제됨", "Deleted {{tagName}}": "",
"Description": "설명", "Description": "설명",
"Notifications": "알림", "Didn't fully follow instructions": "",
"Disabled": "비활성화", "Disabled": "비활성화",
"Discover a modelfile": "모델파일 검색", "Discover a modelfile": "모델파일 검색",
"Discover a prompt": "프롬프트 검색", "Discover a prompt": "프롬프트 검색",
@ -113,18 +133,21 @@
"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?": "계정이 없으신가요?",
"Download as a File": "파일로 다운로드", "Don't like the style": "",
"Download": "",
"Download Database": "데이터베이스 다운로드", "Download Database": "데이터베이스 다운로드",
"Drop any files here to add to the conversation": "대화에 추가할 파일을 여기에 드롭하세요.", "Drop any files here to add to the conversation": "대화에 추가할 파일을 여기에 드롭하세요.",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "예: '30s','10m'. 유효한 시간 단위는 's', 'm', 'h'입니다.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "예: '30s','10m'. 유효한 시간 단위는 's', 'm', 'h'입니다.",
"Edit": "",
"Edit Doc": "문서 편집", "Edit Doc": "문서 편집",
"Edit User": "사용자 편집", "Edit User": "사용자 편집",
"Email": "이메일", "Email": "이메일",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "채팅 기록 활성화", "Enable Chat History": "채팅 기록 활성화",
"Enable New Sign Ups": "새 회원가입 활성화", "Enable New Sign Ups": "새 회원가입 활성화",
"Enabled": "활성화", "Enabled": "활성화",
"Enter {{role}} message here": "여기에 {{role}} 메시지 입력", "Enter {{role}} message here": "여기에 {{role}} 메시지 입력",
"Enter API Key": "API 키 입력",
"Enter Chunk Overlap": "청크 오버랩 입력", "Enter Chunk Overlap": "청크 오버랩 입력",
"Enter Chunk Size": "청크 크기 입력", "Enter Chunk Size": "청크 크기 입력",
"Enter Image Size (e.g. 512x512)": "이미지 크기 입력(예: 512x512)", "Enter Image Size (e.g. 512x512)": "이미지 크기 입력(예: 512x512)",
@ -135,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "최대 토큰 수 입력(litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "최대 토큰 수 입력(litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "모델 태그 입력(예: {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "모델 태그 입력(예: {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "단계 수 입력(예: 50)", "Enter Number of Steps (e.g. 50)": "단계 수 입력(예: 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "중지 시퀀스 입력", "Enter stop sequence": "중지 시퀀스 입력",
"Enter Top K": "Top K 입력", "Enter Top K": "Top K 입력",
"Enter URL (e.g. http://127.0.0.1:7860/)": "URL 입력(예: http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "URL 입력(예: http://127.0.0.1:7860/)",
@ -147,20 +171,29 @@
"Export Documents Mapping": "문서 매핑 내보내기", "Export Documents Mapping": "문서 매핑 내보내기",
"Export Modelfiles": "모델파일 내보내기", "Export Modelfiles": "모델파일 내보내기",
"Export Prompts": "프롬프트 내보내기", "Export Prompts": "프롬프트 내보내기",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "클립보드 내용을 읽는 데 실패했습니다.", "Failed to read clipboard contents": "클립보드 내용을 읽는 데 실패했습니다.",
"Feel free to add specific details": "",
"File Mode": "파일 모드", "File Mode": "파일 모드",
"File not found.": "파일을 찾을 수 없습니다.", "File not found.": "파일을 찾을 수 없습니다.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "",
"Focus chat input": "채팅 입력 포커스", "Focus chat input": "채팅 입력 포커스",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "이렇게 대괄호를 사용하여 변수를 형식화하세요:", "Format your variables using square brackets like this:": "이렇게 대괄호를 사용하여 변수를 형식화하세요:",
"From (Base Model)": "출처(기본 모델)", "From (Base Model)": "출처(기본 모델)",
"Fluidly stream large external response chunks": "대규모 외부 응답 청크를 유동적으로 스트리밍", "Fluidly stream large external response chunks": "대규모 외부 응답 청크를 유동적으로 스트리밍",
"Full Screen Mode": "전체 화면 모드", "Full Screen Mode": "전체 화면 모드",
"General": "일반", "General": "일반",
"General Settings": "일반 설정", "General Settings": "일반 설정",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "안녕하세요, {{name}}", "Hello, {{name}}": "안녕하세요, {{name}}",
"Hide": "숨기기", "Hide": "숨기기",
"Hide Additional Params": "추가 매개변수 숨기기", "Hide Additional Params": "추가 매개변수 숨기기",
"How can I help you today?": "오늘 어떻게 도와드릴까요?", "How can I help you today?": "오늘 어떻게 도와드릴까요?",
"Hybrid Search": "",
"Image Generation (Experimental)": "이미지 생성(실험적)", "Image Generation (Experimental)": "이미지 생성(실험적)",
"Image Generation Engine": "이미지 생성 엔진", "Image Generation Engine": "이미지 생성 엔진",
"Image Settings": "이미지 설정", "Image Settings": "이미지 설정",
@ -169,7 +202,7 @@
"Import Documents Mapping": "문서 매핑 가져오기", "Import Documents Mapping": "문서 매핑 가져오기",
"Import Modelfiles": "모델파일 가져오기", "Import Modelfiles": "모델파일 가져오기",
"Import Prompts": "프롬프트 가져오기", "Import Prompts": "프롬프트 가져오기",
"Include --api flag when running stable-diffusion-webui": "stable-diffusion-webui를 실행할 때 --api 플래그 포함", "Include `--api` flag when running stable-diffusion-webui": "",
"Interface": "인터페이스", "Interface": "인터페이스",
"join our Discord for help.": "도움말을 보려면 Discord에 가입하세요.", "join our Discord for help.": "도움말을 보려면 Discord에 가입하세요.",
"JSON": "JSON", "JSON": "JSON",
@ -178,6 +211,7 @@
"Keep Alive": "계속 유지하기", "Keep Alive": "계속 유지하기",
"Keyboard shortcuts": "키보드 단축키", "Keyboard shortcuts": "키보드 단축키",
"Language": "언어", "Language": "언어",
"Last Active": "",
"Light": "밝음", "Light": "밝음",
"OLED Dark": "OLED 다크", "OLED Dark": "OLED 다크",
"Listening...": "청취 중...", "Listening...": "청취 중...",
@ -192,10 +226,13 @@
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "모델 '{{modelName}}'이(가) 성공적으로 다운로드되었습니다.", "Model '{{modelName}}' has been successfully downloaded.": "모델 '{{modelName}}'이(가) 성공적으로 다운로드되었습니다.",
"Model '{{modelTag}}' is already in queue for downloading.": "모델 '{{modelTag}}'이(가) 이미 다운로드 대기열에 있습니다.", "Model '{{modelTag}}' is already in queue for downloading.": "모델 '{{modelTag}}'이(가) 이미 다운로드 대기열에 있습니다.",
"Model {{modelId}} not found": "모델 {{modelId}}를 찾을 수 없습니다.", "Model {{modelId}} not found": "모델 {{modelId}}를 찾을 수 없습니다.",
"Model {{modelName}} already exists.": "모델 {{modelName}}이(가) 이미 존재합니다.", "Model {{modelName}} already exists.": "모델 {{modelName}}이(가) 이미 존재합니다.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Name": "모델 이름", "Model Name": "모델 이름",
"Model not selected": "모델이 선택되지 않았습니다.", "Model not selected": "모델이 선택되지 않았습니다.",
"Model Tag Name": "모델 태그 이름", "Model Tag Name": "모델 태그 이름",
@ -206,6 +243,7 @@
"Modelfile Content": "모델파일 내용", "Modelfile Content": "모델파일 내용",
"Modelfiles": "모델파일", "Modelfiles": "모델파일",
"Models": "모델", "Models": "모델",
"More": "",
"My Documents": "내 문서", "My Documents": "내 문서",
"My Modelfiles": "내 모델파일", "My Modelfiles": "내 모델파일",
"My Prompts": "내 프롬프트", "My Prompts": "내 프롬프트",
@ -214,10 +252,14 @@
"Name your modelfile": "모델파일 이름 지정", "Name your modelfile": "모델파일 이름 지정",
"New Chat": "새 채팅", "New Chat": "새 채팅",
"New Password": "새 비밀번호", "New Password": "새 비밀번호",
"Not factually correct": "",
"Not sure what to add?": "추가할 것이 궁금하세요?", "Not sure what to add?": "추가할 것이 궁금하세요?",
"Not sure what to write? Switch to": "무엇을 쓸지 모르겠나요? 전환하세요.", "Not sure what to write? Switch to": "무엇을 쓸지 모르겠나요? 전환하세요.",
"Notifications": "알림",
"Off": "끄기", "Off": "끄기",
"Okay, Let's Go!": "그렇습니다, 시작합시다!", "Okay, Let's Go!": "그렇습니다, 시작합시다!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "Ollama 기본 URL", "Ollama Base URL": "Ollama 기본 URL",
"Ollama Version": "Ollama 버전", "Ollama Version": "Ollama 버전",
"On": "켜기", "On": "켜기",
@ -230,15 +272,20 @@
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "OpenAI (Dall-E)", "Open AI (Dall-E)": "OpenAI (Dall-E)",
"Open new chat": "새 채팅 열기", "Open new chat": "새 채팅 열기",
"OpenAI": "",
"OpenAI API": "OpenAI API", "OpenAI API": "OpenAI API",
"OpenAI API Key": "OpenAI API 키", "OpenAI API Config": "",
"OpenAI API Key is required.": "OpenAI API 키가 필요합니다.", "OpenAI API Key is required.": "OpenAI API 키가 필요합니다.",
"OpenAI URL/Key required.": "",
"or": "또는", "or": "또는",
"Other": "",
"Parameters": "매개변수", "Parameters": "매개변수",
"Password": "비밀번호", "Password": "비밀번호",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "PDF에서 이미지 추출 (OCR)", "PDF Extract Images (OCR)": "PDF에서 이미지 추출 (OCR)",
"pending": "보류 중", "pending": "보류 중",
"Permission denied when accessing microphone: {{error}}": "마이크 액세스가 거부되었습니다: {{error}}", "Permission denied when accessing microphone: {{error}}": "마이크 액세스가 거부되었습니다: {{error}}",
"Plain text (.txt)": "",
"Playground": "놀이터", "Playground": "놀이터",
"Archived Chats": "채팅 기록 아카이브", "Archived Chats": "채팅 기록 아카이브",
"Profile": "프로필", "Profile": "프로필",
@ -250,12 +297,18 @@
"Query Params": "쿼리 매개변수", "Query Params": "쿼리 매개변수",
"RAG Template": "RAG 템플릿", "RAG Template": "RAG 템플릿",
"Raw Format": "Raw 형식", "Raw Format": "Raw 형식",
"Read Aloud": "",
"Record voice": "음성 녹음", "Record voice": "음성 녹음",
"Redirecting you to OpenWebUI Community": "OpenWebUI 커뮤니티로 리디렉션하는 중", "Redirecting you to OpenWebUI Community": "OpenWebUI 커뮤니티로 리디렉션하는 중",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "릴리스 노트", "Release Notes": "릴리스 노트",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "마지막 N 반복", "Repeat Last N": "마지막 N 반복",
"Repeat Penalty": "반복 패널티", "Repeat Penalty": "반복 패널티",
"Request Mode": "요청 모드", "Request Mode": "요청 모드",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "벡터 스토리지 초기화", "Reset Vector Storage": "벡터 스토리지 초기화",
"Response AutoCopy to Clipboard": "응답 자동 클립보드 복사", "Response AutoCopy to Clipboard": "응답 자동 클립보드 복사",
"Role": "역할", "Role": "역할",
@ -270,6 +323,7 @@
"Scan complete!": "스캔 완료!", "Scan complete!": "스캔 완료!",
"Scan for documents from {{path}}": "{{path}}에서 문서 스캔", "Scan for documents from {{path}}": "{{path}}에서 문서 스캔",
"Search": "검색", "Search": "검색",
"Search a model": "",
"Search Documents": "문서 검색", "Search Documents": "문서 검색",
"Search Prompts": "프롬프트 검색", "Search Prompts": "프롬프트 검색",
"See readme.md for instructions": "설명은 readme.md를 참조하세요.", "See readme.md for instructions": "설명은 readme.md를 참조하세요.",
@ -289,37 +343,46 @@
"Set Voice": "음성 설정", "Set Voice": "음성 설정",
"Settings": "설정", "Settings": "설정",
"Settings saved successfully!": "설정이 성공적으로 저장되었습니다!", "Settings saved successfully!": "설정이 성공적으로 저장되었습니다!",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "OpenWebUI 커뮤니티에 공유", "Share to OpenWebUI Community": "OpenWebUI 커뮤니티에 공유",
"short-summary": "간단한 요약", "short-summary": "간단한 요약",
"Show": "보이기", "Show": "보이기",
"Show Additional Params": "추가 매개변수 보기", "Show Additional Params": "추가 매개변수 보기",
"Show shortcuts": "단축키 보기", "Show shortcuts": "단축키 보기",
"Showcased creativity": "",
"sidebar": "사이드바", "sidebar": "사이드바",
"Sign in": "로그인", "Sign in": "로그인",
"Sign Out": "로그아웃", "Sign Out": "로그아웃",
"Sign up": "가입", "Sign up": "가입",
"Signing in": "",
"Speech recognition error: {{error}}": "음성 인식 오류: {{error}}", "Speech recognition error: {{error}}": "음성 인식 오류: {{error}}",
"Speech-to-Text Engine": "음성-텍스트 엔진", "Speech-to-Text Engine": "음성-텍스트 엔진",
"SpeechRecognition API is not supported in this browser.": "이 브라우저에서는 SpeechRecognition API를 지원하지 않습니다.", "SpeechRecognition API is not supported in this browser.": "이 브라우저에서는 SpeechRecognition API를 지원하지 않습니다.",
"Stop Sequence": "중지 시퀀스", "Stop Sequence": "중지 시퀀스",
"STT Settings": "STT 설정", "STT Settings": "STT 설정",
"Submit": "제출", "Submit": "제출",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "성공", "Success": "성공",
"Successfully updated.": "성공적으로 업데이트되었습니다.", "Successfully updated.": "성공적으로 업데이트되었습니다.",
"Sync All": "모두 동기화", "Sync All": "모두 동기화",
"System": "시스템", "System": "시스템",
"System Prompt": "시스템 프롬프트", "System Prompt": "시스템 프롬프트",
"Tags": "Tags", "Tags": "Tags",
"Tell us more:": "",
"Temperature": "Temperature", "Temperature": "Temperature",
"Template": "Template", "Template": "Template",
"Text Completion": "텍스트 완성", "Text Completion": "텍스트 완성",
"Text-to-Speech Engine": "텍스트-음성 엔진", "Text-to-Speech Engine": "텍스트-음성 엔진",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "",
"Theme": "테마", "Theme": "테마",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "이렇게 하면 소중한 대화 내용이 백엔드 데이터베이스에 안전하게 저장됩니다. 감사합니다!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "이렇게 하면 소중한 대화 내용이 백엔드 데이터베이스에 안전하게 저장됩니다. 감사합니다!",
"This setting does not sync across browsers or devices.": "이 설정은 브라우저 또는 장치 간에 동기화되지 않습니다.", "This setting does not sync across browsers or devices.": "이 설정은 브라우저 또는 장치 간에 동기화되지 않습니다.",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "팁: 각 대체 후 채팅 입력에서 탭 키를 눌러 여러 개의 변수 슬롯을 연속적으로 업데이트하세요.", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "팁: 각 대체 후 채팅 입력에서 탭 키를 눌러 여러 개의 변수 슬롯을 연속적으로 업데이트하세요.",
"Title": "제목", "Title": "제목",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "제목 자동 생성", "Title Auto-Generation": "제목 자동 생성",
"Title Generation Prompt": "제목 생성 프롬프트", "Title Generation Prompt": "제목 생성 프롬프트",
"to": "~까지", "to": "~까지",
@ -335,13 +398,19 @@
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (다운로드) URL 입력", "Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (다운로드) URL 입력",
"Uh-oh! There was an issue connecting to {{provider}}.": "앗! {{provider}}에 연결하는 데 문제가 있었습니다.", "Uh-oh! There was an issue connecting to {{provider}}.": "앗! {{provider}}에 연결하는 데 문제가 있었습니다.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "알 수 없는 파일 유형 '{{file_type}}', 하지만 일반 텍스트로 허용하고 처리합니다.", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "알 수 없는 파일 유형 '{{file_type}}', 하지만 일반 텍스트로 허용하고 처리합니다.",
"Update and Copy Link": "",
"Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "비밀번호 업데이트", "Update password": "비밀번호 업데이트",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "GGUF 모델 업로드", "Upload a GGUF model": "GGUF 모델 업로드",
"Upload files": "파일 업로드", "Upload files": "파일 업로드",
"Upload Progress": "업로드 진행 상황", "Upload Progress": "업로드 진행 상황",
"URL Mode": "URL 모드", "URL Mode": "URL 모드",
"Use '#' in the prompt input to load and select your documents.": "프롬프트 입력에서 '#'를 사용하여 문서를 로드하고 선택하세요.", "Use '#' in the prompt input to load and select your documents.": "프롬프트 입력에서 '#'를 사용하여 문서를 로드하고 선택하세요.",
"Use Gravatar": "Gravatar 사용", "Use Gravatar": "Gravatar 사용",
"Use Initials": "",
"user": "사용자", "user": "사용자",
"User Permissions": "사용자 권한", "User Permissions": "사용자 권한",
"Users": "사용자", "Users": "사용자",
@ -350,11 +419,13 @@
"variable": "변수", "variable": "변수",
"variable to have them replaced with clipboard content.": "변수를 사용하여 클립보드 내용으로 바꾸세요.", "variable to have them replaced with clipboard content.": "변수를 사용하여 클립보드 내용으로 바꾸세요.",
"Version": "버전", "Version": "버전",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "웹", "Web": "웹",
"Webhook URL": "",
"WebUI Add-ons": "WebUI 애드온", "WebUI Add-ons": "WebUI 애드온",
"WebUI Settings": "WebUI 설정", "WebUI Settings": "WebUI 설정",
"WebUI will make requests to": "WebUI가 요청할 대상:", "WebUI will make requests to": "WebUI가 요청할 대상:",
"What's New in": "새로운 기능", "Whats New in": "",
"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "기록 기능이 꺼져 있으면 이 브라우저의 새 채팅이 다른 장치의 채팅 기록에 나타나지 않습니다.", "When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "기록 기능이 꺼져 있으면 이 브라우저의 새 채팅이 다른 장치의 채팅 기록에 나타나지 않습니다.",
"Whisper (Local)": "위스퍼 (Local)", "Whisper (Local)": "위스퍼 (Local)",
"Write a prompt suggestion (e.g. Who are you?)": "프롬프트 제안 작성 (예: 당신은 누구인가요?)", "Write a prompt suggestion (e.g. Who are you?)": "프롬프트 제안 작성 (예: 당신은 누구인가요?)",

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(e.g. `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(e.g. `sh webui.sh --api`)",
"(latest)": "(nieuwste)", "(latest)": "(nieuwste)",
"{{modelName}} is thinking...": "{{modelName}} is aan het denken...", "{{modelName}} is thinking...": "{{modelName}} is aan het denken...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}} Backend Verlpicht", "{{webUIName}} Backend Required": "{{webUIName}} Backend Verlpicht",
"a user": "een gebruiker", "a user": "een gebruiker",
"About": "Over", "About": "Over",
"Account": "Account", "Account": "Account",
"Action": "Actie", "Accurate information": "",
"Add a model": "Voeg een model toe", "Add a model": "Voeg een model toe",
"Add a model tag name": "Voeg een model tag naam toe", "Add a model tag name": "Voeg een model tag naam toe",
"Add a short description about what this modelfile does": "Voeg een korte beschrijving toe over wat dit modelfile doet", "Add a short description about what this modelfile does": "Voeg een korte beschrijving toe over wat dit modelfile doet",
@ -17,7 +18,8 @@
"Add Docs": "Voeg Docs toe", "Add Docs": "Voeg Docs toe",
"Add Files": "Voege Bestanden toe", "Add Files": "Voege Bestanden toe",
"Add message": "Voeg bericht toe", "Add message": "Voeg bericht toe",
"add tags": "voeg tags toe", "Add Model": "",
"Add Tags": "voeg tags toe",
"Adjusting these settings will apply changes universally to all users.": "Het aanpassen van deze instellingen zal universeel worden toegepast op alle gebruikers.", "Adjusting these settings will apply changes universally to all users.": "Het aanpassen van deze instellingen zal universeel worden toegepast op alle gebruikers.",
"admin": "admin", "admin": "admin",
"Admin Panel": "Administratieve Paneel", "Admin Panel": "Administratieve Paneel",
@ -33,9 +35,14 @@
"and": "en", "and": "en",
"API Base URL": "API Base URL", "API Base URL": "API Base URL",
"API Key": "API Key", "API Key": "API Key",
"API Key created.": "",
"API keys": "",
"API RPM": "API RPM", "API RPM": "API RPM",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "zijn toegestaan - Activeer deze commando door te typen", "are allowed - Activate this command by typing": "zijn toegestaan - Activeer deze commando door te typen",
"Are you sure?": "Zeker weten?", "Are you sure?": "Zeker weten?",
"Attention to detail": "",
"Audio": "Audio", "Audio": "Audio",
"Auto-playback response": "Automatisch afspelen van antwoord", "Auto-playback response": "Automatisch afspelen van antwoord",
"Auto-send input after 3 sec.": "Automatisch verzenden van input na 3 sec.", "Auto-send input after 3 sec.": "Automatisch verzenden van input na 3 sec.",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Basis URL is verplicht", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Basis URL is verplicht",
"available!": "beschikbaar!", "available!": "beschikbaar!",
"Back": "Terug", "Back": "Terug",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "Bouwer Modus", "Builder Mode": "Bouwer Modus",
"Cancel": "Annuleren", "Cancel": "Annuleren",
"Categories": "Categorieën", "Categories": "Categorieën",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "Klik op de gebruikersrol knop om de rol van een gebruiker te wijzigen.", "Click on the user role button to change a user's role.": "Klik op de gebruikersrol knop om de rol van een gebruiker te wijzigen.",
"Close": "Sluiten", "Close": "Sluiten",
"Collection": "Verzameling", "Collection": "Verzameling",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "Commando", "Command": "Commando",
"Confirm Password": "Bevestig Wachtwoord", "Confirm Password": "Bevestig Wachtwoord",
"Connections": "Verbindingen", "Connections": "Verbindingen",
"Content": "Inhoud", "Content": "Inhoud",
"Context Length": "Context Lengte", "Context Length": "Context Lengte",
"Continue Response": "",
"Conversation Mode": "Gespreksmodus", "Conversation Mode": "Gespreksmodus",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "Kopieer laatste code blok", "Copy last code block": "Kopieer laatste code blok",
"Copy last response": "Kopieer laatste antwoord", "Copy last response": "Kopieer laatste antwoord",
"Copy Link": "",
"Copying to clipboard was successful!": "Kopiëren naar klembord was succesvol!", "Copying to clipboard was successful!": "Kopiëren naar klembord was succesvol!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Maak een beknopte, 3-5 woorden tellende zin als kop voor de volgende query, strikt aanhoudend aan de 3-5 woorden limiet en het vermijden van het gebruik van het woord 'titel':", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Maak een beknopte, 3-5 woorden tellende zin als kop voor de volgende query, strikt aanhoudend aan de 3-5 woorden limiet en het vermijden van het gebruik van het woord 'titel':",
"Create a modelfile": "Maak een modelfile", "Create a modelfile": "Maak een modelfile",
"Create Account": "Maak Account", "Create Account": "Maak Account",
"Created at": "Gemaakt op", "Created at": "Gemaakt op",
"Created by": "Gemaakt door", "Created At": "",
"Current Model": "Huidig Model", "Current Model": "Huidig Model",
"Current Password": "Huidig Wachtwoord", "Current Password": "Huidig Wachtwoord",
"Custom": "Aangepast", "Custom": "Aangepast",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "YYYY/MM/DD HH:mm", "DD/MM/YYYY HH:mm": "YYYY/MM/DD HH:mm",
"Default": "Standaard", "Default": "Standaard",
"Default (Automatic1111)": "Standaard (Automatic1111)", "Default (Automatic1111)": "Standaard (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "Standaard (Web API)", "Default (Web API)": "Standaard (Web API)",
"Default model updated": "Standaard model bijgewerkt", "Default model updated": "Standaard model bijgewerkt",
"Default Prompt Suggestions": "Standaard Prompt Suggesties", "Default Prompt Suggestions": "Standaard Prompt Suggesties",
"Default User Role": "Standaard Gebruikersrol", "Default User Role": "Standaard Gebruikersrol",
"delete": "verwijderen", "delete": "verwijderen",
"Delete": "",
"Delete a model": "Verwijder een model", "Delete a model": "Verwijder een model",
"Delete chat": "Verwijder chat", "Delete chat": "Verwijder chat",
"Delete Chat": "",
"Delete Chats": "Verwijder Chats", "Delete Chats": "Verwijder Chats",
"Delete User": "",
"Deleted {{deleteModelTag}}": "{{deleteModelTag}} is verwijderd", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} is verwijderd",
"Deleted {tagName}": "{tagName} is verwijderd", "Deleted {{tagName}}": "",
"Description": "Beschrijving", "Description": "Beschrijving",
"Notifications": "Desktop Notificaties", "Didn't fully follow instructions": "",
"Disabled": "Uitgeschakeld", "Disabled": "Uitgeschakeld",
"Discover a modelfile": "Ontdek een modelfile", "Discover a modelfile": "Ontdek een modelfile",
"Discover a prompt": "Ontdek een prompt", "Discover a prompt": "Ontdek een prompt",
@ -113,18 +133,21 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "maakt geen externe verbindingen, en je gegevens blijven veilig op je lokaal gehoste server.", "does not make any external connections, and your data stays securely on your locally hosted server.": "maakt geen externe verbindingen, en je gegevens blijven veilig op je lokaal gehoste server.",
"Don't Allow": "Niet Toestaan", "Don't Allow": "Niet Toestaan",
"Don't have an account?": "Heb je geen account?", "Don't have an account?": "Heb je geen account?",
"Download as a File": "Download als Bestand", "Don't like the style": "",
"Download": "",
"Download Database": "Download Database", "Download Database": "Download Database",
"Drop any files here to add to the conversation": "Sleep bestanden hier om toe te voegen aan het gesprek", "Drop any files here to add to the conversation": "Sleep bestanden hier om toe te voegen aan het gesprek",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "bijv. '30s', '10m'. Geldige tijdseenheden zijn 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "bijv. '30s', '10m'. Geldige tijdseenheden zijn 's', 'm', 'h'.",
"Edit": "",
"Edit Doc": "Wijzig Doc", "Edit Doc": "Wijzig Doc",
"Edit User": "Wijzig Gebruiker", "Edit User": "Wijzig Gebruiker",
"Email": "Email", "Email": "Email",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "Schakel Chat Geschiedenis in", "Enable Chat History": "Schakel Chat Geschiedenis in",
"Enable New Sign Ups": "Schakel Nieuwe Registraties in", "Enable New Sign Ups": "Schakel Nieuwe Registraties in",
"Enabled": "Ingeschakeld", "Enabled": "Ingeschakeld",
"Enter {{role}} message here": "Voeg {{role}} bericht hier toe", "Enter {{role}} message here": "Voeg {{role}} bericht hier toe",
"Enter API Key": "Voeg API Key toe",
"Enter Chunk Overlap": "Voeg Chunk Overlap toe", "Enter Chunk Overlap": "Voeg Chunk Overlap toe",
"Enter Chunk Size": "Voeg Chunk Size toe", "Enter Chunk Size": "Voeg Chunk Size toe",
"Enter Image Size (e.g. 512x512)": "Voeg afbeelding formaat toe (Bijv. 512x512)", "Enter Image Size (e.g. 512x512)": "Voeg afbeelding formaat toe (Bijv. 512x512)",
@ -135,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "Voeg maximum aantal tokens toe (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "Voeg maximum aantal tokens toe (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "Voeg model tag toe (Bijv. {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "Voeg model tag toe (Bijv. {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "Voeg aantal stappen toe (Bijv. 50)", "Enter Number of Steps (e.g. 50)": "Voeg aantal stappen toe (Bijv. 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "Zet stop sequentie", "Enter stop sequence": "Zet stop sequentie",
"Enter Top K": "Voeg Top K toe", "Enter Top K": "Voeg Top K toe",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Zet URL (Bijv. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Zet URL (Bijv. http://127.0.0.1:7860/)",
@ -147,20 +171,29 @@
"Export Documents Mapping": "Exporteer Documenten Mapping", "Export Documents Mapping": "Exporteer Documenten Mapping",
"Export Modelfiles": "Exporteer Modelfiles", "Export Modelfiles": "Exporteer Modelfiles",
"Export Prompts": "Exporteer Prompts", "Export Prompts": "Exporteer Prompts",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "Kan klembord inhoud niet lezen", "Failed to read clipboard contents": "Kan klembord inhoud niet lezen",
"Feel free to add specific details": "",
"File Mode": "Bestandsmodus", "File Mode": "Bestandsmodus",
"File not found.": "Bestand niet gevonden.", "File not found.": "Bestand niet gevonden.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "",
"Focus chat input": "Focus chat input", "Focus chat input": "Focus chat input",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "Formatteer je variabelen met vierkante haken zoals dit:", "Format your variables using square brackets like this:": "Formatteer je variabelen met vierkante haken zoals dit:",
"From (Base Model)": "Van (Basis Model)", "From (Base Model)": "Van (Basis Model)",
"Fluidly stream large external response chunks": "Stream vloeiend grote externe responsbrokken", "Fluidly stream large external response chunks": "Stream vloeiend grote externe responsbrokken",
"Full Screen Mode": "Volledig Scherm Modus", "Full Screen Mode": "Volledig Scherm Modus",
"General": "Algemeen", "General": "Algemeen",
"General Settings": "Algemene Instellingen", "General Settings": "Algemene Instellingen",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "Hallo, {{name}}", "Hello, {{name}}": "Hallo, {{name}}",
"Hide": "Verberg", "Hide": "Verberg",
"Hide Additional Params": "Verberg Extra Params", "Hide Additional Params": "Verberg Extra Params",
"How can I help you today?": "Hoe kan ik je vandaag helpen?", "How can I help you today?": "Hoe kan ik je vandaag helpen?",
"Hybrid Search": "",
"Image Generation (Experimental)": "Afbeelding Generatie (Experimenteel)", "Image Generation (Experimental)": "Afbeelding Generatie (Experimenteel)",
"Image Generation Engine": "Afbeelding Generatie Engine", "Image Generation Engine": "Afbeelding Generatie Engine",
"Image Settings": "Afbeelding Instellingen", "Image Settings": "Afbeelding Instellingen",
@ -178,6 +211,7 @@
"Keep Alive": "Houd Actief", "Keep Alive": "Houd Actief",
"Keyboard shortcuts": "Toetsenbord snelkoppelingen", "Keyboard shortcuts": "Toetsenbord snelkoppelingen",
"Language": "Taal", "Language": "Taal",
"Last Active": "",
"Light": "Licht", "Light": "Licht",
"OLED Dark": "OLED-donker", "OLED Dark": "OLED-donker",
"Listening...": "Luisteren...", "Listening...": "Luisteren...",
@ -193,10 +227,12 @@
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "MMMM DD, YYYY": "MMMM DD, YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' is succesvol gedownload.", "Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' is succesvol gedownload.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' staat al in de wachtrij voor downloaden.", "Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' staat al in de wachtrij voor downloaden.",
"Model {{modelId}} not found": "Model {{modelId}} niet gevonden", "Model {{modelId}} not found": "Model {{modelId}} niet gevonden",
"Model {{modelName}} already exists.": "Model {{modelName}} bestaat al.", "Model {{modelName}} already exists.": "Model {{modelName}} bestaat al.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Name": "Model Naam", "Model Name": "Model Naam",
"Model not selected": "Model niet geselecteerd", "Model not selected": "Model niet geselecteerd",
"Model Tag Name": "Model Tag Naam", "Model Tag Name": "Model Tag Naam",
@ -207,6 +243,7 @@
"Modelfile Content": "Modelfile Inhoud", "Modelfile Content": "Modelfile Inhoud",
"Modelfiles": "Modelfiles", "Modelfiles": "Modelfiles",
"Models": "Modellen", "Models": "Modellen",
"More": "",
"My Documents": "Mijn Documenten", "My Documents": "Mijn Documenten",
"My Modelfiles": "Mijn Modelfiles", "My Modelfiles": "Mijn Modelfiles",
"My Prompts": "Mijn Prompts", "My Prompts": "Mijn Prompts",
@ -215,10 +252,14 @@
"Name your modelfile": "Benoem je modelfile", "Name your modelfile": "Benoem je modelfile",
"New Chat": "Nieuwe Chat", "New Chat": "Nieuwe Chat",
"New Password": "Nieuw Wachtwoord", "New Password": "Nieuw Wachtwoord",
"Not factually correct": "",
"Not sure what to add?": "Niet zeker wat toe te voegen?", "Not sure what to add?": "Niet zeker wat toe te voegen?",
"Not sure what to write? Switch to": "Niet zeker wat te schrijven? Schakel over naar", "Not sure what to write? Switch to": "Niet zeker wat te schrijven? Schakel over naar",
"Notifications": "Desktop Notificaties",
"Off": "Uit", "Off": "Uit",
"Okay, Let's Go!": "Okay, Laten we gaan!", "Okay, Let's Go!": "Okay, Laten we gaan!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "Ollama Basis URL", "Ollama Base URL": "Ollama Basis URL",
"Ollama Version": "Ollama Versie", "Ollama Version": "Ollama Versie",
"On": "Aan", "On": "Aan",
@ -231,15 +272,20 @@
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "Open AI (Dall-E)", "Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "Open nieuwe chat", "Open new chat": "Open nieuwe chat",
"OpenAI": "",
"OpenAI API": "OpenAI API", "OpenAI API": "OpenAI API",
"OpenAI API Key": "OpenAI API Sleutel", "OpenAI API Config": "",
"OpenAI API Key is required.": "OpenAI API Sleutel is verplicht", "OpenAI API Key is required.": "OpenAI API Sleutel is verplicht",
"OpenAI URL/Key required.": "",
"or": "of", "or": "of",
"Other": "",
"Parameters": "Parameters", "Parameters": "Parameters",
"Password": "Wachtwoord", "Password": "Wachtwoord",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "PDF Extract Afbeeldingen (OCR)", "PDF Extract Images (OCR)": "PDF Extract Afbeeldingen (OCR)",
"pending": "wachtend", "pending": "wachtend",
"Permission denied when accessing microphone: {{error}}": "Toestemming geweigerd bij toegang tot microfoon: {{error}}", "Permission denied when accessing microphone: {{error}}": "Toestemming geweigerd bij toegang tot microfoon: {{error}}",
"Plain text (.txt)": "",
"Playground": "Speeltuin", "Playground": "Speeltuin",
"Archived Chats": "chatrecord", "Archived Chats": "chatrecord",
"Profile": "Profiel", "Profile": "Profiel",
@ -251,12 +297,18 @@
"Query Params": "Query Params", "Query Params": "Query Params",
"RAG Template": "RAG Template", "RAG Template": "RAG Template",
"Raw Format": "Raw Formaat", "Raw Format": "Raw Formaat",
"Read Aloud": "",
"Record voice": "Neem stem op", "Record voice": "Neem stem op",
"Redirecting you to OpenWebUI Community": "Je wordt doorgestuurd naar OpenWebUI Community", "Redirecting you to OpenWebUI Community": "Je wordt doorgestuurd naar OpenWebUI Community",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "Release Notes", "Release Notes": "Release Notes",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "Herhaal Laatste N", "Repeat Last N": "Herhaal Laatste N",
"Repeat Penalty": "Herhaal Straf", "Repeat Penalty": "Herhaal Straf",
"Request Mode": "Request Modus", "Request Mode": "Request Modus",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Reset Vector Opslag", "Reset Vector Storage": "Reset Vector Opslag",
"Response AutoCopy to Clipboard": "Antwoord Automatisch Kopiëren naar Klembord", "Response AutoCopy to Clipboard": "Antwoord Automatisch Kopiëren naar Klembord",
"Role": "Rol", "Role": "Rol",
@ -271,6 +323,7 @@
"Scan complete!": "Scan voltooid!", "Scan complete!": "Scan voltooid!",
"Scan for documents from {{path}}": "Scan voor documenten van {{path}}", "Scan for documents from {{path}}": "Scan voor documenten van {{path}}",
"Search": "Zoeken", "Search": "Zoeken",
"Search a model": "",
"Search Documents": "Zoek Documenten", "Search Documents": "Zoek Documenten",
"Search Prompts": "Zoek Prompts", "Search Prompts": "Zoek Prompts",
"See readme.md for instructions": "Zie readme.md voor instructies", "See readme.md for instructions": "Zie readme.md voor instructies",
@ -290,37 +343,46 @@
"Set Voice": "Stel Stem in", "Set Voice": "Stel Stem in",
"Settings": "Instellingen", "Settings": "Instellingen",
"Settings saved successfully!": "Instellingen succesvol opgeslagen!", "Settings saved successfully!": "Instellingen succesvol opgeslagen!",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "Deel naar OpenWebUI Community", "Share to OpenWebUI Community": "Deel naar OpenWebUI Community",
"short-summary": "korte-samenvatting", "short-summary": "korte-samenvatting",
"Show": "Toon", "Show": "Toon",
"Show Additional Params": "Toon Extra Params", "Show Additional Params": "Toon Extra Params",
"Show shortcuts": "Toon snelkoppelingen", "Show shortcuts": "Toon snelkoppelingen",
"Showcased creativity": "",
"sidebar": "sidebar", "sidebar": "sidebar",
"Sign in": "Inloggen", "Sign in": "Inloggen",
"Sign Out": "Uitloggen", "Sign Out": "Uitloggen",
"Sign up": "Registreren", "Sign up": "Registreren",
"Signing in": "",
"Speech recognition error: {{error}}": "Spraakherkenning fout: {{error}}", "Speech recognition error: {{error}}": "Spraakherkenning fout: {{error}}",
"Speech-to-Text Engine": "Spraak-naar-tekst Engine", "Speech-to-Text Engine": "Spraak-naar-tekst Engine",
"SpeechRecognition API is not supported in this browser.": "SpeechRecognition API wordt niet ondersteund in deze browser.", "SpeechRecognition API is not supported in this browser.": "SpeechRecognition API wordt niet ondersteund in deze browser.",
"Stop Sequence": "Stop Sequentie", "Stop Sequence": "Stop Sequentie",
"STT Settings": "STT Instellingen", "STT Settings": "STT Instellingen",
"Submit": "Verzenden", "Submit": "Verzenden",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "Succes", "Success": "Succes",
"Successfully updated.": "Succesvol bijgewerkt.", "Successfully updated.": "Succesvol bijgewerkt.",
"Sync All": "Synchroniseer Alles", "Sync All": "Synchroniseer Alles",
"System": "Systeem", "System": "Systeem",
"System Prompt": "Systeem Prompt", "System Prompt": "Systeem Prompt",
"Tags": "Tags", "Tags": "Tags",
"Tell us more:": "",
"Temperature": "Temperatuur", "Temperature": "Temperatuur",
"Template": "Template", "Template": "Template",
"Text Completion": "Tekst Aanvulling", "Text Completion": "Tekst Aanvulling",
"Text-to-Speech Engine": "Tekst-naar-Spraak Engine", "Text-to-Speech Engine": "Tekst-naar-Spraak Engine",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "",
"Theme": "Thema", "Theme": "Thema",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dit zorgt ervoor dat je waardevolle gesprekken veilig worden opgeslagen in je backend database. Dank je wel!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dit zorgt ervoor dat je waardevolle gesprekken veilig worden opgeslagen in je backend database. Dank je wel!",
"This setting does not sync across browsers or devices.": "Deze instelling wordt niet gesynchroniseerd tussen browsers of apparaten.", "This setting does not sync across browsers or devices.": "Deze instelling wordt niet gesynchroniseerd tussen browsers of apparaten.",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Tip: Werk meerdere variabele slots achtereenvolgens bij door op de tab-toets te drukken in de chat input na elke vervanging.", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Tip: Werk meerdere variabele slots achtereenvolgens bij door op de tab-toets te drukken in de chat input na elke vervanging.",
"Title": "Titel", "Title": "Titel",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "Titel Auto-Generatie", "Title Auto-Generation": "Titel Auto-Generatie",
"Title Generation Prompt": "Titel Generatie Prompt", "Title Generation Prompt": "Titel Generatie Prompt",
"to": "naar", "to": "naar",
@ -336,13 +398,19 @@
"Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL", "Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL",
"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Er was een probleem met verbinden met {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Er was een probleem met verbinden met {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Onbekend Bestandstype '{{file_type}}', maar accepteren en behandelen als platte tekst", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Onbekend Bestandstype '{{file_type}}', maar accepteren en behandelen als platte tekst",
"Update and Copy Link": "",
"Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "Wijzig wachtwoord", "Update password": "Wijzig wachtwoord",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "Upload een GGUF model", "Upload a GGUF model": "Upload een GGUF model",
"Upload files": "Upload bestanden", "Upload files": "Upload bestanden",
"Upload Progress": "Upload Voortgang", "Upload Progress": "Upload Voortgang",
"URL Mode": "URL Modus", "URL Mode": "URL Modus",
"Use '#' in the prompt input to load and select your documents.": "Gebruik '#' in de prompt input om je documenten te laden en te selecteren.", "Use '#' in the prompt input to load and select your documents.": "Gebruik '#' in de prompt input om je documenten te laden en te selecteren.",
"Use Gravatar": "Gebruik Gravatar", "Use Gravatar": "Gebruik Gravatar",
"Use Initials": "",
"user": "user", "user": "user",
"User Permissions": "Gebruikers Rechten", "User Permissions": "Gebruikers Rechten",
"Users": "Gebruikers", "Users": "Gebruikers",
@ -351,7 +419,9 @@
"variable": "variabele", "variable": "variabele",
"variable to have them replaced with clipboard content.": "variabele om ze te laten vervangen door klembord inhoud.", "variable to have them replaced with clipboard content.": "variabele om ze te laten vervangen door klembord inhoud.",
"Version": "Versie", "Version": "Versie",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web", "Web": "Web",
"Webhook URL": "",
"WebUI Add-ons": "WebUI Add-ons", "WebUI Add-ons": "WebUI Add-ons",
"WebUI Settings": "WebUI Instellingen", "WebUI Settings": "WebUI Instellingen",
"WebUI will make requests to": "WebUI zal verzoeken doen naar", "WebUI will make requests to": "WebUI zal verzoeken doen naar",

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(np. `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(np. `sh webui.sh --api`)",
"(latest)": "(najnowszy)", "(latest)": "(najnowszy)",
"{{modelName}} is thinking...": "{{modelName}} myśli...", "{{modelName}} is thinking...": "{{modelName}} myśli...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "Backend {{webUIName}} wymagane", "{{webUIName}} Backend Required": "Backend {{webUIName}} wymagane",
"a user": "użytkownik", "a user": "użytkownik",
"About": "O nas", "About": "O nas",
"Account": "Konto", "Account": "Konto",
"Action": "Akcja", "Accurate information": "",
"Add a model": "Dodaj model", "Add a model": "Dodaj model",
"Add a model tag name": "Dodaj nazwę tagu modelu", "Add a model tag name": "Dodaj nazwę tagu modelu",
"Add a short description about what this modelfile does": "Dodaj krótki opis tego, co robi ten plik modelu", "Add a short description about what this modelfile does": "Dodaj krótki opis tego, co robi ten plik modelu",
@ -17,7 +18,8 @@
"Add Docs": "Dodaj dokumenty", "Add Docs": "Dodaj dokumenty",
"Add Files": "Dodaj pliki", "Add Files": "Dodaj pliki",
"Add message": "Dodaj wiadomość", "Add message": "Dodaj wiadomość",
"add tags": "dodaj tagi", "Add Model": "",
"Add Tags": "dodaj tagi",
"Adjusting these settings will apply changes universally to all users.": "Dostosowanie tych ustawień spowoduje zastosowanie zmian uniwersalnie do wszystkich użytkowników.", "Adjusting these settings will apply changes universally to all users.": "Dostosowanie tych ustawień spowoduje zastosowanie zmian uniwersalnie do wszystkich użytkowników.",
"admin": "admin", "admin": "admin",
"Admin Panel": "Panel administracyjny", "Admin Panel": "Panel administracyjny",
@ -33,9 +35,14 @@
"and": "i", "and": "i",
"API Base URL": "Podstawowy adres URL interfejsu API", "API Base URL": "Podstawowy adres URL interfejsu API",
"API Key": "Klucz API", "API Key": "Klucz API",
"API Key created.": "",
"API keys": "",
"API RPM": "Pakiet API RPM", "API RPM": "Pakiet API RPM",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "są dozwolone - Aktywuj to polecenie, wpisując", "are allowed - Activate this command by typing": "są dozwolone - Aktywuj to polecenie, wpisując",
"Are you sure?": "Jesteś pewien?", "Are you sure?": "Jesteś pewien?",
"Attention to detail": "",
"Audio": "Dźwięk", "Audio": "Dźwięk",
"Auto-playback response": "Odtwarzanie automatyczne odpowiedzi", "Auto-playback response": "Odtwarzanie automatyczne odpowiedzi",
"Auto-send input after 3 sec.": "Wysyłanie automatyczne po 3 sek.", "Auto-send input after 3 sec.": "Wysyłanie automatyczne po 3 sek.",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "Podstawowy adres URL AUTOMATIC1111 jest wymagany.", "AUTOMATIC1111 Base URL is required.": "Podstawowy adres URL AUTOMATIC1111 jest wymagany.",
"available!": "dostępny!", "available!": "dostępny!",
"Back": "Wstecz", "Back": "Wstecz",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "Tryb budowniczego", "Builder Mode": "Tryb budowniczego",
"Cancel": "Anuluj", "Cancel": "Anuluj",
"Categories": "Kategorie", "Categories": "Kategorie",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "Kliknij przycisk roli użytkownika, aby zmienić rolę użytkownika.", "Click on the user role button to change a user's role.": "Kliknij przycisk roli użytkownika, aby zmienić rolę użytkownika.",
"Close": "Zamknij", "Close": "Zamknij",
"Collection": "Kolekcja", "Collection": "Kolekcja",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "Polecenie", "Command": "Polecenie",
"Confirm Password": "Potwierdź hasło", "Confirm Password": "Potwierdź hasło",
"Connections": "Połączenia", "Connections": "Połączenia",
"Content": "Zawartość", "Content": "Zawartość",
"Context Length": "Długość kontekstu", "Context Length": "Długość kontekstu",
"Continue Response": "",
"Conversation Mode": "Tryb rozmowy", "Conversation Mode": "Tryb rozmowy",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "Skopiuj ostatni blok kodu", "Copy last code block": "Skopiuj ostatni blok kodu",
"Copy last response": "Skopiuj ostatnią odpowiedź", "Copy last response": "Skopiuj ostatnią odpowiedź",
"Copy Link": "",
"Copying to clipboard was successful!": "Kopiowanie do schowka zakończone powodzeniem!", "Copying to clipboard was successful!": "Kopiowanie do schowka zakończone powodzeniem!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Utwórz zwięzłą frazę składającą się z 3-5 słów jako nagłówek dla następującego zapytania, ściśle przestrzegając limitu od 3 do 5 słów i unikając użycia słowa 'tytuł':", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Utwórz zwięzłą frazę składającą się z 3-5 słów jako nagłówek dla następującego zapytania, ściśle przestrzegając limitu od 3 do 5 słów i unikając użycia słowa 'tytuł':",
"Create a modelfile": "Utwórz plik modelu", "Create a modelfile": "Utwórz plik modelu",
"Create Account": "Utwórz konto", "Create Account": "Utwórz konto",
"Created at": "Utworzono o", "Created at": "Utworzono o",
"Created by": "Utworzono przez", "Created At": "",
"Current Model": "Bieżący model", "Current Model": "Bieżący model",
"Current Password": "Bieżące hasło", "Current Password": "Bieżące hasło",
"Custom": "Niestandardowy", "Custom": "Niestandardowy",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "Domyślny", "Default": "Domyślny",
"Default (Automatic1111)": "Domyślny (Automatic1111)", "Default (Automatic1111)": "Domyślny (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "Domyślny (Interfejs API)", "Default (Web API)": "Domyślny (Interfejs API)",
"Default model updated": "Domyślny model zaktualizowany", "Default model updated": "Domyślny model zaktualizowany",
"Default Prompt Suggestions": "Domyślne sugestie promptów", "Default Prompt Suggestions": "Domyślne sugestie promptów",
"Default User Role": "Domyślna rola użytkownika", "Default User Role": "Domyślna rola użytkownika",
"delete": "Usuń", "delete": "Usuń",
"Delete": "",
"Delete a model": "Usuń model", "Delete a model": "Usuń model",
"Delete chat": "Usuń czat", "Delete chat": "Usuń czat",
"Delete Chat": "",
"Delete Chats": "Usuń czaty", "Delete Chats": "Usuń czaty",
"Delete User": "",
"Deleted {{deleteModelTag}}": "Usunięto {{deleteModelTag}}", "Deleted {{deleteModelTag}}": "Usunięto {{deleteModelTag}}",
"Deleted {tagName}": "Usunięto {tagName}", "Deleted {{tagName}}": "",
"Description": "Opis", "Description": "Opis",
"Notifications": "Powiadomienia", "Didn't fully follow instructions": "",
"Disabled": "Wyłączone", "Disabled": "Wyłączone",
"Discover a modelfile": "Odkryj plik modelu", "Discover a modelfile": "Odkryj plik modelu",
"Discover a prompt": "Odkryj prompt", "Discover a prompt": "Odkryj prompt",
@ -113,19 +133,21 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "nie nawiązuje żadnych zewnętrznych połączeń, a Twoje dane pozostają bezpiecznie na Twoim lokalnie hostowanym serwerze.", "does not make any external connections, and your data stays securely on your locally hosted server.": "nie nawiązuje żadnych zewnętrznych połączeń, a Twoje dane pozostają bezpiecznie na Twoim lokalnie hostowanym serwerze.",
"Don't Allow": "Nie zezwalaj", "Don't Allow": "Nie zezwalaj",
"Don't have an account?": "Nie masz konta?", "Don't have an account?": "Nie masz konta?",
"Download as a File": "Pobierz jako plik", "Don't like the style": "",
"Download": "",
"Download Database": "Pobierz bazę danych", "Download Database": "Pobierz bazę danych",
"Drop any files here to add to the conversation": "Upuść pliki tutaj, aby dodać do rozmowy", "Drop any files here to add to the conversation": "Upuść pliki tutaj, aby dodać do rozmowy",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "np. '30s', '10m'. Poprawne jednostki czasu to 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "np. '30s', '10m'. Poprawne jednostki czasu to 's', 'm', 'h'.",
"Edit": "",
"Edit Doc": "Edytuj dokument", "Edit Doc": "Edytuj dokument",
"Edit User": "Edytuj użytkownika", "Edit User": "Edytuj użytkownika",
"Email": "Email", "Email": "Email",
"Embedding model: {{embedding_model}}": "Osadzony model: {{embedding_model}}", "Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "Włącz historię czatu", "Enable Chat History": "Włącz historię czatu",
"Enable New Sign Ups": "Włącz nowe rejestracje", "Enable New Sign Ups": "Włącz nowe rejestracje",
"Enabled": "Włączone", "Enabled": "Włączone",
"Enter {{role}} message here": "Wprowadź wiadomość {{role}} tutaj", "Enter {{role}} message here": "Wprowadź wiadomość {{role}} tutaj",
"Enter API Key": "Wprowadź klucz API",
"Enter Chunk Overlap": "Wprowadź zakchodzenie bloku", "Enter Chunk Overlap": "Wprowadź zakchodzenie bloku",
"Enter Chunk Size": "Wprowadź rozmiar bloku", "Enter Chunk Size": "Wprowadź rozmiar bloku",
"Enter Image Size (e.g. 512x512)": "Wprowadź rozmiar obrazu (np. 512x512)", "Enter Image Size (e.g. 512x512)": "Wprowadź rozmiar obrazu (np. 512x512)",
@ -136,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "Wprowadź maksymalną liczbę tokenów (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "Wprowadź maksymalną liczbę tokenów (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "Wprowadź tag modelu (np. {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "Wprowadź tag modelu (np. {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "Wprowadź liczbę kroków (np. 50)", "Enter Number of Steps (e.g. 50)": "Wprowadź liczbę kroków (np. 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "Wprowadź sekwencję zatrzymania", "Enter stop sequence": "Wprowadź sekwencję zatrzymania",
"Enter Top K": "Wprowadź Top K", "Enter Top K": "Wprowadź Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Wprowadź adres URL (np. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Wprowadź adres URL (np. http://127.0.0.1:7860/)",
@ -148,21 +171,29 @@
"Export Documents Mapping": "Eksportuj mapowanie dokumentów", "Export Documents Mapping": "Eksportuj mapowanie dokumentów",
"Export Modelfiles": "Eksportuj pliki modeli", "Export Modelfiles": "Eksportuj pliki modeli",
"Export Prompts": "Eksportuj prompty", "Export Prompts": "Eksportuj prompty",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "Nie udało się odczytać zawartości schowka", "Failed to read clipboard contents": "Nie udało się odczytać zawartości schowka",
"Feel free to add specific details": "",
"File Mode": "Tryb pliku", "File Mode": "Tryb pliku",
"File not found.": "Plik nie został znaleziony.", "File not found.": "Plik nie został znaleziony.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Wykryto podszywanie się pod odcisk palca: Nie można używać inicjałów jako awatara. Przechodzenie do domyślnego obrazu profilowego.", "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Wykryto podszywanie się pod odcisk palca: Nie można używać inicjałów jako awatara. Przechodzenie do domyślnego obrazu profilowego.",
"Fluidly stream large external response chunks": "",
"Focus chat input": "Skoncentruj na czacie", "Focus chat input": "Skoncentruj na czacie",
"Followed instructions perfectly": "",
"Fluidly stream large external response chunks": "Płynnie przesyłaj strumieniowo duże fragmenty odpowiedzi zewnętrznych", "Fluidly stream large external response chunks": "Płynnie przesyłaj strumieniowo duże fragmenty odpowiedzi zewnętrznych",
"Format your variables using square brackets like this:": "Formatuj swoje zmienne, używając nawiasów kwadratowych, np.", "Format your variables using square brackets like this:": "Formatuj swoje zmienne, używając nawiasów kwadratowych, np.",
"From (Base Model)": "Z (Model Podstawowy)", "From (Base Model)": "Z (Model Podstawowy)",
"Full Screen Mode": "Tryb pełnoekranowy", "Full Screen Mode": "Tryb pełnoekranowy",
"General": "Ogólne", "General": "Ogólne",
"General Settings": "Ogólne ustawienia", "General Settings": "Ogólne ustawienia",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "Witaj, {{name}}", "Hello, {{name}}": "Witaj, {{name}}",
"Hide": "Ukryj", "Hide": "Ukryj",
"Hide Additional Params": "Ukryj dodatkowe parametry", "Hide Additional Params": "Ukryj dodatkowe parametry",
"How can I help you today?": "Jak mogę Ci dzisiaj pomóc?", "How can I help you today?": "Jak mogę Ci dzisiaj pomóc?",
"Hybrid Search": "",
"Image Generation (Experimental)": "Generowanie obrazu (eksperymentalne)", "Image Generation (Experimental)": "Generowanie obrazu (eksperymentalne)",
"Image Generation Engine": "Silnik generowania obrazu", "Image Generation Engine": "Silnik generowania obrazu",
"Image Settings": "Ustawienia obrazu", "Image Settings": "Ustawienia obrazu",
@ -180,6 +211,7 @@
"Keep Alive": "Zachowaj łączność", "Keep Alive": "Zachowaj łączność",
"Keyboard shortcuts": "Skróty klawiszowe", "Keyboard shortcuts": "Skróty klawiszowe",
"Language": "Język", "Language": "Język",
"Last Active": "",
"Light": "Jasny", "Light": "Jasny",
"OLED Dark": "Ciemny OLED", "OLED Dark": "Ciemny OLED",
"Listening...": "Nasłuchiwanie...", "Listening...": "Nasłuchiwanie...",
@ -195,10 +227,9 @@
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "MMMM DD, YYYY": "MMMM DD, YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' został pomyślnie pobrany.", "Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' został pomyślnie pobrany.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' jest już w kolejce do pobrania.", "Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' jest już w kolejce do pobrania.",
"Model {{embedding_model}} update complete!": "Aktualizacja modelu {{embedding_model}} zakończona pomyślnie!",
"Model {{embedding_model}} update failed or not required!": "Model {{embedding_model}} aktualizacja nie powiodła się lub nie jest wymagana!",
"Model {{modelId}} not found": "Model {{modelId}} nie został znaleziony", "Model {{modelId}} not found": "Model {{modelId}} nie został znaleziony",
"Model {{modelName}} already exists.": "Model {{modelName}} już istnieje.", "Model {{modelName}} already exists.": "Model {{modelName}} już istnieje.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Wykryto ścieżkę systemu plików modelu. Wymagana jest krótka nazwa modelu do aktualizacji, nie można kontynuować.", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Wykryto ścieżkę systemu plików modelu. Wymagana jest krótka nazwa modelu do aktualizacji, nie można kontynuować.",
@ -212,6 +243,7 @@
"Modelfile Content": "Zawartość pliku modelu", "Modelfile Content": "Zawartość pliku modelu",
"Modelfiles": "Pliki modeli", "Modelfiles": "Pliki modeli",
"Models": "Modele", "Models": "Modele",
"More": "",
"My Documents": "Moje dokumenty", "My Documents": "Moje dokumenty",
"My Modelfiles": "Moje pliki modeli", "My Modelfiles": "Moje pliki modeli",
"My Prompts": "Moje prompty", "My Prompts": "Moje prompty",
@ -220,10 +252,14 @@
"Name your modelfile": "Nadaj nazwę swojemu plikowi modelu", "Name your modelfile": "Nadaj nazwę swojemu plikowi modelu",
"New Chat": "Nowy czat", "New Chat": "Nowy czat",
"New Password": "Nowe hasło", "New Password": "Nowe hasło",
"Not factually correct": "",
"Not sure what to add?": "Nie wiesz, co dodać?", "Not sure what to add?": "Nie wiesz, co dodać?",
"Not sure what to write? Switch to": "Nie wiesz, co napisać? Przełącz się na", "Not sure what to write? Switch to": "Nie wiesz, co napisać? Przełącz się na",
"Notifications": "Powiadomienia",
"Off": "Wyłączony", "Off": "Wyłączony",
"Okay, Let's Go!": "Okej, zaczynamy!", "Okay, Let's Go!": "Okej, zaczynamy!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "Adres bazowy URL Ollama", "Ollama Base URL": "Adres bazowy URL Ollama",
"Ollama Version": "Wersja Ollama", "Ollama Version": "Wersja Ollama",
"On": "Włączony", "On": "Włączony",
@ -236,17 +272,24 @@
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "Open AI (Dall-E)", "Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "Otwórz nowy czat", "Open new chat": "Otwórz nowy czat",
"OpenAI": "",
"OpenAI API": "OpenAI API", "OpenAI API": "OpenAI API",
"OpenAI API Key": "Klucz API OpenAI", "OpenAI API Config": "",
"OpenAI API Key is required.": "Klucz API OpenAI jest wymagany.", "OpenAI API Key is required.": "Klucz API OpenAI jest wymagany.",
"OpenAI URL/Key required.": "",
"or": "lub", "or": "lub",
"Other": "",
"Parameters": "Parametry", "Parameters": "Parametry",
"Password": "Hasło", "Password": "Hasło",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "PDF Wyodrębnij obrazy (OCR)", "PDF Extract Images (OCR)": "PDF Wyodrębnij obrazy (OCR)",
"pending": "oczekujące", "pending": "oczekujące",
"Permission denied when accessing microphone: {{error}}": "Odmowa dostępu do mikrofonu: {{error}}", "Permission denied when accessing microphone: {{error}}": "Odmowa dostępu do mikrofonu: {{error}}",
"Plain text (.txt)": "",
"Playground": "Plac zabaw", "Playground": "Plac zabaw",
"Profile": "Profil", "Positive attitude": "",
"Profile Image": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
"Prompt Content": "Zawartość prompta", "Prompt Content": "Zawartość prompta",
"Prompt suggestions": "Sugestie prompta", "Prompt suggestions": "Sugestie prompta",
"Prompts": "Prompty", "Prompts": "Prompty",
@ -255,12 +298,18 @@
"Query Params": "Parametry zapytania", "Query Params": "Parametry zapytania",
"RAG Template": "Szablon RAG", "RAG Template": "Szablon RAG",
"Raw Format": "Format bez obróbki", "Raw Format": "Format bez obróbki",
"Read Aloud": "",
"Record voice": "Nagraj głos", "Record voice": "Nagraj głos",
"Redirecting you to OpenWebUI Community": "Przekierowujemy Cię do społeczności OpenWebUI", "Redirecting you to OpenWebUI Community": "Przekierowujemy Cię do społeczności OpenWebUI",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "Notatki wydania", "Release Notes": "Notatki wydania",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "Powtórz ostatnie N", "Repeat Last N": "Powtórz ostatnie N",
"Repeat Penalty": "Kara za powtórzenie", "Repeat Penalty": "Kara za powtórzenie",
"Request Mode": "Tryb żądania", "Request Mode": "Tryb żądania",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Resetuj przechowywanie wektorów", "Reset Vector Storage": "Resetuj przechowywanie wektorów",
"Response AutoCopy to Clipboard": "Automatyczne kopiowanie odpowiedzi do schowka", "Response AutoCopy to Clipboard": "Automatyczne kopiowanie odpowiedzi do schowka",
"Role": "Rola", "Role": "Rola",
@ -275,6 +324,7 @@
"Scan complete!": "Skanowanie zakończone!", "Scan complete!": "Skanowanie zakończone!",
"Scan for documents from {{path}}": "Skanuj dokumenty z {{path}}", "Scan for documents from {{path}}": "Skanuj dokumenty z {{path}}",
"Search": "Szukaj", "Search": "Szukaj",
"Search a model": "",
"Search Documents": "Szukaj dokumentów", "Search Documents": "Szukaj dokumentów",
"Search Prompts": "Szukaj promptów", "Search Prompts": "Szukaj promptów",
"See readme.md for instructions": "Zajrzyj do readme.md po instrukcje", "See readme.md for instructions": "Zajrzyj do readme.md po instrukcje",
@ -294,37 +344,46 @@
"Set Voice": "Ustaw głos", "Set Voice": "Ustaw głos",
"Settings": "Ustawienia", "Settings": "Ustawienia",
"Settings saved successfully!": "Ustawienia zapisane pomyślnie!", "Settings saved successfully!": "Ustawienia zapisane pomyślnie!",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "Dziel się z społecznością OpenWebUI", "Share to OpenWebUI Community": "Dziel się z społecznością OpenWebUI",
"short-summary": "Krótkie podsumowanie", "short-summary": "Krótkie podsumowanie",
"Show": "Pokaż", "Show": "Pokaż",
"Show Additional Params": "Pokaż dodatkowe parametry", "Show Additional Params": "Pokaż dodatkowe parametry",
"Show shortcuts": "Pokaż skróty", "Show shortcuts": "Pokaż skróty",
"Showcased creativity": "",
"sidebar": "Panel boczny", "sidebar": "Panel boczny",
"Sign in": "Zaloguj się", "Sign in": "Zaloguj się",
"Sign Out": "Wyloguj się", "Sign Out": "Wyloguj się",
"Sign up": "Zarejestruj się", "Sign up": "Zarejestruj się",
"Signing in": "",
"Speech recognition error: {{error}}": "Błąd rozpoznawania mowy: {{error}}", "Speech recognition error: {{error}}": "Błąd rozpoznawania mowy: {{error}}",
"Speech-to-Text Engine": "Silnik mowy na tekst", "Speech-to-Text Engine": "Silnik mowy na tekst",
"SpeechRecognition API is not supported in this browser.": "API Rozpoznawania Mowy nie jest obsługiwane w tej przeglądarce.", "SpeechRecognition API is not supported in this browser.": "API Rozpoznawania Mowy nie jest obsługiwane w tej przeglądarce.",
"Stop Sequence": "Zatrzymaj sekwencję", "Stop Sequence": "Zatrzymaj sekwencję",
"STT Settings": "Ustawienia STT", "STT Settings": "Ustawienia STT",
"Submit": "Zatwierdź", "Submit": "Zatwierdź",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "Sukces", "Success": "Sukces",
"Successfully updated.": "Pomyślnie zaktualizowano.", "Successfully updated.": "Pomyślnie zaktualizowano.",
"Sync All": "Synchronizuj wszystko", "Sync All": "Synchronizuj wszystko",
"System": "System", "System": "System",
"System Prompt": "Prompt systemowy", "System Prompt": "Prompt systemowy",
"Tags": "Tagi", "Tags": "Tagi",
"Tell us more:": "",
"Temperature": "Temperatura", "Temperature": "Temperatura",
"Template": "Szablon", "Template": "Szablon",
"Text Completion": "Uzupełnienie tekstu", "Text Completion": "Uzupełnienie tekstu",
"Text-to-Speech Engine": "Silnik tekstu na mowę", "Text-to-Speech Engine": "Silnik tekstu na mowę",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "",
"Theme": "Motyw", "Theme": "Motyw",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "To zapewnia, że Twoje cenne rozmowy są bezpiecznie zapisywane w bazie danych backendowej. Dziękujemy!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "To zapewnia, że Twoje cenne rozmowy są bezpiecznie zapisywane w bazie danych backendowej. Dziękujemy!",
"This setting does not sync across browsers or devices.": "To ustawienie nie synchronizuje się między przeglądarkami ani urządzeniami.", "This setting does not sync across browsers or devices.": "To ustawienie nie synchronizuje się między przeglądarkami ani urządzeniami.",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Porada: Aktualizuj wiele zmiennych kolejno, naciskając klawisz tabulatora w polu wprowadzania czatu po każdej zmianie.", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Porada: Aktualizuj wiele zmiennych kolejno, naciskając klawisz tabulatora w polu wprowadzania czatu po każdej zmianie.",
"Title": "Tytuł", "Title": "Tytuł",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "Automatyczne generowanie tytułu", "Title Auto-Generation": "Automatyczne generowanie tytułu",
"Title Generation Prompt": "Prompt generowania tytułu", "Title Generation Prompt": "Prompt generowania tytułu",
"to": "do", "to": "do",
@ -339,11 +398,13 @@
"TTS Settings": "Ustawienia TTS", "TTS Settings": "Ustawienia TTS",
"Type Hugging Face Resolve (Download) URL": "Wprowadź adres URL do pobrania z Hugging Face", "Type Hugging Face Resolve (Download) URL": "Wprowadź adres URL do pobrania z Hugging Face",
"Uh-oh! There was an issue connecting to {{provider}}.": "O nie! Wystąpił problem z połączeniem z {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "O nie! Wystąpił problem z połączeniem z {{provider}}.",
"Understand that updating or changing your embedding model requires reset of the vector database and re-import of all documents. You have been warned!": "Zrozum, że aktualizacja lub zmiana modelu osadzania wymaga zresetowania bazy wektorów i ponownego zaimportowania wszystkich dokumentów. Zostałeś ostrzeżony!",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Nieznany typ pliku '{{file_type}}', ale akceptowany i traktowany jako zwykły tekst", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Nieznany typ pliku '{{file_type}}', ale akceptowany i traktowany jako zwykły tekst",
"Update": "Aktualizacja", "Update and Copy Link": "",
"Update embedding model {{embedding_model}}": "Aktualizuj modelu osadzania {{embedding_model}}", "Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "Aktualizacja hasła", "Update password": "Aktualizacja hasła",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "Prześlij model GGUF", "Upload a GGUF model": "Prześlij model GGUF",
"Upload files": "Prześlij pliki", "Upload files": "Prześlij pliki",
"Upload Progress": "Postęp przesyłania", "Upload Progress": "Postęp przesyłania",
@ -359,7 +420,9 @@
"variable": "zmienna", "variable": "zmienna",
"variable to have them replaced with clipboard content.": "zmienna która zostanie zastąpiona zawartością schowka.", "variable to have them replaced with clipboard content.": "zmienna która zostanie zastąpiona zawartością schowka.",
"Version": "Wersja", "Version": "Wersja",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Sieć", "Web": "Sieć",
"Webhook URL": "",
"WebUI Add-ons": "Dodatki do interfejsu WebUI", "WebUI Add-ons": "Dodatki do interfejsu WebUI",
"WebUI Settings": "Ustawienia interfejsu WebUI", "WebUI Settings": "Ustawienia interfejsu WebUI",
"WebUI will make requests to": "Interfejs sieciowy będzie wysyłał żądania do", "WebUI will make requests to": "Interfejs sieciowy będzie wysyłał żądania do",

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(por exemplo, `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(por exemplo, `sh webui.sh --api`)",
"(latest)": "(mais recente)", "(latest)": "(mais recente)",
"{{modelName}} is thinking...": "{{modelName}} está pensando...", "{{modelName}} is thinking...": "{{modelName}} está pensando...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}} Backend Necessário", "{{webUIName}} Backend Required": "{{webUIName}} Backend Necessário",
"a user": "um usuário", "a user": "um usuário",
"About": "Sobre", "About": "Sobre",
"Account": "Conta", "Account": "Conta",
"Action": "Ação", "Accurate information": "",
"Add a model": "Adicionar um modelo", "Add a model": "Adicionar um modelo",
"Add a model tag name": "Adicionar um nome de tag de modelo", "Add a model tag name": "Adicionar um nome de tag de modelo",
"Add a short description about what this modelfile does": "Adicione uma breve descrição sobre o que este arquivo de modelo faz", "Add a short description about what this modelfile does": "Adicione uma breve descrição sobre o que este arquivo de modelo faz",
@ -17,7 +18,8 @@
"Add Docs": "Adicionar Documentos", "Add Docs": "Adicionar Documentos",
"Add Files": "Adicionar Arquivos", "Add Files": "Adicionar Arquivos",
"Add message": "Adicionar mensagem", "Add message": "Adicionar mensagem",
"add tags": "adicionar tags", "Add Model": "",
"Add Tags": "adicionar tags",
"Adjusting these settings will apply changes universally to all users.": "Ajustar essas configurações aplicará alterações universalmente a todos os usuários.", "Adjusting these settings will apply changes universally to all users.": "Ajustar essas configurações aplicará alterações universalmente a todos os usuários.",
"admin": "administrador", "admin": "administrador",
"Admin Panel": "Painel do Administrador", "Admin Panel": "Painel do Administrador",
@ -33,9 +35,14 @@
"and": "e", "and": "e",
"API Base URL": "URL Base da API", "API Base URL": "URL Base da API",
"API Key": "Chave da API", "API Key": "Chave da API",
"API Key created.": "",
"API keys": "",
"API RPM": "API RPM", "API RPM": "API RPM",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "são permitidos - Ative este comando digitando", "are allowed - Activate this command by typing": "são permitidos - Ative este comando digitando",
"Are you sure?": "Tem certeza?", "Are you sure?": "Tem certeza?",
"Attention to detail": "",
"Audio": "Áudio", "Audio": "Áudio",
"Auto-playback response": "Reprodução automática da resposta", "Auto-playback response": "Reprodução automática da resposta",
"Auto-send input after 3 sec.": "Enviar entrada automaticamente após 3 segundos.", "Auto-send input after 3 sec.": "Enviar entrada automaticamente após 3 segundos.",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "A URL Base do AUTOMATIC1111 é obrigatória.", "AUTOMATIC1111 Base URL is required.": "A URL Base do AUTOMATIC1111 é obrigatória.",
"available!": "disponível!", "available!": "disponível!",
"Back": "Voltar", "Back": "Voltar",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "Modo de Construtor", "Builder Mode": "Modo de Construtor",
"Cancel": "Cancelar", "Cancel": "Cancelar",
"Categories": "Categorias", "Categories": "Categorias",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "Clique no botão de função do usuário para alterar a função de um usuário.", "Click on the user role button to change a user's role.": "Clique no botão de função do usuário para alterar a função de um usuário.",
"Close": "Fechar", "Close": "Fechar",
"Collection": "Coleção", "Collection": "Coleção",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "Comando", "Command": "Comando",
"Confirm Password": "Confirmar Senha", "Confirm Password": "Confirmar Senha",
"Connections": "Conexões", "Connections": "Conexões",
"Content": "Conteúdo", "Content": "Conteúdo",
"Context Length": "Comprimento do Contexto", "Context Length": "Comprimento do Contexto",
"Continue Response": "",
"Conversation Mode": "Modo de Conversa", "Conversation Mode": "Modo de Conversa",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "Copiar último bloco de código", "Copy last code block": "Copiar último bloco de código",
"Copy last response": "Copiar última resposta", "Copy last response": "Copiar última resposta",
"Copy Link": "",
"Copying to clipboard was successful!": "Cópia para a área de transferência bem-sucedida!", "Copying to clipboard was successful!": "Cópia para a área de transferência bem-sucedida!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Crie uma frase concisa de 3 a 5 palavras como cabeçalho para a seguinte consulta, aderindo estritamente ao limite de 3 a 5 palavras e evitando o uso da palavra 'título':", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Crie uma frase concisa de 3 a 5 palavras como cabeçalho para a seguinte consulta, aderindo estritamente ao limite de 3 a 5 palavras e evitando o uso da palavra 'título':",
"Create a modelfile": "Criar um arquivo de modelo", "Create a modelfile": "Criar um arquivo de modelo",
"Create Account": "Criar Conta", "Create Account": "Criar Conta",
"Created at": "Criado em", "Created at": "Criado em",
"Created by": "Criado por", "Created At": "",
"Current Model": "Modelo Atual", "Current Model": "Modelo Atual",
"Current Password": "Senha Atual", "Current Password": "Senha Atual",
"Custom": "Personalizado", "Custom": "Personalizado",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "Padrão", "Default": "Padrão",
"Default (Automatic1111)": "Padrão (Automatic1111)", "Default (Automatic1111)": "Padrão (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "Padrão (API Web)", "Default (Web API)": "Padrão (API Web)",
"Default model updated": "Modelo padrão atualizado", "Default model updated": "Modelo padrão atualizado",
"Default Prompt Suggestions": "Sugestões de Prompt Padrão", "Default Prompt Suggestions": "Sugestões de Prompt Padrão",
"Default User Role": "Função de Usuário Padrão", "Default User Role": "Função de Usuário Padrão",
"delete": "excluir", "delete": "excluir",
"Delete": "",
"Delete a model": "Excluir um modelo", "Delete a model": "Excluir um modelo",
"Delete chat": "Excluir bate-papo", "Delete chat": "Excluir bate-papo",
"Delete Chat": "",
"Delete Chats": "Excluir Bate-papos", "Delete Chats": "Excluir Bate-papos",
"Delete User": "",
"Deleted {{deleteModelTag}}": "{{deleteModelTag}} excluído", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} excluído",
"Deleted {tagName}": "{tagName} excluído", "Deleted {{tagName}}": "",
"Description": "Descrição", "Description": "Descrição",
"Notifications": "Notificações da Área de Trabalho", "Didn't fully follow instructions": "",
"Disabled": "Desativado", "Disabled": "Desativado",
"Discover a modelfile": "Descobrir um arquivo de modelo", "Discover a modelfile": "Descobrir um arquivo de modelo",
"Discover a prompt": "Descobrir um prompt", "Discover a prompt": "Descobrir um prompt",
@ -113,18 +133,21 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "não faz conexões externas e seus dados permanecem seguros em seu servidor hospedado localmente.", "does not make any external connections, and your data stays securely on your locally hosted server.": "não faz conexões externas e seus dados permanecem seguros em seu servidor hospedado localmente.",
"Don't Allow": "Não Permitir", "Don't Allow": "Não Permitir",
"Don't have an account?": "Não tem uma conta?", "Don't have an account?": "Não tem uma conta?",
"Download as a File": "Baixar como Arquivo", "Don't like the style": "",
"Download": "",
"Download Database": "Baixar Banco de Dados", "Download Database": "Baixar Banco de Dados",
"Drop any files here to add to the conversation": "Solte os arquivos aqui para adicionar à conversa", "Drop any files here to add to the conversation": "Solte os arquivos aqui para adicionar à conversa",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.",
"Edit": "",
"Edit Doc": "Editar Documento", "Edit Doc": "Editar Documento",
"Edit User": "Editar Usuário", "Edit User": "Editar Usuário",
"Email": "E-mail", "Email": "E-mail",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "Ativar Histórico de Bate-papo", "Enable Chat History": "Ativar Histórico de Bate-papo",
"Enable New Sign Ups": "Ativar Novas Inscrições", "Enable New Sign Ups": "Ativar Novas Inscrições",
"Enabled": "Ativado", "Enabled": "Ativado",
"Enter {{role}} message here": "Digite a mensagem de {{role}} aqui", "Enter {{role}} message here": "Digite a mensagem de {{role}} aqui",
"Enter API Key": "Digite a Chave da API",
"Enter Chunk Overlap": "Digite a Sobreposição de Fragmento", "Enter Chunk Overlap": "Digite a Sobreposição de Fragmento",
"Enter Chunk Size": "Digite o Tamanho do Fragmento", "Enter Chunk Size": "Digite o Tamanho do Fragmento",
"Enter Image Size (e.g. 512x512)": "Digite o Tamanho da Imagem (por exemplo, 512x512)", "Enter Image Size (e.g. 512x512)": "Digite o Tamanho da Imagem (por exemplo, 512x512)",
@ -135,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "Digite o Máximo de Tokens (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "Digite o Máximo de Tokens (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "Digite a tag do modelo (por exemplo, {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "Digite a tag do modelo (por exemplo, {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "Digite o Número de Etapas (por exemplo, 50)", "Enter Number of Steps (e.g. 50)": "Digite o Número de Etapas (por exemplo, 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "Digite a sequência de parada", "Enter stop sequence": "Digite a sequência de parada",
"Enter Top K": "Digite o Top K", "Enter Top K": "Digite o Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Digite a URL (por exemplo, http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Digite a URL (por exemplo, http://127.0.0.1:7860/)",
@ -147,20 +171,29 @@
"Export Documents Mapping": "Exportar Mapeamento de Documentos", "Export Documents Mapping": "Exportar Mapeamento de Documentos",
"Export Modelfiles": "Exportar Arquivos de Modelo", "Export Modelfiles": "Exportar Arquivos de Modelo",
"Export Prompts": "Exportar Prompts", "Export Prompts": "Exportar Prompts",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência", "Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
"Feel free to add specific details": "",
"File Mode": "Modo de Arquivo", "File Mode": "Modo de Arquivo",
"File not found.": "Arquivo não encontrado.", "File not found.": "Arquivo não encontrado.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "",
"Focus chat input": "Focar entrada de bate-papo", "Focus chat input": "Focar entrada de bate-papo",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "Formate suas variáveis usando colchetes como este:", "Format your variables using square brackets like this:": "Formate suas variáveis usando colchetes como este:",
"From (Base Model)": "De (Modelo Base)", "From (Base Model)": "De (Modelo Base)",
"Fluidly stream large external response chunks": "Transmita com fluidez grandes blocos de resposta externa", "Fluidly stream large external response chunks": "Transmita com fluidez grandes blocos de resposta externa",
"Full Screen Mode": "Modo de Tela Cheia", "Full Screen Mode": "Modo de Tela Cheia",
"General": "Geral", "General": "Geral",
"General Settings": "Configurações Gerais", "General Settings": "Configurações Gerais",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "Olá, {{name}}", "Hello, {{name}}": "Olá, {{name}}",
"Hide": "Ocultar", "Hide": "Ocultar",
"Hide Additional Params": "Ocultar Parâmetros Adicionais", "Hide Additional Params": "Ocultar Parâmetros Adicionais",
"How can I help you today?": "Como posso ajudá-lo hoje?", "How can I help you today?": "Como posso ajudá-lo hoje?",
"Hybrid Search": "",
"Image Generation (Experimental)": "Geração de Imagens (Experimental)", "Image Generation (Experimental)": "Geração de Imagens (Experimental)",
"Image Generation Engine": "Mecanismo de Geração de Imagens", "Image Generation Engine": "Mecanismo de Geração de Imagens",
"Image Settings": "Configurações de Imagem", "Image Settings": "Configurações de Imagem",
@ -178,6 +211,7 @@
"Keep Alive": "Manter Vivo", "Keep Alive": "Manter Vivo",
"Keyboard shortcuts": "Atalhos de teclado", "Keyboard shortcuts": "Atalhos de teclado",
"Language": "Idioma", "Language": "Idioma",
"Last Active": "",
"Light": "Claro", "Light": "Claro",
"OLED Dark": "OLED escuro", "OLED Dark": "OLED escuro",
"Listening...": "Ouvindo...", "Listening...": "Ouvindo...",
@ -193,10 +227,12 @@
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "DD/MM/YYYY", "MMMM DD, YYYY": "DD/MM/YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "O modelo '{{modelName}}' foi baixado com sucesso.", "Model '{{modelName}}' has been successfully downloaded.": "O modelo '{{modelName}}' foi baixado com sucesso.",
"Model '{{modelTag}}' is already in queue for downloading.": "O modelo '{{modelTag}}' já está na fila para download.", "Model '{{modelTag}}' is already in queue for downloading.": "O modelo '{{modelTag}}' já está na fila para download.",
"Model {{modelId}} not found": "Modelo {{modelId}} não encontrado", "Model {{modelId}} not found": "Modelo {{modelId}} não encontrado",
"Model {{modelName}} already exists.": "O modelo {{modelName}} já existe.", "Model {{modelName}} already exists.": "O modelo {{modelName}} já existe.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Name": "Nome do Modelo", "Model Name": "Nome do Modelo",
"Model not selected": "Modelo não selecionado", "Model not selected": "Modelo não selecionado",
"Model Tag Name": "Nome da Tag do Modelo", "Model Tag Name": "Nome da Tag do Modelo",
@ -207,6 +243,7 @@
"Modelfile Content": "Conteúdo do Arquivo de Modelo", "Modelfile Content": "Conteúdo do Arquivo de Modelo",
"Modelfiles": "Arquivos de Modelo", "Modelfiles": "Arquivos de Modelo",
"Models": "Modelos", "Models": "Modelos",
"More": "",
"My Documents": "Meus Documentos", "My Documents": "Meus Documentos",
"My Modelfiles": "Meus Arquivos de Modelo", "My Modelfiles": "Meus Arquivos de Modelo",
"My Prompts": "Meus Prompts", "My Prompts": "Meus Prompts",
@ -215,10 +252,14 @@
"Name your modelfile": "Nomeie seu arquivo de modelo", "Name your modelfile": "Nomeie seu arquivo de modelo",
"New Chat": "Novo Bate-papo", "New Chat": "Novo Bate-papo",
"New Password": "Nova Senha", "New Password": "Nova Senha",
"Not factually correct": "",
"Not sure what to add?": "Não tem certeza do que adicionar?", "Not sure what to add?": "Não tem certeza do que adicionar?",
"Not sure what to write? Switch to": "Não tem certeza do que escrever? Mude para", "Not sure what to write? Switch to": "Não tem certeza do que escrever? Mude para",
"Notifications": "Notificações da Área de Trabalho",
"Off": "Desligado", "Off": "Desligado",
"Okay, Let's Go!": "Ok, Vamos Lá!", "Okay, Let's Go!": "Ok, Vamos Lá!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "URL Base do Ollama", "Ollama Base URL": "URL Base do Ollama",
"Ollama Version": "Versão do Ollama", "Ollama Version": "Versão do Ollama",
"On": "Ligado", "On": "Ligado",
@ -231,12 +272,16 @@
"Open AI": "OpenAI", "Open AI": "OpenAI",
"Open AI (Dall-E)": "OpenAI (Dall-E)", "Open AI (Dall-E)": "OpenAI (Dall-E)",
"Open new chat": "Abrir novo bate-papo", "Open new chat": "Abrir novo bate-papo",
"OpenAI": "",
"OpenAI API": "API OpenAI", "OpenAI API": "API OpenAI",
"OpenAI API Key": "Chave da API OpenAI", "OpenAI API Config": "",
"OpenAI API Key is required.": "A Chave da API OpenAI é obrigatória.", "OpenAI API Key is required.": "A Chave da API OpenAI é obrigatória.",
"OpenAI URL/Key required.": "",
"or": "ou", "or": "ou",
"Other": "",
"Parameters": "Parâmetros", "Parameters": "Parâmetros",
"Password": "Senha", "Password": "Senha",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "Extrair Imagens de PDF (OCR)", "PDF Extract Images (OCR)": "Extrair Imagens de PDF (OCR)",
"pending": "pendente", "pending": "pendente",
"Permission denied when accessing microphone: {{error}}": "Permissão negada ao acessar o microfone: {{error}}", "Permission denied when accessing microphone: {{error}}": "Permissão negada ao acessar o microfone: {{error}}",
@ -251,12 +296,18 @@
"Query Params": "Parâmetros de Consulta", "Query Params": "Parâmetros de Consulta",
"RAG Template": "Modelo RAG", "RAG Template": "Modelo RAG",
"Raw Format": "Formato Bruto", "Raw Format": "Formato Bruto",
"Read Aloud": "",
"Record voice": "Gravar voz", "Record voice": "Gravar voz",
"Redirecting you to OpenWebUI Community": "Redirecionando você para a Comunidade OpenWebUI", "Redirecting you to OpenWebUI Community": "Redirecionando você para a Comunidade OpenWebUI",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "Notas de Lançamento", "Release Notes": "Notas de Lançamento",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "Repetir Últimos N", "Repeat Last N": "Repetir Últimos N",
"Repeat Penalty": "Penalidade de Repetição", "Repeat Penalty": "Penalidade de Repetição",
"Request Mode": "Modo de Solicitação", "Request Mode": "Modo de Solicitação",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Redefinir Armazenamento de Vetor", "Reset Vector Storage": "Redefinir Armazenamento de Vetor",
"Response AutoCopy to Clipboard": "Cópia Automática da Resposta para a Área de Transferência", "Response AutoCopy to Clipboard": "Cópia Automática da Resposta para a Área de Transferência",
"Role": "Função", "Role": "Função",
@ -271,6 +322,7 @@
"Scan complete!": "Digitalização concluída!", "Scan complete!": "Digitalização concluída!",
"Scan for documents from {{path}}": "Digitalizar documentos de {{path}}", "Scan for documents from {{path}}": "Digitalizar documentos de {{path}}",
"Search": "Pesquisar", "Search": "Pesquisar",
"Search a model": "",
"Search Documents": "Pesquisar Documentos", "Search Documents": "Pesquisar Documentos",
"Search Prompts": "Pesquisar Prompts", "Search Prompts": "Pesquisar Prompts",
"See readme.md for instructions": "Consulte readme.md para obter instruções", "See readme.md for instructions": "Consulte readme.md para obter instruções",
@ -290,37 +342,46 @@
"Set Voice": "Definir Voz", "Set Voice": "Definir Voz",
"Settings": "Configurações", "Settings": "Configurações",
"Settings saved successfully!": "Configurações salvas com sucesso!", "Settings saved successfully!": "Configurações salvas com sucesso!",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "Compartilhar com a Comunidade OpenWebUI", "Share to OpenWebUI Community": "Compartilhar com a Comunidade OpenWebUI",
"short-summary": "resumo-curto", "short-summary": "resumo-curto",
"Show": "Mostrar", "Show": "Mostrar",
"Show Additional Params": "Mostrar Parâmetros Adicionais", "Show Additional Params": "Mostrar Parâmetros Adicionais",
"Show shortcuts": "Mostrar", "Show shortcuts": "Mostrar",
"Showcased creativity": "",
"sidebar": "barra lateral", "sidebar": "barra lateral",
"Sign in": "Entrar", "Sign in": "Entrar",
"Sign Out": "Sair", "Sign Out": "Sair",
"Sign up": "Inscrever-se", "Sign up": "Inscrever-se",
"Signing in": "",
"Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}", "Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}",
"Speech-to-Text Engine": "Mecanismo de Fala para Texto", "Speech-to-Text Engine": "Mecanismo de Fala para Texto",
"SpeechRecognition API is not supported in this browser.": "A API SpeechRecognition não é suportada neste navegador.", "SpeechRecognition API is not supported in this browser.": "A API SpeechRecognition não é suportada neste navegador.",
"Stop Sequence": "Sequência de Parada", "Stop Sequence": "Sequência de Parada",
"STT Settings": "Configurações STT", "STT Settings": "Configurações STT",
"Submit": "Enviar", "Submit": "Enviar",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "Sucesso", "Success": "Sucesso",
"Successfully updated.": "Atualizado com sucesso.", "Successfully updated.": "Atualizado com sucesso.",
"Sync All": "Sincronizar Tudo", "Sync All": "Sincronizar Tudo",
"System": "Sistema", "System": "Sistema",
"System Prompt": "Prompt do Sistema", "System Prompt": "Prompt do Sistema",
"Tags": "Tags", "Tags": "Tags",
"Tell us more:": "",
"Temperature": "Temperatura", "Temperature": "Temperatura",
"Template": "Modelo", "Template": "Modelo",
"Text Completion": "Complemento de Texto", "Text Completion": "Complemento de Texto",
"Text-to-Speech Engine": "Mecanismo de Texto para Fala", "Text-to-Speech Engine": "Mecanismo de Texto para Fala",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "",
"Theme": "Tema", "Theme": "Tema",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Isso garante que suas conversas valiosas sejam salvas com segurança em seu banco de dados de backend. Obrigado!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Isso garante que suas conversas valiosas sejam salvas com segurança em seu banco de dados de backend. Obrigado!",
"This setting does not sync across browsers or devices.": "Esta configuração não sincroniza entre navegadores ou dispositivos.", "This setting does not sync across browsers or devices.": "Esta configuração não sincroniza entre navegadores ou dispositivos.",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Dica: Atualize vários slots de variáveis consecutivamente pressionando a tecla Tab na entrada de bate-papo após cada substituição.", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Dica: Atualize vários slots de variáveis consecutivamente pressionando a tecla Tab na entrada de bate-papo após cada substituição.",
"Title": "Título", "Title": "Título",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "Geração Automática de Título", "Title Auto-Generation": "Geração Automática de Título",
"Title Generation Prompt": "Prompt de Geração de Título", "Title Generation Prompt": "Prompt de Geração de Título",
"to": "para", "to": "para",
@ -336,13 +397,19 @@
"Type Hugging Face Resolve (Download) URL": "Digite a URL do Hugging Face Resolve (Download)", "Type Hugging Face Resolve (Download) URL": "Digite a URL do Hugging Face Resolve (Download)",
"Uh-oh! There was an issue connecting to {{provider}}.": "Opa! Houve um problema ao conectar-se a {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Opa! Houve um problema ao conectar-se a {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipo de arquivo desconhecido '{{file_type}}', mas aceitando e tratando como texto simples", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipo de arquivo desconhecido '{{file_type}}', mas aceitando e tratando como texto simples",
"Update and Copy Link": "",
"Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "Atualizar senha", "Update password": "Atualizar senha",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "Carregar um modelo GGUF", "Upload a GGUF model": "Carregar um modelo GGUF",
"Upload files": "Carregar arquivos", "Upload files": "Carregar arquivos",
"Upload Progress": "Progresso do Carregamento", "Upload Progress": "Progresso do Carregamento",
"URL Mode": "Modo de URL", "URL Mode": "Modo de URL",
"Use '#' in the prompt input to load and select your documents.": "Use '#' na entrada do prompt para carregar e selecionar seus documentos.", "Use '#' in the prompt input to load and select your documents.": "Use '#' na entrada do prompt para carregar e selecionar seus documentos.",
"Use Gravatar": "Usar Gravatar", "Use Gravatar": "Usar Gravatar",
"Use Initials": "",
"user": "usuário", "user": "usuário",
"User Permissions": "Permissões do Usuário", "User Permissions": "Permissões do Usuário",
"Users": "Usuários", "Users": "Usuários",
@ -351,7 +418,9 @@
"variable": "variável", "variable": "variável",
"variable to have them replaced with clipboard content.": "variável para que sejam substituídos pelo conteúdo da área de transferência.", "variable to have them replaced with clipboard content.": "variável para que sejam substituídos pelo conteúdo da área de transferência.",
"Version": "Versão", "Version": "Versão",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web", "Web": "Web",
"Webhook URL": "",
"WebUI Add-ons": "Complementos WebUI", "WebUI Add-ons": "Complementos WebUI",
"WebUI Settings": "Configurações WebUI", "WebUI Settings": "Configurações WebUI",
"WebUI will make requests to": "WebUI fará solicitações para", "WebUI will make requests to": "WebUI fará solicitações para",

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(por exemplo, `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(por exemplo, `sh webui.sh --api`)",
"(latest)": "(mais recente)", "(latest)": "(mais recente)",
"{{modelName}} is thinking...": "{{modelName}} está pensando...", "{{modelName}} is thinking...": "{{modelName}} está pensando...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}} Backend Necessário", "{{webUIName}} Backend Required": "{{webUIName}} Backend Necessário",
"a user": "um usuário", "a user": "um usuário",
"About": "Sobre", "About": "Sobre",
"Account": "Conta", "Account": "Conta",
"Action": "Ação", "Accurate information": "",
"Add a model": "Adicionar um modelo", "Add a model": "Adicionar um modelo",
"Add a model tag name": "Adicionar um nome de tag de modelo", "Add a model tag name": "Adicionar um nome de tag de modelo",
"Add a short description about what this modelfile does": "Adicione uma breve descrição sobre o que este arquivo de modelo faz", "Add a short description about what this modelfile does": "Adicione uma breve descrição sobre o que este arquivo de modelo faz",
@ -17,7 +18,8 @@
"Add Docs": "Adicionar Documentos", "Add Docs": "Adicionar Documentos",
"Add Files": "Adicionar Arquivos", "Add Files": "Adicionar Arquivos",
"Add message": "Adicionar mensagem", "Add message": "Adicionar mensagem",
"add tags": "adicionar tags", "Add Model": "",
"Add Tags": "adicionar tags",
"Adjusting these settings will apply changes universally to all users.": "Ajustar essas configurações aplicará alterações universalmente a todos os usuários.", "Adjusting these settings will apply changes universally to all users.": "Ajustar essas configurações aplicará alterações universalmente a todos os usuários.",
"admin": "administrador", "admin": "administrador",
"Admin Panel": "Painel do Administrador", "Admin Panel": "Painel do Administrador",
@ -33,9 +35,14 @@
"and": "e", "and": "e",
"API Base URL": "URL Base da API", "API Base URL": "URL Base da API",
"API Key": "Chave da API", "API Key": "Chave da API",
"API Key created.": "",
"API keys": "",
"API RPM": "API RPM", "API RPM": "API RPM",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "são permitidos - Ative este comando digitando", "are allowed - Activate this command by typing": "são permitidos - Ative este comando digitando",
"Are you sure?": "Tem certeza?", "Are you sure?": "Tem certeza?",
"Attention to detail": "",
"Audio": "Áudio", "Audio": "Áudio",
"Auto-playback response": "Reprodução automática da resposta", "Auto-playback response": "Reprodução automática da resposta",
"Auto-send input after 3 sec.": "Enviar entrada automaticamente após 3 segundos.", "Auto-send input after 3 sec.": "Enviar entrada automaticamente após 3 segundos.",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "A URL Base do AUTOMATIC1111 é obrigatória.", "AUTOMATIC1111 Base URL is required.": "A URL Base do AUTOMATIC1111 é obrigatória.",
"available!": "disponível!", "available!": "disponível!",
"Back": "Voltar", "Back": "Voltar",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "Modo de Construtor", "Builder Mode": "Modo de Construtor",
"Cancel": "Cancelar", "Cancel": "Cancelar",
"Categories": "Categorias", "Categories": "Categorias",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "Clique no botão de função do usuário para alterar a função de um usuário.", "Click on the user role button to change a user's role.": "Clique no botão de função do usuário para alterar a função de um usuário.",
"Close": "Fechar", "Close": "Fechar",
"Collection": "Coleção", "Collection": "Coleção",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "Comando", "Command": "Comando",
"Confirm Password": "Confirmar Senha", "Confirm Password": "Confirmar Senha",
"Connections": "Conexões", "Connections": "Conexões",
"Content": "Conteúdo", "Content": "Conteúdo",
"Context Length": "Comprimento do Contexto", "Context Length": "Comprimento do Contexto",
"Continue Response": "",
"Conversation Mode": "Modo de Conversa", "Conversation Mode": "Modo de Conversa",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "Copiar último bloco de código", "Copy last code block": "Copiar último bloco de código",
"Copy last response": "Copiar última resposta", "Copy last response": "Copiar última resposta",
"Copy Link": "",
"Copying to clipboard was successful!": "Cópia para a área de transferência bem-sucedida!", "Copying to clipboard was successful!": "Cópia para a área de transferência bem-sucedida!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Crie uma frase concisa de 3 a 5 palavras como cabeçalho para a seguinte consulta, aderindo estritamente ao limite de 3 a 5 palavras e evitando o uso da palavra 'título':", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Crie uma frase concisa de 3 a 5 palavras como cabeçalho para a seguinte consulta, aderindo estritamente ao limite de 3 a 5 palavras e evitando o uso da palavra 'título':",
"Create a modelfile": "Criar um arquivo de modelo", "Create a modelfile": "Criar um arquivo de modelo",
"Create Account": "Criar Conta", "Create Account": "Criar Conta",
"Created at": "Criado em", "Created at": "Criado em",
"Created by": "Criado por", "Created At": "",
"Current Model": "Modelo Atual", "Current Model": "Modelo Atual",
"Current Password": "Senha Atual", "Current Password": "Senha Atual",
"Custom": "Personalizado", "Custom": "Personalizado",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "Padrão", "Default": "Padrão",
"Default (Automatic1111)": "Padrão (Automatic1111)", "Default (Automatic1111)": "Padrão (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "Padrão (API Web)", "Default (Web API)": "Padrão (API Web)",
"Default model updated": "Modelo padrão atualizado", "Default model updated": "Modelo padrão atualizado",
"Default Prompt Suggestions": "Sugestões de Prompt Padrão", "Default Prompt Suggestions": "Sugestões de Prompt Padrão",
"Default User Role": "Função de Usuário Padrão", "Default User Role": "Função de Usuário Padrão",
"delete": "excluir", "delete": "excluir",
"Delete": "",
"Delete a model": "Excluir um modelo", "Delete a model": "Excluir um modelo",
"Delete chat": "Excluir bate-papo", "Delete chat": "Excluir bate-papo",
"Delete Chat": "",
"Delete Chats": "Excluir Bate-papos", "Delete Chats": "Excluir Bate-papos",
"Delete User": "",
"Deleted {{deleteModelTag}}": "{{deleteModelTag}} excluído", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} excluído",
"Deleted {tagName}": "{tagName} excluído", "Deleted {{tagName}}": "",
"Description": "Descrição", "Description": "Descrição",
"Notifications": "Notificações da Área de Trabalho", "Didn't fully follow instructions": "",
"Disabled": "Desativado", "Disabled": "Desativado",
"Discover a modelfile": "Descobrir um arquivo de modelo", "Discover a modelfile": "Descobrir um arquivo de modelo",
"Discover a prompt": "Descobrir um prompt", "Discover a prompt": "Descobrir um prompt",
@ -113,18 +133,21 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "não faz conexões externas e seus dados permanecem seguros em seu servidor hospedado localmente.", "does not make any external connections, and your data stays securely on your locally hosted server.": "não faz conexões externas e seus dados permanecem seguros em seu servidor hospedado localmente.",
"Don't Allow": "Não Permitir", "Don't Allow": "Não Permitir",
"Don't have an account?": "Não tem uma conta?", "Don't have an account?": "Não tem uma conta?",
"Download as a File": "Baixar como Arquivo", "Don't like the style": "",
"Download": "",
"Download Database": "Baixar Banco de Dados", "Download Database": "Baixar Banco de Dados",
"Drop any files here to add to the conversation": "Solte os arquivos aqui para adicionar à conversa", "Drop any files here to add to the conversation": "Solte os arquivos aqui para adicionar à conversa",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.",
"Edit": "",
"Edit Doc": "Editar Documento", "Edit Doc": "Editar Documento",
"Edit User": "Editar Usuário", "Edit User": "Editar Usuário",
"Email": "E-mail", "Email": "E-mail",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "Ativar Histórico de Bate-papo", "Enable Chat History": "Ativar Histórico de Bate-papo",
"Enable New Sign Ups": "Ativar Novas Inscrições", "Enable New Sign Ups": "Ativar Novas Inscrições",
"Enabled": "Ativado", "Enabled": "Ativado",
"Enter {{role}} message here": "Digite a mensagem de {{role}} aqui", "Enter {{role}} message here": "Digite a mensagem de {{role}} aqui",
"Enter API Key": "Digite a Chave da API",
"Enter Chunk Overlap": "Digite a Sobreposição de Fragmento", "Enter Chunk Overlap": "Digite a Sobreposição de Fragmento",
"Enter Chunk Size": "Digite o Tamanho do Fragmento", "Enter Chunk Size": "Digite o Tamanho do Fragmento",
"Enter Image Size (e.g. 512x512)": "Digite o Tamanho da Imagem (por exemplo, 512x512)", "Enter Image Size (e.g. 512x512)": "Digite o Tamanho da Imagem (por exemplo, 512x512)",
@ -135,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "Digite o Máximo de Tokens (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "Digite o Máximo de Tokens (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "Digite a tag do modelo (por exemplo, {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "Digite a tag do modelo (por exemplo, {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "Digite o Número de Etapas (por exemplo, 50)", "Enter Number of Steps (e.g. 50)": "Digite o Número de Etapas (por exemplo, 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "Digite a sequência de parada", "Enter stop sequence": "Digite a sequência de parada",
"Enter Top K": "Digite o Top K", "Enter Top K": "Digite o Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Digite a URL (por exemplo, http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Digite a URL (por exemplo, http://127.0.0.1:7860/)",
@ -147,20 +171,29 @@
"Export Documents Mapping": "Exportar Mapeamento de Documentos", "Export Documents Mapping": "Exportar Mapeamento de Documentos",
"Export Modelfiles": "Exportar Arquivos de Modelo", "Export Modelfiles": "Exportar Arquivos de Modelo",
"Export Prompts": "Exportar Prompts", "Export Prompts": "Exportar Prompts",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência", "Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
"Feel free to add specific details": "",
"File Mode": "Modo de Arquivo", "File Mode": "Modo de Arquivo",
"File not found.": "Arquivo não encontrado.", "File not found.": "Arquivo não encontrado.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "",
"Focus chat input": "Focar entrada de bate-papo", "Focus chat input": "Focar entrada de bate-papo",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "Formate suas variáveis usando colchetes como este:", "Format your variables using square brackets like this:": "Formate suas variáveis usando colchetes como este:",
"From (Base Model)": "De (Modelo Base)", "From (Base Model)": "De (Modelo Base)",
"Fluidly stream large external response chunks": "Transmita com fluidez grandes blocos de resposta externa", "Fluidly stream large external response chunks": "Transmita com fluidez grandes blocos de resposta externa",
"Full Screen Mode": "Modo de Tela Cheia", "Full Screen Mode": "Modo de Tela Cheia",
"General": "Geral", "General": "Geral",
"General Settings": "Configurações Gerais", "General Settings": "Configurações Gerais",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "Olá, {{name}}", "Hello, {{name}}": "Olá, {{name}}",
"Hide": "Ocultar", "Hide": "Ocultar",
"Hide Additional Params": "Ocultar Parâmetros Adicionais", "Hide Additional Params": "Ocultar Parâmetros Adicionais",
"How can I help you today?": "Como posso ajudá-lo hoje?", "How can I help you today?": "Como posso ajudá-lo hoje?",
"Hybrid Search": "",
"Image Generation (Experimental)": "Geração de Imagens (Experimental)", "Image Generation (Experimental)": "Geração de Imagens (Experimental)",
"Image Generation Engine": "Mecanismo de Geração de Imagens", "Image Generation Engine": "Mecanismo de Geração de Imagens",
"Image Settings": "Configurações de Imagem", "Image Settings": "Configurações de Imagem",
@ -178,6 +211,7 @@
"Keep Alive": "Manter Vivo", "Keep Alive": "Manter Vivo",
"Keyboard shortcuts": "Atalhos de teclado", "Keyboard shortcuts": "Atalhos de teclado",
"Language": "Idioma", "Language": "Idioma",
"Last Active": "",
"Light": "Claro", "Light": "Claro",
"OLED Dark": "OLED escuro", "OLED Dark": "OLED escuro",
"Listening...": "Ouvindo...", "Listening...": "Ouvindo...",
@ -193,10 +227,12 @@
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "DD/MM/YYYY", "MMMM DD, YYYY": "DD/MM/YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "O modelo '{{modelName}}' foi baixado com sucesso.", "Model '{{modelName}}' has been successfully downloaded.": "O modelo '{{modelName}}' foi baixado com sucesso.",
"Model '{{modelTag}}' is already in queue for downloading.": "O modelo '{{modelTag}}' já está na fila para download.", "Model '{{modelTag}}' is already in queue for downloading.": "O modelo '{{modelTag}}' já está na fila para download.",
"Model {{modelId}} not found": "Modelo {{modelId}} não encontrado", "Model {{modelId}} not found": "Modelo {{modelId}} não encontrado",
"Model {{modelName}} already exists.": "O modelo {{modelName}} já existe.", "Model {{modelName}} already exists.": "O modelo {{modelName}} já existe.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Name": "Nome do Modelo", "Model Name": "Nome do Modelo",
"Model not selected": "Modelo não selecionado", "Model not selected": "Modelo não selecionado",
"Model Tag Name": "Nome da Tag do Modelo", "Model Tag Name": "Nome da Tag do Modelo",
@ -207,6 +243,7 @@
"Modelfile Content": "Conteúdo do Arquivo de Modelo", "Modelfile Content": "Conteúdo do Arquivo de Modelo",
"Modelfiles": "Arquivos de Modelo", "Modelfiles": "Arquivos de Modelo",
"Models": "Modelos", "Models": "Modelos",
"More": "",
"My Documents": "Meus Documentos", "My Documents": "Meus Documentos",
"My Modelfiles": "Meus Arquivos de Modelo", "My Modelfiles": "Meus Arquivos de Modelo",
"My Prompts": "Meus Prompts", "My Prompts": "Meus Prompts",
@ -215,10 +252,14 @@
"Name your modelfile": "Nomeie seu arquivo de modelo", "Name your modelfile": "Nomeie seu arquivo de modelo",
"New Chat": "Novo Bate-papo", "New Chat": "Novo Bate-papo",
"New Password": "Nova Senha", "New Password": "Nova Senha",
"Not factually correct": "",
"Not sure what to add?": "Não tem certeza do que adicionar?", "Not sure what to add?": "Não tem certeza do que adicionar?",
"Not sure what to write? Switch to": "Não tem certeza do que escrever? Mude para", "Not sure what to write? Switch to": "Não tem certeza do que escrever? Mude para",
"Notifications": "Notificações da Área de Trabalho",
"Off": "Desligado", "Off": "Desligado",
"Okay, Let's Go!": "Ok, Vamos Lá!", "Okay, Let's Go!": "Ok, Vamos Lá!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "URL Base do Ollama", "Ollama Base URL": "URL Base do Ollama",
"Ollama Version": "Versão do Ollama", "Ollama Version": "Versão do Ollama",
"On": "Ligado", "On": "Ligado",
@ -231,12 +272,16 @@
"Open AI": "OpenAI", "Open AI": "OpenAI",
"Open AI (Dall-E)": "OpenAI (Dall-E)", "Open AI (Dall-E)": "OpenAI (Dall-E)",
"Open new chat": "Abrir novo bate-papo", "Open new chat": "Abrir novo bate-papo",
"OpenAI": "",
"OpenAI API": "API OpenAI", "OpenAI API": "API OpenAI",
"OpenAI API Key": "Chave da API OpenAI", "OpenAI API Config": "",
"OpenAI API Key is required.": "A Chave da API OpenAI é obrigatória.", "OpenAI API Key is required.": "A Chave da API OpenAI é obrigatória.",
"OpenAI URL/Key required.": "",
"or": "ou", "or": "ou",
"Other": "",
"Parameters": "Parâmetros", "Parameters": "Parâmetros",
"Password": "Senha", "Password": "Senha",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "Extrair Imagens de PDF (OCR)", "PDF Extract Images (OCR)": "Extrair Imagens de PDF (OCR)",
"pending": "pendente", "pending": "pendente",
"Permission denied when accessing microphone: {{error}}": "Permissão negada ao acessar o microfone: {{error}}", "Permission denied when accessing microphone: {{error}}": "Permissão negada ao acessar o microfone: {{error}}",
@ -251,12 +296,18 @@
"Query Params": "Parâmetros de Consulta", "Query Params": "Parâmetros de Consulta",
"RAG Template": "Modelo RAG", "RAG Template": "Modelo RAG",
"Raw Format": "Formato Bruto", "Raw Format": "Formato Bruto",
"Read Aloud": "",
"Record voice": "Gravar voz", "Record voice": "Gravar voz",
"Redirecting you to OpenWebUI Community": "Redirecionando você para a Comunidade OpenWebUI", "Redirecting you to OpenWebUI Community": "Redirecionando você para a Comunidade OpenWebUI",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "Notas de Lançamento", "Release Notes": "Notas de Lançamento",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "Repetir Últimos N", "Repeat Last N": "Repetir Últimos N",
"Repeat Penalty": "Penalidade de Repetição", "Repeat Penalty": "Penalidade de Repetição",
"Request Mode": "Modo de Solicitação", "Request Mode": "Modo de Solicitação",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Redefinir Armazenamento de Vetor", "Reset Vector Storage": "Redefinir Armazenamento de Vetor",
"Response AutoCopy to Clipboard": "Cópia Automática da Resposta para a Área de Transferência", "Response AutoCopy to Clipboard": "Cópia Automática da Resposta para a Área de Transferência",
"Role": "Função", "Role": "Função",
@ -271,6 +322,7 @@
"Scan complete!": "Digitalização concluída!", "Scan complete!": "Digitalização concluída!",
"Scan for documents from {{path}}": "Digitalizar documentos de {{path}}", "Scan for documents from {{path}}": "Digitalizar documentos de {{path}}",
"Search": "Pesquisar", "Search": "Pesquisar",
"Search a model": "",
"Search Documents": "Pesquisar Documentos", "Search Documents": "Pesquisar Documentos",
"Search Prompts": "Pesquisar Prompts", "Search Prompts": "Pesquisar Prompts",
"See readme.md for instructions": "Consulte readme.md para obter instruções", "See readme.md for instructions": "Consulte readme.md para obter instruções",
@ -290,37 +342,46 @@
"Set Voice": "Definir Voz", "Set Voice": "Definir Voz",
"Settings": "Configurações", "Settings": "Configurações",
"Settings saved successfully!": "Configurações salvas com sucesso!", "Settings saved successfully!": "Configurações salvas com sucesso!",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "Compartilhar com a Comunidade OpenWebUI", "Share to OpenWebUI Community": "Compartilhar com a Comunidade OpenWebUI",
"short-summary": "resumo-curto", "short-summary": "resumo-curto",
"Show": "Mostrar", "Show": "Mostrar",
"Show Additional Params": "Mostrar Parâmetros Adicionais", "Show Additional Params": "Mostrar Parâmetros Adicionais",
"Show shortcuts": "Mostrar", "Show shortcuts": "Mostrar",
"Showcased creativity": "",
"sidebar": "barra lateral", "sidebar": "barra lateral",
"Sign in": "Entrar", "Sign in": "Entrar",
"Sign Out": "Sair", "Sign Out": "Sair",
"Sign up": "Inscrever-se", "Sign up": "Inscrever-se",
"Signing in": "",
"Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}", "Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}",
"Speech-to-Text Engine": "Mecanismo de Fala para Texto", "Speech-to-Text Engine": "Mecanismo de Fala para Texto",
"SpeechRecognition API is not supported in this browser.": "A API SpeechRecognition não é suportada neste navegador.", "SpeechRecognition API is not supported in this browser.": "A API SpeechRecognition não é suportada neste navegador.",
"Stop Sequence": "Sequência de Parada", "Stop Sequence": "Sequência de Parada",
"STT Settings": "Configurações STT", "STT Settings": "Configurações STT",
"Submit": "Enviar", "Submit": "Enviar",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "Sucesso", "Success": "Sucesso",
"Successfully updated.": "Atualizado com sucesso.", "Successfully updated.": "Atualizado com sucesso.",
"Sync All": "Sincronizar Tudo", "Sync All": "Sincronizar Tudo",
"System": "Sistema", "System": "Sistema",
"System Prompt": "Prompt do Sistema", "System Prompt": "Prompt do Sistema",
"Tags": "Tags", "Tags": "Tags",
"Tell us more:": "",
"Temperature": "Temperatura", "Temperature": "Temperatura",
"Template": "Modelo", "Template": "Modelo",
"Text Completion": "Complemento de Texto", "Text Completion": "Complemento de Texto",
"Text-to-Speech Engine": "Mecanismo de Texto para Fala", "Text-to-Speech Engine": "Mecanismo de Texto para Fala",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "",
"Theme": "Tema", "Theme": "Tema",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Isso garante que suas conversas valiosas sejam salvas com segurança em seu banco de dados de backend. Obrigado!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Isso garante que suas conversas valiosas sejam salvas com segurança em seu banco de dados de backend. Obrigado!",
"This setting does not sync across browsers or devices.": "Esta configuração não sincroniza entre navegadores ou dispositivos.", "This setting does not sync across browsers or devices.": "Esta configuração não sincroniza entre navegadores ou dispositivos.",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Dica: Atualize vários slots de variáveis consecutivamente pressionando a tecla Tab na entrada de bate-papo após cada substituição.", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Dica: Atualize vários slots de variáveis consecutivamente pressionando a tecla Tab na entrada de bate-papo após cada substituição.",
"Title": "Título", "Title": "Título",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "Geração Automática de Título", "Title Auto-Generation": "Geração Automática de Título",
"Title Generation Prompt": "Prompt de Geração de Título", "Title Generation Prompt": "Prompt de Geração de Título",
"to": "para", "to": "para",
@ -336,13 +397,19 @@
"Type Hugging Face Resolve (Download) URL": "Digite a URL do Hugging Face Resolve (Download)", "Type Hugging Face Resolve (Download) URL": "Digite a URL do Hugging Face Resolve (Download)",
"Uh-oh! There was an issue connecting to {{provider}}.": "Opa! Houve um problema ao conectar-se a {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Opa! Houve um problema ao conectar-se a {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipo de arquivo desconhecido '{{file_type}}', mas aceitando e tratando como texto simples", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipo de arquivo desconhecido '{{file_type}}', mas aceitando e tratando como texto simples",
"Update and Copy Link": "",
"Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "Atualizar senha", "Update password": "Atualizar senha",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "Carregar um modelo GGUF", "Upload a GGUF model": "Carregar um modelo GGUF",
"Upload files": "Carregar arquivos", "Upload files": "Carregar arquivos",
"Upload Progress": "Progresso do Carregamento", "Upload Progress": "Progresso do Carregamento",
"URL Mode": "Modo de URL", "URL Mode": "Modo de URL",
"Use '#' in the prompt input to load and select your documents.": "Use '#' na entrada do prompt para carregar e selecionar seus documentos.", "Use '#' in the prompt input to load and select your documents.": "Use '#' na entrada do prompt para carregar e selecionar seus documentos.",
"Use Gravatar": "Usar Gravatar", "Use Gravatar": "Usar Gravatar",
"Use Initials": "",
"user": "usuário", "user": "usuário",
"User Permissions": "Permissões do Usuário", "User Permissions": "Permissões do Usuário",
"Users": "Usuários", "Users": "Usuários",
@ -351,7 +418,9 @@
"variable": "variável", "variable": "variável",
"variable to have them replaced with clipboard content.": "variável para que sejam substituídos pelo conteúdo da área de transferência.", "variable to have them replaced with clipboard content.": "variável para que sejam substituídos pelo conteúdo da área de transferência.",
"Version": "Versão", "Version": "Versão",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web", "Web": "Web",
"Webhook URL": "",
"WebUI Add-ons": "Complementos WebUI", "WebUI Add-ons": "Complementos WebUI",
"WebUI Settings": "Configurações WebUI", "WebUI Settings": "Configurações WebUI",
"WebUI will make requests to": "WebUI fará solicitações para", "WebUI will make requests to": "WebUI fará solicitações para",

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(например: `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(например: `sh webui.sh --api`)",
"(latest)": "(последний)", "(latest)": "(последний)",
"{{modelName}} is thinking...": "{{modelName}} думает...", "{{modelName}} is thinking...": "{{modelName}} думает...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}} бэкенд требуемый", "{{webUIName}} Backend Required": "{{webUIName}} бэкенд требуемый",
"a user": "пользователь", "a user": "пользователь",
"About": "Об", "About": "Об",
"Account": "Аккаунт", "Account": "Аккаунт",
"Action": "Действие", "Accurate information": "",
"Add a model": "Добавьте модель", "Add a model": "Добавьте модель",
"Add a model tag name": "Добавьте имя тэга модели", "Add a model tag name": "Добавьте имя тэга модели",
"Add a short description about what this modelfile does": "Добавьте краткое описание, что делает этот моделфайл", "Add a short description about what this modelfile does": "Добавьте краткое описание, что делает этот моделфайл",
@ -17,7 +18,8 @@
"Add Docs": "Добавьте документы", "Add Docs": "Добавьте документы",
"Add Files": "Добавьте файлы", "Add Files": "Добавьте файлы",
"Add message": "Добавьте сообщение", "Add message": "Добавьте сообщение",
"add tags": "Добавьте тэгы", "Add Model": "",
"Add Tags": "Добавьте тэгы",
"Adjusting these settings will apply changes universally to all users.": "Регулирующий этих настроек приведет к изменениям для все пользователей.", "Adjusting these settings will apply changes universally to all users.": "Регулирующий этих настроек приведет к изменениям для все пользователей.",
"admin": "админ", "admin": "админ",
"Admin Panel": "Панель админ", "Admin Panel": "Панель админ",
@ -33,9 +35,14 @@
"and": "и", "and": "и",
"API Base URL": "Базовый адрес API", "API Base URL": "Базовый адрес API",
"API Key": "Ключ API", "API Key": "Ключ API",
"API Key created.": "",
"API keys": "",
"API RPM": "API RPM", "API RPM": "API RPM",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "разрешено - активируйте эту команду вводом", "are allowed - Activate this command by typing": "разрешено - активируйте эту команду вводом",
"Are you sure?": "Вы уверены?", "Are you sure?": "Вы уверены?",
"Attention to detail": "",
"Audio": "Аудио", "Audio": "Аудио",
"Auto-playback response": "Автоматическое воспроизведение ответа", "Auto-playback response": "Автоматическое воспроизведение ответа",
"Auto-send input after 3 sec.": "Автоматическая отправка ввода через 3 секунды.", "Auto-send input after 3 sec.": "Автоматическая отправка ввода через 3 секунды.",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Необходима базовый адрес URL.", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Необходима базовый адрес URL.",
"available!": "доступный!", "available!": "доступный!",
"Back": "Назад", "Back": "Назад",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "Режим конструктор", "Builder Mode": "Режим конструктор",
"Cancel": "Аннулировать", "Cancel": "Аннулировать",
"Categories": "Категории", "Categories": "Категории",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "Нажмите кнопку роли пользователя чтобы изменить роль пользователя.", "Click on the user role button to change a user's role.": "Нажмите кнопку роли пользователя чтобы изменить роль пользователя.",
"Close": "Закрывать", "Close": "Закрывать",
"Collection": "Коллекция", "Collection": "Коллекция",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "Команда", "Command": "Команда",
"Confirm Password": "Подтвердите пароль", "Confirm Password": "Подтвердите пароль",
"Connections": "Соединение", "Connections": "Соединение",
"Content": "Содержание", "Content": "Содержание",
"Context Length": "Длина контексту", "Context Length": "Длина контексту",
"Continue Response": "",
"Conversation Mode": "Режим разговора", "Conversation Mode": "Режим разговора",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "Копировать последний блок кода", "Copy last code block": "Копировать последний блок кода",
"Copy last response": "Копировать последний ответ", "Copy last response": "Копировать последний ответ",
"Copy Link": "",
"Copying to clipboard was successful!": "Копирование в буфер обмена прошло успешно!", "Copying to clipboard was successful!": "Копирование в буфер обмена прошло успешно!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title'": "Создайте краткую, 3-5 словную фразу в качестве заголовка для следующего запроса, строго соблюдая ограничение в 3-5 слов и избегая использования слова 'заголовок'", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "",
"Create a modelfile": "Создать модельный файл", "Create a modelfile": "Создать модельный файл",
"Create Account": "Создать аккаунт", "Create Account": "Создать аккаунт",
"Created at": "Создано в", "Created at": "Создано в",
"Created by": "Создано", "Created At": "",
"Current Model": "Текущая модель", "Current Model": "Текущая модель",
"Current Password": "Текущий пароль", "Current Password": "Текущий пароль",
"Custom": "Пользовательский", "Custom": "Пользовательский",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "По умолчанию", "Default": "По умолчанию",
"Default (Automatic1111)": "По умолчанию (Automatic1111)", "Default (Automatic1111)": "По умолчанию (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "По умолчанию (Web API)", "Default (Web API)": "По умолчанию (Web API)",
"Default model updated": "Модель по умолчанию обновлена", "Default model updated": "Модель по умолчанию обновлена",
"Default Prompt Suggestions": "Предложения промтов по умолчанию", "Default Prompt Suggestions": "Предложения промтов по умолчанию",
"Default User Role": "Роль пользователя по умолчанию", "Default User Role": "Роль пользователя по умолчанию",
"delete": "удалить", "delete": "удалить",
"Delete": "",
"Delete a model": "Удалить модель", "Delete a model": "Удалить модель",
"Delete chat": "Удалить чат", "Delete chat": "Удалить чат",
"Delete Chat": "",
"Delete Chats": "Удалить чаты", "Delete Chats": "Удалить чаты",
"Delete User": "",
"Deleted {{deleteModelTag}}": "Удалено {{deleteModelTag}}", "Deleted {{deleteModelTag}}": "Удалено {{deleteModelTag}}",
"Deleted {tagName}": "Удалено {tagName}", "Deleted {{tagName}}": "",
"Description": "Описание", "Description": "Описание",
"Notifications": "Уведомления на рабочем столе", "Didn't fully follow instructions": "",
"Disabled": "Отключено", "Disabled": "Отключено",
"Discover a modelfile": "Найти файл модели", "Discover a modelfile": "Найти файл модели",
"Discover a prompt": "Найти промт", "Discover a prompt": "Найти промт",
@ -113,18 +133,21 @@
"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?": "у вас не есть аккаунт?",
"Download as a File": "Загрузить как файл", "Don't like the style": "",
"Download": "",
"Download Database": "Загрузить базу данных", "Download Database": "Загрузить базу данных",
"Drop any files here to add to the conversation": "Перетащите сюда файлы, чтобы добавить их в разговор", "Drop any files here to add to the conversation": "Перетащите сюда файлы, чтобы добавить их в разговор",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "например, '30с','10м'. Допустимые единицы времени: 'с', 'м', 'ч'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "например, '30с','10м'. Допустимые единицы времени: 'с', 'м', 'ч'.",
"Edit": "",
"Edit Doc": "Редактировать документ", "Edit Doc": "Редактировать документ",
"Edit User": "Редактировать пользователя", "Edit User": "Редактировать пользователя",
"Email": "Электронная почта", "Email": "Электронная почта",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "Включить историю чата", "Enable Chat History": "Включить историю чата",
"Enable New Sign Ups": "Разрешить новые регистрации", "Enable New Sign Ups": "Разрешить новые регистрации",
"Enabled": "Включено", "Enabled": "Включено",
"Enter {{role}} message here": "Введите сообщение {{role}} здесь", "Enter {{role}} message here": "Введите сообщение {{role}} здесь",
"Enter API Key": "Введите ключ API",
"Enter Chunk Overlap": "Введите перекрытие фрагмента", "Enter Chunk Overlap": "Введите перекрытие фрагмента",
"Enter Chunk Size": "Введите размер фрагмента", "Enter Chunk Size": "Введите размер фрагмента",
"Enter Image Size (e.g. 512x512)": "Введите размер изображения (например, 512x512)", "Enter Image Size (e.g. 512x512)": "Введите размер изображения (например, 512x512)",
@ -135,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "Введите максимальное количество токенов (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "Введите максимальное количество токенов (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "Введите тег модели (например, {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "Введите тег модели (например, {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "Введите количество шагов (например, 50)", "Enter Number of Steps (e.g. 50)": "Введите количество шагов (например, 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "Введите последовательность остановки", "Enter stop sequence": "Введите последовательность остановки",
"Enter Top K": "Введите Top K", "Enter Top K": "Введите Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Введите URL-адрес (например, http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Введите URL-адрес (например, http://127.0.0.1:7860/)",
@ -147,20 +171,29 @@
"Export Documents Mapping": "Экспортировать отображение документов", "Export Documents Mapping": "Экспортировать отображение документов",
"Export Modelfiles": "Экспортировать файлы модели", "Export Modelfiles": "Экспортировать файлы модели",
"Export Prompts": "Экспортировать промты", "Export Prompts": "Экспортировать промты",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "Не удалось прочитать содержимое буфера обмена", "Failed to read clipboard contents": "Не удалось прочитать содержимое буфера обмена",
"Feel free to add specific details": "",
"File Mode": "Режим файла", "File Mode": "Режим файла",
"File not found.": "Файл не найден.", "File not found.": "Файл не найден.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "",
"Focus chat input": "Фокус ввода чата", "Focus chat input": "Фокус ввода чата",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "Форматируйте ваши переменные, используя квадратные скобки, как здесь:", "Format your variables using square brackets like this:": "Форматируйте ваши переменные, используя квадратные скобки, как здесь:",
"From (Base Model)": "Из (базой модель)", "From (Base Model)": "Из (базой модель)",
"Fluidly stream large external response chunks": "Плавная потоковая передача больших фрагментов внешних ответов", "Fluidly stream large external response chunks": "Плавная потоковая передача больших фрагментов внешних ответов",
"Full Screen Mode": "Полноэкранный режим", "Full Screen Mode": "Полноэкранный режим",
"General": "Общее", "General": "Общее",
"General Settings": "Общие настройки", "General Settings": "Общие настройки",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "Привет, {{name}}", "Hello, {{name}}": "Привет, {{name}}",
"Hide": "Скрыть", "Hide": "Скрыть",
"Hide Additional Params": "Скрыть дополнительные параметры", "Hide Additional Params": "Скрыть дополнительные параметры",
"How can I help you today?": "Чем я могу помочь вам сегодня?", "How can I help you today?": "Чем я могу помочь вам сегодня?",
"Hybrid Search": "",
"Image Generation (Experimental)": "Генерация изображений (Экспериментально)", "Image Generation (Experimental)": "Генерация изображений (Экспериментально)",
"Image Generation Engine": "Механизм генерации изображений", "Image Generation Engine": "Механизм генерации изображений",
"Image Settings": "Настройки изображения", "Image Settings": "Настройки изображения",
@ -178,6 +211,7 @@
"Keep Alive": "Поддерживать активность", "Keep Alive": "Поддерживать активность",
"Keyboard shortcuts": "Горячие клавиши", "Keyboard shortcuts": "Горячие клавиши",
"Language": "Язык", "Language": "Язык",
"Last Active": "",
"Light": "Светлый", "Light": "Светлый",
"OLED Dark": "OLED темный", "OLED Dark": "OLED темный",
"Listening...": "Слушаю...", "Listening...": "Слушаю...",
@ -193,10 +227,12 @@
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "DD MMMM YYYY г.", "MMMM DD, YYYY": "DD MMMM YYYY г.",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "Модель '{{modelName}}' успешно загружена.", "Model '{{modelName}}' has been successfully downloaded.": "Модель '{{modelName}}' успешно загружена.",
"Model '{{modelTag}}' is already in queue for downloading.": "Модель '{{modelTag}}' уже находится в очереди на загрузку.", "Model '{{modelTag}}' is already in queue for downloading.": "Модель '{{modelTag}}' уже находится в очереди на загрузку.",
"Model {{modelId}} not found": "Модель {{modelId}} не найдена", "Model {{modelId}} not found": "Модель {{modelId}} не найдена",
"Model {{modelName}} already exists.": "Модель {{modelName}} уже существует.", "Model {{modelName}} already exists.": "Модель {{modelName}} уже существует.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Name": "Имя модели", "Model Name": "Имя модели",
"Model not selected": "Модель не выбрана", "Model not selected": "Модель не выбрана",
"Model Tag Name": "Имя тега модели", "Model Tag Name": "Имя тега модели",
@ -207,6 +243,7 @@
"Modelfile Content": "Содержимое файла модели", "Modelfile Content": "Содержимое файла модели",
"Modelfiles": "Файлы моделей", "Modelfiles": "Файлы моделей",
"Models": "Модели", "Models": "Модели",
"More": "",
"My Documents": "Мои документы", "My Documents": "Мои документы",
"My Modelfiles": "Мои файлы моделей", "My Modelfiles": "Мои файлы моделей",
"My Prompts": "Мои подсказки", "My Prompts": "Мои подсказки",
@ -215,10 +252,14 @@
"Name your modelfile": "Назовите свой файл модели", "Name your modelfile": "Назовите свой файл модели",
"New Chat": "Новый чат", "New Chat": "Новый чат",
"New Password": "Новый пароль", "New Password": "Новый пароль",
"Not factually correct": "",
"Not sure what to add?": "Не уверены, что добавить?", "Not sure what to add?": "Не уверены, что добавить?",
"Not sure what to write? Switch to": "Не уверены, что написать? Переключитесь на", "Not sure what to write? Switch to": "Не уверены, что написать? Переключитесь на",
"Notifications": "Уведомления на рабочем столе",
"Off": "Выключено.", "Off": "Выключено.",
"Okay, Let's Go!": "Давайте начнём!", "Okay, Let's Go!": "Давайте начнём!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "Базовый адрес URL Ollama", "Ollama Base URL": "Базовый адрес URL Ollama",
"Ollama Version": "Версия Ollama", "Ollama Version": "Версия Ollama",
"On": "Включено.", "On": "Включено.",
@ -231,15 +272,20 @@
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "Open AI (Dall-E)", "Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "Открыть новый чат", "Open new chat": "Открыть новый чат",
"OpenAI": "",
"OpenAI API": "API OpenAI", "OpenAI API": "API OpenAI",
"OpenAI API Key": "Ключ API OpenAI", "OpenAI API Config": "",
"OpenAI API Key is required.": "Требуется ключ API OpenAI.", "OpenAI API Key is required.": "Требуется ключ API OpenAI.",
"OpenAI URL/Key required.": "",
"or": "или", "or": "или",
"Other": "",
"Parameters": "Параметры", "Parameters": "Параметры",
"Password": "Пароль", "Password": "Пароль",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "Извлечение изображений из PDF (OCR)", "PDF Extract Images (OCR)": "Извлечение изображений из PDF (OCR)",
"pending": "ожидание", "pending": "ожидание",
"Permission denied when accessing microphone: {{error}}": "Отказано в доступе к микрофону: {{error}}", "Permission denied when accessing microphone: {{error}}": "Отказано в доступе к микрофону: {{error}}",
"Plain text (.txt)": "",
"Playground": "Площадка", "Playground": "Площадка",
"Archived Chats": "запис на чат", "Archived Chats": "запис на чат",
"Profile": "Профиль", "Profile": "Профиль",
@ -251,12 +297,18 @@
"Query Params": "Параметры запроса", "Query Params": "Параметры запроса",
"RAG Template": "Шаблон RAG", "RAG Template": "Шаблон RAG",
"Raw Format": "Сырой формат", "Raw Format": "Сырой формат",
"Read Aloud": "",
"Record voice": "Записать голос", "Record voice": "Записать голос",
"Redirecting you to OpenWebUI Community": "Перенаправляем вас в сообщество OpenWebUI", "Redirecting you to OpenWebUI Community": "Перенаправляем вас в сообщество OpenWebUI",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "Примечания к выпуску", "Release Notes": "Примечания к выпуску",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "Повторить последние N", "Repeat Last N": "Повторить последние N",
"Repeat Penalty": "Штраф за повтор", "Repeat Penalty": "Штраф за повтор",
"Request Mode": "Режим запроса", "Request Mode": "Режим запроса",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Сбросить векторное хранилище", "Reset Vector Storage": "Сбросить векторное хранилище",
"Response AutoCopy to Clipboard": "Автоматическое копирование ответа в буфер обмена", "Response AutoCopy to Clipboard": "Автоматическое копирование ответа в буфер обмена",
"Role": "Роль", "Role": "Роль",
@ -271,6 +323,7 @@
"Scan complete!": "Сканирование завершено!", "Scan complete!": "Сканирование завершено!",
"Scan for documents from {{path}}": "Сканирование документов из {{path}}", "Scan for documents from {{path}}": "Сканирование документов из {{path}}",
"Search": "Поиск", "Search": "Поиск",
"Search a model": "",
"Search Documents": "Поиск документов", "Search Documents": "Поиск документов",
"Search Prompts": "Поиск промтов", "Search Prompts": "Поиск промтов",
"See readme.md for instructions": "Смотрите readme.md для инструкций", "See readme.md for instructions": "Смотрите readme.md для инструкций",
@ -290,37 +343,46 @@
"Set Voice": "Установить голос", "Set Voice": "Установить голос",
"Settings": "Настройки", "Settings": "Настройки",
"Settings saved successfully!": "Настройки успешно сохранены!", "Settings saved successfully!": "Настройки успешно сохранены!",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "Поделиться с сообществом OpenWebUI", "Share to OpenWebUI Community": "Поделиться с сообществом OpenWebUI",
"short-summary": "краткое описание", "short-summary": "краткое описание",
"Show": "Показать", "Show": "Показать",
"Show Additional Params": "Показать дополнительные параметры", "Show Additional Params": "Показать дополнительные параметры",
"Show shortcuts": "Показать клавиатурные сокращения", "Show shortcuts": "Показать клавиатурные сокращения",
"Showcased creativity": "",
"sidebar": "боковая панель", "sidebar": "боковая панель",
"Sign in": "Войти", "Sign in": "Войти",
"Sign Out": "Выход", "Sign Out": "Выход",
"Sign up": "зарегистрировать", "Sign up": "зарегистрировать",
"Signing in": "",
"Speech recognition error: {{error}}": "Ошибка распознавания речи: {{error}}", "Speech recognition error: {{error}}": "Ошибка распознавания речи: {{error}}",
"Speech-to-Text Engine": "Система распознавания речи", "Speech-to-Text Engine": "Система распознавания речи",
"SpeechRecognition API is not supported in this browser.": "API распознавания речи не поддерживается в этом браузере.", "SpeechRecognition API is not supported in this browser.": "API распознавания речи не поддерживается в этом браузере.",
"Stop Sequence": "Последовательность остановки", "Stop Sequence": "Последовательность остановки",
"STT Settings": "Настройки распознавания речи", "STT Settings": "Настройки распознавания речи",
"Submit": "Отправить", "Submit": "Отправить",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "Успех", "Success": "Успех",
"Successfully updated.": "Успешно обновлено.", "Successfully updated.": "Успешно обновлено.",
"Sync All": "Синхронизировать все", "Sync All": "Синхронизировать все",
"System": "Система", "System": "Система",
"System Prompt": "Системный промпт", "System Prompt": "Системный промпт",
"Tags": "Теги", "Tags": "Теги",
"Tell us more:": "",
"Temperature": "Температура", "Temperature": "Температура",
"Template": "Шаблон", "Template": "Шаблон",
"Text Completion": "Завершение текста", "Text Completion": "Завершение текста",
"Text-to-Speech Engine": "Система синтеза речи", "Text-to-Speech Engine": "Система синтеза речи",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "",
"Theme": "Тема", "Theme": "Тема",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Это обеспечивает сохранение ваших ценных разговоров в безопасной базе данных на вашем сервере. Спасибо!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Это обеспечивает сохранение ваших ценных разговоров в безопасной базе данных на вашем сервере. Спасибо!",
"This setting does not sync across browsers or devices.": "Эта настройка не синхронизируется между браузерами или устройствами.", "This setting does not sync across browsers or devices.": "Эта настройка не синхронизируется между браузерами или устройствами.",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Совет: Обновляйте несколько переменных подряд, нажимая клавишу Tab в поле ввода чата после каждой замены.", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Совет: Обновляйте несколько переменных подряд, нажимая клавишу Tab в поле ввода чата после каждой замены.",
"Title": "Заголовок", "Title": "Заголовок",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "Автогенерация заголовка", "Title Auto-Generation": "Автогенерация заголовка",
"Title Generation Prompt": "Промпт для генерации заголовка", "Title Generation Prompt": "Промпт для генерации заголовка",
"to": "в", "to": "в",
@ -336,13 +398,19 @@
"Type Hugging Face Resolve (Download) URL": "Введите URL-адрес Hugging Face Resolve (загрузки)", "Type Hugging Face Resolve (Download) URL": "Введите URL-адрес Hugging Face Resolve (загрузки)",
"Uh-oh! There was an issue connecting to {{provider}}.": "Упс! Возникла проблема подключения к {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Упс! Возникла проблема подключения к {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Неизвестный тип файла '{{file_type}}', но принимается и обрабатывается как обычный текст", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Неизвестный тип файла '{{file_type}}', но принимается и обрабатывается как обычный текст",
"Update and Copy Link": "",
"Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "Обновить пароль", "Update password": "Обновить пароль",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "Загрузить модель GGUF", "Upload a GGUF model": "Загрузить модель GGUF",
"Upload files": "Загрузить файлы", "Upload files": "Загрузить файлы",
"Upload Progress": "Прогресс загрузки", "Upload Progress": "Прогресс загрузки",
"URL Mode": "Режим URL", "URL Mode": "Режим URL",
"Use '#' in the prompt input to load and select your documents.": "Используйте '#' в поле ввода промпта для загрузки и выбора ваших документов.", "Use '#' in the prompt input to load and select your documents.": "Используйте '#' в поле ввода промпта для загрузки и выбора ваших документов.",
"Use Gravatar": "Использовать Gravatar", "Use Gravatar": "Использовать Gravatar",
"Use Initials": "",
"user": "пользователь", "user": "пользователь",
"User Permissions": "Права пользователя", "User Permissions": "Права пользователя",
"Users": "Пользователи", "Users": "Пользователи",
@ -351,7 +419,9 @@
"variable": "переменная", "variable": "переменная",
"variable to have them replaced with clipboard content.": "переменная, чтобы их заменить содержимым буфера обмена.", "variable to have them replaced with clipboard content.": "переменная, чтобы их заменить содержимым буфера обмена.",
"Version": "Версия", "Version": "Версия",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Веб", "Web": "Веб",
"Webhook URL": "",
"WebUI Add-ons": "Дополнения для WebUI", "WebUI Add-ons": "Дополнения для WebUI",
"WebUI Settings": "Настройки WebUI", "WebUI Settings": "Настройки WebUI",
"WebUI will make requests to": "WebUI будет отправлять запросы на", "WebUI will make requests to": "WebUI будет отправлять запросы на",

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(örn. `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(örn. `sh webui.sh --api`)",
"(latest)": "(en son)", "(latest)": "(en son)",
"{{modelName}} is thinking...": "{{modelName}} düşünüyor...", "{{modelName}} is thinking...": "{{modelName}} düşünüyor...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}} Arkayüz Gerekli", "{{webUIName}} Backend Required": "{{webUIName}} Arkayüz Gerekli",
"a user": "bir kullanıcı", "a user": "bir kullanıcı",
"About": "Hakkında", "About": "Hakkında",
"Account": "Hesap", "Account": "Hesap",
"Action": "Eylem", "Accurate information": "",
"Add a model": "Bir model ekleyin", "Add a model": "Bir model ekleyin",
"Add a model tag name": "Bir model etiket adı ekleyin", "Add a model tag name": "Bir model etiket adı ekleyin",
"Add a short description about what this modelfile does": "Bu model dosyasının ne yaptığı hakkında kısa bir açıklama ekleyin", "Add a short description about what this modelfile does": "Bu model dosyasının ne yaptığı hakkında kısa bir açıklama ekleyin",
@ -17,7 +18,8 @@
"Add Docs": "Dökümanlar Ekle", "Add Docs": "Dökümanlar Ekle",
"Add Files": "Dosyalar Ekle", "Add Files": "Dosyalar Ekle",
"Add message": "Mesaj ekle", "Add message": "Mesaj ekle",
"add tags": "etiketler ekle", "Add Model": "",
"Add Tags": "etiketler ekle",
"Adjusting these settings will apply changes universally to all users.": "Bu ayarları ayarlamak değişiklikleri tüm kullanıcılara evrensel olarak uygular.", "Adjusting these settings will apply changes universally to all users.": "Bu ayarları ayarlamak değişiklikleri tüm kullanıcılara evrensel olarak uygular.",
"admin": "yönetici", "admin": "yönetici",
"Admin Panel": "Yönetici Paneli", "Admin Panel": "Yönetici Paneli",
@ -33,9 +35,14 @@
"and": "ve", "and": "ve",
"API Base URL": "API Temel URL", "API Base URL": "API Temel URL",
"API Key": "API Anahtarı", "API Key": "API Anahtarı",
"API Key created.": "",
"API keys": "",
"API RPM": "API RPM", "API RPM": "API RPM",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "izin verilir - Bu komutu yazarak etkinleştirin", "are allowed - Activate this command by typing": "izin verilir - Bu komutu yazarak etkinleştirin",
"Are you sure?": "Emin misiniz?", "Are you sure?": "Emin misiniz?",
"Attention to detail": "",
"Audio": "Ses", "Audio": "Ses",
"Auto-playback response": "Yanıtı otomatik oynatma", "Auto-playback response": "Yanıtı otomatik oynatma",
"Auto-send input after 3 sec.": "3 saniye sonra otomatik olarak gönder", "Auto-send input after 3 sec.": "3 saniye sonra otomatik olarak gönder",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Temel URL gereklidir.", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Temel URL gereklidir.",
"available!": "mevcut!", "available!": "mevcut!",
"Back": "Geri", "Back": "Geri",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "Oluşturucu Modu", "Builder Mode": "Oluşturucu Modu",
"Cancel": "İptal", "Cancel": "İptal",
"Categories": "Kategoriler", "Categories": "Kategoriler",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "Bir kullanıcının rolünü değiştirmek için kullanıcı rolü düğmesine tıklayın.", "Click on the user role button to change a user's role.": "Bir kullanıcının rolünü değiştirmek için kullanıcı rolü düğmesine tıklayın.",
"Close": "Kapat", "Close": "Kapat",
"Collection": "Koleksiyon", "Collection": "Koleksiyon",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "Komut", "Command": "Komut",
"Confirm Password": "Parolayı Onayla", "Confirm Password": "Parolayı Onayla",
"Connections": "Bağlantılar", "Connections": "Bağlantılar",
"Content": "İçerik", "Content": "İçerik",
"Context Length": "Bağlam Uzunluğu", "Context Length": "Bağlam Uzunluğu",
"Continue Response": "",
"Conversation Mode": "Sohbet Modu", "Conversation Mode": "Sohbet Modu",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "Son kod bloğunu kopyala", "Copy last code block": "Son kod bloğunu kopyala",
"Copy last response": "Son yanıtı kopyala", "Copy last response": "Son yanıtı kopyala",
"Copy Link": "",
"Copying to clipboard was successful!": "Panoya kopyalama başarılı!", "Copying to clipboard was successful!": "Panoya kopyalama başarılı!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Aşağıdaki sorgu için başlık olarak 3-5 kelimelik kısa ve öz bir ifade oluşturun, 3-5 kelime sınırına kesinlikle uyun ve 'başlık' kelimesini kullanmaktan kaçının:", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Aşağıdaki sorgu için başlık olarak 3-5 kelimelik kısa ve öz bir ifade oluşturun, 3-5 kelime sınırına kesinlikle uyun ve 'başlık' kelimesini kullanmaktan kaçının:",
"Create a modelfile": "Bir model dosyası oluştur", "Create a modelfile": "Bir model dosyası oluştur",
"Create Account": "Hesap Oluştur", "Create Account": "Hesap Oluştur",
"Created at": "Oluşturulma tarihi", "Created at": "Oluşturulma tarihi",
"Created by": "Oluşturan", "Created At": "",
"Current Model": "Mevcut Model", "Current Model": "Mevcut Model",
"Current Password": "Mevcut Parola", "Current Password": "Mevcut Parola",
"Custom": "Özel", "Custom": "Özel",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "Varsayılan", "Default": "Varsayılan",
"Default (Automatic1111)": "Varsayılan (Automatic1111)", "Default (Automatic1111)": "Varsayılan (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "Varsayılan (Web API)", "Default (Web API)": "Varsayılan (Web API)",
"Default model updated": "Varsayılan model güncellendi", "Default model updated": "Varsayılan model güncellendi",
"Default Prompt Suggestions": "Varsayılan Prompt Önerileri", "Default Prompt Suggestions": "Varsayılan Prompt Önerileri",
"Default User Role": "Varsayılan Kullanıcı Rolü", "Default User Role": "Varsayılan Kullanıcı Rolü",
"delete": "sil", "delete": "sil",
"Delete": "",
"Delete a model": "Bir modeli sil", "Delete a model": "Bir modeli sil",
"Delete chat": "Sohbeti sil", "Delete chat": "Sohbeti sil",
"Delete Chat": "",
"Delete Chats": "Sohbetleri Sil", "Delete Chats": "Sohbetleri Sil",
"Delete User": "",
"Deleted {{deleteModelTag}}": "{{deleteModelTag}} silindi", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} silindi",
"Deleted {tagName}": "{tagName} silindi", "Deleted {{tagName}}": "",
"Description": "Açıklama", "Description": "Açıklama",
"Notifications": "Bildirimler", "Didn't fully follow instructions": "",
"Disabled": "Devre Dışı", "Disabled": "Devre Dışı",
"Discover a modelfile": "Bir model dosyası keşfedin", "Discover a modelfile": "Bir model dosyası keşfedin",
"Discover a prompt": "Bir prompt keşfedin", "Discover a prompt": "Bir prompt keşfedin",
@ -113,19 +133,21 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "herhangi bir harici bağlantı yapmaz ve verileriniz güvenli bir şekilde yerel olarak barındırılan sunucunuzda kalır.", "does not make any external connections, and your data stays securely on your locally hosted server.": "herhangi bir harici bağlantı yapmaz ve verileriniz güvenli bir şekilde yerel olarak barındırılan sunucunuzda kalır.",
"Don't Allow": "İzin Verme", "Don't Allow": "İzin Verme",
"Don't have an account?": "Hesabınız yok mu?", "Don't have an account?": "Hesabınız yok mu?",
"Download as a File": "Dosya olarak indir", "Don't like the style": "",
"Download": "",
"Download Database": "Veritabanını İndir", "Download Database": "Veritabanını İndir",
"Drop any files here to add to the conversation": "Sohbete eklemek istediğiniz dosyaları buraya bırakın", "Drop any files here to add to the conversation": "Sohbete eklemek istediğiniz dosyaları buraya bırakın",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "örn. '30s', '10m'. Geçerli zaman birimleri 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "örn. '30s', '10m'. Geçerli zaman birimleri 's', 'm', 'h'.",
"Edit": "",
"Edit Doc": "Belgeyi Düzenle", "Edit Doc": "Belgeyi Düzenle",
"Edit User": "Kullanıcıyı Düzenle", "Edit User": "Kullanıcıyı Düzenle",
"Email": "E-posta", "Email": "E-posta",
"Embedding model: {{embedding_model}}": "Gömme modeli: {{embedding_model}}", "Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "Sohbet Geçmişini Etkinleştir", "Enable Chat History": "Sohbet Geçmişini Etkinleştir",
"Enable New Sign Ups": "Yeni Kayıtları Etkinleştir", "Enable New Sign Ups": "Yeni Kayıtları Etkinleştir",
"Enabled": "Etkin", "Enabled": "Etkin",
"Enter {{role}} message here": "Buraya {{role}} mesajını girin", "Enter {{role}} message here": "Buraya {{role}} mesajını girin",
"Enter API Key": "API Anahtarını Girin",
"Enter Chunk Overlap": "Chunk Örtüşmesini Girin", "Enter Chunk Overlap": "Chunk Örtüşmesini Girin",
"Enter Chunk Size": "Chunk Boyutunu Girin", "Enter Chunk Size": "Chunk Boyutunu Girin",
"Enter Image Size (e.g. 512x512)": "Görüntü Boyutunu Girin (örn. 512x512)", "Enter Image Size (e.g. 512x512)": "Görüntü Boyutunu Girin (örn. 512x512)",
@ -136,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "Maksimum Token Sayısını Girin (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "Maksimum Token Sayısını Girin (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "Model etiketini girin (örn. {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "Model etiketini girin (örn. {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "Adım Sayısını Girin (örn. 50)", "Enter Number of Steps (e.g. 50)": "Adım Sayısını Girin (örn. 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "Durdurma dizisini girin", "Enter stop sequence": "Durdurma dizisini girin",
"Enter Top K": "Top K'yı girin", "Enter Top K": "Top K'yı girin",
"Enter URL (e.g. http://127.0.0.1:7860/)": "URL'yi Girin (örn. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "URL'yi Girin (örn. http://127.0.0.1:7860/)",
@ -148,21 +171,28 @@
"Export Documents Mapping": "Belge Eşlemesini Dışa Aktar", "Export Documents Mapping": "Belge Eşlemesini Dışa Aktar",
"Export Modelfiles": "Model Dosyalarını Dışa Aktar", "Export Modelfiles": "Model Dosyalarını Dışa Aktar",
"Export Prompts": "Promptları Dışa Aktar", "Export Prompts": "Promptları Dışa Aktar",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "Pano içeriği okunamadı", "Failed to read clipboard contents": "Pano içeriği okunamadı",
"Feel free to add specific details": "",
"File Mode": "Dosya Modu", "File Mode": "Dosya Modu",
"File not found.": "Dosya bulunamadı.", "File not found.": "Dosya bulunamadı.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Parmak izi sahteciliği tespit edildi: Avatar olarak baş harfler kullanılamıyor. Varsayılan profil resmine dönülüyor.", "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Parmak izi sahteciliği tespit edildi: Avatar olarak baş harfler kullanılamıyor. Varsayılan profil resmine dönülüyor.",
"Fluidly stream large external response chunks": "Büyük harici yanıt chunklarını akıcı bir şekilde yayınlayın", "Fluidly stream large external response chunks": "Büyük harici yanıt chunklarını akıcı bir şekilde yayınlayın",
"Focus chat input": "Sohbet girişine odaklan", "Focus chat input": "Sohbet girişine odaklan",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "Değişkenlerinizi şu şekilde kare parantezlerle biçimlendirin:", "Format your variables using square brackets like this:": "Değişkenlerinizi şu şekilde kare parantezlerle biçimlendirin:",
"From (Base Model)": "(Temel Model)'den", "From (Base Model)": "(Temel Model)'den",
"Full Screen Mode": "Tam Ekran Modu", "Full Screen Mode": "Tam Ekran Modu",
"General": "Genel", "General": "Genel",
"General Settings": "Genel Ayarlar", "General Settings": "Genel Ayarlar",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "Merhaba, {{name}}", "Hello, {{name}}": "Merhaba, {{name}}",
"Hide": "Gizle", "Hide": "Gizle",
"Hide Additional Params": "Ek Parametreleri Gizle", "Hide Additional Params": "Ek Parametreleri Gizle",
"How can I help you today?": "Bugün size nasıl yardımcı olabilirim?", "How can I help you today?": "Bugün size nasıl yardımcı olabilirim?",
"Hybrid Search": "",
"Image Generation (Experimental)": "Görüntü Oluşturma (Deneysel)", "Image Generation (Experimental)": "Görüntü Oluşturma (Deneysel)",
"Image Generation Engine": "Görüntü Oluşturma Motoru", "Image Generation Engine": "Görüntü Oluşturma Motoru",
"Image Settings": "Görüntü Ayarları", "Image Settings": "Görüntü Ayarları",
@ -180,6 +210,7 @@
"Keep Alive": "Canlı Tut", "Keep Alive": "Canlı Tut",
"Keyboard shortcuts": "Klavye kısayolları", "Keyboard shortcuts": "Klavye kısayolları",
"Language": "Dil", "Language": "Dil",
"Last Active": "",
"Light": "Açık", "Light": "Açık",
"OLED Dark": "OLED Koyu", "OLED Dark": "OLED Koyu",
"Listening...": "Dinleniyor...", "Listening...": "Dinleniyor...",
@ -195,10 +226,9 @@
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "DD MMMM YYYY", "MMMM DD, YYYY": "DD MMMM YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' başarıyla indirildi.", "Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' başarıyla indirildi.",
"Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' zaten indirme sırasında.", "Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' zaten indirme sırasında.",
"Model {{embedding_model}} update complete!": "Model {{embedding_model}} güncellemesi tamamlandı!",
"Model {{embedding_model}} update failed or not required!": "Model {{embedding_model}} güncellemesi başarısız oldu veya gerekli değil!",
"Model {{modelId}} not found": "{{modelId}} bulunamadı", "Model {{modelId}} not found": "{{modelId}} bulunamadı",
"Model {{modelName}} already exists.": "{{modelName}} zaten mevcut.", "Model {{modelName}} already exists.": "{{modelName}} zaten mevcut.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model dosya sistemi yolu algılandı. Güncelleme için model kısa adı gerekli, devam edilemiyor.", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model dosya sistemi yolu algılandı. Güncelleme için model kısa adı gerekli, devam edilemiyor.",
@ -212,6 +242,7 @@
"Modelfile Content": "Model Dosyası İçeriği", "Modelfile Content": "Model Dosyası İçeriği",
"Modelfiles": "Model Dosyaları", "Modelfiles": "Model Dosyaları",
"Models": "Modeller", "Models": "Modeller",
"More": "",
"My Documents": "Belgelerim", "My Documents": "Belgelerim",
"My Modelfiles": "Model Dosyalarım", "My Modelfiles": "Model Dosyalarım",
"My Prompts": "Promptlarım", "My Prompts": "Promptlarım",
@ -220,10 +251,14 @@
"Name your modelfile": "Model dosyanıza ad verin", "Name your modelfile": "Model dosyanıza ad verin",
"New Chat": "Yeni Sohbet", "New Chat": "Yeni Sohbet",
"New Password": "Yeni Parola", "New Password": "Yeni Parola",
"Not factually correct": "",
"Not sure what to add?": "Ne ekleyeceğinizden emin değil misiniz?", "Not sure what to add?": "Ne ekleyeceğinizden emin değil misiniz?",
"Not sure what to write? Switch to": "Ne yazacağınızdan emin değil misiniz? Şuraya geçin", "Not sure what to write? Switch to": "Ne yazacağınızdan emin değil misiniz? Şuraya geçin",
"Notifications": "Bildirimler",
"Off": "Kapalı", "Off": "Kapalı",
"Okay, Let's Go!": "Tamam, Hadi Başlayalım!", "Okay, Let's Go!": "Tamam, Hadi Başlayalım!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "Ollama Temel URL", "Ollama Base URL": "Ollama Temel URL",
"Ollama Version": "Ollama Sürümü", "Ollama Version": "Ollama Sürümü",
"On": "Açık", "On": "Açık",
@ -236,15 +271,20 @@
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "Open AI (Dall-E)", "Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "Yeni sohbet aç", "Open new chat": "Yeni sohbet aç",
"OpenAI": "",
"OpenAI API": "OpenAI API", "OpenAI API": "OpenAI API",
"OpenAI API Key": "OpenAI API Anahtarı", "OpenAI API Config": "",
"OpenAI API Key is required.": "OpenAI API Anahtarı gereklidir.", "OpenAI API Key is required.": "OpenAI API Anahtarı gereklidir.",
"OpenAI URL/Key required.": "",
"or": "veya", "or": "veya",
"Other": "",
"Parameters": "Parametreler", "Parameters": "Parametreler",
"Password": "Parola", "Password": "Parola",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "PDF Görüntülerini Çıkart (OCR)", "PDF Extract Images (OCR)": "PDF Görüntülerini Çıkart (OCR)",
"pending": "beklemede", "pending": "beklemede",
"Permission denied when accessing microphone: {{error}}": "Mikrofona erişim izni reddedildi: {{error}}", "Permission denied when accessing microphone: {{error}}": "Mikrofona erişim izni reddedildi: {{error}}",
"Plain text (.txt)": "",
"Playground": "Oyun Alanı", "Playground": "Oyun Alanı",
"Archived Chats": "sohbet kaydı", "Archived Chats": "sohbet kaydı",
"Profile": "Profil", "Profile": "Profil",
@ -256,12 +296,18 @@
"Query Params": "Sorgu Parametreleri", "Query Params": "Sorgu Parametreleri",
"RAG Template": "RAG Şablonu", "RAG Template": "RAG Şablonu",
"Raw Format": "Ham Format", "Raw Format": "Ham Format",
"Read Aloud": "",
"Record voice": "Ses kaydı yap", "Record voice": "Ses kaydı yap",
"Redirecting you to OpenWebUI Community": "OpenWebUI Topluluğuna yönlendiriliyorsunuz", "Redirecting you to OpenWebUI Community": "OpenWebUI Topluluğuna yönlendiriliyorsunuz",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "Sürüm Notları", "Release Notes": "Sürüm Notları",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "Son N'yi Tekrar Et", "Repeat Last N": "Son N'yi Tekrar Et",
"Repeat Penalty": "Tekrar Cezası", "Repeat Penalty": "Tekrar Cezası",
"Request Mode": "İstek Modu", "Request Mode": "İstek Modu",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Vektör Depolamayı Sıfırla", "Reset Vector Storage": "Vektör Depolamayı Sıfırla",
"Response AutoCopy to Clipboard": "Yanıtı Panoya Otomatik Kopyala", "Response AutoCopy to Clipboard": "Yanıtı Panoya Otomatik Kopyala",
"Role": "Rol", "Role": "Rol",
@ -276,6 +322,7 @@
"Scan complete!": "Tarama tamamlandı!", "Scan complete!": "Tarama tamamlandı!",
"Scan for documents from {{path}}": "{{path}} dizininden belgeleri tarayın", "Scan for documents from {{path}}": "{{path}} dizininden belgeleri tarayın",
"Search": "Ara", "Search": "Ara",
"Search a model": "",
"Search Documents": "Belgeleri Ara", "Search Documents": "Belgeleri Ara",
"Search Prompts": "Prompt Ara", "Search Prompts": "Prompt Ara",
"See readme.md for instructions": "Yönergeler için readme.md dosyasına bakın", "See readme.md for instructions": "Yönergeler için readme.md dosyasına bakın",
@ -295,37 +342,46 @@
"Set Voice": "Ses Ayarla", "Set Voice": "Ses Ayarla",
"Settings": "Ayarlar", "Settings": "Ayarlar",
"Settings saved successfully!": "Ayarlar başarıyla kaydedildi!", "Settings saved successfully!": "Ayarlar başarıyla kaydedildi!",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "OpenWebUI Topluluğu ile Paylaş", "Share to OpenWebUI Community": "OpenWebUI Topluluğu ile Paylaş",
"short-summary": "kısa-özet", "short-summary": "kısa-özet",
"Show": "Göster", "Show": "Göster",
"Show Additional Params": "Ek Parametreleri Göster", "Show Additional Params": "Ek Parametreleri Göster",
"Show shortcuts": "Kısayolları göster", "Show shortcuts": "Kısayolları göster",
"Showcased creativity": "",
"sidebar": "kenar çubuğu", "sidebar": "kenar çubuğu",
"Sign in": "Oturum aç", "Sign in": "Oturum aç",
"Sign Out": ıkış Yap", "Sign Out": ıkış Yap",
"Sign up": "Kaydol", "Sign up": "Kaydol",
"Signing in": "",
"Speech recognition error: {{error}}": "Konuşma tanıma hatası: {{error}}", "Speech recognition error: {{error}}": "Konuşma tanıma hatası: {{error}}",
"Speech-to-Text Engine": "Konuşmadan Metne Motoru", "Speech-to-Text Engine": "Konuşmadan Metne Motoru",
"SpeechRecognition API is not supported in this browser.": "SpeechRecognition API bu tarayıcıda desteklenmiyor.", "SpeechRecognition API is not supported in this browser.": "SpeechRecognition API bu tarayıcıda desteklenmiyor.",
"Stop Sequence": "Diziyi Durdur", "Stop Sequence": "Diziyi Durdur",
"STT Settings": "STT Ayarları", "STT Settings": "STT Ayarları",
"Submit": "Gönder", "Submit": "Gönder",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "Başarılı", "Success": "Başarılı",
"Successfully updated.": "Başarıyla güncellendi.", "Successfully updated.": "Başarıyla güncellendi.",
"Sync All": "Tümünü Senkronize Et", "Sync All": "Tümünü Senkronize Et",
"System": "Sistem", "System": "Sistem",
"System Prompt": "Sistem Promptu", "System Prompt": "Sistem Promptu",
"Tags": "Etiketler", "Tags": "Etiketler",
"Tell us more:": "",
"Temperature": "Temperature", "Temperature": "Temperature",
"Template": "Şablon", "Template": "Şablon",
"Text Completion": "Metin Tamamlama", "Text Completion": "Metin Tamamlama",
"Text-to-Speech Engine": "Metinden Sese Motoru", "Text-to-Speech Engine": "Metinden Sese Motoru",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "",
"Theme": "Tema", "Theme": "Tema",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Bu, önemli konuşmalarınızın güvenli bir şekilde arkayüz veritabanınıza kaydedildiğini garantiler. Teşekkür ederiz!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Bu, önemli konuşmalarınızın güvenli bir şekilde arkayüz veritabanınıza kaydedildiğini garantiler. Teşekkür ederiz!",
"This setting does not sync across browsers or devices.": "Bu ayar tarayıcılar veya cihazlar arasında senkronize edilmez.", "This setting does not sync across browsers or devices.": "Bu ayar tarayıcılar veya cihazlar arasında senkronize edilmez.",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "İpucu: Her değiştirmeden sonra sohbet girişinde tab tuşuna basarak birden fazla değişken yuvasını art arda güncelleyin.", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "İpucu: Her değiştirmeden sonra sohbet girişinde tab tuşuna basarak birden fazla değişken yuvasını art arda güncelleyin.",
"Title": "Başlık", "Title": "Başlık",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "Otomatik Başlık Oluşturma", "Title Auto-Generation": "Otomatik Başlık Oluşturma",
"Title Generation Prompt": "Başlık Oluşturma Promptu", "Title Generation Prompt": "Başlık Oluşturma Promptu",
"to": "için", "to": "için",
@ -340,11 +396,13 @@
"TTS Settings": "TTS Ayarları", "TTS Settings": "TTS Ayarları",
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (Download) URL'sini Yazın", "Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (Download) URL'sini Yazın",
"Uh-oh! There was an issue connecting to {{provider}}.": "Ah! {{provider}}'a bağlanırken bir sorun oluştu.", "Uh-oh! There was an issue connecting to {{provider}}.": "Ah! {{provider}}'a bağlanırken bir sorun oluştu.",
"Understand that updating or changing your embedding model requires reset of the vector database and re-import of all documents. You have been warned!": "Gömme modelinizi güncellemenin veya değiştirmenin, vektör veritabanının sıfırlanmasını ve tüm belgelerin yeniden içe aktarılmasını gerektirdiğini anlayın. Uyarıldın!",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Bilinmeyen Dosya Türü '{{file_type}}', ancak düz metin olarak kabul ediliyor ve işleniyor", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Bilinmeyen Dosya Türü '{{file_type}}', ancak düz metin olarak kabul ediliyor ve işleniyor",
"Update": "Güncelleme", "Update and Copy Link": "",
"Update embedding model {{embedding_model}}": "Gömme modelini güncelle: {{embedding_model}}", "Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "Parolayı Güncelle", "Update password": "Parolayı Güncelle",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "Bir GGUF modeli yükle", "Upload a GGUF model": "Bir GGUF modeli yükle",
"Upload files": "Dosyaları Yükle", "Upload files": "Dosyaları Yükle",
"Upload Progress": "Yükleme İlerlemesi", "Upload Progress": "Yükleme İlerlemesi",
@ -360,7 +418,9 @@
"variable": "değişken", "variable": "değişken",
"variable to have them replaced with clipboard content.": "panodaki içerikle değiştirilmesi için değişken.", "variable to have them replaced with clipboard content.": "panodaki içerikle değiştirilmesi için değişken.",
"Version": "Sürüm", "Version": "Sürüm",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web", "Web": "Web",
"Webhook URL": "",
"WebUI Add-ons": "WebUI Eklentileri", "WebUI Add-ons": "WebUI Eklentileri",
"WebUI Settings": "WebUI Ayarları", "WebUI Settings": "WebUI Ayarları",
"WebUI will make requests to": "WebUI, isteklerde bulunacak:", "WebUI will make requests to": "WebUI, isteklerde bulunacak:",

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(e.g. `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(e.g. `sh webui.sh --api`)",
"(latest)": "(остання)", "(latest)": "(остання)",
"{{modelName}} is thinking...": "{{modelName}} думає...", "{{modelName}} is thinking...": "{{modelName}} думає...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "Необхідний бекенд {{webUIName}}", "{{webUIName}} Backend Required": "Необхідний бекенд {{webUIName}}",
"a user": "користувача", "a user": "користувача",
"About": "Про програму", "About": "Про програму",
"Account": "Обліковий запис", "Account": "Обліковий запис",
"Action": "Дія", "Accurate information": "",
"Add a model": "Додати модель", "Add a model": "Додати модель",
"Add a model tag name": "Додати ім'я тегу моделі", "Add a model tag name": "Додати ім'я тегу моделі",
"Add a short description about what this modelfile does": "Додати короткий опис того, що робить цей файл моделі", "Add a short description about what this modelfile does": "Додати короткий опис того, що робить цей файл моделі",
@ -17,7 +18,8 @@
"Add Docs": "Додати документи", "Add Docs": "Додати документи",
"Add Files": "Додати файли", "Add Files": "Додати файли",
"Add message": "Додати повідомлення", "Add message": "Додати повідомлення",
"add tags": "додати теги", "Add Model": "",
"Add Tags": "додати теги",
"Adjusting these settings will apply changes universally to all users.": "Зміни в цих налаштуваннях будуть застосовані для всіх користувачів.", "Adjusting these settings will apply changes universally to all users.": "Зміни в цих налаштуваннях будуть застосовані для всіх користувачів.",
"admin": "адмін", "admin": "адмін",
"Admin Panel": "Панель адміністратора", "Admin Panel": "Панель адміністратора",
@ -33,9 +35,14 @@
"and": "та", "and": "та",
"API Base URL": "Базова адреса URL API", "API Base URL": "Базова адреса URL API",
"API Key": "Ключ API", "API Key": "Ключ API",
"API Key created.": "",
"API keys": "",
"API RPM": "API RPM", "API RPM": "API RPM",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "дозволено - активізуйте цю команду набором", "are allowed - Activate this command by typing": "дозволено - активізуйте цю команду набором",
"Are you sure?": "Ви впевнені?", "Are you sure?": "Ви впевнені?",
"Attention to detail": "",
"Audio": "Аудіо", "Audio": "Аудіо",
"Auto-playback response": "Автоматичне відтворення відповіді", "Auto-playback response": "Автоматичне відтворення відповіді",
"Auto-send input after 3 sec.": "Автоматична відправка вводу через 3 сек.", "Auto-send input after 3 sec.": "Автоматична відправка вводу через 3 сек.",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Необхідна URL-адреса.", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Необхідна URL-адреса.",
"available!": "доступно!", "available!": "доступно!",
"Back": "Назад", "Back": "Назад",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "Режим конструктора", "Builder Mode": "Режим конструктора",
"Cancel": "Скасувати", "Cancel": "Скасувати",
"Categories": "Категорії", "Categories": "Категорії",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "Натисніть кнопку ролі користувача, щоб змінити роль користувача.", "Click on the user role button to change a user's role.": "Натисніть кнопку ролі користувача, щоб змінити роль користувача.",
"Close": "Закрити", "Close": "Закрити",
"Collection": "Колекція", "Collection": "Колекція",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "Команда", "Command": "Команда",
"Confirm Password": "Підтвердіть пароль", "Confirm Password": "Підтвердіть пароль",
"Connections": "З'єднання", "Connections": "З'єднання",
"Content": "Зміст", "Content": "Зміст",
"Context Length": "Довжина контексту", "Context Length": "Довжина контексту",
"Continue Response": "",
"Conversation Mode": "Режим розмови", "Conversation Mode": "Режим розмови",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "Копіювати останній блок коду", "Copy last code block": "Копіювати останній блок коду",
"Copy last response": "Копіювати останню відповідь", "Copy last response": "Копіювати останню відповідь",
"Copy Link": "",
"Copying to clipboard was successful!": "Копіювання в буфер обміну виконано успішно!", "Copying to clipboard was successful!": "Копіювання в буфер обміну виконано успішно!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':",
"Create a modelfile": "Створити файл моделі", "Create a modelfile": "Створити файл моделі",
"Create Account": "Створити обліковий запис", "Create Account": "Створити обліковий запис",
"Created at": "Створено", "Created at": "Створено",
"Created by": "Створено", "Created At": "",
"Current Model": "Поточна модель", "Current Model": "Поточна модель",
"Current Password": "Поточний пароль", "Current Password": "Поточний пароль",
"Custom": "Налаштувати", "Custom": "Налаштувати",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "За замовчуванням", "Default": "За замовчуванням",
"Default (Automatic1111)": "За замовчуванням (Automatic1111)", "Default (Automatic1111)": "За замовчуванням (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "За замовчуванням (Web API)", "Default (Web API)": "За замовчуванням (Web API)",
"Default model updated": "Модель за замовчуванням оновлено", "Default model updated": "Модель за замовчуванням оновлено",
"Default Prompt Suggestions": "Пропозиції промтів замовчуванням", "Default Prompt Suggestions": "Пропозиції промтів замовчуванням",
"Default User Role": "Роль користувача за замовчуванням", "Default User Role": "Роль користувача за замовчуванням",
"delete": "видалити", "delete": "видалити",
"Delete": "",
"Delete a model": "Видалити модель", "Delete a model": "Видалити модель",
"Delete chat": "Видалити чат", "Delete chat": "Видалити чат",
"Delete Chat": "",
"Delete Chats": "Видалити чати", "Delete Chats": "Видалити чати",
"Delete User": "",
"Deleted {{deleteModelTag}}": "Видалено {{deleteModelTag}}", "Deleted {{deleteModelTag}}": "Видалено {{deleteModelTag}}",
"Deleted {tagName}": "Видалено {tagName}", "Deleted {{tagName}}": "",
"Description": "Опис", "Description": "Опис",
"Notifications": "Сповіщення", "Didn't fully follow instructions": "",
"Disabled": "Вимкнено", "Disabled": "Вимкнено",
"Discover a modelfile": "Знайти файл моделі", "Discover a modelfile": "Знайти файл моделі",
"Discover a prompt": "Знайти промт", "Discover a prompt": "Знайти промт",
@ -113,18 +133,21 @@
"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?": "Немає облікового запису?",
"Download as a File": "Завантажити як файл", "Don't like the style": "",
"Download": "",
"Download Database": "Завантажити базу даних", "Download Database": "Завантажити базу даних",
"Drop any files here to add to the conversation": "Перетягніть сюди файли, щоб додати до розмови", "Drop any files here to add to the conversation": "Перетягніть сюди файли, щоб додати до розмови",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр. '30s','10m'. Дійсні одиниці часу: 'с', 'хв', 'г'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр. '30s','10m'. Дійсні одиниці часу: 'с', 'хв', 'г'.",
"Edit": "",
"Edit Doc": "Редагувати документ", "Edit Doc": "Редагувати документ",
"Edit User": "Редагувати користувача", "Edit User": "Редагувати користувача",
"Email": "Електронна пошта", "Email": "Електронна пошта",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "Увімкнути історію чату", "Enable Chat History": "Увімкнути історію чату",
"Enable New Sign Ups": "Дозволити нові реєстрації", "Enable New Sign Ups": "Дозволити нові реєстрації",
"Enabled": "Увімкнено", "Enabled": "Увімкнено",
"Enter {{role}} message here": "Введіть повідомлення {{role}} тут", "Enter {{role}} message here": "Введіть повідомлення {{role}} тут",
"Enter API Key": "Введіть API-ключ",
"Enter Chunk Overlap": "Введіть перекриття фрагменту", "Enter Chunk Overlap": "Введіть перекриття фрагменту",
"Enter Chunk Size": "Введіть розмір фрагменту", "Enter Chunk Size": "Введіть розмір фрагменту",
"Enter Image Size (e.g. 512x512)": "Введіть розмір зображення (напр. 512x512)", "Enter Image Size (e.g. 512x512)": "Введіть розмір зображення (напр. 512x512)",
@ -135,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "Введіть максимальну кількість токенів (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "Введіть максимальну кількість токенів (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "Введіть тег моделі (напр. {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "Введіть тег моделі (напр. {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "Введіть кількість кроків (напр. 50)", "Enter Number of Steps (e.g. 50)": "Введіть кількість кроків (напр. 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "Введіть символ зупинки", "Enter stop sequence": "Введіть символ зупинки",
"Enter Top K": "Введіть Top K", "Enter Top K": "Введіть Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Введіть URL-адресу (напр. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Введіть URL-адресу (напр. http://127.0.0.1:7860/)",
@ -147,20 +171,29 @@
"Export Documents Mapping": "Експортувати відображення документів", "Export Documents Mapping": "Експортувати відображення документів",
"Export Modelfiles": "Експортувати файл моделі", "Export Modelfiles": "Експортувати файл моделі",
"Export Prompts": "Експортувати промти", "Export Prompts": "Експортувати промти",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "Не вдалося прочитати вміст буфера обміну", "Failed to read clipboard contents": "Не вдалося прочитати вміст буфера обміну",
"Feel free to add specific details": "",
"File Mode": "Файловий режим", "File Mode": "Файловий режим",
"File not found.": "Файл не знайдено.", "File not found.": "Файл не знайдено.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "",
"Focus chat input": "Фокус вводу чату", "Focus chat input": "Фокус вводу чату",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "Форматуйте свої змінні квадратними дужками так:", "Format your variables using square brackets like this:": "Форматуйте свої змінні квадратними дужками так:",
"From (Base Model)": "Від (базова модель)", "From (Base Model)": "Від (базова модель)",
"Fluidly stream large external response chunks": "Плавно передавати великі фрагменти зовнішніх відповідей", "Fluidly stream large external response chunks": "Плавно передавати великі фрагменти зовнішніх відповідей",
"Full Screen Mode": "Режим повного екрану", "Full Screen Mode": "Режим повного екрану",
"General": "Загальні", "General": "Загальні",
"General Settings": "Загальні налаштування", "General Settings": "Загальні налаштування",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "Привіт, {{name}}", "Hello, {{name}}": "Привіт, {{name}}",
"Hide": "Приховати", "Hide": "Приховати",
"Hide Additional Params": "Приховати додаткові параметри", "Hide Additional Params": "Приховати додаткові параметри",
"How can I help you today?": "Чим я можу допомогти вам сьогодні?", "How can I help you today?": "Чим я можу допомогти вам сьогодні?",
"Hybrid Search": "",
"Image Generation (Experimental)": "Генерування зображень (експериментально)", "Image Generation (Experimental)": "Генерування зображень (експериментально)",
"Image Generation Engine": "Механізм генерації зображень", "Image Generation Engine": "Механізм генерації зображень",
"Image Settings": "Налаштування зображення", "Image Settings": "Налаштування зображення",
@ -178,6 +211,7 @@
"Keep Alive": "Зберегти активність", "Keep Alive": "Зберегти активність",
"Keyboard shortcuts": "Клавіатурні скорочення", "Keyboard shortcuts": "Клавіатурні скорочення",
"Language": "Мова", "Language": "Мова",
"Last Active": "",
"Light": "Світла", "Light": "Світла",
"OLED Dark": "OLED Темний", "OLED Dark": "OLED Темний",
"Listening...": "Слухаю...", "Listening...": "Слухаю...",
@ -193,10 +227,12 @@
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "MMMM DD, YYYY": "MMMM DD, YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "Модель '{{modelName}}' успішно завантажено.", "Model '{{modelName}}' has been successfully downloaded.": "Модель '{{modelName}}' успішно завантажено.",
"Model '{{modelTag}}' is already in queue for downloading.": "Модель '{{modelTag}}' вже знаходиться в черзі на завантаження.", "Model '{{modelTag}}' is already in queue for downloading.": "Модель '{{modelTag}}' вже знаходиться в черзі на завантаження.",
"Model {{modelId}} not found": "Модель {{modelId}} не знайдено", "Model {{modelId}} not found": "Модель {{modelId}} не знайдено",
"Model {{modelName}} already exists.": "Модель {{modelName}} вже існує.", "Model {{modelName}} already exists.": "Модель {{modelName}} вже існує.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Name": "Назва моделі", "Model Name": "Назва моделі",
"Model not selected": "Модель не вибрана", "Model not selected": "Модель не вибрана",
"Model Tag Name": "Ім'я тегу моделі", "Model Tag Name": "Ім'я тегу моделі",
@ -207,6 +243,7 @@
"Modelfile Content": "Вміст файлу моделі", "Modelfile Content": "Вміст файлу моделі",
"Modelfiles": "Файли моделей", "Modelfiles": "Файли моделей",
"Models": "Моделі", "Models": "Моделі",
"More": "",
"My Documents": "Мої документи", "My Documents": "Мої документи",
"My Modelfiles": "Мої файли моделей", "My Modelfiles": "Мої файли моделей",
"My Prompts": "Мої промти", "My Prompts": "Мої промти",
@ -215,10 +252,14 @@
"Name your modelfile": "Назвіть свій файл моделі", "Name your modelfile": "Назвіть свій файл моделі",
"New Chat": "Новий чат", "New Chat": "Новий чат",
"New Password": "Новий пароль", "New Password": "Новий пароль",
"Not factually correct": "",
"Not sure what to add?": "Не впевнений, що додати?", "Not sure what to add?": "Не впевнений, що додати?",
"Not sure what to write? Switch to": "Не впевнений, що писати? Переключитися на", "Not sure what to write? Switch to": "Не впевнений, що писати? Переключитися на",
"Notifications": "Сповіщення",
"Off": "Вимк", "Off": "Вимк",
"Okay, Let's Go!": "Гаразд, давайте почнемо!", "Okay, Let's Go!": "Гаразд, давайте почнемо!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "Основна URL-адреса Ollama", "Ollama Base URL": "Основна URL-адреса Ollama",
"Ollama Version": "Версія Ollama", "Ollama Version": "Версія Ollama",
"On": "Увімк", "On": "Увімк",
@ -231,15 +272,20 @@
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "Open AI (Dall-E)", "Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "Відкрити новий чат", "Open new chat": "Відкрити новий чат",
"OpenAI": "",
"OpenAI API": "API OpenAI", "OpenAI API": "API OpenAI",
"OpenAI API Key": "Ключ API OpenAI", "OpenAI API Config": "",
"OpenAI API Key is required.": "Потрібен ключ OpenAI API.", "OpenAI API Key is required.": "Потрібен ключ OpenAI API.",
"OpenAI URL/Key required.": "",
"or": "або", "or": "або",
"Other": "",
"Parameters": "Параметри", "Parameters": "Параметри",
"Password": "Пароль", "Password": "Пароль",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "Розпізнавання зображень з PDF (OCR)", "PDF Extract Images (OCR)": "Розпізнавання зображень з PDF (OCR)",
"pending": "на розгляді", "pending": "на розгляді",
"Permission denied when accessing microphone: {{error}}": "Доступ до мікрофона заборонено: {{error}}", "Permission denied when accessing microphone: {{error}}": "Доступ до мікрофона заборонено: {{error}}",
"Plain text (.txt)": "",
"Playground": "Майданчик", "Playground": "Майданчик",
"Archived Chats": "запис чату", "Archived Chats": "запис чату",
"Profile": "Профіль", "Profile": "Профіль",
@ -251,12 +297,18 @@
"Query Params": "Параметри запиту", "Query Params": "Параметри запиту",
"RAG Template": "Шаблон RAG", "RAG Template": "Шаблон RAG",
"Raw Format": "Необроблений формат", "Raw Format": "Необроблений формат",
"Read Aloud": "",
"Record voice": "Записати голос", "Record voice": "Записати голос",
"Redirecting you to OpenWebUI Community": "Перенаправляємо вас до спільноти OpenWebUI", "Redirecting you to OpenWebUI Community": "Перенаправляємо вас до спільноти OpenWebUI",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "Нотатки до випуску", "Release Notes": "Нотатки до випуску",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "Повторити останні N", "Repeat Last N": "Повторити останні N",
"Repeat Penalty": "Штраф за повторення", "Repeat Penalty": "Штраф за повторення",
"Request Mode": "Режим запиту", "Request Mode": "Режим запиту",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Скинути векторне сховище", "Reset Vector Storage": "Скинути векторне сховище",
"Response AutoCopy to Clipboard": "Автокопіювання відповіді в буфер обміну", "Response AutoCopy to Clipboard": "Автокопіювання відповіді в буфер обміну",
"Role": "Роль", "Role": "Роль",
@ -271,6 +323,7 @@
"Scan complete!": "Сканування завершено!", "Scan complete!": "Сканування завершено!",
"Scan for documents from {{path}}": "Сканування документів з {{path}}", "Scan for documents from {{path}}": "Сканування документів з {{path}}",
"Search": "Пошук", "Search": "Пошук",
"Search a model": "",
"Search Documents": "Пошук документів", "Search Documents": "Пошук документів",
"Search Prompts": "Пошук промтів", "Search Prompts": "Пошук промтів",
"See readme.md for instructions": "Див. readme.md для інструкцій", "See readme.md for instructions": "Див. readme.md для інструкцій",
@ -290,37 +343,46 @@
"Set Voice": "Встановити голос", "Set Voice": "Встановити голос",
"Settings": "Налаштування", "Settings": "Налаштування",
"Settings saved successfully!": "Налаштування успішно збережено!", "Settings saved successfully!": "Налаштування успішно збережено!",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "Поділитися зі спільнотою OpenWebUI", "Share to OpenWebUI Community": "Поділитися зі спільнотою OpenWebUI",
"short-summary": "короткий зміст", "short-summary": "короткий зміст",
"Show": "Показати", "Show": "Показати",
"Show Additional Params": "Показати додаткові параметри", "Show Additional Params": "Показати додаткові параметри",
"Show shortcuts": "Показати клавіатурні скорочення", "Show shortcuts": "Показати клавіатурні скорочення",
"Showcased creativity": "",
"sidebar": "бокова панель", "sidebar": "бокова панель",
"Sign in": "Увійти", "Sign in": "Увійти",
"Sign Out": "Вийти", "Sign Out": "Вийти",
"Sign up": "Зареєструватися", "Sign up": "Зареєструватися",
"Signing in": "",
"Speech recognition error: {{error}}": "Помилка розпізнавання мови: {{error}}", "Speech recognition error: {{error}}": "Помилка розпізнавання мови: {{error}}",
"Speech-to-Text Engine": "Система розпізнавання мови", "Speech-to-Text Engine": "Система розпізнавання мови",
"SpeechRecognition API is not supported in this browser.": "SpeechRecognition API не підтримується в цьому браузері.", "SpeechRecognition API is not supported in this browser.": "SpeechRecognition API не підтримується в цьому браузері.",
"Stop Sequence": "Символ зупинки", "Stop Sequence": "Символ зупинки",
"STT Settings": "Налаштування STT", "STT Settings": "Налаштування STT",
"Submit": "Надіслати", "Submit": "Надіслати",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "Успіх", "Success": "Успіх",
"Successfully updated.": "Успішно оновлено.", "Successfully updated.": "Успішно оновлено.",
"Sync All": "Синхронізувати все", "Sync All": "Синхронізувати все",
"System": "Система", "System": "Система",
"System Prompt": "Системний промт", "System Prompt": "Системний промт",
"Tags": "Теги", "Tags": "Теги",
"Tell us more:": "",
"Temperature": "Температура", "Temperature": "Температура",
"Template": "Шаблон", "Template": "Шаблон",
"Text Completion": "Завершення тексту", "Text Completion": "Завершення тексту",
"Text-to-Speech Engine": "Система синтезу мови", "Text-to-Speech Engine": "Система синтезу мови",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "",
"Theme": "Тема", "Theme": "Тема",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Це забезпечує збереження ваших цінних розмов у безпечному бекенд-сховищі. Дякуємо!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Це забезпечує збереження ваших цінних розмов у безпечному бекенд-сховищі. Дякуємо!",
"This setting does not sync across browsers or devices.": "Це налаштування не синхронізується між браузерами або пристроями.", "This setting does not sync across browsers or devices.": "Це налаштування не синхронізується між браузерами або пристроями.",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Порада: Оновіть кілька слотів змінних послідовно, натискаючи клавішу табуляції у вікні чату після кожної заміни.", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Порада: Оновіть кілька слотів змінних послідовно, натискаючи клавішу табуляції у вікні чату після кожної заміни.",
"Title": "Заголовок", "Title": "Заголовок",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "Автогенерація заголовків", "Title Auto-Generation": "Автогенерація заголовків",
"Title Generation Prompt": "Промт для генерування заголовків", "Title Generation Prompt": "Промт для генерування заголовків",
"to": "в", "to": "в",
@ -336,13 +398,19 @@
"Type Hugging Face Resolve (Download) URL": "Введіть URL ресурсу Hugging Face Resolve (завантаження)", "Type Hugging Face Resolve (Download) URL": "Введіть URL ресурсу Hugging Face Resolve (завантаження)",
"Uh-oh! There was an issue connecting to {{provider}}.": "Ой! Виникла проблема при підключенні до {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Ой! Виникла проблема при підключенні до {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Невідомий тип файлу '{{file_type}}', але приймається та обробляється як звичайний текст", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Невідомий тип файлу '{{file_type}}', але приймається та обробляється як звичайний текст",
"Update and Copy Link": "",
"Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "Оновити пароль", "Update password": "Оновити пароль",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "Завантажити GGUF модель", "Upload a GGUF model": "Завантажити GGUF модель",
"Upload files": "Завантажити файли", "Upload files": "Завантажити файли",
"Upload Progress": "Прогрес завантаження", "Upload Progress": "Прогрес завантаження",
"URL Mode": "Режим URL", "URL Mode": "Режим URL",
"Use '#' in the prompt input to load and select your documents.": "Для введення промтів до веб-сторінок (URL) або вибору документів, будь ласка, використовуйте символ '#'.", "Use '#' in the prompt input to load and select your documents.": "Для введення промтів до веб-сторінок (URL) або вибору документів, будь ласка, використовуйте символ '#'.",
"Use Gravatar": "Змінити аватар", "Use Gravatar": "Змінити аватар",
"Use Initials": "",
"user": "користувач", "user": "користувач",
"User Permissions": "Права користувача", "User Permissions": "Права користувача",
"Users": "Користувачі", "Users": "Користувачі",
@ -351,7 +419,9 @@
"variable": "змінна", "variable": "змінна",
"variable to have them replaced with clipboard content.": "змінна, щоб замінити їх вмістом буфера обміну.", "variable to have them replaced with clipboard content.": "змінна, щоб замінити їх вмістом буфера обміну.",
"Version": "Версія", "Version": "Версія",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Веб", "Web": "Веб",
"Webhook URL": "",
"WebUI Add-ons": "Додатки WebUI", "WebUI Add-ons": "Додатки WebUI",
"WebUI Settings": "Налаштування WebUI", "WebUI Settings": "Налаштування WebUI",
"WebUI will make requests to": "WebUI буде робити запити до", "WebUI will make requests to": "WebUI буде робити запити до",

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(vd: `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(vd: `sh webui.sh --api`)",
"(latest)": "(mới nhất)", "(latest)": "(mới nhất)",
"{{modelName}} is thinking...": "{{modelName}} đang suy nghĩ...", "{{modelName}} is thinking...": "{{modelName}} đang suy nghĩ...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}} Yêu cầu Backend", "{{webUIName}} Backend Required": "{{webUIName}} Yêu cầu Backend",
"a user": "người sử dụng", "a user": "người sử dụng",
"About": "Giới thiệu", "About": "Giới thiệu",
"Account": "Tài khoản", "Account": "Tài khoản",
"Action": "Tác vụ", "Accurate information": "Thông tin chính xác",
"Add a model": "Thêm mô hình", "Add a model": "Thêm mô hình",
"Add a model tag name": "Thêm tên thẻ mô hình (tag)", "Add a model tag name": "Thêm tên thẻ mô hình (tag)",
"Add a short description about what this modelfile does": "Thêm mô tả ngắn về việc tệp mô tả mô hình (modelfile) này làm gì", "Add a short description about what this modelfile does": "Thêm mô tả ngắn về việc tệp mô tả mô hình (modelfile) này làm gì",
@ -17,7 +18,8 @@
"Add Docs": "Thêm tài liệu", "Add Docs": "Thêm tài liệu",
"Add Files": "Thêm tệp", "Add Files": "Thêm tệp",
"Add message": "Thêm tin nhắn", "Add message": "Thêm tin nhắn",
"add tags": "thêm thẻ", "Add Model": "",
"Add Tags": "thêm thẻ",
"Adjusting these settings will apply changes universally to all users.": "Các thay đổi cài đặt này sẽ áp dụng cho tất cả người sử dụng.", "Adjusting these settings will apply changes universally to all users.": "Các thay đổi cài đặt này sẽ áp dụng cho tất cả người sử dụng.",
"admin": "quản trị viên", "admin": "quản trị viên",
"Admin Panel": "Trang Quản trị", "Admin Panel": "Trang Quản trị",
@ -33,9 +35,14 @@
"and": "và", "and": "và",
"API Base URL": "Đường dẫn tới API (API Base URL)", "API Base URL": "Đường dẫn tới API (API Base URL)",
"API Key": "API Key", "API Key": "API Key",
"API Key created.": "",
"API keys": "",
"API RPM": "API RPM", "API RPM": "API RPM",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "được phép - Kích hoạt lệnh này bằng cách gõ", "are allowed - Activate this command by typing": "được phép - Kích hoạt lệnh này bằng cách gõ",
"Are you sure?": "Bạn có chắc chắn không?", "Are you sure?": "Bạn có chắc chắn không?",
"Attention to detail": "Có sự chú ý đến chi tiết của vấn đề",
"Audio": "Âm thanh", "Audio": "Âm thanh",
"Auto-playback response": "Tự động phát lại phản hồi (Auto-playback)", "Auto-playback response": "Tự động phát lại phản hồi (Auto-playback)",
"Auto-send input after 3 sec.": "Tự động gửi đầu vào sau 3 giây.", "Auto-send input after 3 sec.": "Tự động gửi đầu vào sau 3 giây.",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "Base URL của AUTOMATIC1111 là bắt buộc.", "AUTOMATIC1111 Base URL is required.": "Base URL của AUTOMATIC1111 là bắt buộc.",
"available!": "có sẵn!", "available!": "có sẵn!",
"Back": "Quay lại", "Back": "Quay lại",
"Bad Response": "",
"Being lazy": "Lười biếng",
"Builder Mode": "Chế độ Builder", "Builder Mode": "Chế độ Builder",
"Cancel": "Hủy bỏ", "Cancel": "Hủy bỏ",
"Categories": "Danh mục", "Categories": "Danh mục",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "Bấm vào nút trong cột VAI TRÒ để thay đổi quyền của người sử dụng.", "Click on the user role button to change a user's role.": "Bấm vào nút trong cột VAI TRÒ để thay đổi quyền của người sử dụng.",
"Close": "Đóng", "Close": "Đóng",
"Collection": "Tổng hợp mọi tài liệu", "Collection": "Tổng hợp mọi tài liệu",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "Lệnh", "Command": "Lệnh",
"Confirm Password": "Xác nhận Mật khẩu", "Confirm Password": "Xác nhận Mật khẩu",
"Connections": "Kết nối", "Connections": "Kết nối",
"Content": "Nội dung", "Content": "Nội dung",
"Context Length": "Độ dài ngữ cảnh (Context Length)", "Context Length": "Độ dài ngữ cảnh (Context Length)",
"Continue Response": "",
"Conversation Mode": "Chế độ hội thoại", "Conversation Mode": "Chế độ hội thoại",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "Sao chép khối mã cuối cùng", "Copy last code block": "Sao chép khối mã cuối cùng",
"Copy last response": "Sao chép phản hồi cuối cùng", "Copy last response": "Sao chép phản hồi cuối cùng",
"Copy Link": "",
"Copying to clipboard was successful!": "Sao chép vào clipboard thành công!", "Copying to clipboard was successful!": "Sao chép vào clipboard thành công!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Tạo một cụm từ súc tích, 3-5 từ làm tiêu đề cho truy vấn sau, tuân thủ nghiêm ngặt giới hạn 3-5 từ và tránh sử dụng từ 'tiêu đề':", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Tạo một cụm từ súc tích, 3-5 từ làm tiêu đề cho truy vấn sau, tuân thủ nghiêm ngặt giới hạn 3-5 từ và tránh sử dụng từ 'tiêu đề':",
"Create a modelfile": "Tạo tệp mô tả cho mô hình", "Create a modelfile": "Tạo tệp mô tả cho mô hình",
"Create Account": "Tạo Tài khoản", "Create Account": "Tạo Tài khoản",
"Created at": "Được tạo vào lúc", "Created at": "Được tạo vào lúc",
"Created by": "Được tạo bởi", "Created At": "",
"Current Model": "Mô hình hiện tại", "Current Model": "Mô hình hiện tại",
"Current Password": "Mật khẩu hiện tại", "Current Password": "Mật khẩu hiện tại",
"Custom": "Tùy chỉnh", "Custom": "Tùy chỉnh",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "Mặc định", "Default": "Mặc định",
"Default (Automatic1111)": "Mặc định (Automatic1111)", "Default (Automatic1111)": "Mặc định (Automatic1111)",
"Default (SentenceTransformers)": "",
"Default (Web API)": "Mặc định (Web API)", "Default (Web API)": "Mặc định (Web API)",
"Default model updated": "Mô hình mặc định đã được cập nhật", "Default model updated": "Mô hình mặc định đã được cập nhật",
"Default Prompt Suggestions": "Đề xuất prompt mặc định", "Default Prompt Suggestions": "Đề xuất prompt mặc định",
"Default User Role": "Vai trò mặc định", "Default User Role": "Vai trò mặc định",
"delete": "xóa", "delete": "xóa",
"Delete": "",
"Delete a model": "Xóa mô hình", "Delete a model": "Xóa mô hình",
"Delete chat": "Xóa nội dung chat", "Delete chat": "Xóa nội dung chat",
"Delete Chat": "",
"Delete Chats": "Xóa nội dung chat", "Delete Chats": "Xóa nội dung chat",
"Delete User": "",
"Deleted {{deleteModelTag}}": "Đã xóa {{deleteModelTag}}", "Deleted {{deleteModelTag}}": "Đã xóa {{deleteModelTag}}",
"Deleted {tagName}": "Đã xóa {tagName}", "Deleted {{tagName}}": "",
"Description": "Mô tả", "Description": "Mô tả",
"Notifications": "Thông báo trên máy tính (Notification)", "Didn't fully follow instructions": "Không tuân theo chỉ dẫn một cách đầy đủ",
"Disabled": "Đã vô hiệu hóa", "Disabled": "Đã vô hiệu hóa",
"Discover a modelfile": "Khám phá thêm các mô hình mới", "Discover a modelfile": "Khám phá thêm các mô hình mới",
"Discover a prompt": "Khám phá thêm prompt mới", "Discover a prompt": "Khám phá thêm prompt mới",
@ -113,18 +133,21 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "không thực hiện bất kỳ kết nối ngoài nào, và dữ liệu của bạn vẫn được lưu trữ an toàn trên máy chủ lưu trữ cục bộ của bạn.", "does not make any external connections, and your data stays securely on your locally hosted server.": "không thực hiện bất kỳ kết nối ngoài nào, và dữ liệu của bạn vẫn được lưu trữ an toàn trên máy chủ lưu trữ cục bộ của bạn.",
"Don't Allow": "Không Cho phép", "Don't Allow": "Không Cho phép",
"Don't have an account?": "Không có tài khoản?", "Don't have an account?": "Không có tài khoản?",
"Download as a File": "Tải xuống dưới dạng tệp", "Don't like the style": "Không thích phong cách trả lời",
"Download": "",
"Download Database": "Tải xuống Cơ sở dữ liệu", "Download Database": "Tải xuống Cơ sở dữ liệu",
"Drop any files here to add to the conversation": "Thả bất kỳ tệp nào ở đây để thêm vào nội dung chat", "Drop any files here to add to the conversation": "Thả bất kỳ tệp nào ở đây để thêm vào nội dung chat",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "vd: '30s','10m'. Đơn vị thời gian hợp lệ là 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "vd: '30s','10m'. Đơn vị thời gian hợp lệ là 's', 'm', 'h'.",
"Edit": "",
"Edit Doc": "Thay đổi tài liệu", "Edit Doc": "Thay đổi tài liệu",
"Edit User": "Thay đổi thông tin người sử dụng", "Edit User": "Thay đổi thông tin người sử dụng",
"Email": "Email", "Email": "Email",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "Bật Lịch sử chat", "Enable Chat History": "Bật Lịch sử chat",
"Enable New Sign Ups": "Cho phép đăng ký mới", "Enable New Sign Ups": "Cho phép đăng ký mới",
"Enabled": "Đã bật", "Enabled": "Đã bật",
"Enter {{role}} message here": "Nhập yêu cầu của {{role}} ở đây", "Enter {{role}} message here": "Nhập yêu cầu của {{role}} ở đây",
"Enter API Key": "Nhập Khóa API",
"Enter Chunk Overlap": "Nhập Chunk chồng lấn (overlap)", "Enter Chunk Overlap": "Nhập Chunk chồng lấn (overlap)",
"Enter Chunk Size": "Nhập Kích thước Chunk", "Enter Chunk Size": "Nhập Kích thước Chunk",
"Enter Image Size (e.g. 512x512)": "Nhập Kích thước ảnh (vd: 512x512)", "Enter Image Size (e.g. 512x512)": "Nhập Kích thước ảnh (vd: 512x512)",
@ -135,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "Nhập Số Token Tối đa (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "Nhập Số Token Tối đa (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "Nhập thẻ mô hình (vd: {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "Nhập thẻ mô hình (vd: {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "Nhập số Steps (vd: 50)", "Enter Number of Steps (e.g. 50)": "Nhập số Steps (vd: 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "Nhập stop sequence", "Enter stop sequence": "Nhập stop sequence",
"Enter Top K": "Nhập Top K", "Enter Top K": "Nhập Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Nhập URL (vd: http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Nhập URL (vd: http://127.0.0.1:7860/)",
@ -147,20 +171,29 @@
"Export Documents Mapping": "Tải cấu trúc tài liệu về máy", "Export Documents Mapping": "Tải cấu trúc tài liệu về máy",
"Export Modelfiles": "Tải tệp mô tả về máy", "Export Modelfiles": "Tải tệp mô tả về máy",
"Export Prompts": "Tải các prompt về máy", "Export Prompts": "Tải các prompt về máy",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "Không thể đọc nội dung clipboard", "Failed to read clipboard contents": "Không thể đọc nội dung clipboard",
"Feel free to add specific details": "Mô tả chi tiết về chất lượng của câu hỏi và phương án trả lời",
"File Mode": "Chế độ Tệp văn bản", "File Mode": "Chế độ Tệp văn bản",
"File not found.": "Không tìm thấy tệp.", "File not found.": "Không tìm thấy tệp.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "",
"Focus chat input": "Tập trung vào nội dung chat", "Focus chat input": "Tập trung vào nội dung chat",
"Followed instructions perfectly": "Tuân theo chỉ dẫn một cách hoàn hảo",
"Format your variables using square brackets like this:": "Định dạng các biến của bạn bằng cách sử dụng dấu ngoặc vuông như thế này:", "Format your variables using square brackets like this:": "Định dạng các biến của bạn bằng cách sử dụng dấu ngoặc vuông như thế này:",
"From (Base Model)": "Từ (Base Model)", "From (Base Model)": "Từ (Base Model)",
"Fluidly stream large external response chunks": "Truyền tải các khối phản hồi bên ngoài lớn một cách trôi chảy", "Fluidly stream large external response chunks": "Truyền tải các khối phản hồi bên ngoài lớn một cách trôi chảy",
"Full Screen Mode": "Chế độ Toàn màn hình", "Full Screen Mode": "Chế độ Toàn màn hình",
"General": "Cài đặt chung", "General": "Cài đặt chung",
"General Settings": "Cấu hình chung", "General Settings": "Cấu hình chung",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "Xin chào, {{name}}", "Hello, {{name}}": "Xin chào, {{name}}",
"Hide": "Ẩn", "Hide": "Ẩn",
"Hide Additional Params": "Ẩn Các tham số bổ sung", "Hide Additional Params": "Ẩn Các tham số bổ sung",
"How can I help you today?": "Tôi có thể giúp gì cho bạn hôm nay?", "How can I help you today?": "Tôi có thể giúp gì cho bạn hôm nay?",
"Hybrid Search": "",
"Image Generation (Experimental)": "Tạo ảnh (thử nghiệm)", "Image Generation (Experimental)": "Tạo ảnh (thử nghiệm)",
"Image Generation Engine": "Công cụ tạo ảnh", "Image Generation Engine": "Công cụ tạo ảnh",
"Image Settings": "Cài đặt ảnh", "Image Settings": "Cài đặt ảnh",
@ -178,6 +211,7 @@
"Keep Alive": "Giữ kết nối", "Keep Alive": "Giữ kết nối",
"Keyboard shortcuts": "Phím tắt", "Keyboard shortcuts": "Phím tắt",
"Language": "Ngôn ngữ", "Language": "Ngôn ngữ",
"Last Active": "",
"Light": "Sáng", "Light": "Sáng",
"OLED Dark": "OLED tối", "OLED Dark": "OLED tối",
"Listening...": "Đang nghe...", "Listening...": "Đang nghe...",
@ -193,10 +227,12 @@
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "MMMM DD, YYYY": "MMMM DD, YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "Mô hình '{{modelName}}' đã được tải xuống thành công.", "Model '{{modelName}}' has been successfully downloaded.": "Mô hình '{{modelName}}' đã được tải xuống thành công.",
"Model '{{modelTag}}' is already in queue for downloading.": "Mô hình '{{modelTag}}' đã có trong hàng đợi để tải xuống.", "Model '{{modelTag}}' is already in queue for downloading.": "Mô hình '{{modelTag}}' đã có trong hàng đợi để tải xuống.",
"Model {{modelId}} not found": "Không tìm thấy Mô hình {{modelId}}", "Model {{modelId}} not found": "Không tìm thấy Mô hình {{modelId}}",
"Model {{modelName}} already exists.": "Mô hình {{modelName}} đã tồn tại.", "Model {{modelName}} already exists.": "Mô hình {{modelName}} đã tồn tại.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Name": "Tên Mô hình", "Model Name": "Tên Mô hình",
"Model not selected": "Chưa chọn Mô hình", "Model not selected": "Chưa chọn Mô hình",
"Model Tag Name": "Tên thẻ Mô hình", "Model Tag Name": "Tên thẻ Mô hình",
@ -207,6 +243,7 @@
"Modelfile Content": "Nội dung Tệp Mô hình", "Modelfile Content": "Nội dung Tệp Mô hình",
"Modelfiles": "Tệp Mô hình", "Modelfiles": "Tệp Mô hình",
"Models": "Mô hình", "Models": "Mô hình",
"More": "",
"My Documents": "Tài liệu của tôi", "My Documents": "Tài liệu của tôi",
"My Modelfiles": "Tệp Mô hình của tôi", "My Modelfiles": "Tệp Mô hình của tôi",
"My Prompts": "Các prompt của tôi", "My Prompts": "Các prompt của tôi",
@ -215,10 +252,14 @@
"Name your modelfile": "Đặt tên cho tệp mô hình của bạn", "Name your modelfile": "Đặt tên cho tệp mô hình của bạn",
"New Chat": "Tạo cuộc trò chuyện mới", "New Chat": "Tạo cuộc trò chuyện mới",
"New Password": "Mật khẩu mới", "New Password": "Mật khẩu mới",
"Not factually correct": "Không chính xác so với thực tế",
"Not sure what to add?": "Không chắc phải thêm gì?", "Not sure what to add?": "Không chắc phải thêm gì?",
"Not sure what to write? Switch to": "Không chắc phải viết gì? Chuyển sang", "Not sure what to write? Switch to": "Không chắc phải viết gì? Chuyển sang",
"Notifications": "Thông báo trên máy tính (Notification)",
"Off": "Tắt", "Off": "Tắt",
"Okay, Let's Go!": "Được rồi, Bắt đầu thôi!", "Okay, Let's Go!": "Được rồi, Bắt đầu thôi!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "Đường dẫn tới API của Ollama (Ollama Base URL)", "Ollama Base URL": "Đường dẫn tới API của Ollama (Ollama Base URL)",
"Ollama Version": "Phiên bản Ollama", "Ollama Version": "Phiên bản Ollama",
"On": "Bật", "On": "Bật",
@ -231,15 +272,20 @@
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "Open AI (Dall-E)", "Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "Mở nội dung chat mới", "Open new chat": "Mở nội dung chat mới",
"OpenAI": "",
"OpenAI API": "API OpenAI", "OpenAI API": "API OpenAI",
"OpenAI API Key": "Khóa API OpenAI", "OpenAI API Config": "",
"OpenAI API Key is required.": "Bắt buộc nhập API OpenAI Key.", "OpenAI API Key is required.": "Bắt buộc nhập API OpenAI Key.",
"OpenAI URL/Key required.": "",
"or": "hoặc", "or": "hoặc",
"Other": "Khác",
"Parameters": "Tham số", "Parameters": "Tham số",
"Password": "Mật khẩu", "Password": "Mật khẩu",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "Trích xuất ảnh từ PDF (OCR)", "PDF Extract Images (OCR)": "Trích xuất ảnh từ PDF (OCR)",
"pending": "đang chờ phê duyệt", "pending": "đang chờ phê duyệt",
"Permission denied when accessing microphone: {{error}}": "Quyền truy cập micrô bị từ chối: {{error}}", "Permission denied when accessing microphone: {{error}}": "Quyền truy cập micrô bị từ chối: {{error}}",
"Plain text (.txt)": "",
"Playground": "Thử nghiệm (Playground)", "Playground": "Thử nghiệm (Playground)",
"Archived Chats": "bản ghi trò chuyện", "Archived Chats": "bản ghi trò chuyện",
"Profile": "Hồ sơ", "Profile": "Hồ sơ",
@ -251,12 +297,18 @@
"Query Params": "Tham số Truy vấn", "Query Params": "Tham số Truy vấn",
"RAG Template": "Mẫu prompt cho RAG", "RAG Template": "Mẫu prompt cho RAG",
"Raw Format": "Raw Format", "Raw Format": "Raw Format",
"Read Aloud": "",
"Record voice": "Ghi âm", "Record voice": "Ghi âm",
"Redirecting you to OpenWebUI Community": "Đang chuyển hướng bạn đến Cộng đồng OpenWebUI", "Redirecting you to OpenWebUI Community": "Đang chuyển hướng bạn đến Cộng đồng OpenWebUI",
"Refused when it shouldn't have": "Từ chối trả lời mà nhẽ không nên làm vậy",
"Regenerate": "",
"Release Notes": "Mô tả những cập nhật mới", "Release Notes": "Mô tả những cập nhật mới",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "Repeat Last N", "Repeat Last N": "Repeat Last N",
"Repeat Penalty": "Repeat Penalty", "Repeat Penalty": "Repeat Penalty",
"Request Mode": "Request Mode", "Request Mode": "Request Mode",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Cài đặt lại Vector Storage", "Reset Vector Storage": "Cài đặt lại Vector Storage",
"Response AutoCopy to Clipboard": "Tự động Sao chép Phản hồi vào clipboard", "Response AutoCopy to Clipboard": "Tự động Sao chép Phản hồi vào clipboard",
"Role": "Vai trò", "Role": "Vai trò",
@ -271,6 +323,7 @@
"Scan complete!": "Quét hoàn tất!", "Scan complete!": "Quét hoàn tất!",
"Scan for documents from {{path}}": "Quét tài liệu từ đường dẫn: {{path}}", "Scan for documents from {{path}}": "Quét tài liệu từ đường dẫn: {{path}}",
"Search": "Tìm kiếm", "Search": "Tìm kiếm",
"Search a model": "",
"Search Documents": "Tìm tài liệu", "Search Documents": "Tìm tài liệu",
"Search Prompts": "Tìm prompt", "Search Prompts": "Tìm prompt",
"See readme.md for instructions": "Xem readme.md để biết hướng dẫn", "See readme.md for instructions": "Xem readme.md để biết hướng dẫn",
@ -290,37 +343,46 @@
"Set Voice": "Đặt Giọng nói", "Set Voice": "Đặt Giọng nói",
"Settings": "Cài đặt", "Settings": "Cài đặt",
"Settings saved successfully!": "Cài đặt đã được lưu thành công!", "Settings saved successfully!": "Cài đặt đã được lưu thành công!",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "Chia sẻ đến Cộng đồng OpenWebUI", "Share to OpenWebUI Community": "Chia sẻ đến Cộng đồng OpenWebUI",
"short-summary": "tóm tắt ngắn", "short-summary": "tóm tắt ngắn",
"Show": "Hiển thị", "Show": "Hiển thị",
"Show Additional Params": "Hiển thị Tham số Bổ sung", "Show Additional Params": "Hiển thị Tham số Bổ sung",
"Show shortcuts": "Hiển thị phím tắt", "Show shortcuts": "Hiển thị phím tắt",
"Showcased creativity": "Thể hiện sự sáng tạo",
"sidebar": "thanh bên", "sidebar": "thanh bên",
"Sign in": "Đăng nhập", "Sign in": "Đăng nhập",
"Sign Out": "Đăng xuất", "Sign Out": "Đăng xuất",
"Sign up": "Đăng ký", "Sign up": "Đăng ký",
"Signing in": "",
"Speech recognition error: {{error}}": "Lỗi nhận dạng giọng nói: {{error}}", "Speech recognition error: {{error}}": "Lỗi nhận dạng giọng nói: {{error}}",
"Speech-to-Text Engine": "Công cụ Nhận dạng Giọng nói", "Speech-to-Text Engine": "Công cụ Nhận dạng Giọng nói",
"SpeechRecognition API is not supported in this browser.": "Trình duyệt này không hỗ trợ API Nhận dạng Giọng nói.", "SpeechRecognition API is not supported in this browser.": "Trình duyệt này không hỗ trợ API Nhận dạng Giọng nói.",
"Stop Sequence": "Trình tự Dừng", "Stop Sequence": "Trình tự Dừng",
"STT Settings": "Cài đặt Nhận dạng Giọng nói", "STT Settings": "Cài đặt Nhận dạng Giọng nói",
"Submit": "Gửi", "Submit": "Gửi",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "Thành công", "Success": "Thành công",
"Successfully updated.": "Đã cập nhật thành công.", "Successfully updated.": "Đã cập nhật thành công.",
"Sync All": "Đồng bộ hóa Tất cả", "Sync All": "Đồng bộ hóa Tất cả",
"System": "Hệ thống", "System": "Hệ thống",
"System Prompt": "Prompt Hệ thống (System Prompt)", "System Prompt": "Prompt Hệ thống (System Prompt)",
"Tags": "Thẻ", "Tags": "Thẻ",
"Tell us more:": "Hãy cho chúng tôi hiểu thêm về chất lượng của câu trả lời:",
"Temperature": "Temperature", "Temperature": "Temperature",
"Template": "Mẫu", "Template": "Mẫu",
"Text Completion": "Hoàn tất Văn bản", "Text Completion": "Hoàn tất Văn bản",
"Text-to-Speech Engine": "Công cụ Chuyển Văn bản thành Giọng nói", "Text-to-Speech Engine": "Công cụ Chuyển Văn bản thành Giọng nói",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "Cám ơn bạn đã gửi phản hồi!",
"Theme": "Chủ đề", "Theme": "Chủ đề",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Điều này đảm bảo rằng các nội dung chat có giá trị của bạn được lưu an toàn vào cơ sở dữ liệu backend của bạn. Cảm ơn bạn!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Điều này đảm bảo rằng các nội dung chat có giá trị của bạn được lưu an toàn vào cơ sở dữ liệu backend của bạn. Cảm ơn bạn!",
"This setting does not sync across browsers or devices.": "Cài đặt này không đồng bộ hóa trên các trình duyệt hoặc thiết bị.", "This setting does not sync across browsers or devices.": "Cài đặt này không đồng bộ hóa trên các trình duyệt hoặc thiết bị.",
"Thorough explanation": "Giải thích kỹ lưỡng",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Mẹo: Cập nhật nhiều khe biến liên tiếp bằng cách nhấn phím tab trong đầu vào trò chuyện sau mỗi việc thay thế.", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Mẹo: Cập nhật nhiều khe biến liên tiếp bằng cách nhấn phím tab trong đầu vào trò chuyện sau mỗi việc thay thế.",
"Title": "Tiêu đề", "Title": "Tiêu đề",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "Tự động Tạo Tiêu đề", "Title Auto-Generation": "Tự động Tạo Tiêu đề",
"Title Generation Prompt": "Prompt tạo tiêu đề", "Title Generation Prompt": "Prompt tạo tiêu đề",
"to": "đến", "to": "đến",
@ -336,13 +398,19 @@
"Type Hugging Face Resolve (Download) URL": "Nhập URL Hugging Face Resolve (Tải xuống)", "Type Hugging Face Resolve (Download) URL": "Nhập URL Hugging Face Resolve (Tải xuống)",
"Uh-oh! There was an issue connecting to {{provider}}.": "Ồ! Đã xảy ra sự cố khi kết nối với {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Ồ! Đã xảy ra sự cố khi kết nối với {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Loại Tệp Không xác định '{{file_type}}', nhưng đang chấp nhận và xử lý như văn bản thô", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Loại Tệp Không xác định '{{file_type}}', nhưng đang chấp nhận và xử lý như văn bản thô",
"Update and Copy Link": "",
"Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "Cập nhật mật khẩu", "Update password": "Cập nhật mật khẩu",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "Tải lên mô hình GGUF", "Upload a GGUF model": "Tải lên mô hình GGUF",
"Upload files": "Tải tệp lên hệ thống", "Upload files": "Tải tệp lên hệ thống",
"Upload Progress": "Tiến trình tải tệp lên hệ thống", "Upload Progress": "Tiến trình tải tệp lên hệ thống",
"URL Mode": "Chế độ URL", "URL Mode": "Chế độ URL",
"Use '#' in the prompt input to load and select your documents.": "Sử dụng '#' trong đầu vào của prompt để tải về và lựa chọn tài liệu của bạn cần truy vấn.", "Use '#' in the prompt input to load and select your documents.": "Sử dụng '#' trong đầu vào của prompt để tải về và lựa chọn tài liệu của bạn cần truy vấn.",
"Use Gravatar": "Sử dụng Gravatar", "Use Gravatar": "Sử dụng Gravatar",
"Use Initials": "",
"user": "Người sử dụng", "user": "Người sử dụng",
"User Permissions": "Phân quyền sử dụng", "User Permissions": "Phân quyền sử dụng",
"Users": "người sử dụng", "Users": "người sử dụng",
@ -351,31 +419,18 @@
"variable": "biến", "variable": "biến",
"variable to have them replaced with clipboard content.": "biến để có chúng được thay thế bằng nội dung clipboard.", "variable to have them replaced with clipboard content.": "biến để có chúng được thay thế bằng nội dung clipboard.",
"Version": "Version", "Version": "Version",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web", "Web": "Web",
"Webhook URL": "",
"WebUI Add-ons": "Tiện ích WebUI", "WebUI Add-ons": "Tiện ích WebUI",
"WebUI Settings": "Cài đặt WebUI", "WebUI Settings": "Cài đặt WebUI",
"WebUI will make requests to": "WebUI sẽ thực hiện các yêu cầu đến", "WebUI will make requests to": "WebUI sẽ thực hiện các yêu cầu đến",
"What's New in": "Có gì mới trong", "Whats New in": "",
"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Khi chế độ lịch sử chat đã tắt, các nội dung chat mới trên trình duyệt này sẽ không xuất hiện trên bất kỳ thiết bị nào của bạn.", "When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Khi chế độ lịch sử chat đã tắt, các nội dung chat mới trên trình duyệt này sẽ không xuất hiện trên bất kỳ thiết bị nào của bạn.",
"Whisper (Local)": "Whisper (Local)", "Whisper (Local)": "Whisper (Local)",
"Write a prompt suggestion (e.g. Who are you?)": "Hãy viết một prompt (vd: Bạn là ai?)", "Write a prompt suggestion (e.g. Who are you?)": "Hãy viết một prompt (vd: Bạn là ai?)",
"Write a summary in 50 words that summarizes [topic or keyword].": "Viết một tóm tắt trong vòng 50 từ cho [chủ đề hoặc từ khóa].", "Write a summary in 50 words that summarizes [topic or keyword].": "Viết một tóm tắt trong vòng 50 từ cho [chủ đề hoặc từ khóa].",
"You": "Bạn", "You": "Bạn",
"You're a helpful assistant.": "Bạn là một trợ lý hữu ích.", "You're a helpful assistant.": "Bạn là một trợ lý hữu ích.",
"You're now logged in.": "Bạn đã đăng nhập.", "You're now logged in.": "Bạn đã đăng nhập."
"Accurate information": "Thông tin chính xác",
"Followed instructions perfectly": "Tuân theo chỉ dẫn một cách hoàn hảo",
"Showcased creativity": "Thể hiện sự sáng tạo",
"Positive attitude": "Thể hiện thái độ tích cực",
"Attention to detail": "Có sự chú ý đến chi tiết của vấn đề",
"Thorough explanation": "Giải thích kỹ lưỡng",
"Don't like the style": "Không thích phong cách trả lời",
"Not factually correct": "Không chính xác so với thực tế",
"Didn't fully follow instructions": "Không tuân theo chỉ dẫn một cách đầy đủ",
"Refused when it shouldn't have": "Từ chối trả lời mà nhẽ không nên làm vậy",
"Being lazy": "Lười biếng",
"Other": "Khác",
"Thanks for your feedback!": "Cám ơn bạn đã gửi phản hồi!",
"Tell us more:": "Hãy cho chúng tôi hiểu thêm về chất lượng của câu trả lời:",
"Feel free to add specific details": "Mô tả chi tiết về chất lượng của câu hỏi và phương án trả lời"
} }

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(例如 `sh webui.sh --api`", "(e.g. `sh webui.sh --api`)": "(例如 `sh webui.sh --api`",
"(latest)": "", "(latest)": "",
"{{modelName}} is thinking...": "{{modelName}} 正在思考...", "{{modelName}} is thinking...": "{{modelName}} 正在思考...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "需要 {{webUIName}} 后端", "{{webUIName}} Backend Required": "需要 {{webUIName}} 后端",
"a user": "用户", "a user": "用户",
"About": "关于", "About": "关于",
"Account": "账户", "Account": "账户",
"Action": "操作", "Accurate information": "",
"Add a model": "添加模型", "Add a model": "添加模型",
"Add a model tag name": "添加模型标签名称", "Add a model tag name": "添加模型标签名称",
"Add a short description about what this modelfile does": "为这个模型文件添加一段简短的描述", "Add a short description about what this modelfile does": "为这个模型文件添加一段简短的描述",
@ -17,7 +18,8 @@
"Add Docs": "添加文档", "Add Docs": "添加文档",
"Add Files": "添加文件", "Add Files": "添加文件",
"Add message": "添加消息", "Add message": "添加消息",
"add tags": "添加标签", "Add Model": "",
"Add Tags": "添加标签",
"Adjusting these settings will apply changes universally to all users.": "调整这些设置将会对所有用户应用更改。", "Adjusting these settings will apply changes universally to all users.": "调整这些设置将会对所有用户应用更改。",
"admin": "管理员", "admin": "管理员",
"Admin Panel": "管理员面板", "Admin Panel": "管理员面板",
@ -33,9 +35,14 @@
"and": "和", "and": "和",
"API Base URL": "API 基础 URL", "API Base URL": "API 基础 URL",
"API Key": "API 密钥", "API Key": "API 密钥",
"API Key created.": "",
"API keys": "",
"API RPM": "API RPM", "API RPM": "API RPM",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "允许 - 通过输入来激活这个命令", "are allowed - Activate this command by typing": "允许 - 通过输入来激活这个命令",
"Are you sure?": "你确定吗?", "Are you sure?": "你确定吗?",
"Attention to detail": "",
"Audio": "音频", "Audio": "音频",
"Auto-playback response": "自动播放回应", "Auto-playback response": "自动播放回应",
"Auto-send input after 3 sec.": "3秒后自动发送输入", "Auto-send input after 3 sec.": "3秒后自动发送输入",
@ -43,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "需要 AUTOMATIC1111 基础 URL。", "AUTOMATIC1111 Base URL is required.": "需要 AUTOMATIC1111 基础 URL。",
"available!": "可用!", "available!": "可用!",
"Back": "返回", "Back": "返回",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "构建模式", "Builder Mode": "构建模式",
"Cancel": "取消", "Cancel": "取消",
"Categories": "分类", "Categories": "分类",
@ -66,20 +75,27 @@
"Click on the user role button to change a user's role.": "点击用户角色按钮以更改用户的角色。", "Click on the user role button to change a user's role.": "点击用户角色按钮以更改用户的角色。",
"Close": "关闭", "Close": "关闭",
"Collection": "收藏", "Collection": "收藏",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "命令", "Command": "命令",
"Confirm Password": "确认密码", "Confirm Password": "确认密码",
"Connections": "连接", "Connections": "连接",
"Content": "内容", "Content": "内容",
"Context Length": "上下文长度", "Context Length": "上下文长度",
"Continue Response": "",
"Conversation Mode": "对话模式", "Conversation Mode": "对话模式",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "复制最后一个代码块", "Copy last code block": "复制最后一个代码块",
"Copy last response": "复制最后一次回复", "Copy last response": "复制最后一次回复",
"Copy Link": "",
"Copying to clipboard was successful!": "复制到剪贴板成功!", "Copying to clipboard was successful!": "复制到剪贴板成功!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "为以下查询创建一个简洁的、3-5个词的短语作为标题严格遵守3-5个词的限制并避免使用“标题”一词", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "为以下查询创建一个简洁的、3-5个词的短语作为标题严格遵守3-5个词的限制并避免使用“标题”一词",
"Create a modelfile": "创建模型文件", "Create a modelfile": "创建模型文件",
"Create Account": "创建账户", "Create Account": "创建账户",
"Created at": "创建于", "Created at": "创建于",
"Created by": "创建者", "Created At": "",
"Current Model": "当前模型", "Current Model": "当前模型",
"Current Password": "当前密码", "Current Password": "当前密码",
"Custom": "自定义", "Custom": "自定义",
@ -89,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "默认", "Default": "默认",
"Default (Automatic1111)": "默认Automatic1111", "Default (Automatic1111)": "默认Automatic1111",
"Default (SentenceTransformers)": "",
"Default (Web API)": "默认Web API", "Default (Web API)": "默认Web API",
"Default model updated": "默认模型已更新", "Default model updated": "默认模型已更新",
"Default Prompt Suggestions": "默认提示词建议", "Default Prompt Suggestions": "默认提示词建议",
"Default User Role": "默认用户角色", "Default User Role": "默认用户角色",
"delete": "删除", "delete": "删除",
"Delete": "",
"Delete a model": "删除一个模型", "Delete a model": "删除一个模型",
"Delete chat": "删除聊天", "Delete chat": "删除聊天",
"Delete Chat": "",
"Delete Chats": "删除聊天记录", "Delete Chats": "删除聊天记录",
"Delete User": "",
"Deleted {{deleteModelTag}}": "已删除{{deleteModelTag}}", "Deleted {{deleteModelTag}}": "已删除{{deleteModelTag}}",
"Deleted {tagName}": "已删除{tagName}", "Deleted {{tagName}}": "",
"Description": "描述", "Description": "描述",
"Notifications": "桌面通知", "Didn't fully follow instructions": "",
"Disabled": "禁用", "Disabled": "禁用",
"Discover a modelfile": "探索模型文件", "Discover a modelfile": "探索模型文件",
"Discover a prompt": "探索提示词", "Discover a prompt": "探索提示词",
@ -113,18 +133,21 @@
"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?": "没有账户?",
"Download as a File": "下载为文件", "Don't like the style": "",
"Download": "",
"Download Database": "下载数据库", "Download Database": "下载数据库",
"Drop any files here to add to the conversation": "拖动文件到此处以添加到对话中", "Drop any files here to add to the conversation": "拖动文件到此处以添加到对话中",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例如 '30s','10m'。有效的时间单位是's', 'm', 'h'。", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例如 '30s','10m'。有效的时间单位是's', 'm', 'h'。",
"Edit": "",
"Edit Doc": "编辑文档", "Edit Doc": "编辑文档",
"Edit User": "编辑用户", "Edit User": "编辑用户",
"Email": "电子邮件", "Email": "电子邮件",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "启用聊天历史", "Enable Chat History": "启用聊天历史",
"Enable New Sign Ups": "启用新注册", "Enable New Sign Ups": "启用新注册",
"Enabled": "启用", "Enabled": "启用",
"Enter {{role}} message here": "在此处输入 {{role}} 信息", "Enter {{role}} message here": "在此处输入 {{role}} 信息",
"Enter API Key": "输入API密匙",
"Enter Chunk Overlap": "输入块重叠(Chunk Overlap)", "Enter Chunk Overlap": "输入块重叠(Chunk Overlap)",
"Enter Chunk Size": "输入块大小(Chunk Size)", "Enter Chunk Size": "输入块大小(Chunk Size)",
"Enter Image Size (e.g. 512x512)": "输入图片大小(例如 512x512)", "Enter Image Size (e.g. 512x512)": "输入图片大小(例如 512x512)",
@ -135,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "输入模型的 Max Tokens (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "输入模型的 Max Tokens (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "输入模型标签(例如{{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "输入模型标签(例如{{modelTag}})",
"Enter Number of Steps (e.g. 50)": "输入步数(例如50)", "Enter Number of Steps (e.g. 50)": "输入步数(例如50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "输入停止序列", "Enter stop sequence": "输入停止序列",
"Enter Top K": "输入 Top K", "Enter Top K": "输入 Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "输入 URL (例如 http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "输入 URL (例如 http://127.0.0.1:7860/)",
@ -147,20 +171,29 @@
"Export Documents Mapping": "导出文档映射", "Export Documents Mapping": "导出文档映射",
"Export Modelfiles": "导出模型文件", "Export Modelfiles": "导出模型文件",
"Export Prompts": "导出提示词", "Export Prompts": "导出提示词",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "无法读取剪贴板内容", "Failed to read clipboard contents": "无法读取剪贴板内容",
"Feel free to add specific details": "",
"File Mode": "文件模式", "File Mode": "文件模式",
"File not found.": "文件未找到。", "File not found.": "文件未找到。",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "",
"Focus chat input": "聚焦聊天输入", "Focus chat input": "聚焦聊天输入",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "使用这样的方括号格式化你的变量:", "Format your variables using square brackets like this:": "使用这样的方括号格式化你的变量:",
"From (Base Model)": "来自(基础模型)", "From (Base Model)": "来自(基础模型)",
"Fluidly stream large external response chunks": "流畅地传输大型外部响应块", "Fluidly stream large external response chunks": "流畅地传输大型外部响应块",
"Full Screen Mode": "全屏模式", "Full Screen Mode": "全屏模式",
"General": "通用", "General": "通用",
"General Settings": "通用设置", "General Settings": "通用设置",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "你好,{{name}}", "Hello, {{name}}": "你好,{{name}}",
"Hide": "隐藏", "Hide": "隐藏",
"Hide Additional Params": "隐藏额外参数", "Hide Additional Params": "隐藏额外参数",
"How can I help you today?": "我今天能帮你做什么?", "How can I help you today?": "我今天能帮你做什么?",
"Hybrid Search": "",
"Image Generation (Experimental)": "图像生成(实验性)", "Image Generation (Experimental)": "图像生成(实验性)",
"Image Generation Engine": "图像生成引擎", "Image Generation Engine": "图像生成引擎",
"Image Settings": "图像设置", "Image Settings": "图像设置",
@ -178,6 +211,7 @@
"Keep Alive": "保持活动", "Keep Alive": "保持活动",
"Keyboard shortcuts": "键盘快捷键", "Keyboard shortcuts": "键盘快捷键",
"Language": "语言", "Language": "语言",
"Last Active": "",
"Light": "浅色", "Light": "浅色",
"OLED Dark": "暗黑色", "OLED Dark": "暗黑色",
"Listening...": "监听中...", "Listening...": "监听中...",
@ -193,10 +227,12 @@
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "MMMM DD, YYYY": "MMMM DD, YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "模型'{{modelName}}'已成功下载。", "Model '{{modelName}}' has been successfully downloaded.": "模型'{{modelName}}'已成功下载。",
"Model '{{modelTag}}' is already in queue for downloading.": "模型'{{modelTag}}'已在下载队列中。", "Model '{{modelTag}}' is already in queue for downloading.": "模型'{{modelTag}}'已在下载队列中。",
"Model {{modelId}} not found": "未找到模型{{modelId}}", "Model {{modelId}} not found": "未找到模型{{modelId}}",
"Model {{modelName}} already exists.": "模型{{modelName}}已存在。", "Model {{modelName}} already exists.": "模型{{modelName}}已存在。",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Name": "模型名称", "Model Name": "模型名称",
"Model not selected": "未选择模型", "Model not selected": "未选择模型",
"Model Tag Name": "模型标签名称", "Model Tag Name": "模型标签名称",
@ -207,6 +243,7 @@
"Modelfile Content": "模型文件内容", "Modelfile Content": "模型文件内容",
"Modelfiles": "模型文件", "Modelfiles": "模型文件",
"Models": "模型", "Models": "模型",
"More": "",
"My Documents": "我的文档", "My Documents": "我的文档",
"My Modelfiles": "我的模型文件", "My Modelfiles": "我的模型文件",
"My Prompts": "我的提示词", "My Prompts": "我的提示词",
@ -215,10 +252,14 @@
"Name your modelfile": "命名你的模型文件", "Name your modelfile": "命名你的模型文件",
"New Chat": "新聊天", "New Chat": "新聊天",
"New Password": "新密码", "New Password": "新密码",
"Not factually correct": "",
"Not sure what to add?": "不确定要添加什么?", "Not sure what to add?": "不确定要添加什么?",
"Not sure what to write? Switch to": "不确定写什么?切换到", "Not sure what to write? Switch to": "不确定写什么?切换到",
"Notifications": "桌面通知",
"Off": "关闭", "Off": "关闭",
"Okay, Let's Go!": "好的,我们开始吧!", "Okay, Let's Go!": "好的,我们开始吧!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "Ollama 基础 URL", "Ollama Base URL": "Ollama 基础 URL",
"Ollama Version": "Ollama 版本", "Ollama Version": "Ollama 版本",
"On": "开", "On": "开",
@ -231,12 +272,16 @@
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "Open AI (Dall-E)", "Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "打开新聊天", "Open new chat": "打开新聊天",
"OpenAI": "",
"OpenAI API": "OpenAI API", "OpenAI API": "OpenAI API",
"OpenAI API Key": "OpenAI API 密钥", "OpenAI API Config": "",
"OpenAI API Key is required.": "需要 OpenAI API 密钥。", "OpenAI API Key is required.": "需要 OpenAI API 密钥。",
"OpenAI URL/Key required.": "",
"or": "或", "or": "或",
"Other": "",
"Parameters": "参数", "Parameters": "参数",
"Password": "密码", "Password": "密码",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "PDF图像处理(使用OCR)", "PDF Extract Images (OCR)": "PDF图像处理(使用OCR)",
"pending": "待定", "pending": "待定",
"Permission denied when accessing microphone: {{error}}": "访问麦克风时权限被拒绝:{{error}}", "Permission denied when accessing microphone: {{error}}": "访问麦克风时权限被拒绝:{{error}}",
@ -251,12 +296,18 @@
"Query Params": "查询参数", "Query Params": "查询参数",
"RAG Template": "RAG 模板", "RAG Template": "RAG 模板",
"Raw Format": "原始格式", "Raw Format": "原始格式",
"Read Aloud": "",
"Record voice": "录音", "Record voice": "录音",
"Redirecting you to OpenWebUI Community": "正在将您重定向到 OpenWebUI 社区", "Redirecting you to OpenWebUI Community": "正在将您重定向到 OpenWebUI 社区",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "发布说明", "Release Notes": "发布说明",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "重复最后 N 次", "Repeat Last N": "重复最后 N 次",
"Repeat Penalty": "重复惩罚", "Repeat Penalty": "重复惩罚",
"Request Mode": "请求模式", "Request Mode": "请求模式",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "重置向量存储", "Reset Vector Storage": "重置向量存储",
"Response AutoCopy to Clipboard": "自动复制回答到剪贴板", "Response AutoCopy to Clipboard": "自动复制回答到剪贴板",
"Role": "角色", "Role": "角色",
@ -271,6 +322,7 @@
"Scan complete!": "扫描完成!", "Scan complete!": "扫描完成!",
"Scan for documents from {{path}}": "从 {{path}} 扫描文档", "Scan for documents from {{path}}": "从 {{path}} 扫描文档",
"Search": "搜索", "Search": "搜索",
"Search a model": "",
"Search Documents": "搜索文档", "Search Documents": "搜索文档",
"Search Prompts": "搜索提示词", "Search Prompts": "搜索提示词",
"See readme.md for instructions": "查看 readme.md 以获取说明", "See readme.md for instructions": "查看 readme.md 以获取说明",
@ -290,37 +342,46 @@
"Set Voice": "设置声音", "Set Voice": "设置声音",
"Settings": "设置", "Settings": "设置",
"Settings saved successfully!": "设置已保存", "Settings saved successfully!": "设置已保存",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "分享到OpenWebUI社区", "Share to OpenWebUI Community": "分享到OpenWebUI社区",
"short-summary": "简短总结", "short-summary": "简短总结",
"Show": "显示", "Show": "显示",
"Show Additional Params": "显示额外参数", "Show Additional Params": "显示额外参数",
"Show shortcuts": "显示快捷方式", "Show shortcuts": "显示快捷方式",
"Showcased creativity": "",
"sidebar": "侧边栏", "sidebar": "侧边栏",
"Sign in": "登录", "Sign in": "登录",
"Sign Out": "登出", "Sign Out": "登出",
"Sign up": "注册", "Sign up": "注册",
"Signing in": "",
"Speech recognition error: {{error}}": "语音识别错误:{{error}}", "Speech recognition error: {{error}}": "语音识别错误:{{error}}",
"Speech-to-Text Engine": "语音转文字引擎", "Speech-to-Text Engine": "语音转文字引擎",
"SpeechRecognition API is not supported in this browser.": "此浏览器不支持SpeechRecognition API。", "SpeechRecognition API is not supported in this browser.": "此浏览器不支持SpeechRecognition API。",
"Stop Sequence": "停止序列", "Stop Sequence": "停止序列",
"STT Settings": "语音转文字设置", "STT Settings": "语音转文字设置",
"Submit": "提交", "Submit": "提交",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "成功", "Success": "成功",
"Successfully updated.": "成功更新。", "Successfully updated.": "成功更新。",
"Sync All": "同步所有", "Sync All": "同步所有",
"System": "系统", "System": "系统",
"System Prompt": "系统提示", "System Prompt": "系统提示",
"Tags": "标签", "Tags": "标签",
"Tell us more:": "",
"Temperature": "温度", "Temperature": "温度",
"Template": "模板", "Template": "模板",
"Text Completion": "文本完成", "Text Completion": "文本完成",
"Text-to-Speech Engine": "文本转语音引擎", "Text-to-Speech Engine": "文本转语音引擎",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "",
"Theme": "主题", "Theme": "主题",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "这确保了您宝贵的对话被安全保存到后端数据库中。谢谢!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "这确保了您宝贵的对话被安全保存到后端数据库中。谢谢!",
"This setting does not sync across browsers or devices.": "此设置不会在浏览器或设备之间同步。", "This setting does not sync across browsers or devices.": "此设置不会在浏览器或设备之间同步。",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "提示在每次替换后在聊天输入中按Tab键可以连续更新多个变量。", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "提示在每次替换后在聊天输入中按Tab键可以连续更新多个变量。",
"Title": "标题", "Title": "标题",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "标题自动生成", "Title Auto-Generation": "标题自动生成",
"Title Generation Prompt": "自动生成标题的提示词", "Title Generation Prompt": "自动生成标题的提示词",
"to": "到", "to": "到",
@ -336,13 +397,19 @@
"Type Hugging Face Resolve (Download) URL": "输入Hugging Face解析下载URL", "Type Hugging Face Resolve (Download) URL": "输入Hugging Face解析下载URL",
"Uh-oh! There was an issue connecting to {{provider}}.": "哎呀!连接到{{provider}}时出现问题。", "Uh-oh! There was an issue connecting to {{provider}}.": "哎呀!连接到{{provider}}时出现问题。",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "未知文件类型'{{file_type}}',将视为纯文本进行处理", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "未知文件类型'{{file_type}}',将视为纯文本进行处理",
"Update and Copy Link": "",
"Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "更新密码", "Update password": "更新密码",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "上传一个GGUF模型", "Upload a GGUF model": "上传一个GGUF模型",
"Upload files": "上传文件", "Upload files": "上传文件",
"Upload Progress": "上传进度", "Upload Progress": "上传进度",
"URL Mode": "URL模式", "URL Mode": "URL模式",
"Use '#' in the prompt input to load and select your documents.": "在提示输入中使用'#'来加载和选择你的文档。", "Use '#' in the prompt input to load and select your documents.": "在提示输入中使用'#'来加载和选择你的文档。",
"Use Gravatar": "使用Gravatar", "Use Gravatar": "使用Gravatar",
"Use Initials": "",
"user": "用户", "user": "用户",
"User Permissions": "用户权限", "User Permissions": "用户权限",
"Users": "用户", "Users": "用户",
@ -351,7 +418,9 @@
"variable": "变量", "variable": "变量",
"variable to have them replaced with clipboard content.": "变量将被剪贴板内容替换。", "variable to have them replaced with clipboard content.": "变量将被剪贴板内容替换。",
"Version": "版本", "Version": "版本",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "网页", "Web": "网页",
"Webhook URL": "",
"WebUI Add-ons": "WebUI 插件", "WebUI Add-ons": "WebUI 插件",
"WebUI Settings": "WebUI 设置", "WebUI Settings": "WebUI 设置",
"WebUI will make requests to": "WebUI将请求", "WebUI will make requests to": "WebUI将请求",

View file

@ -4,11 +4,12 @@
"(e.g. `sh webui.sh --api`)": "(例如 `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(例如 `sh webui.sh --api`)",
"(latest)": "(最新版)", "(latest)": "(最新版)",
"{{modelName}} is thinking...": "{{modelName}} 正在思考...", "{{modelName}} is thinking...": "{{modelName}} 正在思考...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "需要 {{webUIName}} 後台", "{{webUIName}} Backend Required": "需要 {{webUIName}} 後台",
"a user": "使用者", "a user": "使用者",
"About": "關於", "About": "關於",
"Account": "帳號", "Account": "帳號",
"Action": "動作", "Accurate information": "",
"Add a model": "新增模型", "Add a model": "新增模型",
"Add a model tag name": "新增模型標籤", "Add a model tag name": "新增模型標籤",
"Add a short description about what this modelfile does": "為這個 Modelfile 添加一段簡短的描述", "Add a short description about what this modelfile does": "為這個 Modelfile 添加一段簡短的描述",
@ -17,7 +18,8 @@
"Add Docs": "新增文件", "Add Docs": "新增文件",
"Add Files": "新增檔案", "Add Files": "新增檔案",
"Add message": "新增訊息", "Add message": "新增訊息",
"add tags": "新增標籤", "Add Model": "",
"Add Tags": "新增標籤",
"Adjusting these settings will apply changes universally to all users.": "調整這些設定將對所有使用者進行更改。", "Adjusting these settings will apply changes universally to all users.": "調整這些設定將對所有使用者進行更改。",
"admin": "管理員", "admin": "管理員",
"Admin Panel": "管理員控制台", "Admin Panel": "管理員控制台",
@ -33,10 +35,14 @@
"and": "和", "and": "和",
"API Base URL": "API 基本 URL", "API Base URL": "API 基本 URL",
"API Key": "API 金鑰", "API Key": "API 金鑰",
"API Key created.": "",
"API keys": "",
"API RPM": "API RPM", "API RPM": "API RPM",
"Archive": "",
"Archived Chats": "",
"are allowed - Activate this command by typing": "是允許的 - 透過輸入", "are allowed - Activate this command by typing": "是允許的 - 透過輸入",
"Are you sure?": "你確定嗎?", "Are you sure?": "你確定嗎?",
"assistant": "助手", "Attention to detail": "",
"Audio": "音訊", "Audio": "音訊",
"Auto-playback response": "自動播放回答", "Auto-playback response": "自動播放回答",
"Auto-send input after 3 sec.": "3秒後自動傳送輸入內容", "Auto-send input after 3 sec.": "3秒後自動傳送輸入內容",
@ -44,6 +50,8 @@
"AUTOMATIC1111 Base URL is required.": "需要 AUTOMATIC1111 基本 URL", "AUTOMATIC1111 Base URL is required.": "需要 AUTOMATIC1111 基本 URL",
"available!": "可以使用!", "available!": "可以使用!",
"Back": "返回", "Back": "返回",
"Bad Response": "",
"Being lazy": "",
"Builder Mode": "建構模式", "Builder Mode": "建構模式",
"Cancel": "取消", "Cancel": "取消",
"Categories": "分類", "Categories": "分類",
@ -67,20 +75,27 @@
"Click on the user role button to change a user's role.": "點擊使用者 Role 按鈕以更改使用者的 Role。", "Click on the user role button to change a user's role.": "點擊使用者 Role 按鈕以更改使用者的 Role。",
"Close": "關閉", "Close": "關閉",
"Collection": "收藏", "Collection": "收藏",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "命令", "Command": "命令",
"Confirm Password": "確認密碼", "Confirm Password": "確認密碼",
"Connections": "連線", "Connections": "連線",
"Content": "內容", "Content": "內容",
"Context Length": "上下文長度", "Context Length": "上下文長度",
"Continue Response": "",
"Conversation Mode": "對話模式", "Conversation Mode": "對話模式",
"Copied shared chat URL to clipboard!": "",
"Copy": "",
"Copy last code block": "複製最後一個程式碼區塊", "Copy last code block": "複製最後一個程式碼區塊",
"Copy last response": "複製最後一個回答", "Copy last response": "複製最後一個回答",
"Copy Link": "",
"Copying to clipboard was successful!": "成功複製到剪貼簿!", "Copying to clipboard was successful!": "成功複製到剪貼簿!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "為以下的查詢建立一個簡潔、3-5 個詞的短語作為標題,嚴格遵守 3-5 個詞的限制,避免使用「標題」這個詞:", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "為以下的查詢建立一個簡潔、3-5 個詞的短語作為標題,嚴格遵守 3-5 個詞的限制,避免使用「標題」這個詞:",
"Create a modelfile": "建立 Modelfile", "Create a modelfile": "建立 Modelfile",
"Create Account": "建立帳號", "Create Account": "建立帳號",
"Created at": "建立於", "Created at": "建立於",
"Created by": "建立者", "Created At": "",
"Current Model": "目前模型", "Current Model": "目前模型",
"Current Password": "目前密碼", "Current Password": "目前密碼",
"Custom": "自訂", "Custom": "自訂",
@ -90,18 +105,22 @@
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"Default": "預設", "Default": "預設",
"Default (Automatic1111)": "預設Automatic1111", "Default (Automatic1111)": "預設Automatic1111",
"Default (SentenceTransformers)": "",
"Default (Web API)": "預設Web API", "Default (Web API)": "預設Web API",
"Default model updated": "預設模型已更新", "Default model updated": "預設模型已更新",
"Default Prompt Suggestions": "預設提示詞建議", "Default Prompt Suggestions": "預設提示詞建議",
"Default User Role": "預設用戶 Role", "Default User Role": "預設用戶 Role",
"delete": "刪除", "delete": "刪除",
"Delete": "",
"Delete a model": "刪除一個模型", "Delete a model": "刪除一個模型",
"Delete chat": "刪除聊天紀錄", "Delete chat": "刪除聊天紀錄",
"Delete Chat": "",
"Delete Chats": "刪除聊天紀錄", "Delete Chats": "刪除聊天紀錄",
"Delete User": "",
"Deleted {{deleteModelTag}}": "已刪除 {{deleteModelTag}}", "Deleted {{deleteModelTag}}": "已刪除 {{deleteModelTag}}",
"Deleted {tagName}": "已刪除 {tagName}", "Deleted {{tagName}}": "",
"Description": "描述", "Description": "描述",
"Notifications": "桌面通知", "Didn't fully follow instructions": "",
"Disabled": "已停用", "Disabled": "已停用",
"Discover a modelfile": "發現新 Modelfile", "Discover a modelfile": "發現新 Modelfile",
"Discover a prompt": "發現新提示詞", "Discover a prompt": "發現新提示詞",
@ -114,18 +133,21 @@
"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?": "還沒有註冊帳號?",
"Download as a File": "下載為文件", "Don't like the style": "",
"Download": "",
"Download Database": "下載資料庫", "Download Database": "下載資料庫",
"Drop any files here to add to the conversation": "拖拽文件到此處以新增至對話", "Drop any files here to add to the conversation": "拖拽文件到此處以新增至對話",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例如 '30s', '10m'。有效的時間單位為 's', 'm', 'h'。", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例如 '30s', '10m'。有效的時間單位為 's', 'm', 'h'。",
"Edit": "",
"Edit Doc": "編輯文件", "Edit Doc": "編輯文件",
"Edit User": "編輯使用者", "Edit User": "編輯使用者",
"Email": "電子郵件", "Email": "電子郵件",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "啟用聊天歷史", "Enable Chat History": "啟用聊天歷史",
"Enable New Sign Ups": "允許註冊新帳號", "Enable New Sign Ups": "允許註冊新帳號",
"Enabled": "已啟用", "Enabled": "已啟用",
"Enter {{role}} message here": "在這裡輸入 {{role}} 訊息", "Enter {{role}} message here": "在這裡輸入 {{role}} 訊息",
"Enter API Key": "輸入 API 金鑰",
"Enter Chunk Overlap": "輸入 Chunk Overlap", "Enter Chunk Overlap": "輸入 Chunk Overlap",
"Enter Chunk Size": "輸入 Chunk 大小", "Enter Chunk Size": "輸入 Chunk 大小",
"Enter Image Size (e.g. 512x512)": "輸入圖片大小(例如 512x512", "Enter Image Size (e.g. 512x512)": "輸入圖片大小(例如 512x512",
@ -136,6 +158,7 @@
"Enter Max Tokens (litellm_params.max_tokens)": "輸入最大 Token 數litellm_params.max_tokens", "Enter Max Tokens (litellm_params.max_tokens)": "輸入最大 Token 數litellm_params.max_tokens",
"Enter model tag (e.g. {{modelTag}})": "輸入模型標籤(例如 {{modelTag}}", "Enter model tag (e.g. {{modelTag}})": "輸入模型標籤(例如 {{modelTag}}",
"Enter Number of Steps (e.g. 50)": "輸入步數(例如 50", "Enter Number of Steps (e.g. 50)": "輸入步數(例如 50",
"Enter Relevance Threshold": "",
"Enter stop sequence": "輸入停止序列", "Enter stop sequence": "輸入停止序列",
"Enter Top K": "輸入 Top K", "Enter Top K": "輸入 Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "輸入 URL例如 http://127.0.0.1:7860/", "Enter URL (e.g. http://127.0.0.1:7860/)": "輸入 URL例如 http://127.0.0.1:7860/",
@ -148,20 +171,29 @@
"Export Documents Mapping": "匯出文件映射", "Export Documents Mapping": "匯出文件映射",
"Export Modelfiles": "匯出 Modelfiles", "Export Modelfiles": "匯出 Modelfiles",
"Export Prompts": "匯出提示詞", "Export Prompts": "匯出提示詞",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "無法讀取剪貼簿內容", "Failed to read clipboard contents": "無法讀取剪貼簿內容",
"Feel free to add specific details": "",
"File Mode": "檔案模式", "File Mode": "檔案模式",
"File not found.": "找不到檔案。", "File not found.": "找不到檔案。",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "",
"Focus chat input": "聚焦聊天輸入框", "Focus chat input": "聚焦聊天輸入框",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "像這樣使用方括號來格式化你的變數:", "Format your variables using square brackets like this:": "像這樣使用方括號來格式化你的變數:",
"Fluidly stream large external response chunks": "流暢地傳輸大型外部響應區塊", "Fluidly stream large external response chunks": "流暢地傳輸大型外部響應區塊",
"From (Base Model)": "來自(基礎模型)", "From (Base Model)": "來自(基礎模型)",
"Full Screen Mode": "全螢幕模式", "Full Screen Mode": "全螢幕模式",
"General": "常用", "General": "常用",
"General Settings": "常用設定", "General Settings": "常用設定",
"Generation Info": "",
"Good Response": "",
"has no conversations.": "",
"Hello, {{name}}": "你好, {{name}}", "Hello, {{name}}": "你好, {{name}}",
"Hide": "隱藏", "Hide": "隱藏",
"Hide Additional Params": "隱藏額外參數", "Hide Additional Params": "隱藏額外參數",
"How can I help you today?": "今天能為你做什麼?", "How can I help you today?": "今天能為你做什麼?",
"Hybrid Search": "",
"Image Generation (Experimental)": "圖像生成(實驗功能)", "Image Generation (Experimental)": "圖像生成(實驗功能)",
"Image Generation Engine": "圖像生成引擎", "Image Generation Engine": "圖像生成引擎",
"Image Settings": "圖片設定", "Image Settings": "圖片設定",
@ -179,6 +211,7 @@
"Keep Alive": "保持活躍", "Keep Alive": "保持活躍",
"Keyboard shortcuts": "鍵盤快速鍵", "Keyboard shortcuts": "鍵盤快速鍵",
"Language": "語言", "Language": "語言",
"Last Active": "",
"Light": "亮色", "Light": "亮色",
"OLED Dark": "暗黑色", "OLED Dark": "暗黑色",
"Listening...": "正在聽取...", "Listening...": "正在聽取...",
@ -194,10 +227,12 @@
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "MMMM DD, YYYY": "MMMM DD, YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' 模型已成功下載。", "Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' 模型已成功下載。",
"Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' 模型已經在下載佇列中。", "Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' 模型已經在下載佇列中。",
"Model {{modelId}} not found": "找不到 {{modelId}} 模型", "Model {{modelId}} not found": "找不到 {{modelId}} 模型",
"Model {{modelName}} already exists.": "模型 {{modelName}} 已存在。", "Model {{modelName}} already exists.": "模型 {{modelName}} 已存在。",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Name": "模型名稱", "Model Name": "模型名稱",
"Model not selected": "未選擇模型", "Model not selected": "未選擇模型",
"Model Tag Name": "模型標籤", "Model Tag Name": "模型標籤",
@ -208,6 +243,7 @@
"Modelfile Content": "Modelfile 內容", "Modelfile Content": "Modelfile 內容",
"Modelfiles": "Modelfiles", "Modelfiles": "Modelfiles",
"Models": "模型", "Models": "模型",
"More": "",
"My Documents": "我的文件", "My Documents": "我的文件",
"My Modelfiles": "我的 Modelfiles", "My Modelfiles": "我的 Modelfiles",
"My Prompts": "我的提示詞", "My Prompts": "我的提示詞",
@ -216,10 +252,14 @@
"Name your modelfile": "命名你的 Modelfile", "Name your modelfile": "命名你的 Modelfile",
"New Chat": "新增聊天", "New Chat": "新增聊天",
"New Password": "新密碼", "New Password": "新密碼",
"Not factually correct": "",
"Not sure what to add?": "不確定要新增什麼嗎?", "Not sure what to add?": "不確定要新增什麼嗎?",
"Not sure what to write? Switch to": "不確定要寫什麼?切換到", "Not sure what to write? Switch to": "不確定要寫什麼?切換到",
"Notifications": "桌面通知",
"Off": "關閉", "Off": "關閉",
"Okay, Let's Go!": "好的,啟動吧!", "Okay, Let's Go!": "好的,啟動吧!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "Ollama 基本 URL", "Ollama Base URL": "Ollama 基本 URL",
"Ollama Version": "Ollama 版本", "Ollama Version": "Ollama 版本",
"On": "開啟", "On": "開啟",
@ -232,15 +272,20 @@
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "Open AI (Dall-E)", "Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "開啟新聊天", "Open new chat": "開啟新聊天",
"OpenAI": "",
"OpenAI API": "OpenAI API", "OpenAI API": "OpenAI API",
"OpenAI API Key": "OpenAI API 金鑰", "OpenAI API Config": "",
"OpenAI API Key is required.": "需要 OpenAI API 金鑰。", "OpenAI API Key is required.": "需要 OpenAI API 金鑰。",
"OpenAI URL/Key required.": "",
"or": "或", "or": "或",
"Other": "",
"Parameters": "參數", "Parameters": "參數",
"Password": "密碼", "Password": "密碼",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "PDF 圖像擷取OCR 光學文字辨識)", "PDF Extract Images (OCR)": "PDF 圖像擷取OCR 光學文字辨識)",
"pending": "待審查", "pending": "待審查",
"Permission denied when accessing microphone: {{error}}": "存取麥克風時被拒絕權限: {{error}}", "Permission denied when accessing microphone: {{error}}": "存取麥克風時被拒絕權限: {{error}}",
"Plain text (.txt)": "",
"Playground": "AI 對話遊樂場", "Playground": "AI 對話遊樂場",
"Archived Chats": "聊天記錄存檔", "Archived Chats": "聊天記錄存檔",
"Profile": "個人資料", "Profile": "個人資料",
@ -252,12 +297,18 @@
"Query Params": "查詢參數", "Query Params": "查詢參數",
"RAG Template": "RAG 範例", "RAG Template": "RAG 範例",
"Raw Format": "原始格式", "Raw Format": "原始格式",
"Read Aloud": "",
"Record voice": "錄音", "Record voice": "錄音",
"Redirecting you to OpenWebUI Community": "將你重新導向到 OpenWebUI 社群", "Redirecting you to OpenWebUI Community": "將你重新導向到 OpenWebUI 社群",
"Refused when it shouldn't have": "",
"Regenerate": "",
"Release Notes": "發布說明", "Release Notes": "發布說明",
"Relevance Threshold": "",
"Remove": "",
"Repeat Last N": "重複最後 N 次", "Repeat Last N": "重複最後 N 次",
"Repeat Penalty": "重複懲罰", "Repeat Penalty": "重複懲罰",
"Request Mode": "請求模式", "Request Mode": "請求模式",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "重置向量儲存空間", "Reset Vector Storage": "重置向量儲存空間",
"Response AutoCopy to Clipboard": "自動複製回答到剪貼簿", "Response AutoCopy to Clipboard": "自動複製回答到剪貼簿",
"Role": "Role", "Role": "Role",
@ -272,6 +323,7 @@
"Scan complete!": "掃描完成!", "Scan complete!": "掃描完成!",
"Scan for documents from {{path}}": "從 {{path}} 掃描文件", "Scan for documents from {{path}}": "從 {{path}} 掃描文件",
"Search": "搜尋", "Search": "搜尋",
"Search a model": "",
"Search Documents": "搜尋文件", "Search Documents": "搜尋文件",
"Search Prompts": "搜尋提示詞", "Search Prompts": "搜尋提示詞",
"See readme.md for instructions": "查看 readme.md 獲取指南", "See readme.md for instructions": "查看 readme.md 獲取指南",
@ -291,37 +343,46 @@
"Set Voice": "設定語音", "Set Voice": "設定語音",
"Settings": "設定", "Settings": "設定",
"Settings saved successfully!": "成功儲存設定", "Settings saved successfully!": "成功儲存設定",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "分享到 OpenWebUI 社群", "Share to OpenWebUI Community": "分享到 OpenWebUI 社群",
"short-summary": "簡短摘要", "short-summary": "簡短摘要",
"Show": "顯示", "Show": "顯示",
"Show Additional Params": "顯示額外參數", "Show Additional Params": "顯示額外參數",
"Show shortcuts": "顯示快速鍵", "Show shortcuts": "顯示快速鍵",
"Showcased creativity": "",
"sidebar": "側邊欄", "sidebar": "側邊欄",
"Sign in": "登入", "Sign in": "登入",
"Sign Out": "登出", "Sign Out": "登出",
"Sign up": "註冊", "Sign up": "註冊",
"Signing in": "",
"Speech recognition error: {{error}}": "語音識別錯誤: {{error}}", "Speech recognition error: {{error}}": "語音識別錯誤: {{error}}",
"Speech-to-Text Engine": "語音轉文字引擎", "Speech-to-Text Engine": "語音轉文字引擎",
"SpeechRecognition API is not supported in this browser.": "此瀏覽器不支持 SpeechRecognition API。", "SpeechRecognition API is not supported in this browser.": "此瀏覽器不支持 SpeechRecognition API。",
"Stop Sequence": "停止序列", "Stop Sequence": "停止序列",
"STT Settings": "語音轉文字設定", "STT Settings": "語音轉文字設定",
"Submit": "提交", "Submit": "提交",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "成功", "Success": "成功",
"Successfully updated.": "更新成功。", "Successfully updated.": "更新成功。",
"Sync All": "全部同步", "Sync All": "全部同步",
"System": "系統", "System": "系統",
"System Prompt": "系統提示詞", "System Prompt": "系統提示詞",
"Tags": "標籤", "Tags": "標籤",
"Tell us more:": "",
"Temperature": "溫度", "Temperature": "溫度",
"Template": "模板", "Template": "模板",
"Text Completion": "文本補全Text Completion", "Text Completion": "文本補全Text Completion",
"Text-to-Speech Engine": "文字轉語音引擎", "Text-to-Speech Engine": "文字轉語音引擎",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "",
"Theme": "主題", "Theme": "主題",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "這確保你寶貴的對話安全地儲存到你的後台資料庫。謝謝!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "這確保你寶貴的對話安全地儲存到你的後台資料庫。謝謝!",
"This setting does not sync across browsers or devices.": "此設定不會在瀏覽器或裝置間同步。", "This setting does not sync across browsers or devices.": "此設定不會在瀏覽器或裝置間同步。",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "提示:透過在每次替換後在聊天輸入框中按 Tab 鍵連續更新多個變數。", "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "提示:透過在每次替換後在聊天輸入框中按 Tab 鍵連續更新多個變數。",
"Title": "標題", "Title": "標題",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "自動生成標題", "Title Auto-Generation": "自動生成標題",
"Title Generation Prompt": "自動生成標題的提示詞", "Title Generation Prompt": "自動生成標題的提示詞",
"to": "到", "to": "到",
@ -337,13 +398,19 @@
"Type Hugging Face Resolve (Download) URL": "輸入 Hugging Face 解析後的下載URL", "Type Hugging Face Resolve (Download) URL": "輸入 Hugging Face 解析後的下載URL",
"Uh-oh! There was an issue connecting to {{provider}}.": "哎呀!連線到 {{provider}} 時出現問題。", "Uh-oh! There was an issue connecting to {{provider}}.": "哎呀!連線到 {{provider}} 時出現問題。",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "未知的文件類型 '{{file_type}}',但接受並視為純文字", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "未知的文件類型 '{{file_type}}',但接受並視為純文字",
"Update and Copy Link": "",
"Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "更新密碼", "Update password": "更新密碼",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "上傳一個 GGUF 模型", "Upload a GGUF model": "上傳一個 GGUF 模型",
"Upload files": "上傳文件", "Upload files": "上傳文件",
"Upload Progress": "上傳進度", "Upload Progress": "上傳進度",
"URL Mode": "URL 模式", "URL Mode": "URL 模式",
"Use '#' in the prompt input to load and select your documents.": "在輸入框中輸入 '#' 以載入並選擇你的文件。", "Use '#' in the prompt input to load and select your documents.": "在輸入框中輸入 '#' 以載入並選擇你的文件。",
"Use Gravatar": "使用 Gravatar", "Use Gravatar": "使用 Gravatar",
"Use Initials": "",
"user": "使用者", "user": "使用者",
"User Permissions": "使用者權限", "User Permissions": "使用者權限",
"Users": "使用者", "Users": "使用者",
@ -352,7 +419,9 @@
"variable": "變數", "variable": "變數",
"variable to have them replaced with clipboard content.": "變數將替換為剪貼簿內容。", "variable to have them replaced with clipboard content.": "變數將替換為剪貼簿內容。",
"Version": "版本", "Version": "版本",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "網頁", "Web": "網頁",
"Webhook URL": "",
"WebUI Add-ons": "WebUI 擴充套件", "WebUI Add-ons": "WebUI 擴充套件",
"WebUI Settings": "WebUI 設定", "WebUI Settings": "WebUI 設定",
"WebUI will make requests to": "WebUI 將會存取", "WebUI will make requests to": "WebUI 將會存取",

View file

@ -247,7 +247,7 @@
</button> </button>
</Tooltip> </Tooltip>
<Tooltip content="Edit User"> <Tooltip content={$i18n.t('Edit User')}>
<button <button
class="self-center w-fit text-sm px-2 py-2 hover:bg-black/5 dark:hover:bg-white/5 rounded-xl" class="self-center w-fit text-sm px-2 py-2 hover:bg-black/5 dark:hover:bg-white/5 rounded-xl"
on:click={async () => { on:click={async () => {
@ -272,7 +272,7 @@
</button> </button>
</Tooltip> </Tooltip>
<Tooltip content="Delete User"> <Tooltip content={$i18n.t('Delete User')}>
<button <button
class="self-center w-fit text-sm px-2 py-2 hover:bg-black/5 dark:hover:bg-white/5 rounded-xl" class="self-center w-fit text-sm px-2 py-2 hover:bg-black/5 dark:hover:bg-white/5 rounded-xl"
on:click={async () => { on:click={async () => {

View file

@ -345,7 +345,7 @@
// await chats.set(await getChatListByTagName(localStorage.token, tag.name)); // await chats.set(await getChatListByTagName(localStorage.token, tag.name));
}} }}
> >
<div class=" text-xs font-medium self-center line-clamp-1">{$i18n.t('add tags')}</div> <div class=" text-xs font-medium self-center line-clamp-1">add tags</div>
</button> --> </button> -->
<button <button

View file

@ -145,7 +145,7 @@
</div> </div>
<div class=" mt-1 text-gray-400"> <div class=" mt-1 text-gray-400">
{dayjs(chat.chat.timestamp).format('MMMM D, YYYY')} {dayjs(chat.chat.timestamp).format($i18n.t('MMMM DD, YYYY'))}
</div> </div>
</div> </div>