Commit 142f82ba authored by Jannik Streidl's avatar Jannik Streidl
Browse files

Added some i18n keys & updated german locale

parent c9589e21
...@@ -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}
...@@ -80,7 +80,7 @@ ...@@ -80,7 +80,7 @@
</div> </div>
{:else} {:else}
<div class=" self-center disabled:text-gray-600 disabled:hover:text-gray-600 mr-2"> <div class=" self-center disabled:text-gray-600 disabled:hover:text-gray-600 mr-2">
<Tooltip content="Remove Model"> <Tooltip content={$i18n.t('Remove Model')}>
<button <button
{disabled} {disabled}
on:click={() => { on:click={() => {
......
...@@ -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' }];
...@@ -291,7 +291,7 @@ ...@@ -291,7 +291,7 @@
{:else} {:else}
<div> <div>
<div class="block px-3 py-2 text-sm text-gray-700 dark:text-gray-100"> <div class="block px-3 py-2 text-sm text-gray-700 dark:text-gray-100">
No results found {$i18n.t('No results found')}
</div> </div>
</div> </div>
{/each} {/each}
...@@ -303,7 +303,8 @@ ...@@ -303,7 +303,8 @@
pullModelHandler(); pullModelHandler();
}} }}
> >
Pull "{searchValue}" from Ollama.com {$i18n.t(`Pull "{{searchValue}}" from Ollama.com`, { searchValue: searchValue })}
</button> </button>
{/if} {/if}
......
...@@ -447,7 +447,7 @@ ...@@ -447,7 +447,7 @@
{/if} {/if}
</button> </button>
<Tooltip content="Create new key"> <Tooltip content={$i18n.t('Create new key')}>
<button <button
class=" px-1.5 py-1 dark:hover:bg-gray-850transition rounded-lg" class=" px-1.5 py-1 dark:hover:bg-gray-850transition rounded-lg"
on:click={() => { on:click={() => {
...@@ -479,7 +479,7 @@ ...@@ -479,7 +479,7 @@
> >
<Plus strokeWidth="2" className=" size-3.5" /> <Plus strokeWidth="2" className=" size-3.5" />
Create new secret key</button {$i18n.t('Create new secret key')}</button
> >
{/if} {/if}
</div> </div>
......
...@@ -164,7 +164,7 @@ ...@@ -164,7 +164,7 @@
<div class="flex gap-1.5"> <div class="flex gap-1.5">
<input <input
class="w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none" class="w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
placeholder="Enter URL (e.g. http://localhost:11434)" placeholder={$i18n.t('Enter URL (e.g. http://localhost:11434)')}
bind:value={url} bind:value={url}
/> />
......
...@@ -98,9 +98,9 @@ ...@@ -98,9 +98,9 @@
<div class=" text-sm dark:text-gray-300 mb-1"> <div class=" text-sm dark:text-gray-300 mb-1">
{#if chat.share_id} {#if chat.share_id}
<a href="/s/{chat.share_id}" target="_blank" <a href="/s/{chat.share_id}" target="_blank"
>You have shared this chat <span class=" underline">before</span>.</a >{$i18n.t("You have shared this chat")} <span class=" underline">{$i18n.t("before")}</span>.</a
> >
Click here to {$i18n.t("Click here to")}
<button <button
class="underline" class="underline"
on:click={async () => { on:click={async () => {
...@@ -109,11 +109,10 @@ ...@@ -109,11 +109,10 @@
if (res) { if (res) {
chat = await getChatById(localStorage.token, chatId); chat = await getChatById(localStorage.token, chatId);
} }
}}>delete this link</button }}>{$i18n.t("delete this link")} </button
> and create a new shared link. > {$i18n.t("and create a new shared link.")}
{:else} {:else}
Messages you send after creating your link won't be shared. Users with the URL will be {$i18n.t("Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.")}
able to view the shared chat.
{/if} {/if}
</div> </div>
......
...@@ -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>
......
...@@ -399,7 +399,7 @@ ...@@ -399,7 +399,7 @@
await chats.set(await getChatList(localStorage.token)); await chats.set(await getChatList(localStorage.token));
}} }}
> >
all {$i18n.t('all')}
</button> </button>
{#each $tags as tag} {#each $tags as tag}
<button <button
...@@ -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"
......
...@@ -162,7 +162,7 @@ ...@@ -162,7 +162,7 @@
{/each} --> {/each} -->
</div> </div>
{:else} {:else}
<div class="text-left text-sm w-full mb-8">You have no archived conversations.</div> <div class="text-left text-sm w-full mb-8">{$i18n.t('You have no archived conversations.')}</div>
{/if} {/if}
</div> </div>
</div> </div>
......
<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>
...@@ -46,7 +49,7 @@ ...@@ -46,7 +49,7 @@
}} }}
> >
<Share /> <Share />
<div class="flex items-center">Share</div> <div class="flex items-center">{$i18n.t('Share')}</div>
</DropdownMenu.Item> </DropdownMenu.Item>
<DropdownMenu.Item <DropdownMenu.Item
...@@ -56,7 +59,7 @@ ...@@ -56,7 +59,7 @@
}} }}
> >
<Pencil strokeWidth="2" /> <Pencil strokeWidth="2" />
<div class="flex items-center">Rename</div> <div class="flex items-center">{$i18n.t('Rename')}</div>
</DropdownMenu.Item> </DropdownMenu.Item>
<DropdownMenu.Item <DropdownMenu.Item
...@@ -66,7 +69,7 @@ ...@@ -66,7 +69,7 @@
}} }}
> >
<GarbageBin strokeWidth="2" /> <GarbageBin strokeWidth="2" />
<div class="flex items-center">Delete</div> <div class="flex items-center">{$i18n.t('Delete')}</div>
</DropdownMenu.Item> </DropdownMenu.Item>
<hr class="border-gray-100 dark:border-gray-800 mt-2.5 mb-1.5" /> <hr class="border-gray-100 dark:border-gray-800 mt-2.5 mb-1.5" />
......
This diff is collapsed.
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,6 +18,7 @@ ...@@ -17,6 +18,7 @@
"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 Model": "",
"add tags": "afegeix etiquetes", "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",
...@@ -31,11 +33,17 @@ ...@@ -31,11 +33,17 @@
"Already have an account?": "Ja tens un compte?", "Already have an account?": "Ja tens un compte?",
"an assistant": "un assistent", "an assistant": "un assistent",
"and": "i", "and": "i",
"and create a new shared link.": "",
"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 +51,8 @@ ...@@ -43,6 +51,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",
"before": "",
"Being lazy": "",
"Builder Mode": "Mode Constructor", "Builder Mode": "Mode Constructor",
"Cancel": "Cancel·la", "Cancel": "Cancel·la",
"Categories": "Categories", "Categories": "Categories",
...@@ -59,6 +69,7 @@ ...@@ -59,6 +69,7 @@
"Chunk Params": "Paràmetres de Blocs", "Chunk Params": "Paràmetres de Blocs",
"Chunk Size": "Mida del Bloc", "Chunk Size": "Mida del Bloc",
"Click here for help.": "Fes clic aquí per ajuda.", "Click here for help.": "Fes clic aquí per ajuda.",
"Click here to": "",
"Click here to check other modelfiles.": "Fes clic aquí per comprovar altres fitxers de model.", "Click here to check other modelfiles.": "Fes clic aquí per comprovar altres fitxers de model.",
"Click here to select": "Fes clic aquí per seleccionar", "Click here to select": "Fes clic aquí per seleccionar",
"Click here to select documents.": "Fes clic aquí per seleccionar documents.", "Click here to select documents.": "Fes clic aquí per seleccionar documents.",
...@@ -66,41 +77,53 @@ ...@@ -66,41 +77,53 @@
"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",
"Conversation Mode": "Mode de Conversa", "Conversation Mode": "Mode de Conversa",
"Copied shared chat URL to clipboard!": "",
"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",
"Create new key": "",
"Create new secret key": "",
"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",
"Customize Ollama models for a specific purpose": "Personalitza els models Ollama per a un propòsit específic", "Customize Ollama models for a specific purpose": "Personalitza els models Ollama per a un propòsit específic",
"Dark": "Fosc", "Dark": "Fosc",
"Dashboard": "",
"Database": "Base de Dades", "Database": "Base de Dades",
"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 Chats": "Esborra Xats", "Delete Chats": "Esborra Xats",
"delete this link": "",
"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 +136,20 @@ ...@@ -113,18 +136,20 @@
"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 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,9 +160,11 @@ ...@@ -135,9 +160,11 @@
"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/)",
"Enter URL (e.g. http://localhost:11434)": "",
"Enter Your Email": "Introdueix el Teu Correu Electrònic", "Enter Your Email": "Introdueix el Teu Correu Electrònic",
"Enter Your Full Name": "Introdueix el Teu Nom Complet", "Enter Your Full Name": "Introdueix el Teu Nom Complet",
"Enter Your Password": "Introdueix la Teva Contrasenya", "Enter Your Password": "Introdueix la Teva Contrasenya",
...@@ -147,10 +174,15 @@ ...@@ -147,10 +174,15 @@
"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)",
"Full Screen Mode": "Mode de Pantalla Completa", "Full Screen Mode": "Mode de Pantalla Completa",
...@@ -160,6 +192,7 @@ ...@@ -160,6 +192,7 @@
"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",
...@@ -177,6 +210,7 @@ ...@@ -177,6 +210,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",
"Listening...": "Escoltant...", "Listening...": "Escoltant...",
"LLMs can make mistakes. Verify important information.": "Els LLMs poden cometre errors. Verifica la informació important.", "LLMs can make mistakes. Verify important information.": "Els LLMs poden cometre errors. Verifica la informació important.",
...@@ -187,14 +221,17 @@ ...@@ -187,14 +221,17 @@
"Manage Ollama Models": "Gestiona Models Ollama", "Manage Ollama Models": "Gestiona Models Ollama",
"Max Tokens": "Màxim de Tokens", "Max Tokens": "Màxim de Tokens",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Es poden descarregar un màxim de 3 models simultàniament. Si us plau, prova-ho més tard.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Es poden descarregar un màxim de 3 models simultàniament. Si us plau, prova-ho més tard.",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"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",
...@@ -205,6 +242,7 @@ ...@@ -205,6 +242,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",
...@@ -213,10 +251,15 @@ ...@@ -213,10 +251,15 @@
"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",
"No results found": "",
"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",
...@@ -229,20 +272,29 @@ ...@@ -229,20 +272,29 @@
"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": "",
"Overview": "",
"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",
"Profile": "Perfil", "Positive attitude": "",
"Profile Image": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
"Prompt Content": "Contingut del Prompt", "Prompt Content": "Contingut del Prompt",
"Prompt suggestions": "Suggeriments de Prompt", "Prompt suggestions": "Suggeriments de Prompt",
"Prompts": "Prompts", "Prompts": "Prompts",
"Pull \"{{searchValue}}\" from Ollama.com": "",
"Pull a model from Ollama.com": "Treu un model d'Ollama.com", "Pull a model from Ollama.com": "Treu un model d'Ollama.com",
"Pull Progress": "Progrés de Tracció", "Pull Progress": "Progrés de Tracció",
"Query Params": "Paràmetres de Consulta", "Query Params": "Paràmetres de Consulta",
...@@ -250,10 +302,16 @@ ...@@ -250,10 +302,16 @@
"Raw Format": "Format Brut", "Raw Format": "Format Brut",
"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": "",
"Release Notes": "Notes de la Versió", "Release Notes": "Notes de la Versió",
"Relevance Threshold": "",
"Remove": "",
"Remove Model": "",
"Rename": "",
"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",
...@@ -268,6 +326,7 @@ ...@@ -268,6 +326,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",
...@@ -287,37 +346,46 @@ ...@@ -287,37 +346,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",
...@@ -333,13 +401,19 @@ ...@@ -333,13 +401,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",
...@@ -348,7 +422,9 @@ ...@@ -348,7 +422,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",
...@@ -358,6 +434,8 @@ ...@@ -358,6 +434,8 @@
"Write a prompt suggestion (e.g. Who are you?)": "Escriu una suggerència de prompt (p. ex. Qui ets tu?)", "Write a prompt suggestion (e.g. Who are you?)": "Escriu una suggerència de prompt (p. ex. Qui ets tu?)",
"Write a summary in 50 words that summarizes [topic or keyword].": "Escriu un resum en 50 paraules que resumeixi [tema o paraula clau].", "Write a summary in 50 words that summarizes [topic or keyword].": "Escriu un resum en 50 paraules que resumeixi [tema o paraula clau].",
"You": "Tu", "You": "Tu",
"You have no archived conversations.": "",
"You have shared this chat": "",
"You're a helpful assistant.": "Ets un assistent útil.", "You're a helpful assistant.": "Ets un assistent útil.",
"You're now logged in.": "Ara estàs connectat." "You're now logged in.": "Ara estàs connectat."
} }
...@@ -4,19 +4,21 @@ ...@@ -4,19 +4,21 @@
"(e.g. `sh webui.sh --api`)": "(z.B. `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "(z.B. `sh webui.sh --api`)",
"(latest)": "(neueste)", "(latest)": "(neueste)",
"{{modelName}} is thinking...": "{{modelName}} denkt nach...", "{{modelName}} is thinking...": "{{modelName}} denkt nach...",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}}-Backend erforderlich", "{{webUIName}} Backend Required": "{{webUIName}}-Backend erforderlich",
"a user": "", "a user": "",
"About": "Über", "About": "Über",
"Account": "Account", "Account": "Account",
"Action": "Aktion", "Accurate information": "",
"Add a model": "Füge ein Modell hinzu", "Add a model": "Füge ein Modell hinzu",
"Add a model tag name": "Benenne dein Modell-Tag", "Add a model tag name": "Benenne dein Modell-Tag",
"Add a short description about what this modelfile does": "Füge eine kurze Beschreibung hinzu, was dieses Modelfile kann", "Add a short description about what this modelfile does": "Füge eine kurze Beschreibung hinzu, was dieses Modelfile kann",
"Add a short title for this prompt": "Füge einen kurzen Titel für diesen Prompt hinzu", "Add a short title for this prompt": "Füge einen kurzen Titel für diesen Prompt hinzu",
"Add a tag": "Tag hinzugügen", "Add a tag": "Tag hinzufügen",
"Add Docs": "Dokumente hinzufügen", "Add Docs": "Dokumente hinzufügen",
"Add Files": "Dateien hinzufügen", "Add Files": "Dateien hinzufügen",
"Add message": "Nachricht eingeben", "Add message": "Nachricht eingeben",
"Add Model": "Modell hinzufügen",
"add tags": "Tags hinzufügen", "add tags": "Tags hinzufügen",
"Adjusting these settings will apply changes universally to all users.": "Das Anpassen dieser Einstellungen wirkt sich universell auf alle Benutzer aus.", "Adjusting these settings will apply changes universally to all users.": "Das Anpassen dieser Einstellungen wirkt sich universell auf alle Benutzer aus.",
"admin": "Administrator", "admin": "Administrator",
...@@ -31,11 +33,17 @@ ...@@ -31,11 +33,17 @@
"Already have an account?": "Hast du vielleicht schon ein Account?", "Already have an account?": "Hast du vielleicht schon ein Account?",
"an assistant": "", "an assistant": "",
"and": "und", "and": "und",
"and create a new shared link.": "und einen neuen geteilten Link zu erstellen.",
"API Base URL": "API Basis URL", "API Base URL": "API Basis URL",
"API Key": "API Key", "API Key": "API Key",
"API Key created.": "",
"API keys": "",
"API RPM": "API RPM", "API RPM": "API RPM",
"Archive": "Archivieren",
"Archived Chats": "Archivierte Chats",
"are allowed - Activate this command by typing": "sind erlaubt - Aktiviere diesen Befehl, indem du", "are allowed - Activate this command by typing": "sind erlaubt - Aktiviere diesen Befehl, indem du",
"Are you sure?": "", "Are you sure?": "",
"Attention to detail": "",
"Audio": "Audio", "Audio": "Audio",
"Auto-playback response": "Automatische Wiedergabe der Antwort", "Auto-playback response": "Automatische Wiedergabe der Antwort",
"Auto-send input after 3 sec.": "Automatisches Senden der Eingabe nach 3 Sek", "Auto-send input after 3 sec.": "Automatisches Senden der Eingabe nach 3 Sek",
...@@ -43,6 +51,8 @@ ...@@ -43,6 +51,8 @@
"AUTOMATIC1111 Base URL is required.": "", "AUTOMATIC1111 Base URL is required.": "",
"available!": "verfügbar!", "available!": "verfügbar!",
"Back": "Zurück", "Back": "Zurück",
"before": "bereits geteilt",
"Being lazy": "",
"Builder Mode": "Builder Modus", "Builder Mode": "Builder Modus",
"Cancel": "Abbrechen", "Cancel": "Abbrechen",
"Categories": "Kategorien", "Categories": "Kategorien",
...@@ -59,6 +69,7 @@ ...@@ -59,6 +69,7 @@
"Chunk Params": "Chunk Parameter", "Chunk Params": "Chunk Parameter",
"Chunk Size": "Chunk Size", "Chunk Size": "Chunk Size",
"Click here for help.": "Klicke hier für Hilfe.", "Click here for help.": "Klicke hier für Hilfe.",
"Click here to": "Klicke hier, um",
"Click here to check other modelfiles.": "Klicke hier, um andere Modelfiles zu überprüfen.", "Click here to check other modelfiles.": "Klicke hier, um andere Modelfiles zu überprüfen.",
"Click here to select": "", "Click here to select": "",
"Click here to select documents.": "", "Click here to select documents.": "",
...@@ -66,41 +77,53 @@ ...@@ -66,41 +77,53 @@
"Click on the user role button to change a user's role.": "Klicke auf die Benutzerrollenschaltfläche, um die Rolle eines Benutzers zu ändern.", "Click on the user role button to change a user's role.": "Klicke auf die Benutzerrollenschaltfläche, um die Rolle eines Benutzers zu ändern.",
"Close": "Schließe", "Close": "Schließe",
"Collection": "Kollektion", "Collection": "Kollektion",
"ComfyUI": "",
"ComfyUI Base URL": "",
"ComfyUI Base URL is required.": "",
"Command": "Befehl", "Command": "Befehl",
"Confirm Password": "Passwort bestätigen", "Confirm Password": "Passwort bestätigen",
"Connections": "Verbindungen", "Connections": "Verbindungen",
"Content": "Inhalt", "Content": "Inhalt",
"Context Length": "Context Length", "Context Length": "Context Length",
"Conversation Mode": "Konversationsmodus", "Conversation Mode": "Konversationsmodus",
"Copied shared chat URL to clipboard!": "Geteilter Chat-URL in die Zwischenablage kopiert!",
"Copy last code block": "Letzten Codeblock kopieren", "Copy last code block": "Letzten Codeblock kopieren",
"Copy last response": "Letzte Antwort kopieren", "Copy last response": "Letzte Antwort kopieren",
"Copy Link": "Link kopieren",
"Copying to clipboard was successful!": "Das Kopieren in die Zwischenablage war erfolgreich!", "Copying to clipboard was successful!": "Das Kopieren in die Zwischenablage war erfolgreich!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Erstelle einen prägnanten Satz mit 3-5 Wörtern als Überschrift für die folgende Abfrage. Halte dich dabei strikt an die 3-5-Wort-Grenze und vermeide die Verwendung des Wortes Titel:", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Erstelle einen prägnanten Satz mit 3-5 Wörtern als Überschrift für die folgende Abfrage. Halte dich dabei strikt an die 3-5-Wort-Grenze und vermeide die Verwendung des Wortes Titel:",
"Create a modelfile": "Modelfiles erstellen", "Create a modelfile": "Modelfiles erstellen",
"Create Account": "Konto erstellen", "Create Account": "Konto erstellen",
"Create new key": "Neuen Schlüssel erstellen",
"Create new secret key": "Neuen API Schlüssel erstellen",
"Created at": "Erstellt am", "Created at": "Erstellt am",
"Created by": "Erstellt von", "Created At": "",
"Current Model": "Aktuelles Modell", "Current Model": "Aktuelles Modell",
"Current Password": "Aktuelles Passwort", "Current Password": "Aktuelles Passwort",
"Custom": "Benutzerdefiniert", "Custom": "Benutzerdefiniert",
"Customize Ollama models for a specific purpose": "Ollama-Modelle für einen bestimmten Zweck anpassen", "Customize Ollama models for a specific purpose": "Ollama-Modelle für einen bestimmten Zweck anpassen",
"Dark": "Dunkel", "Dark": "Dunkel",
"Dashboard": "",
"Database": "Datenbank", "Database": "Datenbank",
"DD/MM/YYYY HH:mm": "DD.MM.YYYY HH:mm", "DD/MM/YYYY HH:mm": "DD.MM.YYYY HH:mm",
"Default": "Standard", "Default": "Standard",
"Default (Automatic1111)": "", "Default (Automatic1111)": "",
"Default (SentenceTransformers)": "",
"Default (Web API)": "Standard (Web-API)", "Default (Web API)": "Standard (Web-API)",
"Default model updated": "Standardmodell aktualisiert", "Default model updated": "Standardmodell aktualisiert",
"Default Prompt Suggestions": "Standard-Prompt-Vorschläge", "Default Prompt Suggestions": "Standard-Prompt-Vorschläge",
"Default User Role": "Standardbenutzerrolle", "Default User Role": "Standardbenutzerrolle",
"delete": "löschen", "delete": "löschen",
"Delete": "Löschen",
"Delete a model": "Ein Modell löschen", "Delete a model": "Ein Modell löschen",
"Delete chat": "Chat löschen", "Delete chat": "Chat löschen",
"Delete Chats": "Chats löschen", "Delete Chats": "Chats löschen",
"delete this link": "diesen Link zu löschen",
"Delete User": "Benutzer löschen",
"Deleted {{deleteModelTag}}": "{{deleteModelTag}} gelöscht", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} gelöscht",
"Deleted {tagName}": "{tagName} gelöscht", "Deleted {{tagName}}": "",
"Description": "Beschreibung", "Description": "Beschreibung",
"Notifications": "Desktop-Benachrichtigungen", "Didn't fully follow instructions": "",
"Disabled": "Deaktiviert", "Disabled": "Deaktiviert",
"Discover a modelfile": "Eine Modelfiles entdecken", "Discover a modelfile": "Eine Modelfiles entdecken",
"Discover a prompt": "Einen Prompt entdecken", "Discover a prompt": "Einen Prompt entdecken",
...@@ -113,18 +136,20 @@ ...@@ -113,18 +136,20 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "stellt keine externen Verbindungen her, und Deine Daten bleiben sicher auf Deinen lokal gehosteten Server.", "does not make any external connections, and your data stays securely on your locally hosted server.": "stellt keine externen Verbindungen her, und Deine Daten bleiben sicher auf Deinen lokal gehosteten Server.",
"Don't Allow": "Nicht erlauben", "Don't Allow": "Nicht erlauben",
"Don't have an account?": "Hast du vielleicht noch kein Account?", "Don't have an account?": "Hast du vielleicht noch kein Account?",
"Download as a File": "Als Datei herunterladen", "Don't like the style": "",
"Download": "",
"Download Database": "Datenbank herunterladen", "Download Database": "Datenbank herunterladen",
"Drop any files here to add to the conversation": "Lasse Dateien hier fallen, um sie dem Chat anzuhängen", "Drop any files here to add to the conversation": "Lasse Dateien hier fallen, um sie dem Chat anzuhängen",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "z.B. '30s','10m'. Gültige Zeiteinheiten sind 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "z.B. '30s','10m'. Gültige Zeiteinheiten sind 's', 'm', 'h'.",
"Edit Doc": "Dokument bearbeiten", "Edit Doc": "Dokument bearbeiten",
"Edit User": "Benutzer bearbeiten", "Edit User": "Benutzer bearbeiten",
"Email": "E-Mail", "Email": "E-Mail",
"Embedding Model Engine": "",
"Embedding model set to \"{{embedding_model}}\"": "",
"Enable Chat History": "Chat-Verlauf aktivieren", "Enable Chat History": "Chat-Verlauf aktivieren",
"Enable New Sign Ups": "Neue Anmeldungen aktivieren", "Enable New Sign Ups": "Neue Anmeldungen aktivieren",
"Enabled": "Aktiviert", "Enabled": "Aktiviert",
"Enter {{role}} message here": "", "Enter {{role}} message here": "",
"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)": "",
...@@ -133,11 +158,13 @@ ...@@ -133,11 +158,13 @@
"Enter LiteLLM API RPM (litellm_params.rpm)": "", "Enter LiteLLM API RPM (litellm_params.rpm)": "",
"Enter LiteLLM Model (litellm_params.model)": "", "Enter LiteLLM Model (litellm_params.model)": "",
"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}})": "Modell-Tag eingeben (z.B. {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "", "Enter Number of Steps (e.g. 50)": "",
"Enter Relevance Threshold": "",
"Enter stop sequence": "Stop-Sequenz eingeben", "Enter stop sequence": "Stop-Sequenz eingeben",
"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/)": "Gib die URL ein (z.B. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Gib die URL ein (z.B. http://localhost:11434)",
"Enter Your Email": "Geben Deine E-Mail-Adresse ein", "Enter Your Email": "Geben Deine E-Mail-Adresse ein",
"Enter Your Full Name": "Gebe Deinen vollständigen Namen ein", "Enter Your Full Name": "Gebe Deinen vollständigen Namen ein",
"Enter Your Password": "Gebe Dein Passwort ein", "Enter Your Password": "Gebe Dein Passwort ein",
...@@ -147,10 +174,15 @@ ...@@ -147,10 +174,15 @@
"Export Documents Mapping": "Dokumentenmapping exportieren", "Export Documents Mapping": "Dokumentenmapping exportieren",
"Export Modelfiles": "Modelfiles exportieren", "Export Modelfiles": "Modelfiles exportieren",
"Export Prompts": "Prompts exportieren", "Export Prompts": "Prompts exportieren",
"Failed to create API Key.": "",
"Failed to read clipboard contents": "Fehler beim Lesen des Zwischenablageninhalts", "Failed to read clipboard contents": "Fehler beim Lesen des Zwischenablageninhalts",
"Feel free to add specific details": "",
"File Mode": "File Mode", "File Mode": "File Mode",
"File not found.": "Datei nicht gefunden.", "File not found.": "Datei nicht gefunden.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "",
"Fluidly stream large external response chunks": "",
"Focus chat input": "Chat-Eingabe fokussieren", "Focus chat input": "Chat-Eingabe fokussieren",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "Formatiere Deine Variablen mit eckigen Klammern wie folgt:", "Format your variables using square brackets like this:": "Formatiere Deine Variablen mit eckigen Klammern wie folgt:",
"From (Base Model)": "Von (Basismodell)", "From (Base Model)": "Von (Basismodell)",
"Full Screen Mode": "Vollbildmodus", "Full Screen Mode": "Vollbildmodus",
...@@ -160,6 +192,7 @@ ...@@ -160,6 +192,7 @@
"Hide": "Verbergen", "Hide": "Verbergen",
"Hide Additional Params": "Hide Additional Params", "Hide Additional Params": "Hide Additional Params",
"How can I help you today?": "Wie kann ich Dir heute helfen?", "How can I help you today?": "Wie kann ich Dir heute helfen?",
"Hybrid Search": "",
"Image Generation (Experimental)": "Bildgenerierung (experimentell)", "Image Generation (Experimental)": "Bildgenerierung (experimentell)",
"Image Generation Engine": "", "Image Generation Engine": "",
"Image Settings": "Bildeinstellungen", "Image Settings": "Bildeinstellungen",
...@@ -177,6 +210,7 @@ ...@@ -177,6 +210,7 @@
"Keep Alive": "Keep Alive", "Keep Alive": "Keep Alive",
"Keyboard shortcuts": "Tastenkürzel", "Keyboard shortcuts": "Tastenkürzel",
"Language": "Sprache", "Language": "Sprache",
"Last Active": "",
"Light": "Hell", "Light": "Hell",
"Listening...": "Hören...", "Listening...": "Hören...",
"LLMs can make mistakes. Verify important information.": "LLMs können Fehler machen. Überprüfe wichtige Informationen.", "LLMs can make mistakes. Verify important information.": "LLMs können Fehler machen. Überprüfe wichtige Informationen.",
...@@ -187,14 +221,17 @@ ...@@ -187,14 +221,17 @@
"Manage Ollama Models": "Ollama-Modelle verwalten", "Manage Ollama Models": "Ollama-Modelle verwalten",
"Max Tokens": "Maximale Tokens", "Max Tokens": "Maximale Tokens",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Es können maximal 3 Modelle gleichzeitig heruntergeladen werden. Bitte versuche es später erneut.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Es können maximal 3 Modelle gleichzeitig heruntergeladen werden. Bitte versuche es später erneut.",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "Fortlaudende Nachrichten in diesem Chat werden nicht automatisch geteilt. Benutzer mit dem Link können den Chat einsehen.",
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "DD.MM.YYYY", "MMMM DD, YYYY": "DD.MM.YYYY",
"MMMM DD, YYYY HH:mm": "",
"Model '{{modelName}}' has been successfully downloaded.": "Modell '{{modelName}}' wurde erfolgreich heruntergeladen.", "Model '{{modelName}}' has been successfully downloaded.": "Modell '{{modelName}}' wurde erfolgreich heruntergeladen.",
"Model '{{modelTag}}' is already in queue for downloading.": "Modell '{{modelTag}}' befindet sich bereits in der Warteschlange zum Herunterladen.", "Model '{{modelTag}}' is already in queue for downloading.": "Modell '{{modelTag}}' befindet sich bereits in der Warteschlange zum Herunterladen.",
"Model {{modelId}} not found": "Modell {{modelId}} nicht gefunden", "Model {{modelId}} not found": "Modell {{modelId}} nicht gefunden",
"Model {{modelName}} already exists.": "Modell {{modelName}} existiert bereits.", "Model {{modelName}} already exists.": "Modell {{modelName}} existiert bereits.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Name": "Modellname", "Model Name": "Modellname",
"Model not selected": "Modell nicht ausgewählt", "Model not selected": "Modell nicht ausgewählt",
"Model Tag Name": "Modell-Tag-Name", "Model Tag Name": "Modell-Tag-Name",
...@@ -205,6 +242,7 @@ ...@@ -205,6 +242,7 @@
"Modelfile Content": "Modelfile Content", "Modelfile Content": "Modelfile Content",
"Modelfiles": "Modelfiles", "Modelfiles": "Modelfiles",
"Models": "Modelle", "Models": "Modelle",
"More": "Mehr",
"My Documents": "Meine Dokumente", "My Documents": "Meine Dokumente",
"My Modelfiles": "Meine Modelfiles", "My Modelfiles": "Meine Modelfiles",
"My Prompts": "Meine Prompts", "My Prompts": "Meine Prompts",
...@@ -213,10 +251,15 @@ ...@@ -213,10 +251,15 @@
"Name your modelfile": "Name your modelfile", "Name your modelfile": "Name your modelfile",
"New Chat": "Neuer Chat", "New Chat": "Neuer Chat",
"New Password": "Neues Passwort", "New Password": "Neues Passwort",
"No results found": "Keine Ergebnisse gefunden",
"Not factually correct": "",
"Not sure what to add?": "Nicht sicher, was hinzugefügt werden soll?", "Not sure what to add?": "Nicht sicher, was hinzugefügt werden soll?",
"Not sure what to write? Switch to": "Nicht sicher, was Du schreiben sollst? Wechsel zu", "Not sure what to write? Switch to": "Nicht sicher, was Du schreiben sollst? Wechsel zu",
"Notifications": "Desktop-Benachrichtigungen",
"Off": "Aus", "Off": "Aus",
"Okay, Let's Go!": "Okay, los geht's!", "Okay, Let's Go!": "Okay, los geht's!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "", "Ollama Base URL": "",
"Ollama Version": "Ollama-Version", "Ollama Version": "Ollama-Version",
"On": "Ein", "On": "Ein",
...@@ -229,20 +272,29 @@ ...@@ -229,20 +272,29 @@
"Open AI": "Open AI", "Open AI": "Open AI",
"Open AI (Dall-E)": "", "Open AI (Dall-E)": "",
"Open new chat": "Neuen Chat öffnen", "Open new chat": "Neuen Chat öffnen",
"OpenAI": "",
"OpenAI API": "OpenAI-API", "OpenAI API": "OpenAI-API",
"OpenAI API Key": "", "OpenAI API Config": "",
"OpenAI API Key is required.": "", "OpenAI API Key is required.": "",
"OpenAI URL/Key required.": "",
"or": "oder", "or": "oder",
"Other": "",
"Overview": "Übersicht",
"Parameters": "Parameter", "Parameters": "Parameter",
"Password": "Passwort", "Password": "Passwort",
"PDF document (.pdf)": "PDF-Dokument (.pdf)",
"PDF Extract Images (OCR)": "Text von Bilder aus PDFs extrahieren (OCR)", "PDF Extract Images (OCR)": "Text von Bilder aus PDFs extrahieren (OCR)",
"pending": "ausstehend", "pending": "ausstehend",
"Permission denied when accessing microphone: {{error}}": "Zugriff auf das Mikrofon verweigert: {{error}}", "Permission denied when accessing microphone: {{error}}": "Zugriff auf das Mikrofon verweigert: {{error}}",
"Plain text (.txt)": "Klartext (.txt)",
"Playground": "Playground", "Playground": "Playground",
"Profile": "Profil", "Positive attitude": "",
"Profile Image": "Profilbild",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
"Prompt Content": "Prompt-Inhalt", "Prompt Content": "Prompt-Inhalt",
"Prompt suggestions": "Prompt-Vorschläge", "Prompt suggestions": "Prompt-Vorschläge",
"Prompts": "Prompts", "Prompts": "Prompts",
"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" von Ollama.com herunterladen",
"Pull a model from Ollama.com": "Ein Modell von Ollama.com abrufen", "Pull a model from Ollama.com": "Ein Modell von Ollama.com abrufen",
"Pull Progress": "Fortschritt abrufen", "Pull Progress": "Fortschritt abrufen",
"Query Params": "Query Parameter", "Query Params": "Query Parameter",
...@@ -250,10 +302,16 @@ ...@@ -250,10 +302,16 @@
"Raw Format": "Rohformat", "Raw Format": "Rohformat",
"Record voice": "Stimme aufnehmen", "Record voice": "Stimme aufnehmen",
"Redirecting you to OpenWebUI Community": "Du wirst zur OpenWebUI-Community weitergeleitet", "Redirecting you to OpenWebUI Community": "Du wirst zur OpenWebUI-Community weitergeleitet",
"Refused when it shouldn't have": "",
"Release Notes": "Versionshinweise", "Release Notes": "Versionshinweise",
"Relevance Threshold": "",
"Remove": "Entfernen",
"Remove Model": "Modell entfernen",
"Rename": "Umbenennen",
"Repeat Last N": "Repeat Last N", "Repeat Last N": "Repeat Last N",
"Repeat Penalty": "Repeat Penalty", "Repeat Penalty": "Repeat Penalty",
"Request Mode": "Request-Modus", "Request Mode": "Request-Modus",
"Reranking model set to \"{{reranking_model}}\"": "",
"Reset Vector Storage": "Vektorspeicher zurücksetzen", "Reset Vector Storage": "Vektorspeicher zurücksetzen",
"Response AutoCopy to Clipboard": "Antwort automatisch in die Zwischenablage kopieren", "Response AutoCopy to Clipboard": "Antwort automatisch in die Zwischenablage kopieren",
"Role": "Rolle", "Role": "Rolle",
...@@ -268,6 +326,7 @@ ...@@ -268,6 +326,7 @@
"Scan complete!": "Scan abgeschlossen!", "Scan complete!": "Scan abgeschlossen!",
"Scan for documents from {{path}}": "Dokumente von {{path}} scannen", "Scan for documents from {{path}}": "Dokumente von {{path}} scannen",
"Search": "Suchen", "Search": "Suchen",
"Search a model": "Nach einem Modell suchen",
"Search Documents": "Dokumente suchen", "Search Documents": "Dokumente suchen",
"Search Prompts": "Prompts suchen", "Search Prompts": "Prompts suchen",
"See readme.md for instructions": "Anleitung in readme.md anzeigen", "See readme.md for instructions": "Anleitung in readme.md anzeigen",
...@@ -287,37 +346,46 @@ ...@@ -287,37 +346,46 @@
"Set Voice": "Stimme festlegen", "Set Voice": "Stimme festlegen",
"Settings": "Einstellungen", "Settings": "Einstellungen",
"Settings saved successfully!": "Einstellungen erfolgreich gespeichert!", "Settings saved successfully!": "Einstellungen erfolgreich gespeichert!",
"Share": "Teilen",
"Share Chat": "Chat teilen",
"Share to OpenWebUI Community": "Mit OpenWebUI Community teilen", "Share to OpenWebUI Community": "Mit OpenWebUI Community teilen",
"short-summary": "kurze-zusammenfassung", "short-summary": "kurze-zusammenfassung",
"Show": "Anzeigen", "Show": "Anzeigen",
"Show Additional Params": "Show Additional Params", "Show Additional Params": "Show Additional Params",
"Show shortcuts": "Verknüpfungen anzeigen", "Show shortcuts": "Verknüpfungen anzeigen",
"Showcased creativity": "",
"sidebar": "Seitenleiste", "sidebar": "Seitenleiste",
"Sign in": "Anmelden", "Sign in": "Anmelden",
"Sign Out": "Abmelden", "Sign Out": "Abmelden",
"Sign up": "Registrieren", "Sign up": "Registrieren",
"Signing in": "",
"Speech recognition error: {{error}}": "Spracherkennungsfehler: {{error}}", "Speech recognition error: {{error}}": "Spracherkennungsfehler: {{error}}",
"Speech-to-Text Engine": "Sprache-zu-Text-Engine", "Speech-to-Text Engine": "Sprache-zu-Text-Engine",
"SpeechRecognition API is not supported in this browser.": "Die SpeechRecognition-API wird in diesem Browser nicht unterstützt.", "SpeechRecognition API is not supported in this browser.": "Die SpeechRecognition-API wird in diesem Browser nicht unterstützt.",
"Stop Sequence": "Stop Sequence", "Stop Sequence": "Stop Sequence",
"STT Settings": "STT-Einstellungen", "STT Settings": "STT-Einstellungen",
"Submit": "Senden", "Submit": "Senden",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "Erfolg", "Success": "Erfolg",
"Successfully updated.": "Erfolgreich aktualisiert.", "Successfully updated.": "Erfolgreich aktualisiert.",
"Sync All": "Alles synchronisieren", "Sync All": "Alles synchronisieren",
"System": "System", "System": "System",
"System Prompt": "System-Prompt", "System Prompt": "System-Prompt",
"Tags": "Tags", "Tags": "Tags",
"Tell us more:": "",
"Temperature": "Temperatur", "Temperature": "Temperatur",
"Template": "Vorlage", "Template": "Vorlage",
"Text Completion": "Textvervollständigung", "Text Completion": "Textvervollständigung",
"Text-to-Speech Engine": "Text-zu-Sprache-Engine", "Text-to-Speech Engine": "Text-zu-Sprache-Engine",
"Tfs Z": "Tfs Z", "Tfs Z": "Tfs Z",
"Thanks for your feedback!": "",
"Theme": "Design", "Theme": "Design",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dadurch werden Deine wertvollen Unterhaltungen sicher in der Backend-Datenbank gespeichert. Vielen Dank!", "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dadurch werden Deine wertvollen Unterhaltungen sicher in der Backend-Datenbank gespeichert. Vielen Dank!",
"This setting does not sync across browsers or devices.": "Diese Einstellung wird nicht zwischen Browsern oder Geräten synchronisiert.", "This setting does not sync across browsers or devices.": "Diese Einstellung wird nicht zwischen Browsern oder Geräten synchronisiert.",
"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": "Titel", "Title": "Titel",
"Title (e.g. Tell me a fun fact)": "",
"Title Auto-Generation": "Automatische Titelgenerierung", "Title Auto-Generation": "Automatische Titelgenerierung",
"Title Generation Prompt": "Prompt für Titelgenerierung", "Title Generation Prompt": "Prompt für Titelgenerierung",
"to": "für", "to": "für",
...@@ -333,13 +401,19 @@ ...@@ -333,13 +401,19 @@
"Type Hugging Face Resolve (Download) URL": "", "Type Hugging Face Resolve (Download) URL": "",
"Uh-oh! There was an issue connecting to {{provider}}.": "Ups! Es gab ein Problem bei der Verbindung mit {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Ups! Es gab ein Problem bei der Verbindung mit {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Unknown File Type '{{file_type}}', but accepting and treating as plain text", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Unknown File Type '{{file_type}}', but accepting and treating as plain text",
"Update and Copy Link": "Erneuern & kopieren",
"Update Embedding Model": "Embedding-Modell aktualisieren",
"Update embedding model (e.g. {{model}})": "",
"Update password": "Passwort aktualisieren", "Update password": "Passwort aktualisieren",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "Upload a GGUF model", "Upload a GGUF model": "Upload a GGUF model",
"Upload files": "Dateien hochladen", "Upload files": "Dateien hochladen",
"Upload Progress": "Upload Progress", "Upload Progress": "Upload Progress",
"URL Mode": "URL Mode", "URL Mode": "URL Mode",
"Use '#' in the prompt input to load and select your documents.": "Verwende '#' in der Prompt-Eingabe, um Deine Dokumente zu laden und auszuwählen.", "Use '#' in the prompt input to load and select your documents.": "Verwende '#' in der Prompt-Eingabe, um Deine Dokumente zu laden und auszuwählen.",
"Use Gravatar": "", "Use Gravatar": "Gravatar verwenden",
"Use Initials": "Initialen verwenden",
"user": "Benutzer", "user": "Benutzer",
"User Permissions": "Benutzerberechtigungen", "User Permissions": "Benutzerberechtigungen",
"Users": "Benutzer", "Users": "Benutzer",
...@@ -348,7 +422,9 @@ ...@@ -348,7 +422,9 @@
"variable": "Variable", "variable": "Variable",
"variable to have them replaced with clipboard content.": "Variable, um den Inhalt der Zwischenablage beim Nutzen des Prompts zu ersetzen.", "variable to have them replaced with clipboard content.": "Variable, um den Inhalt der Zwischenablage beim Nutzen des Prompts zu ersetzen.",
"Version": "Version", "Version": "Version",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Warnung: Wenn Du Dein Einbettungsmodell aktualisierst oder änderst, musst Du alle Dokumente erneut importieren.",
"Web": "Web", "Web": "Web",
"Webhook URL": "",
"WebUI Add-ons": "WebUI-Add-Ons", "WebUI Add-ons": "WebUI-Add-Ons",
"WebUI Settings": "WebUI-Einstellungen", "WebUI Settings": "WebUI-Einstellungen",
"WebUI will make requests to": "Wenn aktiviert sendet WebUI externe Anfragen an", "WebUI will make requests to": "Wenn aktiviert sendet WebUI externe Anfragen an",
...@@ -358,6 +434,8 @@ ...@@ -358,6 +434,8 @@
"Write a prompt suggestion (e.g. Who are you?)": "Gebe einen Prompt-Vorschlag ein (z.B. Wer bist du?)", "Write a prompt suggestion (e.g. Who are you?)": "Gebe einen Prompt-Vorschlag ein (z.B. Wer bist du?)",
"Write a summary in 50 words that summarizes [topic or keyword].": "Schreibe eine kurze Zusammenfassung in 50 Wörtern, die [Thema oder Schlüsselwort] zusammenfasst.", "Write a summary in 50 words that summarizes [topic or keyword].": "Schreibe eine kurze Zusammenfassung in 50 Wörtern, die [Thema oder Schlüsselwort] zusammenfasst.",
"You": "Du", "You": "Du",
"You have no archived conversations.": "Du hast keine archivierten Unterhaltungen.",
"You have shared this chat": "Du hast diesen Chat",
"You're a helpful assistant.": "Du bist ein hilfreicher Assistent.", "You're a helpful assistant.": "Du bist ein hilfreicher Assistent.",
"You're now logged in.": "Du bist nun eingeloggt." "You're now logged in.": "Du bist nun eingeloggt."
} }
{ {
"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", "and create a new shared link.": "",
"neighborhood": "neighbourhood", "API Base URL": "",
"offense": "offence", "API Key": "",
"organize": "organise", "API Key created.": "",
"organizes": "organises", "API keys": "",
"personalize": "personalise", "API RPM": "",
"personalizes": "personalises", "Archive": "",
"program": "programme", "Archived Chats": "",
"programmed": "programmed", "are allowed - Activate this command by typing": "",
"programs": "programmes", "Are you sure?": "",
"quantization": "quantisation", "Attention to detail": "",
"quantize": "quantise", "Audio": "",
"randomize": "randomise", "Auto-playback response": "",
"randomizes": "randomises", "Auto-send input after 3 sec.": "",
"realize": "realise", "AUTOMATIC1111 Base URL": "",
"realizes": "realises", "AUTOMATIC1111 Base URL is required.": "",
"recognize": "recognise", "available!": "",
"recognizes": "recognises", "Back": "",
"summarize": "summarise", "before": "",
"summarizes": "summarises", "Being lazy": "",
"theater": "theatre", "Builder Mode": "",
"theaters": "theatres", "Cancel": "",
"toward": "towards", "Categories": "",
"traveled": "travelled", "Change Password": "",
"traveler": "traveller", "Chat": "",
"traveling": "travelling", "Chat History": "",
"utilize": "utilise", "Chat History is off for this browser.": "",
"utilizes": "utilises" "Chats": "",
"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": "",
"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": "",
"Conversation Mode": "",
"Copied shared chat URL to clipboard!": "",
"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": "",
"Create new key": "",
"Create new secret key": "",
"Created at": "",
"Created At": "",
"Current Model": "",
"Current Password": "",
"Custom": "",
"Customize Ollama models for a specific purpose": "",
"Dark": "",
"Dashboard": "",
"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 Chats": "",
"delete this link": "",
"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 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 URL (e.g. http://localhost:11434)": "",
"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": "",
"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.": "",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
"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": "",
"No results found": "",
"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": "",
"Overview": "",
"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 \"{{searchValue}}\" from Ollama.com": "",
"Pull a model from Ollama.com": "",
"Pull Progress": "",
"Query Params": "",
"RAG Template": "",
"Raw Format": "",
"Record voice": "",
"Redirecting you to OpenWebUI Community": "",
"Refused when it shouldn't have": "",
"Release Notes": "",
"Relevance Threshold": "",
"Remove": "",
"Remove Model": "",
"Rename": "",
"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 have no archived conversations.": "",
"You have shared this chat": "",
"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,6 +18,7 @@ ...@@ -17,6 +18,7 @@
"Add Docs": "", "Add Docs": "",
"Add Files": "", "Add Files": "",
"Add message": "", "Add message": "",
"Add Model": "",
"add tags": "", "add tags": "",
"Adjusting these settings will apply changes universally to all users.": "", "Adjusting these settings will apply changes universally to all users.": "",
"admin": "", "admin": "",
...@@ -31,11 +33,17 @@ ...@@ -31,11 +33,17 @@
"Already have an account?": "", "Already have an account?": "",
"an assistant": "", "an assistant": "",
"and": "", "and": "",
"and create a new shared link.": "",
"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 +51,8 @@ ...@@ -43,6 +51,8 @@
"AUTOMATIC1111 Base URL is required.": "", "AUTOMATIC1111 Base URL is required.": "",
"available!": "", "available!": "",
"Back": "", "Back": "",
"before": "",
"Being lazy": "",
"Builder Mode": "", "Builder Mode": "",
"Cancel": "", "Cancel": "",
"Categories": "", "Categories": "",
...@@ -59,6 +69,7 @@ ...@@ -59,6 +69,7 @@
"Chunk Params": "", "Chunk Params": "",
"Chunk Size": "", "Chunk Size": "",
"Click here for help.": "", "Click here for help.": "",
"Click here to": "",
"Click here to check other modelfiles.": "", "Click here to check other modelfiles.": "",
"Click here to select": "", "Click here to select": "",
"Click here to select documents.": "", "Click here to select documents.": "",
...@@ -66,41 +77,53 @@ ...@@ -66,41 +77,53 @@
"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": "",
"Conversation Mode": "", "Conversation Mode": "",
"Copied shared chat URL to clipboard!": "",
"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": "",
"Create new key": "",
"Create new secret key": "",
"Created at": "", "Created at": "",
"Created by": "", "Created At": "",
"Current Model": "", "Current Model": "",
"Current Password": "", "Current Password": "",
"Custom": "", "Custom": "",
"Customize Ollama models for a specific purpose": "", "Customize Ollama models for a specific purpose": "",
"Dark": "", "Dark": "",
"Dashboard": "",
"Database": "", "Database": "",
"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 Chats": "", "Delete Chats": "",
"delete this link": "",
"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 +136,20 @@ ...@@ -113,19 +136,20 @@
"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 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,9 +160,11 @@ ...@@ -136,9 +160,11 @@
"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/)": "",
"Enter URL (e.g. http://localhost:11434)": "",
"Enter Your Email": "", "Enter Your Email": "",
"Enter Your Full Name": "", "Enter Your Full Name": "",
"Enter Your Password": "", "Enter Your Password": "",
...@@ -148,12 +174,15 @@ ...@@ -148,12 +174,15 @@
"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": "",
...@@ -163,6 +192,7 @@ ...@@ -163,6 +192,7 @@
"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": "",
"Listening...": "", "Listening...": "",
"LLMs can make mistakes. Verify important information.": "", "LLMs can make mistakes. Verify important information.": "",
...@@ -190,14 +221,14 @@ ...@@ -190,14 +221,14 @@
"Manage Ollama Models": "", "Manage Ollama Models": "",
"Max Tokens": "", "Max Tokens": "",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
"Mirostat": "", "Mirostat": "",
"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.": "",
...@@ -211,6 +242,7 @@ ...@@ -211,6 +242,7 @@
"Modelfile Content": "", "Modelfile Content": "",
"Modelfiles": "", "Modelfiles": "",
"Models": "", "Models": "",
"More": "",
"My Documents": "", "My Documents": "",
"My Modelfiles": "", "My Modelfiles": "",
"My Prompts": "", "My Prompts": "",
...@@ -219,10 +251,15 @@ ...@@ -219,10 +251,15 @@
"Name your modelfile": "", "Name your modelfile": "",
"New Chat": "", "New Chat": "",
"New Password": "", "New Password": "",
"No results found": "",
"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": "",
...@@ -235,20 +272,29 @@ ...@@ -235,20 +272,29 @@
"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": "",
"Overview": "",
"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": "",
"Profile": "", "Positive attitude": "",
"Profile Image": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
"Prompt Content": "", "Prompt Content": "",
"Prompt suggestions": "", "Prompt suggestions": "",
"Prompts": "", "Prompts": "",
"Pull \"{{searchValue}}\" from Ollama.com": "",
"Pull a model from Ollama.com": "", "Pull a model from Ollama.com": "",
"Pull Progress": "", "Pull Progress": "",
"Query Params": "", "Query Params": "",
...@@ -256,10 +302,16 @@ ...@@ -256,10 +302,16 @@
"Raw Format": "", "Raw Format": "",
"Record voice": "", "Record voice": "",
"Redirecting you to OpenWebUI Community": "", "Redirecting you to OpenWebUI Community": "",
"Refused when it shouldn't have": "",
"Release Notes": "", "Release Notes": "",
"Relevance Threshold": "",
"Remove": "",
"Remove Model": "",
"Rename": "",
"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": "",
...@@ -274,6 +326,7 @@ ...@@ -274,6 +326,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": "",
...@@ -293,37 +346,46 @@ ...@@ -293,37 +346,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": "",
...@@ -338,11 +400,13 @@ ...@@ -338,11 +400,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": "",
...@@ -358,7 +422,9 @@ ...@@ -358,7 +422,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": "",
...@@ -368,6 +434,8 @@ ...@@ -368,6 +434,8 @@
"Write a prompt suggestion (e.g. Who are you?)": "", "Write a prompt suggestion (e.g. Who are you?)": "",
"Write a summary in 50 words that summarizes [topic or keyword].": "", "Write a summary in 50 words that summarizes [topic or keyword].": "",
"You": "", "You": "",
"You have no archived conversations.": "",
"You have shared this chat": "",
"You're a helpful assistant.": "", "You're a helpful assistant.": "",
"You're now logged in.": "" "You're now logged in.": ""
} }
...@@ -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,6 +18,7 @@ ...@@ -17,6 +18,7 @@
"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 Model": "",
"add tags": "agregar etiquetas", "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",
...@@ -31,11 +33,17 @@ ...@@ -31,11 +33,17 @@
"Already have an account?": "¿Ya tienes una cuenta?", "Already have an account?": "¿Ya tienes una cuenta?",
"an assistant": "un asistente", "an assistant": "un asistente",
"and": "y", "and": "y",
"and create a new shared link.": "",
"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?": "Esta usted seguro?", "Are you sure?": "Esta usted seguro?",
"Attention to detail": "",
"Audio": "Audio", "Audio": "Audio",
"Auto-playback response": "Respuesta de reproducción automática", "Auto-playback response": "Respuesta de reproducción automática",
"Auto-send input after 3 sec.": "Envía la información entrada automáticamente luego de 3 segundos.", "Auto-send input after 3 sec.": "Envía la información entrada automáticamente luego de 3 segundos.",
...@@ -43,6 +51,8 @@ ...@@ -43,6 +51,8 @@
"AUTOMATIC1111 Base URL is required.": "La dirección URL de AUTOMATIC1111 es requerida.", "AUTOMATIC1111 Base URL is required.": "La dirección URL de AUTOMATIC1111 es requerida.",
"available!": "¡disponible!", "available!": "¡disponible!",
"Back": "Vuelve atrás", "Back": "Vuelve atrás",
"before": "",
"Being lazy": "",
"Builder Mode": "Modo de Constructor", "Builder Mode": "Modo de Constructor",
"Cancel": "Cancelar", "Cancel": "Cancelar",
"Categories": "Categorías", "Categories": "Categorías",
...@@ -59,6 +69,7 @@ ...@@ -59,6 +69,7 @@
"Chunk Params": "Parámetros de fragmentos", "Chunk Params": "Parámetros de fragmentos",
"Chunk Size": "Tamaño de fragmentos", "Chunk Size": "Tamaño de fragmentos",
"Click here for help.": "Presiona aquí para ayuda.", "Click here for help.": "Presiona aquí para ayuda.",
"Click here to": "",
"Click here to check other modelfiles.": "Presiona aquí para otros modelfiles.", "Click here to check other modelfiles.": "Presiona aquí para otros modelfiles.",
"Click here to select": "Presiona aquí para seleccionar", "Click here to select": "Presiona aquí para seleccionar",
"Click here to select documents.": "Presiona aquí para seleccionar documentos", "Click here to select documents.": "Presiona aquí para seleccionar documentos",
...@@ -66,41 +77,53 @@ ...@@ -66,41 +77,53 @@
"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": "Largura del contexto", "Context Length": "Largura del contexto",
"Conversation Mode": "Modo de Conversación", "Conversation Mode": "Modo de Conversación",
"Copied shared chat URL to clipboard!": "",
"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",
"Copy Link": "",
"Copying to clipboard was successful!": "¡Copiar al portapapeles fue exitoso!", "Copying to clipboard was successful!": "¡Copiar al portapapeles fue exitoso!",
"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':": "Cree una frase concisa de 3 a 5 palabras como encabezado para la siguiente consulta, respetando estrictamente el límite de 3 a 5 palabras y evitando el uso de la palabra 'título':", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Cree una frase concisa de 3 a 5 palabras como encabezado para la siguiente consulta, respetando estrictamente el límite de 3 a 5 palabras y evitando el uso de la palabra 'título':",
"Create a modelfile": "Crea un modelfile", "Create a modelfile": "Crea un modelfile",
"Create Account": "Crear una cuenta", "Create Account": "Crear una cuenta",
"Create new key": "",
"Create new secret key": "",
"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",
"Customize Ollama models for a specific purpose": "Personaliza modelos de Ollama para un propósito específico", "Customize Ollama models for a specific purpose": "Personaliza modelos de Ollama para un propósito específico",
"Dark": "Oscuro", "Dark": "Oscuro",
"Dashboard": "",
"Database": "Base de datos", "Database": "Base de datos",
"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 Chats": "Borrar Chats", "Delete Chats": "Borrar Chats",
"delete this link": "",
"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",
...@@ -113,19 +136,20 @@ ...@@ -113,19 +136,20 @@
"does not make any external connections, and your data stays securely on your locally hosted server.": "no realiza ninguna conexión externa y sus datos permanecen seguros en su servidor alojado localmente.", "does not make any external connections, and your data stays securely on your locally hosted server.": "no realiza ninguna conexión externa y sus datos permanecen seguros en su servidor alojado localmente.",
"Don't Allow": "No Permitir", "Don't Allow": "No Permitir",
"Don't have an account?": "No tienes una cuenta?", "Don't have an account?": "No tienes una cuenta?",
"Download as a File": "Descarga como un Archivo", "Don't like the style": "",
"Download": "",
"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 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",
"Enter {{role}} message here": "Introduzca el mensaje {{role}} aquí", "Enter {{role}} message here": "Introduzca el mensaje {{role}} aquí",
"Enter API Key": "Ingrese la clave API",
"Enter Chunk Overlap": "Ingresar superposición de fragmentos", "Enter Chunk Overlap": "Ingresar superposición de fragmentos",
"Enter Chunk Size": "Introduzca el tamaño del fragmento", "Enter Chunk Size": "Introduzca el tamaño del fragmento",
"Enter Image Size (e.g. 512x512)": "Ingrese el tamaño de la imagen (p.ej. 512x512)", "Enter Image Size (e.g. 512x512)": "Ingrese el tamaño de la imagen (p.ej. 512x512)",
...@@ -136,9 +160,11 @@ ...@@ -136,9 +160,11 @@
"Enter Max Tokens (litellm_params.max_tokens)": "Ingrese tokens máximos (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "Ingrese tokens máximos (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "Ingrese la etiqueta del modelo (p.ej. {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "Ingrese la etiqueta del modelo (p.ej. {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "Ingrese el número de pasos (p.ej., 50)", "Enter Number of Steps (e.g. 50)": "Ingrese el número de pasos (p.ej., 50)",
"Enter Relevance Threshold": "",
"Enter stop sequence": "Introduzca la secuencia de parada", "Enter stop sequence": "Introduzca la secuencia de parada",
"Enter Top K": "Introduzca el Top K", "Enter Top K": "Introduzca el Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Ingrese la URL (p.ej., http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Ingrese la URL (p.ej., http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "",
"Enter Your Email": "Introduce tu correo electrónico", "Enter Your Email": "Introduce tu correo electrónico",
"Enter Your Full Name": "Introduce tu nombre completo", "Enter Your Full Name": "Introduce tu nombre completo",
"Enter Your Password": "Introduce tu contraseña", "Enter Your Password": "Introduce tu contraseña",
...@@ -148,12 +174,15 @@ ...@@ -148,12 +174,15 @@
"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.",
"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",
"Focus chat input": "Enfoca la entrada del chat", "Focus chat input": "Enfoca la entrada del chat",
"Followed instructions perfectly": "",
"Format your variables using square brackets like this:": "Formatee sus variables usando corchetes así:", "Format your variables using square brackets like this:": "Formatee sus variables usando corchetes así:",
"From (Base Model)": "Desde (Modelo Base)", "From (Base Model)": "Desde (Modelo Base)",
"Full Screen Mode": "Modo de Pantalla Completa", "Full Screen Mode": "Modo de Pantalla Completa",
...@@ -163,6 +192,7 @@ ...@@ -163,6 +192,7 @@
"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": "Configuración de Imágen", "Image Settings": "Configuración de Imágen",
...@@ -180,6 +210,7 @@ ...@@ -180,6 +210,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",
"Listening...": "Escuchando...", "Listening...": "Escuchando...",
"LLMs can make mistakes. Verify important information.": "Los LLM pueden cometer errores. Verifica la información importante.", "LLMs can make mistakes. Verify important information.": "Los LLM pueden cometer errores. Verifica la información importante.",
...@@ -190,14 +221,14 @@ ...@@ -190,14 +221,14 @@
"Manage Ollama Models": "Administrar Modelos Ollama", "Manage Ollama Models": "Administrar Modelos Ollama",
"Max Tokens": "Máximo de Tokens", "Max Tokens": "Máximo de Tokens",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Se pueden descargar un máximo de 3 modelos simultáneamente. Por favor, inténtelo de nuevo más tarde.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Se pueden descargar un máximo de 3 modelos simultáneamente. Por favor, inténtelo de nuevo más tarde.",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "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 actualizacón del modelo {{embedding_model}} fué completada!",
"Model {{embedding_model}} update failed or not required!": "¡La actualización del modelo {{embedding_model}} falló o no es requerida!",
"Model {{modelId}} not found": "El modelo {{modelId}} no fue encontrado", "Model {{modelId}} not found": "El modelo {{modelId}} no fue encontrado",
"Model {{modelName}} already exists.": "El modelo {{modelName}} ya existe.", "Model {{modelName}} already exists.": "El modelo {{modelName}} ya existe.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Se detectó la ruta del sistema de archivos del modelo. Se requiere el nombre corto del modelo para la actualización, no se puede continuar.", "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Se detectó la ruta del sistema de archivos del modelo. Se requiere el nombre corto del modelo para la actualización, no se puede continuar.",
...@@ -211,6 +242,7 @@ ...@@ -211,6 +242,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",
...@@ -219,10 +251,15 @@ ...@@ -219,10 +251,15 @@
"Name your modelfile": "Nombra tu modelfile", "Name your modelfile": "Nombra tu modelfile",
"New Chat": "Nuevo Chat", "New Chat": "Nuevo Chat",
"New Password": "Nueva Contraseña", "New Password": "Nueva Contraseña",
"No results found": "",
"Not factually correct": "",
"Not sure what to add?": "¿No estás seguro de qué añadir?", "Not sure what to add?": "¿No estás seguro de qué añadir?",
"Not sure what to write? Switch to": "¿No estás seguro de qué escribir? Cambia a", "Not sure what to write? Switch to": "¿No estás seguro de qué escribir? Cambia a",
"Notifications": "Notificaciones",
"Off": "Desactivado", "Off": "Desactivado",
"Okay, Let's Go!": "Okay, Let's Go!", "Okay, Let's Go!": "Okay, Let's Go!",
"OLED Dark": "",
"Ollama": "",
"Ollama Base URL": "URL base de Ollama", "Ollama Base URL": "URL base de Ollama",
"Ollama Version": "Version de Ollama", "Ollama Version": "Version de Ollama",
"On": "Activado", "On": "Activado",
...@@ -235,20 +272,29 @@ ...@@ -235,20 +272,29 @@
"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": "Abrir nuevo chat", "Open new chat": "Abrir nuevo chat",
"OpenAI": "",
"OpenAI API": "OpenAI API", "OpenAI API": "OpenAI API",
"OpenAI API Key": "Clave de OpenAI API", "OpenAI API Config": "",
"OpenAI API Key is required.": "La Clave de OpenAI API es requerida.", "OpenAI API Key is required.": "La Clave de OpenAI API es requerida.",
"OpenAI URL/Key required.": "",
"or": "o", "or": "o",
"Other": "",
"Overview": "",
"Parameters": "Parametros", "Parameters": "Parametros",
"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}}",
"Plain text (.txt)": "",
"Playground": "Playground", "Playground": "Playground",
"Profile": "Perfil", "Positive attitude": "",
"Profile Image": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
"Prompt Content": "Contenido del Prompt", "Prompt Content": "Contenido del Prompt",
"Prompt suggestions": "Sugerencias de Prompts", "Prompt suggestions": "Sugerencias de Prompts",
"Prompts": "Prompts", "Prompts": "Prompts",
"Pull \"{{searchValue}}\" from Ollama.com": "",
"Pull a model from Ollama.com": "Halar un modelo de Ollama.com", "Pull a model from Ollama.com": "Halar un modelo de Ollama.com",
"Pull Progress": "Progreso de extracción", "Pull Progress": "Progreso de extracción",
"Query Params": "Parámetros de consulta", "Query Params": "Parámetros de consulta",
...@@ -256,10 +302,16 @@ ...@@ -256,10 +302,16 @@
"Raw Format": "Formato en crudo", "Raw Format": "Formato en crudo",
"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": "",
"Release Notes": "Notas de la versión", "Release Notes": "Notas de la versión",
"Relevance Threshold": "",
"Remove": "",
"Remove Model": "",
"Rename": "",
"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",
...@@ -274,6 +326,7 @@ ...@@ -274,6 +326,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",
...@@ -293,37 +346,46 @@ ...@@ -293,37 +346,46 @@
"Set Voice": "Establecer la voz", "Set Voice": "Establecer la voz",
"Settings": "Configuración", "Settings": "Configuración",
"Settings saved successfully!": "Configuración guardada exitosamente!", "Settings saved successfully!": "Configuración guardada exitosamente!",
"Share": "",
"Share Chat": "",
"Share to OpenWebUI Community": "Compartir con la comunidad OpenWebUI", "Share to OpenWebUI Community": "Compartir con la comunidad OpenWebUI",
"short-summary": "resumen-corto", "short-summary": "resumen-corto",
"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": "Desconectar", "Sign Out": "Desconectar",
"Sign up": "Inscribirse", "Sign up": "Inscribirse",
"Signing in": "",
"Speech recognition error: {{error}}": "Error de reconocimiento de voz: {{error}}", "Speech recognition error: {{error}}": "Error de reconocimiento de voz: {{error}}",
"Speech-to-Text Engine": "Motor de voz a texto", "Speech-to-Text Engine": "Motor de voz a texto",
"SpeechRecognition API is not supported in this browser.": "La API SpeechRecognition no es compatible con este navegador.", "SpeechRecognition API is not supported in this browser.": "La API SpeechRecognition no es compatible con este navegador.",
"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.",
"Thorough explanation": "",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Consejo: actualice varias 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 varias 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",
...@@ -338,11 +400,13 @@ ...@@ -338,11 +400,13 @@
"TTS Settings": "Configuración de TTS", "TTS Settings": "Configuración de TTS",
"Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL", "Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL",
"Uh-oh! There was an issue connecting to {{provider}}.": "¡UH oh! Hubo un problema al conectarse a {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "¡UH oh! Hubo un problema al conectarse a {{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!": "Comprenda que actualizar o cambiar su modelo de embedding requiere restablecer la base de datos de vectores y volver a importar todos los documentos. ¡Usted ha sido advertido!",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipo de archivo desconocido '{{file_type}}', pero se acepta y se trata como texto sin formato", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipo de archivo desconocido '{{file_type}}', pero se acepta y se trata como texto sin formato",
"Update": "Actualizar", "Update and Copy Link": "",
"Update embedding model {{embedding_model}}": "Actualizar modelo de embedding {{embedding_model}}", "Update Embedding Model": "",
"Update embedding model (e.g. {{model}})": "",
"Update password": "Actualiza contraseña", "Update password": "Actualiza contraseña",
"Update Reranking Model": "",
"Update reranking model (e.g. {{model}})": "",
"Upload a GGUF model": "Sube un modelo GGUF", "Upload a GGUF model": "Sube un modelo GGUF",
"Upload files": "Subir archivos", "Upload files": "Subir archivos",
"Upload Progress": "Progreso de carga", "Upload Progress": "Progreso de carga",
...@@ -358,7 +422,9 @@ ...@@ -358,7 +422,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",
...@@ -368,6 +434,8 @@ ...@@ -368,6 +434,8 @@
"Write a prompt suggestion (e.g. Who are you?)": "Escribe una sugerencia para un prompt (por ejemplo, ¿quién eres?)", "Write a prompt suggestion (e.g. Who are you?)": "Escribe una sugerencia para un prompt (por ejemplo, ¿quién eres?)",
"Write a summary in 50 words that summarizes [topic or keyword].": "Escribe un resumen en 50 palabras que resuma [tema o palabra clave].", "Write a summary in 50 words that summarizes [topic or keyword].": "Escribe un resumen en 50 palabras que resuma [tema o palabra clave].",
"You": "Usted", "You": "Usted",
"You have no archived conversations.": "",
"You have shared this chat": "",
"You're a helpful assistant.": "Eres un asistente útil.", "You're a helpful assistant.": "Eres un asistente útil.",
"You're now logged in.": "Ya has iniciado sesión." "You're now logged in.": "Ya has iniciado sesión."
} }
...@@ -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,6 +18,7 @@ ...@@ -17,6 +18,7 @@
"Add Docs": "اضافه کردن اسناد", "Add Docs": "اضافه کردن اسناد",
"Add Files": "اضافه کردن فایل\u200cها", "Add Files": "اضافه کردن فایل\u200cها",
"Add message": "اضافه کردن پیغام", "Add message": "اضافه کردن پیغام",
"Add Model": "",
"add tags": "اضافه کردن تگ\u200cها", "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": "مدیر",
...@@ -31,11 +33,17 @@ ...@@ -31,11 +33,17 @@
"Already have an account?": "از قبل حساب کاربری دارید؟", "Already have an account?": "از قبل حساب کاربری دارید؟",
"an assistant": "یک دستیار", "an assistant": "یک دستیار",
"and": "و", "and": "و",
"and create a new shared link.": "",
"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 +51,8 @@ ...@@ -43,6 +51,8 @@
"AUTOMATIC1111 Base URL is required.": "به URL پایه AUTOMATIC1111 مورد نیاز است.", "AUTOMATIC1111 Base URL is required.": "به URL پایه AUTOMATIC1111 مورد نیاز است.",
"available!": "در دسترس!", "available!": "در دسترس!",
"Back": "بازگشت", "Back": "بازگشت",
"before": "",
"Being lazy": "",
"Builder Mode": "حالت سازنده", "Builder Mode": "حالت سازنده",
"Cancel": "لغو", "Cancel": "لغو",
"Categories": "دسته\u200cبندی\u200cها", "Categories": "دسته\u200cبندی\u200cها",
...@@ -59,6 +69,7 @@ ...@@ -59,6 +69,7 @@
"Chunk Params": "پارامترهای تکه", "Chunk Params": "پارامترهای تکه",
"Chunk Size": "اندازه تکه", "Chunk Size": "اندازه تکه",
"Click here for help.": "برای کمک اینجا را کلیک کنید.", "Click here for help.": "برای کمک اینجا را کلیک کنید.",
"Click here to": "",
"Click here to check other modelfiles.": "برای بررسی سایر فایل\u200cهای مدل اینجا را کلیک کنید.", "Click here to check other modelfiles.": "برای بررسی سایر فایل\u200cهای مدل اینجا را کلیک کنید.",
"Click here to select": "برای انتخاب اینجا کلیک کنید", "Click here to select": "برای انتخاب اینجا کلیک کنید",
"Click here to select documents.": "برای انتخاب اسناد اینجا را کلیک کنید.", "Click here to select documents.": "برای انتخاب اسناد اینجا را کلیک کنید.",
...@@ -66,41 +77,53 @@ ...@@ -66,41 +77,53 @@
"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": "طول زمینه",
"Conversation Mode": "حالت مکالمه", "Conversation Mode": "حالت مکالمه",
"Copied shared chat URL to clipboard!": "",
"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": "ساخت حساب کاربری",
"Create new key": "",
"Create new secret key": "",
"Created at": "ایجاد شده در", "Created at": "ایجاد شده در",
"Created by": "ایجاد شده توسط", "Created At": "",
"Current Model": "مدل فعلی", "Current Model": "مدل فعلی",
"Current Password": "رمز عبور فعلی", "Current Password": "رمز عبور فعلی",
"Custom": "دلخواه", "Custom": "دلخواه",
"Customize Ollama models for a specific purpose": "مدل های اولاما را برای یک هدف خاص سفارشی کنید", "Customize Ollama models for a specific purpose": "مدل های اولاما را برای یک هدف خاص سفارشی کنید",
"Dark": "تیره", "Dark": "تیره",
"Dashboard": "",
"Database": "پایگاه داده", "Database": "پایگاه داده",
"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 Chats": "حذف گپ\u200cها", "Delete Chats": "حذف گپ\u200cها",
"delete this link": "",
"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 +136,20 @@ ...@@ -113,18 +136,20 @@
"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 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,9 +160,11 @@ ...@@ -135,9 +160,11 @@
"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/)",
"Enter URL (e.g. http://localhost:11434)": "",
"Enter Your Email": "ایمیل خود را وارد کنید", "Enter Your Email": "ایمیل خود را وارد کنید",
"Enter Your Full Name": "نام کامل خود را وارد کنید", "Enter Your Full Name": "نام کامل خود را وارد کنید",
"Enter Your Password": "رمز عبور خود را وارد کنید", "Enter Your Password": "رمز عبور خود را وارد کنید",
...@@ -147,10 +174,15 @@ ...@@ -147,10 +174,15 @@
"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)": "از (مدل پایه)",
"Full Screen Mode": "حالت تمام صفحه", "Full Screen Mode": "حالت تمام صفحه",
...@@ -160,6 +192,7 @@ ...@@ -160,6 +192,7 @@
"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": "تنظیمات تصویر",
...@@ -177,6 +210,7 @@ ...@@ -177,6 +210,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.": "مدل\u200cهای زبانی بزرگ می\u200cتوانند اشتباه کنند. اطلاعات مهم را راستی\u200cآزمایی کنید.", "LLMs can make mistakes. Verify important information.": "مدل\u200cهای زبانی بزرگ می\u200cتوانند اشتباه کنند. اطلاعات مهم را راستی\u200cآزمایی کنید.",
...@@ -187,14 +221,17 @@ ...@@ -187,14 +221,17 @@
"Manage Ollama Models": "مدیریت مدل\u200cهای اولاما", "Manage Ollama Models": "مدیریت مدل\u200cهای اولاما",
"Max Tokens": "حداکثر توکن", "Max Tokens": "حداکثر توکن",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "حداکثر 3 مدل را می توان به طور همزمان دانلود کرد. لطفاً بعداً دوباره امتحان کنید.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "حداکثر 3 مدل را می توان به طور همزمان دانلود کرد. لطفاً بعداً دوباره امتحان کنید.",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "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": "نام تگ مدل",
...@@ -205,6 +242,7 @@ ...@@ -205,6 +242,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های من",
...@@ -213,10 +251,15 @@ ...@@ -213,10 +251,15 @@
"Name your modelfile": "فایل مدل را نام\u200cگذاری کنید", "Name your modelfile": "فایل مدل را نام\u200cگذاری کنید",
"New Chat": "گپ جدید", "New Chat": "گپ جدید",
"New Password": "رمز عبور جدید", "New Password": "رمز عبور جدید",
"No results found": "",
"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": "روشن",
...@@ -229,20 +272,29 @@ ...@@ -229,20 +272,29 @@
"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": "",
"Overview": "",
"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": "زمین بازی",
"Profile": "پروفایل", "Positive attitude": "",
"Profile Image": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
"Prompt Content": "محتویات پرامپت", "Prompt Content": "محتویات پرامپت",
"Prompt suggestions": "پیشنهادات پرامپت", "Prompt suggestions": "پیشنهادات پرامپت",
"Prompts": "پرامپت\u200cها", "Prompts": "پرامپت\u200cها",
"Pull \"{{searchValue}}\" from Ollama.com": "",
"Pull a model from Ollama.com": "دریافت یک مدل از Ollama.com", "Pull a model from Ollama.com": "دریافت یک مدل از Ollama.com",
"Pull Progress": "پیشرفت دریافت", "Pull Progress": "پیشرفت دریافت",
"Query Params": "پارامترهای پرس و جو", "Query Params": "پارامترهای پرس و جو",
...@@ -250,10 +302,16 @@ ...@@ -250,10 +302,16 @@
"Raw Format": "فرمت خام", "Raw Format": "فرمت خام",
"Record voice": "ضبط صدا", "Record voice": "ضبط صدا",
"Redirecting you to OpenWebUI Community": "در حال هدایت به OpenWebUI Community", "Redirecting you to OpenWebUI Community": "در حال هدایت به OpenWebUI Community",
"Refused when it shouldn't have": "",
"Release Notes": "یادداشت\u200cهای انتشار", "Release Notes": "یادداشت\u200cهای انتشار",
"Relevance Threshold": "",
"Remove": "",
"Remove Model": "",
"Rename": "",
"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": "نقش",
...@@ -268,6 +326,7 @@ ...@@ -268,6 +326,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 مراجعه کنید",
...@@ -287,37 +346,46 @@ ...@@ -287,37 +346,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": "به",
...@@ -333,13 +401,19 @@ ...@@ -333,13 +401,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": "کاربران",
...@@ -348,7 +422,9 @@ ...@@ -348,7 +422,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ها را ارسال خواهد کرد به",
...@@ -358,6 +434,8 @@ ...@@ -358,6 +434,8 @@
"Write a prompt suggestion (e.g. Who are you?)": "یک پیشنهاد پرامپت بنویسید (مثلاً شما کی هستید؟)", "Write a prompt suggestion (e.g. Who are you?)": "یک پیشنهاد پرامپت بنویسید (مثلاً شما کی هستید؟)",
"Write a summary in 50 words that summarizes [topic or keyword].": "خلاصه ای در 50 کلمه بنویسید که [موضوع یا کلمه کلیدی] را خلاصه کند.", "Write a summary in 50 words that summarizes [topic or keyword].": "خلاصه ای در 50 کلمه بنویسید که [موضوع یا کلمه کلیدی] را خلاصه کند.",
"You": "شما", "You": "شما",
"You have no archived conversations.": "",
"You have shared this chat": "",
"You're a helpful assistant.": "تو یک دستیار سودمند هستی.", "You're a helpful assistant.": "تو یک دستیار سودمند هستی.",
"You're now logged in.": "شما اکنون وارد شده\u200cاید." "You're now logged in.": "شما اکنون وارد شده\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,6 +18,7 @@ ...@@ -17,6 +18,7 @@
"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 Model": "",
"add tags": "ajouter des tags", "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",
...@@ -31,11 +33,17 @@ ...@@ -31,11 +33,17 @@
"Already have an account?": "Vous avez déjà un compte ?", "Already have an account?": "Vous avez déjà un compte ?",
"an assistant": "un assistant", "an assistant": "un assistant",
"and": "et", "and": "et",
"and create a new shared link.": "",
"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 +51,8 @@ ...@@ -43,6 +51,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",
"before": "",
"Being lazy": "",
"Builder Mode": "Mode Constructeur", "Builder Mode": "Mode Constructeur",
"Cancel": "Annuler", "Cancel": "Annuler",
"Categories": "Catégories", "Categories": "Catégories",
...@@ -59,6 +69,7 @@ ...@@ -59,6 +69,7 @@
"Chunk Params": "Paramètres de bloc", "Chunk Params": "Paramètres de bloc",
"Chunk Size": "Taille de bloc", "Chunk Size": "Taille de bloc",
"Click here for help.": "Cliquez ici pour de l'aide.", "Click here for help.": "Cliquez ici pour de l'aide.",
"Click here to": "",
"Click here to check other modelfiles.": "Cliquez ici pour vérifier d'autres fichiers de modèle.", "Click here to check other modelfiles.": "Cliquez ici pour vérifier d'autres fichiers de modèle.",
"Click here to select": "Cliquez ici pour sélectionner", "Click here to select": "Cliquez ici pour sélectionner",
"Click here to select documents.": "Cliquez ici pour sélectionner des documents.", "Click here to select documents.": "Cliquez ici pour sélectionner des documents.",
...@@ -66,41 +77,53 @@ ...@@ -66,41 +77,53 @@
"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",
"Conversation Mode": "Mode de conversation", "Conversation Mode": "Mode de conversation",
"Copied shared chat URL to clipboard!": "",
"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",
"Create new key": "",
"Create new secret key": "",
"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é",
"Customize Ollama models for a specific purpose": "Personnaliser les modèles Ollama pour un objectif spécifique", "Customize Ollama models for a specific purpose": "Personnaliser les modèles Ollama pour un objectif spécifique",
"Dark": "Sombre", "Dark": "Sombre",
"Dashboard": "",
"Database": "Base de données", "Database": "Base de données",
"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 Chats": "Supprimer les discussions", "Delete Chats": "Supprimer les discussions",
"delete this link": "",
"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 +136,20 @@ ...@@ -113,18 +136,20 @@
"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 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,9 +160,11 @@ ...@@ -135,9 +160,11 @@
"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/)",
"Enter URL (e.g. http://localhost:11434)": "",
"Enter Your Email": "Entrez votre adresse email", "Enter Your Email": "Entrez votre adresse email",
"Enter Your Full Name": "Entrez votre nom complet", "Enter Your Full Name": "Entrez votre nom complet",
"Enter Your Password": "Entrez votre mot de passe", "Enter Your Password": "Entrez votre mot de passe",
...@@ -147,10 +174,15 @@ ...@@ -147,10 +174,15 @@
"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)",
"Full Screen Mode": "Mode plein écran", "Full Screen Mode": "Mode plein écran",
...@@ -160,6 +192,7 @@ ...@@ -160,6 +192,7 @@
"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",
...@@ -177,6 +210,7 @@ ...@@ -177,6 +210,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",
"Listening...": "Écoute...", "Listening...": "Écoute...",
"LLMs can make mistakes. Verify important information.": "Les LLMs peuvent faire des erreurs. Vérifiez les informations importantes.", "LLMs can make mistakes. Verify important information.": "Les LLMs peuvent faire des erreurs. Vérifiez les informations importantes.",
...@@ -187,14 +221,17 @@ ...@@ -187,14 +221,17 @@
"Manage Ollama Models": "Gérer les modèles Ollama", "Manage Ollama Models": "Gérer les modèles Ollama",
"Max Tokens": "Tokens maximaux", "Max Tokens": "Tokens maximaux",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Un maximum de 3 modèles peut être téléchargé simultanément. Veuillez réessayer plus tard.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Un maximum de 3 modèles peut être téléchargé simultanément. Veuillez réessayer plus tard.",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "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",
...@@ -205,6 +242,7 @@ ...@@ -205,6 +242,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",
...@@ -213,10 +251,15 @@ ...@@ -213,10 +251,15 @@
"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",
"No results found": "",
"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é",
...@@ -229,20 +272,29 @@ ...@@ -229,20 +272,29 @@
"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": "",
"Overview": "",
"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",
"Profile": "Profil", "Positive attitude": "",
"Profile Image": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
"Prompt Content": "Contenu du prompt", "Prompt Content": "Contenu du prompt",
"Prompt suggestions": "Suggestions de prompt", "Prompt suggestions": "Suggestions de prompt",
"Prompts": "Prompts", "Prompts": "Prompts",
"Pull \"{{searchValue}}\" from Ollama.com": "",
"Pull a model from Ollama.com": "Tirer un modèle de Ollama.com", "Pull a model from Ollama.com": "Tirer un modèle de Ollama.com",
"Pull Progress": "Progression du téléchargement", "Pull Progress": "Progression du téléchargement",
"Query Params": "Paramètres de requête", "Query Params": "Paramètres de requête",
...@@ -250,10 +302,16 @@ ...@@ -250,10 +302,16 @@
"Raw Format": "Format brut", "Raw Format": "Format brut",
"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": "",
"Release Notes": "Notes de version", "Release Notes": "Notes de version",
"Relevance Threshold": "",
"Remove": "",
"Remove Model": "",
"Rename": "",
"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",
...@@ -268,6 +326,7 @@ ...@@ -268,6 +326,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",
...@@ -287,37 +346,46 @@ ...@@ -287,37 +346,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": "à",
...@@ -333,13 +401,19 @@ ...@@ -333,13 +401,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",
...@@ -348,7 +422,9 @@ ...@@ -348,7 +422,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 à",
...@@ -358,6 +434,8 @@ ...@@ -358,6 +434,8 @@
"Write a prompt suggestion (e.g. Who are you?)": "Rédigez une suggestion de prompt (p. ex. Qui êtes-vous ?)", "Write a prompt suggestion (e.g. Who are you?)": "Rédigez une suggestion de prompt (p. ex. Qui êtes-vous ?)",
"Write a summary in 50 words that summarizes [topic or keyword].": "Rédigez un résumé en 50 mots qui résume [sujet ou mot-clé].", "Write a summary in 50 words that summarizes [topic or keyword].": "Rédigez un résumé en 50 mots qui résume [sujet ou mot-clé].",
"You": "You", "You": "You",
"You have no archived conversations.": "",
"You have shared this chat": "",
"You're a helpful assistant.": "Vous êtes un assistant utile", "You're a helpful assistant.": "Vous êtes un assistant utile",
"You're now logged in.": "Vous êtes maintenant connecté." "You're now logged in.": "Vous êtes maintenant connecté."
} }
...@@ -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,6 +18,7 @@ ...@@ -17,6 +18,7 @@
"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 Model": "",
"add tags": "ajouter des tags", "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",
...@@ -31,11 +33,17 @@ ...@@ -31,11 +33,17 @@
"Already have an account?": "Vous avez déjà un compte ?", "Already have an account?": "Vous avez déjà un compte ?",
"an assistant": "un assistant", "an assistant": "un assistant",
"and": "et", "and": "et",
"and create a new shared link.": "",
"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 +51,8 @@ ...@@ -43,6 +51,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",
"before": "",
"Being lazy": "",
"Builder Mode": "Mode Constructeur", "Builder Mode": "Mode Constructeur",
"Cancel": "Annuler", "Cancel": "Annuler",
"Categories": "Catégories", "Categories": "Catégories",
...@@ -59,6 +69,7 @@ ...@@ -59,6 +69,7 @@
"Chunk Params": "Paramètres de bloc", "Chunk Params": "Paramètres de bloc",
"Chunk Size": "Taille de bloc", "Chunk Size": "Taille de bloc",
"Click here for help.": "Cliquez ici pour de l'aide.", "Click here for help.": "Cliquez ici pour de l'aide.",
"Click here to": "",
"Click here to check other modelfiles.": "Cliquez ici pour vérifier d'autres fichiers de modèle.", "Click here to check other modelfiles.": "Cliquez ici pour vérifier d'autres fichiers de modèle.",
"Click here to select": "Cliquez ici pour sélectionner", "Click here to select": "Cliquez ici pour sélectionner",
"Click here to select documents.": "Cliquez ici pour sélectionner des documents.", "Click here to select documents.": "Cliquez ici pour sélectionner des documents.",
...@@ -66,41 +77,53 @@ ...@@ -66,41 +77,53 @@
"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",
"Conversation Mode": "Mode de conversation", "Conversation Mode": "Mode de conversation",
"Copied shared chat URL to clipboard!": "",
"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",
"Create new key": "",
"Create new secret key": "",
"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é",
"Customize Ollama models for a specific purpose": "Personnaliser les modèles Ollama pour un objectif spécifique", "Customize Ollama models for a specific purpose": "Personnaliser les modèles Ollama pour un objectif spécifique",
"Dark": "Sombre", "Dark": "Sombre",
"Dashboard": "",
"Database": "Base de données", "Database": "Base de données",
"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 Chats": "Supprimer les chats", "Delete Chats": "Supprimer les chats",
"delete this link": "",
"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 +136,20 @@ ...@@ -113,18 +136,20 @@
"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 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,9 +160,11 @@ ...@@ -135,9 +160,11 @@
"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/)",
"Enter URL (e.g. http://localhost:11434)": "",
"Enter Your Email": "Entrez votre email", "Enter Your Email": "Entrez votre email",
"Enter Your Full Name": "Entrez votre nom complet", "Enter Your Full Name": "Entrez votre nom complet",
"Enter Your Password": "Entrez votre mot de passe", "Enter Your Password": "Entrez votre mot de passe",
...@@ -147,10 +174,15 @@ ...@@ -147,10 +174,15 @@
"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)",
"Full Screen Mode": "Mode plein écran", "Full Screen Mode": "Mode plein écran",
...@@ -160,6 +192,7 @@ ...@@ -160,6 +192,7 @@
"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",
...@@ -177,6 +210,7 @@ ...@@ -177,6 +210,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",
"Listening...": "Écoute...", "Listening...": "Écoute...",
"LLMs can make mistakes. Verify important information.": "Les LLMs peuvent faire des erreurs. Vérifiez les informations importantes.", "LLMs can make mistakes. Verify important information.": "Les LLMs peuvent faire des erreurs. Vérifiez les informations importantes.",
...@@ -187,14 +221,17 @@ ...@@ -187,14 +221,17 @@
"Manage Ollama Models": "Gérer les modèles Ollama", "Manage Ollama Models": "Gérer les modèles Ollama",
"Max Tokens": "Tokens maximaux", "Max Tokens": "Tokens maximaux",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Un maximum de 3 modèles peut être téléchargé simultanément. Veuillez réessayer plus tard.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Un maximum de 3 modèles peut être téléchargé simultanément. Veuillez réessayer plus tard.",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau", "Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY", "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",
...@@ -205,6 +242,7 @@ ...@@ -205,6 +242,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",
...@@ -213,10 +251,15 @@ ...@@ -213,10 +251,15 @@
"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",
"No results found": "",
"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é",
...@@ -229,20 +272,29 @@ ...@@ -229,20 +272,29 @@
"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": "",
"Overview": "",
"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",
"Profile": "Profil", "Positive attitude": "",
"Profile Image": "",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
"Prompt Content": "Contenu du prompt", "Prompt Content": "Contenu du prompt",
"Prompt suggestions": "Suggestions de prompt", "Prompt suggestions": "Suggestions de prompt",
"Prompts": "Prompts", "Prompts": "Prompts",
"Pull \"{{searchValue}}\" from Ollama.com": "",
"Pull a model from Ollama.com": "Tirer un modèle de Ollama.com", "Pull a model from Ollama.com": "Tirer un modèle de Ollama.com",
"Pull Progress": "Progression du tirage", "Pull Progress": "Progression du tirage",
"Query Params": "Paramètres de requête", "Query Params": "Paramètres de requête",
...@@ -250,10 +302,16 @@ ...@@ -250,10 +302,16 @@
"Raw Format": "Format brut", "Raw Format": "Format brut",
"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": "",
"Release Notes": "Notes de version", "Release Notes": "Notes de version",
"Relevance Threshold": "",
"Remove": "",
"Remove Model": "",
"Rename": "",
"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",
...@@ -268,6 +326,7 @@ ...@@ -268,6 +326,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",
...@@ -287,37 +346,46 @@ ...@@ -287,37 +346,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": "à",
...@@ -333,13 +401,19 @@ ...@@ -333,13 +401,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",
...@@ -348,7 +422,9 @@ ...@@ -348,7 +422,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 à",
...@@ -358,6 +434,8 @@ ...@@ -358,6 +434,8 @@
"Write a prompt suggestion (e.g. Who are you?)": "Écrivez un prompt (e.x. Qui est-tu ?)", "Write a prompt suggestion (e.g. Who are you?)": "Écrivez un prompt (e.x. Qui est-tu ?)",
"Write a summary in 50 words that summarizes [topic or keyword].": "Ecrivez un résumé en 50 mots [sujet ou mot-clé]", "Write a summary in 50 words that summarizes [topic or keyword].": "Ecrivez un résumé en 50 mots [sujet ou mot-clé]",
"You": "You", "You": "You",
"You have no archived conversations.": "",
"You have shared this chat": "",
"You're a helpful assistant.": "Vous êtes un assistant utile", "You're a helpful assistant.": "Vous êtes un assistant utile",
"You're now logged in.": "Vous êtes maintenant connecté." "You're now logged in.": "Vous êtes maintenant connecté."
} }
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