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

Merge pull request #2376 from open-webui/dev

0.1.125
parents 90503be2 bcc2bab6
...@@ -268,75 +268,73 @@ ...@@ -268,75 +268,73 @@
</title> </title>
</svelte:head> </svelte:head>
<div class="min-h-screen max-h-[100dvh] w-full flex justify-center dark:text-white"> <div class=" flex flex-col justify-between w-full overflow-y-auto h-full">
<div class=" flex flex-col justify-between w-full overflow-y-auto h-[100dvh]"> <div class="mx-auto w-full md:px-0 h-full">
<div class="max-w-2xl mx-auto w-full px-3 md:px-0 my-10 h-full"> <div class=" flex flex-col h-full">
<div class=" flex flex-col h-full"> <div class="flex flex-col justify-between mb-2.5 gap-1">
<div class="flex flex-col justify-between mb-2.5 gap-1"> <div class="flex justify-between items-center gap-2">
<div class="flex justify-between items-center gap-2"> <div class=" text-lg font-semibold self-center flex">
<div class=" text-2xl font-semibold self-center flex"> {$i18n.t('Playground')}
{$i18n.t('Playground')} <span class=" text-xs text-gray-500 self-center ml-1">{$i18n.t('(Beta)')}</span>
<span class=" text-xs text-gray-500 self-center ml-1">{$i18n.t('(Beta)')}</span>
</div>
<div>
<button
class=" flex items-center gap-0.5 text-xs px-2.5 py-0.5 rounded-lg {mode ===
'chat' && 'text-sky-600 dark:text-sky-200 bg-sky-200/30'} {mode === 'complete' &&
'text-green-600 dark:text-green-200 bg-green-200/30'} "
on:click={() => {
if (mode === 'complete') {
mode = 'chat';
} else {
mode = 'complete';
}
}}
>
{#if mode === 'complete'}
{$i18n.t('Text Completion')}
{:else if mode === 'chat'}
{$i18n.t('Chat')}
{/if}
<div>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 16 16"
fill="currentColor"
class="w-3 h-3"
>
<path
fill-rule="evenodd"
d="M5.22 10.22a.75.75 0 0 1 1.06 0L8 11.94l1.72-1.72a.75.75 0 1 1 1.06 1.06l-2.25 2.25a.75.75 0 0 1-1.06 0l-2.25-2.25a.75.75 0 0 1 0-1.06ZM10.78 5.78a.75.75 0 0 1-1.06 0L8 4.06 6.28 5.78a.75.75 0 0 1-1.06-1.06l2.25-2.25a.75.75 0 0 1 1.06 0l2.25 2.25a.75.75 0 0 1 0 1.06Z"
clip-rule="evenodd"
/>
</svg>
</div>
</button>
</div>
</div> </div>
<div class="flex flex-col gap-1 w-full"> <div>
<div class="flex w-full"> <button
<div class="overflow-hidden w-full"> class=" flex items-center gap-0.5 text-xs px-2.5 py-0.5 rounded-lg {mode === 'chat' &&
<div class="max-w-full"> 'text-sky-600 dark:text-sky-200 bg-sky-200/30'} {mode === 'complete' &&
<Selector 'text-green-600 dark:text-green-200 bg-green-200/30'} "
placeholder={$i18n.t('Select a model')} on:click={() => {
items={$models if (mode === 'complete') {
.filter((model) => model.name !== 'hr') mode = 'chat';
.map((model) => ({ } else {
value: model.id, mode = 'complete';
label: model.name, }
info: model }}
}))} >
bind:value={selectedModelId} {#if mode === 'complete'}
className="w-[42rem]" {$i18n.t('Text Completion')}
{:else if mode === 'chat'}
{$i18n.t('Chat')}
{/if}
<div>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 16 16"
fill="currentColor"
class="w-3 h-3"
>
<path
fill-rule="evenodd"
d="M5.22 10.22a.75.75 0 0 1 1.06 0L8 11.94l1.72-1.72a.75.75 0 1 1 1.06 1.06l-2.25 2.25a.75.75 0 0 1-1.06 0l-2.25-2.25a.75.75 0 0 1 0-1.06ZM10.78 5.78a.75.75 0 0 1-1.06 0L8 4.06 6.28 5.78a.75.75 0 0 1-1.06-1.06l2.25-2.25a.75.75 0 0 1 1.06 0l2.25 2.25a.75.75 0 0 1 0 1.06Z"
clip-rule="evenodd"
/> />
</div> </svg>
</div>
</button>
</div>
</div>
<div class="flex flex-col gap-1 w-full">
<div class="flex w-full">
<div class="overflow-hidden w-full">
<div class="max-w-full">
<Selector
placeholder={$i18n.t('Select a model')}
items={$models
.filter((model) => model.name !== 'hr')
.map((model) => ({
value: model.id,
label: model.name,
info: model
}))}
bind:value={selectedModelId}
/>
</div> </div>
</div> </div>
</div>
<!-- <button <!-- <button
class=" self-center dark:hover:text-gray-300" class=" self-center dark:hover:text-gray-300"
id="open-settings-button" id="open-settings-button"
on:click={async () => {}} on:click={async () => {}}
...@@ -361,67 +359,66 @@ ...@@ -361,67 +359,66 @@
/> />
</svg> </svg>
</button> --> </button> -->
</div>
</div> </div>
</div>
{#if mode === 'chat'} {#if mode === 'chat'}
<div class="p-1"> <div class="p-1">
<div class="p-3 outline outline-1 outline-gray-200 dark:outline-gray-800 rounded-lg"> <div class="p-3 outline outline-1 outline-gray-200 dark:outline-gray-800 rounded-lg">
<div class=" text-sm font-medium">{$i18n.t('System')}</div> <div class=" text-sm font-medium">{$i18n.t('System')}</div>
<textarea
id="system-textarea"
class="w-full h-full bg-transparent resize-none outline-none text-sm"
bind:value={system}
placeholder={$i18n.t("You're a helpful assistant.")}
rows="4"
/>
</div>
</div>
{/if}
<div
class=" pb-2.5 flex flex-col justify-between w-full flex-auto overflow-auto h-0"
id="messages-container"
bind:this={messagesContainerElement}
>
<div class=" h-full w-full flex flex-col">
<div class="flex-1 p-1">
{#if mode === 'complete'}
<textarea <textarea
id="system-textarea" id="text-completion-textarea"
class="w-full h-full bg-transparent resize-none outline-none text-sm" bind:this={textCompletionAreaElement}
bind:value={system} class="w-full h-full p-3 bg-transparent outline outline-1 outline-gray-200 dark:outline-gray-800 resize-none rounded-lg text-sm"
bind:value={text}
placeholder={$i18n.t("You're a helpful assistant.")} placeholder={$i18n.t("You're a helpful assistant.")}
rows="4"
/> />
</div> {:else if mode === 'chat'}
</div> <ChatCompletion bind:messages />
{/if} {/if}
<div
class=" pb-2.5 flex flex-col justify-between w-full flex-auto overflow-auto h-0"
id="messages-container"
bind:this={messagesContainerElement}
>
<div class=" h-full w-full flex flex-col">
<div class="flex-1 p-1">
{#if mode === 'complete'}
<textarea
id="text-completion-textarea"
bind:this={textCompletionAreaElement}
class="w-full h-full p-3 bg-transparent outline outline-1 outline-gray-200 dark:outline-gray-800 resize-none rounded-lg text-sm"
bind:value={text}
placeholder={$i18n.t("You're a helpful assistant.")}
/>
{:else if mode === 'chat'}
<ChatCompletion bind:messages />
{/if}
</div>
</div> </div>
</div> </div>
</div>
<div class="pb-2"> <div class="pb-3">
{#if !loading} {#if !loading}
<button <button
class="px-3 py-1.5 text-sm font-medium bg-emerald-600 hover:bg-emerald-700 text-gray-50 transition rounded-lg" class="px-3 py-1.5 text-sm font-medium bg-emerald-600 hover:bg-emerald-700 text-gray-50 transition rounded-lg"
on:click={() => { on:click={() => {
submitHandler(); submitHandler();
}} }}
> >
{$i18n.t('Submit')} {$i18n.t('Submit')}
</button> </button>
{:else} {:else}
<button <button
class="px-3 py-1.5 text-sm font-medium bg-gray-100 hover:bg-gray-200 text-gray-900 transition rounded-lg" class="px-3 py-1.5 text-sm font-medium bg-gray-100 hover:bg-gray-200 text-gray-900 transition rounded-lg"
on:click={() => { on:click={() => {
stopResponse(); stopResponse();
}} }}
> >
{$i18n.t('Cancel')} {$i18n.t('Cancel')}
</button> </button>
{/if} {/if}
</div>
</div> </div>
</div> </div>
</div> </div>
......
<script lang="ts">
import { toast } from 'svelte-sonner';
import fileSaver from 'file-saver';
const { saveAs } = fileSaver;
import { onMount, getContext } from 'svelte';
import { WEBUI_NAME, prompts } from '$lib/stores';
import { createNewPrompt, deletePromptByCommand, getPrompts } from '$lib/apis/prompts';
import { error } from '@sveltejs/kit';
import { goto } from '$app/navigation';
const i18n = getContext('i18n');
let importFiles = '';
let query = '';
let promptsImportInputElement: HTMLInputElement;
const sharePrompt = async (prompt) => {
toast.success($i18n.t('Redirecting you to OpenWebUI Community'));
const url = 'https://openwebui.com';
const tab = await window.open(`${url}/prompts/create`, '_blank');
window.addEventListener(
'message',
(event) => {
if (event.origin !== url) return;
if (event.data === 'loaded') {
tab.postMessage(JSON.stringify(prompt), '*');
}
},
false
);
};
const deletePrompt = async (command) => {
await deletePromptByCommand(localStorage.token, command);
await prompts.set(await getPrompts(localStorage.token));
};
</script>
<svelte:head>
<title>
{$i18n.t('Prompts')} | {$WEBUI_NAME}
</title>
</svelte:head>
<div class="mb-3 flex justify-between items-center">
<div class=" text-lg font-semibold self-center">{$i18n.t('Prompts')}</div>
</div>
<div class=" flex w-full space-x-2">
<div class="flex flex-1">
<div class=" self-center ml-1 mr-3">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
class="w-4 h-4"
>
<path
fill-rule="evenodd"
d="M9 3.5a5.5 5.5 0 100 11 5.5 5.5 0 000-11zM2 9a7 7 0 1112.452 4.391l3.328 3.329a.75.75 0 11-1.06 1.06l-3.329-3.328A7 7 0 012 9z"
clip-rule="evenodd"
/>
</svg>
</div>
<input
class=" w-full text-sm pr-4 py-1 rounded-r-xl outline-none bg-transparent"
bind:value={query}
placeholder={$i18n.t('Search Prompts')}
/>
</div>
<div>
<a
class=" px-2 py-2 rounded-xl border border-gray-200 dark:border-gray-600 dark:border-0 hover:bg-gray-100 dark:bg-gray-800 dark:hover:bg-gray-700 transition font-medium text-sm flex items-center space-x-1"
href="/workspace/prompts/create"
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 16 16"
fill="currentColor"
class="w-4 h-4"
>
<path
d="M8.75 3.75a.75.75 0 0 0-1.5 0v3.5h-3.5a.75.75 0 0 0 0 1.5h3.5v3.5a.75.75 0 0 0 1.5 0v-3.5h3.5a.75.75 0 0 0 0-1.5h-3.5v-3.5Z"
/>
</svg>
</a>
</div>
</div>
<hr class=" dark:border-gray-850 my-2.5" />
<div class="my-3 mb-5">
{#each $prompts.filter((p) => query === '' || p.command.includes(query)) as prompt}
<div
class=" flex space-x-4 cursor-pointer w-full px-3 py-2 dark:hover:bg-white/5 hover:bg-black/5 rounded-xl"
>
<div class=" flex flex-1 space-x-4 cursor-pointer w-full">
<a href={`/workspace/prompts/edit?command=${encodeURIComponent(prompt.command)}`}>
<div class=" flex-1 self-center pl-5">
<div class=" font-bold">{prompt.command}</div>
<div class=" text-xs overflow-hidden text-ellipsis line-clamp-1">
{prompt.title}
</div>
</div>
</a>
</div>
<div class="flex flex-row space-x-1 self-center">
<a
class="self-center w-fit text-sm px-2 py-2 dark:text-gray-300 dark:hover:text-white hover:bg-black/5 dark:hover:bg-white/5 rounded-xl"
type="button"
href={`/workspace/prompts/edit?command=${encodeURIComponent(prompt.command)}`}
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-4 h-4"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M16.862 4.487l1.687-1.688a1.875 1.875 0 112.652 2.652L6.832 19.82a4.5 4.5 0 01-1.897 1.13l-2.685.8.8-2.685a4.5 4.5 0 011.13-1.897L16.863 4.487zm0 0L19.5 7.125"
/>
</svg>
</a>
<button
class="self-center w-fit text-sm px-2 py-2 dark:text-gray-300 dark:hover:text-white hover:bg-black/5 dark:hover:bg-white/5 rounded-xl"
type="button"
on:click={() => {
// console.log(modelfile);
sessionStorage.prompt = JSON.stringify(prompt);
goto('/workspace/prompts/create');
}}
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-4 h-4"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M15.75 17.25v3.375c0 .621-.504 1.125-1.125 1.125h-9.75a1.125 1.125 0 0 1-1.125-1.125V7.875c0-.621.504-1.125 1.125-1.125H6.75a9.06 9.06 0 0 1 1.5.124m7.5 10.376h3.375c.621 0 1.125-.504 1.125-1.125V11.25c0-4.46-3.243-8.161-7.5-8.876a9.06 9.06 0 0 0-1.5-.124H9.375c-.621 0-1.125.504-1.125 1.125v3.5m7.5 10.375H9.375a1.125 1.125 0 0 1-1.125-1.125v-9.25m12 6.625v-1.875a3.375 3.375 0 0 0-3.375-3.375h-1.5a1.125 1.125 0 0 1-1.125-1.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H9.75"
/>
</svg>
</button>
<button
class="self-center w-fit text-sm px-2 py-2 dark:text-gray-300 dark:hover:text-white hover:bg-black/5 dark:hover:bg-white/5 rounded-xl"
type="button"
on:click={() => {
sharePrompt(prompt);
}}
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-4 h-4"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M7.217 10.907a2.25 2.25 0 100 2.186m0-2.186c.18.324.283.696.283 1.093s-.103.77-.283 1.093m0-2.186l9.566-5.314m-9.566 7.5l9.566 5.314m0 0a2.25 2.25 0 103.935 2.186 2.25 2.25 0 00-3.935-2.186zm0-12.814a2.25 2.25 0 103.933-2.185 2.25 2.25 0 00-3.933 2.185z"
/>
</svg>
</button>
<button
class="self-center w-fit text-sm px-2 py-2 dark:text-gray-300 dark:hover:text-white hover:bg-black/5 dark:hover:bg-white/5 rounded-xl"
type="button"
on:click={() => {
deletePrompt(prompt.command);
}}
>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="w-4 h-4"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M14.74 9l-.346 9m-4.788 0L9.26 9m9.968-3.21c.342.052.682.107 1.022.166m-1.022-.165L18.16 19.673a2.25 2.25 0 01-2.244 2.077H8.084a2.25 2.25 0 01-2.244-2.077L4.772 5.79m14.456 0a48.108 48.108 0 00-3.478-.397m-12 .562c.34-.059.68-.114 1.022-.165m0 0a48.11 48.11 0 013.478-.397m7.5 0v-.916c0-1.18-.91-2.164-2.09-2.201a51.964 51.964 0 00-3.32 0c-1.18.037-2.09 1.022-2.09 2.201v.916m7.5 0a48.667 48.667 0 00-7.5 0"
/>
</svg>
</button>
</div>
</div>
{/each}
</div>
<div class=" flex justify-end w-full mb-3">
<div class="flex space-x-2">
<input
id="prompts-import-input"
bind:this={promptsImportInputElement}
bind:files={importFiles}
type="file"
accept=".json"
hidden
on:change={() => {
console.log(importFiles);
const reader = new FileReader();
reader.onload = async (event) => {
const savedPrompts = JSON.parse(event.target.result);
console.log(savedPrompts);
for (const prompt of savedPrompts) {
await createNewPrompt(
localStorage.token,
prompt.command.charAt(0) === '/' ? prompt.command.slice(1) : prompt.command,
prompt.title,
prompt.content
).catch((error) => {
toast.error(error);
return null;
});
}
await prompts.set(await getPrompts(localStorage.token));
};
reader.readAsText(importFiles[0]);
}}
/>
<button
class="flex text-xs items-center space-x-1 px-3 py-1.5 rounded-xl bg-gray-50 hover:bg-gray-100 dark:bg-gray-800 dark:hover:bg-gray-700 dark:text-gray-200 transition"
on:click={() => {
promptsImportInputElement.click();
}}
>
<div class=" self-center mr-2 font-medium">{$i18n.t('Import Prompts')}</div>
<div class=" self-center">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 16 16"
fill="currentColor"
class="w-4 h-4"
>
<path
fill-rule="evenodd"
d="M4 2a1.5 1.5 0 0 0-1.5 1.5v9A1.5 1.5 0 0 0 4 14h8a1.5 1.5 0 0 0 1.5-1.5V6.621a1.5 1.5 0 0 0-.44-1.06L9.94 2.439A1.5 1.5 0 0 0 8.878 2H4Zm4 9.5a.75.75 0 0 1-.75-.75V8.06l-.72.72a.75.75 0 0 1-1.06-1.06l2-2a.75.75 0 0 1 1.06 0l2 2a.75.75 0 1 1-1.06 1.06l-.72-.72v2.69a.75.75 0 0 1-.75.75Z"
clip-rule="evenodd"
/>
</svg>
</div>
</button>
<button
class="flex text-xs items-center space-x-1 px-3 py-1.5 rounded-xl bg-gray-50 hover:bg-gray-100 dark:bg-gray-800 dark:hover:bg-gray-700 dark:text-gray-200 transition"
on:click={async () => {
// promptsImportInputElement.click();
let blob = new Blob([JSON.stringify($prompts)], {
type: 'application/json'
});
saveAs(blob, `prompts-export-${Date.now()}.json`);
}}
>
<div class=" self-center mr-2 font-medium">{$i18n.t('Export Prompts')}</div>
<div class=" self-center">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 16 16"
fill="currentColor"
class="w-4 h-4"
>
<path
fill-rule="evenodd"
d="M4 2a1.5 1.5 0 0 0-1.5 1.5v9A1.5 1.5 0 0 0 4 14h8a1.5 1.5 0 0 0 1.5-1.5V6.621a1.5 1.5 0 0 0-.44-1.06L9.94 2.439A1.5 1.5 0 0 0 8.878 2H4Zm4 3.5a.75.75 0 0 1 .75.75v2.69l.72-.72a.75.75 0 1 1 1.06 1.06l-2 2a.75.75 0 0 1-1.06 0l-2-2a.75.75 0 0 1 1.06-1.06l.72.72V6.25A.75.75 0 0 1 8 5.5Z"
clip-rule="evenodd"
/>
</svg>
</div>
</button>
<!-- <button
on:click={() => {
loadDefaultPrompts();
}}
>
dd
</button> -->
</div>
</div>
<div class=" my-16">
<div class=" text-lg font-semibold mb-3">{$i18n.t('Made by OpenWebUI Community')}</div>
<a
class=" flex space-x-4 cursor-pointer w-full mb-3 px-3 py-2"
href="https://openwebui.com/?type=prompts"
target="_blank"
>
<div class=" self-center w-10">
<div
class="w-full h-10 flex justify-center rounded-full bg-transparent dark:bg-gray-700 border border-dashed border-gray-200"
>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor" class="w-6">
<path
fill-rule="evenodd"
d="M12 3.75a.75.75 0 01.75.75v6.75h6.75a.75.75 0 010 1.5h-6.75v6.75a.75.75 0 01-1.5 0v-6.75H4.5a.75.75 0 010-1.5h6.75V4.5a.75.75 0 01.75-.75z"
clip-rule="evenodd"
/>
</svg>
</div>
</div>
<div class=" self-center">
<div class=" font-bold">{$i18n.t('Discover a prompt')}</div>
<div class=" text-sm">{$i18n.t('Discover, download, and explore custom prompts')}</div>
</div>
</a>
</div>
import { dev } from '$app/environment'; import { browser, dev } from '$app/environment';
// import { version } from '../../package.json'; // import { version } from '../../package.json';
export const APP_NAME = 'Open WebUI'; export const APP_NAME = 'Open WebUI';
export const WEBUI_BASE_URL = dev ? `http://${location.hostname}:8080` : ``; export const WEBUI_BASE_URL = browser ? (dev ? `http://${location.hostname}:8080` : ``) : ``;
export const WEBUI_API_BASE_URL = `${WEBUI_BASE_URL}/api/v1`; export const WEBUI_API_BASE_URL = `${WEBUI_BASE_URL}/api/v1`;
......
...@@ -37,7 +37,7 @@ const createIsLoadingStore = (i18n: i18nType) => { ...@@ -37,7 +37,7 @@ const createIsLoadingStore = (i18n: i18nType) => {
return isLoading; return isLoading;
}; };
export const initI18n = (defaultLocale: string) => { export const initI18n = (defaultLocale: string | undefined) => {
let detectionOrder = defaultLocale let detectionOrder = defaultLocale
? ['querystring', 'localStorage'] ? ['querystring', 'localStorage']
: ['querystring', 'localStorage', 'navigator']; : ['querystring', 'localStorage', 'navigator'];
......
{ {
"'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "", "'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "",
"(Beta)": "(تجريبي)", "(Beta)": "(تجريبي)",
"(e.g. `sh webui.sh --api`)": "(مثال `sh webui.sh --api`)", "(e.g. `sh webui.sh --api`)": "( `sh webui.sh --api`مثال)",
"(latest)": "(الأخير)", "(latest)": "(الأخير)",
"{{modelName}} is thinking...": "{{modelName}} ...يفكر", "{{modelName}} is thinking...": "{{modelName}} ...يفكر",
"{{user}}'s Chats": "{{user}}' الدردشات", "{{user}}'s Chats": "{{user}}' الدردشات",
"{{webUIName}} Backend Required": "", "{{webUIName}} Backend Required": "{{webUIName}} مطلوب",
"a user": "المستخدم", "a user": "المستخدم",
"About": "عن", "About": "عن",
"Account": "الحساب", "Account": "الحساب",
"Accurate information": "معلومات دقيقة", "Accurate information": "معلومات دقيقة",
"Add": "",
"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": "أضف وصفًا قصيرًا حول ما يفعله ملف الموديل هذا",
"Add a short title for this prompt": "أضف عنوانًا قصيرًا لبداء المحادثة", "Add a short title for this prompt": "أضف عنوانًا قصيرًا لبداء المحادثة",
"Add a tag": "أضافة تاق", "Add a tag": "أضافة تاق",
"Add custom prompt": "", "Add custom prompt": "أضافة مطالبة مخصصه",
"Add Docs": "إضافة المستندات", "Add Docs": "إضافة المستندات",
"Add Files": "إضافة ملفات", "Add Files": "إضافة ملفات",
"Add Memory": "",
"Add message": "اضافة رسالة", "Add message": "اضافة رسالة",
"Add Model": "اضافة موديل", "Add Model": "اضافة موديل",
"Add Tags": "اضافة تاق", "Add Tags": "اضافة تاق",
"Add User": "اضافة مستخدم", "Add User": "اضافة مستخدم",
"Adjusting these settings will apply changes universally to all users.": "سيؤدي ضبط هذه الإعدادات إلى تطبيق التغييرات بشكل عام على كافة المستخدمين.", "Adjusting these settings will apply changes universally to all users.": "سيؤدي ضبط هذه الإعدادات إلى تطبيق التغييرات بشكل عام على كافة المستخدمين",
"admin": "المشرف", "admin": "المشرف",
"Admin Panel": "لوحة التحكم", "Admin Panel": "لوحة التحكم",
"Admin Settings": "اعدادات المشرف", "Admin Settings": "اعدادات المشرف",
"Advanced Parameters": "التعليمات المتقدمة", "Advanced Parameters": "التعليمات المتقدمة",
"all": "الكل", "all": "الكل",
"All Documents": "", "All Documents": "جميع الملفات",
"All Users": "جميع المستخدمين", "All Users": "جميع المستخدمين",
"Allow": "يسمح", "Allow": "يسمح",
"Allow Chat Deletion": "يستطيع حذف المحادثات", "Allow Chat Deletion": "يستطيع حذف المحادثات",
...@@ -42,23 +44,23 @@ ...@@ -42,23 +44,23 @@
"API Key created.": "API تم أنشاء المفتاح", "API Key created.": "API تم أنشاء المفتاح",
"API keys": "API المفاتيح", "API keys": "API المفاتيح",
"API RPM": "API RPM", "API RPM": "API RPM",
"April": "", "April": "أبريل",
"Archive": "الأرشيف", "Archive": "الأرشيف",
"Archived Chats": "الأرشيف المحادثات", "Archived Chats": "الأرشيف المحادثات",
"are allowed - Activate this command by typing": "مسموح - قم بتنشيط هذا الأمر عن طريق الكتابة", "are allowed - Activate this command by typing": "مسموح - قم بتنشيط هذا الأمر عن طريق الكتابة",
"Are you sure?": "هل أنت متأكد ؟", "Are you sure?": "هل أنت متأكد ؟",
"Attach file": "", "Attach file": "أرفق ملف",
"Attention to detail": "انتبه للتفاصيل", "Attention to detail": "انتبه للتفاصيل",
"Audio": "صوتي", "Audio": "صوتي",
"August": "", "August": "أغسطس",
"Auto-playback response": "استجابة التشغيل التلقائي", "Auto-playback response": "استجابة التشغيل التلقائي",
"Auto-send input after 3 sec.": "إرسال تلقائي للإدخال بعد 3 ثوانٍ.", "Auto-send input after 3 sec.": "إرسال تلقائي للإدخال بعد 3 ثواني.",
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 الرابط الرئيسي", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 الرابط الرئيسي",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 الرابط مطلوب", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 الرابط مطلوب",
"available!": "متاح", "available!": "متاح",
"Back": "خلف", "Back": "خلف",
"Bad Response": "استجابة خطاء", "Bad Response": "استجابة خطاء",
"before": "", "before": "قبل",
"Being lazy": "كون كسول", "Being lazy": "كون كسول",
"Builder Mode": "بناء الموديل", "Builder Mode": "بناء الموديل",
"Bypass SSL verification for Websites": "", "Bypass SSL verification for Websites": "",
...@@ -66,8 +68,10 @@ ...@@ -66,8 +68,10 @@
"Categories": "التصنيفات", "Categories": "التصنيفات",
"Change Password": "تغير الباسورد", "Change Password": "تغير الباسورد",
"Chat": "المحادثة", "Chat": "المحادثة",
"Chat Bubble UI": "",
"Chat direction": "",
"Chat History": "تاريخ المحادثة", "Chat History": "تاريخ المحادثة",
"Chat History is off for this browser.": "سجل الدردشة معطل لهذا المتصفح.", "Chat History is off for this browser.": "سجل الدردشة معطل لهذا المتصفح",
"Chats": "المحادثات", "Chats": "المحادثات",
"Check Again": "تحقق مرة اخرى", "Check Again": "تحقق مرة اخرى",
"Check for updates": "تحقق من التحديثات", "Check for updates": "تحقق من التحديثات",
...@@ -76,13 +80,13 @@ ...@@ -76,13 +80,13 @@
"Chunk Overlap": "Chunk تداخل", "Chunk Overlap": "Chunk تداخل",
"Chunk Params": "Chunk المتغيرات", "Chunk Params": "Chunk المتغيرات",
"Chunk Size": "Chunk حجم", "Chunk Size": "Chunk حجم",
"Citation": "", "Citation": "اقتباس",
"Click here for help.": "أضغط هنا للمساعدة", "Click here for help.": "أضغط هنا للمساعدة",
"Click here to": "", "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 a csv file.": "أضغط هنا للاختيار ملف csv", "Click here to select a csv file.": "أضغط هنا للاختيار ملف csv",
"Click here to select documents.": "انقر هنا لاختيار المستندات.", "Click here to select documents.": "انقر هنا لاختيار المستندات",
"click here.": "أضغط هنا", "click here.": "أضغط هنا",
"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": "أغلق",
...@@ -97,17 +101,17 @@ ...@@ -97,17 +101,17 @@
"Context Length": "طول السياق", "Context Length": "طول السياق",
"Continue Response": "متابعة الرد", "Continue Response": "متابعة الرد",
"Conversation Mode": "وضع المحادثة", "Conversation Mode": "وضع المحادثة",
"Copied shared chat URL to clipboard!": "تم نسخ عنوان URL للدردشة المشتركة إلى الحافظة!", "Copied shared chat URL to clipboard!": "تم نسخ عنوان URL للدردشة المشتركة إلى الحافظة",
"Copy": "نسخ", "Copy": "نسخ",
"Copy last code block": "انسخ كتلة التعليمات البرمجية الأخيرة", "Copy last code block": "انسخ كتلة التعليمات البرمجية الأخيرة",
"Copy last response": "انسخ الرد الأخير", "Copy last response": "انسخ الرد الأخير",
"Copy Link": "أنسخ الرابط", "Copy Link": "أنسخ الرابط",
"Copying to clipboard was successful!": "تم النسخ إلى الحافظة بنجاح!", "Copying to clipboard was successful!": "تم النسخ إلى الحافظة بنجاح",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "قم بإنشاء عبارة موجزة مكونة من 3-5 كلمات كرأس للاستعلام التالي، مع الالتزام الصارم بالحد الأقصى لعدد الكلمات الذي يتراوح بين 3-5 كلمات وتجنب استخدام الكلمة 'عنوان':", "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "قم بإنشاء عبارة موجزة مكونة من 3-5 كلمات كرأس للاستعلام التالي، مع الالتزام الصارم بالحد الأقصى لعدد الكلمات الذي يتراوح بين 3-5 كلمات وتجنب استخدام الكلمة 'عنوان':",
"Create a modelfile": "إنشاء ملف نموذجي", "Create a modelfile": "إنشاء ملف نموذجي",
"Create Account": "إنشاء حساب", "Create Account": "إنشاء حساب",
"Create new key": "", "Create new key": "عمل مفتاح جديد",
"Create new secret key": "", "Create new secret key": "عمل سر جديد",
"Created at": "أنشئت في", "Created at": "أنشئت في",
"Created At": "أنشئت من", "Created At": "أنشئت من",
"Current Model": "الموديل المختار", "Current Model": "الموديل المختار",
...@@ -115,27 +119,26 @@ ...@@ -115,27 +119,26 @@
"Custom": "مخصص", "Custom": "مخصص",
"Customize Ollama models for a specific purpose": "تخصيص الموديل Ollama لغرض محدد", "Customize Ollama models for a specific purpose": "تخصيص الموديل Ollama لغرض محدد",
"Dark": "مظلم", "Dark": "مظلم",
"Dashboard": "", "Dashboard": "لوحة التحكم",
"Database": "قاعدة البيانات", "Database": "قاعدة البيانات",
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm", "December": "ديسمبر",
"December": "",
"Default": "الإفتراضي", "Default": "الإفتراضي",
"Default (Automatic1111)": "الإفتراضي (Automatic1111)", "Default (Automatic1111)": "(Automatic1111) الإفتراضي",
"Default (SentenceTransformers)": "الإفتراضي (SentenceTransformers)", "Default (SentenceTransformers)": "(SentenceTransformers) الإفتراضي",
"Default (Web API)": "الإفتراضي (Web API)", "Default (Web API)": "(Web API) الإفتراضي",
"Default model updated": "الإفتراضي تحديث الموديل", "Default model updated": "الإفتراضي تحديث الموديل",
"Default Prompt Suggestions": "الإفتراضي Prompt الاقتراحات", "Default Prompt Suggestions": "الإفتراضي Prompt الاقتراحات",
"Default User Role": "الإفتراضي صلاحيات المستخدم", "Default User Role": "الإفتراضي صلاحيات المستخدم",
"delete": "حذف", "delete": "حذف",
"Delete": "حذف.", "Delete": "حذف",
"Delete a model": "حذف الموديل", "Delete a model": "حذف الموديل",
"Delete chat": "حذف المحادثه", "Delete chat": "حذف المحادثه",
"Delete Chat": "حذف المحادثه.", "Delete Chat": "حذف المحادثه.",
"Delete Chats": "حذ المحادثات", "Delete Chats": "حذف المحادثات",
"delete this link": "", "delete this link": "أحذف هذا الرابط",
"Delete User": "حذف المستخدم", "Delete User": "حذف المستخدم",
"Deleted {{deleteModelTag}}": "حذف {{deleteModelTag}}", "Deleted {{deleteModelTag}}": "{{deleteModelTag}} حذف",
"Deleted {{tagName}}": "حذف {{tagName}}", "Deleted {{tagName}}": "{{tagName}} حذف",
"Description": "وصف", "Description": "وصف",
"Didn't fully follow instructions": "لم أتبع التعليمات بشكل كامل", "Didn't fully follow instructions": "لم أتبع التعليمات بشكل كامل",
"Disabled": "تعطيل", "Disabled": "تعطيل",
...@@ -152,7 +155,7 @@ ...@@ -152,7 +155,7 @@
"Don't have an account?": "ليس لديك حساب؟", "Don't have an account?": "ليس لديك حساب؟",
"Don't like the style": "لا أحب النمط", "Don't like the style": "لا أحب النمط",
"Download": "تحميل", "Download": "تحميل",
"Download canceled": "", "Download canceled": "تم اللغاء التحميل",
"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'. الوحدات الزمنية الصالحة هي 's', 'm', 'h'.", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. الوحدات الزمنية الصالحة هي 's', 'm', 'h'.",
...@@ -168,17 +171,18 @@ ...@@ -168,17 +171,18 @@
"Enabled": "تفعيل", "Enabled": "تفعيل",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.",
"Enter {{role}} message here": "أدخل رسالة {{role}} هنا", "Enter {{role}} message here": "أدخل رسالة {{role}} هنا",
"Enter a detail about yourself for your LLMs to recall": "",
"Enter Chunk Overlap": "أدخل Chunk المتداخل", "Enter Chunk Overlap": "أدخل Chunk المتداخل",
"Enter Chunk Size": "أدخل Chunk الحجم", "Enter Chunk Size": "أدخل Chunk الحجم",
"Enter Image Size (e.g. 512x512)": "أدخل حجم الصورة (e.g. 512x512)", "Enter Image Size (e.g. 512x512)": "(e.g. 512x512) أدخل حجم الصورة ",
"Enter language codes": "", "Enter language codes": "أدخل كود اللغة",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "أدخل عنوان URL الأساسي لواجهة برمجة تطبيقات LiteLLM (litellm_params.api_base)", "Enter LiteLLM API Base URL (litellm_params.api_base)": "أدخل عنوان URL الأساسي لواجهة برمجة تطبيقات LiteLLM (litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "أدخل مفتاح LiteLLM API (litellm_params.api_key)", "Enter LiteLLM API Key (litellm_params.api_key)": "أدخل مفتاح LiteLLM API (litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "أدخل LiteLLM API RPM (litllm_params.rpm)", "Enter LiteLLM API RPM (litellm_params.rpm)": "أدخل LiteLLM API RPM (litllm_params.rpm)",
"Enter LiteLLM Model (litellm_params.model)": "أدخل LiteLLM الموديل (litellm_params.model)", "Enter LiteLLM Model (litellm_params.model)": "أدخل LiteLLM الموديل (litellm_params.model)",
"Enter Max Tokens (litellm_params.max_tokens)": "أدخل أكثر Tokens (litellm_params.max_tokens)", "Enter Max Tokens (litellm_params.max_tokens)": "أدخل أكثر Tokens (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "أدخل الموديل تاق (e.g. {{modelTag}})", "Enter model tag (e.g. {{modelTag}})": "(e.g. {{modelTag}}) أدخل الموديل تاق",
"Enter Number of Steps (e.g. 50)": "أدخل عدد الخطوات (e.g. 50)", "Enter Number of Steps (e.g. 50)": "(e.g. 50) أدخل عدد الخطوات",
"Enter Score": "أدخل النتيجة", "Enter Score": "أدخل النتيجة",
"Enter stop sequence": "أدخل تسلسل التوقف", "Enter stop sequence": "أدخل تسلسل التوقف",
"Enter Top K": "Enter Top K", "Enter Top K": "Enter Top K",
...@@ -196,7 +200,7 @@ ...@@ -196,7 +200,7 @@
"Export Prompts": "مطالبات التصدير", "Export Prompts": "مطالبات التصدير",
"Failed to create API Key.": "فشل في إنشاء مفتاح API.", "Failed to create API Key.": "فشل في إنشاء مفتاح API.",
"Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة", "Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة",
"February": "", "February": "فبراير",
"Feel free to add specific details": "لا تتردد في إضافة تفاصيل محددة", "Feel free to add specific details": "لا تتردد في إضافة تفاصيل محددة",
"File Mode": "وضع الملف", "File Mode": "وضع الملف",
"File not found.": "لم يتم العثور على الملف.", "File not found.": "لم يتم العثور على الملف.",
...@@ -211,9 +215,10 @@ ...@@ -211,9 +215,10 @@
"General Settings": "الاعدادات العامة", "General Settings": "الاعدادات العامة",
"Generation Info": "معلومات الجيل", "Generation Info": "معلومات الجيل",
"Good Response": "استجابة جيدة", "Good Response": "استجابة جيدة",
"h:mm a": "",
"has no conversations.": "ليس لديه محادثات.", "has no conversations.": "ليس لديه محادثات.",
"Hello, {{name}}": "مرحبا, {{name}}", "Hello, {{name}}": " {{name}} مرحبا",
"Help": "", "Help": "مساعدة",
"Hide": "أخفاء", "Hide": "أخفاء",
"Hide Additional Params": "إخفاء المعلمات الإضافية", "Hide Additional Params": "إخفاء المعلمات الإضافية",
"How can I help you today?": "كيف استطيع مساعدتك اليوم؟", "How can I help you today?": "كيف استطيع مساعدتك اليوم؟",
...@@ -227,14 +232,14 @@ ...@@ -227,14 +232,14 @@
"Import Modelfiles": "استيراد ملفات النماذج", "Import Modelfiles": "استيراد ملفات النماذج",
"Import Prompts": "مطالبات الاستيراد", "Import Prompts": "مطالبات الاستيراد",
"Include `--api` flag when running stable-diffusion-webui": "قم بتضمين علامة `-api` عند تشغيل Stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "قم بتضمين علامة `-api` عند تشغيل Stable-diffusion-webui",
"Input commands": "", "Input commands": "إدخال الأوامر",
"Interface": "واجهه المستخدم", "Interface": "واجهه المستخدم",
"Invalid Tag": "", "Invalid Tag": "تاق غير صالحة",
"January": "", "January": "يناير",
"join our Discord for help.": "انضم إلى Discord للحصول على المساعدة.", "join our Discord for help.": "انضم إلى Discord للحصول على المساعدة.",
"JSON": "JSON", "JSON": "JSON",
"July": "", "July": "يوليو",
"June": "", "June": "يونيو",
"JWT Expiration": "JWT تجريبي", "JWT Expiration": "JWT تجريبي",
"JWT Token": "JWT Token", "JWT Token": "JWT Token",
"Keep Alive": "Keep Alive", "Keep Alive": "Keep Alive",
...@@ -242,18 +247,21 @@ ...@@ -242,18 +247,21 @@
"Language": "اللغة", "Language": "اللغة",
"Last Active": "آخر نشاط", "Last Active": "آخر نشاط",
"Light": "فاتح", "Light": "فاتح",
"Listening...": "جاري الاستماع...", "Listening...": "جاري الاستماع",
"LLMs can make mistakes. Verify important information.": "يمكن أن يرتكب LLM الأخطاء. التحقق من المعلومات الهامة.", "LLMs can make mistakes. Verify important information.": "يمكن أن تصدر بعض الأخطاء. لذلك يجب التحقق من المعلومات المهمة",
"Made by OpenWebUI Community": "تم إنشاؤه بواسطة مجتمع OpenWebUI", "LTR": "",
"Made by OpenWebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
"Make sure to enclose them with": "تأكد من إرفاقها", "Make sure to enclose them with": "تأكد من إرفاقها",
"Manage LiteLLM Models": "إدارة نماذج LiteLLM", "Manage LiteLLM Models": "LiteLLM إدارة نماذج ",
"Manage Models": "إدارة النماذج", "Manage Models": "إدارة النماذج",
"Manage Ollama Models": "إدارة موديلات Ollama", "Manage Ollama Models": "Ollama إدارة موديلات ",
"March": "", "March": "",
"Max Tokens": "Max Tokens", "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 نماذج كحد أقصى في وقت واحد. الرجاء معاودة المحاولة في وقت لاحق.",
"May": "", "May": "",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
"Minimum Score": "الحد الأدنى من النقاط", "Minimum Score": "الحد الأدنى من النقاط",
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
...@@ -263,7 +271,7 @@ ...@@ -263,7 +271,7 @@
"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 filesystem path detected. Model shortname is required for update, cannot continue.": "تم اكتشاف مسار نظام الملفات النموذجي. الاسم المختصر للنموذج مطلوب للتحديث، ولا يمكن الاستمرار.",
"Model Name": "أسم الموديل", "Model Name": "أسم الموديل",
"Model not selected": "لم تختار موديل", "Model not selected": "لم تختار موديل",
...@@ -276,23 +284,20 @@ ...@@ -276,23 +284,20 @@
"Modelfiles": "ملفات الموديل", "Modelfiles": "ملفات الموديل",
"Models": "الموديلات", "Models": "الموديلات",
"More": "المزيد", "More": "المزيد",
"My Documents": "مستنداتي",
"My Modelfiles": "ملفاتي النموذجية",
"My Prompts": "مطالباتي",
"Name": "الأسم", "Name": "الأسم",
"Name Tag": "أسم التاق", "Name Tag": "أسم التاق",
"Name your modelfile": "قم بتسمية ملف النموذج الخاص بك", "Name your modelfile": "قم بتسمية ملف النموذج الخاص بك",
"New Chat": "دردشة جديدة", "New Chat": "دردشة جديدة",
"New Password": "كلمة المرور الجديدة", "New Password": "كلمة المرور الجديدة",
"No results found": "", "No results found": "لا توجد نتايج",
"No source available": "", "No source available": "لا يوجد مصدر متاح",
"Not factually correct": "ليس صحيحا من حيث الواقع", "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": "لست متأكدا ماذا أكتب؟ التبديل إلى",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ملاحظة: إذا قمت بتعيين الحد الأدنى من النقاط، فلن يؤدي البحث إلا إلى إرجاع المستندات التي لها نقاط أكبر من أو تساوي الحد الأدنى من النقاط.", "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ملاحظة: إذا قمت بتعيين الحد الأدنى من النقاط، فلن يؤدي البحث إلا إلى إرجاع المستندات التي لها نقاط أكبر من أو تساوي الحد الأدنى من النقاط.",
"Notifications": "إشعارات", "Notifications": "إشعارات",
"November": "", "November": "نوفمبر",
"October": "", "October": "اكتوبر",
"Off": "أغلاق", "Off": "أغلاق",
"Okay, Let's Go!": "حسنا دعنا نذهب!", "Okay, Let's Go!": "حسنا دعنا نذهب!",
"OLED Dark": "OLED داكن", "OLED Dark": "OLED داكن",
...@@ -306,50 +311,51 @@ ...@@ -306,50 +311,51 @@
"Oops! Looks like the URL is invalid. Please double-check and try again.": "خطاء! يبدو أن عنوان URL غير صالح. يرجى التحقق مرة أخرى والمحاولة مرة أخرى.", "Oops! Looks like the URL is invalid. Please double-check and try again.": "خطاء! يبدو أن عنوان URL غير صالح. يرجى التحقق مرة أخرى والمحاولة مرة أخرى.",
"Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "خطاء! أنت تستخدم طريقة غير مدعومة (الواجهة الأمامية فقط). يرجى تقديم واجهة WebUI من الواجهة الخلفية.", "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "خطاء! أنت تستخدم طريقة غير مدعومة (الواجهة الأمامية فقط). يرجى تقديم واجهة WebUI من الواجهة الخلفية.",
"Open": "فتح", "Open": "فتح",
"Open AI": "فتح AI", "Open AI": "AI فتح",
"Open AI (Dall-E)": "فتح AI (Dall-E)", "Open AI (Dall-E)": "AI (Dall-E) فتح",
"Open new chat": "فتح محادثة جديده", "Open new chat": "فتح محادثة جديده",
"OpenAI": "OpenAI", "OpenAI": "OpenAI",
"OpenAI API": "OpenAI API", "OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API إعدادات", "OpenAI API Config": "OpenAI API إعدادات",
"OpenAI API Key is required.": "مطلوب مفتاح OpenAI API.", "OpenAI API Key is required.": "OpenAI API.مطلوب مفتاح ",
"OpenAI URL/Key required.": "مطلوب عنوان URL/مفتاح OpenAI.", "OpenAI URL/Key required.": "URL/مفتاح OpenAI.مطلوب عنوان ",
"or": "أو", "or": "أو",
"Other": "آخر", "Other": "آخر",
"Overview": "", "Overview": "عرض",
"Parameters": "Parameters", "Parameters": "Parameters",
"Password": "الباسورد", "Password": "الباسورد",
"PDF document (.pdf)": "PDF ملف (.pdf)", "PDF document (.pdf)": "PDF ملف (.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}} تم رفض الإذن عند الوصول إلى الميكروفون ",
"Personalization": "",
"Plain text (.txt)": "نص عادي (.txt)", "Plain text (.txt)": "نص عادي (.txt)",
"Playground": "مكان التجربة", "Playground": "مكان التجربة",
"Positive attitude": "موقف ايجابي", "Positive attitude": "موقف ايجابي",
"Previous 30 days": "", "Previous 30 days": "أخر 30 يوم",
"Previous 7 days": "", "Previous 7 days": "أخر 7 أيام",
"Profile Image": "صورة الملف الشخصي", "Profile Image": "صورة الملف الشخصي",
"Prompt": "", "Prompt": "مطالبة",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "موجه (على سبيل المثال: أخبرني بحقيقة ممتعة عن الإمبراطورية الرومانية)", "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 \"{{searchValue}}\" from Ollama.com": "Ollama.com \"{{searchValue}}\" أسحب من ",
"Pull a model from Ollama.com": "سحب الموديل من Ollama.com", "Pull a model from Ollama.com": "Ollama.com سحب الموديل من ",
"Pull Progress": "سحب التقدم", "Pull Progress": "سحب التقدم",
"Query Params": "Query Params", "Query Params": "Query Params",
"RAG Template": "RAG تنمبلت", "RAG Template": "RAG تنمبلت",
"Raw Format": "Raw فورمات", "Raw Format": "Raw فورمات",
"Read Aloud": "أقراء لي", "Read Aloud": "أقراء لي",
"Record voice": "سجل صوت", "Record voice": "سجل صوت",
"Redirecting you to OpenWebUI Community": "إعادة توجيهك إلى مجتمع OpenWebUI", "Redirecting you to OpenWebUI Community": "OpenWebUI إعادة توجيهك إلى مجتمع ",
"Refused when it shouldn't have": "رفض عندما لا ينبغي أن يكون", "Refused when it shouldn't have": "رفض عندما لا ينبغي أن يكون",
"Regenerate": "تجديد", "Regenerate": "تجديد",
"Release Notes": "ملاحظات الإصدار", "Release Notes": "ملاحظات الإصدار",
"Remove": "إزالة", "Remove": "إزالة",
"Remove Model": "", "Remove Model": "حذف الموديل",
"Rename": "", "Rename": "إعادة تسمية",
"Repeat Last N": "كرر آخر N", "Repeat Last N": "N كرر آخر",
"Repeat Penalty": "كرر المخالفة", "Repeat Penalty": "كرر المخالفة",
"Request Mode": "وضع الطلب", "Request Mode": "وضع الطلب",
"Reranking Model": "", "Reranking Model": "",
...@@ -360,28 +366,29 @@ ...@@ -360,28 +366,29 @@
"Role": "منصب", "Role": "منصب",
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "",
"Save": "حفظ", "Save": "حفظ",
"Save & Create": "حفظ وإنشاء", "Save & Create": "حفظ وإنشاء",
"Save & Submit": "حفظ وإرسال",
"Save & Update": "حفظ وتحديث", "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": "لم يعد حفظ سجلات الدردشة مباشرة في مساحة تخزين متصفحك مدعومًا. يرجى تخصيص بعض الوقت لتنزيل وحذف سجلات الدردشة الخاصة بك عن طريق النقر على الزر أدناه. لا تقلق، يمكنك بسهولة إعادة استيراد سجلات الدردشة الخاصة بك إلى الواجهة الخلفية من خلاله", "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": "مسح",
"Scan complete!": "تم المسح", "Scan complete!": "تم المسح",
"Scan for documents from {{path}}": " مسح على الملفات من {{path}}", "Scan for documents from {{path}}": "{{path}} مسح على الملفات من",
"Search": "البحث", "Search": "البحث",
"Search a model": "البحث عن موديل", "Search a model": "البحث عن موديل",
"Search Documents": "البحث المستندات", "Search Documents": "البحث المستندات",
"Search Prompts": "أبحث حث", "Search Prompts": "أبحث حث",
"See readme.md for instructions": "راجع readme.md للحصول على التعليمات", "See readme.md for instructions": "readme.md للحصول على التعليمات",
"See what's new": "ما الجديد", "See what's new": "ما الجديد",
"Seed": "Seed", "Seed": "Seed",
"Select a mode": "أختار موديل", "Select a mode": "أختار موديل",
"Select a model": "أختار الموديل", "Select a model": "أختار الموديل",
"Select an Ollama instance": "أختار سيرفر Ollama", "Select an Ollama instance": "أختار سيرفر ",
"Select model": "", "Select model": " أختار موديل",
"Send a Message": "أرسل رسالة.", "Send": "",
"Send message": "أرسل رسالة", "Send a Message": "يُرجى إدخال طلبك هنا",
"September": "", "Send message": "يُرجى إدخال طلبك هنا.",
"September": "سبتمبر",
"Server connection verified": "تم التحقق من اتصال الخادم", "Server connection verified": "تم التحقق من اتصال الخادم",
"Set as default": "الافتراضي", "Set as default": "الافتراضي",
"Set Default Model": "تفعيد الموديل الافتراضي", "Set Default Model": "تفعيد الموديل الافتراضي",
...@@ -396,7 +403,7 @@ ...@@ -396,7 +403,7 @@
"Settings saved successfully!": "تم حفظ الاعدادات بنجاح", "Settings saved successfully!": "تم حفظ الاعدادات بنجاح",
"Share": "كشاركة", "Share": "كشاركة",
"Share Chat": "مشاركة الدردشة", "Share Chat": "مشاركة الدردشة",
"Share to OpenWebUI Community": "شارك في مجتمع OpenWebUI", "Share to OpenWebUI Community": "OpenWebUI شارك في مجتمع",
"short-summary": "ملخص قصير", "short-summary": "ملخص قصير",
"Show": "عرض", "Show": "عرض",
"Show Additional Params": "إظهار المعلمات الإضافية", "Show Additional Params": "إظهار المعلمات الإضافية",
...@@ -407,17 +414,17 @@ ...@@ -407,17 +414,17 @@
"Sign Out": "تسجيل الخروج", "Sign Out": "تسجيل الخروج",
"Sign up": "تسجيل", "Sign up": "تسجيل",
"Signing in": "جاري الدخول", "Signing in": "جاري الدخول",
"Source": "", "Source": "المصدر",
"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 غير مدعومة في هذا المتصفح.", "SpeechRecognition API is not supported in this browser.": "API SpeechRecognition غير مدعومة في هذا المتصفح.",
"Stop Sequence": "وقف التسلسل", "Stop Sequence": "وقف التسلسل",
"STT Settings": "STT اعدادات", "STT Settings": "STT اعدادات",
"Submit": "إرسال", "Submit": "إرسال",
"Subtitle (e.g. about the Roman Empire)": "الترجمة (e.g. about the Roman Empire)", "Subtitle (e.g. about the Roman Empire)": "(e.g. about the Roman Empire) الترجمة",
"Success": "نجاح", "Success": "نجاح",
"Successfully updated.": "تم التحديث بنجاح.", "Successfully updated.": "تم التحديث بنجاح",
"Suggested": "", "Suggested": "مقترحات",
"Sync All": "مزامنة الكل", "Sync All": "مزامنة الكل",
"System": "النظام", "System": "النظام",
"System Prompt": "محادثة النظام", "System Prompt": "محادثة النظام",
...@@ -436,33 +443,33 @@ ...@@ -436,33 +443,33 @@
"Thorough explanation": "شرح شامل", "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)": "العناون (e.g. Tell me a fun fact)", "Title (e.g. Tell me a fun fact)": "(e.g. Tell me a fun fact) العناون",
"Title Auto-Generation": "توليد تلقائي للعنوان", "Title Auto-Generation": "توليد تلقائي للعنوان",
"Title cannot be an empty string.": "", "Title cannot be an empty string.": "العنوان مطلوب",
"Title Generation Prompt": "موجه إنشاء العنوان", "Title Generation Prompt": "موجه إنشاء العنوان",
"to": "الى", "to": "الى",
"To access the available model names for downloading,": "للوصول إلى أسماء الموديلات المتاحة للتنزيل،", "To access the available model names for downloading,": "للوصول إلى أسماء الموديلات المتاحة للتنزيل،",
"To access the GGUF models available for downloading,": "للوصول إلى الموديلات GGUF المتاحة للتنزيل،", "To access the GGUF models available for downloading,": "للوصول إلى الموديلات GGUF المتاحة للتنزيل،",
"to chat input.": "الى كتابة المحادثه", "to chat input.": "الى كتابة المحادثه",
"Today": "", "Today": "اليوم",
"Toggle settings": "فتح وأغلاق الاعدادات", "Toggle settings": "فتح وأغلاق الاعدادات",
"Toggle sidebar": "فتح وأغلاق الشريط الجانبي", "Toggle sidebar": "فتح وأغلاق الشريط الجانبي",
"Top K": "Top K", "Top K": "Top K",
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "هل تواجه مشكلة في الوصول إلى Olma؟", "Trouble accessing Ollama?": "هل تواجه مشكلة في الوصول",
"TTS Settings": "TTS اعدادات", "TTS Settings": "TTS اعدادات",
"Type Hugging Face Resolve (Download) URL": "اكتب عنوان URL لحل مشكلة الوجه (تنزيل).", "Type Hugging Face Resolve (Download) URL": "اكتب عنوان URL لحل مشكلة الوجه (تنزيل).",
"Uh-oh! There was an issue connecting to {{provider}}.": "خطاء أوه! حدثت مشكلة في الاتصال بـ {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "{{provider}}خطاء أوه! حدثت مشكلة في الاتصال بـ ",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "نوع ملف غير معروف '{{file_type}}', ولكن القبول والتعامل كنص عادي ", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "نوع ملف غير معروف '{{file_type}}', ولكن القبول والتعامل كنص عادي ",
"Update and Copy Link": "تحديث ونسخ الرابط", "Update and Copy Link": "تحديث ونسخ الرابط",
"Update password": "تحديث كلمة المرور", "Update password": "تحديث كلمة المرور",
"Upload a GGUF model": "رفع موديل نوع GGUF", "Upload a GGUF model": "GGUF رفع موديل نوع",
"Upload files": "رفع الملفات", "Upload files": "رفع الملفات",
"Upload Progress": "جاري التحميل", "Upload Progress": "جاري التحميل",
"URL Mode": "رابط الموديل", "URL Mode": "رابط الموديل",
"Use '#' in the prompt input to load and select your documents.": "أستخدم '#' في المحادثة لربطهامن المستندات", "Use '#' in the prompt input to load and select your documents.": "أستخدم '#' في المحادثة لربطهامن المستندات",
"Use Gravatar": "أستخدم Gravatar", "Use Gravatar": "Gravatar أستخدم",
"Use Initials": "أستخدم Initials", "Use Initials": "Initials أستخدم",
"user": "مستخدم", "user": "مستخدم",
"User Permissions": "صلاحيات المستخدم", "User Permissions": "صلاحيات المستخدم",
"Users": "المستخدمين", "Users": "المستخدمين",
...@@ -482,12 +489,13 @@ ...@@ -482,12 +489,13 @@
"What’s New in": "ما هو الجديد", "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.": "عند إيقاف تشغيل السجل، لن تظهر الدردشات الجديدة على هذا المتصفح في سجلك على أي من أجهزتك.", "When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "عند إيقاف تشغيل السجل، لن تظهر الدردشات الجديدة على هذا المتصفح في سجلك على أي من أجهزتك.",
"Whisper (Local)": "Whisper (Local)", "Whisper (Local)": "Whisper (Local)",
"Workspace": "",
"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 كلمة يلخص [الموضوع أو الكلمة الرئيسية]",
"Yesterday": "", "Yesterday": "أمس",
"You": "أنت", "You": "",
"You have no archived conversations.": "", "You have no archived conversations.": "لا تملك محادثات محفوظه",
"You have shared this chat": "", "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.": "لقد قمت الآن بتسجيل الدخول.",
"Youtube": "Youtube", "Youtube": "Youtube",
......
...@@ -10,14 +10,16 @@ ...@@ -10,14 +10,16 @@
"About": "Относно", "About": "Относно",
"Account": "Акаунт", "Account": "Акаунт",
"Accurate information": "", "Accurate information": "",
"Add": "",
"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": "Добавяне на кратко описание за това какво прави този модфайл",
"Add a short title for this prompt": "Добавяне на кратко заглавие за този промпт", "Add a short title for this prompt": "Добавяне на кратко заглавие за този промпт",
"Add a tag": "Добавяне на таг", "Add a tag": "Добавяне на таг",
"Add custom prompt": "", "Add custom prompt": "Добавяне на собствен промпт",
"Add Docs": "Добавяне на Документи", "Add Docs": "Добавяне на Документи",
"Add Files": "Добавяне на Файлове", "Add Files": "Добавяне на Файлове",
"Add Memory": "",
"Add message": "Добавяне на съобщение", "Add message": "Добавяне на съобщение",
"Add Model": "", "Add Model": "",
"Add Tags": "добавяне на тагове", "Add Tags": "добавяне на тагове",
...@@ -47,7 +49,7 @@ ...@@ -47,7 +49,7 @@
"Archived Chats": "", "Archived Chats": "",
"are allowed - Activate this command by typing": "са разрешени - Активирайте тази команда чрез въвеждане", "are allowed - Activate this command by typing": "са разрешени - Активирайте тази команда чрез въвеждане",
"Are you sure?": "Сигурни ли сте?", "Are you sure?": "Сигурни ли сте?",
"Attach file": "", "Attach file": "Прикачване на файл",
"Attention to detail": "", "Attention to detail": "",
"Audio": "Аудио", "Audio": "Аудио",
"August": "", "August": "",
...@@ -66,6 +68,8 @@ ...@@ -66,6 +68,8 @@
"Categories": "Категории", "Categories": "Категории",
"Change Password": "Промяна на Парола", "Change Password": "Промяна на Парола",
"Chat": "Чат", "Chat": "Чат",
"Chat Bubble UI": "",
"Chat direction": "",
"Chat History": "Чат История", "Chat History": "Чат История",
"Chat History is off for this browser.": "Чат История е изключен за този браузър.", "Chat History is off for this browser.": "Чат История е изключен за този браузър.",
"Chats": "Чатове", "Chats": "Чатове",
...@@ -76,7 +80,7 @@ ...@@ -76,7 +80,7 @@
"Chunk Overlap": "Chunk Overlap", "Chunk Overlap": "Chunk Overlap",
"Chunk Params": "Chunk Params", "Chunk Params": "Chunk Params",
"Chunk Size": "Chunk Size", "Chunk Size": "Chunk Size",
"Citation": "", "Citation": "Цитат",
"Click here for help.": "Натиснете тук за помощ.", "Click here for help.": "Натиснете тук за помощ.",
"Click here to": "", "Click here to": "",
"Click here to check other modelfiles.": "Натиснете тук за проверка на други моделфайлове.", "Click here to check other modelfiles.": "Натиснете тук за проверка на други моделфайлове.",
...@@ -117,7 +121,6 @@ ...@@ -117,7 +121,6 @@
"Dark": "Тъмен", "Dark": "Тъмен",
"Dashboard": "", "Dashboard": "",
"Database": "База данни", "Database": "База данни",
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"December": "", "December": "",
"Default": "По подразбиране", "Default": "По подразбиране",
"Default (Automatic1111)": "По подразбиране (Automatic1111)", "Default (Automatic1111)": "По подразбиране (Automatic1111)",
...@@ -168,6 +171,7 @@ ...@@ -168,6 +171,7 @@
"Enabled": "Включено", "Enabled": "Включено",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "Въведете съобщение за {{role}} тук", "Enter {{role}} message here": "Въведете съобщение за {{role}} тук",
"Enter a detail about yourself for your LLMs to recall": "",
"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)",
...@@ -211,6 +215,7 @@ ...@@ -211,6 +215,7 @@
"General Settings": "Основни Настройки", "General Settings": "Основни Настройки",
"Generation Info": "", "Generation Info": "",
"Good Response": "", "Good Response": "",
"h:mm a": "",
"has no conversations.": "", "has no conversations.": "",
"Hello, {{name}}": "Здравей, {{name}}", "Hello, {{name}}": "Здравей, {{name}}",
"Help": "", "Help": "",
...@@ -227,7 +232,7 @@ ...@@ -227,7 +232,7 @@
"Import Modelfiles": "Импортване на модфайлове", "Import Modelfiles": "Импортване на модфайлове",
"Import Prompts": "Импортване на промптове", "Import Prompts": "Импортване на промптове",
"Include `--api` flag when running stable-diffusion-webui": "Включете флага `--api`, когато стартирате stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Включете флага `--api`, когато стартирате stable-diffusion-webui",
"Input commands": "", "Input commands": "Въведете команди",
"Interface": "Интерфейс", "Interface": "Интерфейс",
"Invalid Tag": "", "Invalid Tag": "",
"January": "", "January": "",
...@@ -244,6 +249,7 @@ ...@@ -244,6 +249,7 @@
"Light": "Светъл", "Light": "Светъл",
"Listening...": "Слушам...", "Listening...": "Слушам...",
"LLMs can make mistakes. Verify important information.": "LLMs могат да правят грешки. Проверете важните данни.", "LLMs can make mistakes. Verify important information.": "LLMs могат да правят грешки. Проверете важните данни.",
"LTR": "",
"Made by OpenWebUI Community": "Направено от OpenWebUI общността", "Made by OpenWebUI Community": "Направено от OpenWebUI общността",
"Make sure to enclose them with": "Уверете се, че са заключени с", "Make sure to enclose them with": "Уверете се, че са заключени с",
"Manage LiteLLM Models": "Управление на LiteLLM Моделите", "Manage LiteLLM Models": "Управление на LiteLLM Моделите",
...@@ -253,7 +259,9 @@ ...@@ -253,7 +259,9 @@
"Max Tokens": "Max Tokens", "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 модели могат да бъдат сваляни едновременно. Моля, опитайте отново по-късно.",
"May": "", "May": "",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
"Minimum Score": "", "Minimum Score": "",
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
...@@ -276,16 +284,13 @@ ...@@ -276,16 +284,13 @@
"Modelfiles": "Модфайлове", "Modelfiles": "Модфайлове",
"Models": "Модели", "Models": "Модели",
"More": "", "More": "",
"My Documents": "Мои документи",
"My Modelfiles": "Мои модфайлове",
"My Prompts": "Мои промптове",
"Name": "Име", "Name": "Име",
"Name Tag": "Име Таг", "Name Tag": "Име Таг",
"Name your modelfile": "Име на модфайла", "Name your modelfile": "Име на модфайла",
"New Chat": "Нов чат", "New Chat": "Нов чат",
"New Password": "Нова парола", "New Password": "Нова парола",
"No results found": "", "No results found": "",
"No source available": "", "No source available": "Няма наличен източник",
"Not factually correct": "", "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": "Не сте сигурни, какво да напишете? Превключете към",
...@@ -323,6 +328,7 @@ ...@@ -323,6 +328,7 @@
"PDF Extract Images (OCR)": "PDF Extract Images (OCR)", "PDF Extract Images (OCR)": "PDF Extract Images (OCR)",
"pending": "в очакване", "pending": "в очакване",
"Permission denied when accessing microphone: {{error}}": "Permission denied when accessing microphone: {{error}}", "Permission denied when accessing microphone: {{error}}": "Permission denied when accessing microphone: {{error}}",
"Personalization": "",
"Plain text (.txt)": "", "Plain text (.txt)": "",
"Playground": "Плейграунд", "Playground": "Плейграунд",
"Positive attitude": "", "Positive attitude": "",
...@@ -360,9 +366,9 @@ ...@@ -360,9 +366,9 @@
"Role": "Роля", "Role": "Роля",
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "",
"Save": "Запис", "Save": "Запис",
"Save & Create": "Запис & Създаване", "Save & Create": "Запис & Създаване",
"Save & Submit": "Запис & Изпращане",
"Save & Update": "Запис & Актуализиране", "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": "Запазването на чат логове директно в хранилището на вашия браузър вече не се поддържа. Моля, отделете малко време, за да изтеглите и изтриете чат логовете си, като щракнете върху бутона по-долу. Не се притеснявайте, можете лесно да импортирате отново чат логовете си в бекенда чрез", "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": "Сканиране",
...@@ -378,7 +384,8 @@ ...@@ -378,7 +384,8 @@
"Select a mode": "Изберете режим", "Select a mode": "Изберете режим",
"Select a model": "Изберете модел", "Select a model": "Изберете модел",
"Select an Ollama instance": "Изберете Ollama инстанция", "Select an Ollama instance": "Изберете Ollama инстанция",
"Select model": "", "Select model": "Изберете модел",
"Send": "",
"Send a Message": "Изпращане на Съобщение", "Send a Message": "Изпращане на Съобщение",
"Send message": "Изпращане на съобщение", "Send message": "Изпращане на съобщение",
"September": "", "September": "",
...@@ -407,7 +414,7 @@ ...@@ -407,7 +414,7 @@
"Sign Out": "Изход", "Sign Out": "Изход",
"Sign up": "Регистрация", "Sign up": "Регистрация",
"Signing in": "", "Signing in": "",
"Source": "", "Source": "Източник",
"Speech recognition error: {{error}}": "Speech recognition error: {{error}}", "Speech recognition error: {{error}}": "Speech recognition error: {{error}}",
"Speech-to-Text Engine": "Speech-to-Text Engine", "Speech-to-Text Engine": "Speech-to-Text Engine",
"SpeechRecognition API is not supported in this browser.": "SpeechRecognition API is not supported in this browser.", "SpeechRecognition API is not supported in this browser.": "SpeechRecognition API is not supported in this browser.",
...@@ -482,10 +489,11 @@ ...@@ -482,10 +489,11 @@
"What’s New in": "Какво е новото в", "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.": "Когато историята е изключена, нови чатове в този браузър ще не се показват в историята на никои от вашия профил.", "When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Когато историята е изключена, нови чатове в този браузър ще не се показват в историята на никои от вашия профил.",
"Whisper (Local)": "Whisper (Локален)", "Whisper (Local)": "Whisper (Локален)",
"Workspace": "",
"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 знака, което описва [тема или ключова дума].",
"Yesterday": "", "Yesterday": "",
"You": "Вие", "You": "",
"You have no archived conversations.": "", "You have no archived conversations.": "",
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "Вие сте полезен асистент.", "You're a helpful assistant.": "Вие сте полезен асистент.",
......
...@@ -10,14 +10,16 @@ ...@@ -10,14 +10,16 @@
"About": "সম্পর্কে", "About": "সম্পর্কে",
"Account": "একাউন্ট", "Account": "একাউন্ট",
"Accurate information": "", "Accurate information": "",
"Add": "",
"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": "এই মডেলফাইলটির সম্পর্কে সংক্ষিপ্ত বিবরণ যোগ করুন",
"Add a short title for this prompt": "এই প্রম্পটের জন্য একটি সংক্ষিপ্ত টাইটেল যোগ করুন", "Add a short title for this prompt": "এই প্রম্পটের জন্য একটি সংক্ষিপ্ত টাইটেল যোগ করুন",
"Add a tag": "একটি ট্যাগ যোগ করুন", "Add a tag": "একটি ট্যাগ যোগ করুন",
"Add custom prompt": "", "Add custom prompt": "একটি কাস্টম প্রম্পট যোগ করুন",
"Add Docs": "ডকুমেন্ট যোগ করুন", "Add Docs": "ডকুমেন্ট যোগ করুন",
"Add Files": "ফাইল যোগ করুন", "Add Files": "ফাইল যোগ করুন",
"Add Memory": "",
"Add message": "মেসেজ যোগ করুন", "Add message": "মেসেজ যোগ করুন",
"Add Model": "", "Add Model": "",
"Add Tags": "ট্যাগ যোগ করুন", "Add Tags": "ট্যাগ যোগ করুন",
...@@ -47,8 +49,8 @@ ...@@ -47,8 +49,8 @@
"Archived Chats": "চ্যাট ইতিহাস সংরক্ষণাগার", "Archived Chats": "চ্যাট ইতিহাস সংরক্ষণাগার",
"are allowed - Activate this command by typing": "অনুমোদিত - কমান্ডটি চালু করার জন্য লিখুন", "are allowed - Activate this command by typing": "অনুমোদিত - কমান্ডটি চালু করার জন্য লিখুন",
"Are you sure?": "আপনি নিশ্চিত?", "Are you sure?": "আপনি নিশ্চিত?",
"Attach file": "", "Attach file": "ফাইল যুক্ত করুন",
"Attention to detail": "", "Attention to detail": "বিস্তারিত বিশেষতা",
"Audio": "অডিও", "Audio": "অডিও",
"August": "", "August": "",
"Auto-playback response": "রেসপন্স অটো-প্লেব্যাক", "Auto-playback response": "রেসপন্স অটো-প্লেব্যাক",
...@@ -66,6 +68,8 @@ ...@@ -66,6 +68,8 @@
"Categories": "ক্যাটাগরিসমূহ", "Categories": "ক্যাটাগরিসমূহ",
"Change Password": "পাসওয়ার্ড পরিবর্তন করুন", "Change Password": "পাসওয়ার্ড পরিবর্তন করুন",
"Chat": "চ্যাট", "Chat": "চ্যাট",
"Chat Bubble UI": "",
"Chat direction": "",
"Chat History": "চ্যাট হিস্টোরি", "Chat History": "চ্যাট হিস্টোরি",
"Chat History is off for this browser.": "এই ব্রাউজারের জন্য চ্যাট হিস্টোরি বন্ধ আছে", "Chat History is off for this browser.": "এই ব্রাউজারের জন্য চ্যাট হিস্টোরি বন্ধ আছে",
"Chats": "চ্যাটসমূহ", "Chats": "চ্যাটসমূহ",
...@@ -76,7 +80,7 @@ ...@@ -76,7 +80,7 @@
"Chunk Overlap": "চাঙ্ক ওভারল্যাপ", "Chunk Overlap": "চাঙ্ক ওভারল্যাপ",
"Chunk Params": "চাঙ্ক প্যারামিটার্স", "Chunk Params": "চাঙ্ক প্যারামিটার্স",
"Chunk Size": "চাঙ্ক সাইজ", "Chunk Size": "চাঙ্ক সাইজ",
"Citation": "", "Citation": "উদ্ধৃতি",
"Click here for help.": "সাহায্যের জন্য এখানে ক্লিক করুন", "Click here for help.": "সাহায্যের জন্য এখানে ক্লিক করুন",
"Click here to": "", "Click here to": "",
"Click here to check other modelfiles.": "অন্যান্য মডেলফাইল চেক করার জন্য এখানে ক্লিক করুন", "Click here to check other modelfiles.": "অন্যান্য মডেলফাইল চেক করার জন্য এখানে ক্লিক করুন",
...@@ -117,7 +121,6 @@ ...@@ -117,7 +121,6 @@
"Dark": "ডার্ক", "Dark": "ডার্ক",
"Dashboard": "", "Dashboard": "",
"Database": "ডেটাবেজ", "Database": "ডেটাবেজ",
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"December": "", "December": "",
"Default": "ডিফল্ট", "Default": "ডিফল্ট",
"Default (Automatic1111)": "ডিফল্ট (Automatic1111)", "Default (Automatic1111)": "ডিফল্ট (Automatic1111)",
...@@ -168,6 +171,7 @@ ...@@ -168,6 +171,7 @@
"Enabled": "চালু করা হয়েছে", "Enabled": "চালু করা হয়েছে",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "{{role}} মেসেজ এখানে লিখুন", "Enter {{role}} message here": "{{role}} মেসেজ এখানে লিখুন",
"Enter a detail about yourself for your LLMs to recall": "",
"Enter Chunk Overlap": "চাঙ্ক ওভারল্যাপ লিখুন", "Enter Chunk Overlap": "চাঙ্ক ওভারল্যাপ লিখুন",
"Enter Chunk Size": "চাংক সাইজ লিখুন", "Enter Chunk Size": "চাংক সাইজ লিখুন",
"Enter Image Size (e.g. 512x512)": "ছবির মাপ লিখুন (যেমন 512x512)", "Enter Image Size (e.g. 512x512)": "ছবির মাপ লিখুন (যেমন 512x512)",
...@@ -211,6 +215,7 @@ ...@@ -211,6 +215,7 @@
"General Settings": "সাধারণ সেটিংসমূহ", "General Settings": "সাধারণ সেটিংসমূহ",
"Generation Info": "", "Generation Info": "",
"Good Response": "", "Good Response": "",
"h:mm a": "",
"has no conversations.": "", "has no conversations.": "",
"Hello, {{name}}": "হ্যালো, {{name}}", "Hello, {{name}}": "হ্যালো, {{name}}",
"Help": "", "Help": "",
...@@ -227,7 +232,7 @@ ...@@ -227,7 +232,7 @@
"Import Modelfiles": "মডেলফাইলগুলো ইমপোর্ট করুন", "Import Modelfiles": "মডেলফাইলগুলো ইমপোর্ট করুন",
"Import Prompts": "প্রম্পটগুলো ইমপোর্ট করুন", "Import Prompts": "প্রম্পটগুলো ইমপোর্ট করুন",
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui চালু করার সময় `--api` ফ্ল্যাগ সংযুক্ত করুন", "Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui চালু করার সময় `--api` ফ্ল্যাগ সংযুক্ত করুন",
"Input commands": "", "Input commands": "ইনপুট কমান্ডস",
"Interface": "ইন্টারফেস", "Interface": "ইন্টারফেস",
"Invalid Tag": "", "Invalid Tag": "",
"January": "", "January": "",
...@@ -244,6 +249,7 @@ ...@@ -244,6 +249,7 @@
"Light": "লাইট", "Light": "লাইট",
"Listening...": "শুনছে...", "Listening...": "শুনছে...",
"LLMs can make mistakes. Verify important information.": "LLM ভুল করতে পারে। গুরুত্বপূর্ণ তথ্য যাচাই করে নিন।", "LLMs can make mistakes. Verify important information.": "LLM ভুল করতে পারে। গুরুত্বপূর্ণ তথ্য যাচাই করে নিন।",
"LTR": "",
"Made by OpenWebUI Community": "OpenWebUI কমিউনিটিকর্তৃক নির্মিত", "Made by OpenWebUI Community": "OpenWebUI কমিউনিটিকর্তৃক নির্মিত",
"Make sure to enclose them with": "এটা দিয়ে বন্ধনী দিতে ভুলবেন না", "Make sure to enclose them with": "এটা দিয়ে বন্ধনী দিতে ভুলবেন না",
"Manage LiteLLM Models": "LiteLLM মডেল ব্যবস্থাপনা করুন", "Manage LiteLLM Models": "LiteLLM মডেল ব্যবস্থাপনা করুন",
...@@ -253,7 +259,9 @@ ...@@ -253,7 +259,9 @@
"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.": "একসঙ্গে সর্বোচ্চ তিনটি মডেল ডাউনলোড করা যায়। দয়া করে পরে আবার চেষ্টা করুন।",
"May": "", "May": "",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
"Minimum Score": "", "Minimum Score": "",
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
...@@ -276,16 +284,13 @@ ...@@ -276,16 +284,13 @@
"Modelfiles": "মডেলফাইলসমূহ", "Modelfiles": "মডেলফাইলসমূহ",
"Models": "মডেলসমূহ", "Models": "মডেলসমূহ",
"More": "", "More": "",
"My Documents": "আমার ডকুমেন্টসমূহ",
"My Modelfiles": "আমার মডেলফাইলসমূহ",
"My Prompts": "আমার প্রম্পটসমূহ",
"Name": "নাম", "Name": "নাম",
"Name Tag": "নামের ট্যাগ", "Name Tag": "নামের ট্যাগ",
"Name your modelfile": "আপনার মডেলফাইলের নাম দিন", "Name your modelfile": "আপনার মডেলফাইলের নাম দিন",
"New Chat": "নতুন চ্যাট", "New Chat": "নতুন চ্যাট",
"New Password": "নতুন পাসওয়ার্ড", "New Password": "নতুন পাসওয়ার্ড",
"No results found": "", "No results found": "",
"No source available": "", "No source available": "কোন উৎস পাওয়া যায়নি",
"Not factually correct": "", "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": "কী লিখতে হবে নিশ্চিত না? পরিবর্তন করুন:",
...@@ -323,6 +328,7 @@ ...@@ -323,6 +328,7 @@
"PDF Extract Images (OCR)": "পিডিএফ এর ছবি থেকে লেখা বের করুন (OCR)", "PDF Extract Images (OCR)": "পিডিএফ এর ছবি থেকে লেখা বের করুন (OCR)",
"pending": "অপেক্ষমান", "pending": "অপেক্ষমান",
"Permission denied when accessing microphone: {{error}}": "মাইক্রোফোন ব্যবহারের অনুমতি পাওয়া যায়নি: {{error}}", "Permission denied when accessing microphone: {{error}}": "মাইক্রোফোন ব্যবহারের অনুমতি পাওয়া যায়নি: {{error}}",
"Personalization": "",
"Plain text (.txt)": "", "Plain text (.txt)": "",
"Playground": "খেলাঘর", "Playground": "খেলাঘর",
"Positive attitude": "", "Positive attitude": "",
...@@ -360,9 +366,9 @@ ...@@ -360,9 +366,9 @@
"Role": "পদবি", "Role": "পদবি",
"Rosé Pine": "রোজ পাইন", "Rosé Pine": "রোজ পাইন",
"Rosé Pine Dawn": "ভোরের রোজ পাইন", "Rosé Pine Dawn": "ভোরের রোজ পাইন",
"RTL": "",
"Save": "সংরক্ষণ", "Save": "সংরক্ষণ",
"Save & Create": "সংরক্ষণ এবং তৈরি করুন", "Save & Create": "সংরক্ষণ এবং তৈরি করুন",
"Save & Submit": "সংরক্ষণ এবং সাবমিট করুন",
"Save & Update": "সংরক্ষণ এবং আপডেট করুন", "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": "মাধ্যমে", "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": "স্ক্যান",
...@@ -378,7 +384,8 @@ ...@@ -378,7 +384,8 @@
"Select a mode": "একটি মডেল নির্বাচন করুন", "Select a mode": "একটি মডেল নির্বাচন করুন",
"Select a model": "একটি মডেল নির্বাচন করুন", "Select a model": "একটি মডেল নির্বাচন করুন",
"Select an Ollama instance": "একটি Ollama ইন্সট্যান্স নির্বাচন করুন", "Select an Ollama instance": "একটি Ollama ইন্সট্যান্স নির্বাচন করুন",
"Select model": "", "Select model": "মডেল নির্বাচন করুন",
"Send": "",
"Send a Message": "একটি মেসেজ পাঠান", "Send a Message": "একটি মেসেজ পাঠান",
"Send message": "মেসেজ পাঠান", "Send message": "মেসেজ পাঠান",
"September": "", "September": "",
...@@ -407,7 +414,7 @@ ...@@ -407,7 +414,7 @@
"Sign Out": "সাইন আউট", "Sign Out": "সাইন আউট",
"Sign up": "সাইন আপ", "Sign up": "সাইন আপ",
"Signing in": "", "Signing in": "",
"Source": "", "Source": "উৎস",
"Speech recognition error: {{error}}": "স্পিচ রিকগনিশনে সমস্যা: {{error}}", "Speech recognition error: {{error}}": "স্পিচ রিকগনিশনে সমস্যা: {{error}}",
"Speech-to-Text Engine": "স্পিচ-টু-টেক্সট ইঞ্জিন", "Speech-to-Text Engine": "স্পিচ-টু-টেক্সট ইঞ্জিন",
"SpeechRecognition API is not supported in this browser.": "এই ব্রাউজার স্পিচরিকগনিশন এপিআই সাপোর্ট করে না।", "SpeechRecognition API is not supported in this browser.": "এই ব্রাউজার স্পিচরিকগনিশন এপিআই সাপোর্ট করে না।",
...@@ -482,10 +489,11 @@ ...@@ -482,10 +489,11 @@
"What’s New in": "এতে নতুন কী", "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.": "যদি হিস্টোরি বন্ধ থাকে তাহলে এই ব্রাউজারের নতুন চ্যাটগুলো আপনার কোন ডিভাইসের হিস্টোরিতেই দেখা যাবে না।", "When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "যদি হিস্টোরি বন্ধ থাকে তাহলে এই ব্রাউজারের নতুন চ্যাটগুলো আপনার কোন ডিভাইসের হিস্টোরিতেই দেখা যাবে না।",
"Whisper (Local)": "Whisper (লোকাল)", "Whisper (Local)": "Whisper (লোকাল)",
"Workspace": "",
"Write a prompt suggestion (e.g. Who are you?)": "একটি প্রম্পট সাজেশন লিখুন (যেমন Who are you?)", "Write a prompt suggestion (e.g. Who are you?)": "একটি প্রম্পট সাজেশন লিখুন (যেমন Who are you?)",
"Write a summary in 50 words that summarizes [topic or keyword].": "৫০ শব্দের মধ্যে [topic or keyword] এর একটি সারসংক্ষেপ লিখুন।", "Write a summary in 50 words that summarizes [topic or keyword].": "৫০ শব্দের মধ্যে [topic or keyword] এর একটি সারসংক্ষেপ লিখুন।",
"Yesterday": "", "Yesterday": "",
"You": "আপনি", "You": "",
"You have no archived conversations.": "", "You have no archived conversations.": "",
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "আপনি একজন উপকারী এসিস্ট্যান্ট", "You're a helpful assistant.": "আপনি একজন উপকারী এসিস্ট্যান্ট",
......
...@@ -10,14 +10,16 @@ ...@@ -10,14 +10,16 @@
"About": "Sobre", "About": "Sobre",
"Account": "Compte", "Account": "Compte",
"Accurate information": "", "Accurate information": "",
"Add": "",
"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",
"Add a short title for this prompt": "Afegeix un títol curt per aquest prompt", "Add a short title for this prompt": "Afegeix un títol curt per aquest prompt",
"Add a tag": "Afegeix una etiqueta", "Add a tag": "Afegeix una etiqueta",
"Add custom prompt": "", "Add custom prompt": "Afegir un prompt personalitzat",
"Add Docs": "Afegeix Documents", "Add Docs": "Afegeix Documents",
"Add Files": "Afegeix Arxius", "Add Files": "Afegeix Arxius",
"Add Memory": "",
"Add message": "Afegeix missatge", "Add message": "Afegeix missatge",
"Add Model": "", "Add Model": "",
"Add Tags": "afegeix etiquetes", "Add Tags": "afegeix etiquetes",
...@@ -47,8 +49,8 @@ ...@@ -47,8 +49,8 @@
"Archived Chats": "Arxiu d'historial de xat", "Archived Chats": "Arxiu d'historial de xat",
"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?",
"Attach file": "", "Attach file": "Adjuntar arxiu",
"Attention to detail": "", "Attention to detail": "Detall atent",
"Audio": "Àudio", "Audio": "Àudio",
"August": "", "August": "",
"Auto-playback response": "Resposta de reproducció automàtica", "Auto-playback response": "Resposta de reproducció automàtica",
...@@ -66,6 +68,8 @@ ...@@ -66,6 +68,8 @@
"Categories": "Categories", "Categories": "Categories",
"Change Password": "Canvia la Contrasenya", "Change Password": "Canvia la Contrasenya",
"Chat": "Xat", "Chat": "Xat",
"Chat Bubble UI": "",
"Chat direction": "",
"Chat History": "Històric del Xat", "Chat History": "Històric del Xat",
"Chat History is off for this browser.": "L'historial de xat està desactivat per a aquest navegador.", "Chat History is off for this browser.": "L'historial de xat està desactivat per a aquest navegador.",
"Chats": "Xats", "Chats": "Xats",
...@@ -76,7 +80,7 @@ ...@@ -76,7 +80,7 @@
"Chunk Overlap": "Solapament de Blocs", "Chunk Overlap": "Solapament de Blocs",
"Chunk Params": "Paràmetres de Blocs", "Chunk Params": "Paràmetres de Blocs",
"Chunk Size": "Mida del Bloc", "Chunk Size": "Mida del Bloc",
"Citation": "", "Citation": "Citació",
"Click here for help.": "Fes clic aquí per ajuda.", "Click here for help.": "Fes clic aquí per ajuda.",
"Click here to": "", "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.",
...@@ -117,7 +121,6 @@ ...@@ -117,7 +121,6 @@
"Dark": "Fosc", "Dark": "Fosc",
"Dashboard": "", "Dashboard": "",
"Database": "Base de Dades", "Database": "Base de Dades",
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"December": "", "December": "",
"Default": "Per defecte", "Default": "Per defecte",
"Default (Automatic1111)": "Per defecte (Automatic1111)", "Default (Automatic1111)": "Per defecte (Automatic1111)",
...@@ -168,6 +171,7 @@ ...@@ -168,6 +171,7 @@
"Enabled": "Activat", "Enabled": "Activat",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "Introdueix aquí el missatge de {{role}}", "Enter {{role}} message here": "Introdueix aquí el missatge de {{role}}",
"Enter a detail about yourself for your LLMs to recall": "",
"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)",
...@@ -211,6 +215,7 @@ ...@@ -211,6 +215,7 @@
"General Settings": "Configuració General", "General Settings": "Configuració General",
"Generation Info": "", "Generation Info": "",
"Good Response": "", "Good Response": "",
"h:mm a": "",
"has no conversations.": "", "has no conversations.": "",
"Hello, {{name}}": "Hola, {{name}}", "Hello, {{name}}": "Hola, {{name}}",
"Help": "", "Help": "",
...@@ -227,7 +232,7 @@ ...@@ -227,7 +232,7 @@
"Import Modelfiles": "Importa Fitxers de Model", "Import Modelfiles": "Importa Fitxers de Model",
"Import Prompts": "Importa Prompts", "Import Prompts": "Importa Prompts",
"Include `--api` flag when running stable-diffusion-webui": "Inclou la bandera `--api` quan executis stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Inclou la bandera `--api` quan executis stable-diffusion-webui",
"Input commands": "", "Input commands": "Entra ordres",
"Interface": "Interfície", "Interface": "Interfície",
"Invalid Tag": "", "Invalid Tag": "",
"January": "", "January": "",
...@@ -244,6 +249,7 @@ ...@@ -244,6 +249,7 @@
"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.",
"LTR": "",
"Made by OpenWebUI Community": "Creat per la Comunitat OpenWebUI", "Made by OpenWebUI Community": "Creat per la Comunitat OpenWebUI",
"Make sure to enclose them with": "Assegura't d'envoltar-los amb", "Make sure to enclose them with": "Assegura't d'envoltar-los amb",
"Manage LiteLLM Models": "Gestiona Models LiteLLM", "Manage LiteLLM Models": "Gestiona Models LiteLLM",
...@@ -253,7 +259,9 @@ ...@@ -253,7 +259,9 @@
"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.",
"May": "", "May": "",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
"Minimum Score": "", "Minimum Score": "",
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Eta de Mirostat", "Mirostat Eta": "Eta de Mirostat",
...@@ -276,16 +284,13 @@ ...@@ -276,16 +284,13 @@
"Modelfiles": "Fitxers de Model", "Modelfiles": "Fitxers de Model",
"Models": "Models", "Models": "Models",
"More": "", "More": "",
"My Documents": "Els Meus Documents",
"My Modelfiles": "Els Meus Fitxers de Model",
"My Prompts": "Els Meus Prompts",
"Name": "Nom", "Name": "Nom",
"Name Tag": "Etiqueta de Nom", "Name Tag": "Etiqueta de Nom",
"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": "", "No results found": "",
"No source available": "", "No source available": "Sense font disponible",
"Not factually correct": "", "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",
...@@ -323,6 +328,7 @@ ...@@ -323,6 +328,7 @@
"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}}",
"Personalization": "",
"Plain text (.txt)": "", "Plain text (.txt)": "",
"Playground": "Zona de Jocs", "Playground": "Zona de Jocs",
"Positive attitude": "", "Positive attitude": "",
...@@ -360,9 +366,9 @@ ...@@ -360,9 +366,9 @@
"Role": "Rol", "Role": "Rol",
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Albada Rosé Pine", "Rosé Pine Dawn": "Albada Rosé Pine",
"RTL": "",
"Save": "Guarda", "Save": "Guarda",
"Save & Create": "Guarda i Crea", "Save & Create": "Guarda i Crea",
"Save & Submit": "Guarda i Envia",
"Save & Update": "Guarda i Actualitza", "Save & Update": "Guarda i Actualitza",
"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": "Guardar registres de xat directament a l'emmagatzematge del teu navegador ja no és suportat. Si us plau, pren un moment per descarregar i eliminar els teus registres de xat fent clic al botó de sota. No et preocupis, pots reimportar fàcilment els teus registres de xat al backend a través de", "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": "Guardar registres de xat directament a l'emmagatzematge del teu navegador ja no és suportat. Si us plau, pren un moment per descarregar i eliminar els teus registres de xat fent clic al botó de sota. No et preocupis, pots reimportar fàcilment els teus registres de xat al backend a través de",
"Scan": "Escaneja", "Scan": "Escaneja",
...@@ -378,7 +384,8 @@ ...@@ -378,7 +384,8 @@
"Select a mode": "Selecciona un mode", "Select a mode": "Selecciona un mode",
"Select a model": "Selecciona un model", "Select a model": "Selecciona un model",
"Select an Ollama instance": "Selecciona una instància d'Ollama", "Select an Ollama instance": "Selecciona una instància d'Ollama",
"Select model": "", "Select model": "Selecciona un model",
"Send": "",
"Send a Message": "Envia un Missatge", "Send a Message": "Envia un Missatge",
"Send message": "Envia missatge", "Send message": "Envia missatge",
"September": "", "September": "",
...@@ -407,7 +414,7 @@ ...@@ -407,7 +414,7 @@
"Sign Out": "Tanca sessió", "Sign Out": "Tanca sessió",
"Sign up": "Registra't", "Sign up": "Registra't",
"Signing in": "", "Signing in": "",
"Source": "", "Source": "Font",
"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.",
...@@ -482,10 +489,11 @@ ...@@ -482,10 +489,11 @@
"What’s New in": "Què hi ha de Nou en", "What’s New in": "Què hi ha de Nou en",
"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Quan l'historial està desactivat, els nous xats en aquest navegador no apareixeran en el teu historial en cap dels teus dispositius.", "When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Quan l'historial està desactivat, els nous xats en aquest navegador no apareixeran en el teu historial en cap dels teus dispositius.",
"Whisper (Local)": "Whisper (Local)", "Whisper (Local)": "Whisper (Local)",
"Workspace": "",
"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].",
"Yesterday": "", "Yesterday": "",
"You": "Tu", "You": "",
"You have no archived conversations.": "", "You have no archived conversations.": "",
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "Ets un assistent útil.", "You're a helpful assistant.": "Ets un assistent útil.",
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
"About": "Über", "About": "Über",
"Account": "Account", "Account": "Account",
"Accurate information": "Genaue Information", "Accurate information": "Genaue Information",
"Add": "",
"Add a model": "Füge ein Modell hinzu", "Add a model": "Füge ein Modell hinzu",
"Add a model tag name": "Benenne deinen Modell-Tag", "Add a model tag name": "Benenne deinen Modell-Tag",
"Add a short description about what this modelfile does": "Füge eine kurze Beschreibung hinzu, was dieses Modelfile kann", "Add a short description about what this modelfile does": "Füge eine kurze Beschreibung hinzu, was dieses Modelfile kann",
...@@ -18,6 +19,7 @@ ...@@ -18,6 +19,7 @@
"Add custom prompt": "Eigenen Prompt hinzufügen", "Add custom prompt": "Eigenen Prompt hinzufügen",
"Add Docs": "Dokumente hinzufügen", "Add Docs": "Dokumente hinzufügen",
"Add Files": "Dateien hinzufügen", "Add Files": "Dateien hinzufügen",
"Add Memory": "",
"Add message": "Nachricht eingeben", "Add message": "Nachricht eingeben",
"Add Model": "Modell hinzufügen", "Add Model": "Modell hinzufügen",
"Add Tags": "Tags hinzufügen", "Add Tags": "Tags hinzufügen",
...@@ -66,6 +68,8 @@ ...@@ -66,6 +68,8 @@
"Categories": "Kategorien", "Categories": "Kategorien",
"Change Password": "Passwort ändern", "Change Password": "Passwort ändern",
"Chat": "Chat", "Chat": "Chat",
"Chat Bubble UI": "",
"Chat direction": "",
"Chat History": "Chat Verlauf", "Chat History": "Chat Verlauf",
"Chat History is off for this browser.": "Chat Verlauf ist für diesen Browser ausgeschaltet.", "Chat History is off for this browser.": "Chat Verlauf ist für diesen Browser ausgeschaltet.",
"Chats": "Chats", "Chats": "Chats",
...@@ -117,7 +121,6 @@ ...@@ -117,7 +121,6 @@
"Dark": "Dunkel", "Dark": "Dunkel",
"Dashboard": "Dashboard", "Dashboard": "Dashboard",
"Database": "Datenbank", "Database": "Datenbank",
"DD/MM/YYYY HH:mm": "DD.MM.YYYY HH:mm",
"December": "Dezember", "December": "Dezember",
"Default": "Standard", "Default": "Standard",
"Default (Automatic1111)": "Standard (Automatic1111)", "Default (Automatic1111)": "Standard (Automatic1111)",
...@@ -168,6 +171,7 @@ ...@@ -168,6 +171,7 @@
"Enabled": "Aktiviert", "Enabled": "Aktiviert",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "Gib die {{role}} Nachricht hier ein", "Enter {{role}} message here": "Gib die {{role}} Nachricht hier ein",
"Enter a detail about yourself for your LLMs to recall": "",
"Enter Chunk Overlap": "Gib den Chunk Overlap ein", "Enter Chunk Overlap": "Gib den Chunk Overlap ein",
"Enter Chunk Size": "Gib die Chunk Size ein", "Enter Chunk Size": "Gib die Chunk Size ein",
"Enter Image Size (e.g. 512x512)": "Gib die Bildgröße ein (z.B. 512x512)", "Enter Image Size (e.g. 512x512)": "Gib die Bildgröße ein (z.B. 512x512)",
...@@ -211,6 +215,7 @@ ...@@ -211,6 +215,7 @@
"General Settings": "Allgemeine Einstellungen", "General Settings": "Allgemeine Einstellungen",
"Generation Info": "Generierungsinformationen", "Generation Info": "Generierungsinformationen",
"Good Response": "Gute Antwort", "Good Response": "Gute Antwort",
"h:mm a": "",
"has no conversations.": "hat keine Unterhaltungen.", "has no conversations.": "hat keine Unterhaltungen.",
"Hello, {{name}}": "Hallo, {{name}}", "Hello, {{name}}": "Hallo, {{name}}",
"Help": "Hilfe", "Help": "Hilfe",
...@@ -244,6 +249,7 @@ ...@@ -244,6 +249,7 @@
"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.",
"LTR": "",
"Made by OpenWebUI Community": "Von der OpenWebUI-Community", "Made by OpenWebUI Community": "Von der OpenWebUI-Community",
"Make sure to enclose them with": "Formatiere deine Variablen mit:", "Make sure to enclose them with": "Formatiere deine Variablen mit:",
"Manage LiteLLM Models": "LiteLLM-Modelle verwalten", "Manage LiteLLM Models": "LiteLLM-Modelle verwalten",
...@@ -253,7 +259,9 @@ ...@@ -253,7 +259,9 @@
"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.",
"May": "Mai", "May": "Mai",
"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.", "Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
"Minimum Score": "Mindestscore", "Minimum Score": "Mindestscore",
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
...@@ -276,9 +284,6 @@ ...@@ -276,9 +284,6 @@
"Modelfiles": "Modelfiles", "Modelfiles": "Modelfiles",
"Models": "Modelle", "Models": "Modelle",
"More": "Mehr", "More": "Mehr",
"My Documents": "Meine Dokumente",
"My Modelfiles": "Meine Modelfiles",
"My Prompts": "Meine Prompts",
"Name": "Name", "Name": "Name",
"Name Tag": "Namens-Tag", "Name Tag": "Namens-Tag",
"Name your modelfile": "Benenne dein modelfile", "Name your modelfile": "Benenne dein modelfile",
...@@ -323,6 +328,7 @@ ...@@ -323,6 +328,7 @@
"PDF Extract Images (OCR)": "Text von Bildern aus PDFs extrahieren (OCR)", "PDF Extract Images (OCR)": "Text von Bildern aus PDFs extrahieren (OCR)",
"pending": "ausstehend", "pending": "ausstehend",
"Permission denied when accessing microphone: {{error}}": "Zugriff auf das Mikrofon verweigert: {{error}}", "Permission denied when accessing microphone: {{error}}": "Zugriff auf das Mikrofon verweigert: {{error}}",
"Personalization": "",
"Plain text (.txt)": "Nur Text (.txt)", "Plain text (.txt)": "Nur Text (.txt)",
"Playground": "Testumgebung", "Playground": "Testumgebung",
"Positive attitude": "Positive Einstellung", "Positive attitude": "Positive Einstellung",
...@@ -360,9 +366,9 @@ ...@@ -360,9 +366,9 @@
"Role": "Rolle", "Role": "Rolle",
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "",
"Save": "Speichern", "Save": "Speichern",
"Save & Create": "Speichern und erstellen", "Save & Create": "Speichern und erstellen",
"Save & Submit": "Speichern und senden",
"Save & Update": "Speichern und aktualisieren", "Save & Update": "Speichern und aktualisieren",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Das direkte Speichern von Chat-Protokollen im Browser-Speicher wird nicht mehr unterstützt. Bitte nimm dir einen Moment Zeit, um deine Chat-Protokolle herunterzuladen und zu löschen, indem du auf die Schaltfläche unten klickst. Keine Sorge, du kannst deine Chat-Protokolle problemlos über das Backend wieder importieren.", "Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Das direkte Speichern von Chat-Protokollen im Browser-Speicher wird nicht mehr unterstützt. Bitte nimm dir einen Moment Zeit, um deine Chat-Protokolle herunterzuladen und zu löschen, indem du auf die Schaltfläche unten klickst. Keine Sorge, du kannst deine Chat-Protokolle problemlos über das Backend wieder importieren.",
"Scan": "Scannen", "Scan": "Scannen",
...@@ -378,7 +384,8 @@ ...@@ -378,7 +384,8 @@
"Select a mode": "Einen Modus auswählen", "Select a mode": "Einen Modus auswählen",
"Select a model": "Ein Modell auswählen", "Select a model": "Ein Modell auswählen",
"Select an Ollama instance": "Eine Ollama Instanz auswählen", "Select an Ollama instance": "Eine Ollama Instanz auswählen",
"Select model": "", "Select model": "Modell auswählen",
"Send": "",
"Send a Message": "Eine Nachricht senden", "Send a Message": "Eine Nachricht senden",
"Send message": "Nachricht senden", "Send message": "Nachricht senden",
"September": "September", "September": "September",
...@@ -482,10 +489,11 @@ ...@@ -482,10 +489,11 @@
"What’s New in": "Was gibt's Neues in", "What’s New in": "Was gibt's Neues in",
"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Wenn die Historie ausgeschaltet ist, werden neue Chats nicht in deiner Historie auf deine Geräte angezeigt.", "When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Wenn die Historie ausgeschaltet ist, werden neue Chats nicht in deiner Historie auf deine Geräte angezeigt.",
"Whisper (Local)": "Whisper (Lokal)", "Whisper (Local)": "Whisper (Lokal)",
"Workspace": "",
"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.",
"Yesterday": "Gestern", "Yesterday": "Gestern",
"You": "Du", "You": "",
"You have no archived conversations.": "Du hast keine archivierten Unterhaltungen.", "You have no archived conversations.": "Du hast keine archivierten Unterhaltungen.",
"You have shared this chat": "Du hast diesen Chat", "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.",
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
"About": "Much About", "About": "Much About",
"Account": "Account", "Account": "Account",
"Accurate information": "", "Accurate information": "",
"Add": "",
"Add a model": "Add a model", "Add a model": "Add a model",
"Add a model tag name": "Add a model tag name", "Add a model tag name": "Add a model tag name",
"Add a short description about what this modelfile does": "Add short description about what this modelfile does", "Add a short description about what this modelfile does": "Add short description about what this modelfile does",
...@@ -18,6 +19,7 @@ ...@@ -18,6 +19,7 @@
"Add custom prompt": "", "Add custom prompt": "",
"Add Docs": "Add Docs", "Add Docs": "Add Docs",
"Add Files": "Add Files", "Add Files": "Add Files",
"Add Memory": "",
"Add message": "Add Prompt", "Add message": "Add Prompt",
"Add Model": "", "Add Model": "",
"Add Tags": "", "Add Tags": "",
...@@ -47,7 +49,7 @@ ...@@ -47,7 +49,7 @@
"Archived Chats": "", "Archived Chats": "",
"are allowed - Activate this command by typing": "are allowed. Activate typing", "are allowed - Activate this command by typing": "are allowed. Activate typing",
"Are you sure?": "Such certainty?", "Are you sure?": "Such certainty?",
"Attach file": "", "Attach file": "Attach file",
"Attention to detail": "", "Attention to detail": "",
"Audio": "Audio", "Audio": "Audio",
"August": "", "August": "",
...@@ -66,6 +68,8 @@ ...@@ -66,6 +68,8 @@
"Categories": "Categories", "Categories": "Categories",
"Change Password": "Change Password", "Change Password": "Change Password",
"Chat": "Chat", "Chat": "Chat",
"Chat Bubble UI": "",
"Chat direction": "",
"Chat History": "Chat History", "Chat History": "Chat History",
"Chat History is off for this browser.": "Chat History off for this browser. Such sadness.", "Chat History is off for this browser.": "Chat History off for this browser. Such sadness.",
"Chats": "Chats", "Chats": "Chats",
...@@ -117,7 +121,6 @@ ...@@ -117,7 +121,6 @@
"Dark": "Dark", "Dark": "Dark",
"Dashboard": "", "Dashboard": "",
"Database": "Database", "Database": "Database",
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"December": "", "December": "",
"Default": "Default", "Default": "Default",
"Default (Automatic1111)": "Default (Automatic1111)", "Default (Automatic1111)": "Default (Automatic1111)",
...@@ -168,6 +171,7 @@ ...@@ -168,6 +171,7 @@
"Enabled": "So Activated", "Enabled": "So Activated",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "Enter {{role}} bork here", "Enter {{role}} message here": "Enter {{role}} bork here",
"Enter a detail about yourself for your LLMs to recall": "",
"Enter Chunk Overlap": "Enter Overlap of Chunks", "Enter Chunk Overlap": "Enter Overlap of Chunks",
"Enter Chunk Size": "Enter Size of Chunk", "Enter Chunk Size": "Enter Size of Chunk",
"Enter Image Size (e.g. 512x512)": "Enter Size of Wow (e.g. 512x512)", "Enter Image Size (e.g. 512x512)": "Enter Size of Wow (e.g. 512x512)",
...@@ -211,6 +215,7 @@ ...@@ -211,6 +215,7 @@
"General Settings": "General Doge Settings", "General Settings": "General Doge Settings",
"Generation Info": "", "Generation Info": "",
"Good Response": "", "Good Response": "",
"h:mm a": "",
"has no conversations.": "", "has no conversations.": "",
"Hello, {{name}}": "Much helo, {{name}}", "Hello, {{name}}": "Much helo, {{name}}",
"Help": "", "Help": "",
...@@ -227,7 +232,7 @@ ...@@ -227,7 +232,7 @@
"Import Modelfiles": "Import Modelfiles", "Import Modelfiles": "Import Modelfiles",
"Import Prompts": "Import Promptos", "Import Prompts": "Import Promptos",
"Include `--api` flag when running stable-diffusion-webui": "Include `--api` flag when running stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Include `--api` flag when running stable-diffusion-webui",
"Input commands": "", "Input commands": "Input commands",
"Interface": "Interface", "Interface": "Interface",
"Invalid Tag": "", "Invalid Tag": "",
"January": "", "January": "",
...@@ -244,6 +249,7 @@ ...@@ -244,6 +249,7 @@
"Light": "Light", "Light": "Light",
"Listening...": "Listening...", "Listening...": "Listening...",
"LLMs can make mistakes. Verify important information.": "LLMs can make borks. Verify important info.", "LLMs can make mistakes. Verify important information.": "LLMs can make borks. Verify important info.",
"LTR": "",
"Made by OpenWebUI Community": "Made by OpenWebUI Community", "Made by OpenWebUI Community": "Made by OpenWebUI Community",
"Make sure to enclose them with": "Make sure to enclose them with", "Make sure to enclose them with": "Make sure to enclose them with",
"Manage LiteLLM Models": "Manage LiteLLM Models", "Manage LiteLLM Models": "Manage LiteLLM Models",
...@@ -253,7 +259,9 @@ ...@@ -253,7 +259,9 @@
"Max Tokens": "Max Tokens", "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.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum of 3 models can be downloaded simultaneously. Please try again later.",
"May": "", "May": "",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
"Minimum Score": "", "Minimum Score": "",
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
...@@ -276,16 +284,13 @@ ...@@ -276,16 +284,13 @@
"Modelfiles": "Modelfiles", "Modelfiles": "Modelfiles",
"Models": "Wowdels", "Models": "Wowdels",
"More": "", "More": "",
"My Documents": "My Doguments",
"My Modelfiles": "My Modelfiles",
"My Prompts": "My Promptos",
"Name": "Name", "Name": "Name",
"Name Tag": "Name Tag", "Name Tag": "Name Tag",
"Name your modelfile": "Name your modelfile", "Name your modelfile": "Name your modelfile",
"New Chat": "New Bark", "New Chat": "New Bark",
"New Password": "New Barkword", "New Password": "New Barkword",
"No results found": "", "No results found": "",
"No source available": "", "No source available": "No source available",
"Not factually correct": "", "Not factually correct": "",
"Not sure what to add?": "Not sure what to add?", "Not sure what to add?": "Not sure what to add?",
"Not sure what to write? Switch to": "Not sure what to write? Switch to", "Not sure what to write? Switch to": "Not sure what to write? Switch to",
...@@ -323,6 +328,7 @@ ...@@ -323,6 +328,7 @@
"PDF Extract Images (OCR)": "PDF Extract Wowmages (OCR)", "PDF Extract Images (OCR)": "PDF Extract Wowmages (OCR)",
"pending": "pending", "pending": "pending",
"Permission denied when accessing microphone: {{error}}": "Permission denied when accessing microphone: {{error}}", "Permission denied when accessing microphone: {{error}}": "Permission denied when accessing microphone: {{error}}",
"Personalization": "",
"Plain text (.txt)": "", "Plain text (.txt)": "",
"Playground": "Playground", "Playground": "Playground",
"Positive attitude": "", "Positive attitude": "",
...@@ -360,9 +366,9 @@ ...@@ -360,9 +366,9 @@
"Role": "Role", "Role": "Role",
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "",
"Save": "Save much wow", "Save": "Save much wow",
"Save & Create": "Save & Create much create", "Save & Create": "Save & Create much create",
"Save & Submit": "Save & Submit very submit",
"Save & Update": "Save & Update much update", "Save & Update": "Save & Update much 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": "Saving chat logs in browser storage not support anymore. Pls download and delete your chat logs by click button below. Much easy re-import to backend through", "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": "Saving chat logs in browser storage not support anymore. Pls download and delete your chat logs by click button below. Much easy re-import to backend through",
"Scan": "Scan much scan", "Scan": "Scan much scan",
...@@ -378,7 +384,8 @@ ...@@ -378,7 +384,8 @@
"Select a mode": "Select a mode very choose", "Select a mode": "Select a mode very choose",
"Select a model": "Select a model much choice", "Select a model": "Select a model much choice",
"Select an Ollama instance": "Select an Ollama instance very choose", "Select an Ollama instance": "Select an Ollama instance very choose",
"Select model": "", "Select model": "Select model much choice",
"Send": "",
"Send a Message": "Send a Message much message", "Send a Message": "Send a Message much message",
"Send message": "Send message very send", "Send message": "Send message very send",
"September": "", "September": "",
...@@ -407,7 +414,7 @@ ...@@ -407,7 +414,7 @@
"Sign Out": "Sign Out much logout", "Sign Out": "Sign Out much logout",
"Sign up": "Sign up much join", "Sign up": "Sign up much join",
"Signing in": "", "Signing in": "",
"Source": "", "Source": "Source",
"Speech recognition error: {{error}}": "Speech recognition error: {{error}} so error", "Speech recognition error: {{error}}": "Speech recognition error: {{error}} so error",
"Speech-to-Text Engine": "Speech-to-Text Engine much speak", "Speech-to-Text Engine": "Speech-to-Text Engine much speak",
"SpeechRecognition API is not supported in this browser.": "SpeechRecognition API is not supported in this browser. Much sad.", "SpeechRecognition API is not supported in this browser.": "SpeechRecognition API is not supported in this browser. Much sad.",
...@@ -482,10 +489,11 @@ ...@@ -482,10 +489,11 @@
"What’s New in": "What’s New in much new", "What’s New in": "What’s New in much new",
"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "When history is turned off, new chats on this browser won't appear in your history on any of your devices. Much history.", "When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "When history is turned off, new chats on this browser won't appear in your history on any of your devices. Much history.",
"Whisper (Local)": "Whisper (Local) much whisper", "Whisper (Local)": "Whisper (Local) much whisper",
"Workspace": "",
"Write a prompt suggestion (e.g. Who are you?)": "Write a prompt suggestion (e.g. Who are you?) much suggest", "Write a prompt suggestion (e.g. Who are you?)": "Write a prompt suggestion (e.g. Who are you?) much suggest",
"Write a summary in 50 words that summarizes [topic or keyword].": "Write a summary in 50 words that summarizes [topic or keyword]. Much summarize.", "Write a summary in 50 words that summarizes [topic or keyword].": "Write a summary in 50 words that summarizes [topic or keyword]. Much summarize.",
"Yesterday": "", "Yesterday": "",
"You": "You very you", "You": "",
"You have no archived conversations.": "", "You have no archived conversations.": "",
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "You're a helpful assistant. Much helpful.", "You're a helpful assistant.": "You're a helpful assistant. Much helpful.",
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
"About": "", "About": "",
"Account": "", "Account": "",
"Accurate information": "", "Accurate information": "",
"Add": "",
"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": "",
...@@ -18,6 +19,7 @@ ...@@ -18,6 +19,7 @@
"Add custom prompt": "", "Add custom prompt": "",
"Add Docs": "", "Add Docs": "",
"Add Files": "", "Add Files": "",
"Add Memory": "",
"Add message": "", "Add message": "",
"Add Model": "", "Add Model": "",
"Add Tags": "", "Add Tags": "",
...@@ -66,6 +68,8 @@ ...@@ -66,6 +68,8 @@
"Categories": "", "Categories": "",
"Change Password": "", "Change Password": "",
"Chat": "", "Chat": "",
"Chat Bubble UI": "",
"Chat direction": "",
"Chat History": "", "Chat History": "",
"Chat History is off for this browser.": "", "Chat History is off for this browser.": "",
"Chats": "", "Chats": "",
...@@ -117,7 +121,6 @@ ...@@ -117,7 +121,6 @@
"Dark": "", "Dark": "",
"Dashboard": "", "Dashboard": "",
"Database": "", "Database": "",
"DD/MM/YYYY HH:mm": "",
"December": "", "December": "",
"Default": "", "Default": "",
"Default (Automatic1111)": "", "Default (Automatic1111)": "",
...@@ -168,6 +171,7 @@ ...@@ -168,6 +171,7 @@
"Enabled": "", "Enabled": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "", "Enter {{role}} message here": "",
"Enter a detail about yourself for your LLMs to recall": "",
"Enter Chunk Overlap": "", "Enter Chunk Overlap": "",
"Enter Chunk Size": "", "Enter Chunk Size": "",
"Enter Image Size (e.g. 512x512)": "", "Enter Image Size (e.g. 512x512)": "",
...@@ -211,6 +215,7 @@ ...@@ -211,6 +215,7 @@
"General Settings": "", "General Settings": "",
"Generation Info": "", "Generation Info": "",
"Good Response": "", "Good Response": "",
"h:mm a": "",
"has no conversations.": "", "has no conversations.": "",
"Hello, {{name}}": "", "Hello, {{name}}": "",
"Help": "", "Help": "",
...@@ -244,6 +249,7 @@ ...@@ -244,6 +249,7 @@
"Light": "", "Light": "",
"Listening...": "", "Listening...": "",
"LLMs can make mistakes. Verify important information.": "", "LLMs can make mistakes. Verify important information.": "",
"LTR": "",
"Made by OpenWebUI Community": "", "Made by OpenWebUI Community": "",
"Make sure to enclose them with": "", "Make sure to enclose them with": "",
"Manage LiteLLM Models": "", "Manage LiteLLM Models": "",
...@@ -253,7 +259,9 @@ ...@@ -253,7 +259,9 @@
"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.": "",
"May": "", "May": "",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
"Minimum Score": "", "Minimum Score": "",
"Mirostat": "", "Mirostat": "",
"Mirostat Eta": "", "Mirostat Eta": "",
...@@ -276,9 +284,6 @@ ...@@ -276,9 +284,6 @@
"Modelfiles": "", "Modelfiles": "",
"Models": "", "Models": "",
"More": "", "More": "",
"My Documents": "",
"My Modelfiles": "",
"My Prompts": "",
"Name": "", "Name": "",
"Name Tag": "", "Name Tag": "",
"Name your modelfile": "", "Name your modelfile": "",
...@@ -323,6 +328,7 @@ ...@@ -323,6 +328,7 @@
"PDF Extract Images (OCR)": "", "PDF Extract Images (OCR)": "",
"pending": "", "pending": "",
"Permission denied when accessing microphone: {{error}}": "", "Permission denied when accessing microphone: {{error}}": "",
"Personalization": "",
"Plain text (.txt)": "", "Plain text (.txt)": "",
"Playground": "", "Playground": "",
"Positive attitude": "", "Positive attitude": "",
...@@ -360,9 +366,9 @@ ...@@ -360,9 +366,9 @@
"Role": "", "Role": "",
"Rosé Pine": "", "Rosé Pine": "",
"Rosé Pine Dawn": "", "Rosé Pine Dawn": "",
"RTL": "",
"Save": "", "Save": "",
"Save & Create": "", "Save & Create": "",
"Save & Submit": "",
"Save & Update": "", "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": "", "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": "",
...@@ -379,6 +385,7 @@ ...@@ -379,6 +385,7 @@
"Select a model": "", "Select a model": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select model": "", "Select model": "",
"Send": "",
"Send a Message": "", "Send a Message": "",
"Send message": "", "Send message": "",
"September": "", "September": "",
...@@ -482,6 +489,7 @@ ...@@ -482,6 +489,7 @@
"What’s New in": "", "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.": "", "When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "",
"Whisper (Local)": "", "Whisper (Local)": "",
"Workspace": "",
"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].": "",
"Yesterday": "", "Yesterday": "",
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
"About": "", "About": "",
"Account": "", "Account": "",
"Accurate information": "", "Accurate information": "",
"Add": "",
"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": "",
...@@ -18,6 +19,7 @@ ...@@ -18,6 +19,7 @@
"Add custom prompt": "", "Add custom prompt": "",
"Add Docs": "", "Add Docs": "",
"Add Files": "", "Add Files": "",
"Add Memory": "",
"Add message": "", "Add message": "",
"Add Model": "", "Add Model": "",
"Add Tags": "", "Add Tags": "",
...@@ -66,6 +68,8 @@ ...@@ -66,6 +68,8 @@
"Categories": "", "Categories": "",
"Change Password": "", "Change Password": "",
"Chat": "", "Chat": "",
"Chat Bubble UI": "",
"Chat direction": "",
"Chat History": "", "Chat History": "",
"Chat History is off for this browser.": "", "Chat History is off for this browser.": "",
"Chats": "", "Chats": "",
...@@ -117,7 +121,6 @@ ...@@ -117,7 +121,6 @@
"Dark": "", "Dark": "",
"Dashboard": "", "Dashboard": "",
"Database": "", "Database": "",
"DD/MM/YYYY HH:mm": "",
"December": "", "December": "",
"Default": "", "Default": "",
"Default (Automatic1111)": "", "Default (Automatic1111)": "",
...@@ -168,6 +171,7 @@ ...@@ -168,6 +171,7 @@
"Enabled": "", "Enabled": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "", "Enter {{role}} message here": "",
"Enter a detail about yourself for your LLMs to recall": "",
"Enter Chunk Overlap": "", "Enter Chunk Overlap": "",
"Enter Chunk Size": "", "Enter Chunk Size": "",
"Enter Image Size (e.g. 512x512)": "", "Enter Image Size (e.g. 512x512)": "",
...@@ -211,6 +215,7 @@ ...@@ -211,6 +215,7 @@
"General Settings": "", "General Settings": "",
"Generation Info": "", "Generation Info": "",
"Good Response": "", "Good Response": "",
"h:mm a": "",
"has no conversations.": "", "has no conversations.": "",
"Hello, {{name}}": "", "Hello, {{name}}": "",
"Help": "", "Help": "",
...@@ -244,6 +249,7 @@ ...@@ -244,6 +249,7 @@
"Light": "", "Light": "",
"Listening...": "", "Listening...": "",
"LLMs can make mistakes. Verify important information.": "", "LLMs can make mistakes. Verify important information.": "",
"LTR": "",
"Made by OpenWebUI Community": "", "Made by OpenWebUI Community": "",
"Make sure to enclose them with": "", "Make sure to enclose them with": "",
"Manage LiteLLM Models": "", "Manage LiteLLM Models": "",
...@@ -253,7 +259,9 @@ ...@@ -253,7 +259,9 @@
"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.": "",
"May": "", "May": "",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
"Minimum Score": "", "Minimum Score": "",
"Mirostat": "", "Mirostat": "",
"Mirostat Eta": "", "Mirostat Eta": "",
...@@ -276,9 +284,6 @@ ...@@ -276,9 +284,6 @@
"Modelfiles": "", "Modelfiles": "",
"Models": "", "Models": "",
"More": "", "More": "",
"My Documents": "",
"My Modelfiles": "",
"My Prompts": "",
"Name": "", "Name": "",
"Name Tag": "", "Name Tag": "",
"Name your modelfile": "", "Name your modelfile": "",
...@@ -323,6 +328,7 @@ ...@@ -323,6 +328,7 @@
"PDF Extract Images (OCR)": "", "PDF Extract Images (OCR)": "",
"pending": "", "pending": "",
"Permission denied when accessing microphone: {{error}}": "", "Permission denied when accessing microphone: {{error}}": "",
"Personalization": "",
"Plain text (.txt)": "", "Plain text (.txt)": "",
"Playground": "", "Playground": "",
"Positive attitude": "", "Positive attitude": "",
...@@ -360,9 +366,9 @@ ...@@ -360,9 +366,9 @@
"Role": "", "Role": "",
"Rosé Pine": "", "Rosé Pine": "",
"Rosé Pine Dawn": "", "Rosé Pine Dawn": "",
"RTL": "",
"Save": "", "Save": "",
"Save & Create": "", "Save & Create": "",
"Save & Submit": "",
"Save & Update": "", "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": "", "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": "",
...@@ -379,6 +385,7 @@ ...@@ -379,6 +385,7 @@
"Select a model": "", "Select a model": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select model": "", "Select model": "",
"Send": "",
"Send a Message": "", "Send a Message": "",
"Send message": "", "Send message": "",
"September": "", "September": "",
...@@ -482,6 +489,7 @@ ...@@ -482,6 +489,7 @@
"What’s New in": "", "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.": "", "When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "",
"Whisper (Local)": "", "Whisper (Local)": "",
"Workspace": "",
"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].": "",
"Yesterday": "", "Yesterday": "",
......
...@@ -10,14 +10,16 @@ ...@@ -10,14 +10,16 @@
"About": "Sobre nosotros", "About": "Sobre nosotros",
"Account": "Cuenta", "Account": "Cuenta",
"Accurate information": "", "Accurate information": "",
"Add": "",
"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",
"Add a short title for this prompt": "Agregue un título corto para este Prompt", "Add a short title for this prompt": "Agregue un título corto para este Prompt",
"Add a tag": "Agregar una etiqueta", "Add a tag": "Agregar una etiqueta",
"Add custom prompt": "", "Add custom prompt": "Agregar un prompt personalizado",
"Add Docs": "Agregar Documentos", "Add Docs": "Agregar Documentos",
"Add Files": "Agregar Archivos", "Add Files": "Agregar Archivos",
"Add Memory": "",
"Add message": "Agregar Prompt", "Add message": "Agregar Prompt",
"Add Model": "", "Add Model": "",
"Add Tags": "agregar etiquetas", "Add Tags": "agregar etiquetas",
...@@ -47,8 +49,8 @@ ...@@ -47,8 +49,8 @@
"Archived Chats": "Chats archivados", "Archived Chats": "Chats archivados",
"are allowed - Activate this command by typing": "están permitidos - Active este comando escribiendo", "are allowed - Activate this command by typing": "están permitidos - Active este comando escribiendo",
"Are you sure?": "¿Está seguro?", "Are you sure?": "¿Está seguro?",
"Attach file": "", "Attach file": "Adjuntar archivo",
"Attention to detail": "", "Attention to detail": "Detalle preciso",
"Audio": "Audio", "Audio": "Audio",
"August": "", "August": "",
"Auto-playback response": "Respuesta de reproducción automática", "Auto-playback response": "Respuesta de reproducción automática",
...@@ -66,6 +68,8 @@ ...@@ -66,6 +68,8 @@
"Categories": "Categorías", "Categories": "Categorías",
"Change Password": "Cambia la Contraseña", "Change Password": "Cambia la Contraseña",
"Chat": "Chat", "Chat": "Chat",
"Chat Bubble UI": "",
"Chat direction": "",
"Chat History": "Historial del Chat", "Chat History": "Historial del Chat",
"Chat History is off for this browser.": "El Historial del Chat está apagado para este navegador.", "Chat History is off for this browser.": "El Historial del Chat está apagado para este navegador.",
"Chats": "Chats", "Chats": "Chats",
...@@ -76,7 +80,7 @@ ...@@ -76,7 +80,7 @@
"Chunk Overlap": "Superposición de fragmentos", "Chunk Overlap": "Superposición de fragmentos",
"Chunk Params": "Parámetros de fragmentos", "Chunk Params": "Parámetros de fragmentos",
"Chunk Size": "Tamaño de fragmentos", "Chunk Size": "Tamaño de fragmentos",
"Citation": "", "Citation": "Cita",
"Click here for help.": "Presiona aquí para obtener ayuda.", "Click here for help.": "Presiona aquí para obtener ayuda.",
"Click here to": "", "Click here to": "",
"Click here to check other modelfiles.": "Presiona aquí para consultar otros modelfiles.", "Click here to check other modelfiles.": "Presiona aquí para consultar otros modelfiles.",
...@@ -117,7 +121,6 @@ ...@@ -117,7 +121,6 @@
"Dark": "Oscuro", "Dark": "Oscuro",
"Dashboard": "", "Dashboard": "",
"Database": "Base de datos", "Database": "Base de datos",
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"December": "", "December": "",
"Default": "Por defecto", "Default": "Por defecto",
"Default (Automatic1111)": "Por defecto (Automatic1111)", "Default (Automatic1111)": "Por defecto (Automatic1111)",
...@@ -168,6 +171,7 @@ ...@@ -168,6 +171,7 @@
"Enabled": "Activado", "Enabled": "Activado",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "Ingrese el mensaje {{role}} aquí", "Enter {{role}} message here": "Ingrese el mensaje {{role}} aquí",
"Enter a detail about yourself for your LLMs to recall": "",
"Enter Chunk Overlap": "Ingresar superposición de fragmentos", "Enter Chunk Overlap": "Ingresar superposición de fragmentos",
"Enter Chunk Size": "Ingrese el tamaño del fragmento", "Enter Chunk Size": "Ingrese 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)",
...@@ -211,6 +215,7 @@ ...@@ -211,6 +215,7 @@
"General Settings": "Opciones Generales", "General Settings": "Opciones Generales",
"Generation Info": "", "Generation Info": "",
"Good Response": "", "Good Response": "",
"h:mm a": "",
"has no conversations.": "", "has no conversations.": "",
"Hello, {{name}}": "Hola, {{name}}", "Hello, {{name}}": "Hola, {{name}}",
"Help": "", "Help": "",
...@@ -227,7 +232,7 @@ ...@@ -227,7 +232,7 @@
"Import Modelfiles": "Importar Modelfiles", "Import Modelfiles": "Importar Modelfiles",
"Import Prompts": "Importar Prompts", "Import Prompts": "Importar Prompts",
"Include `--api` flag when running stable-diffusion-webui": "Incluir el indicador `--api` al ejecutar stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Incluir el indicador `--api` al ejecutar stable-diffusion-webui",
"Input commands": "", "Input commands": "Ingresar comandos",
"Interface": "Interfaz", "Interface": "Interfaz",
"Invalid Tag": "", "Invalid Tag": "",
"January": "", "January": "",
...@@ -244,6 +249,7 @@ ...@@ -244,6 +249,7 @@
"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.",
"LTR": "",
"Made by OpenWebUI Community": "Hecho por la comunidad de OpenWebUI", "Made by OpenWebUI Community": "Hecho por la comunidad de OpenWebUI",
"Make sure to enclose them with": "Asegúrese de adjuntarlos con", "Make sure to enclose them with": "Asegúrese de adjuntarlos con",
"Manage LiteLLM Models": "Administrar Modelos LiteLLM", "Manage LiteLLM Models": "Administrar Modelos LiteLLM",
...@@ -253,7 +259,9 @@ ...@@ -253,7 +259,9 @@
"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.",
"May": "", "May": "",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
"Minimum Score": "", "Minimum Score": "",
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
...@@ -276,16 +284,13 @@ ...@@ -276,16 +284,13 @@
"Modelfiles": "Modelfiles", "Modelfiles": "Modelfiles",
"Models": "Modelos", "Models": "Modelos",
"More": "", "More": "",
"My Documents": "Mis Documentos",
"My Modelfiles": "Mis Modelfiles",
"My Prompts": "Mis Prompts",
"Name": "Nombre", "Name": "Nombre",
"Name Tag": "Nombre de etiqueta", "Name Tag": "Nombre de etiqueta",
"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": "", "No results found": "",
"No source available": "", "No source available": "No hay fuente disponible",
"Not factually correct": "", "Not factually correct": "",
"Not sure what to add?": "¿No sabes qué añadir?", "Not sure what to add?": "¿No sabes qué añadir?",
"Not sure what to write? Switch to": "¿No sabes qué escribir? Cambia a", "Not sure what to write? Switch to": "¿No sabes qué escribir? Cambia a",
...@@ -323,6 +328,7 @@ ...@@ -323,6 +328,7 @@
"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}}",
"Personalization": "",
"Plain text (.txt)": "", "Plain text (.txt)": "",
"Playground": "Patio de juegos", "Playground": "Patio de juegos",
"Positive attitude": "", "Positive attitude": "",
...@@ -360,9 +366,9 @@ ...@@ -360,9 +366,9 @@
"Role": "Rol", "Role": "Rol",
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "",
"Save": "Guardar", "Save": "Guardar",
"Save & Create": "Guardar y Crear", "Save & Create": "Guardar y Crear",
"Save & Submit": "Guardar y Enviar",
"Save & Update": "Guardar y Actualizar", "Save & Update": "Guardar y Actualizar",
"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": "Ya no se admite guardar registros de chat directamente en el almacenamiento de su navegador. Tómese un momento para descargar y eliminar sus registros de chat haciendo clic en el botón a continuación. No te preocupes, puedes volver a importar fácilmente tus registros de chat al backend a través de", "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": "Ya no se admite guardar registros de chat directamente en el almacenamiento de su navegador. Tómese un momento para descargar y eliminar sus registros de chat haciendo clic en el botón a continuación. No te preocupes, puedes volver a importar fácilmente tus registros de chat al backend a través de",
"Scan": "Escanear", "Scan": "Escanear",
...@@ -378,7 +384,8 @@ ...@@ -378,7 +384,8 @@
"Select a mode": "Selecciona un modo", "Select a mode": "Selecciona un modo",
"Select a model": "Selecciona un modelo", "Select a model": "Selecciona un modelo",
"Select an Ollama instance": "Seleccione una instancia de Ollama", "Select an Ollama instance": "Seleccione una instancia de Ollama",
"Select model": "", "Select model": "Selecciona un modelo",
"Send": "",
"Send a Message": "Enviar un Mensaje", "Send a Message": "Enviar un Mensaje",
"Send message": "Enviar Mensaje", "Send message": "Enviar Mensaje",
"September": "", "September": "",
...@@ -407,7 +414,7 @@ ...@@ -407,7 +414,7 @@
"Sign Out": "Cerrar sesión", "Sign Out": "Cerrar sesión",
"Sign up": "Crear una cuenta", "Sign up": "Crear una cuenta",
"Signing in": "", "Signing in": "",
"Source": "", "Source": "Fuente",
"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.",
...@@ -482,10 +489,11 @@ ...@@ -482,10 +489,11 @@
"What’s New in": "Novedades en", "What’s New in": "Novedades en",
"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Cuando el historial está desactivado, los nuevos chats en este navegador no aparecerán en el historial de ninguno de sus dispositivos..", "When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Cuando el historial está desactivado, los nuevos chats en este navegador no aparecerán en el historial de ninguno de sus dispositivos..",
"Whisper (Local)": "Whisper (Local)", "Whisper (Local)": "Whisper (Local)",
"Workspace": "",
"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].",
"Yesterday": "", "Yesterday": "",
"You": "Usted", "You": "",
"You have no archived conversations.": "", "You have no archived conversations.": "",
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "Eres un asistente útil.", "You're a helpful assistant.": "Eres un asistente útil.",
......
...@@ -10,14 +10,16 @@ ...@@ -10,14 +10,16 @@
"About": "درباره", "About": "درباره",
"Account": "حساب کاربری", "Account": "حساب کاربری",
"Accurate information": "", "Accurate information": "",
"Add": "",
"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مدل انجام می دهد اضافه کنید",
"Add a short title for this prompt": "یک عنوان کوتاه برای این درخواست اضافه کنید", "Add a short title for this prompt": "یک عنوان کوتاه برای این درخواست اضافه کنید",
"Add a tag": "اضافه کردن یک تگ", "Add a tag": "اضافه کردن یک تگ",
"Add custom prompt": "", "Add custom prompt": "اضافه کردن یک درخواست سفارشی",
"Add Docs": "اضافه کردن اسناد", "Add Docs": "اضافه کردن اسناد",
"Add Files": "اضافه کردن فایل\u200cها", "Add Files": "اضافه کردن فایل\u200cها",
"Add Memory": "",
"Add message": "اضافه کردن پیغام", "Add message": "اضافه کردن پیغام",
"Add Model": "", "Add Model": "",
"Add Tags": "اضافه کردن تگ\u200cها", "Add Tags": "اضافه کردن تگ\u200cها",
...@@ -47,8 +49,8 @@ ...@@ -47,8 +49,8 @@
"Archived Chats": "آرشیو تاریخچه چت", "Archived Chats": "آرشیو تاریخچه چت",
"are allowed - Activate this command by typing": "مجاز هستند - این دستور را با تایپ کردن این فعال کنید:", "are allowed - Activate this command by typing": "مجاز هستند - این دستور را با تایپ کردن این فعال کنید:",
"Are you sure?": "آیا مطمئن هستید؟", "Are you sure?": "آیا مطمئن هستید؟",
"Attach file": "", "Attach file": "پیوست فایل",
"Attention to detail": "", "Attention to detail": "دقیق",
"Audio": "صدا", "Audio": "صدا",
"August": "", "August": "",
"Auto-playback response": "پخش خودکار پاسخ ", "Auto-playback response": "پخش خودکار پاسخ ",
...@@ -66,6 +68,8 @@ ...@@ -66,6 +68,8 @@
"Categories": "دسته\u200cبندی\u200cها", "Categories": "دسته\u200cبندی\u200cها",
"Change Password": "تغییر رمز عبور", "Change Password": "تغییر رمز عبور",
"Chat": "گپ", "Chat": "گپ",
"Chat Bubble UI": "",
"Chat direction": "",
"Chat History": "تاریخچه\u200cی گفتگو", "Chat History": "تاریخچه\u200cی گفتگو",
"Chat History is off for this browser.": "سابقه گپ برای این مرورگر خاموش است.", "Chat History is off for this browser.": "سابقه گپ برای این مرورگر خاموش است.",
"Chats": "گپ\u200cها", "Chats": "گپ\u200cها",
...@@ -76,7 +80,7 @@ ...@@ -76,7 +80,7 @@
"Chunk Overlap": "همپوشانی تکه", "Chunk Overlap": "همپوشانی تکه",
"Chunk Params": "پارامترهای تکه", "Chunk Params": "پارامترهای تکه",
"Chunk Size": "اندازه تکه", "Chunk Size": "اندازه تکه",
"Citation": "", "Citation": "استناد",
"Click here for help.": "برای کمک اینجا را کلیک کنید.", "Click here for help.": "برای کمک اینجا را کلیک کنید.",
"Click here to": "", "Click here to": "",
"Click here to check other modelfiles.": "برای بررسی سایر فایل\u200cهای مدل اینجا را کلیک کنید.", "Click here to check other modelfiles.": "برای بررسی سایر فایل\u200cهای مدل اینجا را کلیک کنید.",
...@@ -117,7 +121,6 @@ ...@@ -117,7 +121,6 @@
"Dark": "تیره", "Dark": "تیره",
"Dashboard": "", "Dashboard": "",
"Database": "پایگاه داده", "Database": "پایگاه داده",
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"December": "", "December": "",
"Default": "پیشفرض", "Default": "پیشفرض",
"Default (Automatic1111)": "پیشفرض (Automatic1111)", "Default (Automatic1111)": "پیشفرض (Automatic1111)",
...@@ -168,6 +171,7 @@ ...@@ -168,6 +171,7 @@
"Enabled": "فعال", "Enabled": "فعال",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "پیام {{role}} را اینجا وارد کنید", "Enter {{role}} message here": "پیام {{role}} را اینجا وارد کنید",
"Enter a detail about yourself for your LLMs to recall": "",
"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)",
...@@ -211,6 +215,7 @@ ...@@ -211,6 +215,7 @@
"General Settings": "تنظیمات عمومی", "General Settings": "تنظیمات عمومی",
"Generation Info": "", "Generation Info": "",
"Good Response": "", "Good Response": "",
"h:mm a": "",
"has no conversations.": "", "has no conversations.": "",
"Hello, {{name}}": "سلام، {{name}}", "Hello, {{name}}": "سلام، {{name}}",
"Help": "", "Help": "",
...@@ -227,7 +232,7 @@ ...@@ -227,7 +232,7 @@
"Import Modelfiles": "ایمپورت فایل\u200cهای مدل", "Import Modelfiles": "ایمپورت فایل\u200cهای مدل",
"Import Prompts": "ایمپورت پرامپت\u200cها", "Import Prompts": "ایمپورت پرامپت\u200cها",
"Include `--api` flag when running stable-diffusion-webui": "فلگ `--api` را هنکام اجرای stable-diffusion-webui استفاده کنید.", "Include `--api` flag when running stable-diffusion-webui": "فلگ `--api` را هنکام اجرای stable-diffusion-webui استفاده کنید.",
"Input commands": "", "Input commands": "ورودی دستورات",
"Interface": "رابط", "Interface": "رابط",
"Invalid Tag": "", "Invalid Tag": "",
"January": "", "January": "",
...@@ -244,6 +249,7 @@ ...@@ -244,6 +249,7 @@
"Light": "روشن", "Light": "روشن",
"Listening...": "در حال گوش دادن...", "Listening...": "در حال گوش دادن...",
"LLMs can make mistakes. Verify important information.": "مدل\u200cهای زبانی بزرگ می\u200cتوانند اشتباه کنند. اطلاعات مهم را راستی\u200cآزمایی کنید.", "LLMs can make mistakes. Verify important information.": "مدل\u200cهای زبانی بزرگ می\u200cتوانند اشتباه کنند. اطلاعات مهم را راستی\u200cآزمایی کنید.",
"LTR": "",
"Made by OpenWebUI Community": "ساخته شده توسط OpenWebUI Community", "Made by OpenWebUI Community": "ساخته شده توسط OpenWebUI Community",
"Make sure to enclose them with": "مطمئن شوید که آنها را با این محصور کنید:", "Make sure to enclose them with": "مطمئن شوید که آنها را با این محصور کنید:",
"Manage LiteLLM Models": "Manage LiteLLM Models", "Manage LiteLLM Models": "Manage LiteLLM Models",
...@@ -253,7 +259,9 @@ ...@@ -253,7 +259,9 @@
"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 مدل را می توان به طور همزمان دانلود کرد. لطفاً بعداً دوباره امتحان کنید.",
"May": "", "May": "",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
"Minimum Score": "", "Minimum Score": "",
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
...@@ -276,16 +284,13 @@ ...@@ -276,16 +284,13 @@
"Modelfiles": "فایل\u200cهای مدل", "Modelfiles": "فایل\u200cهای مدل",
"Models": "مدل\u200cها", "Models": "مدل\u200cها",
"More": "", "More": "",
"My Documents": "اسناد من",
"My Modelfiles": "فایل\u200cهای مدل من",
"My Prompts": "پرامپت\u200cهای من",
"Name": "نام", "Name": "نام",
"Name Tag": "نام تگ", "Name Tag": "نام تگ",
"Name your modelfile": "فایل مدل را نام\u200cگذاری کنید", "Name your modelfile": "فایل مدل را نام\u200cگذاری کنید",
"New Chat": "گپ جدید", "New Chat": "گپ جدید",
"New Password": "رمز عبور جدید", "New Password": "رمز عبور جدید",
"No results found": "", "No results found": "",
"No source available": "", "No source available": "منبعی در دسترس نیست",
"Not factually correct": "", "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": "مطمئن نیستید چه بنویسید؟ تغییر به",
...@@ -323,6 +328,7 @@ ...@@ -323,6 +328,7 @@
"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}}",
"Personalization": "",
"Plain text (.txt)": "", "Plain text (.txt)": "",
"Playground": "زمین بازی", "Playground": "زمین بازی",
"Positive attitude": "", "Positive attitude": "",
...@@ -360,9 +366,9 @@ ...@@ -360,9 +366,9 @@
"Role": "نقش", "Role": "نقش",
"Rosé Pine": "Rosé Pine", "Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn", "Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "",
"Save": "ذخیره", "Save": "ذخیره",
"Save & Create": "ذخیره و ایجاد", "Save & Create": "ذخیره و ایجاد",
"Save & Submit": "ذخیره و ارسال",
"Save & Update": "ذخیره و به\u200cروزرسانی", "Save & Update": "ذخیره و به\u200cروزرسانی",
"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": "ذخیره گزارش\u200cهای چت مستقیماً در حافظه مرورگر شما دیگر پشتیبانی نمی\u200cشود. لطفاً با کلیک بر روی دکمه زیر، چند لحظه برای دانلود و حذف گزارش های چت خود وقت بگذارید. نگران نباشید، شما به راحتی می توانید گزارش های چت خود را از طریق بکند دوباره وارد کنید", "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": "ذخیره گزارش\u200cهای چت مستقیماً در حافظه مرورگر شما دیگر پشتیبانی نمی\u200cشود. لطفاً با کلیک بر روی دکمه زیر، چند لحظه برای دانلود و حذف گزارش های چت خود وقت بگذارید. نگران نباشید، شما به راحتی می توانید گزارش های چت خود را از طریق بکند دوباره وارد کنید",
"Scan": "اسکن", "Scan": "اسکن",
...@@ -378,7 +384,8 @@ ...@@ -378,7 +384,8 @@
"Select a mode": "یک حالت انتخاب کنید", "Select a mode": "یک حالت انتخاب کنید",
"Select a model": "انتخاب یک مدل", "Select a model": "انتخاب یک مدل",
"Select an Ollama instance": "انتخاب یک نمونه از اولاما", "Select an Ollama instance": "انتخاب یک نمونه از اولاما",
"Select model": "", "Select model": "انتخاب یک مدل",
"Send": "",
"Send a Message": "ارسال یک پیام", "Send a Message": "ارسال یک پیام",
"Send message": "ارسال پیام", "Send message": "ارسال پیام",
"September": "", "September": "",
...@@ -407,7 +414,7 @@ ...@@ -407,7 +414,7 @@
"Sign Out": "خروج", "Sign Out": "خروج",
"Sign up": "ثبت نام", "Sign up": "ثبت نام",
"Signing in": "", "Signing in": "",
"Source": "", "Source": "منبع",
"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 تشخیص گفتار در این مرورگر پشتیبانی نمی شود.",
...@@ -482,10 +489,11 @@ ...@@ -482,10 +489,11 @@
"What’s New in": "موارد جدید در", "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.": "وقتی سابقه خاموش است، چت\u200cهای جدید در این مرورگر در سابقه شما در هیچ یک از دستگاه\u200cهایتان ظاهر نمی\u200cشوند.", "When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "وقتی سابقه خاموش است، چت\u200cهای جدید در این مرورگر در سابقه شما در هیچ یک از دستگاه\u200cهایتان ظاهر نمی\u200cشوند.",
"Whisper (Local)": "ویسپر (محلی)", "Whisper (Local)": "ویسپر (محلی)",
"Workspace": "",
"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 کلمه بنویسید که [موضوع یا کلمه کلیدی] را خلاصه کند.",
"Yesterday": "", "Yesterday": "",
"You": "شما", "You": "",
"You have no archived conversations.": "", "You have no archived conversations.": "",
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "تو یک دستیار سودمند هستی.", "You're a helpful assistant.": "تو یک دستیار سودمند هستی.",
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
"About": "Tietoja", "About": "Tietoja",
"Account": "Tili", "Account": "Tili",
"Accurate information": "Tarkkaa tietoa", "Accurate information": "Tarkkaa tietoa",
"Add": "",
"Add a model": "Lisää malli", "Add a model": "Lisää malli",
"Add a model tag name": "Lisää mallitagi", "Add a model tag name": "Lisää mallitagi",
"Add a short description about what this modelfile does": "Lisää lyhyt kuvaus siitä, mitä tämä mallitiedosto tekee", "Add a short description about what this modelfile does": "Lisää lyhyt kuvaus siitä, mitä tämä mallitiedosto tekee",
...@@ -18,6 +19,7 @@ ...@@ -18,6 +19,7 @@
"Add custom prompt": "Lisää mukautettu kehote", "Add custom prompt": "Lisää mukautettu kehote",
"Add Docs": "Lisää asiakirjoja", "Add Docs": "Lisää asiakirjoja",
"Add Files": "Lisää tiedostoja", "Add Files": "Lisää tiedostoja",
"Add Memory": "",
"Add message": "Lisää viesti", "Add message": "Lisää viesti",
"Add Model": "Lisää malli", "Add Model": "Lisää malli",
"Add Tags": "Lisää tageja", "Add Tags": "Lisää tageja",
...@@ -66,6 +68,8 @@ ...@@ -66,6 +68,8 @@
"Categories": "Kategoriat", "Categories": "Kategoriat",
"Change Password": "Vaihda salasana", "Change Password": "Vaihda salasana",
"Chat": "Keskustelu", "Chat": "Keskustelu",
"Chat Bubble UI": "",
"Chat direction": "",
"Chat History": "Keskusteluhistoria", "Chat History": "Keskusteluhistoria",
"Chat History is off for this browser.": "Keskusteluhistoria on pois päältä tällä selaimella.", "Chat History is off for this browser.": "Keskusteluhistoria on pois päältä tällä selaimella.",
"Chats": "Keskustelut", "Chats": "Keskustelut",
...@@ -117,7 +121,6 @@ ...@@ -117,7 +121,6 @@
"Dark": "Tumma", "Dark": "Tumma",
"Dashboard": "Kojelauta", "Dashboard": "Kojelauta",
"Database": "Tietokanta", "Database": "Tietokanta",
"DD/MM/YYYY HH:mm": "DD.MM.YYYY HH:mm",
"December": "joulukuu", "December": "joulukuu",
"Default": "Oletus", "Default": "Oletus",
"Default (Automatic1111)": "Oletus (AUTOMATIC1111)", "Default (Automatic1111)": "Oletus (AUTOMATIC1111)",
...@@ -168,6 +171,7 @@ ...@@ -168,6 +171,7 @@
"Enabled": "Käytössä", "Enabled": "Käytössä",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Varmista, että CSV-tiedostossasi on 4 saraketta seuraavassa järjestyksessä: Nimi, Sähköposti, Salasana, Rooli.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Varmista, että CSV-tiedostossasi on 4 saraketta seuraavassa järjestyksessä: Nimi, Sähköposti, Salasana, Rooli.",
"Enter {{role}} message here": "Kirjoita {{role}} viesti tähän", "Enter {{role}} message here": "Kirjoita {{role}} viesti tähän",
"Enter a detail about yourself for your LLMs to recall": "",
"Enter Chunk Overlap": "Syötä osien päällekkäisyys", "Enter Chunk Overlap": "Syötä osien päällekkäisyys",
"Enter Chunk Size": "Syötä osien koko", "Enter Chunk Size": "Syötä osien koko",
"Enter Image Size (e.g. 512x512)": "Syötä kuvan koko (esim. 512x512)", "Enter Image Size (e.g. 512x512)": "Syötä kuvan koko (esim. 512x512)",
...@@ -211,6 +215,7 @@ ...@@ -211,6 +215,7 @@
"General Settings": "Yleisasetukset", "General Settings": "Yleisasetukset",
"Generation Info": "Generointitiedot", "Generation Info": "Generointitiedot",
"Good Response": "Hyvä vastaus", "Good Response": "Hyvä vastaus",
"h:mm a": "",
"has no conversations.": "ei ole keskusteluja.", "has no conversations.": "ei ole keskusteluja.",
"Hello, {{name}}": "Terve, {{name}}", "Hello, {{name}}": "Terve, {{name}}",
"Help": "Apua", "Help": "Apua",
...@@ -244,6 +249,7 @@ ...@@ -244,6 +249,7 @@
"Light": "Vaalea", "Light": "Vaalea",
"Listening...": "Kuunnellaan...", "Listening...": "Kuunnellaan...",
"LLMs can make mistakes. Verify important information.": "Kielimallit voivat tehdä virheitä. Varmista tärkeät tiedot.", "LLMs can make mistakes. Verify important information.": "Kielimallit voivat tehdä virheitä. Varmista tärkeät tiedot.",
"LTR": "",
"Made by OpenWebUI Community": "Tehnyt OpenWebUI-yhteisö", "Made by OpenWebUI Community": "Tehnyt OpenWebUI-yhteisö",
"Make sure to enclose them with": "Varmista, että suljet ne", "Make sure to enclose them with": "Varmista, että suljet ne",
"Manage LiteLLM Models": "Hallitse LiteLLM-malleja", "Manage LiteLLM Models": "Hallitse LiteLLM-malleja",
...@@ -253,7 +259,9 @@ ...@@ -253,7 +259,9 @@
"Max Tokens": "Maksimitokenit", "Max Tokens": "Maksimitokenit",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Enintään 3 mallia voidaan ladata samanaikaisesti. Yritä myöhemmin uudelleen.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Enintään 3 mallia voidaan ladata samanaikaisesti. Yritä myöhemmin uudelleen.",
"May": "toukokuu", "May": "toukokuu",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "Viestejä, jotka lähetät luotuasi linkin, ei jaeta. Käyttäjät, joilla on tämä osoite voivat tarkastella jaettua keskustelua.", "Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
"Minimum Score": "Vähimmäispisteet", "Minimum Score": "Vähimmäispisteet",
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
...@@ -276,9 +284,6 @@ ...@@ -276,9 +284,6 @@
"Modelfiles": "Mallitiedostot", "Modelfiles": "Mallitiedostot",
"Models": "Mallit", "Models": "Mallit",
"More": "Lisää", "More": "Lisää",
"My Documents": "Omat asiakirjat",
"My Modelfiles": "Omat mallitiedostot",
"My Prompts": "Omat kehotteet",
"Name": "Nimi", "Name": "Nimi",
"Name Tag": "Nimitagi", "Name Tag": "Nimitagi",
"Name your modelfile": "Nimeä mallitiedostosi", "Name your modelfile": "Nimeä mallitiedostosi",
...@@ -323,6 +328,7 @@ ...@@ -323,6 +328,7 @@
"PDF Extract Images (OCR)": "PDF-tiedoston kuvien erottelu (OCR)", "PDF Extract Images (OCR)": "PDF-tiedoston kuvien erottelu (OCR)",
"pending": "odottaa", "pending": "odottaa",
"Permission denied when accessing microphone: {{error}}": "Mikrofonin käyttöoikeus evätty: {{error}}", "Permission denied when accessing microphone: {{error}}": "Mikrofonin käyttöoikeus evätty: {{error}}",
"Personalization": "",
"Plain text (.txt)": "Pelkkä teksti (.txt)", "Plain text (.txt)": "Pelkkä teksti (.txt)",
"Playground": "Leikkipaikka", "Playground": "Leikkipaikka",
"Positive attitude": "Positiivinen asenne", "Positive attitude": "Positiivinen asenne",
...@@ -360,9 +366,9 @@ ...@@ -360,9 +366,9 @@
"Role": "Rooli", "Role": "Rooli",
"Rosé Pine": "Rosee-mänty", "Rosé Pine": "Rosee-mänty",
"Rosé Pine Dawn": "Aamuinen Rosee-mänty", "Rosé Pine Dawn": "Aamuinen Rosee-mänty",
"RTL": "",
"Save": "Tallenna", "Save": "Tallenna",
"Save & Create": "Tallenna ja luo", "Save & Create": "Tallenna ja luo",
"Save & Submit": "Tallenna ja lähetä",
"Save & Update": "Tallenna ja päivitä", "Save & Update": "Tallenna ja päivitä",
"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": "Keskustelulokien tallentaminen suoraan selaimen tallennustilaan ei ole enää tuettua. Lataa ja poista keskustelulokit napsauttamalla alla olevaa painiketta. Älä huoli, voit helposti tuoda keskustelulokit takaisin backendiin", "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": "Keskustelulokien tallentaminen suoraan selaimen tallennustilaan ei ole enää tuettua. Lataa ja poista keskustelulokit napsauttamalla alla olevaa painiketta. Älä huoli, voit helposti tuoda keskustelulokit takaisin backendiin",
"Scan": "Skannaa", "Scan": "Skannaa",
...@@ -379,6 +385,7 @@ ...@@ -379,6 +385,7 @@
"Select a model": "Valitse malli", "Select a model": "Valitse malli",
"Select an Ollama instance": "Valitse Ollama-instanssi", "Select an Ollama instance": "Valitse Ollama-instanssi",
"Select model": "Valitse malli", "Select model": "Valitse malli",
"Send": "",
"Send a Message": "Lähetä viesti", "Send a Message": "Lähetä viesti",
"Send message": "Lähetä viesti", "Send message": "Lähetä viesti",
"September": "syyskuu", "September": "syyskuu",
...@@ -482,10 +489,11 @@ ...@@ -482,10 +489,11 @@
"What’s New in": "Mitä uutta", "What’s New in": "Mitä uutta",
"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Kun historia on pois päältä, uudet keskustelut tässä selaimessa eivät näy historiassasi millään laitteellasi.", "When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Kun historia on pois päältä, uudet keskustelut tässä selaimessa eivät näy historiassasi millään laitteellasi.",
"Whisper (Local)": "Whisper (paikallinen)", "Whisper (Local)": "Whisper (paikallinen)",
"Workspace": "",
"Write a prompt suggestion (e.g. Who are you?)": "Kirjoita ehdotettu kehote (esim. Kuka olet?)", "Write a prompt suggestion (e.g. Who are you?)": "Kirjoita ehdotettu kehote (esim. Kuka olet?)",
"Write a summary in 50 words that summarizes [topic or keyword].": "Kirjoita 50 sanan yhteenveto, joka tiivistää [aihe tai avainsana].", "Write a summary in 50 words that summarizes [topic or keyword].": "Kirjoita 50 sanan yhteenveto, joka tiivistää [aihe tai avainsana].",
"Yesterday": "Eilen", "Yesterday": "Eilen",
"You": "Sinä", "You": "",
"You have no archived conversations.": "Sinulla ei ole arkistoituja keskusteluja.", "You have no archived conversations.": "Sinulla ei ole arkistoituja keskusteluja.",
"You have shared this chat": "Olet jakanut tämän keskustelun", "You have shared this chat": "Olet jakanut tämän keskustelun",
"You're a helpful assistant.": "Olet avulias apulainen.", "You're a helpful assistant.": "Olet avulias apulainen.",
......
...@@ -10,14 +10,16 @@ ...@@ -10,14 +10,16 @@
"About": "À propos", "About": "À propos",
"Account": "Compte", "Account": "Compte",
"Accurate information": "", "Accurate information": "",
"Add": "",
"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",
"Add a short title for this prompt": "Ajouter un court titre pour ce prompt", "Add a short title for this prompt": "Ajouter un court titre pour ce prompt",
"Add a tag": "Ajouter un tag", "Add a tag": "Ajouter un tag",
"Add custom prompt": "", "Add custom prompt": "Ajouter un prompt personnalisé",
"Add Docs": "Ajouter des documents", "Add Docs": "Ajouter des documents",
"Add Files": "Ajouter des fichiers", "Add Files": "Ajouter des fichiers",
"Add Memory": "",
"Add message": "Ajouter un message", "Add message": "Ajouter un message",
"Add Model": "", "Add Model": "",
"Add Tags": "ajouter des tags", "Add Tags": "ajouter des tags",
...@@ -47,8 +49,8 @@ ...@@ -47,8 +49,8 @@
"Archived Chats": "enregistrement du chat", "Archived Chats": "enregistrement du chat",
"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 ?",
"Attach file": "", "Attach file": "Joindre un fichier",
"Attention to detail": "", "Attention to detail": "Attention aux détails",
"Audio": "Audio", "Audio": "Audio",
"August": "", "August": "",
"Auto-playback response": "Réponse en lecture automatique", "Auto-playback response": "Réponse en lecture automatique",
...@@ -66,6 +68,8 @@ ...@@ -66,6 +68,8 @@
"Categories": "Catégories", "Categories": "Catégories",
"Change Password": "Changer le mot de passe", "Change Password": "Changer le mot de passe",
"Chat": "Discussion", "Chat": "Discussion",
"Chat Bubble UI": "",
"Chat direction": "",
"Chat History": "Historique des discussions", "Chat History": "Historique des discussions",
"Chat History is off for this browser.": "L'historique des discussions est désactivé pour ce navigateur.", "Chat History is off for this browser.": "L'historique des discussions est désactivé pour ce navigateur.",
"Chats": "Discussions", "Chats": "Discussions",
...@@ -76,7 +80,7 @@ ...@@ -76,7 +80,7 @@
"Chunk Overlap": "Chevauchement de bloc", "Chunk Overlap": "Chevauchement de bloc",
"Chunk Params": "Paramètres de bloc", "Chunk Params": "Paramètres de bloc",
"Chunk Size": "Taille de bloc", "Chunk Size": "Taille de bloc",
"Citation": "", "Citation": "Citations",
"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": "",
"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.",
...@@ -117,7 +121,6 @@ ...@@ -117,7 +121,6 @@
"Dark": "Sombre", "Dark": "Sombre",
"Dashboard": "", "Dashboard": "",
"Database": "Base de données", "Database": "Base de données",
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"December": "", "December": "",
"Default": "Par défaut", "Default": "Par défaut",
"Default (Automatic1111)": "Par défaut (Automatic1111)", "Default (Automatic1111)": "Par défaut (Automatic1111)",
...@@ -168,6 +171,7 @@ ...@@ -168,6 +171,7 @@
"Enabled": "Activé", "Enabled": "Activé",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "Entrez le message {{role}} ici", "Enter {{role}} message here": "Entrez le message {{role}} ici",
"Enter a detail about yourself for your LLMs to recall": "",
"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)",
...@@ -211,6 +215,7 @@ ...@@ -211,6 +215,7 @@
"General Settings": "Paramètres généraux", "General Settings": "Paramètres généraux",
"Generation Info": "", "Generation Info": "",
"Good Response": "", "Good Response": "",
"h:mm a": "",
"has no conversations.": "", "has no conversations.": "",
"Hello, {{name}}": "Bonjour, {{name}}", "Hello, {{name}}": "Bonjour, {{name}}",
"Help": "", "Help": "",
...@@ -227,7 +232,7 @@ ...@@ -227,7 +232,7 @@
"Import Modelfiles": "Importer les fichiers de modèle", "Import Modelfiles": "Importer les fichiers de modèle",
"Import Prompts": "Importer les prompts", "Import Prompts": "Importer les prompts",
"Include `--api` flag when running stable-diffusion-webui": "Inclure l'indicateur `--api` lors de l'exécution de stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Inclure l'indicateur `--api` lors de l'exécution de stable-diffusion-webui",
"Input commands": "", "Input commands": "Entrez des commandes d'entrée",
"Interface": "Interface", "Interface": "Interface",
"Invalid Tag": "", "Invalid Tag": "",
"January": "", "January": "",
...@@ -244,6 +249,7 @@ ...@@ -244,6 +249,7 @@
"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.",
"LTR": "",
"Made by OpenWebUI Community": "Réalisé par la communauté OpenWebUI", "Made by OpenWebUI Community": "Réalisé par la communauté OpenWebUI",
"Make sure to enclose them with": "Assurez-vous de les entourer avec", "Make sure to enclose them with": "Assurez-vous de les entourer avec",
"Manage LiteLLM Models": "Gérer les modèles LiteLLM", "Manage LiteLLM Models": "Gérer les modèles LiteLLM",
...@@ -253,7 +259,9 @@ ...@@ -253,7 +259,9 @@
"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.",
"May": "", "May": "",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
"Minimum Score": "", "Minimum Score": "",
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
...@@ -276,16 +284,13 @@ ...@@ -276,16 +284,13 @@
"Modelfiles": "Fichiers de modèle", "Modelfiles": "Fichiers de modèle",
"Models": "Modèles", "Models": "Modèles",
"More": "", "More": "",
"My Documents": "Mes documents",
"My Modelfiles": "Mes fichiers de modèle",
"My Prompts": "Mes prompts",
"Name": "Nom", "Name": "Nom",
"Name Tag": "Tag de nom", "Name Tag": "Tag de nom",
"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": "", "No results found": "",
"No source available": "", "No source available": "Aucune source disponible",
"Not factually correct": "", "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",
...@@ -323,6 +328,7 @@ ...@@ -323,6 +328,7 @@
"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}}",
"Personalization": "",
"Plain text (.txt)": "", "Plain text (.txt)": "",
"Playground": "Aire de jeu", "Playground": "Aire de jeu",
"Positive attitude": "", "Positive attitude": "",
...@@ -360,9 +366,9 @@ ...@@ -360,9 +366,9 @@
"Role": "Rôle", "Role": "Rôle",
"Rosé Pine": "Pin Rosé", "Rosé Pine": "Pin Rosé",
"Rosé Pine Dawn": "Aube Pin Rosé", "Rosé Pine Dawn": "Aube Pin Rosé",
"RTL": "",
"Save": "Enregistrer", "Save": "Enregistrer",
"Save & Create": "Enregistrer & Créer", "Save & Create": "Enregistrer & Créer",
"Save & Submit": "Enregistrer & Soumettre",
"Save & Update": "Enregistrer & Mettre à jour", "Save & Update": "Enregistrer & Mettre à jour",
"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": "La sauvegarde des journaux de discussion directement dans le stockage de votre navigateur n'est plus prise en charge. Veuillez prendre un moment pour télécharger et supprimer vos journaux de discussion en cliquant sur le bouton ci-dessous. Ne vous inquiétez pas, vous pouvez facilement réimporter vos journaux de discussion dans le backend via", "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": "La sauvegarde des journaux de discussion directement dans le stockage de votre navigateur n'est plus prise en charge. Veuillez prendre un moment pour télécharger et supprimer vos journaux de discussion en cliquant sur le bouton ci-dessous. Ne vous inquiétez pas, vous pouvez facilement réimporter vos journaux de discussion dans le backend via",
"Scan": "Scanner", "Scan": "Scanner",
...@@ -378,7 +384,8 @@ ...@@ -378,7 +384,8 @@
"Select a mode": "Sélectionnez un mode", "Select a mode": "Sélectionnez un mode",
"Select a model": "Sélectionnez un modèle", "Select a model": "Sélectionnez un modèle",
"Select an Ollama instance": "Sélectionner une instance Ollama", "Select an Ollama instance": "Sélectionner une instance Ollama",
"Select model": "", "Select model": "Sélectionnez un modèle",
"Send": "",
"Send a Message": "Envoyer un message", "Send a Message": "Envoyer un message",
"Send message": "Envoyer un message", "Send message": "Envoyer un message",
"September": "", "September": "",
...@@ -407,7 +414,7 @@ ...@@ -407,7 +414,7 @@
"Sign Out": "Se déconnecter", "Sign Out": "Se déconnecter",
"Sign up": "S'inscrire", "Sign up": "S'inscrire",
"Signing in": "", "Signing in": "",
"Source": "", "Source": "Source",
"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.",
...@@ -482,10 +489,11 @@ ...@@ -482,10 +489,11 @@
"What’s New in": "Quoi de neuf dans", "What’s New in": "Quoi de neuf dans",
"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Lorsque l'historique est désactivé, les nouvelles discussions sur ce navigateur n'apparaîtront pas dans votre historique sur aucun de vos appareils.", "When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Lorsque l'historique est désactivé, les nouvelles discussions sur ce navigateur n'apparaîtront pas dans votre historique sur aucun de vos appareils.",
"Whisper (Local)": "Whisper (Local)", "Whisper (Local)": "Whisper (Local)",
"Workspace": "",
"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é].",
"Yesterday": "", "Yesterday": "",
"You": "You", "You": "",
"You have no archived conversations.": "", "You have no archived conversations.": "",
"You have shared this chat": "", "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",
......
...@@ -10,14 +10,16 @@ ...@@ -10,14 +10,16 @@
"About": "À propos", "About": "À propos",
"Account": "Compte", "Account": "Compte",
"Accurate information": "", "Accurate information": "",
"Add": "",
"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",
"Add a short title for this prompt": "Ajouter un court titre pour ce prompt", "Add a short title for this prompt": "Ajouter un court titre pour ce prompt",
"Add a tag": "Ajouter un tag", "Add a tag": "Ajouter un tag",
"Add custom prompt": "", "Add custom prompt": "Ajouter un prompt personnalisé",
"Add Docs": "Ajouter des documents", "Add Docs": "Ajouter des documents",
"Add Files": "Ajouter des fichiers", "Add Files": "Ajouter des fichiers",
"Add Memory": "",
"Add message": "Ajouter un message", "Add message": "Ajouter un message",
"Add Model": "", "Add Model": "",
"Add Tags": "ajouter des tags", "Add Tags": "ajouter des tags",
...@@ -47,8 +49,8 @@ ...@@ -47,8 +49,8 @@
"Archived Chats": "enregistrement du chat", "Archived Chats": "enregistrement du chat",
"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 ?",
"Attach file": "", "Attach file": "Joindre un fichier",
"Attention to detail": "", "Attention to detail": "Attention aux détails",
"Audio": "Audio", "Audio": "Audio",
"August": "", "August": "",
"Auto-playback response": "Réponse en lecture automatique", "Auto-playback response": "Réponse en lecture automatique",
...@@ -66,6 +68,8 @@ ...@@ -66,6 +68,8 @@
"Categories": "Catégories", "Categories": "Catégories",
"Change Password": "Changer le mot de passe", "Change Password": "Changer le mot de passe",
"Chat": "Chat", "Chat": "Chat",
"Chat Bubble UI": "",
"Chat direction": "",
"Chat History": "Historique du chat", "Chat History": "Historique du chat",
"Chat History is off for this browser.": "L'historique du chat est désactivé pour ce navigateur.", "Chat History is off for this browser.": "L'historique du chat est désactivé pour ce navigateur.",
"Chats": "Chats", "Chats": "Chats",
...@@ -76,7 +80,7 @@ ...@@ -76,7 +80,7 @@
"Chunk Overlap": "Chevauchement de bloc", "Chunk Overlap": "Chevauchement de bloc",
"Chunk Params": "Paramètres de bloc", "Chunk Params": "Paramètres de bloc",
"Chunk Size": "Taille de bloc", "Chunk Size": "Taille de bloc",
"Citation": "", "Citation": "Citations",
"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": "",
"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.",
...@@ -117,7 +121,6 @@ ...@@ -117,7 +121,6 @@
"Dark": "Sombre", "Dark": "Sombre",
"Dashboard": "", "Dashboard": "",
"Database": "Base de données", "Database": "Base de données",
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"December": "", "December": "",
"Default": "Par défaut", "Default": "Par défaut",
"Default (Automatic1111)": "Par défaut (Automatic1111)", "Default (Automatic1111)": "Par défaut (Automatic1111)",
...@@ -168,6 +171,7 @@ ...@@ -168,6 +171,7 @@
"Enabled": "Activé", "Enabled": "Activé",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter {{role}} message here": "Entrez le message {{role}} ici", "Enter {{role}} message here": "Entrez le message {{role}} ici",
"Enter a detail about yourself for your LLMs to recall": "",
"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)",
...@@ -211,6 +215,7 @@ ...@@ -211,6 +215,7 @@
"General Settings": "Paramètres généraux", "General Settings": "Paramètres généraux",
"Generation Info": "", "Generation Info": "",
"Good Response": "", "Good Response": "",
"h:mm a": "",
"has no conversations.": "", "has no conversations.": "",
"Hello, {{name}}": "Bonjour, {{name}}", "Hello, {{name}}": "Bonjour, {{name}}",
"Help": "", "Help": "",
...@@ -227,7 +232,7 @@ ...@@ -227,7 +232,7 @@
"Import Modelfiles": "Importer les fichiers de modèle", "Import Modelfiles": "Importer les fichiers de modèle",
"Import Prompts": "Importer les prompts", "Import Prompts": "Importer les prompts",
"Include `--api` flag when running stable-diffusion-webui": "Inclure le drapeau `--api` lors de l'exécution de stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Inclure le drapeau `--api` lors de l'exécution de stable-diffusion-webui",
"Input commands": "", "Input commands": "Entrez les commandes d'entrée",
"Interface": "Interface", "Interface": "Interface",
"Invalid Tag": "", "Invalid Tag": "",
"January": "", "January": "",
...@@ -244,6 +249,7 @@ ...@@ -244,6 +249,7 @@
"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.",
"LTR": "",
"Made by OpenWebUI Community": "Réalisé par la communauté OpenWebUI", "Made by OpenWebUI Community": "Réalisé par la communauté OpenWebUI",
"Make sure to enclose them with": "Assurez-vous de les entourer avec", "Make sure to enclose them with": "Assurez-vous de les entourer avec",
"Manage LiteLLM Models": "Gérer les modèles LiteLLM", "Manage LiteLLM Models": "Gérer les modèles LiteLLM",
...@@ -253,7 +259,9 @@ ...@@ -253,7 +259,9 @@
"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.",
"May": "", "May": "",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
"Minimum Score": "", "Minimum Score": "",
"Mirostat": "Mirostat", "Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta", "Mirostat Eta": "Mirostat Eta",
...@@ -276,16 +284,13 @@ ...@@ -276,16 +284,13 @@
"Modelfiles": "Fichiers de modèle", "Modelfiles": "Fichiers de modèle",
"Models": "Modèles", "Models": "Modèles",
"More": "", "More": "",
"My Documents": "Mes documents",
"My Modelfiles": "Mes fichiers de modèle",
"My Prompts": "Mes prompts",
"Name": "Nom", "Name": "Nom",
"Name Tag": "Tag de nom", "Name Tag": "Tag de nom",
"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": "", "No results found": "",
"No source available": "", "No source available": "Aucune source disponible",
"Not factually correct": "", "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",
...@@ -323,6 +328,7 @@ ...@@ -323,6 +328,7 @@
"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}}",
"Personalization": "",
"Plain text (.txt)": "", "Plain text (.txt)": "",
"Playground": "Aire de jeu", "Playground": "Aire de jeu",
"Positive attitude": "", "Positive attitude": "",
...@@ -360,9 +366,9 @@ ...@@ -360,9 +366,9 @@
"Role": "Rôle", "Role": "Rôle",
"Rosé Pine": "Pin Rosé", "Rosé Pine": "Pin Rosé",
"Rosé Pine Dawn": "Aube Pin Rosé", "Rosé Pine Dawn": "Aube Pin Rosé",
"RTL": "",
"Save": "Enregistrer", "Save": "Enregistrer",
"Save & Create": "Enregistrer & Créer", "Save & Create": "Enregistrer & Créer",
"Save & Submit": "Enregistrer & Soumettre",
"Save & Update": "Enregistrer & Mettre à jour", "Save & Update": "Enregistrer & Mettre à jour",
"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": "La sauvegarde des chat directement dans le stockage de votre navigateur n'est plus prise en charge. Veuillez prendre un moment pour télécharger et supprimer vos journaux de chat en cliquant sur le bouton ci-dessous. Ne vous inquiétez pas, vous pouvez facilement importer vos sauvegardes de chat via", "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": "La sauvegarde des chat directement dans le stockage de votre navigateur n'est plus prise en charge. Veuillez prendre un moment pour télécharger et supprimer vos journaux de chat en cliquant sur le bouton ci-dessous. Ne vous inquiétez pas, vous pouvez facilement importer vos sauvegardes de chat via",
"Scan": "Scanner", "Scan": "Scanner",
...@@ -378,7 +384,8 @@ ...@@ -378,7 +384,8 @@
"Select a mode": "Sélectionnez un mode", "Select a mode": "Sélectionnez un mode",
"Select a model": "Sélectionner un modèle", "Select a model": "Sélectionner un modèle",
"Select an Ollama instance": "Sélectionner une instance Ollama", "Select an Ollama instance": "Sélectionner une instance Ollama",
"Select model": "", "Select model": "Sélectionner un modèle",
"Send": "",
"Send a Message": "Envoyer un message", "Send a Message": "Envoyer un message",
"Send message": "Envoyer un message", "Send message": "Envoyer un message",
"September": "", "September": "",
...@@ -407,7 +414,7 @@ ...@@ -407,7 +414,7 @@
"Sign Out": "Se déconnecter", "Sign Out": "Se déconnecter",
"Sign up": "S'inscrire", "Sign up": "S'inscrire",
"Signing in": "", "Signing in": "",
"Source": "", "Source": "Source",
"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.",
...@@ -482,10 +489,11 @@ ...@@ -482,10 +489,11 @@
"What’s New in": "Quoi de neuf dans", "What’s New in": "Quoi de neuf dans",
"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Lorsque l'historique est désactivé, les nouveaux chats sur ce navigateur n'apparaîtront pas dans votre historique sur aucun de vos appareils.", "When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Lorsque l'historique est désactivé, les nouveaux chats sur ce navigateur n'apparaîtront pas dans votre historique sur aucun de vos appareils.",
"Whisper (Local)": "Whisper (Local)", "Whisper (Local)": "Whisper (Local)",
"Workspace": "",
"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é]",
"Yesterday": "", "Yesterday": "",
"You": "You", "You": "",
"You have no archived conversations.": "", "You have no archived conversations.": "",
"You have shared this chat": "", "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",
......
{
"'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'s', 'm', 'h', 'd', 'w' או '-1' ללא תפוגה.",
"(Beta)": "(בטא)",
"(e.g. `sh webui.sh --api`)": "(למשל `sh webui.sh --api`)",
"(latest)": "(האחרון)",
"{{modelName}} is thinking...": "{{modelName}} חושב...",
"{{user}}'s Chats": "צ'אטים של {{user}}",
"{{webUIName}} Backend Required": "נדרש Backend של {{webUIName}}",
"a user": "משתמש",
"About": "אודות",
"Account": "חשבון",
"Accurate information": "מידע מדויק",
"Add": "",
"Add a model": "הוסף מודל",
"Add a model tag name": "הוסף שם תג למודל",
"Add a short description about what this modelfile does": "הוסף תיאור קצר על מה שהקובץ מודל עושה",
"Add a short title for this prompt": "הוסף כותרת קצרה לפקודה זו",
"Add a tag": "הוסף תג",
"Add custom prompt": "הוסף פקודה מותאמת אישית",
"Add Docs": "הוסף מסמכים",
"Add Files": "הוסף קבצים",
"Add Memory": "",
"Add message": "הוסף הודעה",
"Add Model": "הוסף מודל",
"Add Tags": "הוסף תגים",
"Add User": "הוסף משתמש",
"Adjusting these settings will apply changes universally to all users.": "התאמת הגדרות אלו תחול על כל המשתמשים.",
"admin": "מנהל",
"Admin Panel": "לוח בקרה למנהל",
"Admin Settings": "הגדרות מנהל",
"Advanced Parameters": "פרמטרים מתקדמים",
"all": "הכל",
"All Documents": "כל המסמכים",
"All Users": "כל המשתמשים",
"Allow": "אפשר",
"Allow Chat Deletion": "אפשר מחיקת צ'אט",
"alphanumeric characters and hyphens": "תווים אלפאנומריים ומקפים",
"Already have an account?": "כבר יש לך חשבון?",
"an assistant": "עוזר",
"and": "וגם",
"and create a new shared link.": "וצור קישור משותף חדש.",
"API Base URL": "כתובת URL בסיסית ל-API",
"API Key": "מפתח API",
"API Key created.": "מפתח API נוצר.",
"API keys": "מפתחות API",
"API RPM": "RPM של API",
"April": "אפריל",
"Archive": "ארכיון",
"Archived Chats": "צ'אטים מאורכבים",
"are allowed - Activate this command by typing": "מותרים - הפעל פקודה זו על ידי הקלדה",
"Are you sure?": "האם אתה בטוח?",
"Attach file": "צרף קובץ",
"Attention to detail": "תשומת לב לפרטים",
"Audio": "אודיו",
"August": "אוגוסט",
"Auto-playback response": "תגובת השמעה אוטומטית",
"Auto-send input after 3 sec.": "שליחת קלט אוטומטית אחרי 3 שניות",
"AUTOMATIC1111 Base URL": "כתובת URL בסיסית של AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "נדרשת כתובת URL בסיסית של AUTOMATIC1111",
"available!": "זמין!",
"Back": "חזור",
"Bad Response": "תגובה שגויה",
"before": "לפני",
"Being lazy": "להיות עצלן",
"Builder Mode": "מצב בונה",
"Bypass SSL verification for Websites": "עקוף אימות SSL עבור אתרים",
"Cancel": "בטל",
"Categories": "קטגוריות",
"Change Password": "שנה סיסמה",
"Chat": "צ'אט",
"Chat Bubble UI": "",
"Chat direction": "",
"Chat History": "היסטוריית צ'אט",
"Chat History is off for this browser.": "היסטוריית הצ'אט כבויה לדפדפן זה.",
"Chats": "צ'אטים",
"Check Again": "בדוק שוב",
"Check for updates": "בדוק עדכונים",
"Checking for updates...": "בודק עדכונים...",
"Choose a model before saving...": "בחר מודל לפני השמירה...",
"Chunk Overlap": "חפיפת נתונים",
"Chunk Params": "פרמטרי נתונים",
"Chunk Size": "גודל נתונים",
"Citation": "ציטוט",
"Click here for help.": "לחץ כאן לעזרה.",
"Click here to": "לחץ כאן כדי",
"Click here to check other modelfiles.": "לחץ כאן לבדיקת קבצי מודלים אחרים.",
"Click here to select": "לחץ כאן לבחירה",
"Click here to select a csv file.": "לחץ כאן לבחירת קובץ csv.",
"Click here to select documents.": "לחץ כאן לבחירת מסמכים.",
"click here.": "לחץ כאן.",
"Click on the user role button to change a user's role.": "לחץ על כפתור תפקיד המשתמש כדי לשנות את תפקיד המשתמש.",
"Close": "סגור",
"Collection": "אוסף",
"ComfyUI": "ComfyUI",
"ComfyUI Base URL": "כתובת URL בסיסית של ComfyUI",
"ComfyUI Base URL is required.": "נדרשת כתובת URL בסיסית של ComfyUI",
"Command": "פקודה",
"Confirm Password": "אשר סיסמה",
"Connections": "חיבורים",
"Content": "תוכן",
"Context Length": "אורך הקשר",
"Continue Response": "המשך תגובה",
"Conversation Mode": "מצב שיחה",
"Copied shared chat URL to clipboard!": "העתקת כתובת URL של צ'אט משותף ללוח!",
"Copy": "העתק",
"Copy last code block": "העתק את בלוק הקוד האחרון",
"Copy last response": "העתק את התגובה האחרונה",
"Copy Link": "העתק קישור",
"Copying to clipboard was successful!": "ההעתקה ללוח הייתה מוצלחת!",
"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "צור ביטוי תמציתי של 3-5 מילים ככותרת לשאילתה הבאה, תוך שמירה מדויקת על מגבלת 3-5 המילים והימנעות משימוש במילה 'כותרת':",
"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": "התאמה אישית של מודלים של Ollama למטרה מסוימת",
"Dark": "כהה",
"Dashboard": "לוח בקרה",
"Database": "מסד נתונים",
"December": "דצמבר",
"Default": "ברירת מחדל",
"Default (Automatic1111)": "ברירת מחדל (Automatic1111)",
"Default (SentenceTransformers)": "ברירת מחדל (SentenceTransformers)",
"Default (Web API)": "ברירת מחדל (Web API)",
"Default model updated": "המודל המוגדר כברירת מחדל עודכן",
"Default Prompt Suggestions": "הצעות ברירת מחדל לפקודות",
"Default User Role": "תפקיד משתמש ברירת מחדל",
"delete": "מחק",
"Delete": "מחק",
"Delete a model": "מחק מודל",
"Delete chat": "מחק צ'אט",
"Delete Chat": "מחק צ'אט",
"Delete Chats": "מחק צ'אטים",
"delete this link": "מחק את הקישור הזה",
"Delete User": "מחק משתמש",
"Deleted {{deleteModelTag}}": "נמחק {{deleteModelTag}}",
"Deleted {{tagName}}": "נמחק {{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 canceled": "ההורדה בוטלה",
"Download Database": "הורד מסד נתונים",
"Drop any files here to add to the conversation": "גרור כל קובץ לכאן כדי להוסיף לשיחה",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "למשל '30s', '10m'. יחידות זמן חוקיות הן 's', 'm', 'h'.",
"Edit": "ערוך",
"Edit Doc": "ערוך מסמך",
"Edit User": "ערוך משתמש",
"Email": "דוא\"ל",
"Embedding Model": "מודל הטמעה",
"Embedding Model Engine": "מנוע מודל הטמעה",
"Embedding model set to \"{{embedding_model}}\"": "מודל ההטמעה הוגדר ל-\"{{embedding_model}}\"",
"Enable Chat History": "הפעל היסטוריית צ'אט",
"Enable New Sign Ups": "אפשר הרשמות חדשות",
"Enabled": "מופעל",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ודא שקובץ ה-CSV שלך כולל 4 עמודות בסדר הבא: שם, דוא\"ל, סיסמה, תפקיד.",
"Enter {{role}} message here": "הזן הודעת {{role}} כאן",
"Enter a detail about yourself for your LLMs to recall": "",
"Enter Chunk Overlap": "הזן חפיפת נתונים",
"Enter Chunk Size": "הזן גודל נתונים",
"Enter Image Size (e.g. 512x512)": "הזן גודל תמונה (למשל 512x512)",
"Enter language codes": "הזן קודי שפה",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "הזן כתובת URL בסיסית ל-API של LiteLLM (litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "הזן מפתח API של LiteLLM (litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "הזן RPM של API של LiteLLM (litellm_params.rpm)",
"Enter LiteLLM Model (litellm_params.model)": "הזן מודל LiteLLM (litellm_params.model)",
"Enter Max Tokens (litellm_params.max_tokens)": "הזן מספר מקסימלי של טוקנים (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "הזן תג מודל (למשל {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "הזן מספר שלבים (למשל 50)",
"Enter Score": "הזן ציון",
"Enter stop sequence": "הזן רצף עצירה",
"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://localhost:11434)": "הזן כתובת URL (למשל http://localhost:11434)",
"Enter Your Email": "הזן את דוא\"ל שלך",
"Enter Your Full Name": "הזן את שמך המלא",
"Enter Your Password": "הזן את הסיסמה שלך",
"Enter Your Role": "הזן את התפקיד שלך",
"Experimental": "ניסיוני",
"Export All Chats (All Users)": "ייצוא כל הצ'אטים (כל המשתמשים)",
"Export Chats": "ייצוא צ'אטים",
"Export Documents Mapping": "ייצוא מיפוי מסמכים",
"Export Modelfiles": "ייצוא קבצי מודלים",
"Export Prompts": "ייצוא פקודות",
"Failed to create API Key.": "יצירת מפתח API נכשלה.",
"Failed to read clipboard contents": "קריאת תוכן הלוח נכשלה",
"February": "פברואר",
"Feel free to add specific details": "נא להוסיף פרטים ספציפיים לפי רצון",
"File Mode": "מצב קובץ",
"File not found.": "הקובץ לא נמצא.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "התגלתה הזיית טביעת אצבע: לא ניתן להשתמש בראשי תיבות כאווטאר. משתמש בתמונת פרופיל ברירת מחדל.",
"Fluidly stream large external response chunks": "שידור נתונים חיצוניים בקצב רציף",
"Focus chat input": "מיקוד הקלט לצ'אט",
"Followed instructions perfectly": "עקב אחר ההוראות במושלמות",
"Format your variables using square brackets like this:": "עצב את המשתנים שלך באמצעות סוגריים מרובעים כך:",
"From (Base Model)": "מ (מודל בסיס)",
"Full Screen Mode": "מצב מסך מלא",
"General": "כללי",
"General Settings": "הגדרות כלליות",
"Generation Info": "מידע על היצירה",
"Good Response": "תגובה טובה",
"h:mm a": "",
"has no conversations.": "אין שיחות.",
"Hello, {{name}}": "שלום, {{name}}",
"Help": "עזרה",
"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": "כלול את הדגל `--api` בעת הרצת stable-diffusion-webui",
"Input commands": "פקודות קלט",
"Interface": "ממשק",
"Invalid Tag": "תג לא חוקי",
"January": "ינואר",
"join our Discord for help.": "הצטרף ל-Discord שלנו לעזרה.",
"JSON": "JSON",
"July": "יולי",
"June": "יוני",
"JWT Expiration": "תפוגת JWT",
"JWT Token": "אסימון JWT",
"Keep Alive": "השאר פעיל",
"Keyboard shortcuts": "קיצורי מקלדת",
"Language": "שפה",
"Last Active": "פעיל לאחרונה",
"Light": "בהיר",
"Listening...": "מאזין...",
"LLMs can make mistakes. Verify important information.": "מודלים בשפה טבעית יכולים לטעות. אמת מידע חשוב.",
"LTR": "",
"Made by OpenWebUI Community": "נוצר על ידי קהילת OpenWebUI",
"Make sure to enclose them with": "ודא להקיף אותם עם",
"Manage LiteLLM Models": "נהל מודלים של LiteLLM",
"Manage Models": "נהל מודלים",
"Manage Ollama Models": "נהל מודלים של Ollama",
"March": "מרץ",
"Max Tokens": "מקסימום טוקנים",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "ניתן להוריד מקסימום 3 מודלים בו זמנית. אנא נסה שוב מאוחר יותר.",
"May": "מאי",
"Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
"Minimum Score": "ציון מינימלי",
"Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "DD בMMMM, YYYY",
"MMMM DD, YYYY HH:mm": "DD בMMMM, YYYY HH:mm",
"Model '{{modelName}}' has been successfully downloaded.": "המודל '{{modelName}}' הורד בהצלחה.",
"Model '{{modelTag}}' is already in queue for downloading.": "המודל '{{modelTag}}' כבר בתור להורדה.",
"Model {{modelId}} not found": "המודל {{modelId}} לא נמצא",
"Model {{modelName}} already exists.": "המודל {{modelName}} כבר קיים.",
"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": "עוד",
"Name": "שם",
"Name Tag": "תג שם",
"Name your modelfile": "תן שם לקובץ המודל שלך",
"New Chat": "צ'אט חדש",
"New Password": "סיסמה חדשה",
"No results found": "לא נמצאו תוצאות",
"No source available": "אין מקור זמין",
"Not factually correct": "לא נכון מבחינה עובדתית",
"Not sure what to add?": "לא בטוח מה להוסיף?",
"Not sure what to write? Switch to": "לא בטוח מה לכתוב? החלף ל",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "הערה: אם תקבע ציון מינימלי, החיפוש יחזיר רק מסמכים עם ציון שגבוה או שווה לציון המינימלי.",
"Notifications": "התראות",
"November": "נובמבר",
"October": "אוקטובר",
"Off": "כבוי",
"Okay, Let's Go!": "בסדר, בואו נתחיל!",
"OLED Dark": "OLED כהה",
"Ollama": "Ollama",
"Ollama Base URL": "כתובת URL בסיסית של Ollama",
"Ollama Version": "גרסת Ollama",
"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.": "אופס! נראה שהכתובת URL אינה תקינה. אנא בדוק שוב ונסה שנית.",
"Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "אופס! אתה משתמש בשיטה לא נתמכת (רק חזית). אנא שרת את ממשק המשתמש האינטרנטי מהשרת האחורי.",
"Open": "פתח",
"Open AI": "Open AI",
"Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "פתח צ'אט חדש",
"OpenAI": "OpenAI",
"OpenAI API": "API של OpenAI",
"OpenAI API Config": "תצורת API של OpenAI",
"OpenAI API Key is required.": "נדרש מפתח API של OpenAI.",
"OpenAI URL/Key required.": "נדרשת כתובת URL/מפתח של OpenAI.",
"or": "או",
"Other": "אחר",
"Overview": "סקירה כללית",
"Parameters": "פרמטרים",
"Password": "סיסמה",
"PDF document (.pdf)": "מסמך PDF (.pdf)",
"PDF Extract Images (OCR)": "חילוץ תמונות מ-PDF (OCR)",
"pending": "ממתין",
"Permission denied when accessing microphone: {{error}}": "ההרשאה נדחתה בעת גישה למיקרופון: {{error}}",
"Personalization": "",
"Plain text (.txt)": "טקסט פשוט (.txt)",
"Playground": "אזור משחקים",
"Positive attitude": "גישה חיובית",
"Previous 30 days": "30 הימים הקודמים",
"Previous 7 days": "7 הימים הקודמים",
"Profile Image": "תמונת פרופיל",
"Prompt": "פקודה",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "פקודה (למשל, ספר לי עובדה מעניינת על האימפריה הרומית)",
"Prompt Content": "תוכן הפקודה",
"Prompt suggestions": "הצעות לפקודות",
"Prompts": "פקודות",
"Pull \"{{searchValue}}\" from Ollama.com": "משוך \"{{searchValue}}\" מ-Ollama.com",
"Pull a model from Ollama.com": "משוך מודל מ-Ollama.com",
"Pull Progress": "משוך התקדמות",
"Query Params": "פרמטרי שאילתה",
"RAG Template": "תבנית RAG",
"Raw Format": "פורמט גולמי",
"Read Aloud": "קרא בקול",
"Record voice": "הקלט קול",
"Redirecting you to OpenWebUI Community": "מפנה אותך לקהילת OpenWebUI",
"Refused when it shouldn't have": "נדחה כאשר לא היה צריך",
"Regenerate": "הפק מחדש",
"Release Notes": "הערות שחרור",
"Remove": "הסר",
"Remove Model": "הסר מודל",
"Rename": "שנה שם",
"Repeat Last N": "חזור על ה-N האחרונים",
"Repeat Penalty": "עונש חזרה",
"Request Mode": "מצב בקשה",
"Reranking Model": "מודל דירוג מחדש",
"Reranking model disabled": "מודל דירוג מחדש מושבת",
"Reranking model set to \"{{reranking_model}}\"": "מודל דירוג מחדש הוגדר ל-\"{{reranking_model}}\"",
"Reset Vector Storage": "איפוס אחסון וקטורים",
"Response AutoCopy to Clipboard": "העתקה אוטומטית של תגובה ללוח",
"Role": "תפקיד",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "",
"Save": "שמור",
"Save & Create": "שמור וצור",
"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}}": "סרוק מסמכים מ-{{path}}",
"Search": "חפש",
"Search a model": "חפש מודל",
"Search Documents": "חפש מסמכים",
"Search Prompts": "חפש פקודות",
"See readme.md for instructions": "ראה את readme.md להוראות",
"See what's new": "ראה מה חדש",
"Seed": "זרע",
"Select a mode": "בחר מצב",
"Select a model": "בחר מודל",
"Select an Ollama instance": "בחר מופע של Ollama",
"Select model": "בחר מודל",
"Send": "",
"Send a Message": "שלח הודעה",
"Send message": "שלח הודעה",
"September": "ספטמבר",
"Server connection verified": "החיבור לשרת אומת",
"Set as default": "הגדר כברירת מחדל",
"Set Default Model": "הגדר מודל ברירת מחדל",
"Set embedding model (e.g. {{model}})": "הגדר מודל הטמעה (למשל {{model}})",
"Set Image Size": "הגדר גודל תמונה",
"Set Model": "הגדר מודל",
"Set reranking model (e.g. {{model}})": "הגדר מודל דירוג מחדש (למשל {{model}})",
"Set Steps": "הגדר שלבים",
"Set Title Auto-Generation Model": "הגדר מודל יצירת כותרת אוטומטית",
"Set Voice": "הגדר קול",
"Settings": "הגדרות",
"Settings saved successfully!": "ההגדרות נשמרו בהצלחה!",
"Share": "שתף",
"Share Chat": "שתף צ'אט",
"Share to OpenWebUI Community": "שתף לקהילת OpenWebUI",
"short-summary": "סיכום קצר",
"Show": "הצג",
"Show Additional Params": "הצג פרמטרים נוספים",
"Show shortcuts": "הצג קיצורי דרך",
"Showcased creativity": "הצגת יצירתיות",
"sidebar": "סרגל צד",
"Sign in": "",
"Sign Out": "",
"Sign up": "",
"Signing in": "",
"Source": "",
"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.": "",
"Suggested": "",
"Sync All": "",
"System": "מערכת",
"System Prompt": "",
"Tags": "",
"Tell us more:": "",
"Temperature": "",
"Template": "תבנית",
"Text Completion": "",
"Text-to-Speech Engine": "מנוע טקסט לדיבור",
"Tfs Z": "",
"Thanks for your feedback!": "תודה על המשוב שלך!",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "",
"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 cannot be an empty string.": "",
"Title Generation Prompt": "",
"to": "",
"To access the available model names for downloading,": "",
"To access the GGUF models available for downloading,": "",
"to chat input.": "",
"Today": "",
"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 password": "",
"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": "רשת",
"Web Loader Settings": "",
"Web Params": "",
"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)": "",
"Workspace": "",
"Write a prompt suggestion (e.g. Who are you?)": "",
"Write a summary in 50 words that summarizes [topic or keyword].": "",
"Yesterday": "אתמול",
"You": "",
"You have no archived conversations.": "",
"You have shared this chat": "",
"You're a helpful assistant.": "",
"You're now logged in.": "",
"Youtube": "",
"Youtube Loader Settings": ""
}
...@@ -10,14 +10,16 @@ ...@@ -10,14 +10,16 @@
"About": "हमारे बारे में", "About": "हमारे बारे में",
"Account": "खाता", "Account": "खाता",
"Accurate information": "सटीक जानकारी", "Accurate information": "सटीक जानकारी",
"Add": "",
"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": "यह मॉडलफ़ाइल क्या करती है इसके बारे में एक संक्षिप्त विवरण जोड़ें",
"Add a short title for this prompt": "इस संकेत के लिए एक संक्षिप्त शीर्षक जोड़ें", "Add a short title for this prompt": "इस संकेत के लिए एक संक्षिप्त शीर्षक जोड़ें",
"Add a tag": "एक टैग जोड़े", "Add a tag": "एक टैग जोड़े",
"Add custom prompt": "", "Add custom prompt": "अनुकूल संकेत जोड़ें",
"Add Docs": "दस्तावेज़ जोड़ें", "Add Docs": "दस्तावेज़ जोड़ें",
"Add Files": "फाइलें जोड़ें", "Add Files": "फाइलें जोड़ें",
"Add Memory": "",
"Add message": "संदेश डालें", "Add message": "संदेश डालें",
"Add Model": "मॉडल जोड़ें", "Add Model": "मॉडल जोड़ें",
"Add Tags": "टैगों को जोड़ें", "Add Tags": "टैगों को जोड़ें",
...@@ -47,7 +49,7 @@ ...@@ -47,7 +49,7 @@
"Archived Chats": "संग्रहीत चैट", "Archived Chats": "संग्रहीत चैट",
"are allowed - Activate this command by typing": "अनुमति है - टाइप करके इस कमांड को सक्रिय करें", "are allowed - Activate this command by typing": "अनुमति है - टाइप करके इस कमांड को सक्रिय करें",
"Are you sure?": "क्या आपको यकीन है?", "Are you sure?": "क्या आपको यकीन है?",
"Attach file": "", "Attach file": "फ़ाइल atta",
"Attention to detail": "विस्तार पर ध्यान", "Attention to detail": "विस्तार पर ध्यान",
"Audio": "ऑडियो", "Audio": "ऑडियो",
"August": "", "August": "",
...@@ -66,6 +68,8 @@ ...@@ -66,6 +68,8 @@
"Categories": "श्रेणियाँ", "Categories": "श्रेणियाँ",
"Change Password": "पासवर्ड बदलें", "Change Password": "पासवर्ड बदलें",
"Chat": "चैट करें", "Chat": "चैट करें",
"Chat Bubble UI": "",
"Chat direction": "",
"Chat History": "चैट का इतिहास", "Chat History": "चैट का इतिहास",
"Chat History is off for this browser.": "इस ब्राउज़र के लिए चैट इतिहास बंद है।", "Chat History is off for this browser.": "इस ब्राउज़र के लिए चैट इतिहास बंद है।",
"Chats": "सभी चैट", "Chats": "सभी चैट",
...@@ -76,7 +80,7 @@ ...@@ -76,7 +80,7 @@
"Chunk Overlap": "चंक ओवरलैप", "Chunk Overlap": "चंक ओवरलैप",
"Chunk Params": "चंक पैरामीटर्स", "Chunk Params": "चंक पैरामीटर्स",
"Chunk Size": "चंक आकार", "Chunk Size": "चंक आकार",
"Citation": "", "Citation": "उद्धरण",
"Click here for help.": "सहायता के लिए यहां क्लिक करें।", "Click here for help.": "सहायता के लिए यहां क्लिक करें।",
"Click here to": "", "Click here to": "",
"Click here to check other modelfiles.": "अन्य मॉडल फ़ाइलों की जांच के लिए यहां क्लिक करें।", "Click here to check other modelfiles.": "अन्य मॉडल फ़ाइलों की जांच के लिए यहां क्लिक करें।",
...@@ -117,7 +121,6 @@ ...@@ -117,7 +121,6 @@
"Dark": "", "Dark": "",
"Dashboard": "", "Dashboard": "",
"Database": "डेटाबेस", "Database": "डेटाबेस",
"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
"December": "", "December": "",
"Default": "डिफ़ॉल्ट", "Default": "डिफ़ॉल्ट",
"Default (Automatic1111)": "डिफ़ॉल्ट (Automatic1111)", "Default (Automatic1111)": "डिफ़ॉल्ट (Automatic1111)",
...@@ -168,6 +171,7 @@ ...@@ -168,6 +171,7 @@
"Enabled": "सक्रिय", "Enabled": "सक्रिय",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "सुनिश्चित करें कि आपकी CSV फ़ाइल में इस क्रम में 4 कॉलम शामिल हैं: नाम, ईमेल, पासवर्ड, भूमिका।", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "सुनिश्चित करें कि आपकी CSV फ़ाइल में इस क्रम में 4 कॉलम शामिल हैं: नाम, ईमेल, पासवर्ड, भूमिका।",
"Enter {{role}} message here": "यहां {{role}} संदेश दर्ज करें", "Enter {{role}} message here": "यहां {{role}} संदेश दर्ज करें",
"Enter a detail about yourself for your LLMs to recall": "",
"Enter Chunk Overlap": "चंक ओवरलैप दर्ज करें", "Enter Chunk Overlap": "चंक ओवरलैप दर्ज करें",
"Enter Chunk Size": "खंड आकार दर्ज करें", "Enter Chunk Size": "खंड आकार दर्ज करें",
"Enter Image Size (e.g. 512x512)": "छवि का आकार दर्ज करें (उदा. 512x512)", "Enter Image Size (e.g. 512x512)": "छवि का आकार दर्ज करें (उदा. 512x512)",
...@@ -211,6 +215,7 @@ ...@@ -211,6 +215,7 @@
"General Settings": "सामान्य सेटिंग्स", "General Settings": "सामान्य सेटिंग्स",
"Generation Info": "जनरेशन की जानकारी", "Generation Info": "जनरेशन की जानकारी",
"Good Response": "अच्छी प्रतिक्रिया", "Good Response": "अच्छी प्रतिक्रिया",
"h:mm a": "",
"has no conversations.": "कोई बातचीत नहीं है", "has no conversations.": "कोई बातचीत नहीं है",
"Hello, {{name}}": "नमस्ते, {{name}}", "Hello, {{name}}": "नमस्ते, {{name}}",
"Help": "", "Help": "",
...@@ -227,7 +232,7 @@ ...@@ -227,7 +232,7 @@
"Import Modelfiles": "मॉडल फ़ाइलें आयात करें", "Import Modelfiles": "मॉडल फ़ाइलें आयात करें",
"Import Prompts": "प्रॉम्प्ट आयात करें", "Import Prompts": "प्रॉम्प्ट आयात करें",
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui चलाते समय `--api` ध्वज शामिल करें", "Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui चलाते समय `--api` ध्वज शामिल करें",
"Input commands": "", "Input commands": "इनपुट क命",
"Interface": "इंटरफेस", "Interface": "इंटरफेस",
"Invalid Tag": "", "Invalid Tag": "",
"January": "", "January": "",
...@@ -244,6 +249,7 @@ ...@@ -244,6 +249,7 @@
"Light": "", "Light": "",
"Listening...": "सुन रहा हूँ...", "Listening...": "सुन रहा हूँ...",
"LLMs can make mistakes. Verify important information.": "एलएलएम गलतियाँ कर सकते हैं। महत्वपूर्ण जानकारी सत्यापित करें.", "LLMs can make mistakes. Verify important information.": "एलएलएम गलतियाँ कर सकते हैं। महत्वपूर्ण जानकारी सत्यापित करें.",
"LTR": "",
"Made by OpenWebUI Community": "OpenWebUI समुदाय द्वारा निर्मित", "Made by OpenWebUI Community": "OpenWebUI समुदाय द्वारा निर्मित",
"Make sure to enclose them with": "उन्हें संलग्न करना सुनिश्चित करें", "Make sure to enclose them with": "उन्हें संलग्न करना सुनिश्चित करें",
"Manage LiteLLM Models": "LiteLLM मॉडल प्रबंधित करें", "Manage LiteLLM Models": "LiteLLM मॉडल प्रबंधित करें",
...@@ -253,7 +259,9 @@ ...@@ -253,7 +259,9 @@
"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 मॉडल एक साथ डाउनलोड किये जा सकते हैं। कृपया बाद में पुन: प्रयास करें।",
"May": "", "May": "",
"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
"Minimum Score": "न्यूनतम स्कोर", "Minimum Score": "न्यूनतम स्कोर",
"Mirostat": "", "Mirostat": "",
"Mirostat Eta": "", "Mirostat Eta": "",
...@@ -276,16 +284,13 @@ ...@@ -276,16 +284,13 @@
"Modelfiles": "मॉडल फ़ाइलें", "Modelfiles": "मॉडल फ़ाइलें",
"Models": "सभी मॉडल", "Models": "सभी मॉडल",
"More": "और..", "More": "और..",
"My Documents": "मेरे दस्तावेज़",
"My Modelfiles": "मेरी मॉडल फ़ाइलें",
"My Prompts": "मेरे प्रॉम्प्ट",
"Name": "नाम", "Name": "नाम",
"Name Tag": "नाम टैग", "Name Tag": "नाम टैग",
"Name your modelfile": "अपनी मॉडलफ़ाइल को नाम दें", "Name your modelfile": "अपनी मॉडलफ़ाइल को नाम दें",
"New Chat": "नई चैट", "New Chat": "नई चैट",
"New Password": "नया पासवर्ड", "New Password": "नया पासवर्ड",
"No results found": "", "No results found": "",
"No source available": "", "No source available": "कोई स्रोत उपलब्ध नहीं है",
"Not factually correct": "तथ्यात्मक रूप से सही नहीं है", "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": "मैं आश्वस्त नहीं हूं कि क्या लिखना है? स्विच करें",
...@@ -323,6 +328,7 @@ ...@@ -323,6 +328,7 @@
"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}}",
"Personalization": "",
"Plain text (.txt)": "सादा पाठ (.txt)", "Plain text (.txt)": "सादा पाठ (.txt)",
"Playground": "कार्यक्षेत्र", "Playground": "कार्यक्षेत्र",
"Positive attitude": "सकारात्मक रवैया", "Positive attitude": "सकारात्मक रवैया",
...@@ -360,9 +366,9 @@ ...@@ -360,9 +366,9 @@
"Role": "भूमिका", "Role": "भूमिका",
"Rosé Pine": "", "Rosé Pine": "",
"Rosé Pine Dawn": "", "Rosé Pine Dawn": "",
"RTL": "",
"Save": "सहेजें", "Save": "सहेजें",
"Save & Create": "सहेजें और बनाएं", "Save & Create": "सहेजें और बनाएं",
"Save & Submit": "सहेजें और सबमिट करें",
"Save & Update": "सहेजें और अपडेट करें", "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": "चैट लॉग को सीधे आपके ब्राउज़र के स्टोरेज में सहेजना अब समर्थित नहीं है। कृपया नीचे दिए गए बटन पर क्लिक करके डाउनलोड करने और अपने चैट लॉग को हटाने के लिए कुछ समय दें। चिंता न करें, आप आसानी से अपने चैट लॉग को बैकएंड पर पुनः आयात कर सकते हैं", "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": "स्कैन",
...@@ -378,7 +384,8 @@ ...@@ -378,7 +384,8 @@
"Select a mode": "एक मोड चुनें", "Select a mode": "एक मोड चुनें",
"Select a model": "एक मॉडल चुनें", "Select a model": "एक मॉडल चुनें",
"Select an Ollama instance": "एक Ollama Instance चुनें", "Select an Ollama instance": "एक Ollama Instance चुनें",
"Select model": "", "Select model": "मॉडल चुनें",
"Send": "",
"Send a Message": "एक संदेश भेजो", "Send a Message": "एक संदेश भेजो",
"Send message": "मेसेज भेजें", "Send message": "मेसेज भेजें",
"September": "", "September": "",
...@@ -407,7 +414,7 @@ ...@@ -407,7 +414,7 @@
"Sign Out": "साइन आउट", "Sign Out": "साइन आउट",
"Sign up": "साइन अप", "Sign up": "साइन अप",
"Signing in": "साइन इन हो रहा है", "Signing in": "साइन इन हो रहा है",
"Source": "", "Source": "स्रोत",
"Speech recognition error: {{error}}": "वाक् पहचान त्रुटि: {{error}}", "Speech recognition error: {{error}}": "वाक् पहचान त्रुटि: {{error}}",
"Speech-to-Text Engine": "वाक्-से-पाठ इंजन", "Speech-to-Text Engine": "वाक्-से-पाठ इंजन",
"SpeechRecognition API is not supported in this browser.": "इस ब्राउज़र में SpeechRecognition API समर्थित नहीं है", "SpeechRecognition API is not supported in this browser.": "इस ब्राउज़र में SpeechRecognition API समर्थित नहीं है",
...@@ -482,10 +489,11 @@ ...@@ -482,10 +489,11 @@
"What’s New in": "इसमें नया क्या है", "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.": "जब इतिहास बंद हो जाता है, तो इस ब्राउज़र पर नई चैट आपके किसी भी डिवाइस पर इतिहास में दिखाई नहीं देंगी।", "When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "जब इतिहास बंद हो जाता है, तो इस ब्राउज़र पर नई चैट आपके किसी भी डिवाइस पर इतिहास में दिखाई नहीं देंगी।",
"Whisper (Local)": "Whisper (स्थानीय)", "Whisper (Local)": "Whisper (स्थानीय)",
"Workspace": "",
"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 शब्दों में एक सारांश लिखें जो [विषय या कीवर्ड] का सारांश प्रस्तुत करता हो।",
"Yesterday": "", "Yesterday": "",
"You": "आप", "You": "",
"You have no archived conversations.": "", "You have no archived conversations.": "",
"You have shared this chat": "", "You have shared this chat": "",
"You're a helpful assistant.": "आप एक सहायक सहायक हैं", "You're a helpful assistant.": "आप एक सहायक सहायक हैं",
......
{
"'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'s', 'm', 'h', 'd', 'w' ili '-1' za bez isteka.",
"(Beta)": "(Beta)",
"(e.g. `sh webui.sh --api`)": "(npr. `sh webui.sh --api`)",
"(latest)": "(najnovije)",
"{{modelName}} is thinking...": "{{modelName}} razmišlja...",
"{{user}}'s Chats": "Razgovori korisnika {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Backend je potreban",
"a user": "korisnik",
"About": "O",
"Account": "Račun",
"Accurate information": "Točne informacije",
"Add": "",
"Add a model": "Dodaj model",
"Add a model tag name": "Dodaj oznaku modela",
"Add a short description about what this modelfile does": "Dodajte kratak opis što ova datoteka modela radi",
"Add a short title for this prompt": "Dodajte kratki naslov za ovaj prompt",
"Add a tag": "Dodaj oznaku",
"Add custom prompt": "Dodaj prilagođeni prompt",
"Add Docs": "Dodaj dokumente",
"Add Files": "Dodaj datoteke",
"Add Memory": "",
"Add message": "Dodaj poruku",
"Add Model": "Dodaj model",
"Add Tags": "Dodaj oznake",
"Add User": "Dodaj korisnika",
"Adjusting these settings will apply changes universally to all users.": "Podešavanje ovih postavki primijenit će promjene univerzalno na sve korisnike.",
"admin": "administrator",
"Admin Panel": "Administratorska ploča",
"Admin Settings": "Administratorske postavke",
"Advanced Parameters": "Napredni parametri",
"all": "sve",
"All Documents": "Svi dokumenti",
"All Users": "Svi korisnici",
"Allow": "Dopusti",
"Allow Chat Deletion": "Dopusti brisanje razgovora",
"alphanumeric characters and hyphens": "alfanumerički znakovi i crtice",
"Already have an account?": "Već imate račun?",
"an assistant": "asistent",
"and": "i",
"and create a new shared link.": "i stvorite novu dijeljenu vezu.",
"API Base URL": "Osnovni URL API-ja",
"API Key": "API ključ",
"API Key created.": "API ključ je stvoren.",
"API keys": "API ključevi",
"API RPM": "API RPM",
"April": "Travanj",
"Archive": "Arhiva",
"Archived Chats": "Arhivirani razgovori",
"are allowed - Activate this command by typing": "su dopušteni - Aktivirajte ovu naredbu upisivanjem",
"Are you sure?": "Jeste li sigurni?",
"Attach file": "Priloži datoteku",
"Attention to detail": "Pažnja na detalje",
"Audio": "Audio",
"August": "Kolovoz",
"Auto-playback response": "Automatska reprodukcija odgovora",
"Auto-send input after 3 sec.": "Automatsko slanje unosa nakon 3 sek.",
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 osnovni URL",
"AUTOMATIC1111 Base URL is required.": "Potreban je AUTOMATIC1111 osnovni URL.",
"available!": "dostupno!",
"Back": "Natrag",
"Bad Response": "Loš odgovor",
"before": "prije",
"Being lazy": "Biti lijen",
"Builder Mode": "Način graditelja",
"Bypass SSL verification for Websites": "Zaobiđi SSL provjeru za web stranice",
"Cancel": "Otkaži",
"Categories": "Kategorije",
"Change Password": "Promijeni lozinku",
"Chat": "Razgovor",
"Chat Bubble UI": "",
"Chat direction": "",
"Chat History": "Povijest razgovora",
"Chat History is off for this browser.": "Povijest razgovora je isključena za ovaj preglednik.",
"Chats": "Razgovori",
"Check Again": "Provjeri ponovo",
"Check for updates": "Provjeri za ažuriranja",
"Checking for updates...": "Provjeravam ažuriranja...",
"Choose a model before saving...": "Odaberite model prije spremanja...",
"Chunk Overlap": "Preklapanje dijelova",
"Chunk Params": "Parametri dijelova",
"Chunk Size": "Veličina dijela",
"Citation": "Citiranje",
"Click here for help.": "Kliknite ovdje za pomoć.",
"Click here to": "Kliknite ovdje za",
"Click here to check other modelfiles.": "Kliknite ovdje da provjerite druge datoteke modela.",
"Click here to select": "Kliknite ovdje za odabir",
"Click here to select a csv file.": "Kliknite ovdje da odaberete csv datoteku.",
"Click here to select documents.": "Kliknite ovdje da odaberete dokumente.",
"click here.": "kliknite ovdje.",
"Click on the user role button to change a user's role.": "Kliknite na gumb uloge korisnika za promjenu uloge korisnika.",
"Close": "Zatvori",
"Collection": "Kolekcija",
"ComfyUI": "ComfyUI",
"ComfyUI Base URL": "ComfyUI osnovni URL",
"ComfyUI Base URL is required.": "Potreban je ComfyUI osnovni URL.",
"Command": "Naredba",
"Confirm Password": "Potvrdite lozinku",
"Connections": "Povezivanja",
"Content": "Sadržaj",
"Context Length": "Dužina konteksta",
"Continue Response": "Nastavi odgovor",
"Conversation Mode": "Način razgovora",
"Copied shared chat URL to clipboard!": "Kopirana URL dijeljenog razgovora u međuspremnik!",
"Copy": "Kopiraj",
"Copy last code block": "Kopiraj zadnji blok koda",
"Copy last response": "Kopiraj zadnji odgovor",
"Copy Link": "Kopiraj vezu",
"Copying to clipboard was successful!": "Kopiranje u međuspremnik je bilo uspješno!",
"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':": "Stvorite sažetu frazu od 3-5 riječi kao naslov za sljedeći upit, strogo se pridržavajući ograničenja od 3-5 riječi i izbjegavajući upotrebu riječi 'naslov':",
"Create a modelfile": "Stvorite datoteku modela",
"Create Account": "Stvori račun",
"Create new key": "Stvori novi ključ",
"Create new secret key": "Stvori novi tajni ključ",
"Created at": "Stvoreno",
"Created At": "Stvoreno",
"Current Model": "Trenutni model",
"Current Password": "Trenutna lozinka",
"Custom": "Prilagođeno",
"Customize Ollama models for a specific purpose": "Prilagodite Ollama modele za specifičnu svrhu",
"Dark": "Tamno",
"Dashboard": "Nadzorna ploča",
"Database": "Baza podataka",
"December": "Prosinac",
"Default": "Zadano",
"Default (Automatic1111)": "Zadano (Automatic1111)",
"Default (SentenceTransformers)": "Zadano (SentenceTransformers)",
"Default (Web API)": "Zadano (Web API)",
"Default model updated": "Zadani model ažuriran",
"Default Prompt Suggestions": "Zadani prijedlozi prompta",
"Default User Role": "Zadana korisnička uloga",
"delete": "izbriši",
"Delete": "Izbriši",
"Delete a model": "Izbriši model",
"Delete chat": "Izbriši razgovor",
"Delete Chat": "Izbriši razgovor",
"Delete Chats": "Izbriši razgovore",
"delete this link": "izbriši ovu vezu",
"Delete User": "Izbriši korisnika",
"Deleted {{deleteModelTag}}": "Izbrisan {{deleteModelTag}}",
"Deleted {{tagName}}": "Izbrisan {{tagName}}",
"Description": "Opis",
"Didn't fully follow instructions": "Nije u potpunosti slijedio upute",
"Disabled": "Onemogućeno",
"Discover a modelfile": "Otkrijte datoteku modela",
"Discover a prompt": "Otkrijte prompt",
"Discover, download, and explore custom prompts": "Otkrijte, preuzmite i istražite prilagođene prompte",
"Discover, download, and explore model presets": "Otkrijte, preuzmite i istražite unaprijed postavljene modele",
"Display the username instead of You in the Chat": "Prikaži korisničko ime umjesto Vas u razgovoru",
"Document": "Dokument",
"Document Settings": "Postavke dokumenta",
"Documents": "Dokumenti",
"does not make any external connections, and your data stays securely on your locally hosted server.": "ne uspostavlja vanjske veze, a vaši podaci ostaju sigurno na vašem lokalno hostiranom poslužitelju.",
"Don't Allow": "Ne dopuštaj",
"Don't have an account?": "Nemate račun?",
"Don't like the style": "Ne sviđa mi se stil",
"Download": "Preuzimanje",
"Download canceled": "Preuzimanje otkazano",
"Download Database": "Preuzmi bazu podataka",
"Drop any files here to add to the conversation": "Spustite bilo koje datoteke ovdje za dodavanje u razgovor",
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "npr. '30s','10m'. Važeće vremenske jedinice su 's', 'm', 'h'.",
"Edit": "Uredi",
"Edit Doc": "Uredi dokument",
"Edit User": "Uredi korisnika",
"Email": "Email",
"Embedding Model": "Umetanje modela",
"Embedding Model Engine": "Stroj za umetanje modela",
"Embedding model set to \"{{embedding_model}}\"": "Model za umetanje postavljen na \"{{embedding_model}}\"",
"Enable Chat History": "Omogući povijest razgovora",
"Enable New Sign Ups": "Omogući nove prijave",
"Enabled": "Omogućeno",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Provjerite da vaša CSV datoteka uključuje 4 stupca u ovom redoslijedu: Ime, Email, Lozinka, Uloga.",
"Enter {{role}} message here": "Unesite poruku {{role}} ovdje",
"Enter a detail about yourself for your LLMs to recall": "",
"Enter Chunk Overlap": "Unesite preklapanje dijelova",
"Enter Chunk Size": "Unesite veličinu dijela",
"Enter Image Size (e.g. 512x512)": "Unesite veličinu slike (npr. 512x512)",
"Enter language codes": "Unesite kodove jezika",
"Enter LiteLLM API Base URL (litellm_params.api_base)": "Unesite osnovni URL LiteLLM API-ja (litellm_params.api_base)",
"Enter LiteLLM API Key (litellm_params.api_key)": "Unesite ključ LiteLLM API-ja (litellm_params.api_key)",
"Enter LiteLLM API RPM (litellm_params.rpm)": "Unesite LiteLLM API RPM (litellm_params.rpm)",
"Enter LiteLLM Model (litellm_params.model)": "Unesite LiteLLM model (litellm_params.model)",
"Enter Max Tokens (litellm_params.max_tokens)": "Unesite maksimalan broj tokena (litellm_params.max_tokens)",
"Enter model tag (e.g. {{modelTag}})": "Unesite oznaku modela (npr. {{modelTag}})",
"Enter Number of Steps (e.g. 50)": "Unesite broj koraka (npr. 50)",
"Enter Score": "Unesite ocjenu",
"Enter stop sequence": "Unesite sekvencu zaustavljanja",
"Enter Top K": "Unesite Top K",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Unesite URL (npr. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Unesite URL (npr. http://localhost:11434)",
"Enter Your Email": "Unesite svoj email",
"Enter Your Full Name": "Unesite svoje puno ime",
"Enter Your Password": "Unesite svoju lozinku",
"Enter Your Role": "Unesite svoju ulogu",
"Experimental": "Eksperimentalno",
"Export All Chats (All Users)": "Izvoz svih razgovora (svi korisnici)",
"Export Chats": "Izvoz razgovora",
"Export Documents Mapping": "Izvoz mapiranja dokumenata",
"Export Modelfiles": "Izvoz datoteka modela",
"Export Prompts": "Izvoz prompta",
"Failed to create API Key.": "Neuspješno stvaranje API ključa.",
"Failed to read clipboard contents": "Neuspješno čitanje sadržaja međuspremnika",
"February": "Veljača",
"Feel free to add specific details": "Slobodno dodajte specifične detalje",
"File Mode": "Način datoteke",
"File not found.": "Datoteka nije pronađena.",
"Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Otkriveno krivotvorenje otisaka prstiju: Nemoguće je koristiti inicijale kao avatar. Postavljanje na zadanu profilnu sliku.",
"Fluidly stream large external response chunks": "Glavno strujanje velikih vanjskih dijelova odgovora",
"Focus chat input": "Fokusiraj unos razgovora",
"Followed instructions perfectly": "Savršeno slijedio upute",
"Format your variables using square brackets like this:": "Formatirajte svoje varijable pomoću uglatih zagrada ovako:",
"From (Base Model)": "Od (osnovni model)",
"Full Screen Mode": "Način cijelog zaslona",
"General": "Općenito",
"General Settings": "Opće postavke",
"Generation Info": "Informacije o generaciji",
"Good Response": "Dobar odgovor",
"h:mm a": "",
"has no conversations.": "nema razgovora.",
"Hello, {{name}}": "Bok, {{name}}",
"Help": "Pomoć",
"Hide": "Sakrij",
"Hide Additional Params": "Sakrij dodatne parametre",
"How can I help you today?": "Kako vam mogu pomoći danas?",
"Hybrid Search": "Hibridna pretraga",
"Image Generation (Experimental)": "Generiranje slika (eksperimentalno)",
"Image Generation Engine": "Stroj za generiranje slika",
"Image Settings": "Postavke slike",
"Images": "Slike",
"Import Chats": "Uvoz razgovora",
"Import Documents Mapping": "Uvoz mapiranja dokumenata",
"Import Modelfiles": "Uvoz datoteka modela",
"Import Prompts": "Uvoz prompta",
"Include `--api` flag when running stable-diffusion-webui": "Uključite zastavicu `--api` prilikom pokretanja stable-diffusion-webui",
"Input commands": "Unos naredbi",
"Interface": "Sučelje",
"Invalid Tag": "Nevažeća oznaka",
"January": "Siječanj",
"join our Discord for help.": "pridružite se našem Discordu za pomoć.",
"JSON": "JSON",
"July": "Srpanj",
"June": "Lipanj",
"JWT Expiration": "Isticanje JWT-a",
"JWT Token": "JWT token",
"Keep Alive": "Održavanje živim",
"Keyboard shortcuts": "Tipkovnički prečaci",
"Language": "Jezik",
"Last Active": "Zadnja aktivnost",
"Light": "Svijetlo",
"Listening...": "Slušanje...",
"LLMs can make mistakes. Verify important information.": "LLM-ovi mogu pogriješiti. Provjerite važne informacije.",
"LTR": "",
"Made by OpenWebUI Community": "Izradio OpenWebUI Community",
"Make sure to enclose them with": "Provjerite da ih zatvorite s",
"Manage LiteLLM Models": "Upravljajte LiteLLM modelima",
"Manage Models": "Upravljanje modelima",
"Manage Ollama Models": "Upravljanje Ollama modelima",
"March": "Ožujak",
"Max Tokens": "Maksimalni tokeni",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimalno 3 modela mogu se preuzeti istovremeno. Pokušajte ponovo kasnije.",
"May": "Svibanj",
"Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
"Minimum Score": "Minimalna ocjena",
"Mirostat": "Mirostat",
"Mirostat Eta": "Mirostat Eta",
"Mirostat Tau": "Mirostat Tau",
"MMMM DD, YYYY": "MMMM DD, YYYY",
"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' je uspješno preuzet.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je već u redu za preuzimanje.",
"Model {{modelId}} not found": "Model {{modelId}} nije pronađen",
"Model {{modelName}} already exists.": "Model {{modelName}} već postoji.",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Otkriven put datotečnog sustava modela. Kratko ime modela je potrebno za ažuriranje, nije moguće nastaviti.",
"Model Name": "Naziv modela",
"Model not selected": "Model nije odabran",
"Model Tag Name": "Naziv oznake modela",
"Model Whitelisting": "Bijela lista modela",
"Model(s) Whitelisted": "Model(i) na bijeloj listi",
"Modelfile": "Datoteka modela",
"Modelfile Advanced Settings": "Napredne postavke datoteke modela",
"Modelfile Content": "Sadržaj datoteke modela",
"Modelfiles": "Datoteke modela",
"Models": "Modeli",
"More": "Više",
"Name": "Ime",
"Name Tag": "Naziv oznake",
"Name your modelfile": "Nazovite svoju datoteku modela",
"New Chat": "Novi razgovor",
"New Password": "Nova lozinka",
"No results found": "Nema rezultata",
"No source available": "Nema dostupnog izvora",
"Not factually correct": "Nije činjenično točno",
"Not sure what to add?": "Niste sigurni što dodati?",
"Not sure what to write? Switch to": "Niste sigurni što napisati? Prebacite se na",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Napomena: Ako postavite minimalnu ocjenu, pretraga će vratiti samo dokumente s ocjenom većom ili jednakom minimalnoj ocjeni.",
"Notifications": "Obavijesti",
"November": "Studeni",
"October": "Listopad",
"Off": "Isključeno",
"Okay, Let's Go!": "U redu, idemo!",
"OLED Dark": "OLED Tamno",
"Ollama": "Ollama",
"Ollama Base URL": "Osnovni URL Ollama",
"Ollama Version": "Verzija Ollama",
"On": "Uključeno",
"Only": "Samo",
"Only alphanumeric characters and hyphens are allowed in the command string.": "Samo alfanumerički znakovi i crtice su dopušteni u naredbenom nizu.",
"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.": "Ups! Držite se! Vaše datoteke su još uvijek u procesu obrade. Pečemo ih do savršenstva. Molimo vas da budete strpljivi i obavijestit ćemo vas kada budu spremne.",
"Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! Izgleda da je URL nevažeći. Molimo provjerite ponovno i pokušajte ponovo.",
"Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Ups! Koristite nepodržanu metodu (samo frontend). Molimo poslužite WebUI s backend-a.",
"Open": "Otvoreno",
"Open AI": "Open AI",
"Open AI (Dall-E)": "Open AI (Dall-E)",
"Open new chat": "Otvorite novi razgovor",
"OpenAI": "OpenAI",
"OpenAI API": "OpenAI API",
"OpenAI API Config": "OpenAI API konfiguracija",
"OpenAI API Key is required.": "Potreban je OpenAI API ključ.",
"OpenAI URL/Key required.": "Potreban je OpenAI URL/ključ.",
"or": "ili",
"Other": "Ostalo",
"Overview": "Pregled",
"Parameters": "Parametri",
"Password": "Lozinka",
"PDF document (.pdf)": "PDF dokument (.pdf)",
"PDF Extract Images (OCR)": "PDF izdvajanje slika (OCR)",
"pending": "u tijeku",
"Permission denied when accessing microphone: {{error}}": "Dopuštenje odbijeno prilikom pristupa mikrofonu: {{error}}",
"Personalization": "",
"Plain text (.txt)": "Običan tekst (.txt)",
"Playground": "Igralište",
"Positive attitude": "Pozitivan stav",
"Previous 30 days": "Prethodnih 30 dana",
"Previous 7 days": "Prethodnih 7 dana",
"Profile Image": "Profilna slika",
"Prompt": "Prompt",
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (npr. Reci mi zanimljivost o Rimskom carstvu)",
"Prompt Content": "Sadržaj prompta",
"Prompt suggestions": "Prijedlozi prompta",
"Prompts": "Prompti",
"Pull \"{{searchValue}}\" from Ollama.com": "Povucite \"{{searchValue}}\" s Ollama.com",
"Pull a model from Ollama.com": "Povucite model s Ollama.com",
"Pull Progress": "Napredak povlačenja",
"Query Params": "Parametri upita",
"RAG Template": "RAG predložak",
"Raw Format": "Neobrađeni format",
"Read Aloud": "Čitaj naglas",
"Record voice": "Snimanje glasa",
"Redirecting you to OpenWebUI Community": "Preusmjeravanje na OpenWebUI zajednicu",
"Refused when it shouldn't have": "Odbijen kada nije trebao biti",
"Regenerate": "Regeneriraj",
"Release Notes": "Bilješke o izdanju",
"Remove": "Ukloni",
"Remove Model": "Ukloni model",
"Rename": "Preimenuj",
"Repeat Last N": "Ponovi zadnjih N",
"Repeat Penalty": "Kazna za ponavljanje",
"Request Mode": "Način zahtjeva",
"Reranking Model": "Model za ponovno rangiranje",
"Reranking model disabled": "Model za ponovno rangiranje onemogućen",
"Reranking model set to \"{{reranking_model}}\"": "Model za ponovno rangiranje postavljen na \"{{reranking_model}}\"",
"Reset Vector Storage": "Resetiraj pohranu vektora",
"Response AutoCopy to Clipboard": "Automatsko kopiranje odgovora u međuspremnik",
"Role": "Uloga",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",
"RTL": "",
"Save": "Spremi",
"Save & Create": "Spremi i stvori",
"Save & Update": "Spremi i ažuriraj",
"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": "Spremanje zapisnika razgovora izravno u pohranu vašeg preglednika više nije podržano. Molimo vas da odvojite trenutak za preuzimanje i brisanje zapisnika razgovora klikom na gumb ispod. Ne brinite, možete lako ponovno uvesti zapisnike razgovora u backend putem",
"Scan": "Skeniraj",
"Scan complete!": "Skeniranje dovršeno!",
"Scan for documents from {{path}}": "Skeniraj dokumente s {{path}}",
"Search": "Pretraga",
"Search a model": "Pretraži model",
"Search Documents": "Pretraga dokumenata",
"Search Prompts": "Pretraga prompta",
"See readme.md for instructions": "Pogledajte readme.md za upute",
"See what's new": "Pogledajte što je novo",
"Seed": "Sjeme",
"Select a mode": "Odaberite način",
"Select a model": "Odaberite model",
"Select an Ollama instance": "Odaberite Ollama instancu",
"Select model": "Odaberite model",
"Send": "",
"Send a Message": "Pošaljite poruku",
"Send message": "Pošalji poruku",
"September": "Rujan",
"Server connection verified": "Veza s poslužiteljem potvrđena",
"Set as default": "Postavi kao zadano",
"Set Default Model": "Postavi zadani model",
"Set embedding model (e.g. {{model}})": "Postavi model za umetanje (npr. {{model}})",
"Set Image Size": "Postavi veličinu slike",
"Set Model": "Postavi model",
"Set reranking model (e.g. {{model}})": "Postavi model za ponovno rangiranje (npr. {{model}})",
"Set Steps": "Postavi korake",
"Set Title Auto-Generation Model": "Postavi model za automatsko generiranje naslova",
"Set Voice": "Postavi glas",
"Settings": "Postavke",
"Settings saved successfully!": "Postavke su uspješno spremljene!",
"Share": "Podijeli",
"Share Chat": "Podijeli razgovor",
"Share to OpenWebUI Community": "Podijeli u OpenWebUI zajednici",
"short-summary": "kratki sažetak",
"Show": "Pokaži",
"Show Additional Params": "Pokaži dodatne parametre",
"Show shortcuts": "Pokaži prečace",
"Showcased creativity": "Prikazana kreativnost",
"sidebar": "bočna traka",
"Sign in": "Prijava",
"Sign Out": "Odjava",
"Sign up": "Registracija",
"Signing in": "Prijava",
"Source": "Izvor",
"Speech recognition error: {{error}}": "Pogreška prepoznavanja govora: {{error}}",
"Speech-to-Text Engine": "Stroj za prepoznavanje govora",
"SpeechRecognition API is not supported in this browser.": "API za prepoznavanje govora nije podržan u ovom pregledniku.",
"Stop Sequence": "Zaustavi sekvencu",
"STT Settings": "STT postavke",
"Submit": "Pošalji",
"Subtitle (e.g. about the Roman Empire)": "Podnaslov (npr. o Rimskom carstvu)",
"Success": "Uspjeh",
"Successfully updated.": "Uspješno ažurirano.",
"Suggested": "Predloženo",
"Sync All": "Sinkroniziraj sve",
"System": "Sustav",
"System Prompt": "Sistemski prompt",
"Tags": "Oznake",
"Tell us more:": "Recite nam više:",
"Temperature": "Temperatura",
"Template": "Predložak",
"Text Completion": "Dovršavanje teksta",
"Text-to-Speech Engine": "Stroj za pretvorbu teksta u govor",
"Tfs Z": "Tfs Z",
"Thanks for your feedback!": "Hvala na povratnim informacijama!",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Ocjena treba biti vrijednost između 0,0 (0%) i 1,0 (100%).",
"Theme": "Tema",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Ovo osigurava da su vaši vrijedni razgovori sigurno spremljeni u vašu bazu podataka na backendu. Hvala vam!",
"This setting does not sync across browsers or devices.": "Ova postavka se ne sinkronizira između preglednika ili uređaja.",
"Thorough explanation": "Detaljno objašnjenje",
"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Savjet: Ažurirajte više mjesta za varijable uzastopno pritiskom na tipku tab u unosu razgovora nakon svake zamjene.",
"Title": "Naslov",
"Title (e.g. Tell me a fun fact)": "Naslov (npr. Reci mi zanimljivost)",
"Title Auto-Generation": "Automatsko generiranje naslova",
"Title cannot be an empty string.": "Naslov ne može biti prazni niz.",
"Title Generation Prompt": "Prompt za generiranje naslova",
"to": "do",
"To access the available model names for downloading,": "Za pristup dostupnim nazivima modela za preuzimanje,",
"To access the GGUF models available for downloading,": "Za pristup GGUF modelima dostupnim za preuzimanje,",
"to chat input.": "u unos razgovora.",
"Today": "Danas",
"Toggle settings": "Prebaci postavke",
"Toggle sidebar": "Prebaci bočnu traku",
"Top K": "Top K",
"Top P": "Top P",
"Trouble accessing Ollama?": "Problemi s pristupom Ollama?",
"TTS Settings": "TTS postavke",
"Type Hugging Face Resolve (Download) URL": "Upišite Hugging Face Resolve (Download) URL",
"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Pojavio se problem s povezivanjem na {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Nepoznata vrsta datoteke '{{file_type}}', ali prihvaćena i obrađuje se kao običan tekst",
"Update and Copy Link": "Ažuriraj i kopiraj vezu",
"Update password": "Ažuriraj lozinku",
"Upload a GGUF model": "Učitaj GGUF model",
"Upload files": "Učitaj datoteke",
"Upload Progress": "Napredak učitavanja",
"URL Mode": "URL način",
"Use '#' in the prompt input to load and select your documents.": "Koristite '#' u unosu prompta za učitavanje i odabir vaših dokumenata.",
"Use Gravatar": "Koristi Gravatar",
"Use Initials": "Koristi inicijale",
"user": "korisnik",
"User Permissions": "Korisnička dopuštenja",
"Users": "Korisnici",
"Utilize": "Iskoristi",
"Valid time units:": "Važeće vremenske jedinice:",
"variable": "varijabla",
"variable to have them replaced with clipboard content.": "varijabla za zamjenu sadržajem međuspremnika.",
"Version": "Verzija",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Upozorenje: Ako ažurirate ili promijenite svoj model za umetanje, morat ćete ponovno uvesti sve dokumente.",
"Web": "Web",
"Web Loader Settings": "Postavke web učitavanja",
"Web Params": "Web parametri",
"Webhook URL": "URL webkuke",
"WebUI Add-ons": "Dodaci za WebUI",
"WebUI Settings": "WebUI postavke",
"WebUI will make requests to": "WebUI će slati zahtjeve na",
"What’s New in": "Što je novo u",
"When history is turned off, new chats on this browser won't appear in your history on any of your devices.": "Kada je povijest isključena, novi razgovori na ovom pregledniku neće se pojaviti u vašoj povijesti na bilo kojem od vaših uređaja.",
"Whisper (Local)": "Whisper (lokalno)",
"Workspace": "",
"Write a prompt suggestion (e.g. Who are you?)": "Napišite prijedlog prompta (npr. Tko si ti?)",
"Write a summary in 50 words that summarizes [topic or keyword].": "Napišite sažetak u 50 riječi koji sažima [temu ili ključnu riječ].",
"Yesterday": "Jučer",
"You": "Vi",
"You have no archived conversations.": "Nemate arhiviranih razgovora.",
"You have shared this chat": "Podijelili ste ovaj razgovor",
"You're a helpful assistant.": "Vi ste korisni asistent.",
"You're now logged in.": "Sada ste prijavljeni.",
"Youtube": "YouTube",
"Youtube Loader Settings": "YouTube postavke učitavanja"
}
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