Unverified Commit 0235b0f6 authored by Timothy Jaeryang Baek's avatar Timothy Jaeryang Baek Committed by GitHub
Browse files

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

German locale
parents ffc91ba6 a128dfa0
...@@ -70,7 +70,7 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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>
......
...@@ -494,7 +494,7 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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
......
...@@ -266,7 +266,7 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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={() => {
......
...@@ -57,7 +57,7 @@ ...@@ -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}
......
...@@ -21,7 +21,7 @@ ...@@ -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' }];
......
<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 @@ ...@@ -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);
}} }}
......
...@@ -42,7 +42,7 @@ ...@@ -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 @@ ...@@ -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"
......
<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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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>
......
...@@ -610,7 +610,7 @@ ...@@ -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"
......
<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 @@ ...@@ -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 @@ ...@@ -27,7 +30,7 @@
} }
}} }}
> >
<Tooltip content="More"> <Tooltip content={$i18n.t('More')}>
<slot /> <slot />
</Tooltip> </Tooltip>
......
...@@ -4,11 +4,12 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 ще направи заявки към",
......
This diff is collapsed.
...@@ -4,11 +4,12 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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",
......
This diff is collapsed.
{ {
"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": "",
"What’s 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.": ""
} }
...@@ -4,11 +4,12 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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": "",
......
...@@ -4,11 +4,12 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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",
......
...@@ -4,11 +4,12 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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ها را ارسال خواهد کرد به",
......
...@@ -4,11 +4,12 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 à",
......
...@@ -4,11 +4,12 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 @@ ...@@ -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 à",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment