i18n.t: updates

This commit is contained in:
silentoplayz 2025-08-13 20:15:16 -04:00
parent b43acc2b3d
commit 82ed9b0a97
89 changed files with 3454 additions and 91 deletions

View File

@ -360,7 +360,7 @@ export const getToolServersData = async (i18n, servers: object[]) => {
: `${server?.url}${(server?.path ?? '').startsWith('/') ? '' : '/'}${server?.path}` : `${server?.url}${(server?.path ?? '').startsWith('/') ? '' : '/'}${server?.path}`
).catch((err) => { ).catch((err) => {
toast.error( toast.error(
i18n.t(`Failed to connect to {{URL}} OpenAPI tool server`, { $i18n.t(`Failed to connect to {{URL}} OpenAPI tool server`, {
URL: (server?.path ?? '').includes('://') URL: (server?.path ?? '').includes('://')
? server?.path ? server?.path
: `${server?.url}${(server?.path ?? '').startsWith('/') ? '' : '/'}${server?.path}` : `${server?.url}${(server?.path ?? '').startsWith('/') ? '' : '/'}${server?.path}`

View File

@ -108,7 +108,7 @@
if (!ollama && !url) { if (!ollama && !url) {
loading = false; loading = false;
toast.error('URL is required'); toast.error($i18n.t('URL is required'));
return; return;
} }
@ -116,20 +116,20 @@
if (!apiVersion) { if (!apiVersion) {
loading = false; loading = false;
toast.error('API Version is required'); toast.error($i18n.t('API Version is required'));
return; return;
} }
if (!key) { if (!key) {
loading = false; loading = false;
toast.error('Key is required'); toast.error($i18n.t('Key is required'));
return; return;
} }
if (modelIds.length === 0) { if (modelIds.length === 0) {
loading = false; loading = false;
toast.error('Deployment names are required'); toast.error($i18n.t('Deployment names are required for Azure OpenAI'));
return; return;
} }
} }

View File

@ -278,8 +278,8 @@
class={`w-full text-sm bg-transparent pr-5 ${($settings?.highContrastMode ?? false) ? 'placeholder:text-gray-700 dark:placeholder:text-gray-100' : 'outline-hidden placeholder:text-gray-300 dark:placeholder:text-gray-700'}`} class={`w-full text-sm bg-transparent pr-5 ${($settings?.highContrastMode ?? false) ? 'placeholder:text-gray-700 dark:placeholder:text-gray-100' : 'outline-hidden placeholder:text-gray-300 dark:placeholder:text-gray-700'}`}
bind:value={auth_type} bind:value={auth_type}
> >
<option value="bearer">Bearer</option> <option value="bearer">{$i18n.t('Bearer')}</option>
<option value="session">Session</option> <option value="session">{$i18n.t('Session')}</option>
</select> </select>
</div> </div>

View File

@ -105,7 +105,7 @@
sessionStorage.function = JSON.stringify({ sessionStorage.function = JSON.stringify({
..._function, ..._function,
id: `${_function.id}_clone`, id: `${_function.id}_clone`,
name: `${_function.name} (Clone)` name: `${_function.name} (${$i18n.t('Clone')})`
}); });
goto('/admin/functions/create'); goto('/admin/functions/create');
} }
@ -655,7 +655,7 @@
> >
<div class="text-sm text-gray-500"> <div class="text-sm text-gray-500">
<div class=" bg-yellow-500/20 text-yellow-700 dark:text-yellow-200 rounded-lg px-4 py-3"> <div class=" bg-yellow-500/20 text-yellow-700 dark:text-yellow-200 rounded-lg px-4 py-3">
<div>Please carefully review the following warnings:</div> <div>{$i18n.t('Please carefully review the following warnings:')}</div>
<ul class=" mt-1 list-disc pl-4 text-xs"> <ul class=" mt-1 list-disc pl-4 text-xs">
<li>{$i18n.t('Functions allow arbitrary code execution.')}</li> <li>{$i18n.t('Functions allow arbitrary code execution.')}</li>

View File

@ -215,13 +215,13 @@
<select <select
class="dark:bg-gray-900 cursor-pointer w-fit pr-8 rounded-sm px-2 p-1 text-xs bg-transparent outline-hidden text-right" class="dark:bg-gray-900 cursor-pointer w-fit pr-8 rounded-sm px-2 p-1 text-xs bg-transparent outline-hidden text-right"
bind:value={STT_ENGINE} bind:value={STT_ENGINE}
placeholder="Select an engine" placeholder={$i18n.t('Select an engine')}
> >
<option value="">{$i18n.t('Whisper (Local)')}</option> <option value="">{$i18n.t('Whisper (Local)')}</option>
<option value="openai">OpenAI</option> <option value="openai">{$i18n.t('OpenAI')}</option>
<option value="web">{$i18n.t('Web API')}</option> <option value="web">{$i18n.t('Web API')}</option>
<option value="deepgram">Deepgram</option> <option value="deepgram">{$i18n.t('Deepgram')}</option>
<option value="azure">Azure AI Speech</option> <option value="azure">{$i18n.t('Azure AI Speech')}</option>
</select> </select>
</div> </div>
</div> </div>
@ -250,7 +250,7 @@
list="model-list" list="model-list"
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden" class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden"
bind:value={STT_MODEL} bind:value={STT_MODEL}
placeholder="Select a model" placeholder={$i18n.t('Select a model')}
/> />
<datalist id="model-list"> <datalist id="model-list">
@ -275,7 +275,7 @@
<input <input
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden" class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden"
bind:value={STT_MODEL} bind:value={STT_MODEL}
placeholder="Select a model (optional)" placeholder={$i18n.t('Select a model (optional)')}
/> />
</div> </div>
</div> </div>
@ -424,7 +424,7 @@
<select <select
class=" dark:bg-gray-900 w-fit pr-8 cursor-pointer rounded-sm px-2 p-1 text-xs bg-transparent outline-hidden text-right" class=" dark:bg-gray-900 w-fit pr-8 cursor-pointer rounded-sm px-2 p-1 text-xs bg-transparent outline-hidden text-right"
bind:value={TTS_ENGINE} bind:value={TTS_ENGINE}
placeholder="Select a mode" placeholder={$i18n.t('Select a mode')}
on:change={async (e) => { on:change={async (e) => {
await updateConfigHandler(); await updateConfigHandler();
await getVoices(); await getVoices();
@ -539,7 +539,7 @@
list="model-list" list="model-list"
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden" class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden"
bind:value={TTS_MODEL} bind:value={TTS_MODEL}
placeholder="CMU ARCTIC speaker embedding name" placeholder={$i18n.t('CMU ARCTIC speaker embedding name')}
/> />
<datalist id="model-list"> <datalist id="model-list">
@ -581,7 +581,7 @@
list="voice-list" list="voice-list"
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden" class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden"
bind:value={TTS_VOICE} bind:value={TTS_VOICE}
placeholder="Select a voice" placeholder={$i18n.t('Select a voice')}
/> />
<datalist id="voice-list"> <datalist id="voice-list">
@ -600,7 +600,7 @@
list="tts-model-list" list="tts-model-list"
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden" class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden"
bind:value={TTS_MODEL} bind:value={TTS_MODEL}
placeholder="Select a model" placeholder={$i18n.t('Select a model')}
/> />
<datalist id="tts-model-list"> <datalist id="tts-model-list">
@ -622,7 +622,7 @@
list="voice-list" list="voice-list"
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden" class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden"
bind:value={TTS_VOICE} bind:value={TTS_VOICE}
placeholder="Select a voice" placeholder={$i18n.t('Select a voice')}
/> />
<datalist id="voice-list"> <datalist id="voice-list">
@ -641,7 +641,7 @@
list="tts-model-list" list="tts-model-list"
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden" class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden"
bind:value={TTS_MODEL} bind:value={TTS_MODEL}
placeholder="Select a model" placeholder={$i18n.t('Select a model')}
/> />
<datalist id="tts-model-list"> <datalist id="tts-model-list">
@ -663,7 +663,7 @@
list="voice-list" list="voice-list"
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden" class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden"
bind:value={TTS_VOICE} bind:value={TTS_VOICE}
placeholder="Select a voice" placeholder={$i18n.t('Select a voice')}
/> />
<datalist id="voice-list"> <datalist id="voice-list">
@ -690,7 +690,7 @@
list="tts-model-list" list="tts-model-list"
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden" class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden"
bind:value={TTS_AZURE_SPEECH_OUTPUT_FORMAT} bind:value={TTS_AZURE_SPEECH_OUTPUT_FORMAT}
placeholder="Select a output format" placeholder={$i18n.t('Select an output format')}
/> />
</div> </div>
</div> </div>
@ -704,7 +704,7 @@
<div class="flex items-center relative"> <div class="flex items-center relative">
<select <select
class="dark:bg-gray-900 w-fit pr-8 cursor-pointer rounded-sm px-2 p-1 text-xs bg-transparent outline-hidden text-right" class="dark:bg-gray-900 w-fit pr-8 cursor-pointer rounded-sm px-2 p-1 text-xs bg-transparent outline-hidden text-right"
aria-label="Select how to split message text for TTS requests" aria-label={$i18n.t('Select how to split message text for TTS requests')}
bind:value={TTS_SPLIT_ON} bind:value={TTS_SPLIT_ON}
> >
{#each Object.values(TTS_RESPONSE_SPLIT) as split} {#each Object.values(TTS_RESPONSE_SPLIT) as split}

View File

@ -76,7 +76,7 @@
); );
if (res) { if (res) {
toast.success('Config imported successfully'); toast.success($i18n.t('Config imported successfully'));
} }
e.target.value = null; e.target.value = null;
}; };

View File

@ -746,7 +746,7 @@
<select <select
class="dark:bg-gray-900 w-fit pr-8 rounded-sm px-2 p-1 text-xs bg-transparent outline-hidden text-right" class="dark:bg-gray-900 w-fit pr-8 rounded-sm px-2 p-1 text-xs bg-transparent outline-hidden text-right"
bind:value={embeddingEngine} bind:value={embeddingEngine}
placeholder="Select an embedding model engine" placeholder={$i18n.t('Select an embedding model engine')}
on:change={(e) => { on:change={(e) => {
if (e.target.value === 'ollama') { if (e.target.value === 'ollama') {
embeddingModel = ''; embeddingModel = '';
@ -811,7 +811,7 @@
<div class="flex gap-2"> <div class="flex gap-2">
<input <input
class="flex-1 w-full text-sm bg-transparent outline-hidden" class="flex-1 w-full text-sm bg-transparent outline-hidden"
placeholder="Version" placeholder={$i18n.t('Version')}
bind:value={AzureOpenAIVersion} bind:value={AzureOpenAIVersion}
required required
/> />
@ -947,7 +947,7 @@
<select <select
class="dark:bg-gray-900 w-fit pr-8 rounded-sm px-2 p-1 text-xs bg-transparent outline-hidden text-right" class="dark:bg-gray-900 w-fit pr-8 rounded-sm px-2 p-1 text-xs bg-transparent outline-hidden text-right"
bind:value={RAGConfig.RAG_RERANKING_ENGINE} bind:value={RAGConfig.RAG_RERANKING_ENGINE}
placeholder="Select a reranking model engine" placeholder={$i18n.t('Select a reranking model engine')}
on:change={(e) => { on:change={(e) => {
if (e.target.value === 'external') { if (e.target.value === 'external') {
RAGConfig.RAG_RERANKING_MODEL = ''; RAGConfig.RAG_RERANKING_MODEL = '';

View File

@ -26,7 +26,7 @@
}); });
if (evaluationConfig) { if (evaluationConfig) {
toast.success('Settings saved successfully'); toast.success($i18n.t('Settings saved successfully!'));
models.set( models.set(
await getModels( await getModels(
localStorage.token, localStorage.token,

View File

@ -62,7 +62,7 @@
if (!name || !id) { if (!name || !id) {
loading = false; loading = false;
toast.error('Name and ID are required, please fill them out'); toast.error($i18n.t('Name and ID are required, please fill them out'));
return; return;
} }
@ -70,7 +70,7 @@
if ($models.find((model) => model.name === name)) { if ($models.find((model) => model.name === name)) {
loading = false; loading = false;
name = ''; name = '';
toast.error('Model name already exists, please choose a different one'); toast.error($i18n.t('Model name already exists, please choose a different one'));
return; return;
} }
} }

View File

@ -290,7 +290,7 @@
<select <select
class="dark:bg-gray-900 w-fit pr-8 rounded-sm px-2 text-xs bg-transparent outline-hidden text-right" class="dark:bg-gray-900 w-fit pr-8 rounded-sm px-2 text-xs bg-transparent outline-hidden text-right"
bind:value={adminConfig.DEFAULT_USER_ROLE} bind:value={adminConfig.DEFAULT_USER_ROLE}
placeholder="Select a role" placeholder={$i18n.t('Select a role')}
> >
<option value="pending">{$i18n.t('pending')}</option> <option value="pending">{$i18n.t('pending')}</option>
<option value="user">{$i18n.t('user')}</option> <option value="user">{$i18n.t('user')}</option>
@ -587,7 +587,7 @@
</div> </div>
</div> </div>
<div class="flex justify-between items-center text-xs"> <div class="flex justify-between items-center text-xs">
<div class=" font-medium">Validate certificate</div> <div class=" font-medium">{$i18n.t('Validate certificate')}</div>
<div class="mt-1"> <div class="mt-1">
<Switch bind:state={LDAP_SERVER.validate_cert} /> <Switch bind:state={LDAP_SERVER.validate_cert} />

View File

@ -143,7 +143,7 @@
if (config?.comfyui?.COMFYUI_WORKFLOW) { if (config?.comfyui?.COMFYUI_WORKFLOW) {
if (!validateJSON(config.comfyui.COMFYUI_WORKFLOW)) { if (!validateJSON(config.comfyui.COMFYUI_WORKFLOW)) {
toast.error('Invalid JSON format for ComfyUI Workflow.'); toast.error($i18n.t('Invalid JSON format for ComfyUI Workflow.'));
loading = false; loading = false;
return; return;
} }
@ -566,10 +566,10 @@
</div> </div>
</div> </div>
<div class=""> <div class="">
<Tooltip content="Input Key (e.g. text, unet_name, steps)"> <Tooltip content={$i18n.t('Input Key (e.g. text, unet_name, steps)')}>
<input <input
class="py-1 px-3 w-24 text-xs text-center bg-transparent outline-hidden border-r border-gray-50 dark:border-gray-850" class="py-1 px-3 w-24 text-xs text-center bg-transparent outline-hidden border-r border-gray-50 dark:border-gray-850"
placeholder="Key" placeholder={$i18n.t('Key')}
bind:value={node.key} bind:value={node.key}
required required
/> />
@ -578,12 +578,12 @@
<div class="w-full"> <div class="w-full">
<Tooltip <Tooltip
content="Comma separated Node Ids (e.g. 1 or 1,2)" content={$i18n.t('Comma separated Node Ids (e.g. 1 or 1,2)')}
placement="top-start" placement="top-start"
> >
<input <input
class="w-full py-1 px-4 text-xs bg-transparent outline-hidden" class="w-full py-1 px-4 text-xs bg-transparent outline-hidden"
placeholder="Node Ids" placeholder={$i18n.t('Node Ids')}
bind:value={node.node_ids} bind:value={node.node_ids}
/> />
</Tooltip> </Tooltip>
@ -650,7 +650,7 @@
list="model-list" list="model-list"
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden" class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden"
bind:value={imageGenerationConfig.MODEL} bind:value={imageGenerationConfig.MODEL}
placeholder="Select a model" placeholder={$i18n.t('Select a model')}
required required
/> />

View File

@ -437,7 +437,7 @@
...$MODEL_DOWNLOAD_POOL ...$MODEL_DOWNLOAD_POOL
}); });
await deleteModel(localStorage.token, model); await deleteModel(localStorage.token, model);
toast.success(`${model} download has been canceled`); toast.success($i18n.t("{{model}} download has been canceled", { model: model }));
} }
}; };

View File

@ -152,7 +152,7 @@
const res = await uploadPipeline(localStorage.token, file, selectedPipelinesUrlIdx).catch( const res = await uploadPipeline(localStorage.token, file, selectedPipelinesUrlIdx).catch(
(error) => { (error) => {
console.error(error); console.error(error);
toast.error('Something went wrong :/'); toast.error($i18n.t('Something went wrong :/'));
return null; return null;
} }
); );
@ -514,7 +514,9 @@
{:else if (valves_spec.properties[property]?.type ?? null) === 'boolean'} {:else if (valves_spec.properties[property]?.type ?? null) === 'boolean'}
<div class="flex justify-between items-center"> <div class="flex justify-between items-center">
<div class="text-xs text-gray-500"> <div class="text-xs text-gray-500">
{valves[property] ? 'Enabled' : 'Disabled'} {valves[property]
? $i18n.t('Enabled')
: $i18n.t('Disabled')}
</div> </div>
<div class=" pr-2"> <div class=" pr-2">
@ -540,12 +542,12 @@
<Spinner className="size-5" /> <Spinner className="size-5" />
{/if} {/if}
{:else} {:else}
<div>No valves</div> <div>{$i18n.t('No valves')}</div>
{/if} {/if}
</div> </div>
</div> </div>
{:else if pipelines.length === 0} {:else if pipelines.length === 0}
<div>Pipelines Not Detected</div> <div>{$i18n.t('Pipelines Not Detected')}</div>
{/if} {/if}
{:else} {:else}
<div class="flex justify-center"> <div class="flex justify-center">

View File

@ -475,11 +475,11 @@
/> />
<datalist id="perplexity-model-list"> <datalist id="perplexity-model-list">
<option value="sonar">Sonar</option> <option value="sonar">{$i18n.t('Sonar')}</option>
<option value="sonar-pro">Sonar Pro</option> <option value="sonar-pro">{$i18n.t('Sonar Pro')}</option>
<option value="sonar-reasoning">Sonar Reasoning</option> <option value="sonar-reasoning">{$i18n.t('Sonar Reasoning')}</option>
<option value="sonar-reasoning-pro">Sonar Reasoning Pro</option> <option value="sonar-reasoning-pro">{$i18n.t('Sonar Reasoning Pro')}</option>
<option value="sonar-deep-research">Sonar Deep Research</option> <option value="sonar-deep-research">{$i18n.t('Sonar Deep Research')}</option>
</datalist> </datalist>
</div> </div>
</div> </div>
@ -493,9 +493,9 @@
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden" class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden"
bind:value={webConfig.PERPLEXITY_SEARCH_CONTEXT_USAGE} bind:value={webConfig.PERPLEXITY_SEARCH_CONTEXT_USAGE}
> >
<option value="low">Low</option> <option value="low">{$i18n.t('Low')}</option>
<option value="medium">Medium</option> <option value="medium">{$i18n.t('Medium')}</option>
<option value="high">High</option> <option value="high">{$i18n.t('High')}</option>
</select> </select>
</div> </div>
</div> </div>

View File

@ -158,7 +158,7 @@
<select <select
class="w-full bg-transparent outline-hidden py-0.5 text-sm" class="w-full bg-transparent outline-hidden py-0.5 text-sm"
bind:value={permissions.model.default_id} bind:value={permissions.model.default_id}
placeholder="Select a model" placeholder={$i18n.t('Select a model')}
> >
<option value="" disabled selected>{$i18n.t('Select a model')}</option> <option value="" disabled selected>{$i18n.t('Select a model')}</option>
{#each permissions.model.filter ? $models.filter( (model) => filterModelIds.includes(model.id) ) : $models.filter((model) => model.id) as model} {#each permissions.model.filter ? $models.filter( (model) => filterModelIds.includes(model.id) ) : $models.filter((model) => model.id) as model}

View File

@ -104,7 +104,7 @@
} }
} }
toast.success(`Successfully imported ${userCount} users.`); toast.success($i18n.t("Successfully imported {{userCount}} users.", { userCount: userCount }));
inputFiles = null; inputFiles = null;
const uploadInputElement = document.getElementById('upload-user-csv-input'); const uploadInputElement = document.getElementById('upload-user-csv-input');

View File

@ -118,7 +118,7 @@
<input <input
type="text" type="text"
class="w-full text-sm bg-transparent outline-hidden" class="w-full text-sm bg-transparent outline-hidden"
placeholder="Search all emojis" placeholder={$i18n.t('Search all emojis')}
bind:value={search} bind:value={search}
/> />
</div> </div>

View File

@ -68,7 +68,7 @@
const actionHandler = async (actionId) => { const actionHandler = async (actionId) => {
if (!model) { if (!model) {
toast.error('Model not selected'); toast.error($i18n.t('Model not selected'));
return; return;
} }
@ -79,7 +79,7 @@
let selectedAction = actions.find((action) => action.id === actionId); let selectedAction = actions.find((action) => action.id === actionId);
if (!selectedAction) { if (!selectedAction) {
toast.error('Action not found'); toast.error($i18n.t('Action not found'));
return; return;
} }
@ -195,7 +195,7 @@
} }
} }
} else { } else {
toast.error('An error occurred while fetching the explanation'); toast.error($i18n.t('An error occurred while fetching the explanation'));
} }
}; };

View File

@ -150,7 +150,7 @@
<select <select
class=" w-full rounded-sm text-xs py-2 px-1 bg-transparent outline-hidden" class=" w-full rounded-sm text-xs py-2 px-1 bg-transparent outline-hidden"
bind:value={tab} bind:value={tab}
placeholder="Select" placeholder={$i18n.t('Select')}
> >
<option value="tools" class="bg-gray-100 dark:bg-gray-800">{$i18n.t('Tools')}</option> <option value="tools" class="bg-gray-100 dark:bg-gray-800">{$i18n.t('Tools')}</option>
<option value="functions" class="bg-gray-100 dark:bg-gray-800" <option value="functions" class="bg-gray-100 dark:bg-gray-800"

View File

@ -131,7 +131,7 @@
<input <input
type="text" type="text"
class="flex-1 py-1 text-sm dark:text-gray-300 bg-transparent outline-hidden" class="flex-1 py-1 text-sm dark:text-gray-300 bg-transparent outline-hidden"
placeholder="Enter value (true/false)" placeholder={$i18n.t("Enter value (true/false)")}
bind:value={variableValues[variable]} bind:value={variableValues[variable]}
autocomplete="off" autocomplete="off"
required required
@ -156,7 +156,7 @@
<input <input
type="text" type="text"
class="flex-1 py-2 text-sm dark:text-gray-300 bg-transparent outline-hidden" class="flex-1 py-2 text-sm dark:text-gray-300 bg-transparent outline-hidden"
placeholder="Enter hex color (e.g. #FF0000)" placeholder={$i18n.t("Enter hex color (e.g. #FF0000)")}
bind:value={variableValues[variable]} bind:value={variableValues[variable]}
autocomplete="off" autocomplete="off"
required required
@ -232,7 +232,7 @@
<input <input
type="text" type="text"
class=" py-1 text-sm dark:text-gray-300 bg-transparent outline-hidden text-right" class=" py-1 text-sm dark:text-gray-300 bg-transparent outline-hidden text-right"
placeholder="Enter value" placeholder={$i18n.t('Enter value')}
bind:value={variableValues[variable]} bind:value={variableValues[variable]}
autocomplete="off" autocomplete="off"
required required
@ -308,7 +308,7 @@
<input <input
type="text" type="text"
class=" w-full py-1 text-left text-sm dark:text-gray-300 bg-transparent outline-hidden" class=" w-full py-1 text-left text-sm dark:text-gray-300 bg-transparent outline-hidden"
placeholder="Enter coordinates (e.g. 51.505, -0.09)" placeholder={$i18n.t("Enter coordinates (e.g. 51.505, -0.09)")}
bind:value={variableValues[variable]} bind:value={variableValues[variable]}
autocomplete="off" autocomplete="off"
required required

View File

@ -41,7 +41,7 @@
export let id = ''; export let id = '';
export let value = ''; export let value = '';
export let placeholder = 'Select a model'; export let placeholder = $i18n.t('Select a model');
export let searchEnabled = true; export let searchEnabled = true;
export let searchPlaceholder = $i18n.t('Search a model'); export let searchPlaceholder = $i18n.t('Search a model');
@ -314,7 +314,7 @@
...$MODEL_DOWNLOAD_POOL ...$MODEL_DOWNLOAD_POOL
}); });
await deleteModel(localStorage.token, model); await deleteModel(localStorage.token, model);
toast.success(`${model} download has been canceled`); toast.success(i18n.t("{{model}} download has been canceled", { model: model }));
} }
}; };

View File

@ -29,7 +29,7 @@
newPasswordConfirm = ''; newPasswordConfirm = '';
} else { } else {
toast.error( toast.error(
`The passwords you entered don't quite match. Please double-check and try again.` $i18n.t('The passwords you entered don\'t quite match. Please double-check and try again.')
); );
newPassword = ''; newPassword = '';
newPasswordConfirm = ''; newPasswordConfirm = '';

View File

@ -187,7 +187,7 @@
<select <select
class="dark:bg-gray-900 w-fit pr-8 rounded-sm px-2 p-1 text-xs bg-transparent outline-hidden text-right" class="dark:bg-gray-900 w-fit pr-8 rounded-sm px-2 p-1 text-xs bg-transparent outline-hidden text-right"
bind:value={STTEngine} bind:value={STTEngine}
placeholder="Select an engine" placeholder={$i18n.t('Select an engine')}
> >
<option value="">{$i18n.t('Default')}</option> <option value="">{$i18n.t('Default')}</option>
<option value="web">{$i18n.t('Web API')}</option> <option value="web">{$i18n.t('Web API')}</option>
@ -246,7 +246,7 @@
<select <select
class="dark:bg-gray-900 w-fit pr-8 rounded-sm px-2 p-1 text-xs bg-transparent outline-hidden text-right" class="dark:bg-gray-900 w-fit pr-8 rounded-sm px-2 p-1 text-xs bg-transparent outline-hidden text-right"
bind:value={TTSEngine} bind:value={TTSEngine}
placeholder="Select an engine" placeholder={$i18n.t('Select an engine')}
> >
<option value="">{$i18n.t('Default')}</option> <option value="">{$i18n.t('Default')}</option>
<option value="browser-kokoro">{$i18n.t('Kokoro.js (Browser)')}</option> <option value="browser-kokoro">{$i18n.t('Kokoro.js (Browser)')}</option>
@ -261,7 +261,7 @@
<select <select
class="dark:bg-gray-900 w-fit pr-8 rounded-sm px-2 p-1 text-xs bg-transparent outline-hidden text-right" class="dark:bg-gray-900 w-fit pr-8 rounded-sm px-2 p-1 text-xs bg-transparent outline-hidden text-right"
bind:value={TTSEngineConfig.dtype} bind:value={TTSEngineConfig.dtype}
placeholder="Select dtype" placeholder={$i18n.t('Select dtype')}
> >
<option value="" disabled selected>Select dtype</option> <option value="" disabled selected>Select dtype</option>
<option value="fp32">fp32</option> <option value="fp32">fp32</option>
@ -319,7 +319,7 @@
list="voice-list" list="voice-list"
class="w-full text-sm bg-transparent dark:text-gray-300 outline-hidden" class="w-full text-sm bg-transparent dark:text-gray-300 outline-hidden"
bind:value={voice} bind:value={voice}
placeholder="Select a voice" placeholder={$i18n.t('Select a voice')}
/> />
<datalist id="voice-list"> <datalist id="voice-list">
@ -387,7 +387,7 @@
list="voice-list" list="voice-list"
class="w-full text-sm bg-transparent dark:text-gray-300 outline-hidden" class="w-full text-sm bg-transparent dark:text-gray-300 outline-hidden"
bind:value={voice} bind:value={voice}
placeholder="Select a voice" placeholder={$i18n.t('Select a voice')}
/> />
<datalist id="voice-list"> <datalist id="voice-list">

View File

@ -203,7 +203,7 @@
? '' ? ''
: 'outline-hidden'}" : 'outline-hidden'}"
bind:value={selectedTheme} bind:value={selectedTheme}
placeholder="Select a theme" placeholder={$i18n.t('Select a theme')}
on:change={() => themeChangeHandler(selectedTheme)} on:change={() => themeChangeHandler(selectedTheme)}
> >
<option value="system">⚙️ {$i18n.t('System')}</option> <option value="system">⚙️ {$i18n.t('System')}</option>
@ -225,7 +225,7 @@
? '' ? ''
: 'outline-hidden'}" : 'outline-hidden'}"
bind:value={lang} bind:value={lang}
placeholder="Select a language" placeholder={$i18n.t('Select a language')}
on:change={(e) => { on:change={(e) => {
changeLanguage(lang); changeLanguage(lang);
}} }}

View File

@ -1141,7 +1141,7 @@
aria-labelledby="image-comp-width" aria-labelledby="image-comp-width"
class="w-20 bg-transparent outline-hidden text-center" class="w-20 bg-transparent outline-hidden text-center"
min="0" min="0"
placeholder="Width" placeholder={$i18n.t('Width')}
/>x />x
<label class="sr-only" for="image-comp-height" <label class="sr-only" for="image-comp-height"
>{$i18n.t('Image Max Compression Size height')}</label >{$i18n.t('Image Max Compression Size height')}</label
@ -1152,7 +1152,7 @@
aria-labelledby="image-comp-height" aria-labelledby="image-comp-height"
class="w-20 bg-transparent outline-hidden text-center" class="w-20 bg-transparent outline-hidden text-center"
min="0" min="0"
placeholder="Height" placeholder={$i18n.t('Height')}
/> />
</div> </div>
</div> </div>

View File

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

View File

@ -113,7 +113,7 @@
<input <input
type="text" type="text"
class="flex-1 rounded-lg py-2 text-sm dark:text-gray-300 dark:bg-gray-850 outline-hidden border border-gray-100 dark:border-gray-850" class="flex-1 rounded-lg py-2 text-sm dark:text-gray-300 dark:bg-gray-850 outline-hidden border border-gray-100 dark:border-gray-850"
placeholder="Enter hex color (e.g. #FF0000)" placeholder={$i18n.t("Enter hex color (e.g. #FF0000)")}
bind:value={valves[property]} bind:value={valves[property]}
autocomplete="off" autocomplete="off"
disabled disabled
@ -139,7 +139,7 @@
<input <input
type="text" type="text"
class=" w-full rounded-lg py-1 text-left text-sm dark:text-gray-300 dark:bg-gray-850 outline-hidden border border-gray-100 dark:border-gray-850" class=" w-full rounded-lg py-1 text-left text-sm dark:text-gray-300 dark:bg-gray-850 outline-hidden border border-gray-100 dark:border-gray-850"
placeholder="Enter coordinates (e.g. 51.505, -0.09)" placeholder={$i18n.t("Enter hex color (e.g. #FF0000)")}
bind:value={valves[property]} bind:value={valves[property]}
autocomplete="off" autocomplete="off"
on:change={() => { on:change={() => {

View File

@ -34,7 +34,7 @@
}); });
if (res) { if (res) {
toast.success('Channel updated successfully'); toast.success($i18n.t('Channel updated successfully'));
} }
onUpdate(); onUpdate();

View File

@ -58,7 +58,7 @@
}); });
if (res) { if (res) {
toast.success('Channel deleted successfully'); toast.success($i18n.t('Channel deleted successfully'));
onUpdate(); onUpdate();
if ($page.url.pathname === `/channels/${channel.id}`) { if ($page.url.pathname === `/channels/${channel.id}`) {

View File

@ -230,7 +230,7 @@
// Function to update the UI with the progress // Function to update the UI with the progress
const updateProgress = () => { const updateProgress = () => {
const percentage = (uploadedFiles / totalFiles) * 100; const percentage = (uploadedFiles / totalFiles) * 100;
toast.info(`Upload Progress: ${uploadedFiles}/${totalFiles} (${percentage.toFixed(2)}%)`); toast.info($i18n.t("Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", { uploadedFiles: uploadedFiles, totalFiles: totalFiles, percentage: percentage.toFixed(2) }));
}; };
// Recursive function to count all files excluding hidden ones // Recursive function to count all files excluding hidden ones
@ -314,7 +314,8 @@
const updateProgress = () => { const updateProgress = () => {
const percentage = (uploadedFiles / totalFiles) * 100; const percentage = (uploadedFiles / totalFiles) * 100;
toast.info( toast.info(
`Upload Progress: ${uploadedFiles}/${totalFiles} (${percentage.toFixed(2)}%)` $i18n.t("Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)",
{ uploadedFiles: uploadedFiles, totalFiles: totalFiles, percentage: percentage.toFixed(2) })
); );
}; };
@ -354,9 +355,9 @@
// Error handler // Error handler
const handleUploadError = (error) => { const handleUploadError = (error) => {
if (error.name === 'AbortError') { if (error.name === 'AbortError') {
toast.info('Directory selection was cancelled'); toast.info($i18n.t('Directory selection was cancelled'));
} else { } else {
toast.error('Error accessing directory'); toast.error($i18n.t('Error accessing directory'));
console.error('Directory access error:', error); console.error('Directory access error:', error);
} }
}; };
@ -692,7 +693,7 @@
type="text" type="text"
class="text-left w-full font-semibold text-2xl font-primary bg-transparent outline-hidden" class="text-left w-full font-semibold text-2xl font-primary bg-transparent outline-hidden"
bind:value={knowledge.name} bind:value={knowledge.name}
placeholder="Knowledge Name" placeholder={$i18n.t('Knowledge Name')}
on:input={() => { on:input={() => {
changeDebounceHandler(); changeDebounceHandler();
}} }}
@ -721,7 +722,7 @@
type="text" type="text"
class="text-left text-xs w-full text-gray-500 bg-transparent outline-hidden" class="text-left text-xs w-full text-gray-500 bg-transparent outline-hidden"
bind:value={knowledge.description} bind:value={knowledge.description}
placeholder="Knowledge Description" placeholder={$i18n.t('Knowledge Description')}
on:input={() => { on:input={() => {
changeDebounceHandler(); changeDebounceHandler();
}} }}

View File

@ -489,7 +489,7 @@
<div> <div>
<select <select
class="text-sm w-full bg-transparent outline-hidden" class="text-sm w-full bg-transparent outline-hidden"
placeholder="Select a base model (e.g. llama3, gpt-4o)" placeholder={$i18n.t('Select a base model (e.g. llama3, gpt-4o)')}
bind:value={info.base_model_id} bind:value={info.base_model_id}
on:change={(e) => { on:change={(e) => {
addUsage(e.target.value); addUsage(e.target.value);

View File

@ -54,7 +54,7 @@
} }
if (res) { if (res) {
toast.success('Valves updated successfully'); toast.success($i18n.t('Valves updated successfully'));
dispatch('save'); dispatch('save');
} }
} }

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "دردشات {{user}}", "{{user}}'s Chats": "دردشات {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} مطلوب", "{{webUIName}} Backend Required": "{{webUIName}} مطلوب",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "", "Account Activation Pending": "",
"Accurate information": "معلومات دقيقة", "Accurate information": "معلومات دقيقة",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "", "Actions": "",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "", "Amazing": "",
"an assistant": "مساعد", "an assistant": "مساعد",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "مفاتيح واجهة برمجة التطبيقات", "API keys": "مفاتيح واجهة برمجة التطبيقات",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "لافتات", "Banners": "لافتات",
"Base Model (From)": "النموذج الأساسي (من)", "Base Model (From)": "النموذج الأساسي (من)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "قبل", "before": "قبل",
"Being lazy": "كون كسول", "Being lazy": "كون كسول",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "تغير الباسورد", "Change Password": "تغير الباسورد",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI الرابط مطلوب", "ComfyUI Base URL is required.": "ComfyUI الرابط مطلوب",
"ComfyUI Workflow": "", "ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "", "ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "الأوامر", "Command": "الأوامر",
"Comment": "", "Comment": "",
"Completions": "", "Completions": "",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "الطلبات المتزامنة", "Concurrent Requests": "الطلبات المتزامنة",
"Config imported successfully": "",
"Configure": "", "Configure": "",
"Confirm": "", "Confirm": "",
"Confirm Password": "تأكيد كلمة المرور", "Confirm Password": "تأكيد كلمة المرور",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "ديسمبر", "December": "ديسمبر",
"Deepgram": "",
"Default": "الإفتراضي", "Default": "الإفتراضي",
"Default (Open AI)": "", "Default (Open AI)": "",
"Default (SentenceTransformers)": "(SentenceTransformers) الإفتراضي", "Default (SentenceTransformers)": "(SentenceTransformers) الإفتراضي",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "", "Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "أدخل عنوان URL ل Github Raw", "Enter Github Raw URL": "أدخل عنوان URL ل Github Raw",
"Enter Google PSE API Key": "أدخل مفتاح واجهة برمجة تطبيقات PSE من Google", "Enter Google PSE API Key": "أدخل مفتاح واجهة برمجة تطبيقات PSE من Google",
"Enter Google PSE Engine Id": "أدخل معرف محرك PSE من Google", "Enter Google PSE Engine Id": "أدخل معرف محرك PSE من Google",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "(e.g. 512x512) أدخل حجم الصورة ", "Enter Image Size (e.g. 512x512)": "(e.g. 512x512) أدخل حجم الصورة ",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "الرابط (e.g. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "الرابط (e.g. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "URL (e.g. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "URL (e.g. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "خطأ", "Error": "خطأ",
"ERROR": "", "ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "", "Evaluations": "",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": " {{name}} مرحبا", "Hello, {{name}}": " {{name}} مرحبا",
"Help": "مساعدة", "Help": "مساعدة",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "أخفاء", "Hide": "أخفاء",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "إدخال الأوامر", "Input commands": "إدخال الأوامر",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "", "Invalid file format.": "",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "تاق غير صالحة", "Invalid Tag": "تاق غير صالحة",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "اختصارات لوحة المفاتيح", "Keyboard shortcuts": "اختصارات لوحة المفاتيح",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "", "Knowledge created successfully.": "",
"Knowledge deleted successfully.": "", "Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "", "Knowledge reset successfully.": "",
"Knowledge updated successfully": "", "Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "", "Lost": "",
"Low": "",
"LTR": "من جهة اليسار إلى اليمين", "LTR": "من جهة اليسار إلى اليمين",
"Made by Open WebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ", "Made by Open WebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"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": "مايو",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.", "Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.",
"Memory": "الذاكرة", "Memory": "الذاكرة",
"Memory added successfully": "", "Memory added successfully": "",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "", "Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "لم تختار موديل", "Model not selected": "لم تختار موديل",
"Model Params": "معلمات النموذج", "Model Params": "معلمات النموذج",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "الأسم", "Name": "الأسم",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "لم يتم إنشاء استعلام بحث", "No search query generated": "لم يتم إنشاء استعلام بحث",
"No source available": "لا يوجد مصدر متاح", "No source available": "لا يوجد مصدر متاح",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "", "No valves to update": "",
"Node Ids": "",
"None": "اي", "None": "اي",
"Not factually correct": "ليس صحيحا من حيث الواقع", "Not factually correct": "ليس صحيحا من حيث الواقع",
"Not helpful": "", "Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "البحث", "Search": "البحث",
"Search a model": "البحث عن موديل", "Search a model": "البحث عن موديل",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "البحث في الدردشات", "Search Chats": "البحث في الدردشات",
"Search Collection": "", "Search Collection": "",
@ -1187,18 +1220,32 @@
"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": "",
"Select a base model": "حدد نموذجا أساسيا", "Select a base model": "حدد نموذجا أساسيا",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "", "Select a engine": "",
"Select a function": "", "Select a function": "",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "أختار الموديل", "Select a model": "أختار الموديل",
"Select a model (optional)": "",
"Select a pipeline": "حدد مسارا", "Select a pipeline": "حدد مسارا",
"Select a pipeline url": "حدد عنوان URL لخط الأنابيب", "Select a pipeline url": "حدد عنوان URL لخط الأنابيب",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "", "Select a tool": "",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "", "Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "", "Select Knowledge": "",
"Select only one model to call": "", "Select only one model to call": "",
"Selected model(s) do not support image inputs": "النموذج (النماذج) المحددة لا تدعم مدخلات الصور", "Selected model(s) do not support image inputs": "النموذج (النماذج) المحددة لا تدعم مدخلات الصور",
@ -1215,6 +1262,7 @@
"Serply API Key": "", "Serply API Key": "",
"Serpstack API Key": "مفتاح واجهة برمجة تطبيقات Serpstack", "Serpstack API Key": "مفتاح واجهة برمجة تطبيقات Serpstack",
"Server connection verified": "تم التحقق من اتصال الخادم", "Server connection verified": "تم التحقق من اتصال الخادم",
"Session": "",
"Set as default": "الافتراضي", "Set as default": "الافتراضي",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "تفعيد الموديل الافتراضي", "Set Default Model": "تفعيد الموديل الافتراضي",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "المصدر", "Source": "المصدر",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"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 imported {{userCount}} users.": "",
"Successfully updated.": "تم التحديث بنجاح", "Successfully updated.": "تم التحديث بنجاح",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "مقترحات", "Suggested": "مقترحات",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "يجب أن تكون النتيجة قيمة تتراوح بين 0.0 (0%) و1.0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "يجب أن تكون النتيجة قيمة تتراوح بين 0.0 (0%) و1.0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "تحميل الملفات", "Upload Files": "تحميل الملفات",
"Upload Pipeline": "", "Upload Pipeline": "",
"Upload Progress": "جاري التحميل", "Upload Progress": "جاري التحميل",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "رابط الموديل", "URL Mode": "رابط الموديل",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "", "Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "وحدات زمنية صالحة:", "Valid time units:": "وحدات زمنية صالحة:",
"Validate certificate": "",
"Valves": "", "Valves": "",
"Valves updated": "", "Valves updated": "",
"Valves updated successfully": "", "Valves updated successfully": "",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "", "Whisper (Local)": "",
"Why?": "", "Why?": "",
"Widescreen Mode": "", "Widescreen Mode": "",
"Width": "",
"Won": "", "Won": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "مساحة العمل", "Workspace": "مساحة العمل",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} سطر/أسطر مخفية", "{{COUNT}} hidden lines": "{{COUNT}} سطر/أسطر مخفية",
"{{COUNT}} Replies": "{{COUNT}} رد/ردود", "{{COUNT}} Replies": "{{COUNT}} رد/ردود",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "محادثات المستخدم {{user}}", "{{user}}'s Chats": "محادثات المستخدم {{user}}",
"{{webUIName}} Backend Required": "يتطلب الخلفية الخاصة بـ {{webUIName}}", "{{webUIName}} Backend Required": "يتطلب الخلفية الخاصة بـ {{webUIName}}",
"*Prompt node ID(s) are required for image generation": "*معرّف/معرّفات عقدة الموجه مطلوبة لتوليد الصور", "*Prompt node ID(s) are required for image generation": "*معرّف/معرّفات عقدة الموجه مطلوبة لتوليد الصور",
@ -29,6 +30,7 @@
"Account Activation Pending": "انتظار تفعيل الحساب", "Account Activation Pending": "انتظار تفعيل الحساب",
"Accurate information": "معلومات دقيقة", "Accurate information": "معلومات دقيقة",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "الإجراءات", "Actions": "الإجراءات",
"Activate": "تفعيل", "Activate": "تفعيل",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "قم بتفعيل هذا الأمر بكتابة \"/{{COMMAND}}\" في مدخل المحادثة.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "قم بتفعيل هذا الأمر بكتابة \"/{{COMMAND}}\" في مدخل المحادثة.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "رائع", "Amazing": "رائع",
"an assistant": "مساعد", "an assistant": "مساعد",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "تم التحليل", "Analyzed": "تم التحليل",
"Analyzing...": "جارٍ التحليل...", "Analyzing...": "جارٍ التحليل...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "قيود نقاط نهاية مفتاح API", "API Key Endpoint Restrictions": "قيود نقاط نهاية مفتاح API",
"API keys": "مفاتيح واجهة برمجة التطبيقات (API)", "API keys": "مفاتيح واجهة برمجة التطبيقات (API)",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "DN التطبيق", "Application DN": "DN التطبيق",
"Application DN Password": "كلمة مرور DN التطبيق", "Application DN Password": "كلمة مرور DN التطبيق",
"applies to all users with the \"user\" role": "ينطبق على جميع المستخدمين الذين لديهم دور \"مستخدم\"", "applies to all users with the \"user\" role": "ينطبق على جميع المستخدمين الذين لديهم دور \"مستخدم\"",
@ -160,6 +164,7 @@
"Banners": "لافتات", "Banners": "لافتات",
"Base Model (From)": "النموذج الأساسي (من)", "Base Model (From)": "النموذج الأساسي (من)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "قبل", "before": "قبل",
"Being lazy": "كونك كسولاً", "Being lazy": "كونك كسولاً",
"Beta": "بيتا", "Beta": "بيتا",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "مسار الشهادة", "Certificate Path": "مسار الشهادة",
"Change Password": "تغيير كلمة المرور", "Change Password": "تغيير كلمة المرور",
"Channel deleted successfully": "",
"Channel Name": "اسم القناة", "Channel Name": "اسم القناة",
"Channel updated successfully": "",
"Channels": "القنوات", "Channels": "القنوات",
"Character": "الشخصية", "Character": "الشخصية",
"Character limit for autocomplete generation input": "حد الأحرف لمدخل توليد الإكمال التلقائي", "Character limit for autocomplete generation input": "حد الأحرف لمدخل توليد الإكمال التلقائي",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "تنفيذ الشيفرة", "Code execution": "تنفيذ الشيفرة",
"Code Execution": "تنفيذ الشيفرة", "Code Execution": "تنفيذ الشيفرة",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "عنوان الأساس لـ ComfyUI مطلوب.", "ComfyUI Base URL is required.": "عنوان الأساس لـ ComfyUI مطلوب.",
"ComfyUI Workflow": "سير عمل ComfyUI", "ComfyUI Workflow": "سير عمل ComfyUI",
"ComfyUI Workflow Nodes": "عقد سير عمل ComfyUI", "ComfyUI Workflow Nodes": "عقد سير عمل ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "الأمر", "Command": "الأمر",
"Comment": "", "Comment": "",
"Completions": "الإكمالات", "Completions": "الإكمالات",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "الطلبات المتزامنة", "Concurrent Requests": "الطلبات المتزامنة",
"Config imported successfully": "",
"Configure": "تكوين", "Configure": "تكوين",
"Confirm": "تأكيد", "Confirm": "تأكيد",
"Confirm Password": "تأكيد كلمة المرور", "Confirm Password": "تأكيد كلمة المرور",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "ديسمبر", "December": "ديسمبر",
"Deepgram": "",
"Default": "افتراضي", "Default": "افتراضي",
"Default (Open AI)": "افتراضي (Open AI)", "Default (Open AI)": "افتراضي (Open AI)",
"Default (SentenceTransformers)": "افتراضي (SentenceTransformers)", "Default (SentenceTransformers)": "افتراضي (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "الاتصالات المباشرة", "Direct Connections": "الاتصالات المباشرة",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "تتيح الاتصالات المباشرة للمستخدمين الاتصال بنقاط نهاية API متوافقة مع OpenAI الخاصة بهم.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "تتيح الاتصالات المباشرة للمستخدمين الاتصال بنقاط نهاية API متوافقة مع OpenAI الخاصة بهم.",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "أدخل أزواج \"الرمز:قيمة التحيز\" مفصولة بفواصل (مثال: 5432:100، 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "أدخل أزواج \"الرمز:قيمة التحيز\" مفصولة بفواصل (مثال: 5432:100، 413:-100)",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "أدخل الوصف", "Enter description": "أدخل الوصف",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "أدخل عنوان URL ل Github Raw", "Enter Github Raw URL": "أدخل عنوان URL ل Github Raw",
"Enter Google PSE API Key": "أدخل مفتاح واجهة برمجة تطبيقات PSE من Google", "Enter Google PSE API Key": "أدخل مفتاح واجهة برمجة تطبيقات PSE من Google",
"Enter Google PSE Engine Id": "أدخل معرف محرك PSE من Google", "Enter Google PSE Engine Id": "أدخل معرف محرك PSE من Google",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "(e.g. 512x512) أدخل حجم الصورة ", "Enter Image Size (e.g. 512x512)": "(e.g. 512x512) أدخل حجم الصورة ",
"Enter Jina API Key": "أدخل مفتاح API لـ Jina", "Enter Jina API Key": "أدخل مفتاح API لـ Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "الرابط (e.g. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "الرابط (e.g. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "URL (e.g. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "URL (e.g. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "أدخل رابط Webhook الخاص بك", "Enter your webhook URL": "أدخل رابط Webhook الخاص بك",
"Error": "خطأ", "Error": "خطأ",
"ERROR": "خطأ", "ERROR": "خطأ",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "حدث خطأ أثناء الوصول إلى Google Drive: {{error}}", "Error accessing Google Drive: {{error}}": "حدث خطأ أثناء الوصول إلى Google Drive: {{error}}",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "حدث خطأ أثناء تحميل الملف: {{error}}", "Error uploading file: {{error}}": "حدث خطأ أثناء تحميل الملف: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "التقييمات", "Evaluations": "التقييمات",
"Everyone": "", "Everyone": "",
"Exa API Key": "مفتاح API لـ Exa", "Exa API Key": "مفتاح API لـ Exa",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "الاهتزاز اللمسي", "Haptic Feedback": "الاهتزاز اللمسي",
"Height": "",
"Hello, {{name}}": " {{name}} مرحبا", "Hello, {{name}}": " {{name}} مرحبا",
"Help": "مساعدة", "Help": "مساعدة",
"Help us create the best community leaderboard by sharing your feedback history!": "ساعدنا في إنشاء أفضل قائمة للمتصدرين من خلال مشاركة سجل ملاحظاتك!", "Help us create the best community leaderboard by sharing your feedback history!": "ساعدنا في إنشاء أفضل قائمة للمتصدرين من خلال مشاركة سجل ملاحظاتك!",
@ -733,6 +753,7 @@
"Hide": "أخفاء", "Hide": "أخفاء",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "الصفحة الرئيسية", "Home": "الصفحة الرئيسية",
"Host": "المضيف", "Host": "المضيف",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "إدخال الأوامر", "Input commands": "إدخال الأوامر",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "تنسيق ملف غير صالح.", "Invalid file format.": "تنسيق ملف غير صالح.",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "تاق غير صالحة", "Invalid Tag": "تاق غير صالحة",
"is typing...": "يكتب...", "is typing...": "يكتب...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "المفتاح", "Key": "المفتاح",
"Key is required": "",
"Keyboard shortcuts": "اختصارات لوحة المفاتيح", "Keyboard shortcuts": "اختصارات لوحة المفاتيح",
"Knowledge": "المعرفة", "Knowledge": "المعرفة",
"Knowledge Access": "الوصول إلى المعرفة", "Knowledge Access": "الوصول إلى المعرفة",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "تم إنشاء المعرفة بنجاح.", "Knowledge created successfully.": "تم إنشاء المعرفة بنجاح.",
"Knowledge deleted successfully.": "تم حذف المعرفة بنجاح.", "Knowledge deleted successfully.": "تم حذف المعرفة بنجاح.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "تم إعادة تعيين المعرفة بنجاح.", "Knowledge reset successfully.": "تم إعادة تعيين المعرفة بنجاح.",
"Knowledge updated successfully": "تم تحديث المعرفة بنجاح", "Knowledge updated successfully": "تم تحديث المعرفة بنجاح",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "لا يُسمح بالوصول إلى الموقع", "Location access not allowed": "لا يُسمح بالوصول إلى الموقع",
"Lost": "ضائع", "Lost": "ضائع",
"Low": "",
"LTR": "من جهة اليسار إلى اليمين", "LTR": "من جهة اليسار إلى اليمين",
"Made by Open WebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ", "Made by Open WebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "الحد الأقصى لحجم الملف المرفوع", "Max Upload Size": "الحد الأقصى لحجم الملف المرفوع",
"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": "مايو",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.", "Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.",
"Memory": "الذاكرة", "Memory": "الذاكرة",
"Memory added successfully": "تم إضافة الذاكرة بنجاح", "Memory added successfully": "تم إضافة الذاكرة بنجاح",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "معرّفات النماذج", "Model IDs": "معرّفات النماذج",
"Model Name": "اسم النموذج", "Model Name": "اسم النموذج",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "لم تختار موديل", "Model not selected": "لم تختار موديل",
"Model Params": "معلمات النموذج", "Model Params": "معلمات النموذج",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "الأسم", "Name": "الأسم",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "قم بتسمية قاعدة معرفتك", "Name your knowledge base": "قم بتسمية قاعدة معرفتك",
"Native": "أصلي", "Native": "أصلي",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "لم يتم إنشاء استعلام بحث", "No search query generated": "لم يتم إنشاء استعلام بحث",
"No source available": "لا يوجد مصدر متاح", "No source available": "لا يوجد مصدر متاح",
"No users were found.": "لم يتم العثور على مستخدمين.", "No users were found.": "لم يتم العثور على مستخدمين.",
"No valves": "",
"No valves to update": "لا توجد صمامات للتحديث", "No valves to update": "لا توجد صمامات للتحديث",
"Node Ids": "",
"None": "اي", "None": "اي",
"Not factually correct": "ليس صحيحا من حيث الواقع", "Not factually correct": "ليس صحيحا من حيث الواقع",
"Not helpful": "غير مفيد", "Not helpful": "غير مفيد",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "البحث", "Search": "البحث",
"Search a model": "البحث عن موديل", "Search a model": "البحث عن موديل",
"Search all emojis": "",
"Search Base": "قاعدة البحث", "Search Base": "قاعدة البحث",
"Search Chats": "البحث في الدردشات", "Search Chats": "البحث في الدردشات",
"Search Collection": "البحث في المجموعة", "Search Collection": "البحث في المجموعة",
@ -1187,18 +1220,32 @@
"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": "",
"Select a base model": "حدد نموذجا أساسيا", "Select a base model": "حدد نموذجا أساسيا",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "اختر محركًا", "Select a engine": "اختر محركًا",
"Select a function": "اختر وظيفة", "Select a function": "اختر وظيفة",
"Select a group": "اختر مجموعة", "Select a group": "اختر مجموعة",
"Select a language": "",
"Select a mode": "",
"Select a model": "أختار الموديل", "Select a model": "أختار الموديل",
"Select a model (optional)": "",
"Select a pipeline": "حدد مسارا", "Select a pipeline": "حدد مسارا",
"Select a pipeline url": "حدد عنوان URL لخط الأنابيب", "Select a pipeline url": "حدد عنوان URL لخط الأنابيب",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "اختر أداة", "Select a tool": "اختر أداة",
"Select a voice": "",
"Select an auth method": "اختر طريقة التوثيق", "Select an auth method": "اختر طريقة التوثيق",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "اختر نسخة Ollama", "Select an Ollama instance": "اختر نسخة Ollama",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "اختر المحرك", "Select Engine": "اختر المحرك",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "اختر المعرفة", "Select Knowledge": "اختر المعرفة",
"Select only one model to call": "اختر نموذجًا واحدًا فقط للاستدعاء", "Select only one model to call": "اختر نموذجًا واحدًا فقط للاستدعاء",
"Selected model(s) do not support image inputs": "النموذج (النماذج) المحددة لا تدعم مدخلات الصور", "Selected model(s) do not support image inputs": "النموذج (النماذج) المحددة لا تدعم مدخلات الصور",
@ -1215,6 +1262,7 @@
"Serply API Key": "مفتاح API لـ Serply", "Serply API Key": "مفتاح API لـ Serply",
"Serpstack API Key": "مفتاح واجهة برمجة تطبيقات Serpstack", "Serpstack API Key": "مفتاح واجهة برمجة تطبيقات Serpstack",
"Server connection verified": "تم التحقق من اتصال الخادم", "Server connection verified": "تم التحقق من اتصال الخادم",
"Session": "",
"Set as default": "الافتراضي", "Set as default": "الافتراضي",
"Set CFG Scale": "ضبط مقياس CFG", "Set CFG Scale": "ضبط مقياس CFG",
"Set Default Model": "تفعيد الموديل الافتراضي", "Set Default Model": "تفعيد الموديل الافتراضي",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "المصدر", "Source": "المصدر",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"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 imported {{userCount}} users.": "",
"Successfully updated.": "تم التحديث بنجاح", "Successfully updated.": "تم التحديث بنجاح",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "مقترحات", "Suggested": "مقترحات",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "الحد الأقصى لحجم الملف بالميغابايت. إذا تجاوز الملف هذا الحد، فلن يتم رفعه.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "الحد الأقصى لحجم الملف بالميغابايت. إذا تجاوز الملف هذا الحد، فلن يتم رفعه.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "الحد الأقصى لعدد الملفات التي يمكن استخدامها في المحادثة دفعة واحدة. إذا تجاوز العدد هذا الحد، فلن يتم رفع الملفات.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "الحد الأقصى لعدد الملفات التي يمكن استخدامها في المحادثة دفعة واحدة. إذا تجاوز العدد هذا الحد، فلن يتم رفع الملفات.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "يجب أن تكون النتيجة قيمة تتراوح بين 0.0 (0%) و1.0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "يجب أن تكون النتيجة قيمة تتراوح بين 0.0 (0%) و1.0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "درجة حرارة النموذج. زيادتها تجعل الإجابات أكثر إبداعًا.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "درجة حرارة النموذج. زيادتها تجعل الإجابات أكثر إبداعًا.",
@ -1439,7 +1495,9 @@
"Upload Files": "تحميل الملفات", "Upload Files": "تحميل الملفات",
"Upload Pipeline": "رفع خط المعالجة", "Upload Pipeline": "رفع خط المعالجة",
"Upload Progress": "جاري التحميل", "Upload Progress": "جاري التحميل",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "الرابط", "URL": "الرابط",
"URL is required": "",
"URL Mode": "رابط الموديل", "URL Mode": "رابط الموديل",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "استخدم الرمز '#' في خانة التوجيه لتحميل وإدراج المعرفة الخاصة بك.", "Use '#' in the prompt input to load and include your knowledge.": "استخدم الرمز '#' في خانة التوجيه لتحميل وإدراج المعرفة الخاصة بك.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "يتم استخدام نموذج الساحة الافتراضي مع جميع النماذج. اضغط على زر + لإضافة نماذج مخصصة.", "Using the default arena model with all models. Click the plus button to add custom models.": "يتم استخدام نموذج الساحة الافتراضي مع جميع النماذج. اضغط على زر + لإضافة نماذج مخصصة.",
"Valid time units:": "وحدات زمنية صالحة:", "Valid time units:": "وحدات زمنية صالحة:",
"Validate certificate": "",
"Valves": "الصمامات", "Valves": "الصمامات",
"Valves updated": "تم تحديث الصمامات", "Valves updated": "تم تحديث الصمامات",
"Valves updated successfully": "تم تحديث الصمامات بنجاح", "Valves updated successfully": "تم تحديث الصمامات بنجاح",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (محلي)", "Whisper (Local)": "Whisper (محلي)",
"Why?": "لماذا؟", "Why?": "لماذا؟",
"Widescreen Mode": "وضع الشاشة العريضة", "Widescreen Mode": "وضع الشاشة العريضة",
"Width": "",
"Won": "فاز", "Won": "فاز",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "يعمل جنبًا إلى جنب مع top-k. القيمة الأعلى (مثلاً 0.95) تنتج نصًا أكثر تنوعًا، بينما القيمة الأقل (مثلاً 0.5) تنتج نصًا أكثر تركيزًا وتحفظًا.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "يعمل جنبًا إلى جنب مع top-k. القيمة الأعلى (مثلاً 0.95) تنتج نصًا أكثر تنوعًا، بينما القيمة الأقل (مثلاً 0.5) تنتج نصًا أكثر تركيزًا وتحفظًا.",
"Workspace": "مساحة العمل", "Workspace": "مساحة العمل",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} Отговори", "{{COUNT}} Replies": "{{COUNT}} Отговори",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}'s чатове", "{{user}}'s Chats": "{{user}}'s чатове",
"{{webUIName}} Backend Required": "{{webUIName}} Изисква се Бекенд", "{{webUIName}} Backend Required": "{{webUIName}} Изисква се Бекенд",
"*Prompt node ID(s) are required for image generation": "*Идентификатор(ите) на възел-а се изисква(т) за генериране на изображения", "*Prompt node ID(s) are required for image generation": "*Идентификатор(ите) на възел-а се изисква(т) за генериране на изображения",
@ -29,6 +30,7 @@
"Account Activation Pending": "Активирането на акаунта е в процес на изчакване", "Account Activation Pending": "Активирането на акаунта е в процес на изчакване",
"Accurate information": "Точна информация", "Accurate information": "Точна информация",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Действия", "Actions": "Действия",
"Activate": "Активиране", "Activate": "Активиране",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Активирайте тази команда, като въведете \"/{{COMMAND}}\" в полето за чат.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Активирайте тази команда, като въведете \"/{{COMMAND}}\" в полето за чат.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "Невероятно", "Amazing": "Невероятно",
"an assistant": "асистент", "an assistant": "асистент",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Анализирано", "Analyzed": "Анализирано",
"Analyzing...": "Анализиране...", "Analyzing...": "Анализиране...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Ограничения на крайните точки за API Ключ", "API Key Endpoint Restrictions": "Ограничения на крайните точки за API Ключ",
"API keys": "API Ключове", "API keys": "API Ключове",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "DN на приложението", "Application DN": "DN на приложението",
"Application DN Password": "Парола за DN на приложението", "Application DN Password": "Парола за DN на приложението",
"applies to all users with the \"user\" role": "прилага се за всички потребители с роля \"потребител\"", "applies to all users with the \"user\" role": "прилага се за всички потребители с роля \"потребител\"",
@ -160,6 +164,7 @@
"Banners": "Банери", "Banners": "Банери",
"Base Model (From)": "Базов модел (от)", "Base Model (From)": "Базов модел (от)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "преди", "before": "преди",
"Being lazy": "Мързелив е", "Being lazy": "Мързелив е",
"Beta": "Бета", "Beta": "Бета",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "Път до сертификата", "Certificate Path": "Път до сертификата",
"Change Password": "Промяна на Парола", "Change Password": "Промяна на Парола",
"Channel deleted successfully": "",
"Channel Name": "Име на канала", "Channel Name": "Име на канала",
"Channel updated successfully": "",
"Channels": "Канали", "Channels": "Канали",
"Character": "Герой", "Character": "Герой",
"Character limit for autocomplete generation input": "Ограничение на символите за входа на генериране на автоматично довършване", "Character limit for autocomplete generation input": "Ограничение на символите за входа на генериране на автоматично довършване",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Изпълнение на код", "Code execution": "Изпълнение на код",
"Code Execution": "Изпълнение на код", "Code Execution": "Изпълнение на код",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI Базов URL е задължителен.", "ComfyUI Base URL is required.": "ComfyUI Базов URL е задължителен.",
"ComfyUI Workflow": "ComfyUI Работен поток", "ComfyUI Workflow": "ComfyUI Работен поток",
"ComfyUI Workflow Nodes": "Възли на ComfyUI работен поток", "ComfyUI Workflow Nodes": "Възли на ComfyUI работен поток",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Команда", "Command": "Команда",
"Comment": "", "Comment": "",
"Completions": "Довършвания", "Completions": "Довършвания",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Едновременни заявки", "Concurrent Requests": "Едновременни заявки",
"Config imported successfully": "",
"Configure": "Конфигуриране", "Configure": "Конфигуриране",
"Confirm": "Потвърди", "Confirm": "Потвърди",
"Confirm Password": "Потвърди Парола", "Confirm Password": "Потвърди Парола",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Декември", "December": "Декември",
"Deepgram": "",
"Default": "По подразбиране", "Default": "По подразбиране",
"Default (Open AI)": "По подразбиране (Open AI)", "Default (Open AI)": "По подразбиране (Open AI)",
"Default (SentenceTransformers)": "По подразбиране (SentenceTransformers)", "Default (SentenceTransformers)": "По подразбиране (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Директни връзки", "Direct Connections": "Директни връзки",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Директните връзки позволяват на потребителите да се свързват със собствени OpenAI съвместими API крайни точки.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Директните връзки позволяват на потребителите да се свързват със собствени OpenAI съвместими API крайни точки.",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "Въведете описание", "Enter description": "Въведете описание",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Въведете URL адрес на Github Raw", "Enter Github Raw URL": "Въведете URL адрес на Github Raw",
"Enter Google PSE API Key": "Въведете API ключ за Google PSE", "Enter Google PSE API Key": "Въведете API ключ за Google PSE",
"Enter Google PSE Engine Id": "Въведете идентификатор на двигателя на Google PSE", "Enter Google PSE Engine Id": "Въведете идентификатор на двигателя на Google PSE",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Въведете размер на изображението (напр. 512x512)", "Enter Image Size (e.g. 512x512)": "Въведете размер на изображението (напр. 512x512)",
"Enter Jina API Key": "Въведете API ключ за Jina", "Enter Jina API Key": "Въведете API ключ за Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Въведете URL (напр. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Въведете URL (напр. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Въведете URL (напр. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Въведете URL (напр. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Въведете вашия URL адрес на webhook", "Enter your webhook URL": "Въведете вашия URL адрес на webhook",
"Error": "Грешка", "Error": "Грешка",
"ERROR": "ГРЕШКА", "ERROR": "ГРЕШКА",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Грешка при достъп до Google Drive: {{error}}", "Error accessing Google Drive: {{error}}": "Грешка при достъп до Google Drive: {{error}}",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "Грешка при качване на файла: {{error}}", "Error uploading file: {{error}}": "Грешка при качване на файла: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Оценки", "Evaluations": "Оценки",
"Everyone": "", "Everyone": "",
"Exa API Key": "API ключ за Exa", "Exa API Key": "API ключ за Exa",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Тактилна обратна връзка", "Haptic Feedback": "Тактилна обратна връзка",
"Height": "",
"Hello, {{name}}": "Здравей, {{name}}", "Hello, {{name}}": "Здравей, {{name}}",
"Help": "Помощ", "Help": "Помощ",
"Help us create the best community leaderboard by sharing your feedback history!": "Помогнете ни да създадем най-добрата класация на общността, като споделите историята на вашата обратна връзка!", "Help us create the best community leaderboard by sharing your feedback history!": "Помогнете ни да създадем най-добрата класация на общността, като споделите историята на вашата обратна връзка!",
@ -733,6 +753,7 @@
"Hide": "Скрий", "Hide": "Скрий",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "Начало", "Home": "Начало",
"Host": "Хост", "Host": "Хост",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Въведете команди", "Input commands": "Въведете команди",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "Невалиден формат на файла.", "Invalid file format.": "Невалиден формат на файла.",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Невалиден таг", "Invalid Tag": "Невалиден таг",
"is typing...": "пише...", "is typing...": "пише...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "Ключ", "Key": "Ключ",
"Key is required": "",
"Keyboard shortcuts": "Клавиши за бърз достъп", "Keyboard shortcuts": "Клавиши за бърз достъп",
"Knowledge": "Знания", "Knowledge": "Знания",
"Knowledge Access": "Достъп до знания", "Knowledge Access": "Достъп до знания",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Знанието е създадено успешно.", "Knowledge created successfully.": "Знанието е създадено успешно.",
"Knowledge deleted successfully.": "Знанието е изтрито успешно.", "Knowledge deleted successfully.": "Знанието е изтрито успешно.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Знанието е нулирано успешно.", "Knowledge reset successfully.": "Знанието е нулирано успешно.",
"Knowledge updated successfully": "Знанието е актуализирано успешно", "Knowledge updated successfully": "Знанието е актуализирано успешно",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "Изгубено", "Lost": "Изгубено",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Направено от OpenWebUI общността", "Made by Open WebUI Community": "Направено от OpenWebUI общността",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "Максимален размер на качване", "Max Upload Size": "Максимален размер на качване",
"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": "Май",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Мемории достъпни от LLMs ще бъдат показани тук.", "Memories accessible by LLMs will be shown here.": "Мемории достъпни от LLMs ще бъдат показани тук.",
"Memory": "Памет", "Memory": "Памет",
"Memory added successfully": "Паметта е добавена успешно", "Memory added successfully": "Паметта е добавена успешно",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "ИД-та на моделите", "Model IDs": "ИД-та на моделите",
"Model Name": "Име на модел", "Model Name": "Име на модел",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Не е избран модел", "Model not selected": "Не е избран модел",
"Model Params": "Параметри на модела", "Model Params": "Параметри на модела",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Име", "Name": "Име",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Именувайте вашата база от знания", "Name your knowledge base": "Именувайте вашата база от знания",
"Native": "Нативен", "Native": "Нативен",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Не е генерирана заявка за търсене", "No search query generated": "Не е генерирана заявка за търсене",
"No source available": "Няма наличен източник", "No source available": "Няма наличен източник",
"No users were found.": "Не са намерени потребители.", "No users were found.": "Не са намерени потребители.",
"No valves": "",
"No valves to update": "Няма клапани за актуализиране", "No valves to update": "Няма клапани за актуализиране",
"Node Ids": "",
"None": "Никой", "None": "Никой",
"Not factually correct": "Не е фактологически правилно", "Not factually correct": "Не е фактологически правилно",
"Not helpful": "Не е полезно", "Not helpful": "Не е полезно",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Търси", "Search": "Търси",
"Search a model": "Търси модел", "Search a model": "Търси модел",
"Search all emojis": "",
"Search Base": "База за търсене", "Search Base": "База за търсене",
"Search Chats": "Търсене на чатове", "Search Chats": "Търсене на чатове",
"Search Collection": "Търсене в колекция", "Search Collection": "Търсене в колекция",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Вижте readme.md за инструкции", "See readme.md for instructions": "Вижте readme.md за инструкции",
"See what's new": "Виж какво е новото", "See what's new": "Виж какво е новото",
"Seed": "Начално число", "Seed": "Начално число",
"Select": "",
"Select a base model": "Изберете базов модел", "Select a base model": "Изберете базов модел",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Изберете двигател", "Select a engine": "Изберете двигател",
"Select a function": "Изберете функция", "Select a function": "Изберете функция",
"Select a group": "Изберете група", "Select a group": "Изберете група",
"Select a language": "",
"Select a mode": "",
"Select a model": "Изберете модел", "Select a model": "Изберете модел",
"Select a model (optional)": "",
"Select a pipeline": "Изберете пайплайн", "Select a pipeline": "Изберете пайплайн",
"Select a pipeline url": "Избор на URL адрес на канал", "Select a pipeline url": "Избор на URL адрес на канал",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Изберете инструмент", "Select a tool": "Изберете инструмент",
"Select a voice": "",
"Select an auth method": "Изберете метод за удостоверяване", "Select an auth method": "Изберете метод за удостоверяване",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Изберете инстанция на Ollama", "Select an Ollama instance": "Изберете инстанция на Ollama",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Изберете двигател", "Select Engine": "Изберете двигател",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Изберете знание", "Select Knowledge": "Изберете знание",
"Select only one model to call": "Изберете само един модел за извикване", "Select only one model to call": "Изберете само един модел за извикване",
"Selected model(s) do not support image inputs": "Избраният(те) модел(и) не поддържа въвеждане на изображения", "Selected model(s) do not support image inputs": "Избраният(те) модел(и) не поддържа въвеждане на изображения",
@ -1215,6 +1262,7 @@
"Serply API Key": "API ключ за Serply", "Serply API Key": "API ключ за Serply",
"Serpstack API Key": "Serpstack API ключ", "Serpstack API Key": "Serpstack API ключ",
"Server connection verified": "Връзката със сървъра е потвърдена", "Server connection verified": "Връзката със сървъра е потвърдена",
"Session": "",
"Set as default": "Задай по подразбиране", "Set as default": "Задай по подразбиране",
"Set CFG Scale": "Задай CFG мащаб", "Set CFG Scale": "Задай CFG мащаб",
"Set Default Model": "Задай Модел По Подразбиране", "Set Default Model": "Задай Модел По Подразбиране",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Източник", "Source": "Източник",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Подтитул (напр. за Римска империя)", "Subtitle (e.g. about the Roman Empire)": "Подтитул (напр. за Римска империя)",
"Success": "Успех", "Success": "Успех",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Успешно обновено.", "Successfully updated.": "Успешно обновено.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Препоръчано", "Suggested": "Препоръчано",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Максималният размер на файла в MB. Ако размерът на файла надвишава този лимит, файлът няма да бъде качен.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Максималният размер на файла в MB. Ако размерът на файла надвишава този лимит, файлът няма да бъде качен.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Максималният брой файлове, които могат да се използват едновременно в чата. Ако броят на файловете надвишава този лимит, файловете няма да бъдат качени.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Максималният брой файлове, които могат да се използват едновременно в чата. Ако броят на файловете надвишава този лимит, файловете няма да бъдат качени.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Резултатът трябва да бъде стойност между 0,0 (0%) и 1,0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Резултатът трябва да бъде стойност между 0,0 (0%) и 1,0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Качване на файлове", "Upload Files": "Качване на файлове",
"Upload Pipeline": "Качване на конвейер", "Upload Pipeline": "Качване на конвейер",
"Upload Progress": "Прогрес на качването", "Upload Progress": "Прогрес на качването",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "URL режим", "URL Mode": "URL режим",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "Използвайте '#' в полето за въвеждане, за да заредите и включите вашите знания.", "Use '#' in the prompt input to load and include your knowledge.": "Използвайте '#' в полето за въвеждане, за да заредите и включите вашите знания.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Използване на стандартния арена модел с всички модели. Кликнете бутона плюс, за да добавите персонализирани модели.", "Using the default arena model with all models. Click the plus button to add custom models.": "Използване на стандартния арена модел с всички модели. Кликнете бутона плюс, за да добавите персонализирани модели.",
"Valid time units:": "Валидни единици за време:", "Valid time units:": "Валидни единици за време:",
"Validate certificate": "",
"Valves": "Клапани", "Valves": "Клапани",
"Valves updated": "Клапаните са актуализирани", "Valves updated": "Клапаните са актуализирани",
"Valves updated successfully": "Клапаните са актуализирани успешно", "Valves updated successfully": "Клапаните са актуализирани успешно",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Локално)", "Whisper (Local)": "Whisper (Локално)",
"Why?": "Защо?", "Why?": "Защо?",
"Widescreen Mode": "Широкоекранен режим", "Widescreen Mode": "Широкоекранен режим",
"Width": "",
"Won": "Спечелено", "Won": "Спечелено",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Работно пространство", "Workspace": "Работно пространство",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}র চ্যাটস", "{{user}}'s Chats": "{{user}}র চ্যাটস",
"{{webUIName}} Backend Required": "{{webUIName}} ব্যাকএন্ড আবশ্যক", "{{webUIName}} Backend Required": "{{webUIName}} ব্যাকএন্ড আবশ্যক",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "", "Account Activation Pending": "",
"Accurate information": "সঠিক তথ্য", "Accurate information": "সঠিক তথ্য",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "", "Actions": "",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "", "Amazing": "",
"an assistant": "একটা এসিস্ট্যান্ট", "an assistant": "একটা এসিস্ট্যান্ট",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "এপিআই কোডস", "API keys": "এপিআই কোডস",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "ব্যানার", "Banners": "ব্যানার",
"Base Model (From)": "বেস মডেল (থেকে)", "Base Model (From)": "বেস মডেল (থেকে)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "পূর্ববর্তী", "before": "পূর্ববর্তী",
"Being lazy": "অলস হওয়া", "Being lazy": "অলস হওয়া",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "পাসওয়ার্ড পরিবর্তন করুন", "Change Password": "পাসওয়ার্ড পরিবর্তন করুন",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI Base URL আবশ্যক।", "ComfyUI Base URL is required.": "ComfyUI Base URL আবশ্যক।",
"ComfyUI Workflow": "", "ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "", "ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "কমান্ড", "Command": "কমান্ড",
"Comment": "", "Comment": "",
"Completions": "", "Completions": "",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "সমকালীন অনুরোধ", "Concurrent Requests": "সমকালীন অনুরোধ",
"Config imported successfully": "",
"Configure": "", "Configure": "",
"Confirm": "", "Confirm": "",
"Confirm Password": "পাসওয়ার্ড নিশ্চিত করুন", "Confirm Password": "পাসওয়ার্ড নিশ্চিত করুন",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "ডেসেম্বর", "December": "ডেসেম্বর",
"Deepgram": "",
"Default": "ডিফল্ট", "Default": "ডিফল্ট",
"Default (Open AI)": "", "Default (Open AI)": "",
"Default (SentenceTransformers)": "ডিফল্ট (SentenceTransformers)", "Default (SentenceTransformers)": "ডিফল্ট (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "", "Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "গিটহাব কাঁচা URL লিখুন", "Enter Github Raw URL": "গিটহাব কাঁচা URL লিখুন",
"Enter Google PSE API Key": "গুগল পিএসই এপিআই কী লিখুন", "Enter Google PSE API Key": "গুগল পিএসই এপিআই কী লিখুন",
"Enter Google PSE Engine Id": "গুগল পিএসই ইঞ্জিন আইডি লিখুন", "Enter Google PSE Engine Id": "গুগল পিএসই ইঞ্জিন আইডি লিখুন",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "ছবির মাপ লিখুন (যেমন 512x512)", "Enter Image Size (e.g. 512x512)": "ছবির মাপ লিখুন (যেমন 512x512)",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "ইউআরএল দিন (যেমন http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "ইউআরএল দিন (যেমন http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "ইউআরএল দিন (যেমন http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "ইউআরএল দিন (যেমন http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "ত্রুটি", "Error": "ত্রুটি",
"ERROR": "", "ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "", "Evaluations": "",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "হ্যালো, {{name}}", "Hello, {{name}}": "হ্যালো, {{name}}",
"Help": "সহায়তা", "Help": "সহায়তা",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "লুকান", "Hide": "লুকান",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "ইনপুট কমান্ডস", "Input commands": "ইনপুট কমান্ডস",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "", "Invalid file format.": "",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "অবৈধ ট্যাগ", "Invalid Tag": "অবৈধ ট্যাগ",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "কিবোর্ড শর্টকাটসমূহ", "Keyboard shortcuts": "কিবোর্ড শর্টকাটসমূহ",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "", "Knowledge created successfully.": "",
"Knowledge deleted successfully.": "", "Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "", "Knowledge reset successfully.": "",
"Knowledge updated successfully": "", "Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "", "Lost": "",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "OpenWebUI কমিউনিটিকর্তৃক নির্মিত", "Made by Open WebUI Community": "OpenWebUI কমিউনিটিকর্তৃক নির্মিত",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"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": "মে",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLMs দ্বারা অ্যাক্সেসযোগ্য মেমোরিগুলি এখানে দেখানো হবে।", "Memories accessible by LLMs will be shown here.": "LLMs দ্বারা অ্যাক্সেসযোগ্য মেমোরিগুলি এখানে দেখানো হবে।",
"Memory": "মেমোরি", "Memory": "মেমোরি",
"Memory added successfully": "", "Memory added successfully": "",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "", "Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "মডেল নির্বাচন করা হয়নি", "Model not selected": "মডেল নির্বাচন করা হয়নি",
"Model Params": "মডেল প্যারাম", "Model Params": "মডেল প্যারাম",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "নাম", "Name": "নাম",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "কোনও অনুসন্ধান ক্যোয়ারী উত্পন্ন হয়নি", "No search query generated": "কোনও অনুসন্ধান ক্যোয়ারী উত্পন্ন হয়নি",
"No source available": "কোন উৎস পাওয়া যায়নি", "No source available": "কোন উৎস পাওয়া যায়নি",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "", "No valves to update": "",
"Node Ids": "",
"None": "কোনোটিই নয়", "None": "কোনোটিই নয়",
"Not factually correct": "তথ্যগত দিক থেকে সঠিক নয়", "Not factually correct": "তথ্যগত দিক থেকে সঠিক নয়",
"Not helpful": "", "Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "অনুসন্ধান", "Search": "অনুসন্ধান",
"Search a model": "মডেল অনুসন্ধান করুন", "Search a model": "মডেল অনুসন্ধান করুন",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "চ্যাট অনুসন্ধান করুন", "Search Chats": "চ্যাট অনুসন্ধান করুন",
"Search Collection": "", "Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "নির্দেশিকার জন্য readme.md দেখুন", "See readme.md for instructions": "নির্দেশিকার জন্য readme.md দেখুন",
"See what's new": "নতুন কী আছে দেখুন", "See what's new": "নতুন কী আছে দেখুন",
"Seed": "সীড", "Seed": "সীড",
"Select": "",
"Select a base model": "একটি বেস মডেল নির্বাচন করুন", "Select a base model": "একটি বেস মডেল নির্বাচন করুন",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "", "Select a engine": "",
"Select a function": "", "Select a function": "",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "একটি মডেল নির্বাচন করুন", "Select a model": "একটি মডেল নির্বাচন করুন",
"Select a model (optional)": "",
"Select a pipeline": "একটি পাইপলাইন নির্বাচন করুন", "Select a pipeline": "একটি পাইপলাইন নির্বাচন করুন",
"Select a pipeline url": "একটি পাইপলাইন URL নির্বাচন করুন", "Select a pipeline url": "একটি পাইপলাইন URL নির্বাচন করুন",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "", "Select a tool": "",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "", "Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "", "Select Knowledge": "",
"Select only one model to call": "", "Select only one model to call": "",
"Selected model(s) do not support image inputs": "নির্বাচিত মডেল(গুলি) চিত্র ইনপুট সমর্থন করে না", "Selected model(s) do not support image inputs": "নির্বাচিত মডেল(গুলি) চিত্র ইনপুট সমর্থন করে না",
@ -1215,6 +1262,7 @@
"Serply API Key": "", "Serply API Key": "",
"Serpstack API Key": "Serpstack API Key", "Serpstack API Key": "Serpstack API Key",
"Server connection verified": "সার্ভার কানেকশন যাচাই করা হয়েছে", "Server connection verified": "সার্ভার কানেকশন যাচাই করা হয়েছে",
"Session": "",
"Set as default": "ডিফল্ট হিসেবে নির্ধারণ করুন", "Set as default": "ডিফল্ট হিসেবে নির্ধারণ করুন",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "ডিফল্ট মডেল নির্ধারণ করুন", "Set Default Model": "ডিফল্ট মডেল নির্ধারণ করুন",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "উৎস", "Source": "উৎস",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "সাবটাইটল (রোমান ইম্পার্টের সম্পর্কে)", "Subtitle (e.g. about the Roman Empire)": "সাবটাইটল (রোমান ইম্পার্টের সম্পর্কে)",
"Success": "সফল", "Success": "সফল",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "সফলভাবে আপডেট হয়েছে", "Successfully updated.": "সফলভাবে আপডেট হয়েছে",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "প্রস্তাবিত", "Suggested": "প্রস্তাবিত",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "স্কোর একটি 0.0 (0%) এবং 1.0 (100%) এর মধ্যে একটি মান হওয়া উচিত।", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "স্কোর একটি 0.0 (0%) এবং 1.0 (100%) এর মধ্যে একটি মান হওয়া উচিত।",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "ফাইল আপলোড করুন", "Upload Files": "ফাইল আপলোড করুন",
"Upload Pipeline": "", "Upload Pipeline": "",
"Upload Progress": "আপলোড হচ্ছে", "Upload Progress": "আপলোড হচ্ছে",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "ইউআরএল মোড", "URL Mode": "ইউআরএল মোড",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "", "Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "সময়ের গ্রহণযোগ্য এককসমূহ:", "Valid time units:": "সময়ের গ্রহণযোগ্য এককসমূহ:",
"Validate certificate": "",
"Valves": "", "Valves": "",
"Valves updated": "", "Valves updated": "",
"Valves updated successfully": "", "Valves updated successfully": "",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "", "Whisper (Local)": "",
"Why?": "", "Why?": "",
"Widescreen Mode": "", "Widescreen Mode": "",
"Width": "",
"Won": "", "Won": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "ওয়ার্কস্পেস", "Workspace": "ওয়ার্কস্পেস",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "ཡིག་ཕྲེང་ {{COUNT}} སྦས་ཡོད།", "{{COUNT}} hidden lines": "ཡིག་ཕྲེང་ {{COUNT}} སྦས་ཡོད།",
"{{COUNT}} Replies": "ལན་ {{COUNT}}", "{{COUNT}} Replies": "ལན་ {{COUNT}}",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} ཡི་ཁ་བརྡ།", "{{user}}'s Chats": "{{user}} ཡི་ཁ་བརྡ།",
"{{webUIName}} Backend Required": "{{webUIName}} རྒྱབ་སྣེ་དགོས།", "{{webUIName}} Backend Required": "{{webUIName}} རྒྱབ་སྣེ་དགོས།",
"*Prompt node ID(s) are required for image generation": "*པར་བཟོའི་ཆེད་དུ་འགུལ་སློང་མདུད་ཚེག་གི་ ID(s) དགོས།", "*Prompt node ID(s) are required for image generation": "*པར་བཟོའི་ཆེད་དུ་འགུལ་སློང་མདུད་ཚེག་གི་ ID(s) དགོས།",
@ -29,6 +30,7 @@
"Account Activation Pending": "རྩིས་ཁྲ་སྒུལ་བསྐྱོད་སྒུག་བཞིན་པ།", "Account Activation Pending": "རྩིས་ཁྲ་སྒུལ་བསྐྱོད་སྒུག་བཞིན་པ།",
"Accurate information": "གནས་ཚུལ་ཡང་དག", "Accurate information": "གནས་ཚུལ་ཡང་དག",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "བྱ་སྤྱོད།", "Actions": "བྱ་སྤྱོད།",
"Activate": "སྒུལ་བསྐྱོད།", "Activate": "སྒུལ་བསྐྱོད།",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "ཁ་བརྡའི་ནང་འཇུག་ཏུ་ \"/{{COMMAND}}\" མནན་ནས་བཀའ་བརྡ་འདི་སྒུལ་བསྐྱོད་བྱེད་པ།", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "ཁ་བརྡའི་ནང་འཇུག་ཏུ་ \"/{{COMMAND}}\" མནན་ནས་བཀའ་བརྡ་འདི་སྒུལ་བསྐྱོད་བྱེད་པ།",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "ངོ་མཚར་ཆེན།", "Amazing": "ངོ་མཚར་ཆེན།",
"an assistant": "ལག་རོགས་པ།", "an assistant": "ལག་རོགས་པ།",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "དབྱེ་ཞིབ་བྱས་པ།", "Analyzed": "དབྱེ་ཞིབ་བྱས་པ།",
"Analyzing...": "དབྱེ་ཞིབ་བྱེད་བཞིན་པ།...", "Analyzing...": "དབྱེ་ཞིབ་བྱེད་བཞིན་པ།...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API ལྡེ་མིག་མཇུག་མཐུད་ཚད་བཀག", "API Key Endpoint Restrictions": "API ལྡེ་མིག་མཇུག་མཐུད་ཚད་བཀག",
"API keys": "API ལྡེ་མིག", "API keys": "API ལྡེ་མིག",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "Application DN", "Application DN": "Application DN",
"Application DN Password": "Application DN གསང་གྲངས།", "Application DN Password": "Application DN གསང་གྲངས།",
"applies to all users with the \"user\" role": "\"བེད་སྤྱོད་མཁན་\" གྱི་གནས་ཚད་ཡོད་པའི་བེད་སྤྱོད་མཁན་ཡོངས་ལ་འཕྲོད་པ།", "applies to all users with the \"user\" role": "\"བེད་སྤྱོད་མཁན་\" གྱི་གནས་ཚད་ཡོད་པའི་བེད་སྤྱོད་མཁན་ཡོངས་ལ་འཕྲོད་པ།",
@ -160,6 +164,7 @@
"Banners": "དར་ཆ།", "Banners": "དར་ཆ།",
"Base Model (From)": "གཞི་རྩའི་དཔེ་དབྱིབས། (ནས།)", "Base Model (From)": "གཞི་རྩའི་དཔེ་དབྱིབས། (ནས།)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "སྔོན།", "before": "སྔོན།",
"Being lazy": "ལེ་ལོ་བྱེད་པ།", "Being lazy": "ལེ་ལོ་བྱེད་པ།",
"Beta": "Beta", "Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "ལག་ཁྱེར་གྱི་ལམ་བུ།", "Certificate Path": "ལག་ཁྱེར་གྱི་ལམ་བུ།",
"Change Password": "གསང་གྲངས་བརྗེ་བ།", "Change Password": "གསང་གྲངས་བརྗེ་བ།",
"Channel deleted successfully": "",
"Channel Name": "བགྲོ་གླེང་གི་མིང་།", "Channel Name": "བགྲོ་གླེང་གི་མིང་།",
"Channel updated successfully": "",
"Channels": "བགྲོ་གླེང་།", "Channels": "བགྲོ་གླེང་།",
"Character": "ཡིག་འབྲུ།", "Character": "ཡིག་འབྲུ།",
"Character limit for autocomplete generation input": "རང་འཚང་བཟོ་སྐྲུན་ནང་འཇུག་གི་ཡིག་འབྲུ་ཚད་བཀག", "Character limit for autocomplete generation input": "རང་འཚང་བཟོ་སྐྲུན་ནང་འཇུག་གི་ཡིག་འབྲུ་ཚད་བཀག",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "ཀོཌ་ལག་བསྟར།", "Code execution": "ཀོཌ་ལག་བསྟར།",
"Code Execution": "ཀོཌ་ལག་བསྟར།", "Code Execution": "ཀོཌ་ལག་བསྟར།",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI གཞི་རྩའི་ URL དགོས་ངེས།", "ComfyUI Base URL is required.": "ComfyUI གཞི་རྩའི་ URL དགོས་ངེས།",
"ComfyUI Workflow": "ComfyUI ལས་ཀའི་རྒྱུན་རིམ།", "ComfyUI Workflow": "ComfyUI ལས་ཀའི་རྒྱུན་རིམ།",
"ComfyUI Workflow Nodes": "ComfyUI ལས་ཀའི་རྒྱུན་རིམ་མདུད་ཚེག", "ComfyUI Workflow Nodes": "ComfyUI ལས་ཀའི་རྒྱུན་རིམ་མདུད་ཚེག",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "བཀའ་བརྡ།", "Command": "བཀའ་བརྡ།",
"Comment": "", "Comment": "",
"Completions": "འགྲུབ་པ།", "Completions": "འགྲུབ་པ།",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "མཉམ་ལས་རེ་ཞུ།", "Concurrent Requests": "མཉམ་ལས་རེ་ཞུ།",
"Config imported successfully": "",
"Configure": "སྒྲིག་འགོད།", "Configure": "སྒྲིག་འགོད།",
"Confirm": "གཏན་འཁེལ།", "Confirm": "གཏན་འཁེལ།",
"Confirm Password": "གསང་གྲངས་གཏན་འཁེལ།", "Confirm Password": "གསང་གྲངས་གཏན་འཁེལ།",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "ཟླ་བ་བཅུ་གཉིས་པ།", "December": "ཟླ་བ་བཅུ་གཉིས་པ།",
"Deepgram": "",
"Default": "སྔོན་སྒྲིག", "Default": "སྔོན་སྒྲིག",
"Default (Open AI)": "སྔོན་སྒྲིག (Open AI)", "Default (Open AI)": "སྔོན་སྒྲིག (Open AI)",
"Default (SentenceTransformers)": "སྔོན་སྒྲིག (SentenceTransformers)", "Default (SentenceTransformers)": "སྔོན་སྒྲིག (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "ཐད་ཀར་སྦྲེལ་མཐུད།", "Direct Connections": "ཐད་ཀར་སྦྲེལ་མཐུད།",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "ཐད་ཀར་སྦྲེལ་མཐུད་ཀྱིས་བེད་སྤྱོད་མཁན་ཚོར་ཁོ་ཚོའི་རང་གི་ OpenAI དང་མཐུན་པའི་ API མཇུག་མཐུད་ལ་སྦྲེལ་བར་གནང་བ་སྤྲོད།", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "ཐད་ཀར་སྦྲེལ་མཐུད་ཀྱིས་བེད་སྤྱོད་མཁན་ཚོར་ཁོ་ཚོའི་རང་གི་ OpenAI དང་མཐུན་པའི་ API མཇུག་མཐུད་ལ་སྦྲེལ་བར་གནང་བ་སྤྲོད།",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "ཚེག་བསྐུངས་ཀྱིས་ལོགས་སུ་བཀར་བའི་ \"ཊོཀ་ཀེན།:ཕྱོགས་ཞེན་རིན་ཐང་།\" ཆ་འཇུག་པ། (དཔེར། 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "ཚེག་བསྐུངས་ཀྱིས་ལོགས་སུ་བཀར་བའི་ \"ཊོཀ་ཀེན།:ཕྱོགས་ཞེན་རིན་ཐང་།\" ཆ་འཇུག་པ། (དཔེར། 5432:100, 413:-100)",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "འགྲེལ་བཤད་འཇུག་པ།", "Enter description": "འགྲེལ་བཤད་འཇུག་པ།",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Github Raw URL འཇུག་པ།", "Enter Github Raw URL": "Github Raw URL འཇུག་པ།",
"Enter Google PSE API Key": "Google PSE API ལྡེ་མིག་འཇུག་པ།", "Enter Google PSE API Key": "Google PSE API ལྡེ་མིག་འཇུག་པ།",
"Enter Google PSE Engine Id": "Google PSE Engine Id འཇུག་པ།", "Enter Google PSE Engine Id": "Google PSE Engine Id འཇུག་པ།",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "པར་གྱི་ཆེ་ཆུང་འཇུག་པ། (དཔེར་ན། 512x512)", "Enter Image Size (e.g. 512x512)": "པར་གྱི་ཆེ་ཆུང་འཇུག་པ། (དཔེར་ན། 512x512)",
"Enter Jina API Key": "Jina API ལྡེ་མིག་འཇུག་པ།", "Enter Jina API Key": "Jina API ལྡེ་མིག་འཇུག་པ།",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Top K Reranker འཇུག་པ།", "Enter Top K Reranker": "Top K Reranker འཇུག་པ།",
"Enter URL (e.g. http://127.0.0.1:7860/)": "URL འཇུག་པ། (དཔེར་ན། http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "URL འཇུག་པ། (དཔེར་ན། http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "URL འཇུག་པ། (དཔེར་ན། http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "URL འཇུག་པ། (དཔེར་ན། http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "ཁྱེད་ཀྱི་ Webhook URL འཇུག་པ།", "Enter your webhook URL": "ཁྱེད་ཀྱི་ Webhook URL འཇུག་པ།",
"Error": "ནོར་འཁྲུལ།", "Error": "ནོར་འཁྲུལ།",
"ERROR": "ནོར་འཁྲུལ།", "ERROR": "ནོར་འཁྲུལ།",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Google Drive འཛུལ་སྤྱོད་སྐབས་ནོར་འཁྲུལ།: {{error}}", "Error accessing Google Drive: {{error}}": "Google Drive འཛུལ་སྤྱོད་སྐབས་ནོར་འཁྲུལ།: {{error}}",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "ཡིག་ཆ་སྤར་སྐབས་ནོར་འཁྲུལ།: {{error}}", "Error uploading file: {{error}}": "ཡིག་ཆ་སྤར་སྐབས་ནོར་འཁྲུལ།: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "གདེང་འཇོག", "Evaluations": "གདེང་འཇོག",
"Everyone": "", "Everyone": "",
"Exa API Key": "Exa API ལྡེ་མིག", "Exa API Key": "Exa API ལྡེ་མིག",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "འདར་འཕྲུལ་གྱི་བསམ་འཆར།", "Haptic Feedback": "འདར་འཕྲུལ་གྱི་བསམ་འཆར།",
"Height": "",
"Hello, {{name}}": "བཀྲ་ཤིས་བདེ་ལེགས། {{name}}", "Hello, {{name}}": "བཀྲ་ཤིས་བདེ་ལེགས། {{name}}",
"Help": "རོགས་རམ།", "Help": "རོགས་རམ།",
"Help us create the best community leaderboard by sharing your feedback history!": "ཁྱེད་ཀྱི་བསམ་འཆར་ལོ་རྒྱུས་མཉམ་སྤྱོད་བྱས་ནས་ང་ཚོས་སྤྱི་ཚོགས་ཀྱི་འགྲན་རེས་རེའུ་མིག་ཡག་ཤོས་བཟོ་བར་རོགས་པ་བྱེད་རོགས།", "Help us create the best community leaderboard by sharing your feedback history!": "ཁྱེད་ཀྱི་བསམ་འཆར་ལོ་རྒྱུས་མཉམ་སྤྱོད་བྱས་ནས་ང་ཚོས་སྤྱི་ཚོགས་ཀྱི་འགྲན་རེས་རེའུ་མིག་ཡག་ཤོས་བཟོ་བར་རོགས་པ་བྱེད་རོགས།",
@ -733,6 +753,7 @@
"Hide": "སྦ་བ།", "Hide": "སྦ་བ།",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "དཔེ་དབྱིབས་སྦ་བ།", "Hide Model": "དཔེ་དབྱིབས་སྦ་བ།",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "གཙོ་ངོས།", "Home": "གཙོ་ངོས།",
"Host": "Host", "Host": "Host",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "ནང་དོན་ཆ་ཚང་དེ་ནང་དོན་དུ་བཅུག་ནས་སྒྲུབ་རིམ་ཆ་ཚང་བྱེད་པ། འདི་ནི་འདྲི་བ་རྙོག་འཛིང་ཅན་གྱི་ཆེད་དུ་འོས་སྦྱོར་བྱེད།", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "ནང་དོན་ཆ་ཚང་དེ་ནང་དོན་དུ་བཅུག་ནས་སྒྲུབ་རིམ་ཆ་ཚང་བྱེད་པ། འདི་ནི་འདྲི་བ་རྙོག་འཛིང་ཅན་གྱི་ཆེད་དུ་འོས་སྦྱོར་བྱེད།",
"Input": "", "Input": "",
"Input commands": "ནང་འཇུག་བཀའ་བརྡ།", "Input commands": "ནང་འཇུག་བཀའ་བརྡ།",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "ཡིག་ཆའི་བཀོད་པ་ནུས་མེད།", "Invalid file format.": "ཡིག་ཆའི་བཀོད་པ་ནུས་མེད།",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "རྟགས་ནུས་མེད།", "Invalid Tag": "རྟགས་ནུས་མེད།",
"is typing...": "ཡིག་འབྲུ་རྒྱག་བཞིན་པ།...", "is typing...": "ཡིག་འབྲུ་རྒྱག་བཞིན་པ།...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "ལྡེ་མིག", "Key": "ལྡེ་མིག",
"Key is required": "",
"Keyboard shortcuts": "མཐེབ་གནོན་མྱུར་ལམ།", "Keyboard shortcuts": "མཐེབ་གནོན་མྱུར་ལམ།",
"Knowledge": "ཤེས་བྱ།", "Knowledge": "ཤེས་བྱ།",
"Knowledge Access": "ཤེས་བྱར་འཛུལ་སྤྱོད།", "Knowledge Access": "ཤེས་བྱར་འཛུལ་སྤྱོད།",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "ཤེས་བྱ་ལེགས་པར་བཟོས་ཟིན།", "Knowledge created successfully.": "ཤེས་བྱ་ལེགས་པར་བཟོས་ཟིན།",
"Knowledge deleted successfully.": "ཤེས་བྱ་ལེགས་པར་བསུབས་ཟིན།", "Knowledge deleted successfully.": "ཤེས་བྱ་ལེགས་པར་བསུབས་ཟིན།",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "ཤེས་བྱ་སྤྱི་སྤྱོད་མཉམ་སྤྱོད།", "Knowledge Public Sharing": "ཤེས་བྱ་སྤྱི་སྤྱོད་མཉམ་སྤྱོད།",
"Knowledge reset successfully.": "ཤེས་བྱ་ལེགས་པར་སླར་སྒྲིག་བྱས་ཟིན།", "Knowledge reset successfully.": "ཤེས་བྱ་ལེགས་པར་སླར་སྒྲིག་བྱས་ཟིན།",
"Knowledge updated successfully": "ཤེས་བྱ་ལེགས་པར་གསར་སྒྱུར་བྱས་ཟིན།", "Knowledge updated successfully": "ཤེས་བྱ་ལེགས་པར་གསར་སྒྱུར་བྱས་ཟིན།",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "གནས་ཡུལ་འཛུལ་སྤྱོད་ལ་གནང་བ་མ་སྤྲད།", "Location access not allowed": "གནས་ཡུལ་འཛུལ་སྤྱོད་ལ་གནང་བ་མ་སྤྲད།",
"Lost": "བརླགས།", "Lost": "བརླགས།",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Open WebUI སྤྱི་ཚོགས་ཀྱིས་བཟོས།", "Made by Open WebUI Community": "Open WebUI སྤྱི་ཚོགས་ཀྱིས་བཟོས།",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "སྤར་བའི་ཆེ་ཆུང་མང་ཤོས།", "Max Upload Size": "སྤར་བའི་ཆེ་ཆུང་མང་ཤོས།",
"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": "ཟླ་བ་ལྔ་པ།",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLMs ཀྱིས་འཛུལ་སྤྱོད་ཐུབ་པའི་དྲན་ཤེས་དག་འདིར་སྟོན་ངེས།", "Memories accessible by LLMs will be shown here.": "LLMs ཀྱིས་འཛུལ་སྤྱོད་ཐུབ་པའི་དྲན་ཤེས་དག་འདིར་སྟོན་ངེས།",
"Memory": "དྲན་ཤེས།", "Memory": "དྲན་ཤེས།",
"Memory added successfully": "དྲན་ཤེས་ལེགས་པར་བསྣན་ཟིན།", "Memory added successfully": "དྲན་ཤེས་ལེགས་པར་བསྣན་ཟིན།",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "དཔེ་དབྱིབས་ཀྱི་ IDs", "Model IDs": "དཔེ་དབྱིབས་ཀྱི་ IDs",
"Model Name": "དཔེ་དབྱིབས་ཀྱི་མིང་།", "Model Name": "དཔེ་དབྱིབས་ཀྱི་མིང་།",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "དཔེ་དབྱིབས་གདམ་ག་མ་བྱས།", "Model not selected": "དཔེ་དབྱིབས་གདམ་ག་མ་བྱས།",
"Model Params": "དཔེ་དབྱིབས་ཀྱི་ཞུགས་གྲངས།", "Model Params": "དཔེ་དབྱིབས་ཀྱི་ཞུགས་གྲངས།",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "མིང་།", "Name": "མིང་།",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "ཁྱེད་ཀྱི་ཤེས་བྱའི་རྟེན་གཞི་ལ་མིང་ཐོགས།", "Name your knowledge base": "ཁྱེད་ཀྱི་ཤེས་བྱའི་རྟེན་གཞི་ལ་མིང་ཐོགས།",
"Native": "ས་སྐྱེས།", "Native": "ས་སྐྱེས།",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "འཚོལ་བཤེར་འདྲི་བ་བཟོས་མེད།", "No search query generated": "འཚོལ་བཤེར་འདྲི་བ་བཟོས་མེད།",
"No source available": "འབྱུང་ཁུངས་མེད།", "No source available": "འབྱུང་ཁུངས་མེད།",
"No users were found.": "བེད་སྤྱོད་མཁན་མ་རྙེད།", "No users were found.": "བེད་སྤྱོད་མཁན་མ་རྙེད།",
"No valves": "",
"No valves to update": "གསར་སྒྱུར་བྱེད་རྒྱུའི་ Valve མེད།", "No valves to update": "གསར་སྒྱུར་བྱེད་རྒྱུའི་ Valve མེད།",
"Node Ids": "",
"None": "གཅིག་ཀྱང་མེད།", "None": "གཅིག་ཀྱང་མེད།",
"Not factually correct": "དོན་དངོས་དང་མི་མཐུན།", "Not factually correct": "དོན་དངོས་དང་མི་མཐུན།",
"Not helpful": "ཕན་ཐོགས་མེད།", "Not helpful": "ཕན་ཐོགས་མེད།",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "འཚོལ་བཤེར།", "Search": "འཚོལ་བཤེར།",
"Search a model": "དཔེ་དབྱིབས་ཤིག་འཚོལ་བ།", "Search a model": "དཔེ་དབྱིབས་ཤིག་འཚོལ་བ།",
"Search all emojis": "",
"Search Base": "འཚོལ་བཤེར་གཞི་རྩ།", "Search Base": "འཚོལ་བཤེར་གཞི་རྩ།",
"Search Chats": "ཁ་བརྡ་འཚོལ་བཤེར།", "Search Chats": "ཁ་བརྡ་འཚོལ་བཤེར།",
"Search Collection": "བསྡུ་གསོག་འཚོལ་བཤེར།", "Search Collection": "བསྡུ་གསོག་འཚོལ་བཤེར།",
@ -1187,18 +1220,32 @@
"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": "",
"Select a base model": "གཞི་རྩའི་དཔེ་དབྱིབས་ཤིག་གདམ་པ།", "Select a base model": "གཞི་རྩའི་དཔེ་དབྱིབས་ཤིག་གདམ་པ།",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "འཕྲུལ་འཁོར་ཞིག་གདམ་པ།", "Select a engine": "འཕྲུལ་འཁོར་ཞིག་གདམ་པ།",
"Select a function": "ལས་འགན་ཞིག་གདམ་པ།", "Select a function": "ལས་འགན་ཞིག་གདམ་པ།",
"Select a group": "ཚོགས་པ་ཞིག་གདམ་པ།", "Select a group": "ཚོགས་པ་ཞིག་གདམ་པ།",
"Select a language": "",
"Select a mode": "",
"Select a model": "དཔེ་དབྱིབས་ཤིག་གདམ་པ།", "Select a model": "དཔེ་དབྱིབས་ཤིག་གདམ་པ།",
"Select a model (optional)": "",
"Select a pipeline": "རྒྱུ་ལམ་ཞིག་གདམ་པ།", "Select a pipeline": "རྒྱུ་ལམ་ཞིག་གདམ་པ།",
"Select a pipeline url": "རྒྱུ་ལམ་གྱི་ url ཞིག་གདམ་པ།", "Select a pipeline url": "རྒྱུ་ལམ་གྱི་ url ཞིག་གདམ་པ།",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "ལག་ཆ་ཞིག་གདམ་པ།", "Select a tool": "ལག་ཆ་ཞིག་གདམ་པ།",
"Select a voice": "",
"Select an auth method": "auth ཐབས་ལམ་ཞིག་གདམ་པ།", "Select an auth method": "auth ཐབས་ལམ་ཞིག་གདམ་པ།",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Ollama དཔེ་མཚོན་ཞིག་གདམ་པ།", "Select an Ollama instance": "Ollama དཔེ་མཚོན་ཞིག་གདམ་པ།",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "འཕྲུལ་འཁོར་གདམ་པ།", "Select Engine": "འཕྲུལ་འཁོར་གདམ་པ།",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "ཤེས་བྱ་གདམ་པ།", "Select Knowledge": "ཤེས་བྱ་གདམ་པ།",
"Select only one model to call": "འབོད་པར་དཔེ་དབྱིབས་གཅིག་ཁོ་ན་གདམ་པ།", "Select only one model to call": "འབོད་པར་དཔེ་དབྱིབས་གཅིག་ཁོ་ན་གདམ་པ།",
"Selected model(s) do not support image inputs": "གདམ་ཟིན་པའི་དཔེ་དབྱིབས་(ཚོ)ས་པར་གྱི་ནང་འཇུག་ལ་རྒྱབ་སྐྱོར་མི་བྱེད།", "Selected model(s) do not support image inputs": "གདམ་ཟིན་པའི་དཔེ་དབྱིབས་(ཚོ)ས་པར་གྱི་ནང་འཇུག་ལ་རྒྱབ་སྐྱོར་མི་བྱེད།",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API ལྡེ་མིག", "Serply API Key": "Serply API ལྡེ་མིག",
"Serpstack API Key": "Serpstack API ལྡེ་མིག", "Serpstack API Key": "Serpstack API ལྡེ་མིག",
"Server connection verified": "སར་བར་སྦྲེལ་མཐུད་ར་སྤྲོད་བྱས།", "Server connection verified": "སར་བར་སྦྲེལ་མཐུད་ར་སྤྲོད་བྱས།",
"Session": "",
"Set as default": "སྔོན་སྒྲིག་ཏུ་འཇོག་པ།", "Set as default": "སྔོན་སྒྲིག་ཏུ་འཇོག་པ།",
"Set CFG Scale": "CFG ཆེ་ཆུང་འཇོག་པ།", "Set CFG Scale": "CFG ཆེ་ཆུང་འཇོག་པ།",
"Set Default Model": "སྔོན་སྒྲིག་དཔེ་དབྱིབས་འཇོག་པ།", "Set Default Model": "སྔོན་སྒྲིག་དཔེ་དབྱིབས་འཇོག་པ།",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-༡༢༣༤", "sk-1234": "sk-༡༢༣༤",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "འབྱུང་ཁུངས།", "Source": "འབྱུང་ཁུངས།",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "ཁ་བྱང་ཕལ་པ། (དཔེར་ན། རོམ་མའི་གོང་མའི་རྒྱལ་ཁབ་སྐོར།)", "Subtitle (e.g. about the Roman Empire)": "ཁ་བྱང་ཕལ་པ། (དཔེར་ན། རོམ་མའི་གོང་མའི་རྒྱལ་ཁབ་སྐོར།)",
"Success": "ལེགས་འགྲུབ།", "Success": "ལེགས་འགྲུབ།",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "ལེགས་པར་གསར་སྒྱུར་བྱས།", "Successfully updated.": "ལེགས་པར་གསར་སྒྱུར་བྱས།",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "གྲོས་གཞི།", "Suggested": "གྲོས་གཞི།",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "MB ནང་གི་ཡིག་ཆའི་ཆེ་ཆུང་མང་ཤོས། གལ་ཏེ་ཡིག་ཆའི་ཆེ་ཆུང་ཚད་བཀག་འདི་ལས་བརྒལ་ན། ཡིག་ཆ་དེ་སྤར་མི་འགྱུར།", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "MB ནང་གི་ཡིག་ཆའི་ཆེ་ཆུང་མང་ཤོས། གལ་ཏེ་ཡིག་ཆའི་ཆེ་ཆུང་ཚད་བཀག་འདི་ལས་བརྒལ་ན། ཡིག་ཆ་དེ་སྤར་མི་འགྱུར།",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "ཁ་བརྡའི་ནང་ཐེངས་གཅིག་ལ་བེད་སྤྱོད་གཏོང་ཐུབ་པའི་ཡིག་ཆའི་གྲངས་མང་ཤོས། གལ་ཏེ་ཡིག་ཆའི་གྲངས་ཚད་བཀག་འདི་ལས་བརྒལ་ན། ཡིག་ཆ་དག་སྤར་མི་འགྱུར།", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "ཁ་བརྡའི་ནང་ཐེངས་གཅིག་ལ་བེད་སྤྱོད་གཏོང་ཐུབ་པའི་ཡིག་ཆའི་གྲངས་མང་ཤོས། གལ་ཏེ་ཡིག་ཆའི་གྲངས་ཚད་བཀག་འདི་ལས་བརྒལ་ན། ཡིག་ཆ་དག་སྤར་མི་འགྱུར།",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "སྐར་མ་དེ་ 0.0 (0%) ནས་ 1.0 (100%) བར་གྱི་རིན་ཐང་ཞིག་ཡིན་དགོས།", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "སྐར་མ་དེ་ 0.0 (0%) ནས་ 1.0 (100%) བར་གྱི་རིན་ཐང་ཞིག་ཡིན་དགོས།",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "དཔེ་དབྱིབས་ཀྱི་དྲོད་ཚད། དྲོད་ཚད་མཐོ་རུ་བཏང་ན་དཔེ་དབྱིབས་ཀྱིས་ལན་གསར་གཏོད་ཆེ་བ་སྤྲོད་ངེས།", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "དཔེ་དབྱིབས་ཀྱི་དྲོད་ཚད། དྲོད་ཚད་མཐོ་རུ་བཏང་ན་དཔེ་དབྱིབས་ཀྱིས་ལན་གསར་གཏོད་ཆེ་བ་སྤྲོད་ངེས།",
@ -1439,7 +1495,9 @@
"Upload Files": "ཡིག་ཆ་སྤར་བ།", "Upload Files": "ཡིག་ཆ་སྤར་བ།",
"Upload Pipeline": "རྒྱུ་ལམ་སྤར་བ།", "Upload Pipeline": "རྒྱུ་ལམ་སྤར་བ།",
"Upload Progress": "སྤར་བའི་འཕེལ་རིམ།", "Upload Progress": "སྤར་བའི་འཕེལ་རིམ།",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "URL མ་དཔེ།", "URL Mode": "URL མ་དཔེ།",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "འགུལ་སློང་ནང་འཇུག་ཏུ་ '#' བེད་སྤྱོད་ནས་ཁྱེད་ཀྱི་ཤེས་བྱ་ནང་འཇུག་དང་ཚུད་པ།", "Use '#' in the prompt input to load and include your knowledge.": "འགུལ་སློང་ནང་འཇུག་ཏུ་ '#' བེད་སྤྱོད་ནས་ཁྱེད་ཀྱི་ཤེས་བྱ་ནང་འཇུག་དང་ཚུད་པ།",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "དཔེ་དབྱིབས་ཡོངས་རྫོགས་དང་མཉམ་དུ་སྔོན་སྒྲིག་ arena དཔེ་དབྱིབས་བེད་སྤྱོད་གཏོང་བཞིན་པ། སྲོལ་བཟོས་དཔེ་དབྱིབས་སྣོན་པར་བསྣན་རྟགས་མཐེབ་གནོན་ལ་མནན་པ།", "Using the default arena model with all models. Click the plus button to add custom models.": "དཔེ་དབྱིབས་ཡོངས་རྫོགས་དང་མཉམ་དུ་སྔོན་སྒྲིག་ arena དཔེ་དབྱིབས་བེད་སྤྱོད་གཏོང་བཞིན་པ། སྲོལ་བཟོས་དཔེ་དབྱིབས་སྣོན་པར་བསྣན་རྟགས་མཐེབ་གནོན་ལ་མནན་པ།",
"Valid time units:": "ནུས་ལྡན་དུས་ཚོད་ཀྱི་ཚན་པ།:", "Valid time units:": "ནུས་ལྡན་དུས་ཚོད་ཀྱི་ཚན་པ།:",
"Validate certificate": "",
"Valves": "Valves", "Valves": "Valves",
"Valves updated": "Valves གསར་སྒྱུར་བྱས།", "Valves updated": "Valves གསར་སྒྱུར་བྱས།",
"Valves updated successfully": "Valves ལེགས་པར་གསར་སྒྱུར་བྱས།", "Valves updated successfully": "Valves ལེགས་པར་གསར་སྒྱུར་བྱས།",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (ས་གནས།)", "Whisper (Local)": "Whisper (ས་གནས།)",
"Why?": "ཅིའི་ཕྱིར།", "Why?": "ཅིའི་ཕྱིར།",
"Widescreen Mode": "ཡངས་གནས་ངོས་མ་དཔེ།", "Widescreen Mode": "ཡངས་གནས་ངོས་མ་དཔེ།",
"Width": "",
"Won": "ཐོབ།", "Won": "ཐོབ།",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "top-k དང་མཉམ་ལས་བྱེད། རིན་ཐང་མཐོ་བ་ (དཔེར་ན། 0.95) ཡིས་ཡིག་རྐྱང་སྣ་ཚོགས་ཆེ་བ་ཡོང་ངེས། དེ་བཞིན་དུ་རིན་ཐང་དམའ་བ་ (དཔེར་ན། 0.5) ཡིས་ཡིག་རྐྱང་དམིགས་ཚད་དང་སྲུང་འཛིན་ཆེ་བ་བཟོ་ངེས།", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "top-k དང་མཉམ་ལས་བྱེད། རིན་ཐང་མཐོ་བ་ (དཔེར་ན། 0.95) ཡིས་ཡིག་རྐྱང་སྣ་ཚོགས་ཆེ་བ་ཡོང་ངེས། དེ་བཞིན་དུ་རིན་ཐང་དམའ་བ་ (དཔེར་ན། 0.5) ཡིས་ཡིག་རྐྱང་དམིགས་ཚད་དང་སྲུང་འཛིན་ཆེ་བ་བཟོ་ངེས།",
"Workspace": "ལས་ཡུལ།", "Workspace": "ལས་ཡུལ།",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} línies ocultes", "{{COUNT}} hidden lines": "{{COUNT}} línies ocultes",
"{{COUNT}} Replies": "{{COUNT}} respostes", "{{COUNT}} Replies": "{{COUNT}} respostes",
"{{COUNT}} words": "{{COUNT}} paraules", "{{COUNT}} words": "{{COUNT}} paraules",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Els xats de {{user}}", "{{user}}'s Chats": "Els xats de {{user}}",
"{{webUIName}} Backend Required": "El Backend de {{webUIName}} és necessari", "{{webUIName}} Backend Required": "El Backend de {{webUIName}} és necessari",
"*Prompt node ID(s) are required for image generation": "*Els identificadors de nodes d'indicacions són necessaris per a la generació d'imatges", "*Prompt node ID(s) are required for image generation": "*Els identificadors de nodes d'indicacions són necessaris per a la generació d'imatges",
@ -29,6 +30,7 @@
"Account Activation Pending": "Activació del compte pendent", "Account Activation Pending": "Activació del compte pendent",
"Accurate information": "Informació precisa", "Accurate information": "Informació precisa",
"Action": "Acció", "Action": "Acció",
"Action not found": "",
"Actions": "Accions", "Actions": "Accions",
"Activate": "Activar", "Activate": "Activar",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activa aquest comanda escrivint \"{{COMMAND}}\" en el xat", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activa aquest comanda escrivint \"{{COMMAND}}\" en el xat",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "Reproduir sempre un so de notificació", "Always Play Notification Sound": "Reproduir sempre un so de notificació",
"Amazing": "Al·lucinant", "Amazing": "Al·lucinant",
"an assistant": "un assistent", "an assistant": "un assistent",
"An error occurred while fetching the explanation": "",
"Analytics": "Analítica", "Analytics": "Analítica",
"Analyzed": "Analitzat", "Analyzed": "Analitzat",
"Analyzing...": "Analitzant...", "Analyzing...": "Analitzant...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Restriccions del punt d'accés de la Clau API", "API Key Endpoint Restrictions": "Restriccions del punt d'accés de la Clau API",
"API keys": "Claus de l'API", "API keys": "Claus de l'API",
"API Version": "Versió de l'API", "API Version": "Versió de l'API",
"API Version is required": "",
"Application DN": "DN d'aplicació", "Application DN": "DN d'aplicació",
"Application DN Password": "Contrasenya del DN d'aplicació", "Application DN Password": "Contrasenya del DN d'aplicació",
"applies to all users with the \"user\" role": "s'aplica a tots els usuaris amb el rol \"usuari\"", "applies to all users with the \"user\" role": "s'aplica a tots els usuaris amb el rol \"usuari\"",
@ -160,6 +164,7 @@
"Banners": "Banners", "Banners": "Banners",
"Base Model (From)": "Model base (des de)", "Base Model (From)": "Model base (des de)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "La memòria cau de la llista de models base accelera l'accés obtenint els models base només a l'inici o en desar la configuració; és més ràpid, però és possible que no mostri els canvis recents del model base.", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "La memòria cau de la llista de models base accelera l'accés obtenint els models base només a l'inici o en desar la configuració; és més ràpid, però és possible que no mostri els canvis recents del model base.",
"Bearer": "",
"before": "abans", "before": "abans",
"Being lazy": "Essent mandrós", "Being lazy": "Essent mandrós",
"Beta": "Beta", "Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Capturar àudio", "Capture Audio": "Capturar àudio",
"Certificate Path": "Camí del certificat", "Certificate Path": "Camí del certificat",
"Change Password": "Canviar la contrasenya", "Change Password": "Canviar la contrasenya",
"Channel deleted successfully": "",
"Channel Name": "Nom del canal", "Channel Name": "Nom del canal",
"Channel updated successfully": "",
"Channels": "Canals", "Channels": "Canals",
"Character": "Personatge", "Character": "Personatge",
"Character limit for autocomplete generation input": "Límit de caràcters per a l'entrada de generació automàtica", "Character limit for autocomplete generation input": "Límit de caràcters per a l'entrada de generació automàtica",
@ -238,6 +245,7 @@
"Close modal": "Tancar el modal", "Close modal": "Tancar el modal",
"Close settings modal": "Tancar el modal de configuració", "Close settings modal": "Tancar el modal de configuració",
"Close Sidebar": "Tancar la barra lateral", "Close Sidebar": "Tancar la barra lateral",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Bloc de codi", "Code Block": "Bloc de codi",
"Code execution": "Execució de codi", "Code execution": "Execució de codi",
"Code Execution": "Execució de Codi", "Code Execution": "Execució de Codi",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "L'URL base de ComfyUI és obligatòria.", "ComfyUI Base URL is required.": "L'URL base de ComfyUI és obligatòria.",
"ComfyUI Workflow": "Flux de treball de ComfyUI", "ComfyUI Workflow": "Flux de treball de ComfyUI",
"ComfyUI Workflow Nodes": "Nodes del flux de treball de ComfyUI", "ComfyUI Workflow Nodes": "Nodes del flux de treball de ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Comanda", "Command": "Comanda",
"Comment": "Comentari", "Comment": "Comentari",
"Completions": "Completaments", "Completions": "Completaments",
"Compress Images in Channels": "Comprimir imatges en els canals", "Compress Images in Channels": "Comprimir imatges en els canals",
"Concurrent Requests": "Peticions simultànies", "Concurrent Requests": "Peticions simultànies",
"Config imported successfully": "",
"Configure": "Configurar", "Configure": "Configurar",
"Confirm": "Confirmar", "Confirm": "Confirmar",
"Confirm Password": "Confirmar la contrasenya", "Confirm Password": "Confirmar la contrasenya",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "API de Datalab Marker requereix clau.", "Datalab Marker API Key required.": "API de Datalab Marker requereix clau.",
"DD/MM/YYYY": "DD/MM/YYYY", "DD/MM/YYYY": "DD/MM/YYYY",
"December": "Desembre", "December": "Desembre",
"Deepgram": "",
"Default": "Per defecte", "Default": "Per defecte",
"Default (Open AI)": "Per defecte (Open AI)", "Default (Open AI)": "Per defecte (Open AI)",
"Default (SentenceTransformers)": "Per defecte (SentenceTransformers)", "Default (SentenceTransformers)": "Per defecte (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Connexions directes", "Direct Connections": "Connexions directes",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Les connexions directes permeten als usuaris connectar-se als seus propis endpoints d'API compatibles amb OpenAI.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Les connexions directes permeten als usuaris connectar-se als seus propis endpoints d'API compatibles amb OpenAI.",
"Direct Tool Servers": "Servidors d'eines directes", "Direct Tool Servers": "Servidors d'eines directes",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "Deshabilitar l'interpret de codi", "Disable Code Interpreter": "Deshabilitar l'interpret de codi",
"Disable Image Extraction": "Deshabilitar l'extracció d'imatges", "Disable Image Extraction": "Deshabilitar l'extracció d'imatges",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Desactiva l'extracció d'imatges del PDF. Si Utilitza LLM està habilitat, les imatges es descriuran automàticament. Per defecte és Fals.", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Desactiva l'extracció d'imatges del PDF. Si Utilitza LLM està habilitat, les imatges es descriuran automàticament. Per defecte és Fals.",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Introdueix parelles de \"token:valor de biaix\" separats per comes (exemple: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Introdueix parelles de \"token:valor de biaix\" separats per comes (exemple: 5432:100, 413:-100)",
"Enter Config in JSON format": "Introdueix la configuració en format JSON", "Enter Config in JSON format": "Introdueix la configuració en format JSON",
"Enter content for the pending user info overlay. Leave empty for default.": "Introdueix el contingut per a la finestra de dades d'usuari pendent. Deixa-ho buit per a valor per defecte.", "Enter content for the pending user info overlay. Leave empty for default.": "Introdueix el contingut per a la finestra de dades d'usuari pendent. Deixa-ho buit per a valor per defecte.",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "Introdueix l'URL de base de l'API Datalab Marker", "Enter Datalab Marker API Base URL": "Introdueix l'URL de base de l'API Datalab Marker",
"Enter Datalab Marker API Key": "Introdueix la clau API de Datalab Marker", "Enter Datalab Marker API Key": "Introdueix la clau API de Datalab Marker",
"Enter description": "Introdueix la descripció", "Enter description": "Introdueix la descripció",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Introdueix l'URL en brut de Github", "Enter Github Raw URL": "Introdueix l'URL en brut de Github",
"Enter Google PSE API Key": "Introdueix la clau API de Google PSE", "Enter Google PSE API Key": "Introdueix la clau API de Google PSE",
"Enter Google PSE Engine Id": "Introdueix l'identificador del motor PSE de Google", "Enter Google PSE Engine Id": "Introdueix l'identificador del motor PSE de Google",
"Enter hex color (e.g. #FF0000)": "",
"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)",
"Enter Jina API Key": "Introdueix la clau API de Jina", "Enter Jina API Key": "Introdueix la clau API de Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "Introdueix la configuració JSON (per exemple, {\"disable_links\": true})", "Enter JSON config (e.g., {\"disable_links\": true})": "Introdueix la configuració JSON (per exemple, {\"disable_links\": true})",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Introdueix el Top K Reranker", "Enter Top K Reranker": "Introdueix el Top K Reranker",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Introdueix l'URL (p. ex. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Introdueix l'URL (p. ex. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Introdueix l'URL (p. ex. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Introdueix l'URL (p. ex. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "Introdueix la contrassenya de Yacy", "Enter Yacy Password": "Introdueix la contrassenya de Yacy",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Introdueix la URL de Yacy (p. ex. http://yacy.example.com:8090)", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Introdueix la URL de Yacy (p. ex. http://yacy.example.com:8090)",
"Enter Yacy Username": "Introdueix l'usuari de Yacy", "Enter Yacy Username": "Introdueix l'usuari de Yacy",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Entra la URL del webhook", "Enter your webhook URL": "Entra la URL del webhook",
"Error": "Error", "Error": "Error",
"ERROR": "ERROR", "ERROR": "ERROR",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Error en accedir a Google Drive: {{error}}", "Error accessing Google Drive: {{error}}": "Error en accedir a Google Drive: {{error}}",
"Error accessing media devices.": "Error en accedir als dispositius multimèdia", "Error accessing media devices.": "Error en accedir als dispositius multimèdia",
"Error starting recording.": "Error en començar a enregistrar", "Error starting recording.": "Error en començar a enregistrar",
"Error unloading model: {{error}}": "Error en descarregar el model: {{error}}", "Error unloading model: {{error}}": "Error en descarregar el model: {{error}}",
"Error uploading file: {{error}}": "Error en pujar l'arxiu: {{error}}", "Error uploading file: {{error}}": "Error en pujar l'arxiu: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Avaluacions", "Evaluations": "Avaluacions",
"Everyone": "Tothom", "Everyone": "Tothom",
"Exa API Key": "Clau API d'EXA", "Exa API Key": "Clau API d'EXA",
@ -725,6 +744,7 @@
"H2": "H2", "H2": "H2",
"H3": "H3", "H3": "H3",
"Haptic Feedback": "Retorn hàptic", "Haptic Feedback": "Retorn hàptic",
"Height": "",
"Hello, {{name}}": "Hola, {{name}}", "Hello, {{name}}": "Hola, {{name}}",
"Help": "Ajuda", "Help": "Ajuda",
"Help us create the best community leaderboard by sharing your feedback history!": "Ajuda'ns a crear la millor taula de classificació de la comunitat compartint el teu historial de comentaris!", "Help us create the best community leaderboard by sharing your feedback history!": "Ajuda'ns a crear la millor taula de classificació de la comunitat compartint el teu historial de comentaris!",
@ -733,6 +753,7 @@
"Hide": "Amaga", "Hide": "Amaga",
"Hide from Sidebar": "Amagar de la barra lateral", "Hide from Sidebar": "Amagar de la barra lateral",
"Hide Model": "Amagar el model", "Hide Model": "Amagar el model",
"High": "",
"High Contrast Mode": "Mode d'alt contrast", "High Contrast Mode": "Mode d'alt contrast",
"Home": "Inici", "Home": "Inici",
"Host": "Servidor", "Host": "Servidor",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injectar tot el contingut com a context per a un processament complet, això es recomana per a consultes complexes.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injectar tot el contingut com a context per a un processament complet, això es recomana per a consultes complexes.",
"Input": "Entrada", "Input": "Entrada",
"Input commands": "Entra comandes", "Input commands": "Entra comandes",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Variables d'entrada", "Input Variables": "Variables d'entrada",
"Insert": "Inserir", "Insert": "Inserir",
"Insert Follow-Up Prompt to Input": "Inserir un missatge de seguiment per a l'entrada", "Insert Follow-Up Prompt to Input": "Inserir un missatge de seguiment per a l'entrada",
@ -789,6 +811,7 @@
"Invalid file content": "Continguts del fitxer no vàlids", "Invalid file content": "Continguts del fitxer no vàlids",
"Invalid file format.": "Format d'arxiu no vàlid.", "Invalid file format.": "Format d'arxiu no vàlid.",
"Invalid JSON file": "Arxiu JSON no vàlid", "Invalid JSON file": "Arxiu JSON no vàlid",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "Format JSON no vàlid a la configuració addicional", "Invalid JSON format in Additional Config": "Format JSON no vàlid a la configuració addicional",
"Invalid Tag": "Etiqueta no vàlida", "Invalid Tag": "Etiqueta no vàlida",
"is typing...": "està escrivint...", "is typing...": "està escrivint...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "Mantenir els missatges de seguiment en el xat", "Keep Follow-Up Prompts in Chat": "Mantenir els missatges de seguiment en el xat",
"Keep in Sidebar": "Mantenir a la barra lateral", "Keep in Sidebar": "Mantenir a la barra lateral",
"Key": "Clau", "Key": "Clau",
"Key is required": "",
"Keyboard shortcuts": "Dreceres de teclat", "Keyboard shortcuts": "Dreceres de teclat",
"Knowledge": "Coneixement", "Knowledge": "Coneixement",
"Knowledge Access": "Accés al coneixement", "Knowledge Access": "Accés al coneixement",
"Knowledge Base": "Base de coneixement", "Knowledge Base": "Base de coneixement",
"Knowledge created successfully.": "Coneixement creat correctament.", "Knowledge created successfully.": "Coneixement creat correctament.",
"Knowledge deleted successfully.": "Coneixement eliminat correctament.", "Knowledge deleted successfully.": "Coneixement eliminat correctament.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Compartir públicament el Coneixement", "Knowledge Public Sharing": "Compartir públicament el Coneixement",
"Knowledge reset successfully.": "Coneixement restablert correctament.", "Knowledge reset successfully.": "Coneixement restablert correctament.",
"Knowledge updated successfully": "Coneixement actualitzat correctament.", "Knowledge updated successfully": "Coneixement actualitzat correctament.",
@ -852,6 +878,7 @@
"Local Task Model": "Model local de tasques", "Local Task Model": "Model local de tasques",
"Location access not allowed": "Accés a la ubicació no permesa", "Location access not allowed": "Accés a la ubicació no permesa",
"Lost": "Perdut", "Lost": "Perdut",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Creat per la Comunitat OpenWebUI", "Made by Open WebUI Community": "Creat per la Comunitat OpenWebUI",
"Make password visible in the user interface": "Fer que la contrasenya sigui visible a la interficie d'usuari", "Make password visible in the user interface": "Fer que la contrasenya sigui visible a la interficie d'usuari",
@ -873,6 +900,7 @@
"Max Upload Size": "Mida màxima de càrrega", "Max Upload Size": "Mida màxima de càrrega",
"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": "Maig", "May": "Maig",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Les memòries accessibles pels models de llenguatge es mostraran aquí.", "Memories accessible by LLMs will be shown here.": "Les memòries accessibles pels models de llenguatge es mostraran aquí.",
"Memory": "Memòria", "Memory": "Memòria",
"Memory added successfully": "Memòria afegida correctament", "Memory added successfully": "Memòria afegida correctament",
@ -908,6 +936,7 @@
"Model ID is required.": "L'ID del model és necessari", "Model ID is required.": "L'ID del model és necessari",
"Model IDs": "Identificadors del model", "Model IDs": "Identificadors del model",
"Model Name": "Nom del model", "Model Name": "Nom del model",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "El nom del model és necessari", "Model Name is required.": "El nom del model és necessari",
"Model not selected": "Model no seleccionat", "Model not selected": "Model no seleccionat",
"Model Params": "Paràmetres del model", "Model Params": "Paràmetres del model",
@ -926,6 +955,7 @@
"More Concise": "Més precís", "More Concise": "Més precís",
"More Options": "Més opcions", "More Options": "Més opcions",
"Name": "Nom", "Name": "Nom",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Anomena la teva base de coneixement", "Name your knowledge base": "Anomena la teva base de coneixement",
"Native": "Natiu", "Native": "Natiu",
"New Button": "Botó nou", "New Button": "Botó nou",
@ -960,7 +990,9 @@
"No search query generated": "No s'ha generat cap consulta", "No search query generated": "No s'ha generat cap consulta",
"No source available": "Sense font disponible", "No source available": "Sense font disponible",
"No users were found.": "No s'han trobat usuaris", "No users were found.": "No s'han trobat usuaris",
"No valves": "",
"No valves to update": "No hi ha cap Valve per actualitzar", "No valves to update": "No hi ha cap Valve per actualitzar",
"Node Ids": "",
"None": "Cap", "None": "Cap",
"Not factually correct": "No és clarament correcte", "Not factually correct": "No és clarament correcte",
"Not helpful": "No ajuda", "Not helpful": "No ajuda",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Fer scroll en canviar de branca", "Scroll On Branch Change": "Fer scroll en canviar de branca",
"Search": "Cercar", "Search": "Cercar",
"Search a model": "Cercar un model", "Search a model": "Cercar un model",
"Search all emojis": "",
"Search Base": "Base de cerca", "Search Base": "Base de cerca",
"Search Chats": "Cercar xats", "Search Chats": "Cercar xats",
"Search Collection": "Cercar col·leccions", "Search Collection": "Cercar col·leccions",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Consulta l'arxiu readme.md per obtenir instruccions", "See readme.md for instructions": "Consulta l'arxiu readme.md per obtenir instruccions",
"See what's new": "Veure què hi ha de nou", "See what's new": "Veure què hi ha de nou",
"Seed": "Llavor", "Seed": "Llavor",
"Select": "",
"Select a base model": "Seleccionar un model base", "Select a base model": "Seleccionar un model base",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "Seleccionar una conversa a previsualitzar", "Select a conversation to preview": "Seleccionar una conversa a previsualitzar",
"Select a engine": "Seleccionar un motor", "Select a engine": "Seleccionar un motor",
"Select a function": "Seleccionar una funció", "Select a function": "Seleccionar una funció",
"Select a group": "Seleccionar un grup", "Select a group": "Seleccionar un grup",
"Select a language": "",
"Select a mode": "",
"Select a model": "Seleccionar un model", "Select a model": "Seleccionar un model",
"Select a model (optional)": "",
"Select a pipeline": "Seleccionar una Pipeline", "Select a pipeline": "Seleccionar una Pipeline",
"Select a pipeline url": "Seleccionar l'URL d'una Pipeline", "Select a pipeline url": "Seleccionar l'URL d'una Pipeline",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Seleccionar una eina", "Select a tool": "Seleccionar una eina",
"Select a voice": "",
"Select an auth method": "Seleccionar un mètode d'autenticació", "Select an auth method": "Seleccionar un mètode d'autenticació",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Seleccionar una instància d'Ollama", "Select an Ollama instance": "Seleccionar una instància d'Ollama",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Seleccionar el motor", "Select Engine": "Seleccionar el motor",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Seleccionar coneixement", "Select Knowledge": "Seleccionar coneixement",
"Select only one model to call": "Seleccionar només un model per trucar", "Select only one model to call": "Seleccionar només un model per trucar",
"Selected model(s) do not support image inputs": "El(s) model(s) seleccionats no admeten l'entrada d'imatges", "Selected model(s) do not support image inputs": "El(s) model(s) seleccionats no admeten l'entrada d'imatges",
@ -1215,6 +1262,7 @@
"Serply API Key": "Clau API de Serply", "Serply API Key": "Clau API de Serply",
"Serpstack API Key": "Clau API de Serpstack", "Serpstack API Key": "Clau API de Serpstack",
"Server connection verified": "Connexió al servidor verificada", "Server connection verified": "Connexió al servidor verificada",
"Session": "",
"Set as default": "Establir com a predeterminat", "Set as default": "Establir com a predeterminat",
"Set CFG Scale": "Establir l'escala CFG", "Set CFG Scale": "Establir l'escala CFG",
"Set Default Model": "Establir el model predeterminat", "Set Default Model": "Establir el model predeterminat",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "Ometre la memòria cau", "Skip Cache": "Ometre la memòria cau",
"Skip the cache and re-run the inference. Defaults to False.": "Omet la memòria cai i torna a executar la inferència. Per defecte és Fals.", "Skip the cache and re-run the inference. Defaults to False.": "Omet la memòria cai i torna a executar la inferència. Per defecte és Fals.",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "sID de l'API de Sougou Search", "Sougou Search API sID": "sID de l'API de Sougou Search",
"Sougou Search API SK": "SK de l'API de Sougou Search", "Sougou Search API SK": "SK de l'API de Sougou Search",
"Source": "Font", "Source": "Font",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Exportació en PDF estilitzat", "Stylized PDF Export": "Exportació en PDF estilitzat",
"Subtitle (e.g. about the Roman Empire)": "Subtítol (per exemple, sobre l'Imperi Romà)", "Subtitle (e.g. about the Roman Empire)": "Subtítol (per exemple, sobre l'Imperi Romà)",
"Success": "Èxit", "Success": "Èxit",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Actualitzat correctament.", "Successfully updated.": "Actualitzat correctament.",
"Suggest a change": "Suggerir un canvi", "Suggest a change": "Suggerir un canvi",
"Suggested": "Suggerit", "Suggested": "Suggerit",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "La mida màxima del fitxer en MB. Si la mida del fitxer supera aquest límit, el fitxer no es carregarà.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "La mida màxima del fitxer en MB. Si la mida del fitxer supera aquest límit, el fitxer no es carregarà.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "El nombre màxim de fitxers que es poden utilitzar alhora al xat. Si el nombre de fitxers supera aquest límit, els fitxers no es penjaran.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "El nombre màxim de fitxers que es poden utilitzar alhora al xat. Si el nombre de fitxers supera aquest límit, els fitxers no es penjaran.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Format de sortida per al text. Pot ser 'json', 'markdown' o 'html'. Per defecte és 'markdown'.", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Format de sortida per al text. Pot ser 'json', 'markdown' o 'html'. Per defecte és 'markdown'.",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "El valor de puntuació hauria de ser entre 0.0 (0%) i 1.0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "El valor de puntuació hauria de ser entre 0.0 (0%) i 1.0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "La mida del fragment Delta de flux per al model. Si augmentes la mida del fragment, el model respondrà amb fragments de text més grans alhora.", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "La mida del fragment Delta de flux per al model. Si augmentes la mida del fragment, el model respondrà amb fragments de text més grans alhora.",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "La temperatura del model. Augmentar la temperatura farà que el model respongui de manera més creativa.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "La temperatura del model. Augmentar la temperatura farà que el model respongui de manera més creativa.",
@ -1439,7 +1495,9 @@
"Upload Files": "Pujar fitxers", "Upload Files": "Pujar fitxers",
"Upload Pipeline": "Pujar una Pipeline", "Upload Pipeline": "Pujar una Pipeline",
"Upload Progress": "Progrés de càrrega", "Upload Progress": "Progrés de càrrega",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "Mode URL", "URL Mode": "Mode URL",
"Usage": "Ús", "Usage": "Ús",
"Use '#' in the prompt input to load and include your knowledge.": "Utilitza '#' a l'entrada de la indicació per carregar i incloure els teus coneixements.", "Use '#' in the prompt input to load and include your knowledge.": "Utilitza '#' a l'entrada de la indicació per carregar i incloure els teus coneixements.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "Utilitzant RAG", "Using Focused Retrieval": "Utilitzant RAG",
"Using the default arena model with all models. Click the plus button to add custom models.": "S'utilitza el model d'Arena predeterminat amb tots els models. Clica el botó més per afegir models personalitzats.", "Using the default arena model with all models. Click the plus button to add custom models.": "S'utilitza el model d'Arena predeterminat amb tots els models. Clica el botó més per afegir models personalitzats.",
"Valid time units:": "Unitats de temps vàlides:", "Valid time units:": "Unitats de temps vàlides:",
"Validate certificate": "",
"Valves": "Valves", "Valves": "Valves",
"Valves updated": "Valves actualitzades", "Valves updated": "Valves actualitzades",
"Valves updated successfully": "Valves actualitzades correctament", "Valves updated successfully": "Valves actualitzades correctament",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (local)", "Whisper (Local)": "Whisper (local)",
"Why?": "Per què?", "Why?": "Per què?",
"Widescreen Mode": "Mode de pantalla ampla", "Widescreen Mode": "Mode de pantalla ampla",
"Width": "",
"Won": "Ha guanyat", "Won": "Ha guanyat",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Funciona juntament amb top-k. Un valor més alt (p. ex., 0,95) donarà lloc a un text més divers, mentre que un valor més baix (p. ex., 0,5) generarà un text més concentrat i conservador.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Funciona juntament amb top-k. Un valor més alt (p. ex., 0,95) donarà lloc a un text més divers, mentre que un valor més baix (p. ex., 0,5) generarà un text més concentrat i conservador.",
"Workspace": "Espai de treball", "Workspace": "Espai de treball",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "", "{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "Backend {{webUIName}} gikinahanglan", "{{webUIName}} Backend Required": "Backend {{webUIName}} gikinahanglan",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "", "Account Activation Pending": "",
"Accurate information": "", "Accurate information": "",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "", "Actions": "",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "", "Amazing": "",
"an assistant": "usa ka katabang", "an assistant": "usa ka katabang",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "", "API keys": "",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "", "Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "", "before": "",
"Being lazy": "", "Being lazy": "",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "Usba ang password", "Change Password": "Usba ang password",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "", "ComfyUI Base URL is required.": "",
"ComfyUI Workflow": "", "ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "", "ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Pag-order", "Command": "Pag-order",
"Comment": "", "Comment": "",
"Completions": "", "Completions": "",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "", "Concurrent Requests": "",
"Config imported successfully": "",
"Configure": "", "Configure": "",
"Confirm": "", "Confirm": "",
"Confirm Password": "Kumpirma ang password", "Confirm Password": "Kumpirma ang password",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "", "December": "",
"Deepgram": "",
"Default": "Pinaagi sa default", "Default": "Pinaagi sa default",
"Default (Open AI)": "", "Default (Open AI)": "",
"Default (SentenceTransformers)": "", "Default (SentenceTransformers)": "",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "", "Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "", "Enter Github Raw URL": "",
"Enter Google PSE API Key": "", "Enter Google PSE API Key": "",
"Enter Google PSE Engine Id": "", "Enter Google PSE Engine Id": "",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Pagsulod sa gidak-on sa hulagway (pananglitan 512x512)", "Enter Image Size (e.g. 512x512)": "Pagsulod sa gidak-on sa hulagway (pananglitan 512x512)",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Pagsulod sa URL (e.g. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Pagsulod sa URL (e.g. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "", "Enter URL (e.g. http://localhost:11434)": "",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "", "Error": "",
"ERROR": "", "ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "", "Evaluations": "",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "Maayong buntag, {{name}}", "Hello, {{name}}": "Maayong buntag, {{name}}",
"Help": "", "Help": "",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "Tagoa", "Hide": "Tagoa",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Pagsulod sa input commands", "Input commands": "Pagsulod sa input commands",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "", "Invalid file format.": "",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "", "Invalid Tag": "",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "Mga shortcut sa keyboard", "Keyboard shortcuts": "Mga shortcut sa keyboard",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "", "Knowledge created successfully.": "",
"Knowledge deleted successfully.": "", "Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "", "Knowledge reset successfully.": "",
"Knowledge updated successfully": "", "Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "", "Lost": "",
"Low": "",
"LTR": "", "LTR": "",
"Made by Open WebUI Community": "Gihimo sa komunidad sa OpenWebUI", "Made by Open WebUI Community": "Gihimo sa komunidad sa OpenWebUI",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Ang labing taas nga 3 nga mga disenyo mahimong ma-download nga dungan. ", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Ang labing taas nga 3 nga mga disenyo mahimong ma-download nga dungan. ",
"May": "", "May": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "", "Memory": "",
"Memory added successfully": "", "Memory added successfully": "",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "", "Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Wala gipili ang modelo", "Model not selected": "Wala gipili ang modelo",
"Model Params": "", "Model Params": "",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Ngalan", "Name": "Ngalan",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "", "No search query generated": "",
"No source available": "Walay tinubdan nga anaa", "No source available": "Walay tinubdan nga anaa",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "", "No valves to update": "",
"Node Ids": "",
"None": "", "None": "",
"Not factually correct": "", "Not factually correct": "",
"Not helpful": "", "Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Pagpanukiduki", "Search": "Pagpanukiduki",
"Search a model": "", "Search a model": "",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "", "Search Chats": "",
"Search Collection": "", "Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Tan-awa ang readme.md alang sa mga panudlo", "See readme.md for instructions": "Tan-awa ang readme.md alang sa mga panudlo",
"See what's new": "Tan-awa unsay bag-o", "See what's new": "Tan-awa unsay bag-o",
"Seed": "Binhi", "Seed": "Binhi",
"Select": "",
"Select a base model": "", "Select a base model": "",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "", "Select a engine": "",
"Select a function": "", "Select a function": "",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Pagpili og modelo", "Select a model": "Pagpili og modelo",
"Select a model (optional)": "",
"Select a pipeline": "", "Select a pipeline": "",
"Select a pipeline url": "", "Select a pipeline url": "",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "", "Select a tool": "",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "", "Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "", "Select Knowledge": "",
"Select only one model to call": "", "Select only one model to call": "",
"Selected model(s) do not support image inputs": "", "Selected model(s) do not support image inputs": "",
@ -1215,6 +1262,7 @@
"Serply API Key": "", "Serply API Key": "",
"Serpstack API Key": "", "Serpstack API Key": "",
"Server connection verified": "Gipamatud-an nga koneksyon sa server", "Server connection verified": "Gipamatud-an nga koneksyon sa server",
"Session": "",
"Set as default": "Define pinaagi sa default", "Set as default": "Define pinaagi sa default",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "Ibutang ang default template", "Set Default Model": "Ibutang ang default template",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Tinubdan", "Source": "Tinubdan",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "", "Subtitle (e.g. about the Roman Empire)": "",
"Success": "Kalampusan", "Success": "Kalampusan",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Malampuson nga na-update.", "Successfully updated.": "Malampuson nga na-update.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "", "Suggested": "",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "", "Upload Files": "",
"Upload Pipeline": "", "Upload Pipeline": "",
"Upload Progress": "Pag-uswag sa Pag-upload", "Upload Progress": "Pag-uswag sa Pag-upload",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "URL mode", "URL Mode": "URL mode",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "", "Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "Balido nga mga yunit sa oras:", "Valid time units:": "Balido nga mga yunit sa oras:",
"Validate certificate": "",
"Valves": "", "Valves": "",
"Valves updated": "", "Valves updated": "",
"Valves updated successfully": "", "Valves updated successfully": "",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "", "Whisper (Local)": "",
"Why?": "", "Why?": "",
"Widescreen Mode": "", "Widescreen Mode": "",
"Width": "",
"Won": "", "Won": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "", "Workspace": "",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}'s konverzace", "{{user}}'s Chats": "{{user}}'s konverzace",
"{{webUIName}} Backend Required": "Požadován {{webUIName}} Backend", "{{webUIName}} Backend Required": "Požadován {{webUIName}} Backend",
"*Prompt node ID(s) are required for image generation": "*Jsou vyžadovány IDs pro prompt node pro generování obrázků", "*Prompt node ID(s) are required for image generation": "*Jsou vyžadovány IDs pro prompt node pro generování obrázků",
@ -29,6 +30,7 @@
"Account Activation Pending": "Čeká na aktivaci účtu", "Account Activation Pending": "Čeká na aktivaci účtu",
"Accurate information": "Přesné informace", "Accurate information": "Přesné informace",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Akce", "Actions": "Akce",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktivujte tenhle příkaz napsáním \"/{{COMMAND}}\" do chat inputu", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktivujte tenhle příkaz napsáním \"/{{COMMAND}}\" do chat inputu",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "", "Amazing": "",
"an assistant": "asistent", "an assistant": "asistent",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "API klíče", "API keys": "API klíče",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "Bannery", "Banners": "Bannery",
"Base Model (From)": "Základní model (z)", "Base Model (From)": "Základní model (z)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "před", "before": "před",
"Being lazy": "", "Being lazy": "",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "Změnit heslo", "Change Password": "Změnit heslo",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "Znak", "Character": "Znak",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Provádění kódu", "Code execution": "Provádění kódu",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "Je vyžadována základní URL pro ComfyUI.", "ComfyUI Base URL is required.": "Je vyžadována základní URL pro ComfyUI.",
"ComfyUI Workflow": "Pracovní postup ComfyUI", "ComfyUI Workflow": "Pracovní postup ComfyUI",
"ComfyUI Workflow Nodes": "Pracovní uzly ComfyUI", "ComfyUI Workflow Nodes": "Pracovní uzly ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Příkaz", "Command": "Příkaz",
"Comment": "", "Comment": "",
"Completions": "Doplnění", "Completions": "Doplnění",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Současné požadavky", "Concurrent Requests": "Současné požadavky",
"Config imported successfully": "",
"Configure": "Konfigurovat", "Configure": "Konfigurovat",
"Confirm": "Potvrdit", "Confirm": "Potvrdit",
"Confirm Password": "Potvrzení hesla", "Confirm Password": "Potvrzení hesla",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Prosinec", "December": "Prosinec",
"Deepgram": "",
"Default": "Výchozí hodnoty nebo nastavení.", "Default": "Výchozí hodnoty nebo nastavení.",
"Default (Open AI)": "Výchozí (Open AI)", "Default (Open AI)": "Výchozí (Open AI)",
"Default (SentenceTransformers)": "Výchozí (SentenceTransformers)", "Default (SentenceTransformers)": "Výchozí (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "Zadejte popis", "Enter description": "Zadejte popis",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Zadejte URL adresu Github Raw", "Enter Github Raw URL": "Zadejte URL adresu Github Raw",
"Enter Google PSE API Key": "Zadejte klíč rozhraní API Google PSE", "Enter Google PSE API Key": "Zadejte klíč rozhraní API Google PSE",
"Enter Google PSE Engine Id": "Zadejte ID vyhledávacího mechanismu Google PSE", "Enter Google PSE Engine Id": "Zadejte ID vyhledávacího mechanismu Google PSE",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Zadejte velikost obrázku (např. 512x512)", "Enter Image Size (e.g. 512x512)": "Zadejte velikost obrázku (např. 512x512)",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Zadejte URL (např. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Zadejte URL (např. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Zadejte URL (např. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Zadejte URL (např. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "Chyba", "Error": "Chyba",
"ERROR": "Chyba", "ERROR": "Chyba",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Hodnocení", "Evaluations": "Hodnocení",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Haptická zpětná vazba", "Haptic Feedback": "Haptická zpětná vazba",
"Height": "",
"Hello, {{name}}": "Ahoj, {{name}}", "Hello, {{name}}": "Ahoj, {{name}}",
"Help": "Pomoc", "Help": "Pomoc",
"Help us create the best community leaderboard by sharing your feedback history!": "Pomozte nám vytvořit nejlepší komunitní žebříček sdílením historie vaší zpětné vazby!", "Help us create the best community leaderboard by sharing your feedback history!": "Pomozte nám vytvořit nejlepší komunitní žebříček sdílením historie vaší zpětné vazby!",
@ -733,6 +753,7 @@
"Hide": "Schovej", "Hide": "Schovej",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Vstupní příkazy", "Input commands": "Vstupní příkazy",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "Neplatný formát souboru.", "Invalid file format.": "Neplatný formát souboru.",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Neplatný tag", "Invalid Tag": "Neplatný tag",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "Klávesové zkratky", "Keyboard shortcuts": "Klávesové zkratky",
"Knowledge": "Znalosti", "Knowledge": "Znalosti",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Znalost úspěšně vytvořena.", "Knowledge created successfully.": "Znalost úspěšně vytvořena.",
"Knowledge deleted successfully.": "Znalosti byly úspěšně odstraněny.", "Knowledge deleted successfully.": "Znalosti byly úspěšně odstraněny.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Úspěšné obnovení znalostí.", "Knowledge reset successfully.": "Úspěšné obnovení znalostí.",
"Knowledge updated successfully": "Znalosti úspěšně aktualizovány", "Knowledge updated successfully": "Znalosti úspěšně aktualizovány",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "Ztracený", "Lost": "Ztracený",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Vytvořeno komunitou OpenWebUI", "Made by Open WebUI Community": "Vytvořeno komunitou OpenWebUI",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "Maximální velikost nahrávání", "Max Upload Size": "Maximální velikost nahrávání",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximálně 3 modely mohou být staženy současně. Prosím zkuste to znovu později.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximálně 3 modely mohou být staženy současně. Prosím zkuste to znovu později.",
"May": "květen", "May": "květen",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Vzpomínky přístupné LLMs budou zobrazeny zde.", "Memories accessible by LLMs will be shown here.": "Vzpomínky přístupné LLMs budou zobrazeny zde.",
"Memory": "Paměť", "Memory": "Paměť",
"Memory added successfully": "Paměť byla úspěšně přidána.", "Memory added successfully": "Paměť byla úspěšně přidána.",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "Název modelu", "Model Name": "Název modelu",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Model nebyl vybrán", "Model not selected": "Model nebyl vybrán",
"Model Params": "Parametry modelu", "Model Params": "Parametry modelu",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Jméno", "Name": "Jméno",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Nebyl vygenerován žádný vyhledávací dotaz.", "No search query generated": "Nebyl vygenerován žádný vyhledávací dotaz.",
"No source available": "Není k dispozici žádný zdroj.", "No source available": "Není k dispozici žádný zdroj.",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "Žádné ventily k aktualizaci", "No valves to update": "Žádné ventily k aktualizaci",
"Node Ids": "",
"None": "Žádný", "None": "Žádný",
"Not factually correct": "Není fakticky správné", "Not factually correct": "Není fakticky správné",
"Not helpful": "Nepomocné", "Not helpful": "Nepomocné",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Vyhledávání", "Search": "Vyhledávání",
"Search a model": "Vyhledat model", "Search a model": "Vyhledat model",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "Vyhledávání v chatu", "Search Chats": "Vyhledávání v chatu",
"Search Collection": "Hledat kolekci", "Search Collection": "Hledat kolekci",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Podívejte se do {{readme.md}} pro pokyny.", "See readme.md for instructions": "Podívejte se do {{readme.md}} pro pokyny.",
"See what's new": "Podívejte se, co je nového", "See what's new": "Podívejte se, co je nového",
"Seed": "Semínko", "Seed": "Semínko",
"Select": "",
"Select a base model": "Vyberte základní model", "Select a base model": "Vyberte základní model",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Vyberte engine", "Select a engine": "Vyberte engine",
"Select a function": "Vyberte funkci", "Select a function": "Vyberte funkci",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Vyberte model", "Select a model": "Vyberte model",
"Select a model (optional)": "",
"Select a pipeline": "Vyberte pipeline", "Select a pipeline": "Vyberte pipeline",
"Select a pipeline url": "Vyberte URL adresu kanálu", "Select a pipeline url": "Vyberte URL adresu kanálu",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Vyberte nástroj", "Select a tool": "Vyberte nástroj",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Vyberte engine", "Select Engine": "Vyberte engine",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Vybrat znalosti", "Select Knowledge": "Vybrat znalosti",
"Select only one model to call": "Vyberte pouze jeden model, který chcete použít", "Select only one model to call": "Vyberte pouze jeden model, který chcete použít",
"Selected model(s) do not support image inputs": "Vybraný(é) model(y) nepodporují vstupy v podobě obrázků.", "Selected model(s) do not support image inputs": "Vybraný(é) model(y) nepodporují vstupy v podobě obrázků.",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API klíč", "Serply API Key": "Serply API klíč",
"Serpstack API Key": "Klíč API pro Serpstack", "Serpstack API Key": "Klíč API pro Serpstack",
"Server connection verified": "Připojení k serveru ověřeno", "Server connection verified": "Připojení k serveru ověřeno",
"Session": "",
"Set as default": "Nastavit jako výchozí", "Set as default": "Nastavit jako výchozí",
"Set CFG Scale": "Nastavte hodnotu CFG Scale", "Set CFG Scale": "Nastavte hodnotu CFG Scale",
"Set Default Model": "Nastavení výchozího modelu", "Set Default Model": "Nastavení výchozího modelu",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Zdroj", "Source": "Zdroj",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Titulky (např. o Římské říši)", "Subtitle (e.g. about the Roman Empire)": "Titulky (např. o Římské říši)",
"Success": "Úspěch", "Success": "Úspěch",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Úspěšně aktualizováno.", "Successfully updated.": "Úspěšně aktualizováno.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Navrhované", "Suggested": "Navrhované",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Maximální velikost souboru v MB. Pokud velikost souboru překročí tento limit, soubor nebude nahrán.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Maximální velikost souboru v MB. Pokud velikost souboru překročí tento limit, soubor nebude nahrán.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Maximální počet souborů, které mohou být použity najednou v chatu. Pokud počet souborů překročí tento limit, soubory nebudou nahrány.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Maximální počet souborů, které mohou být použity najednou v chatu. Pokud počet souborů překročí tento limit, soubory nebudou nahrány.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Skóre by mělo být hodnotou mezi 0,0 (0%) a 1,0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Skóre by mělo být hodnotou mezi 0,0 (0%) a 1,0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Nahrát soubory", "Upload Files": "Nahrát soubory",
"Upload Pipeline": "Nahrát pipeline", "Upload Pipeline": "Nahrát pipeline",
"Upload Progress": "Průběh nahrávání", "Upload Progress": "Průběh nahrávání",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "Režim URL", "URL Mode": "Režim URL",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "Použijte '#' ve vstupu příkazu k načtení a zahrnutí vašich znalostí.", "Use '#' in the prompt input to load and include your knowledge.": "Použijte '#' ve vstupu příkazu k načtení a zahrnutí vašich znalostí.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Použití výchozího modelu arény se všemi modely. Kliknutím na tlačítko plus přidejte vlastní modely.", "Using the default arena model with all models. Click the plus button to add custom models.": "Použití výchozího modelu arény se všemi modely. Kliknutím na tlačítko plus přidejte vlastní modely.",
"Valid time units:": "Platné časové jednotky:", "Valid time units:": "Platné časové jednotky:",
"Validate certificate": "",
"Valves": "Ventily", "Valves": "Ventily",
"Valves updated": "Ventily aktualizovány", "Valves updated": "Ventily aktualizovány",
"Valves updated successfully": "Ventily byly úspěšně aktualizovány.", "Valves updated successfully": "Ventily byly úspěšně aktualizovány.",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Lokálně)", "Whisper (Local)": "Whisper (Lokálně)",
"Why?": "Proč?", "Why?": "Proč?",
"Widescreen Mode": "Režim širokoúhlého zobrazení", "Widescreen Mode": "Režim širokoúhlého zobrazení",
"Width": "",
"Won": "Vyhrál", "Won": "Vyhrál",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "", "Workspace": "",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} skjulte linjer", "{{COUNT}} hidden lines": "{{COUNT}} skjulte linjer",
"{{COUNT}} Replies": "{{COUNT}} svar", "{{COUNT}} Replies": "{{COUNT}} svar",
"{{COUNT}} words": "{{COUNT}} ord", "{{COUNT}} words": "{{COUNT}} ord",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}s chats", "{{user}}'s Chats": "{{user}}s chats",
"{{webUIName}} Backend Required": "{{webUIName}} Backend kræves", "{{webUIName}} Backend Required": "{{webUIName}} Backend kræves",
"*Prompt node ID(s) are required for image generation": "*Prompt node ID(s) er påkrævet for at kunne generere billeder", "*Prompt node ID(s) are required for image generation": "*Prompt node ID(s) er påkrævet for at kunne generere billeder",
@ -29,6 +30,7 @@
"Account Activation Pending": "Aktivering af profil afventer", "Account Activation Pending": "Aktivering af profil afventer",
"Accurate information": "Profilinformation", "Accurate information": "Profilinformation",
"Action": "Handling", "Action": "Handling",
"Action not found": "",
"Actions": "Handlinger", "Actions": "Handlinger",
"Activate": "Aktiver", "Activate": "Aktiver",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktiver denne kommando ved at skrive \"/{{COMMAND}}\" til chat input.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktiver denne kommando ved at skrive \"/{{COMMAND}}\" til chat input.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "Afspil altid notifikationslyde", "Always Play Notification Sound": "Afspil altid notifikationslyde",
"Amazing": "Fantastisk", "Amazing": "Fantastisk",
"an assistant": "en assistent", "an assistant": "en assistent",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Analyseret", "Analyzed": "Analyseret",
"Analyzing...": "Analyserer...", "Analyzing...": "Analyserer...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API nøgler endpoint forbehold", "API Key Endpoint Restrictions": "API nøgler endpoint forbehold",
"API keys": "API nøgler", "API keys": "API nøgler",
"API Version": "API Version", "API Version": "API Version",
"API Version is required": "",
"Application DN": "Application DN", "Application DN": "Application DN",
"Application DN Password": "Application DN Password", "Application DN Password": "Application DN Password",
"applies to all users with the \"user\" role": "gælder for alle brugere med \"bruger\" rolle", "applies to all users with the \"user\" role": "gælder for alle brugere med \"bruger\" rolle",
@ -160,6 +164,7 @@
"Banners": "Bannere", "Banners": "Bannere",
"Base Model (From)": "Base Model (Fra)", "Base Model (From)": "Base Model (Fra)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "Base Model List Cache øger hastigheden ved kun at hente base modeller ved opstart eller når indstillinger gemmes, men viser muligvis ikke nylige ændringer i base modeller.", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "Base Model List Cache øger hastigheden ved kun at hente base modeller ved opstart eller når indstillinger gemmes, men viser muligvis ikke nylige ændringer i base modeller.",
"Bearer": "",
"before": "før", "before": "før",
"Being lazy": "At være doven", "Being lazy": "At være doven",
"Beta": "Beta", "Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Optag lyd", "Capture Audio": "Optag lyd",
"Certificate Path": "Certifikat sti", "Certificate Path": "Certifikat sti",
"Change Password": "Skift password", "Change Password": "Skift password",
"Channel deleted successfully": "",
"Channel Name": "Kanalnavn", "Channel Name": "Kanalnavn",
"Channel updated successfully": "",
"Channels": "Kanaler", "Channels": "Kanaler",
"Character": "Karakterer", "Character": "Karakterer",
"Character limit for autocomplete generation input": "Karaktergrænse for genereret autofuldførsel", "Character limit for autocomplete generation input": "Karaktergrænse for genereret autofuldførsel",
@ -238,6 +245,7 @@
"Close modal": "Luk dialogboks", "Close modal": "Luk dialogboks",
"Close settings modal": "Luk dialogboks med indstillinger", "Close settings modal": "Luk dialogboks med indstillinger",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Kodeblok", "Code Block": "Kodeblok",
"Code execution": "Kode kørsel", "Code execution": "Kode kørsel",
"Code Execution": "Kode kørsel", "Code Execution": "Kode kørsel",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI Base URL er påkrævet.", "ComfyUI Base URL is required.": "ComfyUI Base URL er påkrævet.",
"ComfyUI Workflow": "ComfyUI Workflow", "ComfyUI Workflow": "ComfyUI Workflow",
"ComfyUI Workflow Nodes": "ComfyUI Workflow Nodes", "ComfyUI Workflow Nodes": "ComfyUI Workflow Nodes",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Kommando", "Command": "Kommando",
"Comment": "Kommentar", "Comment": "Kommentar",
"Completions": "Completions", "Completions": "Completions",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Concurrent requests", "Concurrent Requests": "Concurrent requests",
"Config imported successfully": "",
"Configure": "Konfigurer", "Configure": "Konfigurer",
"Confirm": "Bekræft", "Confirm": "Bekræft",
"Confirm Password": "Bekræft password", "Confirm Password": "Bekræft password",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Datalab Marker API nøgle påkrævet.", "Datalab Marker API Key required.": "Datalab Marker API nøgle påkrævet.",
"DD/MM/YYYY": "DD/MM/ÅÅÅÅ", "DD/MM/YYYY": "DD/MM/ÅÅÅÅ",
"December": "december", "December": "december",
"Deepgram": "",
"Default": "Standard", "Default": "Standard",
"Default (Open AI)": "Standard (Open AI)", "Default (Open AI)": "Standard (Open AI)",
"Default (SentenceTransformers)": "Standard (SentenceTransformers)", "Default (SentenceTransformers)": "Standard (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Direkte forbindelser", "Direct Connections": "Direkte forbindelser",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Direkte forbindelser tillader brugere at oprette forbindelse til deres egen OpenAI kompatible API endpoints.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Direkte forbindelser tillader brugere at oprette forbindelse til deres egen OpenAI kompatible API endpoints.",
"Direct Tool Servers": "Direkte værktøjsservere", "Direct Tool Servers": "Direkte værktøjsservere",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "Deaktiver kode interpreter", "Disable Code Interpreter": "Deaktiver kode interpreter",
"Disable Image Extraction": "Deaktiver billedudtrækning", "Disable Image Extraction": "Deaktiver billedudtrækning",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Deaktiver billedudtrækning fra PDF'en. Hvis Use LLM er aktiveret, vil billeder automatisk få undertekster. Standard er False.", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Deaktiver billedudtrækning fra PDF'en. Hvis Use LLM er aktiveret, vil billeder automatisk få undertekster. Standard er False.",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Indtast kommaseparerede \"token:bias_værdi\" par (eksempel: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Indtast kommaseparerede \"token:bias_værdi\" par (eksempel: 5432:100, 413:-100)",
"Enter Config in JSON format": "Indtast Config i JSON format", "Enter Config in JSON format": "Indtast Config i JSON format",
"Enter content for the pending user info overlay. Leave empty for default.": "Indtast indhold til afventende bruger informations overlay. Lad være tom for standard.", "Enter content for the pending user info overlay. Leave empty for default.": "Indtast indhold til afventende bruger informations overlay. Lad være tom for standard.",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "Indtast Datalab Marker API nøgle", "Enter Datalab Marker API Key": "Indtast Datalab Marker API nøgle",
"Enter description": "Indtast beskrivelse", "Enter description": "Indtast beskrivelse",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Indtast Github Raw URL", "Enter Github Raw URL": "Indtast Github Raw URL",
"Enter Google PSE API Key": "Indtast Google PSE API-nøgle", "Enter Google PSE API Key": "Indtast Google PSE API-nøgle",
"Enter Google PSE Engine Id": "Indtast Google PSE Engine ID", "Enter Google PSE Engine Id": "Indtast Google PSE Engine ID",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Indtast billedstørrelse (f.eks. 512x512)", "Enter Image Size (e.g. 512x512)": "Indtast billedstørrelse (f.eks. 512x512)",
"Enter Jina API Key": "Indtast Jina API nøgle", "Enter Jina API Key": "Indtast Jina API nøgle",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Indtast Top K Reranker", "Enter Top K Reranker": "Indtast Top K Reranker",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Indtast URL (f.eks. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Indtast URL (f.eks. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Indtast URL (f.eks. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Indtast URL (f.eks. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "Indtast Yacy adgangskode", "Enter Yacy Password": "Indtast Yacy adgangskode",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Indtast Yacy URL (f.eks. http://yacy.example.com:8090)", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Indtast Yacy URL (f.eks. http://yacy.example.com:8090)",
"Enter Yacy Username": "Indtast Yacy brugernavn", "Enter Yacy Username": "Indtast Yacy brugernavn",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Indtast din webhook URL", "Enter your webhook URL": "Indtast din webhook URL",
"Error": "Fejl", "Error": "Fejl",
"ERROR": "FEJL", "ERROR": "FEJL",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Fejl ved adgang til Google Drive: {{error}}", "Error accessing Google Drive: {{error}}": "Fejl ved adgang til Google Drive: {{error}}",
"Error accessing media devices.": "Fejl ved adgang til medieenheder.", "Error accessing media devices.": "Fejl ved adgang til medieenheder.",
"Error starting recording.": "Fejl ved start af optagelse.", "Error starting recording.": "Fejl ved start af optagelse.",
"Error unloading model: {{error}}": "Fejl ved aflæsning af model: {{error}}", "Error unloading model: {{error}}": "Fejl ved aflæsning af model: {{error}}",
"Error uploading file: {{error}}": "Fejl ved upload af fil: {{error}}", "Error uploading file: {{error}}": "Fejl ved upload af fil: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Evalueringer", "Evaluations": "Evalueringer",
"Everyone": "Alle", "Everyone": "Alle",
"Exa API Key": "Exa API-nøgle", "Exa API Key": "Exa API-nøgle",
@ -725,6 +744,7 @@
"H2": "H2", "H2": "H2",
"H3": "H3", "H3": "H3",
"Haptic Feedback": "Haptisk feedback", "Haptic Feedback": "Haptisk feedback",
"Height": "",
"Hello, {{name}}": "Hej {{name}}", "Hello, {{name}}": "Hej {{name}}",
"Help": "Hjælp", "Help": "Hjælp",
"Help us create the best community leaderboard by sharing your feedback history!": "Hjælp os med at oprette det bedste community-lederboard ved at dele din feedback-historik!", "Help us create the best community leaderboard by sharing your feedback history!": "Hjælp os med at oprette det bedste community-lederboard ved at dele din feedback-historik!",
@ -733,6 +753,7 @@
"Hide": "Skjul", "Hide": "Skjul",
"Hide from Sidebar": "Skjul fra sidebaren", "Hide from Sidebar": "Skjul fra sidebaren",
"Hide Model": "Skjul model", "Hide Model": "Skjul model",
"High": "",
"High Contrast Mode": "Høj kontrast tilstand", "High Contrast Mode": "Høj kontrast tilstand",
"Home": "Hjem", "Home": "Hjem",
"Host": "Vært", "Host": "Vært",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injicer alt indhold som kontekst til omfattende behandling, dette anbefales til komplekse forespørgsler.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injicer alt indhold som kontekst til omfattende behandling, dette anbefales til komplekse forespørgsler.",
"Input": "", "Input": "",
"Input commands": "Inputkommandoer", "Input commands": "Inputkommandoer",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Input variable", "Input Variables": "Input variable",
"Insert": "Indsæt", "Insert": "Indsæt",
"Insert Follow-Up Prompt to Input": "Indsæt opfølgningsprompt til input", "Insert Follow-Up Prompt to Input": "Indsæt opfølgningsprompt til input",
@ -789,6 +811,7 @@
"Invalid file content": "Ugyldigt filindhold", "Invalid file content": "Ugyldigt filindhold",
"Invalid file format.": "Ugyldigt filformat.", "Invalid file format.": "Ugyldigt filformat.",
"Invalid JSON file": "Ugyldig JSON fil", "Invalid JSON file": "Ugyldig JSON fil",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Ugyldigt tag", "Invalid Tag": "Ugyldigt tag",
"is typing...": "er i gang med at skrive...", "is typing...": "er i gang med at skrive...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "Behold opfølgningsprompts i chat", "Keep Follow-Up Prompts in Chat": "Behold opfølgningsprompts i chat",
"Keep in Sidebar": "Behold i sidebaren", "Keep in Sidebar": "Behold i sidebaren",
"Key": "Nøgle", "Key": "Nøgle",
"Key is required": "",
"Keyboard shortcuts": "Tastaturgenveje", "Keyboard shortcuts": "Tastaturgenveje",
"Knowledge": "Viden", "Knowledge": "Viden",
"Knowledge Access": "Videnadgang", "Knowledge Access": "Videnadgang",
"Knowledge Base": "Vidensbase", "Knowledge Base": "Vidensbase",
"Knowledge created successfully.": "Viden oprettet.", "Knowledge created successfully.": "Viden oprettet.",
"Knowledge deleted successfully.": "Viden slettet.", "Knowledge deleted successfully.": "Viden slettet.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Viden offentlig deling", "Knowledge Public Sharing": "Viden offentlig deling",
"Knowledge reset successfully.": "Viden nulstillet.", "Knowledge reset successfully.": "Viden nulstillet.",
"Knowledge updated successfully": "Viden opdateret.", "Knowledge updated successfully": "Viden opdateret.",
@ -852,6 +878,7 @@
"Local Task Model": "Lokal opgavemodel", "Local Task Model": "Lokal opgavemodel",
"Location access not allowed": "Adgang til placering ikke tilladt", "Location access not allowed": "Adgang til placering ikke tilladt",
"Lost": "Tabt", "Lost": "Tabt",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Lavet af OpenWebUI Community", "Made by Open WebUI Community": "Lavet af OpenWebUI Community",
"Make password visible in the user interface": "Gør adgangskode synlig i brugergrænsefladen", "Make password visible in the user interface": "Gør adgangskode synlig i brugergrænsefladen",
@ -873,6 +900,7 @@
"Max Upload Size": "Maks. uploadstørrelse", "Max Upload Size": "Maks. uploadstørrelse",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Højst 3 modeller kan downloades samtidigt. Prøv igen senere.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Højst 3 modeller kan downloades samtidigt. Prøv igen senere.",
"May": "Maj", "May": "Maj",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Minder, der er tilgængelige for LLM'er, vises her.", "Memories accessible by LLMs will be shown here.": "Minder, der er tilgængelige for LLM'er, vises her.",
"Memory": "Hukommelse", "Memory": "Hukommelse",
"Memory added successfully": "Hukommelse tilføjet.", "Memory added successfully": "Hukommelse tilføjet.",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "Model-ID'er", "Model IDs": "Model-ID'er",
"Model Name": "Modelnavn", "Model Name": "Modelnavn",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Model ikke valgt", "Model not selected": "Model ikke valgt",
"Model Params": "Modelparametre", "Model Params": "Modelparametre",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Navn", "Name": "Navn",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Navngiv din vidensbase", "Name your knowledge base": "Navngiv din vidensbase",
"Native": "Indbygget", "Native": "Indbygget",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Ingen søgeforespørgsel genereret", "No search query generated": "Ingen søgeforespørgsel genereret",
"No source available": "Ingen kilde tilgængelig", "No source available": "Ingen kilde tilgængelig",
"No users were found.": "Ingen brugere blev fundet.", "No users were found.": "Ingen brugere blev fundet.",
"No valves": "",
"No valves to update": "Ingen ventiler at opdatere", "No valves to update": "Ingen ventiler at opdatere",
"Node Ids": "",
"None": "Ingen", "None": "Ingen",
"Not factually correct": "Ikke faktuelt korrekt", "Not factually correct": "Ikke faktuelt korrekt",
"Not helpful": "Ikke hjælpsom", "Not helpful": "Ikke hjælpsom",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Scroll ved gren ændring", "Scroll On Branch Change": "Scroll ved gren ændring",
"Search": "Søg", "Search": "Søg",
"Search a model": "Søg efter en model", "Search a model": "Søg efter en model",
"Search all emojis": "",
"Search Base": "Søgebase", "Search Base": "Søgebase",
"Search Chats": "Søg i chats", "Search Chats": "Søg i chats",
"Search Collection": "Søg i samling", "Search Collection": "Søg i samling",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Se readme.md for instruktioner", "See readme.md for instructions": "Se readme.md for instruktioner",
"See what's new": "Se, hvad der er nyt", "See what's new": "Se, hvad der er nyt",
"Seed": "Seed", "Seed": "Seed",
"Select": "",
"Select a base model": "Vælg en basemodel", "Select a base model": "Vælg en basemodel",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "Vælg en samtale til forhåndsvisning", "Select a conversation to preview": "Vælg en samtale til forhåndsvisning",
"Select a engine": "Vælg en engine", "Select a engine": "Vælg en engine",
"Select a function": "Vælg en funktion", "Select a function": "Vælg en funktion",
"Select a group": "Vælg en gruppe", "Select a group": "Vælg en gruppe",
"Select a language": "",
"Select a mode": "",
"Select a model": "Vælg en model", "Select a model": "Vælg en model",
"Select a model (optional)": "",
"Select a pipeline": "Vælg en pipeline", "Select a pipeline": "Vælg en pipeline",
"Select a pipeline url": "Vælg en pipeline-URL", "Select a pipeline url": "Vælg en pipeline-URL",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Vælg et værktøj", "Select a tool": "Vælg et værktøj",
"Select a voice": "",
"Select an auth method": "Vælg en godkendelsesmetode", "Select an auth method": "Vælg en godkendelsesmetode",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Vælg en Ollama instans", "Select an Ollama instance": "Vælg en Ollama instans",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Vælg engine", "Select Engine": "Vælg engine",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Vælg viden", "Select Knowledge": "Vælg viden",
"Select only one model to call": "Vælg kun én model at kalde", "Select only one model to call": "Vælg kun én model at kalde",
"Selected model(s) do not support image inputs": "Valgte model(ler) understøtter ikke billedinput", "Selected model(s) do not support image inputs": "Valgte model(ler) understøtter ikke billedinput",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API-nøgle", "Serply API Key": "Serply API-nøgle",
"Serpstack API Key": "Serpstack API-nøgle", "Serpstack API Key": "Serpstack API-nøgle",
"Server connection verified": "Serverforbindelse bekræftet", "Server connection verified": "Serverforbindelse bekræftet",
"Session": "",
"Set as default": "Indstil som standard", "Set as default": "Indstil som standard",
"Set CFG Scale": "Indstil CFG-skala", "Set CFG Scale": "Indstil CFG-skala",
"Set Default Model": "Indstil standardmodel", "Set Default Model": "Indstil standardmodel",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "Spring cache over", "Skip Cache": "Spring cache over",
"Skip the cache and re-run the inference. Defaults to False.": "Spring cachen over og kør inferensen igen. Standard er falsk.", "Skip the cache and re-run the inference. Defaults to False.": "Spring cachen over og kør inferensen igen. Standard er falsk.",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "Sougou Search API sID", "Sougou Search API sID": "Sougou Search API sID",
"Sougou Search API SK": "Sougou Search API SK", "Sougou Search API SK": "Sougou Search API SK",
"Source": "Kilde", "Source": "Kilde",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Stiliseret PDF eksport", "Stylized PDF Export": "Stiliseret PDF eksport",
"Subtitle (e.g. about the Roman Empire)": "Undertitel (f.eks. om Romerriget)", "Subtitle (e.g. about the Roman Empire)": "Undertitel (f.eks. om Romerriget)",
"Success": "Succes", "Success": "Succes",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Opdateret.", "Successfully updated.": "Opdateret.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Foreslået", "Suggested": "Foreslået",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Den maksimale filstørrelse i MB. Hvis filstørrelsen overstiger denne grænse, uploades filen ikke.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Den maksimale filstørrelse i MB. Hvis filstørrelsen overstiger denne grænse, uploades filen ikke.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Det maksimale antal filer, der kan bruges på én gang i chatten. Hvis antallet af filer overstiger denne grænse, uploades filerne ikke.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Det maksimale antal filer, der kan bruges på én gang i chatten. Hvis antallet af filer overstiger denne grænse, uploades filerne ikke.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Output-formatet for teksten. Kan være 'json', 'markdown' eller 'html'. Standard er 'markdown'.", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Output-formatet for teksten. Kan være 'json', 'markdown' eller 'html'. Standard er 'markdown'.",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Scoren skal være en værdi mellem 0,0 (0%) og 1,0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Scoren skal være en værdi mellem 0,0 (0%) og 1,0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Temperaturen for modellen. At øge temperaturen vil få modellen til at svare mere kreativt.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Temperaturen for modellen. At øge temperaturen vil få modellen til at svare mere kreativt.",
@ -1439,7 +1495,9 @@
"Upload Files": "Upload filer", "Upload Files": "Upload filer",
"Upload Pipeline": "Upload pipeline", "Upload Pipeline": "Upload pipeline",
"Upload Progress": "Uploadfremdrift", "Upload Progress": "Uploadfremdrift",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "URL-tilstand", "URL Mode": "URL-tilstand",
"Usage": "Forbrug", "Usage": "Forbrug",
"Use '#' in the prompt input to load and include your knowledge.": "Brug '#' i promptinput for at indlæse og inkludere din viden.", "Use '#' in the prompt input to load and include your knowledge.": "Brug '#' i promptinput for at indlæse og inkludere din viden.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "Bruger fokuseret hentning", "Using Focused Retrieval": "Bruger fokuseret hentning",
"Using the default arena model with all models. Click the plus button to add custom models.": "Brug den standard Arena-model med alle modeller. Klik på plusknappen for at tilføje brugerdefinerede modeller.", "Using the default arena model with all models. Click the plus button to add custom models.": "Brug den standard Arena-model med alle modeller. Klik på plusknappen for at tilføje brugerdefinerede modeller.",
"Valid time units:": "Gyldige tidsenheder:", "Valid time units:": "Gyldige tidsenheder:",
"Validate certificate": "",
"Valves": "Ventiler", "Valves": "Ventiler",
"Valves updated": "Ventiler opdateret", "Valves updated": "Ventiler opdateret",
"Valves updated successfully": "Ventiler opdateret.", "Valves updated successfully": "Ventiler opdateret.",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (lokal)", "Whisper (Local)": "Whisper (lokal)",
"Why?": "Hvorfor?", "Why?": "Hvorfor?",
"Widescreen Mode": "Widescreen-tilstand", "Widescreen Mode": "Widescreen-tilstand",
"Width": "",
"Won": "Vandt", "Won": "Vandt",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Fungerer sammen med top-k. En højere værdi (f.eks. 0,95) vil føre til mere forskelligartet tekst, mens en lavere værdi (f.eks. 0,5) vil generere mere fokuseret og konservativ tekst.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Fungerer sammen med top-k. En højere værdi (f.eks. 0,95) vil føre til mere forskelligartet tekst, mens en lavere værdi (f.eks. 0,5) vil generere mere fokuseret og konservativ tekst.",
"Workspace": "Arbejdsområde", "Workspace": "Arbejdsområde",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} versteckte Zeilen", "{{COUNT}} hidden lines": "{{COUNT}} versteckte Zeilen",
"{{COUNT}} Replies": "{{COUNT}} Antworten", "{{COUNT}} Replies": "{{COUNT}} Antworten",
"{{COUNT}} words": "{{COUNT}} Wörter", "{{COUNT}} words": "{{COUNT}} Wörter",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}s Chats", "{{user}}'s Chats": "{{user}}s Chats",
"{{webUIName}} Backend Required": "{{webUIName}}-Backend erforderlich", "{{webUIName}} Backend Required": "{{webUIName}}-Backend erforderlich",
"*Prompt node ID(s) are required for image generation": "*Prompt-Node-ID(s) sind für die Bildgenerierung erforderlich", "*Prompt node ID(s) are required for image generation": "*Prompt-Node-ID(s) sind für die Bildgenerierung erforderlich",
@ -29,6 +30,7 @@
"Account Activation Pending": "Kontoaktivierung ausstehend", "Account Activation Pending": "Kontoaktivierung ausstehend",
"Accurate information": "Präzise Information(en)", "Accurate information": "Präzise Information(en)",
"Action": "Aktion", "Action": "Aktion",
"Action not found": "",
"Actions": "Aktionen", "Actions": "Aktionen",
"Activate": "Aktivieren", "Activate": "Aktivieren",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktivieren Sie diesen Befehl, indem Sie \"/{{COMMAND}}\" in die Chat-Eingabe eingeben.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktivieren Sie diesen Befehl, indem Sie \"/{{COMMAND}}\" in die Chat-Eingabe eingeben.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "Benachrichtungston immer abspielen", "Always Play Notification Sound": "Benachrichtungston immer abspielen",
"Amazing": "Fantastisch", "Amazing": "Fantastisch",
"an assistant": "ein Assistent", "an assistant": "ein Assistent",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Analysiert", "Analyzed": "Analysiert",
"Analyzing...": "Analysiere...", "Analyzing...": "Analysiere...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API-Schlüssel Endpunkteinschränkungen", "API Key Endpoint Restrictions": "API-Schlüssel Endpunkteinschränkungen",
"API keys": "API-Schlüssel", "API keys": "API-Schlüssel",
"API Version": "API Version", "API Version": "API Version",
"API Version is required": "",
"Application DN": "Anwendungs-DN", "Application DN": "Anwendungs-DN",
"Application DN Password": "Anwendungs-DN-Passwort", "Application DN Password": "Anwendungs-DN-Passwort",
"applies to all users with the \"user\" role": "gilt für alle Benutzer mit der Rolle \"Benutzer\"", "applies to all users with the \"user\" role": "gilt für alle Benutzer mit der Rolle \"Benutzer\"",
@ -160,6 +164,7 @@
"Banners": "Banner", "Banners": "Banner",
"Base Model (From)": "Basismodell (From)", "Base Model (From)": "Basismodell (From)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "bereits geteilt", "before": "bereits geteilt",
"Being lazy": "Faulheit", "Being lazy": "Faulheit",
"Beta": "Beta", "Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Audio aufzeichnen", "Capture Audio": "Audio aufzeichnen",
"Certificate Path": "Zertifikatpfad", "Certificate Path": "Zertifikatpfad",
"Change Password": "Passwort ändern", "Change Password": "Passwort ändern",
"Channel deleted successfully": "",
"Channel Name": "Kanalname", "Channel Name": "Kanalname",
"Channel updated successfully": "",
"Channels": "Kanäle", "Channels": "Kanäle",
"Character": "Zeichen", "Character": "Zeichen",
"Character limit for autocomplete generation input": "Zeichenlimit für die Eingabe der automatischen Vervollständigung", "Character limit for autocomplete generation input": "Zeichenlimit für die Eingabe der automatischen Vervollständigung",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Codeblock", "Code Block": "Codeblock",
"Code execution": "Codeausführung", "Code execution": "Codeausführung",
"Code Execution": "Codeausführung", "Code Execution": "Codeausführung",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI-Basis-URL wird benötigt.", "ComfyUI Base URL is required.": "ComfyUI-Basis-URL wird benötigt.",
"ComfyUI Workflow": "ComfyUI-Workflow", "ComfyUI Workflow": "ComfyUI-Workflow",
"ComfyUI Workflow Nodes": "ComfyUI-Workflow-Knoten", "ComfyUI Workflow Nodes": "ComfyUI-Workflow-Knoten",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Befehl", "Command": "Befehl",
"Comment": "Kommentar", "Comment": "Kommentar",
"Completions": "Vervollständigungen", "Completions": "Vervollständigungen",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Anzahl gleichzeitiger Anfragen", "Concurrent Requests": "Anzahl gleichzeitiger Anfragen",
"Config imported successfully": "",
"Configure": "Konfigurieren", "Configure": "Konfigurieren",
"Confirm": "Bestätigen", "Confirm": "Bestätigen",
"Confirm Password": "Passwort bestätigen", "Confirm Password": "Passwort bestätigen",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "TT/MM/JJJJ", "DD/MM/YYYY": "TT/MM/JJJJ",
"December": "Dezember", "December": "Dezember",
"Deepgram": "",
"Default": "Standard", "Default": "Standard",
"Default (Open AI)": "Standard (Open AI)", "Default (Open AI)": "Standard (Open AI)",
"Default (SentenceTransformers)": "Standard (SentenceTransformers)", "Default (SentenceTransformers)": "Standard (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Direktverbindungen", "Direct Connections": "Direktverbindungen",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Direktverbindungen ermöglichen es Benutzern, sich mit ihren eigenen OpenAI-kompatiblen API-Endpunkten zu verbinden.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Direktverbindungen ermöglichen es Benutzern, sich mit ihren eigenen OpenAI-kompatiblen API-Endpunkten zu verbinden.",
"Direct Tool Servers": "Direkt verbundene Werkzeug-Server", "Direct Tool Servers": "Direkt verbundene Werkzeug-Server",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "Deaktivierte Code Interpreter", "Disable Code Interpreter": "Deaktivierte Code Interpreter",
"Disable Image Extraction": "Deaktivierte Bildextraktion", "Disable Image Extraction": "Deaktivierte Bildextraktion",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Geben Sie kommagetrennte \"token:bias_value\"-Paare ein (Beispiel: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Geben Sie kommagetrennte \"token:bias_value\"-Paare ein (Beispiel: 5432:100, 413:-100)",
"Enter Config in JSON format": "Konfiguration in JSON Format eingeben", "Enter Config in JSON format": "Konfiguration in JSON Format eingeben",
"Enter content for the pending user info overlay. Leave empty for default.": "Geben Sie Inhalt für das Overlay 'Ausstehende Kontoaktivierung' ein. Für Standard leer lassen.", "Enter content for the pending user info overlay. Leave empty for default.": "Geben Sie Inhalt für das Overlay 'Ausstehende Kontoaktivierung' ein. Für Standard leer lassen.",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "Geben Sie eine Beschreibung ein", "Enter description": "Geben Sie eine Beschreibung ein",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Geben Sie die Github Raw-URL ein", "Enter Github Raw URL": "Geben Sie die Github Raw-URL ein",
"Enter Google PSE API Key": "Geben Sie den Google PSE-API-Schlüssel ein", "Enter Google PSE API Key": "Geben Sie den Google PSE-API-Schlüssel ein",
"Enter Google PSE Engine Id": "Geben Sie die Google PSE-Engine-ID ein", "Enter Google PSE Engine Id": "Geben Sie die Google PSE-Engine-ID ein",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Geben Sie die Bildgröße ein (z. B. 512x512)", "Enter Image Size (e.g. 512x512)": "Geben Sie die Bildgröße ein (z. B. 512x512)",
"Enter Jina API Key": "Geben Sie den Jina-API-Schlüssel ein", "Enter Jina API Key": "Geben Sie den Jina-API-Schlüssel ein",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Geben Sie Top K für Reranker ein", "Enter Top K Reranker": "Geben Sie Top K für Reranker ein",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Geben Sie die URL ein (z. B. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Geben Sie die URL ein (z. B. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Geben Sie die URL ein (z. B. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Geben Sie die URL ein (z. B. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "Yacy-Passwort eingeben", "Enter Yacy Password": "Yacy-Passwort eingeben",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Yacy-URL eingeben (z. B. http://yacy.example.com:8090 )", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Yacy-URL eingeben (z. B. http://yacy.example.com:8090 )",
"Enter Yacy Username": "Yacy-Benutzernamen eingeben", "Enter Yacy Username": "Yacy-Benutzernamen eingeben",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Geben Sie Ihre Webhook-URL ein", "Enter your webhook URL": "Geben Sie Ihre Webhook-URL ein",
"Error": "Fehler", "Error": "Fehler",
"ERROR": "FEHLER", "ERROR": "FEHLER",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Fehler beim Zugriff auf Google Drive: {{error}}", "Error accessing Google Drive: {{error}}": "Fehler beim Zugriff auf Google Drive: {{error}}",
"Error accessing media devices.": "Fehler beim Zugreifen auf Mediengeräte", "Error accessing media devices.": "Fehler beim Zugreifen auf Mediengeräte",
"Error starting recording.": "Fehler beim Starten der Aufnahme", "Error starting recording.": "Fehler beim Starten der Aufnahme",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "Fehler beim Hochladen der Datei: {{error}}", "Error uploading file: {{error}}": "Fehler beim Hochladen der Datei: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Evaluationen", "Evaluations": "Evaluationen",
"Everyone": "", "Everyone": "",
"Exa API Key": "Exa-API-Schlüssel", "Exa API Key": "Exa-API-Schlüssel",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Haptisches Feedback", "Haptic Feedback": "Haptisches Feedback",
"Height": "",
"Hello, {{name}}": "Hallo, {{name}}", "Hello, {{name}}": "Hallo, {{name}}",
"Help": "Hilfe", "Help": "Hilfe",
"Help us create the best community leaderboard by sharing your feedback history!": "Helfen Sie uns, die beste Community-Bestenliste zu erstellen, indem Sie Ihren Feedback-Verlauf teilen!", "Help us create the best community leaderboard by sharing your feedback history!": "Helfen Sie uns, die beste Community-Bestenliste zu erstellen, indem Sie Ihren Feedback-Verlauf teilen!",
@ -733,6 +753,7 @@
"Hide": "Verbergen", "Hide": "Verbergen",
"Hide from Sidebar": "Von Seitenleiste entfernen", "Hide from Sidebar": "Von Seitenleiste entfernen",
"Hide Model": "Modell verstecken", "Hide Model": "Modell verstecken",
"High": "",
"High Contrast Mode": "Modus für hohen Kontrast", "High Contrast Mode": "Modus für hohen Kontrast",
"Home": "Startseite", "Home": "Startseite",
"Host": "Host", "Host": "Host",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Gesamten Inhalt als Kontext für umfassende Verarbeitung einfügen, dies wird für komplexe Abfragen empfohlen.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Gesamten Inhalt als Kontext für umfassende Verarbeitung einfügen, dies wird für komplexe Abfragen empfohlen.",
"Input": "", "Input": "",
"Input commands": "Eingabebefehle", "Input commands": "Eingabebefehle",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Eingabe Variablen", "Input Variables": "Eingabe Variablen",
"Insert": "Einfügen", "Insert": "Einfügen",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "Ungültiger Dateiinhalt", "Invalid file content": "Ungültiger Dateiinhalt",
"Invalid file format.": "Ungültiges Dateiformat.", "Invalid file format.": "Ungültiges Dateiformat.",
"Invalid JSON file": "Ungültige JSON Datei", "Invalid JSON file": "Ungültige JSON Datei",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Ungültiger Tag", "Invalid Tag": "Ungültiger Tag",
"is typing...": "schreibt ...", "is typing...": "schreibt ...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "In Seitenleiste anzeigen", "Keep in Sidebar": "In Seitenleiste anzeigen",
"Key": "Schlüssel", "Key": "Schlüssel",
"Key is required": "",
"Keyboard shortcuts": "Tastenkombinationen", "Keyboard shortcuts": "Tastenkombinationen",
"Knowledge": "Wissen", "Knowledge": "Wissen",
"Knowledge Access": "Wissenszugriff", "Knowledge Access": "Wissenszugriff",
"Knowledge Base": "Wissensdatenbank", "Knowledge Base": "Wissensdatenbank",
"Knowledge created successfully.": "Wissen erfolgreich erstellt.", "Knowledge created successfully.": "Wissen erfolgreich erstellt.",
"Knowledge deleted successfully.": "Wissen erfolgreich gelöscht.", "Knowledge deleted successfully.": "Wissen erfolgreich gelöscht.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Öffentliche Freigabe von Wissen", "Knowledge Public Sharing": "Öffentliche Freigabe von Wissen",
"Knowledge reset successfully.": "Wissen erfolgreich zurückgesetzt.", "Knowledge reset successfully.": "Wissen erfolgreich zurückgesetzt.",
"Knowledge updated successfully": "Wissen erfolgreich aktualisiert", "Knowledge updated successfully": "Wissen erfolgreich aktualisiert",
@ -852,6 +878,7 @@
"Local Task Model": "Lokales Aufgabenmodell", "Local Task Model": "Lokales Aufgabenmodell",
"Location access not allowed": "Standortzugriff nicht erlaubt", "Location access not allowed": "Standortzugriff nicht erlaubt",
"Lost": "Verloren", "Lost": "Verloren",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Von der OpenWebUI-Community", "Made by Open WebUI Community": "Von der OpenWebUI-Community",
"Make password visible in the user interface": "Passwort im Benutzerinterface sichtbar machen", "Make password visible in the user interface": "Passwort im Benutzerinterface sichtbar machen",
@ -873,6 +900,7 @@
"Max Upload Size": "Maximale Uploadgröße", "Max Upload Size": "Maximale Uploadgröße",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Es können maximal 3 Modelle gleichzeitig heruntergeladen werden. Bitte versuchen Sie 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 versuchen Sie es später erneut.",
"May": "Mai", "May": "Mai",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Erinnerungen, die für Modelle zugänglich sind, werden hier angezeigt.", "Memories accessible by LLMs will be shown here.": "Erinnerungen, die für Modelle zugänglich sind, werden hier angezeigt.",
"Memory": "Erinnerungen", "Memory": "Erinnerungen",
"Memory added successfully": "Erinnerung erfolgreich hinzugefügt", "Memory added successfully": "Erinnerung erfolgreich hinzugefügt",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "Modell-IDs", "Model IDs": "Modell-IDs",
"Model Name": "Modell-Name", "Model Name": "Modell-Name",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Modell nicht ausgewählt", "Model not selected": "Modell nicht ausgewählt",
"Model Params": "Modell-Parameter", "Model Params": "Modell-Parameter",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Name", "Name": "Name",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Benennen Sie Ihren Wissensspeicher", "Name your knowledge base": "Benennen Sie Ihren Wissensspeicher",
"Native": "Nativ", "Native": "Nativ",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Keine Suchanfrage generiert", "No search query generated": "Keine Suchanfrage generiert",
"No source available": "Keine Quelle verfügbar", "No source available": "Keine Quelle verfügbar",
"No users were found.": "Keine Benutzer gefunden.", "No users were found.": "Keine Benutzer gefunden.",
"No valves": "",
"No valves to update": "Keine Valves zum Aktualisieren", "No valves to update": "Keine Valves zum Aktualisieren",
"Node Ids": "",
"None": "Nichts", "None": "Nichts",
"Not factually correct": "Nicht sachlich korrekt", "Not factually correct": "Nicht sachlich korrekt",
"Not helpful": "Nicht hilfreich", "Not helpful": "Nicht hilfreich",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Suchen", "Search": "Suchen",
"Search a model": "Modell suchen", "Search a model": "Modell suchen",
"Search all emojis": "",
"Search Base": "Suchbasis", "Search Base": "Suchbasis",
"Search Chats": "Chats durchsuchen...", "Search Chats": "Chats durchsuchen...",
"Search Collection": "Sammlung durchsuchen", "Search Collection": "Sammlung durchsuchen",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Anleitung in readme.md anzeigen", "See readme.md for instructions": "Anleitung in readme.md anzeigen",
"See what's new": "Entdecken Sie die Neuigkeiten", "See what's new": "Entdecken Sie die Neuigkeiten",
"Seed": "Seed", "Seed": "Seed",
"Select": "",
"Select a base model": "Wählen Sie ein Basismodell", "Select a base model": "Wählen Sie ein Basismodell",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Wählen Sie eine Engine", "Select a engine": "Wählen Sie eine Engine",
"Select a function": "Wählen Sie eine Funktion", "Select a function": "Wählen Sie eine Funktion",
"Select a group": "Wählen Sie eine Gruppe", "Select a group": "Wählen Sie eine Gruppe",
"Select a language": "",
"Select a mode": "",
"Select a model": "Wählen Sie ein Modell", "Select a model": "Wählen Sie ein Modell",
"Select a model (optional)": "",
"Select a pipeline": "Wählen Sie eine Pipeline", "Select a pipeline": "Wählen Sie eine Pipeline",
"Select a pipeline url": "Wählen Sie eine Pipeline-URL", "Select a pipeline url": "Wählen Sie eine Pipeline-URL",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Wählen Sie ein Werkzeug", "Select a tool": "Wählen Sie ein Werkzeug",
"Select a voice": "",
"Select an auth method": "Wählen Sie eine Authentifizierungsmethode", "Select an auth method": "Wählen Sie eine Authentifizierungsmethode",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Wählen Sie eine Ollama-Instanz", "Select an Ollama instance": "Wählen Sie eine Ollama-Instanz",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Engine auswählen", "Select Engine": "Engine auswählen",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Wissensdatenbank auswählen", "Select Knowledge": "Wissensdatenbank auswählen",
"Select only one model to call": "Wählen Sie nur ein Modell zum Anrufen aus", "Select only one model to call": "Wählen Sie nur ein Modell zum Anrufen aus",
"Selected model(s) do not support image inputs": "Ihre ausgewählten Modelle unterstützen keine Bildeingaben", "Selected model(s) do not support image inputs": "Ihre ausgewählten Modelle unterstützen keine Bildeingaben",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply-API-Schlüssel", "Serply API Key": "Serply-API-Schlüssel",
"Serpstack API Key": "Serpstack-API-Schlüssel", "Serpstack API Key": "Serpstack-API-Schlüssel",
"Server connection verified": "Serververbindung überprüft", "Server connection verified": "Serververbindung überprüft",
"Session": "",
"Set as default": "Als Standard festlegen", "Set as default": "Als Standard festlegen",
"Set CFG Scale": "CFG-Skala festlegen", "Set CFG Scale": "CFG-Skala festlegen",
"Set Default Model": "Standardmodell festlegen", "Set Default Model": "Standardmodell festlegen",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "Cache überspringen", "Skip Cache": "Cache überspringen",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "Sougou Search API sID", "Sougou Search API sID": "Sougou Search API sID",
"Sougou Search API SK": "Sougou Search API SK", "Sougou Search API SK": "Sougou Search API SK",
"Source": "Quelle", "Source": "Quelle",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Stilisierter PDF-Export", "Stylized PDF Export": "Stilisierter PDF-Export",
"Subtitle (e.g. about the Roman Empire)": "Untertitel (z. B. über das Römische Reich)", "Subtitle (e.g. about the Roman Empire)": "Untertitel (z. B. über das Römische Reich)",
"Success": "Erfolg", "Success": "Erfolg",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Erfolgreich aktualisiert.", "Successfully updated.": "Erfolgreich aktualisiert.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Vorgeschlagen", "Suggested": "Vorgeschlagen",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Die maximale Dateigröße in MB. Wenn die Dateigröße dieses Limit überschreitet, wird die Datei nicht hochgeladen.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Die maximale Dateigröße in MB. Wenn die Dateigröße dieses Limit überschreitet, wird die Datei nicht hochgeladen.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Die maximale Anzahl von Dateien, die gleichzeitig im Chat verwendet werden können. Wenn die Anzahl der Dateien dieses Limit überschreitet, werden die Dateien nicht hochgeladen.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Die maximale Anzahl von Dateien, die gleichzeitig im Chat verwendet werden können. Wenn die Anzahl der Dateien dieses Limit überschreitet, werden die Dateien nicht hochgeladen.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Die Punktzahl sollte ein Wert zwischen 0,0 (0 %) und 1,0 (100 %) sein.", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Die Punktzahl sollte ein Wert zwischen 0,0 (0 %) und 1,0 (100 %) sein.",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Die Temperatur des Modells. Eine Erhöhung der Temperatur führt zu kreativeren Antworten des Modells.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Die Temperatur des Modells. Eine Erhöhung der Temperatur führt zu kreativeren Antworten des Modells.",
@ -1439,7 +1495,9 @@
"Upload Files": "Datei(en) hochladen", "Upload Files": "Datei(en) hochladen",
"Upload Pipeline": "Pipeline hochladen", "Upload Pipeline": "Pipeline hochladen",
"Upload Progress": "Hochladefortschritt", "Upload Progress": "Hochladefortschritt",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "URL-Modus", "URL Mode": "URL-Modus",
"Usage": "Nutzungsinfos", "Usage": "Nutzungsinfos",
"Use '#' in the prompt input to load and include your knowledge.": "Nutzen Sie '#' in der Prompt-Eingabe, um Ihr Wissen zu laden und einzuschließen.", "Use '#' in the prompt input to load and include your knowledge.": "Nutzen Sie '#' in der Prompt-Eingabe, um Ihr Wissen zu laden und einzuschließen.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Verwendung des Standard-Arena-Modells mit allen Modellen. Klicken Sie auf die Plus-Schaltfläche, um benutzerdefinierte Modelle hinzuzufügen.", "Using the default arena model with all models. Click the plus button to add custom models.": "Verwendung des Standard-Arena-Modells mit allen Modellen. Klicken Sie auf die Plus-Schaltfläche, um benutzerdefinierte Modelle hinzuzufügen.",
"Valid time units:": "Gültige Zeiteinheiten:", "Valid time units:": "Gültige Zeiteinheiten:",
"Validate certificate": "",
"Valves": "Valves", "Valves": "Valves",
"Valves updated": "Valves aktualisiert", "Valves updated": "Valves aktualisiert",
"Valves updated successfully": "Valves erfolgreich aktualisiert", "Valves updated successfully": "Valves erfolgreich aktualisiert",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (lokal)", "Whisper (Local)": "Whisper (lokal)",
"Why?": "Warum?", "Why?": "Warum?",
"Widescreen Mode": "Breitbildmodus", "Widescreen Mode": "Breitbildmodus",
"Width": "",
"Won": "Gewonnen", "Won": "Gewonnen",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Funktioniert zusammen mit Top-K. Ein höherer Wert (z. B. 0,95) führt zu vielfältigerem Text, während ein niedrigerer Wert (z. B. 0,5) fokussierteren und konservativeren Text erzeugt.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Funktioniert zusammen mit Top-K. Ein höherer Wert (z. B. 0,95) führt zu vielfältigerem Text, während ein niedrigerer Wert (z. B. 0,5) fokussierteren und konservativeren Text erzeugt.",
"Workspace": "Arbeitsbereich", "Workspace": "Arbeitsbereich",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "", "{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}} Backend Much Required", "{{webUIName}} Backend Required": "{{webUIName}} Backend Much Required",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "", "Account Activation Pending": "",
"Accurate information": "", "Accurate information": "",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "", "Actions": "",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "", "Amazing": "",
"an assistant": "such assistant", "an assistant": "such assistant",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "", "API keys": "",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "", "Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "", "before": "",
"Being lazy": "", "Being lazy": "",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "Change Password", "Change Password": "Change Password",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "", "ComfyUI Base URL is required.": "",
"ComfyUI Workflow": "", "ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "", "ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Command", "Command": "Command",
"Comment": "", "Comment": "",
"Completions": "", "Completions": "",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "", "Concurrent Requests": "",
"Config imported successfully": "",
"Configure": "", "Configure": "",
"Confirm": "", "Confirm": "",
"Confirm Password": "Confirm Password", "Confirm Password": "Confirm Password",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "", "December": "",
"Deepgram": "",
"Default": "Default", "Default": "Default",
"Default (Open AI)": "", "Default (Open AI)": "",
"Default (SentenceTransformers)": "", "Default (SentenceTransformers)": "",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "", "Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "", "Enter Github Raw URL": "",
"Enter Google PSE API Key": "", "Enter Google PSE API Key": "",
"Enter Google PSE Engine Id": "", "Enter Google PSE Engine Id": "",
"Enter hex color (e.g. #FF0000)": "",
"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)",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Enter URL (e.g. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Enter URL (e.g. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "", "Enter URL (e.g. http://localhost:11434)": "",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "", "Error": "",
"ERROR": "", "ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "", "Evaluations": "",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "Much helo, {{name}}", "Hello, {{name}}": "Much helo, {{name}}",
"Help": "", "Help": "",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "Hide", "Hide": "Hide",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Input commands", "Input commands": "Input commands",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "", "Invalid file format.": "",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "", "Invalid Tag": "",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "Keyboard Barkcuts", "Keyboard shortcuts": "Keyboard Barkcuts",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "", "Knowledge created successfully.": "",
"Knowledge deleted successfully.": "", "Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "", "Knowledge reset successfully.": "",
"Knowledge updated successfully": "", "Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "", "Lost": "",
"Low": "",
"LTR": "", "LTR": "",
"Made by Open WebUI Community": "Made by Open WebUI Community", "Made by Open WebUI Community": "Made by Open WebUI Community",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"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": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "", "Memory": "",
"Memory added successfully": "", "Memory added successfully": "",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "", "Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Model not selected", "Model not selected": "Model not selected",
"Model Params": "", "Model Params": "",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Name", "Name": "Name",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "", "No search query generated": "",
"No source available": "No source available", "No source available": "No source available",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "", "No valves to update": "",
"Node Ids": "",
"None": "", "None": "",
"Not factually correct": "", "Not factually correct": "",
"Not helpful": "", "Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Search very search", "Search": "Search very search",
"Search a model": "", "Search a model": "",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "", "Search Chats": "",
"Search Collection": "", "Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "See readme.md for instructions wow", "See readme.md for instructions": "See readme.md for instructions wow",
"See what's new": "See what's new so amaze", "See what's new": "See what's new so amaze",
"Seed": "Seed very plant", "Seed": "Seed very plant",
"Select": "",
"Select a base model": "", "Select a base model": "",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "", "Select a engine": "",
"Select a function": "", "Select a function": "",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Select a model much choice", "Select a model": "Select a model much choice",
"Select a model (optional)": "",
"Select a pipeline": "", "Select a pipeline": "",
"Select a pipeline url": "", "Select a pipeline url": "",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "", "Select a tool": "",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "", "Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "", "Select Knowledge": "",
"Select only one model to call": "", "Select only one model to call": "",
"Selected model(s) do not support image inputs": "", "Selected model(s) do not support image inputs": "",
@ -1215,6 +1262,7 @@
"Serply API Key": "", "Serply API Key": "",
"Serpstack API Key": "", "Serpstack API Key": "",
"Server connection verified": "Server connection verified much secure", "Server connection verified": "Server connection verified much secure",
"Session": "",
"Set as default": "Set as default very default", "Set as default": "Set as default very default",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "Set Default Model much model", "Set Default Model": "Set Default Model much model",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Source", "Source": "Source",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "", "Subtitle (e.g. about the Roman Empire)": "",
"Success": "Success very success", "Success": "Success very success",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Successfully updated. Very updated.", "Successfully updated.": "Successfully updated. Very updated.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "", "Suggested": "",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "", "Upload Files": "",
"Upload Pipeline": "", "Upload Pipeline": "",
"Upload Progress": "Upload Progress much progress", "Upload Progress": "Upload Progress much progress",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "URL Mode much mode", "URL Mode": "URL Mode much mode",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "", "Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "Valid time units: much time", "Valid time units:": "Valid time units: much time",
"Validate certificate": "",
"Valves": "", "Valves": "",
"Valves updated": "", "Valves updated": "",
"Valves updated successfully": "", "Valves updated successfully": "",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "", "Whisper (Local)": "",
"Why?": "", "Why?": "",
"Widescreen Mode": "", "Widescreen Mode": "",
"Width": "",
"Won": "", "Won": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "", "Workspace": "",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Συνομιλίες του {{user}}", "{{user}}'s Chats": "Συνομιλίες του {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Απαιτείται Backend", "{{webUIName}} Backend Required": "{{webUIName}} Απαιτείται Backend",
"*Prompt node ID(s) are required for image generation": "*Τα αναγνωριστικά κόμβου Prompt απαιτούνται για τη δημιουργία εικόνων", "*Prompt node ID(s) are required for image generation": "*Τα αναγνωριστικά κόμβου Prompt απαιτούνται για τη δημιουργία εικόνων",
@ -29,6 +30,7 @@
"Account Activation Pending": "Ενεργοποίηση Λογαριασμού Εκκρεμεί", "Account Activation Pending": "Ενεργοποίηση Λογαριασμού Εκκρεμεί",
"Accurate information": "Ακριβείς πληροφορίες", "Accurate information": "Ακριβείς πληροφορίες",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Ενέργειες", "Actions": "Ενέργειες",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Ενεργοποιήστε αυτή την εντολή πληκτρολογώντας \"/{{COMMAND}}\" στο πεδίο συνομιλίας.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Ενεργοποιήστε αυτή την εντολή πληκτρολογώντας \"/{{COMMAND}}\" στο πεδίο συνομιλίας.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "Καταπληκτικό", "Amazing": "Καταπληκτικό",
"an assistant": "ένας βοηθός", "an assistant": "ένας βοηθός",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "κλειδιά API", "API keys": "κλειδιά API",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "DN Εφαρμογής", "Application DN": "DN Εφαρμογής",
"Application DN Password": "Κωδικός DN Εφαρμογής", "Application DN Password": "Κωδικός DN Εφαρμογής",
"applies to all users with the \"user\" role": "εφαρμόζεται σε όλους τους χρήστες με το ρόλο \"user\"", "applies to all users with the \"user\" role": "εφαρμόζεται σε όλους τους χρήστες με το ρόλο \"user\"",
@ -160,6 +164,7 @@
"Banners": "Προβολές", "Banners": "Προβολές",
"Base Model (From)": "Βασικό Μοντέλο (Από)", "Base Model (From)": "Βασικό Μοντέλο (Από)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "πριν", "before": "πριν",
"Being lazy": "Τρώλακας", "Being lazy": "Τρώλακας",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "Διαδρομή Πιστοποιητικού", "Certificate Path": "Διαδρομή Πιστοποιητικού",
"Change Password": "Αλλαγή Κωδικού", "Change Password": "Αλλαγή Κωδικού",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "Χαρακτήρας", "Character": "Χαρακτήρας",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Εκτέλεση κώδικα", "Code execution": "Εκτέλεση κώδικα",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "Απαιτείται το Βασικό URL ComfyUI.", "ComfyUI Base URL is required.": "Απαιτείται το Βασικό URL ComfyUI.",
"ComfyUI Workflow": "Ροές Εργασίας ComfyUI", "ComfyUI Workflow": "Ροές Εργασίας ComfyUI",
"ComfyUI Workflow Nodes": "Κόμβοι Ροής Εργασίας ComfyUI", "ComfyUI Workflow Nodes": "Κόμβοι Ροής Εργασίας ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Εντολή", "Command": "Εντολή",
"Comment": "", "Comment": "",
"Completions": "Ολοκληρώσεις", "Completions": "Ολοκληρώσεις",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Ταυτόχρονες Αιτήσεις", "Concurrent Requests": "Ταυτόχρονες Αιτήσεις",
"Config imported successfully": "",
"Configure": "Διαμόρφωση", "Configure": "Διαμόρφωση",
"Confirm": "Επιβεβαίωση", "Confirm": "Επιβεβαίωση",
"Confirm Password": "Επιβεβαίωση Κωδικού", "Confirm Password": "Επιβεβαίωση Κωδικού",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Δεκέμβριος", "December": "Δεκέμβριος",
"Deepgram": "",
"Default": "Προεπιλογή", "Default": "Προεπιλογή",
"Default (Open AI)": "Προεπιλογή (Open AI)", "Default (Open AI)": "Προεπιλογή (Open AI)",
"Default (SentenceTransformers)": "Προεπιλογή (SentenceTransformers)", "Default (SentenceTransformers)": "Προεπιλογή (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "Εισάγετε την περιγραφή", "Enter description": "Εισάγετε την περιγραφή",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Εισάγετε το Github Raw URL", "Enter Github Raw URL": "Εισάγετε το Github Raw URL",
"Enter Google PSE API Key": "Εισάγετε το Κλειδί API Google PSE", "Enter Google PSE API Key": "Εισάγετε το Κλειδί API Google PSE",
"Enter Google PSE Engine Id": "Εισάγετε το Αναγνωριστικό Μηχανής Google PSE", "Enter Google PSE Engine Id": "Εισάγετε το Αναγνωριστικό Μηχανής Google PSE",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Εισάγετε το Μέγεθος Εικόνας (π.χ. 512x512)", "Enter Image Size (e.g. 512x512)": "Εισάγετε το Μέγεθος Εικόνας (π.χ. 512x512)",
"Enter Jina API Key": "Εισάγετε το Κλειδί API Jina", "Enter Jina API Key": "Εισάγετε το Κλειδί API Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Εισάγετε το URL (π.χ. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Εισάγετε το URL (π.χ. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Εισάγετε το URL (π.χ. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Εισάγετε το URL (π.χ. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "Σφάλμα", "Error": "Σφάλμα",
"ERROR": "ΣΦΑΛΜΑ", "ERROR": "ΣΦΑΛΜΑ",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Αξιολογήσεις", "Evaluations": "Αξιολογήσεις",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Ανατροφοδότηση Haptic", "Haptic Feedback": "Ανατροφοδότηση Haptic",
"Height": "",
"Hello, {{name}}": "Γειά σου, {{name}}", "Hello, {{name}}": "Γειά σου, {{name}}",
"Help": "Βοήθεια", "Help": "Βοήθεια",
"Help us create the best community leaderboard by sharing your feedback history!": "Βοηθήστε μας να δημιουργήσουμε την καλύτερη κατάταξη κοινότητας μοιράζοντας το ιστορικό ανατροφοδότησής σας!", "Help us create the best community leaderboard by sharing your feedback history!": "Βοηθήστε μας να δημιουργήσουμε την καλύτερη κατάταξη κοινότητας μοιράζοντας το ιστορικό ανατροφοδότησής σας!",
@ -733,6 +753,7 @@
"Hide": "Απόκρυψη", "Hide": "Απόκρυψη",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "Διακομιστής", "Host": "Διακομιστής",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Εισαγωγή εντολών", "Input commands": "Εισαγωγή εντολών",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "Μη έγκυρη μορφή αρχείου.", "Invalid file format.": "Μη έγκυρη μορφή αρχείου.",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Μη έγκυρη Ετικέτα", "Invalid Tag": "Μη έγκυρη Ετικέτα",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "Κλειδί", "Key": "Κλειδί",
"Key is required": "",
"Keyboard shortcuts": "Συντομεύσεις Πληκτρολογίου", "Keyboard shortcuts": "Συντομεύσεις Πληκτρολογίου",
"Knowledge": "Γνώση", "Knowledge": "Γνώση",
"Knowledge Access": "Πρόσβαση στη Γνώση", "Knowledge Access": "Πρόσβαση στη Γνώση",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Η γνώση δημιουργήθηκε με επιτυχία.", "Knowledge created successfully.": "Η γνώση δημιουργήθηκε με επιτυχία.",
"Knowledge deleted successfully.": "Η γνώση διαγράφηκε με επιτυχία.", "Knowledge deleted successfully.": "Η γνώση διαγράφηκε με επιτυχία.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Η γνώση επαναφέρθηκε με επιτυχία.", "Knowledge reset successfully.": "Η γνώση επαναφέρθηκε με επιτυχία.",
"Knowledge updated successfully": "Η γνώση ενημερώθηκε με επιτυχία", "Knowledge updated successfully": "Η γνώση ενημερώθηκε με επιτυχία",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "Χαμένος", "Lost": "Χαμένος",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Δημιουργήθηκε από την Κοινότητα OpenWebUI", "Made by Open WebUI Community": "Δημιουργήθηκε από την Κοινότητα OpenWebUI",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "Μέγιστο Μέγεθος Αρχείου", "Max Upload Size": "Μέγιστο Μέγεθος Αρχείου",
"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": "Μάιος",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Οι αναμνήσεις προσβάσιμες από τα LLMs θα εμφανιστούν εδώ.", "Memories accessible by LLMs will be shown here.": "Οι αναμνήσεις προσβάσιμες από τα LLMs θα εμφανιστούν εδώ.",
"Memory": "Μνήμη", "Memory": "Μνήμη",
"Memory added successfully": "Η μνήμη προστέθηκε με επιτυχία", "Memory added successfully": "Η μνήμη προστέθηκε με επιτυχία",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "IDs Μοντέλων", "Model IDs": "IDs Μοντέλων",
"Model Name": "Όνομα Μοντέλου", "Model Name": "Όνομα Μοντέλου",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Το μοντέλο δεν έχει επιλεγεί", "Model not selected": "Το μοντέλο δεν έχει επιλεγεί",
"Model Params": "Παράμετροι Μοντέλου", "Model Params": "Παράμετροι Μοντέλου",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Όνομα", "Name": "Όνομα",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Ονομάστε τη βάση γνώσης σας", "Name your knowledge base": "Ονομάστε τη βάση γνώσης σας",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Δεν δημιουργήθηκε ερώτηση αναζήτησης", "No search query generated": "Δεν δημιουργήθηκε ερώτηση αναζήτησης",
"No source available": "Δεν υπάρχει διαθέσιμη πηγή", "No source available": "Δεν υπάρχει διαθέσιμη πηγή",
"No users were found.": "Δεν βρέθηκαν χρήστες.", "No users were found.": "Δεν βρέθηκαν χρήστες.",
"No valves": "",
"No valves to update": "Δεν υπάρχουν βαλβίδες για ενημέρωση", "No valves to update": "Δεν υπάρχουν βαλβίδες για ενημέρωση",
"Node Ids": "",
"None": "Κανένα", "None": "Κανένα",
"Not factually correct": "Δεν είναι γεγονότα", "Not factually correct": "Δεν είναι γεγονότα",
"Not helpful": "Δεν είναι χρήσιμο", "Not helpful": "Δεν είναι χρήσιμο",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Αναζήτηση", "Search": "Αναζήτηση",
"Search a model": "Αναζήτηση μοντέλου", "Search a model": "Αναζήτηση μοντέλου",
"Search all emojis": "",
"Search Base": "Βάση Αναζήτησης", "Search Base": "Βάση Αναζήτησης",
"Search Chats": "Αναζήτηση Συνομιλιών", "Search Chats": "Αναζήτηση Συνομιλιών",
"Search Collection": "Αναζήτηση Συλλογής", "Search Collection": "Αναζήτηση Συλλογής",
@ -1187,18 +1220,32 @@
"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": "",
"Select a base model": "Επιλέξτε ένα βασικό μοντέλο", "Select a base model": "Επιλέξτε ένα βασικό μοντέλο",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Επιλέξτε μια μηχανή", "Select a engine": "Επιλέξτε μια μηχανή",
"Select a function": "Επιλέξτε μια λειτουργία", "Select a function": "Επιλέξτε μια λειτουργία",
"Select a group": "Επιλέξτε μια ομάδα", "Select a group": "Επιλέξτε μια ομάδα",
"Select a language": "",
"Select a mode": "",
"Select a model": "Επιλέξτε ένα μοντέλο", "Select a model": "Επιλέξτε ένα μοντέλο",
"Select a model (optional)": "",
"Select a pipeline": "Επιλέξτε ένα pipeline", "Select a pipeline": "Επιλέξτε ένα pipeline",
"Select a pipeline url": "Επιλέξτε ένα pipeline url", "Select a pipeline url": "Επιλέξτε ένα pipeline url",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Επιλέξτε ένα εργαλείο", "Select a tool": "Επιλέξτε ένα εργαλείο",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Επιλέξτε Μηχανή", "Select Engine": "Επιλέξτε Μηχανή",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Επιλέξτε Γνώση", "Select Knowledge": "Επιλέξτε Γνώση",
"Select only one model to call": "Επιλέξτε μόνο ένα μοντέλο για κλήση", "Select only one model to call": "Επιλέξτε μόνο ένα μοντέλο για κλήση",
"Selected model(s) do not support image inputs": "Τα επιλεγμένα μοντέλα δεν υποστηρίζουν είσοδο εικόνων", "Selected model(s) do not support image inputs": "Τα επιλεγμένα μοντέλα δεν υποστηρίζουν είσοδο εικόνων",
@ -1215,6 +1262,7 @@
"Serply API Key": "Κλειδί API Serply", "Serply API Key": "Κλειδί API Serply",
"Serpstack API Key": "Κλειδί API Serpstack", "Serpstack API Key": "Κλειδί API Serpstack",
"Server connection verified": "Η σύνδεση διακομιστή επαληθεύθηκε", "Server connection verified": "Η σύνδεση διακομιστή επαληθεύθηκε",
"Session": "",
"Set as default": "Ορισμός ως προεπιλογή", "Set as default": "Ορισμός ως προεπιλογή",
"Set CFG Scale": "Ορισμός CFG Scale", "Set CFG Scale": "Ορισμός CFG Scale",
"Set Default Model": "Ορισμός Προεπιλεγμένου Μοντέλου", "Set Default Model": "Ορισμός Προεπιλεγμένου Μοντέλου",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Πηγή", "Source": "Πηγή",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Υπότιτλος (π.χ. για την Ρωμαϊκή Αυτοκρατορία)", "Subtitle (e.g. about the Roman Empire)": "Υπότιτλος (π.χ. για την Ρωμαϊκή Αυτοκρατορία)",
"Success": "Επιτυχία", "Success": "Επιτυχία",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Επιτυχώς ενημερώθηκε.", "Successfully updated.": "Επιτυχώς ενημερώθηκε.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Προτεινόμενο", "Suggested": "Προτεινόμενο",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Το μέγιστο μέγεθος αρχείου σε MB. Αν το μέγεθος του αρχείου υπερβαίνει αυτό το όριο, το αρχείο δεν θα ανεβεί.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Το μέγιστο μέγεθος αρχείου σε MB. Αν το μέγεθος του αρχείου υπερβαίνει αυτό το όριο, το αρχείο δεν θα ανεβεί.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Ο μέγιστος αριθμός αρχείων που μπορούν να χρησιμοποιηθούν ταυτόχρονα στη συνομιλία. Αν ο αριθμός των αρχείων υπερβαίνει αυτό το όριο, τα αρχεία δεν θα ανεβούν.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Ο μέγιστος αριθμός αρχείων που μπορούν να χρησιμοποιηθούν ταυτόχρονα στη συνομιλία. Αν ο αριθμός των αρχείων υπερβαίνει αυτό το όριο, τα αρχεία δεν θα ανεβούν.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Η βαθμολογία θα πρέπει να είναι μια τιμή μεταξύ 0.0 (0%) και 1.0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Η βαθμολογία θα πρέπει να είναι μια τιμή μεταξύ 0.0 (0%) και 1.0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Ανέβασμα Αρχείων", "Upload Files": "Ανέβασμα Αρχείων",
"Upload Pipeline": "Ανέβασμα Pipeline", "Upload Pipeline": "Ανέβασμα Pipeline",
"Upload Progress": "Πρόοδος Ανεβάσματος", "Upload Progress": "Πρόοδος Ανεβάσματος",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "Λειτουργία URL", "URL Mode": "Λειτουργία URL",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "Χρησιμοποιήστε '#' στην είσοδο προτροπής για φόρτωση και συμπερίληψη της γνώσης σας.", "Use '#' in the prompt input to load and include your knowledge.": "Χρησιμοποιήστε '#' στην είσοδο προτροπής για φόρτωση και συμπερίληψη της γνώσης σας.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Χρησιμοποιώντας το προεπιλεγμένο μοντέλο arena με όλα τα μοντέλα. Κάντε κλικ στο κουμπί συν για να προσθέσετε προσαρμοσμένα μοντέλα.", "Using the default arena model with all models. Click the plus button to add custom models.": "Χρησιμοποιώντας το προεπιλεγμένο μοντέλο arena με όλα τα μοντέλα. Κάντε κλικ στο κουμπί συν για να προσθέσετε προσαρμοσμένα μοντέλα.",
"Valid time units:": "Έγκυρες μονάδες χρόνου:", "Valid time units:": "Έγκυρες μονάδες χρόνου:",
"Validate certificate": "",
"Valves": "Βαλβίδες", "Valves": "Βαλβίδες",
"Valves updated": "Οι βαλβίδες ενημερώθηκαν", "Valves updated": "Οι βαλβίδες ενημερώθηκαν",
"Valves updated successfully": "Οι βαλβίδες ενημερώθηκαν με επιτυχία", "Valves updated successfully": "Οι βαλβίδες ενημερώθηκαν με επιτυχία",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Τοπικό)", "Whisper (Local)": "Whisper (Τοπικό)",
"Why?": "Γιατί?", "Why?": "Γιατί?",
"Widescreen Mode": "Λειτουργία Οθόνης Ευρείας", "Widescreen Mode": "Λειτουργία Οθόνης Ευρείας",
"Width": "",
"Won": "Κέρδισε", "Won": "Κέρδισε",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Χώρος Εργασίας", "Workspace": "Χώρος Εργασίας",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "", "{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "", "{{webUIName}} Backend Required": "",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "", "Account Activation Pending": "",
"Accurate information": "", "Accurate information": "",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "", "Actions": "",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "", "Amazing": "",
"an assistant": "", "an assistant": "",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Analysed", "Analyzed": "Analysed",
"Analyzing...": "Analysing", "Analyzing...": "Analysing",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "", "API keys": "",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "", "Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "", "before": "",
"Being lazy": "", "Being lazy": "",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "", "Change Password": "",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "", "ComfyUI Base URL is required.": "",
"ComfyUI Workflow": "", "ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "", "ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "", "Command": "",
"Comment": "", "Comment": "",
"Completions": "", "Completions": "",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "", "Concurrent Requests": "",
"Config imported successfully": "",
"Configure": "", "Configure": "",
"Confirm": "", "Confirm": "",
"Confirm Password": "", "Confirm Password": "",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "", "December": "",
"Deepgram": "",
"Default": "", "Default": "",
"Default (Open AI)": "", "Default (Open AI)": "",
"Default (SentenceTransformers)": "", "Default (SentenceTransformers)": "",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "", "Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "", "Enter Github Raw URL": "",
"Enter Google PSE API Key": "", "Enter Google PSE API Key": "",
"Enter Google PSE Engine Id": "", "Enter Google PSE Engine Id": "",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "", "Enter Image Size (e.g. 512x512)": "",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "", "Enter URL (e.g. http://127.0.0.1:7860/)": "",
"Enter URL (e.g. http://localhost:11434)": "", "Enter URL (e.g. http://localhost:11434)": "",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "", "Error": "",
"ERROR": "", "ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "", "Evaluations": "",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "", "Hello, {{name}}": "",
"Help": "", "Help": "",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "", "Hide": "",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "", "Input commands": "",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "", "Invalid file format.": "",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "", "Invalid Tag": "",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "", "Keyboard shortcuts": "",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "", "Knowledge created successfully.": "",
"Knowledge deleted successfully.": "", "Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "", "Knowledge reset successfully.": "",
"Knowledge updated successfully": "", "Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "", "Lost": "",
"Low": "",
"LTR": "", "LTR": "",
"Made by Open WebUI Community": "", "Made by Open WebUI Community": "",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"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": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "", "Memory": "",
"Memory added successfully": "", "Memory added successfully": "",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "", "Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "", "Model not selected": "",
"Model Params": "", "Model Params": "",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "", "Name": "",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "", "No search query generated": "",
"No source available": "", "No source available": "",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "", "No valves to update": "",
"Node Ids": "",
"None": "", "None": "",
"Not factually correct": "", "Not factually correct": "",
"Not helpful": "", "Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "", "Search": "",
"Search a model": "", "Search a model": "",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "", "Search Chats": "",
"Search Collection": "", "Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "", "See readme.md for instructions": "",
"See what's new": "", "See what's new": "",
"Seed": "", "Seed": "",
"Select": "",
"Select a base model": "", "Select a base model": "",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "", "Select a engine": "",
"Select a function": "", "Select a function": "",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "", "Select a model": "",
"Select a model (optional)": "",
"Select a pipeline": "", "Select a pipeline": "",
"Select a pipeline url": "", "Select a pipeline url": "",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "", "Select a tool": "",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "", "Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "", "Select Knowledge": "",
"Select only one model to call": "", "Select only one model to call": "",
"Selected model(s) do not support image inputs": "", "Selected model(s) do not support image inputs": "",
@ -1215,6 +1262,7 @@
"Serply API Key": "", "Serply API Key": "",
"Serpstack API Key": "", "Serpstack API Key": "",
"Server connection verified": "", "Server connection verified": "",
"Session": "",
"Set as default": "", "Set as default": "",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "", "Set Default Model": "",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "", "Source": "",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Stylised PDF Export", "Stylized PDF Export": "Stylised PDF Export",
"Subtitle (e.g. about the Roman Empire)": "", "Subtitle (e.g. about the Roman Empire)": "",
"Success": "", "Success": "",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "", "Successfully updated.": "",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "", "Suggested": "",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "", "Upload Files": "",
"Upload Pipeline": "", "Upload Pipeline": "",
"Upload Progress": "", "Upload Progress": "",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "", "URL Mode": "",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "", "Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "", "Valid time units:": "",
"Validate certificate": "",
"Valves": "", "Valves": "",
"Valves updated": "", "Valves updated": "",
"Valves updated successfully": "", "Valves updated successfully": "",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "", "Whisper (Local)": "",
"Why?": "", "Why?": "",
"Widescreen Mode": "", "Widescreen Mode": "",
"Width": "",
"Won": "", "Won": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "", "Workspace": "",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "", "{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "", "{{webUIName}} Backend Required": "",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "", "Account Activation Pending": "",
"Accurate information": "", "Accurate information": "",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "", "Actions": "",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "", "Amazing": "",
"an assistant": "", "an assistant": "",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "", "API keys": "",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "", "Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "", "before": "",
"Being lazy": "", "Being lazy": "",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "", "Change Password": "",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "", "ComfyUI Base URL is required.": "",
"ComfyUI Workflow": "", "ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "", "ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "", "Command": "",
"Comment": "", "Comment": "",
"Completions": "", "Completions": "",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "", "Concurrent Requests": "",
"Config imported successfully": "",
"Configure": "", "Configure": "",
"Confirm": "", "Confirm": "",
"Confirm Password": "", "Confirm Password": "",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "", "December": "",
"Deepgram": "",
"Default": "", "Default": "",
"Default (Open AI)": "", "Default (Open AI)": "",
"Default (SentenceTransformers)": "", "Default (SentenceTransformers)": "",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "", "Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "", "Enter Github Raw URL": "",
"Enter Google PSE API Key": "", "Enter Google PSE API Key": "",
"Enter Google PSE Engine Id": "", "Enter Google PSE Engine Id": "",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "", "Enter Image Size (e.g. 512x512)": "",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "", "Enter URL (e.g. http://127.0.0.1:7860/)": "",
"Enter URL (e.g. http://localhost:11434)": "", "Enter URL (e.g. http://localhost:11434)": "",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "", "Error": "",
"ERROR": "", "ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "", "Evaluations": "",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "", "Hello, {{name}}": "",
"Help": "", "Help": "",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "", "Hide": "",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "", "Input commands": "",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "", "Invalid file format.": "",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "", "Invalid Tag": "",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "", "Keyboard shortcuts": "",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "", "Knowledge created successfully.": "",
"Knowledge deleted successfully.": "", "Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "", "Knowledge reset successfully.": "",
"Knowledge updated successfully": "", "Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "", "Lost": "",
"Low": "",
"LTR": "", "LTR": "",
"Made by Open WebUI Community": "", "Made by Open WebUI Community": "",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"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": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "", "Memory": "",
"Memory added successfully": "", "Memory added successfully": "",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "", "Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "", "Model not selected": "",
"Model Params": "", "Model Params": "",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "", "Name": "",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "", "No search query generated": "",
"No source available": "", "No source available": "",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "", "No valves to update": "",
"Node Ids": "",
"None": "", "None": "",
"Not factually correct": "", "Not factually correct": "",
"Not helpful": "", "Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "", "Search": "",
"Search a model": "", "Search a model": "",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "", "Search Chats": "",
"Search Collection": "", "Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "", "See readme.md for instructions": "",
"See what's new": "", "See what's new": "",
"Seed": "", "Seed": "",
"Select": "",
"Select a base model": "", "Select a base model": "",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "", "Select a engine": "",
"Select a function": "", "Select a function": "",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "", "Select a model": "",
"Select a model (optional)": "",
"Select a pipeline": "", "Select a pipeline": "",
"Select a pipeline url": "", "Select a pipeline url": "",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "", "Select a tool": "",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "", "Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "", "Select Knowledge": "",
"Select only one model to call": "", "Select only one model to call": "",
"Selected model(s) do not support image inputs": "", "Selected model(s) do not support image inputs": "",
@ -1215,6 +1262,7 @@
"Serply API Key": "", "Serply API Key": "",
"Serpstack API Key": "", "Serpstack API Key": "",
"Server connection verified": "", "Server connection verified": "",
"Session": "",
"Set as default": "", "Set as default": "",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "", "Set Default Model": "",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "", "Source": "",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "", "Subtitle (e.g. about the Roman Empire)": "",
"Success": "", "Success": "",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "", "Successfully updated.": "",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "", "Suggested": "",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "", "Upload Files": "",
"Upload Pipeline": "", "Upload Pipeline": "",
"Upload Progress": "", "Upload Progress": "",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "", "URL Mode": "",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "", "Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "", "Valid time units:": "",
"Validate certificate": "",
"Valves": "", "Valves": "",
"Valves updated": "", "Valves updated": "",
"Valves updated successfully": "", "Valves updated successfully": "",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "", "Whisper (Local)": "",
"Why?": "", "Why?": "",
"Widescreen Mode": "", "Widescreen Mode": "",
"Width": "",
"Won": "", "Won": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "", "Workspace": "",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} líneas ocultas", "{{COUNT}} hidden lines": "{{COUNT}} líneas ocultas",
"{{COUNT}} Replies": "{{COUNT}} Respuestas", "{{COUNT}} Replies": "{{COUNT}} Respuestas",
"{{COUNT}} words": "{{COUNT}} palabras", "{{COUNT}} words": "{{COUNT}} palabras",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Chats de {{user}}", "{{user}}'s Chats": "Chats de {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Servidor Requerido", "{{webUIName}} Backend Required": "{{webUIName}} Servidor Requerido",
"*Prompt node ID(s) are required for image generation": "Los ID de nodo son requeridos para la generación de imágenes", "*Prompt node ID(s) are required for image generation": "Los ID de nodo son requeridos para la generación de imágenes",
@ -29,6 +30,7 @@
"Account Activation Pending": "Activación de cuenta Pendiente", "Account Activation Pending": "Activación de cuenta Pendiente",
"Accurate information": "Información precisa", "Accurate information": "Información precisa",
"Action": "Acción", "Action": "Acción",
"Action not found": "",
"Actions": "Acciones", "Actions": "Acciones",
"Activate": "Activar", "Activate": "Activar",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activar este comando escribiendo \"/{{COMMAND}}\" en el chat", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activar este comando escribiendo \"/{{COMMAND}}\" en el chat",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "Reproducir Siempre Sonido de Notificación", "Always Play Notification Sound": "Reproducir Siempre Sonido de Notificación",
"Amazing": "Emocionante", "Amazing": "Emocionante",
"an assistant": "un asistente", "an assistant": "un asistente",
"An error occurred while fetching the explanation": "",
"Analytics": "Analíticas", "Analytics": "Analíticas",
"Analyzed": "Analizado", "Analyzed": "Analizado",
"Analyzing...": "Analizando..", "Analyzing...": "Analizando..",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Clave API para Endpoints Restringidos", "API Key Endpoint Restrictions": "Clave API para Endpoints Restringidos",
"API keys": "Claves API", "API keys": "Claves API",
"API Version": "Version API", "API Version": "Version API",
"API Version is required": "",
"Application DN": "Aplicacion DN", "Application DN": "Aplicacion DN",
"Application DN Password": "Contraseña Aplicacion DN", "Application DN Password": "Contraseña Aplicacion DN",
"applies to all users with the \"user\" role": "se aplica a todos los usuarios con el rol \"user\" ", "applies to all users with the \"user\" role": "se aplica a todos los usuarios con el rol \"user\" ",
@ -160,6 +164,7 @@
"Banners": "Banners", "Banners": "Banners",
"Base Model (From)": "Modelo Base (desde)", "Base Model (From)": "Modelo Base (desde)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "Cachear Lista Modelos Base acelera el acceso recuperando los modelos base solo al inicio o en el auto guardado rápido de la configuración, si se activa hay que tener en cuenta que los cambios más recientes en las listas de modelos podrían no reflejarse de manera inmediata.", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "Cachear Lista Modelos Base acelera el acceso recuperando los modelos base solo al inicio o en el auto guardado rápido de la configuración, si se activa hay que tener en cuenta que los cambios más recientes en las listas de modelos podrían no reflejarse de manera inmediata.",
"Bearer": "",
"before": "antes", "before": "antes",
"Being lazy": "Ser perezoso", "Being lazy": "Ser perezoso",
"Beta": "Beta", "Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Capturar Audio", "Capture Audio": "Capturar Audio",
"Certificate Path": "Ruta a Certificado", "Certificate Path": "Ruta a Certificado",
"Change Password": "Cambiar Contraseña", "Change Password": "Cambiar Contraseña",
"Channel deleted successfully": "",
"Channel Name": "Nombre del Canal", "Channel Name": "Nombre del Canal",
"Channel updated successfully": "",
"Channels": "Canal", "Channels": "Canal",
"Character": "Carácter", "Character": "Carácter",
"Character limit for autocomplete generation input": "Límite de caracteres de entrada de la generación de autocompletado", "Character limit for autocomplete generation input": "Límite de caracteres de entrada de la generación de autocompletado",
@ -238,6 +245,7 @@
"Close modal": "Cerrar modal", "Close modal": "Cerrar modal",
"Close settings modal": "Cerrar modal configuraciones", "Close settings modal": "Cerrar modal configuraciones",
"Close Sidebar": "Cerrar Barra Lateral", "Close Sidebar": "Cerrar Barra Lateral",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Bloque de Código", "Code Block": "Bloque de Código",
"Code execution": "Ejecución de Código", "Code execution": "Ejecución de Código",
"Code Execution": "Ejecución de Código", "Code Execution": "Ejecución de Código",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "La URL Base de ComfyUI es necesaria.", "ComfyUI Base URL is required.": "La URL Base de ComfyUI es necesaria.",
"ComfyUI Workflow": "Flujo de Trabajo de ComfyUI", "ComfyUI Workflow": "Flujo de Trabajo de ComfyUI",
"ComfyUI Workflow Nodes": "Nodos del Flujo de Trabajo de ComfyUI", "ComfyUI Workflow Nodes": "Nodos del Flujo de Trabajo de ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Comando", "Command": "Comando",
"Comment": "Comentario", "Comment": "Comentario",
"Completions": "Cumplimientos", "Completions": "Cumplimientos",
"Compress Images in Channels": "Comprimir Imágenes en Canales", "Compress Images in Channels": "Comprimir Imágenes en Canales",
"Concurrent Requests": "Número de Solicitudes Concurrentes", "Concurrent Requests": "Número de Solicitudes Concurrentes",
"Config imported successfully": "",
"Configure": "Configurar", "Configure": "Configurar",
"Confirm": "Confirmar", "Confirm": "Confirmar",
"Confirm Password": "Confirma Contraseña", "Confirm Password": "Confirma Contraseña",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Clave API de Datalab Marker Requerida", "Datalab Marker API Key required.": "Clave API de Datalab Marker Requerida",
"DD/MM/YYYY": "DD/MM/YYYY", "DD/MM/YYYY": "DD/MM/YYYY",
"December": "Diciembre", "December": "Diciembre",
"Deepgram": "",
"Default": "Predeterminado", "Default": "Predeterminado",
"Default (Open AI)": "Predeterminado (Open AI)", "Default (Open AI)": "Predeterminado (Open AI)",
"Default (SentenceTransformers)": "Predeterminado (SentenceTransformers)", "Default (SentenceTransformers)": "Predeterminado (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Conexiones Directas", "Direct Connections": "Conexiones Directas",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Las Conexiones Directas permiten a los usuarios conectar a sus propios endpoints compatibles API OpenAI.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Las Conexiones Directas permiten a los usuarios conectar a sus propios endpoints compatibles API OpenAI.",
"Direct Tool Servers": "Servidores de Herramientas Directos", "Direct Tool Servers": "Servidores de Herramientas Directos",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "Deshabilitar Interprete de Código", "Disable Code Interpreter": "Deshabilitar Interprete de Código",
"Disable Image Extraction": "Deshabilitar Extracción de Imágenes", "Disable Image Extraction": "Deshabilitar Extracción de Imágenes",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Desabilita la extracción de imágenes del pdf. Si está habilitado Usar LLM las imágenes se capturan automáticamente. Por defecto el valor es Falso (las imágenes se extraen).", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Desabilita la extracción de imágenes del pdf. Si está habilitado Usar LLM las imágenes se capturan automáticamente. Por defecto el valor es Falso (las imágenes se extraen).",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Ingresar pares \"token:valor_sesgo\" separados por comas (ejemplo: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Ingresar pares \"token:valor_sesgo\" separados por comas (ejemplo: 5432:100, 413:-100)",
"Enter Config in JSON format": "Ingresar Config en formato JSON", "Enter Config in JSON format": "Ingresar Config en formato JSON",
"Enter content for the pending user info overlay. Leave empty for default.": "Ingresar contenido para la sobrecapa informativa de usuario pendiente. Dejar vacío para usar el predeterminado.", "Enter content for the pending user info overlay. Leave empty for default.": "Ingresar contenido para la sobrecapa informativa de usuario pendiente. Dejar vacío para usar el predeterminado.",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "Ingresar la URL Base para la API de Datalab Marker", "Enter Datalab Marker API Base URL": "Ingresar la URL Base para la API de Datalab Marker",
"Enter Datalab Marker API Key": "Ingresar Clave API de Datalab Marker", "Enter Datalab Marker API Key": "Ingresar Clave API de Datalab Marker",
"Enter description": "Ingresar Descripción", "Enter description": "Ingresar Descripción",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Ingresar URL Github en Bruto(raw)", "Enter Github Raw URL": "Ingresar URL Github en Bruto(raw)",
"Enter Google PSE API Key": "Ingresar Clave API de Google PSE", "Enter Google PSE API Key": "Ingresar Clave API de Google PSE",
"Enter Google PSE Engine Id": "Ingresa ID del Motor PSE de Google", "Enter Google PSE Engine Id": "Ingresa ID del Motor PSE de Google",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Ingresar Tamaño de Imagen (p.ej. 512x512)", "Enter Image Size (e.g. 512x512)": "Ingresar Tamaño de Imagen (p.ej. 512x512)",
"Enter Jina API Key": "Ingresar Clave API de Jina", "Enter Jina API Key": "Ingresar Clave API de Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "Ingresar config JSON (ej., {\"disable_links\": true})", "Enter JSON config (e.g., {\"disable_links\": true})": "Ingresar config JSON (ej., {\"disable_links\": true})",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Ingresar Top K Reclasificador", "Enter Top K Reranker": "Ingresar Top K Reclasificador",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Ingresar URL (p.ej., http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Ingresar URL (p.ej., http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Ingresar URL (p.ej., http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Ingresar URL (p.ej., http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "Ingresar Contraseña de Yacy", "Enter Yacy Password": "Ingresar Contraseña de Yacy",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Ingresar URL de Yacy (p.ej. http://yacy.ejemplo.com:8090)", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Ingresar URL de Yacy (p.ej. http://yacy.ejemplo.com:8090)",
"Enter Yacy Username": "Ingresar Nombre de Usuario de Yacy", "Enter Yacy Username": "Ingresar Nombre de Usuario de Yacy",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Ingresa tu URL de webhook", "Enter your webhook URL": "Ingresa tu URL de webhook",
"Error": "Error", "Error": "Error",
"ERROR": "ERROR", "ERROR": "ERROR",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Error accediendo a Google Drive: {{error}}", "Error accessing Google Drive: {{error}}": "Error accediendo a Google Drive: {{error}}",
"Error accessing media devices.": "Error accediendo a dispositivos de medios.", "Error accessing media devices.": "Error accediendo a dispositivos de medios.",
"Error starting recording.": "Error al comenzar la grabación.", "Error starting recording.": "Error al comenzar la grabación.",
"Error unloading model: {{error}}": "Error subiendo el modelo: {{error}}", "Error unloading model: {{error}}": "Error subiendo el modelo: {{error}}",
"Error uploading file: {{error}}": "Error subiendo el archivo: {{error}}", "Error uploading file: {{error}}": "Error subiendo el archivo: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Evaluaciones", "Evaluations": "Evaluaciones",
"Everyone": "Todos", "Everyone": "Todos",
"Exa API Key": "Clave API de Exa", "Exa API Key": "Clave API de Exa",
@ -725,6 +744,7 @@
"H2": "H2", "H2": "H2",
"H3": "H3", "H3": "H3",
"Haptic Feedback": "Realimentación Háptica", "Haptic Feedback": "Realimentación Háptica",
"Height": "",
"Hello, {{name}}": "Hola, {{name}}", "Hello, {{name}}": "Hola, {{name}}",
"Help": "Ayuda", "Help": "Ayuda",
"Help us create the best community leaderboard by sharing your feedback history!": "¡Ayúdanos a crear la mejor tabla clasificatoria comunitaria compartiendo tus comentarios!", "Help us create the best community leaderboard by sharing your feedback history!": "¡Ayúdanos a crear la mejor tabla clasificatoria comunitaria compartiendo tus comentarios!",
@ -733,6 +753,7 @@
"Hide": "Esconder", "Hide": "Esconder",
"Hide from Sidebar": "Ocultar Panel Lateral", "Hide from Sidebar": "Ocultar Panel Lateral",
"Hide Model": "Ocultar Modelo", "Hide Model": "Ocultar Modelo",
"High": "",
"High Contrast Mode": "Modo Alto Contraste", "High Contrast Mode": "Modo Alto Contraste",
"Home": "Inicio", "Home": "Inicio",
"Host": "Host", "Host": "Host",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Inyecta el contenido completo como contexto para un procesado comprensivo, recomendado para consultas complejas.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Inyecta el contenido completo como contexto para un procesado comprensivo, recomendado para consultas complejas.",
"Input": "Entrada", "Input": "Entrada",
"Input commands": "Ingresar comandos", "Input commands": "Ingresar comandos",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Ingresar variables", "Input Variables": "Ingresar variables",
"Insert": "Insertar", "Insert": "Insertar",
"Insert Follow-Up Prompt to Input": "Insertar Sugerencia de Indicador a la Entrada", "Insert Follow-Up Prompt to Input": "Insertar Sugerencia de Indicador a la Entrada",
@ -789,6 +811,7 @@
"Invalid file content": "Contenido de archivo inválido", "Invalid file content": "Contenido de archivo inválido",
"Invalid file format.": "Formato de archivo inválido.", "Invalid file format.": "Formato de archivo inválido.",
"Invalid JSON file": "Archivo JSON inválido", "Invalid JSON file": "Archivo JSON inválido",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "Formato JSON Inválido en Configuración Adicional", "Invalid JSON format in Additional Config": "Formato JSON Inválido en Configuración Adicional",
"Invalid Tag": "Etiqueta Inválida", "Invalid Tag": "Etiqueta Inválida",
"is typing...": "está escribiendo...", "is typing...": "está escribiendo...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "Mantener Sugerencias de Indicador en el Chat", "Keep Follow-Up Prompts in Chat": "Mantener Sugerencias de Indicador en el Chat",
"Keep in Sidebar": "Mantener en Barra Lateral", "Keep in Sidebar": "Mantener en Barra Lateral",
"Key": "Clave", "Key": "Clave",
"Key is required": "",
"Keyboard shortcuts": "Atajos de teclado", "Keyboard shortcuts": "Atajos de teclado",
"Knowledge": "Conocimiento", "Knowledge": "Conocimiento",
"Knowledge Access": "Acceso a Conocimiento", "Knowledge Access": "Acceso a Conocimiento",
"Knowledge Base": "Base de Conocimiento", "Knowledge Base": "Base de Conocimiento",
"Knowledge created successfully.": "Conocimiento creado correctamente.", "Knowledge created successfully.": "Conocimiento creado correctamente.",
"Knowledge deleted successfully.": "Conocimiento eliminado correctamente.", "Knowledge deleted successfully.": "Conocimiento eliminado correctamente.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Compartir Conocimiento Públicamente", "Knowledge Public Sharing": "Compartir Conocimiento Públicamente",
"Knowledge reset successfully.": "Conocimiento restablecido correctamente.", "Knowledge reset successfully.": "Conocimiento restablecido correctamente.",
"Knowledge updated successfully": "Conocimiento actualizado correctamente.", "Knowledge updated successfully": "Conocimiento actualizado correctamente.",
@ -852,6 +878,7 @@
"Local Task Model": "Modelo Local para Tarea", "Local Task Model": "Modelo Local para Tarea",
"Location access not allowed": "Sin acceso a la Ubicación", "Location access not allowed": "Sin acceso a la Ubicación",
"Lost": "Perdido", "Lost": "Perdido",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Creado por la Comunidad Open-WebUI", "Made by Open WebUI Community": "Creado por la Comunidad Open-WebUI",
"Make password visible in the user interface": "Hacer visible la contraseña en la interfaz del usuario.", "Make password visible in the user interface": "Hacer visible la contraseña en la interfaz del usuario.",
@ -873,6 +900,7 @@
"Max Upload Size": "Tamaño Max de Subidas", "Max Upload Size": "Tamaño Max de Subidas",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Se puede descargar un máximo de 3 modelos simultáneamente. Por favor, reinténtelo más tarde.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Se puede descargar un máximo de 3 modelos simultáneamente. Por favor, reinténtelo más tarde.",
"May": "Mayo", "May": "Mayo",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Las memorias accesibles por los LLMs se mostrarán aquí.", "Memories accessible by LLMs will be shown here.": "Las memorias accesibles por los LLMs se mostrarán aquí.",
"Memory": "Memoria", "Memory": "Memoria",
"Memory added successfully": "Memoria añadida correctamente", "Memory added successfully": "Memoria añadida correctamente",
@ -908,6 +936,7 @@
"Model ID is required.": "El ID de Modelo es requerido", "Model ID is required.": "El ID de Modelo es requerido",
"Model IDs": "IDs Modelo", "Model IDs": "IDs Modelo",
"Model Name": "Nombre Modelo", "Model Name": "Nombre Modelo",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "El Nombre de Modelo es requerido", "Model Name is required.": "El Nombre de Modelo es requerido",
"Model not selected": "Modelo no seleccionado", "Model not selected": "Modelo no seleccionado",
"Model Params": "Paráms Modelo", "Model Params": "Paráms Modelo",
@ -926,6 +955,7 @@
"More Concise": "Más Conciso", "More Concise": "Más Conciso",
"More Options": "Más Opciones", "More Options": "Más Opciones",
"Name": "Nombre", "Name": "Nombre",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nombra tu base de conocimientos", "Name your knowledge base": "Nombra tu base de conocimientos",
"Native": "Nativo", "Native": "Nativo",
"New Button": "Nuevo Botón", "New Button": "Nuevo Botón",
@ -960,7 +990,9 @@
"No search query generated": "No se generó ninguna consulta de búsqueda", "No search query generated": "No se generó ninguna consulta de búsqueda",
"No source available": "No hay fuente disponible", "No source available": "No hay fuente disponible",
"No users were found.": "No se encontraron usuarios.", "No users were found.": "No se encontraron usuarios.",
"No valves": "",
"No valves to update": "No hay válvulas para actualizar", "No valves to update": "No hay válvulas para actualizar",
"Node Ids": "",
"None": "Ninguno", "None": "Ninguno",
"Not factually correct": "No es correcto en todos los aspectos", "Not factually correct": "No es correcto en todos los aspectos",
"Not helpful": "No aprovechable", "Not helpful": "No aprovechable",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Desplazamiento al Cambiar Rama", "Scroll On Branch Change": "Desplazamiento al Cambiar Rama",
"Search": "Buscar", "Search": "Buscar",
"Search a model": "Buscar un Modelo", "Search a model": "Buscar un Modelo",
"Search all emojis": "",
"Search Base": "Busqueda Base", "Search Base": "Busqueda Base",
"Search Chats": "Buscar Chats", "Search Chats": "Buscar Chats",
"Search Collection": "Buscar Colección", "Search Collection": "Buscar Colección",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Ver readme.md para instrucciones", "See readme.md for instructions": "Ver readme.md para instrucciones",
"See what's new": "Ver las novedades", "See what's new": "Ver las novedades",
"Seed": "Semilla", "Seed": "Semilla",
"Select": "",
"Select a base model": "Seleccionar un modelo base", "Select a base model": "Seleccionar un modelo base",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "Seleccionar una conversación para previsualizar", "Select a conversation to preview": "Seleccionar una conversación para previsualizar",
"Select a engine": "Seleccionar un motor", "Select a engine": "Seleccionar un motor",
"Select a function": "Seleccionar una función", "Select a function": "Seleccionar una función",
"Select a group": "Seleccionar un grupo", "Select a group": "Seleccionar un grupo",
"Select a language": "",
"Select a mode": "",
"Select a model": "Selecciona un modelo", "Select a model": "Selecciona un modelo",
"Select a model (optional)": "",
"Select a pipeline": "Seleccionar una tubería", "Select a pipeline": "Seleccionar una tubería",
"Select a pipeline url": "Seleccionar una url de tubería", "Select a pipeline url": "Seleccionar una url de tubería",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Seleccioanr una herramienta", "Select a tool": "Seleccioanr una herramienta",
"Select a voice": "",
"Select an auth method": "Seleccionar un método de autentificación", "Select an auth method": "Seleccionar un método de autentificación",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Seleccionar una instancia de Ollama", "Select an Ollama instance": "Seleccionar una instancia de Ollama",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Seleccionar Motor", "Select Engine": "Seleccionar Motor",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Seleccionar Conocimiento", "Select Knowledge": "Seleccionar Conocimiento",
"Select only one model to call": "Seleccionar sólo un modelo a llamar", "Select only one model to call": "Seleccionar sólo un modelo a llamar",
"Selected model(s) do not support image inputs": "Modelo(s) seleccionado(s) no admiten entradas de imagen", "Selected model(s) do not support image inputs": "Modelo(s) seleccionado(s) no admiten entradas de imagen",
@ -1215,6 +1262,7 @@
"Serply API Key": "Clave API de Serply", "Serply API Key": "Clave API de Serply",
"Serpstack API Key": "Clave API de Serpstack", "Serpstack API Key": "Clave API de Serpstack",
"Server connection verified": "Conexión al servidor verificada", "Server connection verified": "Conexión al servidor verificada",
"Session": "",
"Set as default": "Establecer como Predeterminado", "Set as default": "Establecer como Predeterminado",
"Set CFG Scale": "Establecer la Escala CFG", "Set CFG Scale": "Establecer la Escala CFG",
"Set Default Model": "Establecer Modelo Predeterminado", "Set Default Model": "Establecer Modelo Predeterminado",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "Evitar Caché", "Skip Cache": "Evitar Caché",
"Skip the cache and re-run the inference. Defaults to False.": "Evitar caché y reiniciar la interfaz. Valor predeterminado Falso", "Skip the cache and re-run the inference. Defaults to False.": "Evitar caché y reiniciar la interfaz. Valor predeterminado Falso",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "API sID de Sougou Search", "Sougou Search API sID": "API sID de Sougou Search",
"Sougou Search API SK": "SK API de Sougou Search", "Sougou Search API SK": "SK API de Sougou Search",
"Source": "Fuente", "Source": "Fuente",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Exportar PDF Estilizado", "Stylized PDF Export": "Exportar PDF Estilizado",
"Subtitle (e.g. about the Roman Empire)": "Subtítulo (p.ej. sobre el Imperio Romano)", "Subtitle (e.g. about the Roman Empire)": "Subtítulo (p.ej. sobre el Imperio Romano)",
"Success": "Correcto", "Success": "Correcto",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Actualizado correctamente.", "Successfully updated.": "Actualizado correctamente.",
"Suggest a change": "Sugerir un cambio", "Suggest a change": "Sugerir un cambio",
"Suggested": "Sugerido", "Suggested": "Sugerido",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "El tamaño máximo del archivo en MB. Si el tamaño del archivo supera este límite, el archivo no se subirá.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "El tamaño máximo del archivo en MB. Si el tamaño del archivo supera este límite, el archivo no se subirá.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "El número máximo de archivos que se pueden utilizar a la vez en el chat. Si se supera este límite, los archivos no se subirán.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "El número máximo de archivos que se pueden utilizar a la vez en el chat. Si se supera este límite, los archivos no se subirán.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "El formato de salida para el texto. Puede ser 'json', 'markdown' o 'html'. Valor predeterminado: 'markdown'", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "El formato de salida para el texto. Puede ser 'json', 'markdown' o 'html'. Valor predeterminado: 'markdown'",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "La puntuación debe ser un valor entre 0.0 (0%) y 1.0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "La puntuación debe ser un valor entre 0.0 (0%) y 1.0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "El tamaño del fragmentado incremental para el modelo. Aumentar el tamaño del fragmentado hará que el modelo responda con fragmentos de texto más grandes cada vez.", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "El tamaño del fragmentado incremental para el modelo. Aumentar el tamaño del fragmentado hará que el modelo responda con fragmentos de texto más grandes cada vez.",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "La temperatura del modelo. Aumentar la temperatura hará que el modelo responda de forma más creativa.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "La temperatura del modelo. Aumentar la temperatura hará que el modelo responda de forma más creativa.",
@ -1439,7 +1495,9 @@
"Upload Files": "Subir Archivos", "Upload Files": "Subir Archivos",
"Upload Pipeline": "Subir Tubería", "Upload Pipeline": "Subir Tubería",
"Upload Progress": "Progreso de la Subida", "Upload Progress": "Progreso de la Subida",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "Modo URL", "URL Mode": "Modo URL",
"Usage": "Uso", "Usage": "Uso",
"Use '#' in the prompt input to load and include your knowledge.": "Utilizar '#' en el indicador para cargar e incluir tu conocimiento.", "Use '#' in the prompt input to load and include your knowledge.": "Utilizar '#' en el indicador para cargar e incluir tu conocimiento.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "Usando Recuperación Focalizada", "Using Focused Retrieval": "Usando Recuperación Focalizada",
"Using the default arena model with all models. Click the plus button to add custom models.": "Usando el modelo de arena predeterminado con todos los modelos. Pulsar en el botón + para agregar modelos personalizados.", "Using the default arena model with all models. Click the plus button to add custom models.": "Usando el modelo de arena predeterminado con todos los modelos. Pulsar en el botón + para agregar modelos personalizados.",
"Valid time units:": "Unidades de tiempo válidas:", "Valid time units:": "Unidades de tiempo válidas:",
"Validate certificate": "",
"Valves": "Válvulas", "Valves": "Válvulas",
"Valves updated": "Válvulas actualizadas", "Valves updated": "Válvulas actualizadas",
"Valves updated successfully": "Válvulas actualizados correctamente", "Valves updated successfully": "Válvulas actualizados correctamente",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Local)", "Whisper (Local)": "Whisper (Local)",
"Why?": "¿Por qué?", "Why?": "¿Por qué?",
"Widescreen Mode": "Modo Pantalla Ancha", "Widescreen Mode": "Modo Pantalla Ancha",
"Width": "",
"Won": "Ganó", "Won": "Ganó",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Trabaja conjuntamente con top-k. Un valor más alto (p.ej. 0.95) dará lugar a un texto más diverso, mientras que un valor más bajo (p.ej. 0.5) generará un texto más centrado y conservador.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Trabaja conjuntamente con top-k. Un valor más alto (p.ej. 0.95) dará lugar a un texto más diverso, mientras que un valor más bajo (p.ej. 0.5) generará un texto más centrado y conservador.",
"Workspace": "Espacio de Trabajo", "Workspace": "Espacio de Trabajo",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} peidetud rida", "{{COUNT}} hidden lines": "{{COUNT}} peidetud rida",
"{{COUNT}} Replies": "{{COUNT}} vastust", "{{COUNT}} Replies": "{{COUNT}} vastust",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} vestlused", "{{user}}'s Chats": "{{user}} vestlused",
"{{webUIName}} Backend Required": "{{webUIName}} taustaserver on vajalik", "{{webUIName}} Backend Required": "{{webUIName}} taustaserver on vajalik",
"*Prompt node ID(s) are required for image generation": "*Vihje sõlme ID(d) on piltide genereerimiseks vajalikud", "*Prompt node ID(s) are required for image generation": "*Vihje sõlme ID(d) on piltide genereerimiseks vajalikud",
@ -29,6 +30,7 @@
"Account Activation Pending": "Konto aktiveerimine ootel", "Account Activation Pending": "Konto aktiveerimine ootel",
"Accurate information": "Täpne informatsioon", "Accurate information": "Täpne informatsioon",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Toimingud", "Actions": "Toimingud",
"Activate": "Aktiveeri", "Activate": "Aktiveeri",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktiveeri see käsk, trükkides \"/{{COMMAND}}\" vestluse sisendritta.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktiveeri see käsk, trükkides \"/{{COMMAND}}\" vestluse sisendritta.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "Suurepärane", "Amazing": "Suurepärane",
"an assistant": "assistent", "an assistant": "assistent",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Analüüsitud", "Analyzed": "Analüüsitud",
"Analyzing...": "Analüüsimine...", "Analyzing...": "Analüüsimine...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API võtme lõpp-punkti piirangud", "API Key Endpoint Restrictions": "API võtme lõpp-punkti piirangud",
"API keys": "API võtmed", "API keys": "API võtmed",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "Rakenduse DN", "Application DN": "Rakenduse DN",
"Application DN Password": "Rakenduse DN parool", "Application DN Password": "Rakenduse DN parool",
"applies to all users with the \"user\" role": "kehtib kõigile kasutajatele \"kasutaja\" rolliga", "applies to all users with the \"user\" role": "kehtib kõigile kasutajatele \"kasutaja\" rolliga",
@ -160,6 +164,7 @@
"Banners": "Bännerid", "Banners": "Bännerid",
"Base Model (From)": "Baas mudel (Allikas)", "Base Model (From)": "Baas mudel (Allikas)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "enne", "before": "enne",
"Being lazy": "Laisklemine", "Being lazy": "Laisklemine",
"Beta": "Beeta", "Beta": "Beeta",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "Sertifikaadi tee", "Certificate Path": "Sertifikaadi tee",
"Change Password": "Muuda parooli", "Change Password": "Muuda parooli",
"Channel deleted successfully": "",
"Channel Name": "Kanali nimi", "Channel Name": "Kanali nimi",
"Channel updated successfully": "",
"Channels": "Kanalid", "Channels": "Kanalid",
"Character": "Tegelane", "Character": "Tegelane",
"Character limit for autocomplete generation input": "Märkide piirang automaattäitmise genereerimise sisendile", "Character limit for autocomplete generation input": "Märkide piirang automaattäitmise genereerimise sisendile",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Koodi täitmine", "Code execution": "Koodi täitmine",
"Code Execution": "Koodi täitmine", "Code Execution": "Koodi täitmine",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI baas-URL on nõutav.", "ComfyUI Base URL is required.": "ComfyUI baas-URL on nõutav.",
"ComfyUI Workflow": "ComfyUI töövoog", "ComfyUI Workflow": "ComfyUI töövoog",
"ComfyUI Workflow Nodes": "ComfyUI töövoo sõlmed", "ComfyUI Workflow Nodes": "ComfyUI töövoo sõlmed",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Käsk", "Command": "Käsk",
"Comment": "", "Comment": "",
"Completions": "Lõpetamised", "Completions": "Lõpetamised",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Samaaegsed päringud", "Concurrent Requests": "Samaaegsed päringud",
"Config imported successfully": "",
"Configure": "Konfigureeri", "Configure": "Konfigureeri",
"Confirm": "Kinnita", "Confirm": "Kinnita",
"Confirm Password": "Kinnita parool", "Confirm Password": "Kinnita parool",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Detsember", "December": "Detsember",
"Deepgram": "",
"Default": "Vaikimisi", "Default": "Vaikimisi",
"Default (Open AI)": "Vaikimisi (Open AI)", "Default (Open AI)": "Vaikimisi (Open AI)",
"Default (SentenceTransformers)": "Vaikimisi (SentenceTransformers)", "Default (SentenceTransformers)": "Vaikimisi (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Otsesed ühendused", "Direct Connections": "Otsesed ühendused",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Otsesed ühendused võimaldavad kasutajatel ühenduda oma OpenAI-ga ühilduvate API lõpp-punktidega.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Otsesed ühendused võimaldavad kasutajatel ühenduda oma OpenAI-ga ühilduvate API lõpp-punktidega.",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Sisestage komadega eraldatud \"token:kallutuse_väärtus\" paarid (näide: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Sisestage komadega eraldatud \"token:kallutuse_väärtus\" paarid (näide: 5432:100, 413:-100)",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "Sisestage kirjeldus", "Enter description": "Sisestage kirjeldus",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Sisestage Github toorURL", "Enter Github Raw URL": "Sisestage Github toorURL",
"Enter Google PSE API Key": "Sisestage Google PSE API võti", "Enter Google PSE API Key": "Sisestage Google PSE API võti",
"Enter Google PSE Engine Id": "Sisestage Google PSE mootori ID", "Enter Google PSE Engine Id": "Sisestage Google PSE mootori ID",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Sisestage pildi suurus (nt 512x512)", "Enter Image Size (e.g. 512x512)": "Sisestage pildi suurus (nt 512x512)",
"Enter Jina API Key": "Sisestage Jina API võti", "Enter Jina API Key": "Sisestage Jina API võti",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Sisestage URL (nt http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Sisestage URL (nt http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Sisestage URL (nt http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Sisestage URL (nt http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Sisestage oma webhook URL", "Enter your webhook URL": "Sisestage oma webhook URL",
"Error": "Viga", "Error": "Viga",
"ERROR": "VIGA", "ERROR": "VIGA",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Viga Google Drive'i juurdepääsul: {{error}}", "Error accessing Google Drive: {{error}}": "Viga Google Drive'i juurdepääsul: {{error}}",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "Viga faili üleslaadimisel: {{error}}", "Error uploading file: {{error}}": "Viga faili üleslaadimisel: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Hindamised", "Evaluations": "Hindamised",
"Everyone": "", "Everyone": "",
"Exa API Key": "Exa API võti", "Exa API Key": "Exa API võti",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Haptiline tagasiside", "Haptic Feedback": "Haptiline tagasiside",
"Height": "",
"Hello, {{name}}": "Tere, {{name}}", "Hello, {{name}}": "Tere, {{name}}",
"Help": "Abi", "Help": "Abi",
"Help us create the best community leaderboard by sharing your feedback history!": "Aidake meil luua parim kogukonna edetabel, jagades oma tagasiside ajalugu!", "Help us create the best community leaderboard by sharing your feedback history!": "Aidake meil luua parim kogukonna edetabel, jagades oma tagasiside ajalugu!",
@ -733,6 +753,7 @@
"Hide": "Peida", "Hide": "Peida",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "Avaleht", "Home": "Avaleht",
"Host": "Host", "Host": "Host",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Sisendkäsud", "Input commands": "Sisendkäsud",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "Vigane failiformaat.", "Invalid file format.": "Vigane failiformaat.",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Vigane silt", "Invalid Tag": "Vigane silt",
"is typing...": "kirjutab...", "is typing...": "kirjutab...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "Võti", "Key": "Võti",
"Key is required": "",
"Keyboard shortcuts": "Klaviatuuri otseteed", "Keyboard shortcuts": "Klaviatuuri otseteed",
"Knowledge": "Teadmised", "Knowledge": "Teadmised",
"Knowledge Access": "Teadmiste juurdepääs", "Knowledge Access": "Teadmiste juurdepääs",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Teadmised edukalt loodud.", "Knowledge created successfully.": "Teadmised edukalt loodud.",
"Knowledge deleted successfully.": "Teadmised edukalt kustutatud.", "Knowledge deleted successfully.": "Teadmised edukalt kustutatud.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Teadmised edukalt lähtestatud.", "Knowledge reset successfully.": "Teadmised edukalt lähtestatud.",
"Knowledge updated successfully": "Teadmised edukalt uuendatud", "Knowledge updated successfully": "Teadmised edukalt uuendatud",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "Asukoha juurdepääs pole lubatud", "Location access not allowed": "Asukoha juurdepääs pole lubatud",
"Lost": "Kaotanud", "Lost": "Kaotanud",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Loodud Open WebUI kogukonna poolt", "Made by Open WebUI Community": "Loodud Open WebUI kogukonna poolt",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "Maksimaalne üleslaadimise suurus", "Max Upload Size": "Maksimaalne üleslaadimise suurus",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Korraga saab alla laadida maksimaalselt 3 mudelit. Palun proovige hiljem uuesti.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Korraga saab alla laadida maksimaalselt 3 mudelit. Palun proovige hiljem uuesti.",
"May": "Mai", "May": "Mai",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLM-idele ligipääsetavad mälestused kuvatakse siin.", "Memories accessible by LLMs will be shown here.": "LLM-idele ligipääsetavad mälestused kuvatakse siin.",
"Memory": "Mälu", "Memory": "Mälu",
"Memory added successfully": "Mälu edukalt lisatud", "Memory added successfully": "Mälu edukalt lisatud",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "Mudeli ID-d", "Model IDs": "Mudeli ID-d",
"Model Name": "Mudeli nimi", "Model Name": "Mudeli nimi",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Mudel pole valitud", "Model not selected": "Mudel pole valitud",
"Model Params": "Mudeli parameetrid", "Model Params": "Mudeli parameetrid",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Nimi", "Name": "Nimi",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nimetage oma teadmiste baas", "Name your knowledge base": "Nimetage oma teadmiste baas",
"Native": "Omane", "Native": "Omane",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Otsingupäringut ei genereeritud", "No search query generated": "Otsingupäringut ei genereeritud",
"No source available": "Allikas pole saadaval", "No source available": "Allikas pole saadaval",
"No users were found.": "Kasutajaid ei leitud.", "No users were found.": "Kasutajaid ei leitud.",
"No valves": "",
"No valves to update": "Pole klappe, mida uuendada", "No valves to update": "Pole klappe, mida uuendada",
"Node Ids": "",
"None": "Mitte ühtegi", "None": "Mitte ühtegi",
"Not factually correct": "Faktiliselt ebakorrektne", "Not factually correct": "Faktiliselt ebakorrektne",
"Not helpful": "Pole abistav", "Not helpful": "Pole abistav",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Otsing", "Search": "Otsing",
"Search a model": "Otsi mudelit", "Search a model": "Otsi mudelit",
"Search all emojis": "",
"Search Base": "Otsingu baas", "Search Base": "Otsingu baas",
"Search Chats": "Otsi vestlusi", "Search Chats": "Otsi vestlusi",
"Search Collection": "Otsi kogust", "Search Collection": "Otsi kogust",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Juhiste saamiseks vaadake readme.md", "See readme.md for instructions": "Juhiste saamiseks vaadake readme.md",
"See what's new": "Vaata, mis on uut", "See what's new": "Vaata, mis on uut",
"Seed": "Seeme", "Seed": "Seeme",
"Select": "",
"Select a base model": "Valige baas mudel", "Select a base model": "Valige baas mudel",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Valige mootor", "Select a engine": "Valige mootor",
"Select a function": "Valige funktsioon", "Select a function": "Valige funktsioon",
"Select a group": "Valige grupp", "Select a group": "Valige grupp",
"Select a language": "",
"Select a mode": "",
"Select a model": "Valige mudel", "Select a model": "Valige mudel",
"Select a model (optional)": "",
"Select a pipeline": "Valige torustik", "Select a pipeline": "Valige torustik",
"Select a pipeline url": "Valige torustiku URL", "Select a pipeline url": "Valige torustiku URL",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Valige tööriist", "Select a tool": "Valige tööriist",
"Select a voice": "",
"Select an auth method": "Valige autentimismeetod", "Select an auth method": "Valige autentimismeetod",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Valige Ollama instants", "Select an Ollama instance": "Valige Ollama instants",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Valige mootor", "Select Engine": "Valige mootor",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Valige teadmised", "Select Knowledge": "Valige teadmised",
"Select only one model to call": "Valige ainult üks mudel kutsumiseks", "Select only one model to call": "Valige ainult üks mudel kutsumiseks",
"Selected model(s) do not support image inputs": "Valitud mudel(id) ei toeta pilte sisendina", "Selected model(s) do not support image inputs": "Valitud mudel(id) ei toeta pilte sisendina",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API võti", "Serply API Key": "Serply API võti",
"Serpstack API Key": "Serpstack API võti", "Serpstack API Key": "Serpstack API võti",
"Server connection verified": "Serveri ühendus kontrollitud", "Server connection verified": "Serveri ühendus kontrollitud",
"Session": "",
"Set as default": "Määra vaikimisi", "Set as default": "Määra vaikimisi",
"Set CFG Scale": "Määra CFG skaala", "Set CFG Scale": "Määra CFG skaala",
"Set Default Model": "Määra vaikimisi mudel", "Set Default Model": "Määra vaikimisi mudel",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Allikas", "Source": "Allikas",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Alampealkiri (nt Rooma impeeriumi kohta)", "Subtitle (e.g. about the Roman Empire)": "Alampealkiri (nt Rooma impeeriumi kohta)",
"Success": "Õnnestus", "Success": "Õnnestus",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Edukalt uuendatud.", "Successfully updated.": "Edukalt uuendatud.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Soovitatud", "Suggested": "Soovitatud",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Maksimaalne failisuurus MB-des. Kui failisuurus ületab seda piiri, faili ei laadita üles.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Maksimaalne failisuurus MB-des. Kui failisuurus ületab seda piiri, faili ei laadita üles.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Maksimaalne failide arv, mida saab korraga vestluses kasutada. Kui failide arv ületab selle piiri, faile ei laadita üles.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Maksimaalne failide arv, mida saab korraga vestluses kasutada. Kui failide arv ületab selle piiri, faile ei laadita üles.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Skoor peaks olema väärtus vahemikus 0,0 (0%) kuni 1,0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Skoor peaks olema väärtus vahemikus 0,0 (0%) kuni 1,0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Mudeli temperatuur. Temperatuuri suurendamine paneb mudeli vastama loovamalt.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Mudeli temperatuur. Temperatuuri suurendamine paneb mudeli vastama loovamalt.",
@ -1439,7 +1495,9 @@
"Upload Files": "Laadi failid üles", "Upload Files": "Laadi failid üles",
"Upload Pipeline": "Laadi torustik üles", "Upload Pipeline": "Laadi torustik üles",
"Upload Progress": "Üleslaadimise progress", "Upload Progress": "Üleslaadimise progress",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "URL režiim", "URL Mode": "URL režiim",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "Kasutage '#' vihjete sisendis, et laadida ja kaasata oma teadmised.", "Use '#' in the prompt input to load and include your knowledge.": "Kasutage '#' vihjete sisendis, et laadida ja kaasata oma teadmised.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Kasutatakse vaikimisi areena mudelit kõigi mudelitega. Kohandatud mudelite lisamiseks klõpsake plussmärgiga nuppu.", "Using the default arena model with all models. Click the plus button to add custom models.": "Kasutatakse vaikimisi areena mudelit kõigi mudelitega. Kohandatud mudelite lisamiseks klõpsake plussmärgiga nuppu.",
"Valid time units:": "Kehtivad ajaühikud:", "Valid time units:": "Kehtivad ajaühikud:",
"Validate certificate": "",
"Valves": "Klapid", "Valves": "Klapid",
"Valves updated": "Klapid uuendatud", "Valves updated": "Klapid uuendatud",
"Valves updated successfully": "Klapid edukalt uuendatud", "Valves updated successfully": "Klapid edukalt uuendatud",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (lokaalne)", "Whisper (Local)": "Whisper (lokaalne)",
"Why?": "Miks?", "Why?": "Miks?",
"Widescreen Mode": "Laiekraani režiim", "Widescreen Mode": "Laiekraani režiim",
"Width": "",
"Won": "Võitis", "Won": "Võitis",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Töötab koos top-k-ga. Kõrgem väärtus (nt 0,95) annab tulemuseks mitmekesisema teksti, samas kui madalam väärtus (nt 0,5) genereerib keskendunuma ja konservatiivsema teksti.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Töötab koos top-k-ga. Kõrgem väärtus (nt 0,95) annab tulemuseks mitmekesisema teksti, samas kui madalam väärtus (nt 0,5) genereerib keskendunuma ja konservatiivsema teksti.",
"Workspace": "Tööala", "Workspace": "Tööala",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}-ren Txatak", "{{user}}'s Chats": "{{user}}-ren Txatak",
"{{webUIName}} Backend Required": "{{webUIName}} Backend-a Beharrezkoa", "{{webUIName}} Backend Required": "{{webUIName}} Backend-a Beharrezkoa",
"*Prompt node ID(s) are required for image generation": "Prompt nodoaren IDa(k) beharrezkoak dira irudiak sortzeko", "*Prompt node ID(s) are required for image generation": "Prompt nodoaren IDa(k) beharrezkoak dira irudiak sortzeko",
@ -29,6 +30,7 @@
"Account Activation Pending": "Kontuaren Aktibazioa Zain", "Account Activation Pending": "Kontuaren Aktibazioa Zain",
"Accurate information": "Informazio zehatza", "Accurate information": "Informazio zehatza",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Ekintzak", "Actions": "Ekintzak",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "\"/{{COMMAND}}\" idatziz aktibatu komando hau txataren sarreran.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "\"/{{COMMAND}}\" idatziz aktibatu komando hau txataren sarreran.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "Harrigarria", "Amazing": "Harrigarria",
"an assistant": "laguntzaile bat", "an assistant": "laguntzaile bat",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "API gakoak", "API keys": "API gakoak",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "Aplikazioaren DN", "Application DN": "Aplikazioaren DN",
"Application DN Password": "Aplikazioaren DN Pasahitza", "Application DN Password": "Aplikazioaren DN Pasahitza",
"applies to all users with the \"user\" role": "\"erabiltzaile\" rola duten erabiltzaile guztiei aplikatzen zaie", "applies to all users with the \"user\" role": "\"erabiltzaile\" rola duten erabiltzaile guztiei aplikatzen zaie",
@ -160,6 +164,7 @@
"Banners": "Bannerrak", "Banners": "Bannerrak",
"Base Model (From)": "Oinarrizko Eredua (Nondik)", "Base Model (From)": "Oinarrizko Eredua (Nondik)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "aurretik", "before": "aurretik",
"Being lazy": "Alferra izatea", "Being lazy": "Alferra izatea",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "Ziurtagiriaren Bidea", "Certificate Path": "Ziurtagiriaren Bidea",
"Change Password": "Aldatu Pasahitza", "Change Password": "Aldatu Pasahitza",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "Karakterea", "Character": "Karakterea",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Kodearen exekuzioa", "Code execution": "Kodearen exekuzioa",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI Oinarri URLa beharrezkoa da.", "ComfyUI Base URL is required.": "ComfyUI Oinarri URLa beharrezkoa da.",
"ComfyUI Workflow": "ComfyUI Lan-fluxua", "ComfyUI Workflow": "ComfyUI Lan-fluxua",
"ComfyUI Workflow Nodes": "ComfyUI Lan-fluxu Nodoak", "ComfyUI Workflow Nodes": "ComfyUI Lan-fluxu Nodoak",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Komandoa", "Command": "Komandoa",
"Comment": "", "Comment": "",
"Completions": "Osatzeak", "Completions": "Osatzeak",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Eskari Konkurrenteak", "Concurrent Requests": "Eskari Konkurrenteak",
"Config imported successfully": "",
"Configure": "Konfiguratu", "Configure": "Konfiguratu",
"Confirm": "Berretsi", "Confirm": "Berretsi",
"Confirm Password": "Berretsi Pasahitza", "Confirm Password": "Berretsi Pasahitza",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Abendua", "December": "Abendua",
"Deepgram": "",
"Default": "Lehenetsia", "Default": "Lehenetsia",
"Default (Open AI)": "Lehenetsia (Open AI)", "Default (Open AI)": "Lehenetsia (Open AI)",
"Default (SentenceTransformers)": "Lehenetsia (SentenceTransformers)", "Default (SentenceTransformers)": "Lehenetsia (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "Sartu deskribapena", "Enter description": "Sartu deskribapena",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Sartu Github Raw URLa", "Enter Github Raw URL": "Sartu Github Raw URLa",
"Enter Google PSE API Key": "Sartu Google PSE API Gakoa", "Enter Google PSE API Key": "Sartu Google PSE API Gakoa",
"Enter Google PSE Engine Id": "Sartu Google PSE Motor IDa", "Enter Google PSE Engine Id": "Sartu Google PSE Motor IDa",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Sartu Irudi Tamaina (adib. 512x512)", "Enter Image Size (e.g. 512x512)": "Sartu Irudi Tamaina (adib. 512x512)",
"Enter Jina API Key": "Sartu Jina API Gakoa", "Enter Jina API Key": "Sartu Jina API Gakoa",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Sartu URLa (adib. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Sartu URLa (adib. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Sartu URLa (adib. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Sartu URLa (adib. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "Errorea", "Error": "Errorea",
"ERROR": "ERROREA", "ERROR": "ERROREA",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Ebaluazioak", "Evaluations": "Ebaluazioak",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Feedback Haptikoa", "Haptic Feedback": "Feedback Haptikoa",
"Height": "",
"Hello, {{name}}": "Kaixo, {{name}}", "Hello, {{name}}": "Kaixo, {{name}}",
"Help": "Laguntza", "Help": "Laguntza",
"Help us create the best community leaderboard by sharing your feedback history!": "Lagundu komunitatearen sailkapen onena sortzen zure feedback historia partekatuz!", "Help us create the best community leaderboard by sharing your feedback history!": "Lagundu komunitatearen sailkapen onena sortzen zure feedback historia partekatuz!",
@ -733,6 +753,7 @@
"Hide": "Ezkutatu", "Hide": "Ezkutatu",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "Ostalaria", "Host": "Ostalaria",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Sartu komandoak", "Input commands": "Sartu komandoak",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "Fitxategi formatu baliogabea.", "Invalid file format.": "Fitxategi formatu baliogabea.",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Etiketa Baliogabea", "Invalid Tag": "Etiketa Baliogabea",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "Gakoa", "Key": "Gakoa",
"Key is required": "",
"Keyboard shortcuts": "Teklatuko lasterbideak", "Keyboard shortcuts": "Teklatuko lasterbideak",
"Knowledge": "Ezagutza", "Knowledge": "Ezagutza",
"Knowledge Access": "Ezagutzarako Sarbidea", "Knowledge Access": "Ezagutzarako Sarbidea",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Ezagutza ongi sortu da.", "Knowledge created successfully.": "Ezagutza ongi sortu da.",
"Knowledge deleted successfully.": "Ezagutza ongi ezabatu da.", "Knowledge deleted successfully.": "Ezagutza ongi ezabatu da.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Ezagutza ongi berrezarri da.", "Knowledge reset successfully.": "Ezagutza ongi berrezarri da.",
"Knowledge updated successfully": "Ezagutza ongi eguneratu da.", "Knowledge updated successfully": "Ezagutza ongi eguneratu da.",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "Galduta", "Lost": "Galduta",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "OpenWebUI Komunitateak egina", "Made by Open WebUI Community": "OpenWebUI Komunitateak egina",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "Karga tamaina maximoa", "Max Upload Size": "Karga tamaina maximoa",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Gehienez 3 modelo deskarga daitezke aldi berean. Saiatu berriro geroago.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Gehienez 3 modelo deskarga daitezke aldi berean. Saiatu berriro geroago.",
"May": "Maiatza", "May": "Maiatza",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLMek atzitu ditzaketen memoriak hemen erakutsiko dira.", "Memories accessible by LLMs will be shown here.": "LLMek atzitu ditzaketen memoriak hemen erakutsiko dira.",
"Memory": "Memoria", "Memory": "Memoria",
"Memory added successfully": "Memoria ongi gehitu da", "Memory added successfully": "Memoria ongi gehitu da",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "Modelo IDak", "Model IDs": "Modelo IDak",
"Model Name": "Modeloaren izena", "Model Name": "Modeloaren izena",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Ez da modelorik hautatu", "Model not selected": "Ez da modelorik hautatu",
"Model Params": "Modelo parametroak", "Model Params": "Modelo parametroak",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Izena", "Name": "Izena",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Izendatu zure ezagutza-basea", "Name your knowledge base": "Izendatu zure ezagutza-basea",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Ez da bilaketa kontsultarik sortu", "No search query generated": "Ez da bilaketa kontsultarik sortu",
"No source available": "Ez dago iturririk eskuragarri", "No source available": "Ez dago iturririk eskuragarri",
"No users were found.": "Ez da erabiltzailerik aurkitu.", "No users were found.": "Ez da erabiltzailerik aurkitu.",
"No valves": "",
"No valves to update": "Ez dago balbularik eguneratzeko", "No valves to update": "Ez dago balbularik eguneratzeko",
"Node Ids": "",
"None": "Bat ere ez", "None": "Bat ere ez",
"Not factually correct": "Ez da faktikoki zuzena", "Not factually correct": "Ez da faktikoki zuzena",
"Not helpful": "Ez da lagungarria", "Not helpful": "Ez da lagungarria",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Bilatu", "Search": "Bilatu",
"Search a model": "Bilatu modelo bat", "Search a model": "Bilatu modelo bat",
"Search all emojis": "",
"Search Base": "Bilaketa oinarria", "Search Base": "Bilaketa oinarria",
"Search Chats": "Bilatu txatak", "Search Chats": "Bilatu txatak",
"Search Collection": "Bilatu bilduma", "Search Collection": "Bilatu bilduma",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Ikusi readme.md argibideetarako", "See readme.md for instructions": "Ikusi readme.md argibideetarako",
"See what's new": "Ikusi berritasunak", "See what's new": "Ikusi berritasunak",
"Seed": "Hazia", "Seed": "Hazia",
"Select": "",
"Select a base model": "Hautatu oinarrizko modeloa", "Select a base model": "Hautatu oinarrizko modeloa",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Hautatu motor bat", "Select a engine": "Hautatu motor bat",
"Select a function": "Hautatu funtzio bat", "Select a function": "Hautatu funtzio bat",
"Select a group": "Hautatu talde bat", "Select a group": "Hautatu talde bat",
"Select a language": "",
"Select a mode": "",
"Select a model": "Hautatu modelo bat", "Select a model": "Hautatu modelo bat",
"Select a model (optional)": "",
"Select a pipeline": "Hautatu pipeline bat", "Select a pipeline": "Hautatu pipeline bat",
"Select a pipeline url": "Hautatu pipeline url bat", "Select a pipeline url": "Hautatu pipeline url bat",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Hautatu tresna bat", "Select a tool": "Hautatu tresna bat",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Hautatu motorra", "Select Engine": "Hautatu motorra",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Hautatu ezagutza", "Select Knowledge": "Hautatu ezagutza",
"Select only one model to call": "Hautatu modelo bakarra deitzeko", "Select only one model to call": "Hautatu modelo bakarra deitzeko",
"Selected model(s) do not support image inputs": "Hautatutako modelo(e)k ez dute irudi sarrerarik onartzen", "Selected model(s) do not support image inputs": "Hautatutako modelo(e)k ez dute irudi sarrerarik onartzen",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API gakoa", "Serply API Key": "Serply API gakoa",
"Serpstack API Key": "Serpstack API gakoa", "Serpstack API Key": "Serpstack API gakoa",
"Server connection verified": "Zerbitzari konexioa egiaztatuta", "Server connection verified": "Zerbitzari konexioa egiaztatuta",
"Session": "",
"Set as default": "Ezarri lehenetsi gisa", "Set as default": "Ezarri lehenetsi gisa",
"Set CFG Scale": "Ezarri CFG eskala", "Set CFG Scale": "Ezarri CFG eskala",
"Set Default Model": "Ezarri lehenetsi modeloa", "Set Default Model": "Ezarri lehenetsi modeloa",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Iturria", "Source": "Iturria",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Azpititulua (adib. Erromatar Inperioari buruz)", "Subtitle (e.g. about the Roman Empire)": "Azpititulua (adib. Erromatar Inperioari buruz)",
"Success": "Arrakasta", "Success": "Arrakasta",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Ongi eguneratu da.", "Successfully updated.": "Ongi eguneratu da.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Iradokitua", "Suggested": "Iradokitua",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Fitxategiaren gehienezko tamaina MB-tan. Fitxategiaren tamainak muga hau gainditzen badu, fitxategia ez da kargatuko.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Fitxategiaren gehienezko tamaina MB-tan. Fitxategiaren tamainak muga hau gainditzen badu, fitxategia ez da kargatuko.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Txatean aldi berean erabili daitezkeen fitxategien gehienezko kopurua. Fitxategi kopuruak muga hau gainditzen badu, fitxategiak ez dira kargatuko.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Txatean aldi berean erabili daitezkeen fitxategien gehienezko kopurua. Fitxategi kopuruak muga hau gainditzen badu, fitxategiak ez dira kargatuko.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Puntuazioa 0.0 (0%) eta 1.0 (100%) arteko balio bat izan behar da.", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Puntuazioa 0.0 (0%) eta 1.0 (100%) arteko balio bat izan behar da.",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Kargatu fitxategiak", "Upload Files": "Kargatu fitxategiak",
"Upload Pipeline": "Kargatu Pipeline-a", "Upload Pipeline": "Kargatu Pipeline-a",
"Upload Progress": "Kargaren aurrerapena", "Upload Progress": "Kargaren aurrerapena",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URLa", "URL": "URLa",
"URL is required": "",
"URL Mode": "URL modua", "URL Mode": "URL modua",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "Erabili '#' prompt sarreran zure ezagutza kargatu eta sartzeko.", "Use '#' in the prompt input to load and include your knowledge.": "Erabili '#' prompt sarreran zure ezagutza kargatu eta sartzeko.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Arena modelo lehenetsia erabiltzen modelo guztiekin. Egin klik plus botoian modelo pertsonalizatuak gehitzeko.", "Using the default arena model with all models. Click the plus button to add custom models.": "Arena modelo lehenetsia erabiltzen modelo guztiekin. Egin klik plus botoian modelo pertsonalizatuak gehitzeko.",
"Valid time units:": "Denbora unitate baliozkoak:", "Valid time units:": "Denbora unitate baliozkoak:",
"Validate certificate": "",
"Valves": "Balbulak", "Valves": "Balbulak",
"Valves updated": "Balbulak eguneratuta", "Valves updated": "Balbulak eguneratuta",
"Valves updated successfully": "Balbulak ongi eguneratu dira", "Valves updated successfully": "Balbulak ongi eguneratu dira",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Lokala)", "Whisper (Local)": "Whisper (Lokala)",
"Why?": "Zergatik?", "Why?": "Zergatik?",
"Widescreen Mode": "Pantaila zabaleko modua", "Widescreen Mode": "Pantaila zabaleko modua",
"Width": "",
"Won": "Irabazi du", "Won": "Irabazi du",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Lan-eremua", "Workspace": "Lan-eremua",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} خط پنهان", "{{COUNT}} hidden lines": "{{COUNT}} خط پنهان",
"{{COUNT}} Replies": "{{COUNT}} پاسخ", "{{COUNT}} Replies": "{{COUNT}} پاسخ",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} گفتگوهای", "{{user}}'s Chats": "{{user}} گفتگوهای",
"{{webUIName}} Backend Required": "بکند {{webUIName}} نیاز است.", "{{webUIName}} Backend Required": "بکند {{webUIName}} نیاز است.",
"*Prompt node ID(s) are required for image generation": "*شناسه(های) گره پرامپت برای تولید تصویر مورد نیاز است", "*Prompt node ID(s) are required for image generation": "*شناسه(های) گره پرامپت برای تولید تصویر مورد نیاز است",
@ -29,6 +30,7 @@
"Account Activation Pending": "فعال\u200cسازی حساب در حال انتظار", "Account Activation Pending": "فعال\u200cسازی حساب در حال انتظار",
"Accurate information": "اطلاعات دقیق", "Accurate information": "اطلاعات دقیق",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "کنش\u200cها", "Actions": "کنش\u200cها",
"Activate": "فعال کردن", "Activate": "فعال کردن",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "این دستور را با تایپ \"/{{COMMAND}}\" در ورودی چت فعال کنید.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "این دستور را با تایپ \"/{{COMMAND}}\" در ورودی چت فعال کنید.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "شگفت\u200cانگیز", "Amazing": "شگفت\u200cانگیز",
"an assistant": "یک دستیار", "an assistant": "یک دستیار",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "تحلیل شده", "Analyzed": "تحلیل شده",
"Analyzing...": "در حال تحلیل...", "Analyzing...": "در حال تحلیل...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "محدودیت\u200cهای نقطه پایانی کلید API", "API Key Endpoint Restrictions": "محدودیت\u200cهای نقطه پایانی کلید API",
"API keys": "کلیدهای API", "API keys": "کلیدهای API",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "DN برنامه", "Application DN": "DN برنامه",
"Application DN Password": "رمز عبور DN برنامه", "Application DN Password": "رمز عبور DN برنامه",
"applies to all users with the \"user\" role": "برای همه کاربران با نقش \"کاربر\" اعمال می\u200cشود", "applies to all users with the \"user\" role": "برای همه کاربران با نقش \"کاربر\" اعمال می\u200cشود",
@ -160,6 +164,7 @@
"Banners": "بنر", "Banners": "بنر",
"Base Model (From)": "مدل پایه (از)", "Base Model (From)": "مدل پایه (از)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "قبل", "before": "قبل",
"Being lazy": "حالت سازنده", "Being lazy": "حالت سازنده",
"Beta": "بتا", "Beta": "بتا",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "مسیر گواهینامه", "Certificate Path": "مسیر گواهینامه",
"Change Password": "تغییر رمز عبور", "Change Password": "تغییر رمز عبور",
"Channel deleted successfully": "",
"Channel Name": "نام کانال", "Channel Name": "نام کانال",
"Channel updated successfully": "",
"Channels": "کانال\u200cها", "Channels": "کانال\u200cها",
"Character": "شخصیت", "Character": "شخصیت",
"Character limit for autocomplete generation input": "محدودیت کاراکتر برای ورودی تولید تکمیل خودکار", "Character limit for autocomplete generation input": "محدودیت کاراکتر برای ورودی تولید تکمیل خودکار",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "اجرای کد", "Code execution": "اجرای کد",
"Code Execution": "اجرای کد", "Code Execution": "اجرای کد",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "URL پایه کومیوآی الزامی است.", "ComfyUI Base URL is required.": "URL پایه کومیوآی الزامی است.",
"ComfyUI Workflow": "گردش کار کومیوآی", "ComfyUI Workflow": "گردش کار کومیوآی",
"ComfyUI Workflow Nodes": "گره\u200cهای گردش کار کومیوآی", "ComfyUI Workflow Nodes": "گره\u200cهای گردش کار کومیوآی",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "دستور", "Command": "دستور",
"Comment": "", "Comment": "",
"Completions": "تکمیل\u200cها", "Completions": "تکمیل\u200cها",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "درخواست های همزمان", "Concurrent Requests": "درخواست های همزمان",
"Config imported successfully": "",
"Configure": "پیکربندی", "Configure": "پیکربندی",
"Confirm": "تایید", "Confirm": "تایید",
"Confirm Password": "تایید رمز عبور", "Confirm Password": "تایید رمز عبور",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "دسامبر", "December": "دسامبر",
"Deepgram": "",
"Default": "پیشفرض", "Default": "پیشفرض",
"Default (Open AI)": "پیشفرض (Open AI)", "Default (Open AI)": "پیشفرض (Open AI)",
"Default (SentenceTransformers)": "پیشفرض (SentenceTransformers)", "Default (SentenceTransformers)": "پیشفرض (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "اتصالات مستقیم", "Direct Connections": "اتصالات مستقیم",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "اتصالات مستقیم به کاربران اجازه می\u200cدهد به نقاط پایانی API سازگار با OpenAI خود متصل شوند.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "اتصالات مستقیم به کاربران اجازه می\u200cدهد به نقاط پایانی API سازگار با OpenAI خود متصل شوند.",
"Direct Tool Servers": "سرورهای ابزار مستقیم", "Direct Tool Servers": "سرورهای ابزار مستقیم",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "جفت\u200cهای \"توکن:مقدار_بایاس\" را با کاما جدا شده وارد کنید (مثال: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "جفت\u200cهای \"توکن:مقدار_بایاس\" را با کاما جدا شده وارد کنید (مثال: 5432:100, 413:-100)",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "توضیحات را وارد کنید", "Enter description": "توضیحات را وارد کنید",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "آدرس Github Raw را وارد کنید", "Enter Github Raw URL": "آدرس Github Raw را وارد کنید",
"Enter Google PSE API Key": "کلید API گوگل PSE را وارد کنید", "Enter Google PSE API Key": "کلید API گوگل PSE را وارد کنید",
"Enter Google PSE Engine Id": "شناسه موتور PSE گوگل را وارد کنید", "Enter Google PSE Engine Id": "شناسه موتور PSE گوگل را وارد کنید",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "اندازه تصویر را وارد کنید (مثال: 512x512)", "Enter Image Size (e.g. 512x512)": "اندازه تصویر را وارد کنید (مثال: 512x512)",
"Enter Jina API Key": "کلید API جینا را وارد کنید", "Enter Jina API Key": "کلید API جینا را وارد کنید",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "مقدار Top K بازچینش\u200cگر را وارد کنید", "Enter Top K Reranker": "مقدار Top K بازچینش\u200cگر را وارد کنید",
"Enter URL (e.g. http://127.0.0.1:7860/)": "مقدار URL را وارد کنید (مثال http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "مقدار URL را وارد کنید (مثال http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "مقدار URL را وارد کنید (مثال http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "مقدار URL را وارد کنید (مثال http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "آدرس وب\u200cهوک خود را وارد کنید", "Enter your webhook URL": "آدرس وب\u200cهوک خود را وارد کنید",
"Error": "خطا", "Error": "خطا",
"ERROR": "خطا", "ERROR": "خطا",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "خطا در دسترسی به گوگل درایو: {{error}}", "Error accessing Google Drive: {{error}}": "خطا در دسترسی به گوگل درایو: {{error}}",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "خطا در بارگذاری فایل: {{error}}", "Error uploading file: {{error}}": "خطا در بارگذاری فایل: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "ارزیابی\u200cها", "Evaluations": "ارزیابی\u200cها",
"Everyone": "", "Everyone": "",
"Exa API Key": "کلید API اکسا", "Exa API Key": "کلید API اکسا",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "بازخورد لمسی", "Haptic Feedback": "بازخورد لمسی",
"Height": "",
"Hello, {{name}}": "سلام، {{name}}", "Hello, {{name}}": "سلام، {{name}}",
"Help": "کمک", "Help": "کمک",
"Help us create the best community leaderboard by sharing your feedback history!": "با به اشتراک گذاشتن تاریخچه بازخورد خود به ما در ایجاد بهترین تابلوی امتیازات جامعه کمک کنید!", "Help us create the best community leaderboard by sharing your feedback history!": "با به اشتراک گذاشتن تاریخچه بازخورد خود به ما در ایجاد بهترین تابلوی امتیازات جامعه کمک کنید!",
@ -733,6 +753,7 @@
"Hide": "پنهان\u200cسازی", "Hide": "پنهان\u200cسازی",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "پنهان کردن مدل", "Hide Model": "پنهان کردن مدل",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "خانه", "Home": "خانه",
"Host": "میزبان", "Host": "میزبان",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "کل محتوا را به عنوان زمینه برای پردازش جامع تزریق کنید، این برای پرس\u200cوجوهای پیچیده توصیه می\u200cشود.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "کل محتوا را به عنوان زمینه برای پردازش جامع تزریق کنید، این برای پرس\u200cوجوهای پیچیده توصیه می\u200cشود.",
"Input": "", "Input": "",
"Input commands": "ورودی دستورات", "Input commands": "ورودی دستورات",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "قالب فایل نامعتبر است.", "Invalid file format.": "قالب فایل نامعتبر است.",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "تگ نامعتبر", "Invalid Tag": "تگ نامعتبر",
"is typing...": "در حال تایپ...", "is typing...": "در حال تایپ...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "کلید", "Key": "کلید",
"Key is required": "",
"Keyboard shortcuts": "میانبرهای صفحه کلید", "Keyboard shortcuts": "میانبرهای صفحه کلید",
"Knowledge": "دانش", "Knowledge": "دانش",
"Knowledge Access": "دسترسی به دانش", "Knowledge Access": "دسترسی به دانش",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "دانش با موفقیت ایجاد شد.", "Knowledge created successfully.": "دانش با موفقیت ایجاد شد.",
"Knowledge deleted successfully.": "دانش با موفقیت حذف شد.", "Knowledge deleted successfully.": "دانش با موفقیت حذف شد.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "اشتراک\u200cگذاری عمومی دانش", "Knowledge Public Sharing": "اشتراک\u200cگذاری عمومی دانش",
"Knowledge reset successfully.": "دانش با موفقیت بازنشانی شد.", "Knowledge reset successfully.": "دانش با موفقیت بازنشانی شد.",
"Knowledge updated successfully": "دانش با موفقیت به\u200cروز شد", "Knowledge updated successfully": "دانش با موفقیت به\u200cروز شد",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "دسترسی به موقعیت مکانی مجاز نیست", "Location access not allowed": "دسترسی به موقعیت مکانی مجاز نیست",
"Lost": "گم شده", "Lost": "گم شده",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "ساخته شده توسط OpenWebUI Community", "Made by Open WebUI Community": "ساخته شده توسط OpenWebUI Community",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "حداکثر اندازه آپلود", "Max Upload Size": "حداکثر اندازه آپلود",
"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": "ماهی",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "حافظه های دسترسی به LLMs در اینجا نمایش داده می شوند.", "Memories accessible by LLMs will be shown here.": "حافظه های دسترسی به LLMs در اینجا نمایش داده می شوند.",
"Memory": "حافظه", "Memory": "حافظه",
"Memory added successfully": "حافظه با موفقیت اضافه شد", "Memory added successfully": "حافظه با موفقیت اضافه شد",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "شناسه\u200cهای مدل", "Model IDs": "شناسه\u200cهای مدل",
"Model Name": "نام مدل", "Model Name": "نام مدل",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "مدل انتخاب نشده", "Model not selected": "مدل انتخاب نشده",
"Model Params": "مدل پارامز", "Model Params": "مدل پارامز",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "نام", "Name": "نام",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "پایگاه دانش خود را نام\u200cگذاری کنید", "Name your knowledge base": "پایگاه دانش خود را نام\u200cگذاری کنید",
"Native": "بومی", "Native": "بومی",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "پرسوجوی جستجویی ایجاد نشده است", "No search query generated": "پرسوجوی جستجویی ایجاد نشده است",
"No source available": "منبعی در دسترس نیست", "No source available": "منبعی در دسترس نیست",
"No users were found.": "کاربری یافت نشد.", "No users were found.": "کاربری یافت نشد.",
"No valves": "",
"No valves to update": "شیری برای به\u200cروزرسانی وجود ندارد", "No valves to update": "شیری برای به\u200cروزرسانی وجود ندارد",
"Node Ids": "",
"None": "هیچ کدام", "None": "هیچ کدام",
"Not factually correct": "اشتباهی فکری نیست", "Not factually correct": "اشتباهی فکری نیست",
"Not helpful": "مفید نیست", "Not helpful": "مفید نیست",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "جستجو", "Search": "جستجو",
"Search a model": "جستجوی یک مدل", "Search a model": "جستجوی یک مدل",
"Search all emojis": "",
"Search Base": "پایه جستجو", "Search Base": "پایه جستجو",
"Search Chats": "جستجو گفتگوها", "Search Chats": "جستجو گفتگوها",
"Search Collection": "جستجوی مجموعه\u200cها", "Search Collection": "جستجوی مجموعه\u200cها",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "برای مشاهده دستورالعمل\u200cها به readme.md مراجعه کنید", "See readme.md for instructions": "برای مشاهده دستورالعمل\u200cها به readme.md مراجعه کنید",
"See what's new": "ببینید موارد جدید چه بوده", "See what's new": "ببینید موارد جدید چه بوده",
"Seed": "هسته", "Seed": "هسته",
"Select": "",
"Select a base model": "انتخاب یک مدل پایه", "Select a base model": "انتخاب یک مدل پایه",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "انتخاب یک موتور", "Select a engine": "انتخاب یک موتور",
"Select a function": "انتخاب یک تابع", "Select a function": "انتخاب یک تابع",
"Select a group": "انتخاب یک گروه", "Select a group": "انتخاب یک گروه",
"Select a language": "",
"Select a mode": "",
"Select a model": "انتخاب یک مدل", "Select a model": "انتخاب یک مدل",
"Select a model (optional)": "",
"Select a pipeline": "انتخاب یک خط لوله", "Select a pipeline": "انتخاب یک خط لوله",
"Select a pipeline url": "یک ادرس خط لوله را انتخاب کنید", "Select a pipeline url": "یک ادرس خط لوله را انتخاب کنید",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "انتخاب یک ابقزار", "Select a tool": "انتخاب یک ابقزار",
"Select a voice": "",
"Select an auth method": "یک روش احراز هویت را انتخاب کنید", "Select an auth method": "یک روش احراز هویت را انتخاب کنید",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "یک نمونه ollama را انتخاب کنید", "Select an Ollama instance": "یک نمونه ollama را انتخاب کنید",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "انتخاب موتور", "Select Engine": "انتخاب موتور",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "انتخاب دانش", "Select Knowledge": "انتخاب دانش",
"Select only one model to call": "تنها یک مدل را برای صدا زدن انتخاب کنید", "Select only one model to call": "تنها یک مدل را برای صدا زدن انتخاب کنید",
"Selected model(s) do not support image inputs": "مدل) های (انتخاب شده ورودیهای تصویر را پشتیبانی نمیکند", "Selected model(s) do not support image inputs": "مدل) های (انتخاب شده ورودیهای تصویر را پشتیبانی نمیکند",
@ -1215,6 +1262,7 @@
"Serply API Key": "کلید API سرپلی", "Serply API Key": "کلید API سرپلی",
"Serpstack API Key": "کلید API Serpstack", "Serpstack API Key": "کلید API Serpstack",
"Server connection verified": "اتصال سرور تأیید شد", "Server connection verified": "اتصال سرور تأیید شد",
"Session": "",
"Set as default": "تنظیم به عنوان پیشفرض", "Set as default": "تنظیم به عنوان پیشفرض",
"Set CFG Scale": "تنظیم مقیاس CFG", "Set CFG Scale": "تنظیم مقیاس CFG",
"Set Default Model": "تنظیم مدل پیش فرض", "Set Default Model": "تنظیم مدل پیش فرض",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "شناسه API جستجوی سوگو", "Sougou Search API sID": "شناسه API جستجوی سوگو",
"Sougou Search API SK": "کلید SK API جستجوی سوگو", "Sougou Search API SK": "کلید SK API جستجوی سوگو",
"Source": "منبع", "Source": "منبع",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "زیرنویس (برای مثال: درباره رمانی)", "Subtitle (e.g. about the Roman Empire)": "زیرنویس (برای مثال: درباره رمانی)",
"Success": "موفقیت", "Success": "موفقیت",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "با موفقیت به\u200cروز شد", "Successfully updated.": "با موفقیت به\u200cروز شد",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "پیشنهادی", "Suggested": "پیشنهادی",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "حداکثر اندازه فایل به مگابایت. اگر اندازه فایل از این حد بیشتر باشد، فایل آپلود نخواهد شد.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "حداکثر اندازه فایل به مگابایت. اگر اندازه فایل از این حد بیشتر باشد، فایل آپلود نخواهد شد.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "حداکثر تعداد فایل\u200cهایی که می\u200cتوانند همزمان در چت استفاده شوند. اگر تعداد فایل\u200cها از این حد بیشتر باشد، فایل\u200cها آپلود نخواهند شد.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "حداکثر تعداد فایل\u200cهایی که می\u200cتوانند همزمان در چت استفاده شوند. اگر تعداد فایل\u200cها از این حد بیشتر باشد، فایل\u200cها آپلود نخواهند شد.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "امتیاز باید مقداری بین 0.0 (0%) و 1.0 (100%) باشد.", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "امتیاز باید مقداری بین 0.0 (0%) و 1.0 (100%) باشد.",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "دمای مدل. افزایش دما باعث می\u200cشود مدل خلاقانه\u200cتر پاسخ دهد.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "دمای مدل. افزایش دما باعث می\u200cشود مدل خلاقانه\u200cتر پاسخ دهد.",
@ -1439,7 +1495,9 @@
"Upload Files": "بارگذاری پروندهها", "Upload Files": "بارگذاری پروندهها",
"Upload Pipeline": "خط تولید آپلود", "Upload Pipeline": "خط تولید آپلود",
"Upload Progress": "پیشرفت آپلود", "Upload Progress": "پیشرفت آپلود",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "آدرس اینترنتی", "URL": "آدرس اینترنتی",
"URL is required": "",
"URL Mode": "حالت URL", "URL Mode": "حالت URL",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "از '#' در ورودی پرامپت برای بارگیری و شامل کردن دانش خود استفاده کنید.", "Use '#' in the prompt input to load and include your knowledge.": "از '#' در ورودی پرامپت برای بارگیری و شامل کردن دانش خود استفاده کنید.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "در حال استفاده از مدل آرنا با همهٔ مدل\u200cهای دیگر به طور پیش\u200cفرض. برای افزودن مدل\u200cهای سفارشی، روی دکمه به\u200cعلاوه کلیک کنید.", "Using the default arena model with all models. Click the plus button to add custom models.": "در حال استفاده از مدل آرنا با همهٔ مدل\u200cهای دیگر به طور پیش\u200cفرض. برای افزودن مدل\u200cهای سفارشی، روی دکمه به\u200cعلاوه کلیک کنید.",
"Valid time units:": "واحدهای زمانی معتبر:", "Valid time units:": "واحدهای زمانی معتبر:",
"Validate certificate": "",
"Valves": "شیرها", "Valves": "شیرها",
"Valves updated": "شیرها به\u200cروزرسانی شدند", "Valves updated": "شیرها به\u200cروزرسانی شدند",
"Valves updated successfully": "شیرها با موفقیت به\u200cروزرسانی شدند", "Valves updated successfully": "شیرها با موفقیت به\u200cروزرسانی شدند",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "ویسپر (محلی)", "Whisper (Local)": "ویسپر (محلی)",
"Why?": "چرا؟", "Why?": "چرا؟",
"Widescreen Mode": "حالت صفحهٔ عریض", "Widescreen Mode": "حالت صفحهٔ عریض",
"Width": "",
"Won": "برنده شد", "Won": "برنده شد",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "با top-k همکاری می\u200cکند. مقدار بالاتر (مثلاً 0.95) منجر به متن متنوع\u200cتر می\u200cشود، در حالی که مقدار پایین\u200cتر (مثلاً 0.5) متن متمرکزتر و محافظه\u200cکارانه\u200cتری تولید می\u200cکند.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "با top-k همکاری می\u200cکند. مقدار بالاتر (مثلاً 0.95) منجر به متن متنوع\u200cتر می\u200cشود، در حالی که مقدار پایین\u200cتر (مثلاً 0.5) متن متمرکزتر و محافظه\u200cکارانه\u200cتری تولید می\u200cکند.",
"Workspace": "محیط کار", "Workspace": "محیط کار",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} piilotettua riviä", "{{COUNT}} hidden lines": "{{COUNT}} piilotettua riviä",
"{{COUNT}} Replies": "{{COUNT}} vastausta", "{{COUNT}} Replies": "{{COUNT}} vastausta",
"{{COUNT}} words": "{{COUNT}} sanaa", "{{COUNT}} words": "{{COUNT}} sanaa",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}:n keskustelut", "{{user}}'s Chats": "{{user}}:n keskustelut",
"{{webUIName}} Backend Required": "{{webUIName}}-backend vaaditaan", "{{webUIName}} Backend Required": "{{webUIName}}-backend vaaditaan",
"*Prompt node ID(s) are required for image generation": "Kuvan luomiseen vaaditaan kehote-solmun ID(t)", "*Prompt node ID(s) are required for image generation": "Kuvan luomiseen vaaditaan kehote-solmun ID(t)",
@ -29,6 +30,7 @@
"Account Activation Pending": "Tilin aktivointi odottaa", "Account Activation Pending": "Tilin aktivointi odottaa",
"Accurate information": "Tarkkaa tietoa", "Accurate information": "Tarkkaa tietoa",
"Action": "Toiminto", "Action": "Toiminto",
"Action not found": "",
"Actions": "Toiminnot", "Actions": "Toiminnot",
"Activate": "Aktivoi", "Activate": "Aktivoi",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktivoi tämä komento kirjoittamalla \"/{{COMMAND}}\" chat-syötteeseen.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktivoi tämä komento kirjoittamalla \"/{{COMMAND}}\" chat-syötteeseen.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "Toista aina ilmoitusääni", "Always Play Notification Sound": "Toista aina ilmoitusääni",
"Amazing": "Hämmästyttävä", "Amazing": "Hämmästyttävä",
"an assistant": "avustaja", "an assistant": "avustaja",
"An error occurred while fetching the explanation": "",
"Analytics": "Analytiikka", "Analytics": "Analytiikka",
"Analyzed": "Analysoitu", "Analyzed": "Analysoitu",
"Analyzing...": "Analysoidaan..", "Analyzing...": "Analysoidaan..",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API-avaimen päätepiste rajoitukset", "API Key Endpoint Restrictions": "API-avaimen päätepiste rajoitukset",
"API keys": "API-avaimet", "API keys": "API-avaimet",
"API Version": "API-versio", "API Version": "API-versio",
"API Version is required": "",
"Application DN": "Sovelluksen DN", "Application DN": "Sovelluksen DN",
"Application DN Password": "Sovelluksen DN-salasana", "Application DN Password": "Sovelluksen DN-salasana",
"applies to all users with the \"user\" role": "koskee kaikkia käyttäjiä, joilla on \"käyttäjä\"-rooli", "applies to all users with the \"user\" role": "koskee kaikkia käyttäjiä, joilla on \"käyttäjä\"-rooli",
@ -160,6 +164,7 @@
"Banners": "Bannerit", "Banners": "Bannerit",
"Base Model (From)": "Perusmalli (alkaen)", "Base Model (From)": "Perusmalli (alkaen)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "ennen", "before": "ennen",
"Being lazy": "Oli laiska", "Being lazy": "Oli laiska",
"Beta": "Beta", "Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Kaappaa ääntä", "Capture Audio": "Kaappaa ääntä",
"Certificate Path": "Varmennepolku", "Certificate Path": "Varmennepolku",
"Change Password": "Vaihda salasana", "Change Password": "Vaihda salasana",
"Channel deleted successfully": "",
"Channel Name": "Kanavan nimi", "Channel Name": "Kanavan nimi",
"Channel updated successfully": "",
"Channels": "Kanavat", "Channels": "Kanavat",
"Character": "Kirjain", "Character": "Kirjain",
"Character limit for autocomplete generation input": "Automaattisen täydennyksen syötteen merkkiraja", "Character limit for autocomplete generation input": "Automaattisen täydennyksen syötteen merkkiraja",
@ -238,6 +245,7 @@
"Close modal": "Sulje modaali", "Close modal": "Sulje modaali",
"Close settings modal": "Sulje asetus modaali", "Close settings modal": "Sulje asetus modaali",
"Close Sidebar": "Sulje sivupalkki", "Close Sidebar": "Sulje sivupalkki",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Koodiblokki", "Code Block": "Koodiblokki",
"Code execution": "Koodin suoritus", "Code execution": "Koodin suoritus",
"Code Execution": "Koodin Suoritus", "Code Execution": "Koodin Suoritus",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI verkko-osoite vaaditaan.", "ComfyUI Base URL is required.": "ComfyUI verkko-osoite vaaditaan.",
"ComfyUI Workflow": "ComfyUI-työnkulku", "ComfyUI Workflow": "ComfyUI-työnkulku",
"ComfyUI Workflow Nodes": "ComfyUI-työnkulun solmut", "ComfyUI Workflow Nodes": "ComfyUI-työnkulun solmut",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Komento", "Command": "Komento",
"Comment": "Kommentti", "Comment": "Kommentti",
"Completions": "Täydennykset", "Completions": "Täydennykset",
"Compress Images in Channels": "Pakkaa kuvat kanavissa", "Compress Images in Channels": "Pakkaa kuvat kanavissa",
"Concurrent Requests": "Samanaikaiset pyynnöt", "Concurrent Requests": "Samanaikaiset pyynnöt",
"Config imported successfully": "",
"Configure": "Määritä", "Configure": "Määritä",
"Confirm": "Vahvista", "Confirm": "Vahvista",
"Confirm Password": "Vahvista salasana", "Confirm Password": "Vahvista salasana",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Datalab Marker API-avain vaaditaan.", "Datalab Marker API Key required.": "Datalab Marker API-avain vaaditaan.",
"DD/MM/YYYY": "DD/MM/YYYY", "DD/MM/YYYY": "DD/MM/YYYY",
"December": "joulukuu", "December": "joulukuu",
"Deepgram": "",
"Default": "Oletus", "Default": "Oletus",
"Default (Open AI)": "Oletus (Open AI)", "Default (Open AI)": "Oletus (Open AI)",
"Default (SentenceTransformers)": "Oletus (SentenceTransformers)", "Default (SentenceTransformers)": "Oletus (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Suorat yhteydet", "Direct Connections": "Suorat yhteydet",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Suorat yhteydet mahdollistavat käyttäjien yhdistää omia OpenAI-yhteensopivia API-päätepisteitä.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Suorat yhteydet mahdollistavat käyttäjien yhdistää omia OpenAI-yhteensopivia API-päätepisteitä.",
"Direct Tool Servers": "Suorat työkalu palvelimet", "Direct Tool Servers": "Suorat työkalu palvelimet",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "Poista Koodin suoritus käytöstä", "Disable Code Interpreter": "Poista Koodin suoritus käytöstä",
"Disable Image Extraction": "Poista kuvien poiminta käytöstä", "Disable Image Extraction": "Poista kuvien poiminta käytöstä",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Poista kuvien poiminta käytöstä PDF tiedostoista. Jos LLM on käytössä, kuvat tekstitetään automaattisesti. Oletuksena ei käytössä.", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Poista kuvien poiminta käytöstä PDF tiedostoista. Jos LLM on käytössä, kuvat tekstitetään automaattisesti. Oletuksena ei käytössä.",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Syötä pilkulla erottaen \"token:bias_value\" parit (esim. 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Syötä pilkulla erottaen \"token:bias_value\" parit (esim. 5432:100, 413:-100)",
"Enter Config in JSON format": "Kirjoita konfiguraatio JSON-muodossa", "Enter Config in JSON format": "Kirjoita konfiguraatio JSON-muodossa",
"Enter content for the pending user info overlay. Leave empty for default.": "Kirjoita odottavien käyttäjien infon tekstisisältö. Käytä oletusta jättämällä tyhjäksi.", "Enter content for the pending user info overlay. Leave empty for default.": "Kirjoita odottavien käyttäjien infon tekstisisältö. Käytä oletusta jättämällä tyhjäksi.",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "Kirjoita Datalab Marker API verkko-osoite", "Enter Datalab Marker API Base URL": "Kirjoita Datalab Marker API verkko-osoite",
"Enter Datalab Marker API Key": "Kirjoita Datalab Marker API-avain", "Enter Datalab Marker API Key": "Kirjoita Datalab Marker API-avain",
"Enter description": "Kirjoita kuvaus", "Enter description": "Kirjoita kuvaus",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Kirjoita Github Raw -verkko-osoite", "Enter Github Raw URL": "Kirjoita Github Raw -verkko-osoite",
"Enter Google PSE API Key": "Kirjoita Google PSE API -avain", "Enter Google PSE API Key": "Kirjoita Google PSE API -avain",
"Enter Google PSE Engine Id": "Kirjoita Google PSE -moottorin tunnus", "Enter Google PSE Engine Id": "Kirjoita Google PSE -moottorin tunnus",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Kirjoita kuvan koko (esim. 512x512)", "Enter Image Size (e.g. 512x512)": "Kirjoita kuvan koko (esim. 512x512)",
"Enter Jina API Key": "Kirjoita Jina API -avain", "Enter Jina API Key": "Kirjoita Jina API -avain",
"Enter JSON config (e.g., {\"disable_links\": true})": "Kirjoita JSON asetus (esim. {\"disable_links\": true})", "Enter JSON config (e.g., {\"disable_links\": true})": "Kirjoita JSON asetus (esim. {\"disable_links\": true})",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Kirjoita Top K uudelleen sijoittaja", "Enter Top K Reranker": "Kirjoita Top K uudelleen sijoittaja",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Kirjoita verkko-osoite (esim. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Kirjoita verkko-osoite (esim. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Kirjoita verkko-osoite (esim. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Kirjoita verkko-osoite (esim. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "Kirjoita Yacy salasana", "Enter Yacy Password": "Kirjoita Yacy salasana",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Kirjoita Yacy verkko-osoite (esim. http://yacy.example.com:8090)", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Kirjoita Yacy verkko-osoite (esim. http://yacy.example.com:8090)",
"Enter Yacy Username": "Kirjoita Yacy käyttäjänimi", "Enter Yacy Username": "Kirjoita Yacy käyttäjänimi",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Kirjoita webhook osoitteesi", "Enter your webhook URL": "Kirjoita webhook osoitteesi",
"Error": "Virhe", "Error": "Virhe",
"ERROR": "VIRHE", "ERROR": "VIRHE",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Virhe yhdistäessä Google Drive: {{error}}", "Error accessing Google Drive: {{error}}": "Virhe yhdistäessä Google Drive: {{error}}",
"Error accessing media devices.": "Virhe medialaitteita käytettäessä.", "Error accessing media devices.": "Virhe medialaitteita käytettäessä.",
"Error starting recording.": "Virhe nauhoitusta aloittaessa.", "Error starting recording.": "Virhe nauhoitusta aloittaessa.",
"Error unloading model: {{error}}": "Virhe mallia ladattaessa: {{error}}", "Error unloading model: {{error}}": "Virhe mallia ladattaessa: {{error}}",
"Error uploading file: {{error}}": "Virhe ladattaessa tiedostoa: {{error}}", "Error uploading file: {{error}}": "Virhe ladattaessa tiedostoa: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Arvioinnit", "Evaluations": "Arvioinnit",
"Everyone": "Kaikki", "Everyone": "Kaikki",
"Exa API Key": "Exa API -avain", "Exa API Key": "Exa API -avain",
@ -725,6 +744,7 @@
"H2": "H2", "H2": "H2",
"H3": "H3", "H3": "H3",
"Haptic Feedback": "Haptinen palaute", "Haptic Feedback": "Haptinen palaute",
"Height": "",
"Hello, {{name}}": "Hei, {{name}}", "Hello, {{name}}": "Hei, {{name}}",
"Help": "Ohje", "Help": "Ohje",
"Help us create the best community leaderboard by sharing your feedback history!": "Auta meitä luomaan paras yhteisön tulosluettelo jakamalla palautehistoriasi!", "Help us create the best community leaderboard by sharing your feedback history!": "Auta meitä luomaan paras yhteisön tulosluettelo jakamalla palautehistoriasi!",
@ -733,6 +753,7 @@
"Hide": "Piilota", "Hide": "Piilota",
"Hide from Sidebar": "Piilota sivupalkista", "Hide from Sidebar": "Piilota sivupalkista",
"Hide Model": "Piilota malli", "Hide Model": "Piilota malli",
"High": "",
"High Contrast Mode": "Korkean kontrastin tila", "High Contrast Mode": "Korkean kontrastin tila",
"Home": "Koti", "Home": "Koti",
"Host": "Palvelin", "Host": "Palvelin",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Upota koko sisältö kontekstiin kattavaa käsittelyä varten. Tätä suositellaan monimutkaisille kyselyille.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Upota koko sisältö kontekstiin kattavaa käsittelyä varten. Tätä suositellaan monimutkaisille kyselyille.",
"Input": "Syöte", "Input": "Syöte",
"Input commands": "Syötekäskyt", "Input commands": "Syötekäskyt",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Syötteen muuttujat", "Input Variables": "Syötteen muuttujat",
"Insert": "Lisää", "Insert": "Lisää",
"Insert Follow-Up Prompt to Input": "Lisää jatkokysymys syötteeseen", "Insert Follow-Up Prompt to Input": "Lisää jatkokysymys syötteeseen",
@ -789,6 +811,7 @@
"Invalid file content": "Virheellinen tiedostosisältö", "Invalid file content": "Virheellinen tiedostosisältö",
"Invalid file format.": "Virheellinen tiedostomuoto.", "Invalid file format.": "Virheellinen tiedostomuoto.",
"Invalid JSON file": "Virheellinen JSON tiedosto", "Invalid JSON file": "Virheellinen JSON tiedosto",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "Virheellinen JSON muotoilu lisäasetuksissa", "Invalid JSON format in Additional Config": "Virheellinen JSON muotoilu lisäasetuksissa",
"Invalid Tag": "Virheellinen tagi", "Invalid Tag": "Virheellinen tagi",
"is typing...": "Kirjoittaa...", "is typing...": "Kirjoittaa...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "Säilytä jatkokysymys kehoitteet keskustelussa", "Keep Follow-Up Prompts in Chat": "Säilytä jatkokysymys kehoitteet keskustelussa",
"Keep in Sidebar": "Pidä sivupalkissa", "Keep in Sidebar": "Pidä sivupalkissa",
"Key": "Avain", "Key": "Avain",
"Key is required": "",
"Keyboard shortcuts": "Pikanäppäimet", "Keyboard shortcuts": "Pikanäppäimet",
"Knowledge": "Tietämys", "Knowledge": "Tietämys",
"Knowledge Access": "Tiedon käyttöoikeus", "Knowledge Access": "Tiedon käyttöoikeus",
"Knowledge Base": "Tietokanta", "Knowledge Base": "Tietokanta",
"Knowledge created successfully.": "Tietokanta luotu onnistuneesti.", "Knowledge created successfully.": "Tietokanta luotu onnistuneesti.",
"Knowledge deleted successfully.": "Tietokanta poistettu onnistuneesti.", "Knowledge deleted successfully.": "Tietokanta poistettu onnistuneesti.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Tietokannan julkinen jakaminen", "Knowledge Public Sharing": "Tietokannan julkinen jakaminen",
"Knowledge reset successfully.": "Tietokanta nollattu onnistuneesti.", "Knowledge reset successfully.": "Tietokanta nollattu onnistuneesti.",
"Knowledge updated successfully": "Tietokanta päivitetty onnistuneesti", "Knowledge updated successfully": "Tietokanta päivitetty onnistuneesti",
@ -852,6 +878,7 @@
"Local Task Model": "Paikallinen työmalli", "Local Task Model": "Paikallinen työmalli",
"Location access not allowed": "Ei pääsyä sijaintitietoihin", "Location access not allowed": "Ei pääsyä sijaintitietoihin",
"Lost": "Mennyt", "Lost": "Mennyt",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Tehnyt OpenWebUI-yhteisö", "Made by Open WebUI Community": "Tehnyt OpenWebUI-yhteisö",
"Make password visible in the user interface": "Näytä salasana käyttöliittymässä", "Make password visible in the user interface": "Näytä salasana käyttöliittymässä",
@ -873,6 +900,7 @@
"Max Upload Size": "Latausten enimmäiskoko", "Max Upload Size": "Latausten enimmäiskoko",
"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",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Muistitiedostot, joita LLM-ohjelmat käyttävät, näkyvät tässä.", "Memories accessible by LLMs will be shown here.": "Muistitiedostot, joita LLM-ohjelmat käyttävät, näkyvät tässä.",
"Memory": "Muisti", "Memory": "Muisti",
"Memory added successfully": "Muisti lisätty onnistuneesti", "Memory added successfully": "Muisti lisätty onnistuneesti",
@ -908,6 +936,7 @@
"Model ID is required.": "Mallin tunnus on pakollinen", "Model ID is required.": "Mallin tunnus on pakollinen",
"Model IDs": "Mallitunnukset", "Model IDs": "Mallitunnukset",
"Model Name": "Mallin nimi", "Model Name": "Mallin nimi",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "Mallin nimi on pakollinen", "Model Name is required.": "Mallin nimi on pakollinen",
"Model not selected": "Mallia ei ole valittu", "Model not selected": "Mallia ei ole valittu",
"Model Params": "Mallin parametrit", "Model Params": "Mallin parametrit",
@ -926,6 +955,7 @@
"More Concise": "Ytimekkäämpi", "More Concise": "Ytimekkäämpi",
"More Options": "Lisää vaihtoehtoja", "More Options": "Lisää vaihtoehtoja",
"Name": "Nimi", "Name": "Nimi",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Anna tietokannalle nimi", "Name your knowledge base": "Anna tietokannalle nimi",
"Native": "Natiivi", "Native": "Natiivi",
"New Button": "Uusi painike", "New Button": "Uusi painike",
@ -960,7 +990,9 @@
"No search query generated": "Hakukyselyä ei luotu", "No search query generated": "Hakukyselyä ei luotu",
"No source available": "Lähdettä ei saatavilla", "No source available": "Lähdettä ei saatavilla",
"No users were found.": "Käyttäjiä ei löytynyt.", "No users were found.": "Käyttäjiä ei löytynyt.",
"No valves": "",
"No valves to update": "Ei venttiileitä päivitettäväksi", "No valves to update": "Ei venttiileitä päivitettäväksi",
"Node Ids": "",
"None": "Ei mikään", "None": "Ei mikään",
"Not factually correct": "Ei faktuaalisesti oikein", "Not factually correct": "Ei faktuaalisesti oikein",
"Not helpful": "Ei hyödyllinen", "Not helpful": "Ei hyödyllinen",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Vieritä haaran vaihtoon", "Scroll On Branch Change": "Vieritä haaran vaihtoon",
"Search": "Haku", "Search": "Haku",
"Search a model": "Hae mallia", "Search a model": "Hae mallia",
"Search all emojis": "",
"Search Base": "Hakupohja", "Search Base": "Hakupohja",
"Search Chats": "Hae keskusteluja", "Search Chats": "Hae keskusteluja",
"Search Collection": "Hae kokoelmaa", "Search Collection": "Hae kokoelmaa",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Katso ohjeet readme.md-tiedostosta", "See readme.md for instructions": "Katso ohjeet readme.md-tiedostosta",
"See what's new": "Katso, mitä uutta", "See what's new": "Katso, mitä uutta",
"Seed": "Siemenluku", "Seed": "Siemenluku",
"Select": "",
"Select a base model": "Valitse perusmalli", "Select a base model": "Valitse perusmalli",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "Valitse keskustelun esikatselu", "Select a conversation to preview": "Valitse keskustelun esikatselu",
"Select a engine": "Valitse moottori", "Select a engine": "Valitse moottori",
"Select a function": "Valitse toiminto", "Select a function": "Valitse toiminto",
"Select a group": "Valitse ryhmä", "Select a group": "Valitse ryhmä",
"Select a language": "",
"Select a mode": "",
"Select a model": "Valitse malli", "Select a model": "Valitse malli",
"Select a model (optional)": "",
"Select a pipeline": "Valitse putki", "Select a pipeline": "Valitse putki",
"Select a pipeline url": "Valitse putken verkko-osoite", "Select a pipeline url": "Valitse putken verkko-osoite",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Valitse työkalu", "Select a tool": "Valitse työkalu",
"Select a voice": "",
"Select an auth method": "Valitse kirjautumistapa", "Select an auth method": "Valitse kirjautumistapa",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Valitse Ollama instanssi", "Select an Ollama instance": "Valitse Ollama instanssi",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Valitse moottori", "Select Engine": "Valitse moottori",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Valitse tietämys", "Select Knowledge": "Valitse tietämys",
"Select only one model to call": "Valitse vain yksi malli kutsuttavaksi", "Select only one model to call": "Valitse vain yksi malli kutsuttavaksi",
"Selected model(s) do not support image inputs": "Valitut mallit eivät tue kuvasöytteitä", "Selected model(s) do not support image inputs": "Valitut mallit eivät tue kuvasöytteitä",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API -avain", "Serply API Key": "Serply API -avain",
"Serpstack API Key": "Serpstack API -avain", "Serpstack API Key": "Serpstack API -avain",
"Server connection verified": "Palvelinyhteys vahvistettu", "Server connection verified": "Palvelinyhteys vahvistettu",
"Session": "",
"Set as default": "Aseta oletukseksi", "Set as default": "Aseta oletukseksi",
"Set CFG Scale": "Aseta CFG-mitta", "Set CFG Scale": "Aseta CFG-mitta",
"Set Default Model": "Aseta oletusmalli", "Set Default Model": "Aseta oletusmalli",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "Ohita välimuisti", "Skip Cache": "Ohita välimuisti",
"Skip the cache and re-run the inference. Defaults to False.": "Ohita välimuisti ja suorita päätelmä uudelleen. Oletusarvo ei käytössä.", "Skip the cache and re-run the inference. Defaults to False.": "Ohita välimuisti ja suorita päätelmä uudelleen. Oletusarvo ei käytössä.",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "Sougou Search API sID", "Sougou Search API sID": "Sougou Search API sID",
"Sougou Search API SK": "Sougou Search API SK", "Sougou Search API SK": "Sougou Search API SK",
"Source": "Lähde", "Source": "Lähde",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Muotoiltun PDF-vienti", "Stylized PDF Export": "Muotoiltun PDF-vienti",
"Subtitle (e.g. about the Roman Empire)": "Alaotsikko (esim. Rooman valtakunta)", "Subtitle (e.g. about the Roman Empire)": "Alaotsikko (esim. Rooman valtakunta)",
"Success": "Onnistui", "Success": "Onnistui",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Päivitetty onnistuneesti.", "Successfully updated.": "Päivitetty onnistuneesti.",
"Suggest a change": "Ehdota muutosta", "Suggest a change": "Ehdota muutosta",
"Suggested": "Ehdotukset", "Suggested": "Ehdotukset",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Enimmäistiedostokoko megatavuissa. Jos tiedoston koko ylittää tämän rajan, tiedostoa ei ladata.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Enimmäistiedostokoko megatavuissa. Jos tiedoston koko ylittää tämän rajan, tiedostoa ei ladata.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Suurin sallittu tiedostojen määrä käytettäväksi kerralla chatissa. Jos tiedostojen määrä ylittää tämän rajan, niitä ei ladata.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Suurin sallittu tiedostojen määrä käytettäväksi kerralla chatissa. Jos tiedostojen määrä ylittää tämän rajan, niitä ei ladata.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Tekstin tulostusmuoto. Voi olla 'json', 'markdown' tai 'html'. Oletusarvo on 'markdown'.", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Tekstin tulostusmuoto. Voi olla 'json', 'markdown' tai 'html'. Oletusarvo on 'markdown'.",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Pisteytyksen tulee olla arvo välillä 0,0 (0 %) ja 1,0 (100 %).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Pisteytyksen tulee olla arvo välillä 0,0 (0 %) ja 1,0 (100 %).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "Mallin striimin delta-lohkon koko. Lohkon koon kasvattaminen saa mallin vastaamaan kerralla suuremmilla tekstipaloilla.", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "Mallin striimin delta-lohkon koko. Lohkon koon kasvattaminen saa mallin vastaamaan kerralla suuremmilla tekstipaloilla.",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Mallin lämpötila. Lisäämällä lämpötilaa mallin vastaukset ovat luovempia.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Mallin lämpötila. Lisäämällä lämpötilaa mallin vastaukset ovat luovempia.",
@ -1439,7 +1495,9 @@
"Upload Files": "Lataa tiedostoja", "Upload Files": "Lataa tiedostoja",
"Upload Pipeline": "Lataa putki", "Upload Pipeline": "Lataa putki",
"Upload Progress": "Latauksen edistyminen", "Upload Progress": "Latauksen edistyminen",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "URL-tila", "URL Mode": "URL-tila",
"Usage": "Käyttö", "Usage": "Käyttö",
"Use '#' in the prompt input to load and include your knowledge.": "Käytä '#' -merkkiä kehotekenttään ladataksesi ja sisällyttääksesi tietämystäsi.", "Use '#' in the prompt input to load and include your knowledge.": "Käytä '#' -merkkiä kehotekenttään ladataksesi ja sisällyttääksesi tietämystäsi.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "Kohdennetun haun käyttäminen", "Using Focused Retrieval": "Kohdennetun haun käyttäminen",
"Using the default arena model with all models. Click the plus button to add custom models.": "Käytetään oletusarena-mallia kaikkien mallien kanssa. Napsauta plus-painiketta lisätäksesi mukautettuja malleja.", "Using the default arena model with all models. Click the plus button to add custom models.": "Käytetään oletusarena-mallia kaikkien mallien kanssa. Napsauta plus-painiketta lisätäksesi mukautettuja malleja.",
"Valid time units:": "Kelvolliset aikayksiköt:", "Valid time units:": "Kelvolliset aikayksiköt:",
"Validate certificate": "",
"Valves": "Venttiilit", "Valves": "Venttiilit",
"Valves updated": "Venttiilit päivitetty", "Valves updated": "Venttiilit päivitetty",
"Valves updated successfully": "Venttiilit päivitetty onnistuneesti", "Valves updated successfully": "Venttiilit päivitetty onnistuneesti",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (paikallinen)", "Whisper (Local)": "Whisper (paikallinen)",
"Why?": "Miksi?", "Why?": "Miksi?",
"Widescreen Mode": "Laajakuvatila", "Widescreen Mode": "Laajakuvatila",
"Width": "",
"Won": "Voitti", "Won": "Voitti",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Työtila", "Workspace": "Työtila",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "Nombres de lignes cachées {{COUNT}}", "{{COUNT}} hidden lines": "Nombres de lignes cachées {{COUNT}}",
"{{COUNT}} Replies": "{{COUNT}} réponses", "{{COUNT}} Replies": "{{COUNT}} réponses",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Conversations de {{user}}", "{{user}}'s Chats": "Conversations de {{user}}",
"{{webUIName}} Backend Required": "Backend {{webUIName}} requis", "{{webUIName}} Backend Required": "Backend {{webUIName}} requis",
"*Prompt node ID(s) are required for image generation": "*Les ID de noeud du prompt sont nécessaires pour la génération d'images", "*Prompt node ID(s) are required for image generation": "*Les ID de noeud du prompt sont nécessaires pour la génération d'images",
@ -29,6 +30,7 @@
"Account Activation Pending": "Activation du compte en attente", "Account Activation Pending": "Activation du compte en attente",
"Accurate information": "Information exacte", "Accurate information": "Information exacte",
"Action": "Action", "Action": "Action",
"Action not found": "",
"Actions": "Actions", "Actions": "Actions",
"Activate": "Activer", "Activate": "Activer",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activez cette commande en tapant \"/{{COMMAND}}\" dans l'entrée de la conversation.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activez cette commande en tapant \"/{{COMMAND}}\" dans l'entrée de la conversation.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "Toujours jouer la notification sonore", "Always Play Notification Sound": "Toujours jouer la notification sonore",
"Amazing": "Incroyable", "Amazing": "Incroyable",
"an assistant": "un assistant", "an assistant": "un assistant",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Analysé", "Analyzed": "Analysé",
"Analyzing...": "Analyse en cours", "Analyzing...": "Analyse en cours",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Restrictions des points de terminaison de la clé API", "API Key Endpoint Restrictions": "Restrictions des points de terminaison de la clé API",
"API keys": "Clés d'API", "API keys": "Clés d'API",
"API Version": "Version de l'API", "API Version": "Version de l'API",
"API Version is required": "",
"Application DN": "DN de l'application", "Application DN": "DN de l'application",
"Application DN Password": "Mot de passe DN de l'application", "Application DN Password": "Mot de passe DN de l'application",
"applies to all users with the \"user\" role": "s'applique à tous les utilisateurs ayant le rôle « utilisateur »", "applies to all users with the \"user\" role": "s'applique à tous les utilisateurs ayant le rôle « utilisateur »",
@ -160,6 +164,7 @@
"Banners": "Bannières", "Banners": "Bannières",
"Base Model (From)": "Modèle de base (à partir de)", "Base Model (From)": "Modèle de base (à partir de)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "La mise en cache de la liste des modèles de base accélère l'accès en ne récupérant les modèles de base qu'au démarrage ou lors de la sauvegarde des réglages - plus rapide, mais peut ne pas afficher les modifications récentes des modèles de base.", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "La mise en cache de la liste des modèles de base accélère l'accès en ne récupérant les modèles de base qu'au démarrage ou lors de la sauvegarde des réglages - plus rapide, mais peut ne pas afficher les modifications récentes des modèles de base.",
"Bearer": "",
"before": "avant", "before": "avant",
"Being lazy": "Être fainéant", "Being lazy": "Être fainéant",
"Beta": "Bêta", "Beta": "Bêta",
@ -189,7 +194,9 @@
"Capture Audio": "Prise de son", "Capture Audio": "Prise de son",
"Certificate Path": "Chemin du certificat", "Certificate Path": "Chemin du certificat",
"Change Password": "Changer le mot de passe", "Change Password": "Changer le mot de passe",
"Channel deleted successfully": "",
"Channel Name": "Nom du canal", "Channel Name": "Nom du canal",
"Channel updated successfully": "",
"Channels": "Canaux", "Channels": "Canaux",
"Character": "Caractère", "Character": "Caractère",
"Character limit for autocomplete generation input": "Limite de caractères pour la génération des suggestions", "Character limit for autocomplete generation input": "Limite de caractères pour la génération des suggestions",
@ -238,6 +245,7 @@
"Close modal": "Fermer la fenêtre", "Close modal": "Fermer la fenêtre",
"Close settings modal": "Fermer la fenêtre des réglages", "Close settings modal": "Fermer la fenêtre des réglages",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Exécution de code", "Code execution": "Exécution de code",
"Code Execution": "Exécution de code", "Code Execution": "Exécution de code",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "L'URL de base ComfyUI est requise.", "ComfyUI Base URL is required.": "L'URL de base ComfyUI est requise.",
"ComfyUI Workflow": "Flux de travaux de ComfyUI", "ComfyUI Workflow": "Flux de travaux de ComfyUI",
"ComfyUI Workflow Nodes": "Noeud du flux de travaux de ComfyUI", "ComfyUI Workflow Nodes": "Noeud du flux de travaux de ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Commande", "Command": "Commande",
"Comment": "Commentaire", "Comment": "Commentaire",
"Completions": "Complétions", "Completions": "Complétions",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Demandes concurrentes", "Concurrent Requests": "Demandes concurrentes",
"Config imported successfully": "",
"Configure": "Configurer", "Configure": "Configurer",
"Confirm": "Confirmer", "Confirm": "Confirmer",
"Confirm Password": "Confirmer le mot de passe", "Confirm Password": "Confirmer le mot de passe",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Clé API Datalab Marker requise.", "Datalab Marker API Key required.": "Clé API Datalab Marker requise.",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Décembre", "December": "Décembre",
"Deepgram": "",
"Default": "Par défaut", "Default": "Par défaut",
"Default (Open AI)": "Par défaut (OpenAI)", "Default (Open AI)": "Par défaut (OpenAI)",
"Default (SentenceTransformers)": "Par défaut (Sentence Transformers)", "Default (SentenceTransformers)": "Par défaut (Sentence Transformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Direct connexions", "Direct Connections": "Direct connexions",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Les connexions directes permettent aux utilisateurs de se connecter à leurs propres points d'extension API compatibles OpenAI.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Les connexions directes permettent aux utilisateurs de se connecter à leurs propres points d'extension API compatibles OpenAI.",
"Direct Tool Servers": "Serveur d'outils directs", "Direct Tool Servers": "Serveur d'outils directs",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "Désactiver l'interpréteur de code", "Disable Code Interpreter": "Désactiver l'interpréteur de code",
"Disable Image Extraction": "Empecher l'extraction d'image", "Disable Image Extraction": "Empecher l'extraction d'image",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Désactive l'extraction d'images du PDF. Si l'option Utiliser le LLM est activée, les images seront automatiquement légendées. La valeur par défaut est False.", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Désactive l'extraction d'images du PDF. Si l'option Utiliser le LLM est activée, les images seront automatiquement légendées. La valeur par défaut est False.",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Entrez des paires \"token:valeur_biais\" séparées par des virgules (exemple : 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Entrez des paires \"token:valeur_biais\" séparées par des virgules (exemple : 5432:100, 413:-100)",
"Enter Config in JSON format": "Entrez la configuration au format JSON", "Enter Config in JSON format": "Entrez la configuration au format JSON",
"Enter content for the pending user info overlay. Leave empty for default.": "Entrez le contenu pour l'interface utilisateur en attente. Laissez vide pour le défaut.", "Enter content for the pending user info overlay. Leave empty for default.": "Entrez le contenu pour l'interface utilisateur en attente. Laissez vide pour le défaut.",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "Entrez la clé API Datalab Marker", "Enter Datalab Marker API Key": "Entrez la clé API Datalab Marker",
"Enter description": "Entrez la description", "Enter description": "Entrez la description",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Entrez l'URL brute de GitHub", "Enter Github Raw URL": "Entrez l'URL brute de GitHub",
"Enter Google PSE API Key": "Entrez la clé API Google PSE", "Enter Google PSE API Key": "Entrez la clé API Google PSE",
"Enter Google PSE Engine Id": "Entrez l'identifiant du moteur Google PSE", "Enter Google PSE Engine Id": "Entrez l'identifiant du moteur Google PSE",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Entrez la taille de l'image (par ex. 512x512)", "Enter Image Size (e.g. 512x512)": "Entrez la taille de l'image (par ex. 512x512)",
"Enter Jina API Key": "Entrez la clé API Jina", "Enter Jina API Key": "Entrez la clé API Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Entrez la valeur Top K pour le Reranker", "Enter Top K Reranker": "Entrez la valeur Top K pour le Reranker",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Entrez l'URL (par ex. {http://127.0.0.1:7860/})", "Enter URL (e.g. http://127.0.0.1:7860/)": "Entrez l'URL (par ex. {http://127.0.0.1:7860/})",
"Enter URL (e.g. http://localhost:11434)": "Entrez l'URL (par ex. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Entrez l'URL (par ex. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "Entrez le mot de passe Yacy", "Enter Yacy Password": "Entrez le mot de passe Yacy",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Entrez l'URL Yacy (par ex. http://yacy.example.com:8090)", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Entrez l'URL Yacy (par ex. http://yacy.example.com:8090)",
"Enter Yacy Username": "Entrez le nom d'utilisateur Yacy", "Enter Yacy Username": "Entrez le nom d'utilisateur Yacy",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Entrez l'URL de votre webhook", "Enter your webhook URL": "Entrez l'URL de votre webhook",
"Error": "Erreur", "Error": "Erreur",
"ERROR": "ERREUR", "ERROR": "ERREUR",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Erreur d'accès à Google Drive : {{error}}", "Error accessing Google Drive: {{error}}": "Erreur d'accès à Google Drive : {{error}}",
"Error accessing media devices.": "Erreur lors de l'accès aux dispositifs medias", "Error accessing media devices.": "Erreur lors de l'accès aux dispositifs medias",
"Error starting recording.": "Erreur lors du démarrage de l'enregistrement", "Error starting recording.": "Erreur lors du démarrage de l'enregistrement",
"Error unloading model: {{error}}": "Erreur lors du déchargement du modèle : {{error}}", "Error unloading model: {{error}}": "Erreur lors du déchargement du modèle : {{error}}",
"Error uploading file: {{error}}": "Erreur de téléversement du fichier : {{error}}", "Error uploading file: {{error}}": "Erreur de téléversement du fichier : {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Évaluations", "Evaluations": "Évaluations",
"Everyone": "", "Everyone": "",
"Exa API Key": "Clé d'Exa API", "Exa API Key": "Clé d'Exa API",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Retour haptique", "Haptic Feedback": "Retour haptique",
"Height": "",
"Hello, {{name}}": "Bonjour, {{name}}.", "Hello, {{name}}": "Bonjour, {{name}}.",
"Help": "Aide", "Help": "Aide",
"Help us create the best community leaderboard by sharing your feedback history!": "Aidez-nous à créer le meilleur classement communautaire en partageant votre historique des avis !", "Help us create the best community leaderboard by sharing your feedback history!": "Aidez-nous à créer le meilleur classement communautaire en partageant votre historique des avis !",
@ -733,6 +753,7 @@
"Hide": "Cacher", "Hide": "Cacher",
"Hide from Sidebar": "Cacher de la barre latérale", "Hide from Sidebar": "Cacher de la barre latérale",
"Hide Model": "Cache le Model", "Hide Model": "Cache le Model",
"High": "",
"High Contrast Mode": "Mode avec contraste accentué", "High Contrast Mode": "Mode avec contraste accentué",
"Home": "Home", "Home": "Home",
"Host": "Hôte", "Host": "Hôte",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecter l'ensemble du contenu comme contexte pour un traitement complet, recommandé pour les requêtes complexes.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecter l'ensemble du contenu comme contexte pour un traitement complet, recommandé pour les requêtes complexes.",
"Input": "", "Input": "",
"Input commands": "Commandes d'entrée", "Input commands": "Commandes d'entrée",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Variables d'entrée", "Input Variables": "Variables d'entrée",
"Insert": "Insérer", "Insert": "Insérer",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "Contenu de fichier invalide", "Invalid file content": "Contenu de fichier invalide",
"Invalid file format.": "Format de fichier non valide.", "Invalid file format.": "Format de fichier non valide.",
"Invalid JSON file": "Fichier JSON non valide", "Invalid JSON file": "Fichier JSON non valide",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Tag non valide", "Invalid Tag": "Tag non valide",
"is typing...": "est en train d'écrire...", "is typing...": "est en train d'écrire...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "Epingler dans la barre latérale", "Keep in Sidebar": "Epingler dans la barre latérale",
"Key": "Clé", "Key": "Clé",
"Key is required": "",
"Keyboard shortcuts": "Raccourcis clavier", "Keyboard shortcuts": "Raccourcis clavier",
"Knowledge": "Connaissances", "Knowledge": "Connaissances",
"Knowledge Access": "Accès aux connaissances", "Knowledge Access": "Accès aux connaissances",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Connaissance créée avec succès.", "Knowledge created successfully.": "Connaissance créée avec succès.",
"Knowledge deleted successfully.": "Connaissance supprimée avec succès.", "Knowledge deleted successfully.": "Connaissance supprimée avec succès.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Partage public des Connaissances", "Knowledge Public Sharing": "Partage public des Connaissances",
"Knowledge reset successfully.": "Connaissance réinitialisée avec succès.", "Knowledge reset successfully.": "Connaissance réinitialisée avec succès.",
"Knowledge updated successfully": "Connaissance mise à jour avec succès", "Knowledge updated successfully": "Connaissance mise à jour avec succès",
@ -852,6 +878,7 @@
"Local Task Model": "Model de tâche local", "Local Task Model": "Model de tâche local",
"Location access not allowed": "Accès à la localisation non autorisé", "Location access not allowed": "Accès à la localisation non autorisé",
"Lost": "Perdu", "Lost": "Perdu",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Réalisé par la communauté OpenWebUI", "Made by Open WebUI Community": "Réalisé par la communauté OpenWebUI",
"Make password visible in the user interface": "Rendre visible les mots de passe dans l'interface", "Make password visible in the user interface": "Rendre visible les mots de passe dans l'interface",
@ -873,6 +900,7 @@
"Max Upload Size": "Limite de taille de téléversement", "Max Upload Size": "Limite de taille de téléversement",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Un maximum de 3 modèles peut être téléchargé en même temps. Veuillez réessayer ultérieurement.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Un maximum de 3 modèles peut être téléchargé en même temps. Veuillez réessayer ultérieurement.",
"May": "Mai", "May": "Mai",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Les souvenirs accessibles par les LLMs seront affichées ici.", "Memories accessible by LLMs will be shown here.": "Les souvenirs accessibles par les LLMs seront affichées ici.",
"Memory": "Mémoire", "Memory": "Mémoire",
"Memory added successfully": "Souvenir ajoutée avec succès", "Memory added successfully": "Souvenir ajoutée avec succès",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "ID des modèles", "Model IDs": "ID des modèles",
"Model Name": "Nom du modèle", "Model Name": "Nom du modèle",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Modèle non sélectionné", "Model not selected": "Modèle non sélectionné",
"Model Params": "Réglages du modèle", "Model Params": "Réglages du modèle",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Nom d'utilisateur", "Name": "Nom d'utilisateur",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nommez votre base de connaissances", "Name your knowledge base": "Nommez votre base de connaissances",
"Native": "Natif", "Native": "Natif",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Aucune requête de recherche générée", "No search query generated": "Aucune requête de recherche générée",
"No source available": "Aucune source n'est disponible", "No source available": "Aucune source n'est disponible",
"No users were found.": "Aucun utilisateur trouvé.", "No users were found.": "Aucun utilisateur trouvé.",
"No valves": "",
"No valves to update": "Aucune vanne à mettre à jour", "No valves to update": "Aucune vanne à mettre à jour",
"Node Ids": "",
"None": "Aucun", "None": "Aucun",
"Not factually correct": "Non factuellement correct", "Not factually correct": "Non factuellement correct",
"Not helpful": "Pas utile", "Not helpful": "Pas utile",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Défilement lors du changement de branche", "Scroll On Branch Change": "Défilement lors du changement de branche",
"Search": "Recherche", "Search": "Recherche",
"Search a model": "Rechercher un modèle", "Search a model": "Rechercher un modèle",
"Search all emojis": "",
"Search Base": "Base de recherche", "Search Base": "Base de recherche",
"Search Chats": "Rechercher des conversations", "Search Chats": "Rechercher des conversations",
"Search Collection": "Rechercher une collection", "Search Collection": "Rechercher une collection",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Voir le fichier readme.md pour les instructions", "See readme.md for instructions": "Voir le fichier readme.md pour les instructions",
"See what's new": "Découvrez les nouvelles fonctionnalités", "See what's new": "Découvrez les nouvelles fonctionnalités",
"Seed": "Seed", "Seed": "Seed",
"Select": "",
"Select a base model": "Sélectionnez un modèle de base", "Select a base model": "Sélectionnez un modèle de base",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Sélectionnez un moteur", "Select a engine": "Sélectionnez un moteur",
"Select a function": "Sélectionnez une fonction", "Select a function": "Sélectionnez une fonction",
"Select a group": "Sélectionner un groupe", "Select a group": "Sélectionner un groupe",
"Select a language": "",
"Select a mode": "",
"Select a model": "Sélectionnez un modèle", "Select a model": "Sélectionnez un modèle",
"Select a model (optional)": "",
"Select a pipeline": "Sélectionnez un pipeline", "Select a pipeline": "Sélectionnez un pipeline",
"Select a pipeline url": "Sélectionnez l'URL du pipeline", "Select a pipeline url": "Sélectionnez l'URL du pipeline",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Sélectionnez un outil", "Select a tool": "Sélectionnez un outil",
"Select a voice": "",
"Select an auth method": "Veuillez sélectionner une méthode de connexion", "Select an auth method": "Veuillez sélectionner une méthode de connexion",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Sélectionnez une instance Ollama", "Select an Ollama instance": "Sélectionnez une instance Ollama",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Sélectionnez le moteur", "Select Engine": "Sélectionnez le moteur",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Sélectionnez une connaissance", "Select Knowledge": "Sélectionnez une connaissance",
"Select only one model to call": "Sélectionnez seulement un modèle pour appeler", "Select only one model to call": "Sélectionnez seulement un modèle pour appeler",
"Selected model(s) do not support image inputs": "Les modèle(s) sélectionné(s) ne prennent pas en charge les entrées d'images", "Selected model(s) do not support image inputs": "Les modèle(s) sélectionné(s) ne prennent pas en charge les entrées d'images",
@ -1215,6 +1262,7 @@
"Serply API Key": "Clé API Serply", "Serply API Key": "Clé API Serply",
"Serpstack API Key": "Clé API Serpstack", "Serpstack API Key": "Clé API Serpstack",
"Server connection verified": "Connexion au serveur vérifiée", "Server connection verified": "Connexion au serveur vérifiée",
"Session": "",
"Set as default": "Définir comme valeur par défaut", "Set as default": "Définir comme valeur par défaut",
"Set CFG Scale": "Définir la CFG", "Set CFG Scale": "Définir la CFG",
"Set Default Model": "Définir le modèle par défaut", "Set Default Model": "Définir le modèle par défaut",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "Ne pas utiliser le cache", "Skip Cache": "Ne pas utiliser le cache",
"Skip the cache and re-run the inference. Defaults to False.": "Ne pas utiliser le cache et re executer l'inférence. Par defaut à False", "Skip the cache and re-run the inference. Defaults to False.": "Ne pas utiliser le cache et re executer l'inférence. Par defaut à False",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "Identifiant API Sougou Search (sID)", "Sougou Search API sID": "Identifiant API Sougou Search (sID)",
"Sougou Search API SK": "Clé secrète API Sougou Search (SK)", "Sougou Search API SK": "Clé secrète API Sougou Search (SK)",
"Source": "Source", "Source": "Source",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Export de PDF stylisés", "Stylized PDF Export": "Export de PDF stylisés",
"Subtitle (e.g. about the Roman Empire)": "Sous-titres (par ex. sur l'Empire romain)", "Subtitle (e.g. about the Roman Empire)": "Sous-titres (par ex. sur l'Empire romain)",
"Success": "Réussite", "Success": "Réussite",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Mise à jour réussie.", "Successfully updated.": "Mise à jour réussie.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Suggéré", "Suggested": "Suggéré",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "La taille maximale du fichier en Mo. Si la taille du fichier dépasse cette limite, le fichier ne sera pas téléchargé.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "La taille maximale du fichier en Mo. Si la taille du fichier dépasse cette limite, le fichier ne sera pas téléchargé.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Le nombre maximal de fichiers pouvant être utilisés en même temps dans la conversation. Si le nombre de fichiers dépasse cette limite, les fichiers ne seront pas téléchargés.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Le nombre maximal de fichiers pouvant être utilisés en même temps dans la conversation. Si le nombre de fichiers dépasse cette limite, les fichiers ne seront pas téléchargés.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Le format de sortie du texte. Il peut s'agir de « json », “markdown” ou « html ». La valeur par défaut est « markdown ».", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Le format de sortie du texte. Il peut s'agir de « json », “markdown” ou « html ». La valeur par défaut est « markdown ».",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Le score doit être une valeur comprise entre 0,0 (0%) et 1,0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Le score doit être une valeur comprise entre 0,0 (0%) et 1,0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "La température du modèle. Une température plus élevée rend les réponses plus créatives.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "La température du modèle. Une température plus élevée rend les réponses plus créatives.",
@ -1439,7 +1495,9 @@
"Upload Files": "Téléverser des fichiers", "Upload Files": "Téléverser des fichiers",
"Upload Pipeline": "Pipeline de téléchargement", "Upload Pipeline": "Pipeline de téléchargement",
"Upload Progress": "Progression de l'envoi", "Upload Progress": "Progression de l'envoi",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "Mode d'URL", "URL Mode": "Mode d'URL",
"Usage": "Utilisation", "Usage": "Utilisation",
"Use '#' in the prompt input to load and include your knowledge.": "Utilisez '#' dans la zone de saisie du prompt pour charger et inclure vos connaissances.", "Use '#' in the prompt input to load and include your knowledge.": "Utilisez '#' dans la zone de saisie du prompt pour charger et inclure vos connaissances.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Utilisation du modèle d'arène par défaut avec tous les modèles. Cliquez sur le bouton plus pour ajouter des modèles personnalisés.", "Using the default arena model with all models. Click the plus button to add custom models.": "Utilisation du modèle d'arène par défaut avec tous les modèles. Cliquez sur le bouton plus pour ajouter des modèles personnalisés.",
"Valid time units:": "Unités de temps valides\u00a0:", "Valid time units:": "Unités de temps valides\u00a0:",
"Validate certificate": "",
"Valves": "Vannes", "Valves": "Vannes",
"Valves updated": "Vannes mises à jour", "Valves updated": "Vannes mises à jour",
"Valves updated successfully": "Les vannes ont été mises à jour avec succès", "Valves updated successfully": "Les vannes ont été mises à jour avec succès",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (local)", "Whisper (Local)": "Whisper (local)",
"Why?": "Pourquoi ?", "Why?": "Pourquoi ?",
"Widescreen Mode": "Mode grand écran", "Widescreen Mode": "Mode grand écran",
"Width": "",
"Won": "Victoires", "Won": "Victoires",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Fonctionne avec top-k. Une valeur élevée (par exemple, 0,95) conduira à un texte plus diversifié, tandis qu'une valeur plus faible (par exemple, 0,5) générera un texte plus ciblé et conservateur.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Fonctionne avec top-k. Une valeur élevée (par exemple, 0,95) conduira à un texte plus diversifié, tandis qu'une valeur plus faible (par exemple, 0,5) générera un texte plus ciblé et conservateur.",
"Workspace": "Espace de travail", "Workspace": "Espace de travail",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "Nombres de lignes cachées {{COUNT}}", "{{COUNT}} hidden lines": "Nombres de lignes cachées {{COUNT}}",
"{{COUNT}} Replies": "{{COUNT}} réponses", "{{COUNT}} Replies": "{{COUNT}} réponses",
"{{COUNT}} words": "{{COUNT}} mots", "{{COUNT}} words": "{{COUNT}} mots",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Conversations de {{user}}", "{{user}}'s Chats": "Conversations de {{user}}",
"{{webUIName}} Backend Required": "Backend {{webUIName}} requis", "{{webUIName}} Backend Required": "Backend {{webUIName}} requis",
"*Prompt node ID(s) are required for image generation": "*Les ID de noeud du prompt sont nécessaires pour la génération d'images", "*Prompt node ID(s) are required for image generation": "*Les ID de noeud du prompt sont nécessaires pour la génération d'images",
@ -29,6 +30,7 @@
"Account Activation Pending": "Activation du compte en attente", "Account Activation Pending": "Activation du compte en attente",
"Accurate information": "Information exacte", "Accurate information": "Information exacte",
"Action": "Action", "Action": "Action",
"Action not found": "",
"Actions": "Actions", "Actions": "Actions",
"Activate": "Activer", "Activate": "Activer",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activez cette commande en tapant \"/{{COMMAND}}\" dans l'entrée de la conversation.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activez cette commande en tapant \"/{{COMMAND}}\" dans l'entrée de la conversation.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "Toujours jouer la notification sonore", "Always Play Notification Sound": "Toujours jouer la notification sonore",
"Amazing": "Incroyable", "Amazing": "Incroyable",
"an assistant": "un assistant", "an assistant": "un assistant",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Analysé", "Analyzed": "Analysé",
"Analyzing...": "Analyse en cours", "Analyzing...": "Analyse en cours",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Restrictions des points de terminaison de la clé API", "API Key Endpoint Restrictions": "Restrictions des points de terminaison de la clé API",
"API keys": "Clés d'API", "API keys": "Clés d'API",
"API Version": "Version de l'API", "API Version": "Version de l'API",
"API Version is required": "",
"Application DN": "DN de l'application", "Application DN": "DN de l'application",
"Application DN Password": "Mot de passe DN de l'application", "Application DN Password": "Mot de passe DN de l'application",
"applies to all users with the \"user\" role": "s'applique à tous les utilisateurs ayant le rôle « utilisateur »", "applies to all users with the \"user\" role": "s'applique à tous les utilisateurs ayant le rôle « utilisateur »",
@ -160,6 +164,7 @@
"Banners": "Bannières", "Banners": "Bannières",
"Base Model (From)": "Modèle de base (à partir de)", "Base Model (From)": "Modèle de base (à partir de)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "La mise en cache de la liste des modèles de base accélère l'accès en ne récupérant les modèles de base qu'au démarrage ou lors de la sauvegarde des réglages - plus rapide, mais peut ne pas afficher les modifications récentes des modèles de base.", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "La mise en cache de la liste des modèles de base accélère l'accès en ne récupérant les modèles de base qu'au démarrage ou lors de la sauvegarde des réglages - plus rapide, mais peut ne pas afficher les modifications récentes des modèles de base.",
"Bearer": "",
"before": "avant", "before": "avant",
"Being lazy": "Être fainéant", "Being lazy": "Être fainéant",
"Beta": "Bêta", "Beta": "Bêta",
@ -189,7 +194,9 @@
"Capture Audio": "Prise de son", "Capture Audio": "Prise de son",
"Certificate Path": "Chemin du certificat", "Certificate Path": "Chemin du certificat",
"Change Password": "Changer le mot de passe", "Change Password": "Changer le mot de passe",
"Channel deleted successfully": "",
"Channel Name": "Nom du canal", "Channel Name": "Nom du canal",
"Channel updated successfully": "",
"Channels": "Canaux", "Channels": "Canaux",
"Character": "Caractère", "Character": "Caractère",
"Character limit for autocomplete generation input": "Limite de caractères pour la génération des suggestions", "Character limit for autocomplete generation input": "Limite de caractères pour la génération des suggestions",
@ -238,6 +245,7 @@
"Close modal": "Fermer la fenêtre", "Close modal": "Fermer la fenêtre",
"Close settings modal": "Fermer la fenêtre des réglages", "Close settings modal": "Fermer la fenêtre des réglages",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Bloc de code", "Code Block": "Bloc de code",
"Code execution": "Exécution de code", "Code execution": "Exécution de code",
"Code Execution": "Exécution de code", "Code Execution": "Exécution de code",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "L'URL de base ComfyUI est requise.", "ComfyUI Base URL is required.": "L'URL de base ComfyUI est requise.",
"ComfyUI Workflow": "Flux de travaux de ComfyUI", "ComfyUI Workflow": "Flux de travaux de ComfyUI",
"ComfyUI Workflow Nodes": "Noeud du flux de travaux de ComfyUI", "ComfyUI Workflow Nodes": "Noeud du flux de travaux de ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Commande", "Command": "Commande",
"Comment": "Commentaire", "Comment": "Commentaire",
"Completions": "Complétions", "Completions": "Complétions",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Demandes concurrentes", "Concurrent Requests": "Demandes concurrentes",
"Config imported successfully": "",
"Configure": "Configurer", "Configure": "Configurer",
"Confirm": "Confirmer", "Confirm": "Confirmer",
"Confirm Password": "Confirmer le mot de passe", "Confirm Password": "Confirmer le mot de passe",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Clé API Datalab Marker requise.", "Datalab Marker API Key required.": "Clé API Datalab Marker requise.",
"DD/MM/YYYY": "JJ/MM/AAAA", "DD/MM/YYYY": "JJ/MM/AAAA",
"December": "Décembre", "December": "Décembre",
"Deepgram": "",
"Default": "Par défaut", "Default": "Par défaut",
"Default (Open AI)": "Par défaut (OpenAI)", "Default (Open AI)": "Par défaut (OpenAI)",
"Default (SentenceTransformers)": "Par défaut (Sentence Transformers)", "Default (SentenceTransformers)": "Par défaut (Sentence Transformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Direct connexions", "Direct Connections": "Direct connexions",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Les connexions directes permettent aux utilisateurs de se connecter à leurs propres points d'extension API compatibles OpenAI.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Les connexions directes permettent aux utilisateurs de se connecter à leurs propres points d'extension API compatibles OpenAI.",
"Direct Tool Servers": "Serveur d'outils directs", "Direct Tool Servers": "Serveur d'outils directs",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "Désactiver l'interpréteur de code", "Disable Code Interpreter": "Désactiver l'interpréteur de code",
"Disable Image Extraction": "Empecher l'extraction d'image", "Disable Image Extraction": "Empecher l'extraction d'image",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Désactive l'extraction d'images du PDF. Si l'option Utiliser le LLM est activée, les images seront automatiquement légendées. La valeur par défaut est False.", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Désactive l'extraction d'images du PDF. Si l'option Utiliser le LLM est activée, les images seront automatiquement légendées. La valeur par défaut est False.",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Entrez des paires \"token:valeur_biais\" séparées par des virgules (exemple : 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Entrez des paires \"token:valeur_biais\" séparées par des virgules (exemple : 5432:100, 413:-100)",
"Enter Config in JSON format": "Entrez la configuration au format JSON", "Enter Config in JSON format": "Entrez la configuration au format JSON",
"Enter content for the pending user info overlay. Leave empty for default.": "Entrez le contenu pour l'interface utilisateur en attente. Laissez vide pour le défaut.", "Enter content for the pending user info overlay. Leave empty for default.": "Entrez le contenu pour l'interface utilisateur en attente. Laissez vide pour le défaut.",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "Entrez la clé API Datalab Marker", "Enter Datalab Marker API Key": "Entrez la clé API Datalab Marker",
"Enter description": "Entrez la description", "Enter description": "Entrez la description",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Entrez l'URL brute de GitHub", "Enter Github Raw URL": "Entrez l'URL brute de GitHub",
"Enter Google PSE API Key": "Entrez la clé API Google PSE", "Enter Google PSE API Key": "Entrez la clé API Google PSE",
"Enter Google PSE Engine Id": "Entrez l'identifiant du moteur Google PSE", "Enter Google PSE Engine Id": "Entrez l'identifiant du moteur Google PSE",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Entrez la taille de l'image (par ex. 512x512)", "Enter Image Size (e.g. 512x512)": "Entrez la taille de l'image (par ex. 512x512)",
"Enter Jina API Key": "Entrez la clé API Jina", "Enter Jina API Key": "Entrez la clé API Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Entrez la valeur Top K pour le Reranker", "Enter Top K Reranker": "Entrez la valeur Top K pour le Reranker",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Entrez l'URL (par ex. {http://127.0.0.1:7860/})", "Enter URL (e.g. http://127.0.0.1:7860/)": "Entrez l'URL (par ex. {http://127.0.0.1:7860/})",
"Enter URL (e.g. http://localhost:11434)": "Entrez l'URL (par ex. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Entrez l'URL (par ex. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "Entrez le mot de passe Yacy", "Enter Yacy Password": "Entrez le mot de passe Yacy",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Entrez l'URL Yacy (par ex. http://yacy.example.com:8090)", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Entrez l'URL Yacy (par ex. http://yacy.example.com:8090)",
"Enter Yacy Username": "Entrez le nom d'utilisateur Yacy", "Enter Yacy Username": "Entrez le nom d'utilisateur Yacy",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Entrez l'URL de votre webhook", "Enter your webhook URL": "Entrez l'URL de votre webhook",
"Error": "Erreur", "Error": "Erreur",
"ERROR": "ERREUR", "ERROR": "ERREUR",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Erreur d'accès à Google Drive : {{error}}", "Error accessing Google Drive: {{error}}": "Erreur d'accès à Google Drive : {{error}}",
"Error accessing media devices.": "Erreur lors de l'accès aux dispositifs medias", "Error accessing media devices.": "Erreur lors de l'accès aux dispositifs medias",
"Error starting recording.": "Erreur lors du démarrage de l'enregistrement", "Error starting recording.": "Erreur lors du démarrage de l'enregistrement",
"Error unloading model: {{error}}": "Erreur lors du déchargement du modèle : {{error}}", "Error unloading model: {{error}}": "Erreur lors du déchargement du modèle : {{error}}",
"Error uploading file: {{error}}": "Erreur de téléversement du fichier : {{error}}", "Error uploading file: {{error}}": "Erreur de téléversement du fichier : {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Évaluations", "Evaluations": "Évaluations",
"Everyone": "", "Everyone": "",
"Exa API Key": "Clé d'Exa API", "Exa API Key": "Clé d'Exa API",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Retour haptique", "Haptic Feedback": "Retour haptique",
"Height": "",
"Hello, {{name}}": "Bonjour, {{name}}.", "Hello, {{name}}": "Bonjour, {{name}}.",
"Help": "Aide", "Help": "Aide",
"Help us create the best community leaderboard by sharing your feedback history!": "Aidez-nous à créer le meilleur classement communautaire en partageant votre historique des avis !", "Help us create the best community leaderboard by sharing your feedback history!": "Aidez-nous à créer le meilleur classement communautaire en partageant votre historique des avis !",
@ -733,6 +753,7 @@
"Hide": "Cacher", "Hide": "Cacher",
"Hide from Sidebar": "Cacher de la barre latérale", "Hide from Sidebar": "Cacher de la barre latérale",
"Hide Model": "Cache le Model", "Hide Model": "Cache le Model",
"High": "",
"High Contrast Mode": "Mode avec contraste accentué", "High Contrast Mode": "Mode avec contraste accentué",
"Home": "Home", "Home": "Home",
"Host": "Hôte", "Host": "Hôte",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecter l'ensemble du contenu comme contexte pour un traitement complet, recommandé pour les requêtes complexes.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecter l'ensemble du contenu comme contexte pour un traitement complet, recommandé pour les requêtes complexes.",
"Input": "", "Input": "",
"Input commands": "Commandes d'entrée", "Input commands": "Commandes d'entrée",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Variables d'entrée", "Input Variables": "Variables d'entrée",
"Insert": "Insérer", "Insert": "Insérer",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "Contenu de fichier invalide", "Invalid file content": "Contenu de fichier invalide",
"Invalid file format.": "Format de fichier non valide.", "Invalid file format.": "Format de fichier non valide.",
"Invalid JSON file": "Fichier JSON non valide", "Invalid JSON file": "Fichier JSON non valide",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Tag non valide", "Invalid Tag": "Tag non valide",
"is typing...": "est en train d'écrire...", "is typing...": "est en train d'écrire...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "Epingler dans la barre latérale", "Keep in Sidebar": "Epingler dans la barre latérale",
"Key": "Clé", "Key": "Clé",
"Key is required": "",
"Keyboard shortcuts": "Raccourcis clavier", "Keyboard shortcuts": "Raccourcis clavier",
"Knowledge": "Connaissances", "Knowledge": "Connaissances",
"Knowledge Access": "Accès aux connaissances", "Knowledge Access": "Accès aux connaissances",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Connaissance créée avec succès.", "Knowledge created successfully.": "Connaissance créée avec succès.",
"Knowledge deleted successfully.": "Connaissance supprimée avec succès.", "Knowledge deleted successfully.": "Connaissance supprimée avec succès.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Partage public des Connaissances", "Knowledge Public Sharing": "Partage public des Connaissances",
"Knowledge reset successfully.": "Connaissance réinitialisée avec succès.", "Knowledge reset successfully.": "Connaissance réinitialisée avec succès.",
"Knowledge updated successfully": "Connaissance mise à jour avec succès", "Knowledge updated successfully": "Connaissance mise à jour avec succès",
@ -852,6 +878,7 @@
"Local Task Model": "Model de tâche local", "Local Task Model": "Model de tâche local",
"Location access not allowed": "Accès à la localisation non autorisé", "Location access not allowed": "Accès à la localisation non autorisé",
"Lost": "Perdu", "Lost": "Perdu",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Réalisé par la communauté OpenWebUI", "Made by Open WebUI Community": "Réalisé par la communauté OpenWebUI",
"Make password visible in the user interface": "Rendre visible les mots de passe dans l'interface", "Make password visible in the user interface": "Rendre visible les mots de passe dans l'interface",
@ -873,6 +900,7 @@
"Max Upload Size": "Limite de taille de téléversement", "Max Upload Size": "Limite de taille de téléversement",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Un maximum de 3 modèles peut être téléchargé en même temps. Veuillez réessayer ultérieurement.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Un maximum de 3 modèles peut être téléchargé en même temps. Veuillez réessayer ultérieurement.",
"May": "Mai", "May": "Mai",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Les souvenirs accessibles par les LLMs seront affichées ici.", "Memories accessible by LLMs will be shown here.": "Les souvenirs accessibles par les LLMs seront affichées ici.",
"Memory": "Mémoire", "Memory": "Mémoire",
"Memory added successfully": "Souvenir ajoutée avec succès", "Memory added successfully": "Souvenir ajoutée avec succès",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "ID des modèles", "Model IDs": "ID des modèles",
"Model Name": "Nom du modèle", "Model Name": "Nom du modèle",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Modèle non sélectionné", "Model not selected": "Modèle non sélectionné",
"Model Params": "Réglages du modèle", "Model Params": "Réglages du modèle",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Nom d'utilisateur", "Name": "Nom d'utilisateur",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nommez votre base de connaissances", "Name your knowledge base": "Nommez votre base de connaissances",
"Native": "Natif", "Native": "Natif",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Aucune requête de recherche générée", "No search query generated": "Aucune requête de recherche générée",
"No source available": "Aucune source n'est disponible", "No source available": "Aucune source n'est disponible",
"No users were found.": "Aucun utilisateur trouvé.", "No users were found.": "Aucun utilisateur trouvé.",
"No valves": "",
"No valves to update": "Aucune vanne à mettre à jour", "No valves to update": "Aucune vanne à mettre à jour",
"Node Ids": "",
"None": "Aucun", "None": "Aucun",
"Not factually correct": "Non factuellement correct", "Not factually correct": "Non factuellement correct",
"Not helpful": "Pas utile", "Not helpful": "Pas utile",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Défilement lors du changement de branche", "Scroll On Branch Change": "Défilement lors du changement de branche",
"Search": "Recherche", "Search": "Recherche",
"Search a model": "Rechercher un modèle", "Search a model": "Rechercher un modèle",
"Search all emojis": "",
"Search Base": "Base de recherche", "Search Base": "Base de recherche",
"Search Chats": "Rechercher des conversations", "Search Chats": "Rechercher des conversations",
"Search Collection": "Rechercher une collection", "Search Collection": "Rechercher une collection",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Voir le fichier readme.md pour les instructions", "See readme.md for instructions": "Voir le fichier readme.md pour les instructions",
"See what's new": "Découvrez les nouvelles fonctionnalités", "See what's new": "Découvrez les nouvelles fonctionnalités",
"Seed": "Seed", "Seed": "Seed",
"Select": "",
"Select a base model": "Sélectionnez un modèle de base", "Select a base model": "Sélectionnez un modèle de base",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Sélectionnez un moteur", "Select a engine": "Sélectionnez un moteur",
"Select a function": "Sélectionnez une fonction", "Select a function": "Sélectionnez une fonction",
"Select a group": "Sélectionner un groupe", "Select a group": "Sélectionner un groupe",
"Select a language": "",
"Select a mode": "",
"Select a model": "Sélectionnez un modèle", "Select a model": "Sélectionnez un modèle",
"Select a model (optional)": "",
"Select a pipeline": "Sélectionnez un pipeline", "Select a pipeline": "Sélectionnez un pipeline",
"Select a pipeline url": "Sélectionnez l'URL du pipeline", "Select a pipeline url": "Sélectionnez l'URL du pipeline",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Sélectionnez un outil", "Select a tool": "Sélectionnez un outil",
"Select a voice": "",
"Select an auth method": "Veuillez sélectionner une méthode de connexion", "Select an auth method": "Veuillez sélectionner une méthode de connexion",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Sélectionnez une instance Ollama", "Select an Ollama instance": "Sélectionnez une instance Ollama",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Sélectionnez le moteur", "Select Engine": "Sélectionnez le moteur",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Sélectionnez une connaissance", "Select Knowledge": "Sélectionnez une connaissance",
"Select only one model to call": "Sélectionnez seulement un modèle pour appeler", "Select only one model to call": "Sélectionnez seulement un modèle pour appeler",
"Selected model(s) do not support image inputs": "Les modèle(s) sélectionné(s) ne prennent pas en charge les entrées d'images", "Selected model(s) do not support image inputs": "Les modèle(s) sélectionné(s) ne prennent pas en charge les entrées d'images",
@ -1215,6 +1262,7 @@
"Serply API Key": "Clé API Serply", "Serply API Key": "Clé API Serply",
"Serpstack API Key": "Clé API Serpstack", "Serpstack API Key": "Clé API Serpstack",
"Server connection verified": "Connexion au serveur vérifiée", "Server connection verified": "Connexion au serveur vérifiée",
"Session": "",
"Set as default": "Définir comme valeur par défaut", "Set as default": "Définir comme valeur par défaut",
"Set CFG Scale": "Définir la CFG", "Set CFG Scale": "Définir la CFG",
"Set Default Model": "Définir le modèle par défaut", "Set Default Model": "Définir le modèle par défaut",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "Ne pas utiliser le cache", "Skip Cache": "Ne pas utiliser le cache",
"Skip the cache and re-run the inference. Defaults to False.": "Ne pas utiliser le cache et re executer l'inférence. Par defaut à False", "Skip the cache and re-run the inference. Defaults to False.": "Ne pas utiliser le cache et re executer l'inférence. Par defaut à False",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "Identifiant API Sougou Search (sID)", "Sougou Search API sID": "Identifiant API Sougou Search (sID)",
"Sougou Search API SK": "Clé secrète API Sougou Search (SK)", "Sougou Search API SK": "Clé secrète API Sougou Search (SK)",
"Source": "Source", "Source": "Source",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Export de PDF stylisés", "Stylized PDF Export": "Export de PDF stylisés",
"Subtitle (e.g. about the Roman Empire)": "Sous-titres (par ex. sur l'Empire romain)", "Subtitle (e.g. about the Roman Empire)": "Sous-titres (par ex. sur l'Empire romain)",
"Success": "Réussite", "Success": "Réussite",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Mise à jour réussie.", "Successfully updated.": "Mise à jour réussie.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Suggéré", "Suggested": "Suggéré",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "La taille maximale du fichier en Mo. Si la taille du fichier dépasse cette limite, le fichier ne sera pas téléchargé.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "La taille maximale du fichier en Mo. Si la taille du fichier dépasse cette limite, le fichier ne sera pas téléchargé.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Le nombre maximal de fichiers pouvant être utilisés en même temps dans la conversation. Si le nombre de fichiers dépasse cette limite, les fichiers ne seront pas téléchargés.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Le nombre maximal de fichiers pouvant être utilisés en même temps dans la conversation. Si le nombre de fichiers dépasse cette limite, les fichiers ne seront pas téléchargés.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Le format de sortie du texte. Il peut s'agir de « json », “markdown” ou « html ». La valeur par défaut est « markdown ».", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Le format de sortie du texte. Il peut s'agir de « json », “markdown” ou « html ». La valeur par défaut est « markdown ».",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Le score doit être une valeur comprise entre 0,0 (0%) et 1,0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Le score doit être une valeur comprise entre 0,0 (0%) et 1,0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "La température du modèle. Une température plus élevée rend les réponses plus créatives.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "La température du modèle. Une température plus élevée rend les réponses plus créatives.",
@ -1439,7 +1495,9 @@
"Upload Files": "Téléverser des fichiers", "Upload Files": "Téléverser des fichiers",
"Upload Pipeline": "Pipeline de téléchargement", "Upload Pipeline": "Pipeline de téléchargement",
"Upload Progress": "Progression de l'envoi", "Upload Progress": "Progression de l'envoi",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "Mode d'URL", "URL Mode": "Mode d'URL",
"Usage": "Utilisation", "Usage": "Utilisation",
"Use '#' in the prompt input to load and include your knowledge.": "Utilisez '#' dans la zone de saisie du prompt pour charger et inclure vos connaissances.", "Use '#' in the prompt input to load and include your knowledge.": "Utilisez '#' dans la zone de saisie du prompt pour charger et inclure vos connaissances.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Utilisation du modèle d'arène par défaut avec tous les modèles. Cliquez sur le bouton plus pour ajouter des modèles personnalisés.", "Using the default arena model with all models. Click the plus button to add custom models.": "Utilisation du modèle d'arène par défaut avec tous les modèles. Cliquez sur le bouton plus pour ajouter des modèles personnalisés.",
"Valid time units:": "Unités de temps valides\u00a0:", "Valid time units:": "Unités de temps valides\u00a0:",
"Validate certificate": "",
"Valves": "Vannes", "Valves": "Vannes",
"Valves updated": "Vannes mises à jour", "Valves updated": "Vannes mises à jour",
"Valves updated successfully": "Les vannes ont été mises à jour avec succès", "Valves updated successfully": "Les vannes ont été mises à jour avec succès",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (local)", "Whisper (Local)": "Whisper (local)",
"Why?": "Pourquoi ?", "Why?": "Pourquoi ?",
"Widescreen Mode": "Mode grand écran", "Widescreen Mode": "Mode grand écran",
"Width": "",
"Won": "Victoires", "Won": "Victoires",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Fonctionne avec top-k. Une valeur élevée (par exemple, 0,95) conduira à un texte plus diversifié, tandis qu'une valeur plus faible (par exemple, 0,5) générera un texte plus ciblé et conservateur.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Fonctionne avec top-k. Une valeur élevée (par exemple, 0,95) conduira à un texte plus diversifié, tandis qu'une valeur plus faible (par exemple, 0,5) générera un texte plus ciblé et conservateur.",
"Workspace": "Espace de travail", "Workspace": "Espace de travail",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} Respostas", "{{COUNT}} Replies": "{{COUNT}} Respostas",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Chats do {{user}}", "{{user}}'s Chats": "Chats do {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Servidor Requerido", "{{webUIName}} Backend Required": "{{webUIName}} Servidor Requerido",
"*Prompt node ID(s) are required for image generation": "Os ID do nodo son requeridos para a xeneración de imáxes", "*Prompt node ID(s) are required for image generation": "Os ID do nodo son requeridos para a xeneración de imáxes",
@ -29,6 +30,7 @@
"Account Activation Pending": "Activación da conta pendente", "Account Activation Pending": "Activación da conta pendente",
"Accurate information": "Información precisa", "Accurate information": "Información precisa",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Accións", "Actions": "Accións",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Active este comando escribindo \"/{{COMMAND}}\" no chat", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Active este comando escribindo \"/{{COMMAND}}\" no chat",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "Sorprendente", "Amazing": "Sorprendente",
"an assistant": "un asistente", "an assistant": "un asistente",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Analizado", "Analyzed": "Analizado",
"Analyzing...": "Analizando..", "Analyzing...": "Analizando..",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Restriccions de Endpoint de Chave de API", "API Key Endpoint Restrictions": "Restriccions de Endpoint de Chave de API",
"API keys": "Chaves da API", "API keys": "Chaves da API",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "Aplicacion DN", "Application DN": "Aplicacion DN",
"Application DN Password": " Contrasinal da Aplicacion DN", "Application DN Password": " Contrasinal da Aplicacion DN",
"applies to all users with the \"user\" role": "aplicacar a todos os usuarios co rol \"user\" ", "applies to all users with the \"user\" role": "aplicacar a todos os usuarios co rol \"user\" ",
@ -160,6 +164,7 @@
"Banners": "Mensaxes emerxentes", "Banners": "Mensaxes emerxentes",
"Base Model (From)": "Modelo base (desde)", "Base Model (From)": "Modelo base (desde)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "antes", "before": "antes",
"Being lazy": "Ser pregizeiro", "Being lazy": "Ser pregizeiro",
"Beta": "Beta", "Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "Ruta para os Certificados", "Certificate Path": "Ruta para os Certificados",
"Change Password": "Cambiar o contrasinal ", "Change Password": "Cambiar o contrasinal ",
"Channel deleted successfully": "",
"Channel Name": "Nome do Canal", "Channel Name": "Nome do Canal",
"Channel updated successfully": "",
"Channels": "Canal", "Channels": "Canal",
"Character": "Caracter", "Character": "Caracter",
"Character limit for autocomplete generation input": "Limite de caracteres para a entrada de xeneración do autocompletado", "Character limit for autocomplete generation input": "Limite de caracteres para a entrada de xeneración do autocompletado",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Execución de código", "Code execution": "Execución de código",
"Code Execution": "Execución de código", "Code Execution": "Execución de código",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI Base URL e requerido.", "ComfyUI Base URL is required.": "ComfyUI Base URL e requerido.",
"ComfyUI Workflow": "Fluxo de traballo de ComfyUI", "ComfyUI Workflow": "Fluxo de traballo de ComfyUI",
"ComfyUI Workflow Nodes": "Nodos para ComfyUI Workflow", "ComfyUI Workflow Nodes": "Nodos para ComfyUI Workflow",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Comando", "Command": "Comando",
"Comment": "", "Comment": "",
"Completions": "Respostas autoxeradas", "Completions": "Respostas autoxeradas",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Solicitudes simultáneas", "Concurrent Requests": "Solicitudes simultáneas",
"Config imported successfully": "",
"Configure": "Configurar", "Configure": "Configurar",
"Confirm": "Confirmar", "Confirm": "Confirmar",
"Confirm Password": "Confirmar Contrasinal ", "Confirm Password": "Confirmar Contrasinal ",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Decembro", "December": "Decembro",
"Deepgram": "",
"Default": "Por defecto", "Default": "Por defecto",
"Default (Open AI)": "Predeterminado (Open AI)", "Default (Open AI)": "Predeterminado (Open AI)",
"Default (SentenceTransformers)": "Predeterminado (SentenceTransformers)", "Default (SentenceTransformers)": "Predeterminado (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Conexións directas", "Direct Connections": "Conexións directas",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Conexións directas permiten aos usuarios conectar cos seus propios puntos finais de API compatibles con OpenAI.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Conexións directas permiten aos usuarios conectar cos seus propios puntos finais de API compatibles con OpenAI.",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "Ingrese a descripción", "Enter description": "Ingrese a descripción",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Ingresa a URL sin procesar de Github", "Enter Github Raw URL": "Ingresa a URL sin procesar de Github",
"Enter Google PSE API Key": "Ingrese a chave API de Google PSE", "Enter Google PSE API Key": "Ingrese a chave API de Google PSE",
"Enter Google PSE Engine Id": "Introduzca o ID do motor PSE de Google", "Enter Google PSE Engine Id": "Introduzca o ID do motor PSE de Google",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Ingrese o tamaño da imaxen (p.ej. 512x512)", "Enter Image Size (e.g. 512x512)": "Ingrese o tamaño da imaxen (p.ej. 512x512)",
"Enter Jina API Key": "Ingrese a chave API de Jina", "Enter Jina API Key": "Ingrese a chave API de Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Ingrese a URL (p.ej., http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Ingrese a URL (p.ej., http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Ingrese a URL (p.ej., http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Ingrese a URL (p.ej., http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Ingrese a sua URL de webhook", "Enter your webhook URL": "Ingrese a sua URL de webhook",
"Error": "Error", "Error": "Error",
"ERROR": "ERROR", "ERROR": "ERROR",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Error o acceder a Google Drive: {{error}}", "Error accessing Google Drive: {{error}}": "Error o acceder a Google Drive: {{error}}",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "Error o subir o Arquivo: {{error}}", "Error uploading file: {{error}}": "Error o subir o Arquivo: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Evaluacions", "Evaluations": "Evaluacions",
"Everyone": "", "Everyone": "",
"Exa API Key": "chave API de Exa", "Exa API Key": "chave API de Exa",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Retroalimentación háptica", "Haptic Feedback": "Retroalimentación háptica",
"Height": "",
"Hello, {{name}}": "Hola, {{name}}", "Hello, {{name}}": "Hola, {{name}}",
"Help": "axuda", "Help": "axuda",
"Help us create the best community leaderboard by sharing your feedback history!": "¡Axudanos a xerar o mejor tablero de líderes da comunidad compartindo o teu historial de retroalimentación!", "Help us create the best community leaderboard by sharing your feedback history!": "¡Axudanos a xerar o mejor tablero de líderes da comunidad compartindo o teu historial de retroalimentación!",
@ -733,6 +753,7 @@
"Hide": "Esconder", "Hide": "Esconder",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "Host", "Host": "Host",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Ingresar comandos", "Input commands": "Ingresar comandos",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "Formato de Arquivo inválido.", "Invalid file format.": "Formato de Arquivo inválido.",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Etiqueta Inválida", "Invalid Tag": "Etiqueta Inválida",
"is typing...": "está escribindo...", "is typing...": "está escribindo...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "Chave", "Key": "Chave",
"Key is required": "",
"Keyboard shortcuts": "Atallos de teclado", "Keyboard shortcuts": "Atallos de teclado",
"Knowledge": "coñecemento", "Knowledge": "coñecemento",
"Knowledge Access": "Acceso al coñecemento", "Knowledge Access": "Acceso al coñecemento",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "coñecemento creado exitosamente.", "Knowledge created successfully.": "coñecemento creado exitosamente.",
"Knowledge deleted successfully.": "coñecemento eliminado exitosamente.", "Knowledge deleted successfully.": "coñecemento eliminado exitosamente.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "coñecemento restablecido exitosamente.", "Knowledge reset successfully.": "coñecemento restablecido exitosamente.",
"Knowledge updated successfully": "coñecemento actualizado exitosamente.", "Knowledge updated successfully": "coñecemento actualizado exitosamente.",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "Perdido", "Lost": "Perdido",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Feito por a comunidad de OpenWebUI", "Made by Open WebUI Community": "Feito por a comunidad de OpenWebUI",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "Tamaño máximo de Cargas", "Max Upload Size": "Tamaño máximo de Cargas",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Podense descargar un máximo de 3 modelos simultáneamente. Por favor, intenteo de novo mais tarde.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Podense descargar un máximo de 3 modelos simultáneamente. Por favor, intenteo de novo mais tarde.",
"May": "Mayo", "May": "Mayo",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "As memorias accesibles por os LLMs mostraránse aquí.", "Memories accessible by LLMs will be shown here.": "As memorias accesibles por os LLMs mostraránse aquí.",
"Memory": "Memoria", "Memory": "Memoria",
"Memory added successfully": "Memoria añadida correctamente", "Memory added successfully": "Memoria añadida correctamente",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "IDs de modelos", "Model IDs": "IDs de modelos",
"Model Name": "Nombre do modelo", "Model Name": "Nombre do modelo",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Modelo no seleccionado", "Model not selected": "Modelo no seleccionado",
"Model Params": "Parámetros do modelo", "Model Params": "Parámetros do modelo",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Nombre", "Name": "Nombre",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nombra a tua base de coñecementos", "Name your knowledge base": "Nombra a tua base de coñecementos",
"Native": "Nativo", "Native": "Nativo",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "No se ha generado ninguna consulta de búsqueda", "No search query generated": "No se ha generado ninguna consulta de búsqueda",
"No source available": "Non ten fuente disponible", "No source available": "Non ten fuente disponible",
"No users were found.": "No se encontraron usuarios.", "No users were found.": "No se encontraron usuarios.",
"No valves": "",
"No valves to update": "Non ten válvulas para actualizar", "No valves to update": "Non ten válvulas para actualizar",
"Node Ids": "",
"None": "Ninguno", "None": "Ninguno",
"Not factually correct": "No es correcto en todos os aspectos", "Not factually correct": "No es correcto en todos os aspectos",
"Not helpful": "No útil", "Not helpful": "No útil",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Buscar", "Search": "Buscar",
"Search a model": "Buscar un modelo", "Search a model": "Buscar un modelo",
"Search all emojis": "",
"Search Base": "Base de búsqueda", "Search Base": "Base de búsqueda",
"Search Chats": "Chats de búsqueda", "Search Chats": "Chats de búsqueda",
"Search Collection": "Buscar Colección", "Search Collection": "Buscar Colección",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Vea o readme.md para instruccions", "See readme.md for instructions": "Vea o readme.md para instruccions",
"See what's new": "Ver as novedades", "See what's new": "Ver as novedades",
"Seed": "Semilla", "Seed": "Semilla",
"Select": "",
"Select a base model": "Seleccionar un modelo base", "Select a base model": "Seleccionar un modelo base",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Busca un motor", "Select a engine": "Busca un motor",
"Select a function": "Busca unha función", "Select a function": "Busca unha función",
"Select a group": "Seleccionar un grupo", "Select a group": "Seleccionar un grupo",
"Select a language": "",
"Select a mode": "",
"Select a model": "Selecciona un modelo", "Select a model": "Selecciona un modelo",
"Select a model (optional)": "",
"Select a pipeline": "Selección de unha Pipeline", "Select a pipeline": "Selección de unha Pipeline",
"Select a pipeline url": "Selección de unha dirección URL de Pipeline", "Select a pipeline url": "Selección de unha dirección URL de Pipeline",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Busca unha ferramenta", "Select a tool": "Busca unha ferramenta",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Seleccionar unha instancia de Ollama", "Select an Ollama instance": "Seleccionar unha instancia de Ollama",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Selecciona Motor", "Select Engine": "Selecciona Motor",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Selecciona coñecemento", "Select Knowledge": "Selecciona coñecemento",
"Select only one model to call": "Selecciona sólo un modelo para llamar", "Select only one model to call": "Selecciona sólo un modelo para llamar",
"Selected model(s) do not support image inputs": "Os modelos seleccionados no admiten entradas de imaxen", "Selected model(s) do not support image inputs": "Os modelos seleccionados no admiten entradas de imaxen",
@ -1215,6 +1262,7 @@
"Serply API Key": "chave API de Serply", "Serply API Key": "chave API de Serply",
"Serpstack API Key": "chave API de Serpstack", "Serpstack API Key": "chave API de Serpstack",
"Server connection verified": "Conexión do servidor verificada", "Server connection verified": "Conexión do servidor verificada",
"Session": "",
"Set as default": "Establecer por defecto", "Set as default": "Establecer por defecto",
"Set CFG Scale": "Establecer la escala CFG", "Set CFG Scale": "Establecer la escala CFG",
"Set Default Model": "Establecer modelo predeterminado", "Set Default Model": "Establecer modelo predeterminado",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Fonte", "Source": "Fonte",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Subtítulo (por Exemplo, sobre o Imperio Romano)", "Subtitle (e.g. about the Roman Empire)": "Subtítulo (por Exemplo, sobre o Imperio Romano)",
"Success": "Éxito", "Success": "Éxito",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Actualizado exitosamente.", "Successfully updated.": "Actualizado exitosamente.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Sugerido", "Suggested": "Sugerido",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "O tamaño máximo do arquivo en MB. Si o tamaño do arquivo supera este límite, o arquivo no se subirá.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "O tamaño máximo do arquivo en MB. Si o tamaño do arquivo supera este límite, o arquivo no se subirá.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "O número máximo de arquivos que se pueden utilizar a la vez en chat. Si este límite es superado, os arquivos no se subirán.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "O número máximo de arquivos que se pueden utilizar a la vez en chat. Si este límite es superado, os arquivos no se subirán.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "La puntuación debe ser un valor entre 0.0 (0%) y 1.0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "La puntuación debe ser un valor entre 0.0 (0%) y 1.0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Subir arquivos", "Upload Files": "Subir arquivos",
"Upload Pipeline": "Subir Pipeline", "Upload Pipeline": "Subir Pipeline",
"Upload Progress": "Progreso de carga", "Upload Progress": "Progreso de carga",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "Modo de URL", "URL Mode": "Modo de URL",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "Utilice '#' no prompt para cargar y incluir su coñecemento.", "Use '#' in the prompt input to load and include your knowledge.": "Utilice '#' no prompt para cargar y incluir su coñecemento.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Usando o modelo de arena predeterminado con todos os modelos. Haga clic no botón mais para agregar modelos personalizados.", "Using the default arena model with all models. Click the plus button to add custom models.": "Usando o modelo de arena predeterminado con todos os modelos. Haga clic no botón mais para agregar modelos personalizados.",
"Valid time units:": "Unidades válidas de tempo:", "Valid time units:": "Unidades válidas de tempo:",
"Validate certificate": "",
"Valves": "Valves", "Valves": "Valves",
"Valves updated": "Valves actualizados", "Valves updated": "Valves actualizados",
"Valves updated successfully": "Valves actualizados con éxito", "Valves updated successfully": "Valves actualizados con éxito",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Xextor de voz (Local)", "Whisper (Local)": "Xextor de voz (Local)",
"Why?": "¿Por qué?", "Why?": "¿Por qué?",
"Widescreen Mode": "Modo de pantalla ancha", "Widescreen Mode": "Modo de pantalla ancha",
"Width": "",
"Won": "Ganado", "Won": "Ganado",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Funciona xunto con top-k. Un valor máis alto (por exemplo, 0,95) dará lugar a un texto máis diverso, mentres que un valor máis baixo (por exemplo, 0,5) xerará un texto máis centrado e conservador.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Funciona xunto con top-k. Un valor máis alto (por exemplo, 0,95) dará lugar a un texto máis diverso, mentres que un valor máis baixo (por exemplo, 0,5) xerará un texto máis centrado e conservador.",
"Workspace": "Espacio de traballo", "Workspace": "Espacio de traballo",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "צ'אטים של {{user}}", "{{user}}'s Chats": "צ'אטים של {{user}}",
"{{webUIName}} Backend Required": "נדרש Backend של {{webUIName}}", "{{webUIName}} Backend Required": "נדרש Backend של {{webUIName}}",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "", "Account Activation Pending": "",
"Accurate information": "מידע מדויק", "Accurate information": "מידע מדויק",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "פעולה", "Actions": "פעולה",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "מדהים", "Amazing": "מדהים",
"an assistant": "עוזר", "an assistant": "עוזר",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "מפתחות API", "API keys": "מפתחות API",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "באנרים", "Banners": "באנרים",
"Base Model (From)": "דגם בסיס (מ)", "Base Model (From)": "דגם בסיס (מ)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "לפני", "before": "לפני",
"Being lazy": "להיות עצלן", "Being lazy": "להיות עצלן",
"Beta": "בטא", "Beta": "בטא",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "שנה סיסמה", "Change Password": "שנה סיסמה",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "הרצת קוד", "Code execution": "הרצת קוד",
"Code Execution": "הרצת קוד", "Code Execution": "הרצת קוד",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "נדרשת כתובת URL בסיסית של ComfyUI", "ComfyUI Base URL is required.": "נדרשת כתובת URL בסיסית של ComfyUI",
"ComfyUI Workflow": "", "ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "", "ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "פקודה", "Command": "פקודה",
"Comment": "", "Comment": "",
"Completions": "", "Completions": "",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "בקשות בו-זמניות", "Concurrent Requests": "בקשות בו-זמניות",
"Config imported successfully": "",
"Configure": "", "Configure": "",
"Confirm": "", "Confirm": "",
"Confirm Password": "אשר סיסמה", "Confirm Password": "אשר סיסמה",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "דצמבר", "December": "דצמבר",
"Deepgram": "",
"Default": "ברירת מחדל", "Default": "ברירת מחדל",
"Default (Open AI)": "", "Default (Open AI)": "",
"Default (SentenceTransformers)": "ברירת מחדל (SentenceTransformers)", "Default (SentenceTransformers)": "ברירת מחדל (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "", "Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "הזן כתובת URL של Github Raw", "Enter Github Raw URL": "הזן כתובת URL של Github Raw",
"Enter Google PSE API Key": "הזן מפתח API של Google PSE", "Enter Google PSE API Key": "הזן מפתח API של Google PSE",
"Enter Google PSE Engine Id": "הזן את מזהה מנוע PSE של Google", "Enter Google PSE Engine Id": "הזן את מזהה מנוע PSE של Google",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "הזן גודל תמונה (למשל 512x512)", "Enter Image Size (e.g. 512x512)": "הזן גודל תמונה (למשל 512x512)",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "הזן כתובת URL (למשל http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "הזן כתובת URL (למשל http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "הזן כתובת URL (למשל http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "הזן כתובת URL (למשל http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "שגיאה", "Error": "שגיאה",
"ERROR": "", "ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "", "Evaluations": "",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "שלום, {{name}}", "Hello, {{name}}": "שלום, {{name}}",
"Help": "עזרה", "Help": "עזרה",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "הסתר", "Hide": "הסתר",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "הסתר מודל", "Hide Model": "הסתר מודל",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "בית", "Home": "בית",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "פקודות קלט", "Input commands": "פקודות קלט",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "", "Invalid file format.": "",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "תג לא חוקי", "Invalid Tag": "תג לא חוקי",
"is typing...": "מקליד...", "is typing...": "מקליד...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "קיצורי מקלדת", "Keyboard shortcuts": "קיצורי מקלדת",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "", "Knowledge created successfully.": "",
"Knowledge deleted successfully.": "", "Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "", "Knowledge reset successfully.": "",
"Knowledge updated successfully": "", "Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "", "Lost": "",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "נוצר על ידי קהילת OpenWebUI", "Made by Open WebUI Community": "נוצר על ידי קהילת OpenWebUI",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"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": "מאי",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "מזכירים נגישים על ידי LLMs יוצגו כאן.", "Memories accessible by LLMs will be shown here.": "מזכירים נגישים על ידי LLMs יוצגו כאן.",
"Memory": "זיכרון", "Memory": "זיכרון",
"Memory added successfully": "", "Memory added successfully": "",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "שם המודל", "Model Name": "שם המודל",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "לא נבחר מודל", "Model not selected": "לא נבחר מודל",
"Model Params": "פרמטרי המודל", "Model Params": "פרמטרי המודל",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "שם", "Name": "שם",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "לא נוצרה שאילתת חיפוש", "No search query generated": "לא נוצרה שאילתת חיפוש",
"No source available": "אין מקור זמין", "No source available": "אין מקור זמין",
"No users were found.": "לא נמצאו יוזרים", "No users were found.": "לא נמצאו יוזרים",
"No valves": "",
"No valves to update": "", "No valves to update": "",
"Node Ids": "",
"None": "ללא", "None": "ללא",
"Not factually correct": "לא נכון מבחינה עובדתית", "Not factually correct": "לא נכון מבחינה עובדתית",
"Not helpful": "", "Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "חפש", "Search": "חפש",
"Search a model": "חפש מודל", "Search a model": "חפש מודל",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "חיפוש צ'אטים", "Search Chats": "חיפוש צ'אטים",
"Search Collection": "", "Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "ראה את readme.md להוראות", "See readme.md for instructions": "ראה את readme.md להוראות",
"See what's new": "ראה מה חדש", "See what's new": "ראה מה חדש",
"Seed": "זרע", "Seed": "זרע",
"Select": "",
"Select a base model": "בחירת מודל בסיס", "Select a base model": "בחירת מודל בסיס",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "", "Select a engine": "",
"Select a function": "", "Select a function": "",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "בחר מודל", "Select a model": "בחר מודל",
"Select a model (optional)": "",
"Select a pipeline": "בחר קו צינור", "Select a pipeline": "בחר קו צינור",
"Select a pipeline url": "בחר כתובת URL של קו צינור", "Select a pipeline url": "בחר כתובת URL של קו צינור",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "בחר כלי", "Select a tool": "בחר כלי",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "", "Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "", "Select Knowledge": "",
"Select only one model to call": "", "Select only one model to call": "",
"Selected model(s) do not support image inputs": "דגמים נבחרים אינם תומכים בקלט תמונה", "Selected model(s) do not support image inputs": "דגמים נבחרים אינם תומכים בקלט תמונה",
@ -1215,6 +1262,7 @@
"Serply API Key": "", "Serply API Key": "",
"Serpstack API Key": "מפתח API של Serpstack", "Serpstack API Key": "מפתח API של Serpstack",
"Server connection verified": "החיבור לשרת אומת", "Server connection verified": "החיבור לשרת אומת",
"Session": "",
"Set as default": "הגדר כברירת מחדל", "Set as default": "הגדר כברירת מחדל",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "הגדר מודל ברירת מחדל", "Set Default Model": "הגדר מודל ברירת מחדל",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "מקור", "Source": "מקור",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "תחקור (לדוגמה: על מעמד הרומי)", "Subtitle (e.g. about the Roman Empire)": "תחקור (לדוגמה: על מעמד הרומי)",
"Success": "הצלחה", "Success": "הצלחה",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "עדכון הצלחה.", "Successfully updated.": "עדכון הצלחה.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "מומלץ", "Suggested": "מומלץ",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "ציון צריך להיות ערך בין 0.0 (0%) ל-1.0 (100%)", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "ציון צריך להיות ערך בין 0.0 (0%) ל-1.0 (100%)",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "העלאת קבצים", "Upload Files": "העלאת קבצים",
"Upload Pipeline": "", "Upload Pipeline": "",
"Upload Progress": "תקדמות העלאה", "Upload Progress": "תקדמות העלאה",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "מצב URL", "URL Mode": "מצב URL",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "", "Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "יחידות זמן תקינות:", "Valid time units:": "יחידות זמן תקינות:",
"Validate certificate": "",
"Valves": "", "Valves": "",
"Valves updated": "", "Valves updated": "",
"Valves updated successfully": "", "Valves updated successfully": "",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "", "Whisper (Local)": "",
"Why?": "", "Why?": "",
"Widescreen Mode": "", "Widescreen Mode": "",
"Width": "",
"Won": "", "Won": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "סביבה", "Workspace": "סביבה",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} की चैट", "{{user}}'s Chats": "{{user}} की चैट",
"{{webUIName}} Backend Required": "{{webUIName}} बैकएंड आवश्यक", "{{webUIName}} Backend Required": "{{webUIName}} बैकएंड आवश्यक",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "", "Account Activation Pending": "",
"Accurate information": "सटीक जानकारी", "Accurate information": "सटीक जानकारी",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "", "Actions": "",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "", "Amazing": "",
"an assistant": "एक सहायक", "an assistant": "एक सहायक",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "एपीआई कुंजियाँ", "API keys": "एपीआई कुंजियाँ",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "बैनर", "Banners": "बैनर",
"Base Model (From)": "बेस मॉडल (से)", "Base Model (From)": "बेस मॉडल (से)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "पहले", "before": "पहले",
"Being lazy": "आलसी होना", "Being lazy": "आलसी होना",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "पासवर्ड बदलें", "Change Password": "पासवर्ड बदलें",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI का बेस यूआरएल आवश्यक है", "ComfyUI Base URL is required.": "ComfyUI का बेस यूआरएल आवश्यक है",
"ComfyUI Workflow": "", "ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "", "ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "कमांड", "Command": "कमांड",
"Comment": "", "Comment": "",
"Completions": "", "Completions": "",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "समवर्ती अनुरोध", "Concurrent Requests": "समवर्ती अनुरोध",
"Config imported successfully": "",
"Configure": "", "Configure": "",
"Confirm": "", "Confirm": "",
"Confirm Password": "पासवर्ड की पुष्टि कीजिये", "Confirm Password": "पासवर्ड की पुष्टि कीजिये",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "डिसेंबर", "December": "डिसेंबर",
"Deepgram": "",
"Default": "डिफ़ॉल्ट", "Default": "डिफ़ॉल्ट",
"Default (Open AI)": "", "Default (Open AI)": "",
"Default (SentenceTransformers)": "डिफ़ॉल्ट (SentenceTransformers)", "Default (SentenceTransformers)": "डिफ़ॉल्ट (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "", "Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Github Raw URL दर्ज करें", "Enter Github Raw URL": "Github Raw URL दर्ज करें",
"Enter Google PSE API Key": "Google PSE API कुंजी दर्ज करें", "Enter Google PSE API Key": "Google PSE API कुंजी दर्ज करें",
"Enter Google PSE Engine Id": "Google PSE इंजन आईडी दर्ज करें", "Enter Google PSE Engine Id": "Google PSE इंजन आईडी दर्ज करें",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "छवि का आकार दर्ज करें (उदा. 512x512)", "Enter Image Size (e.g. 512x512)": "छवि का आकार दर्ज करें (उदा. 512x512)",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "यूआरएल दर्ज करें (उदा. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "यूआरएल दर्ज करें (उदा. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "यूआरएल दर्ज करें (उदा. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "यूआरएल दर्ज करें (उदा. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "चूक", "Error": "चूक",
"ERROR": "", "ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "", "Evaluations": "",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "नमस्ते, {{name}}", "Hello, {{name}}": "नमस्ते, {{name}}",
"Help": "मदद", "Help": "मदद",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "छुपाएं", "Hide": "छुपाएं",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "इनपुट क命", "Input commands": "इनपुट क命",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "", "Invalid file format.": "",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "अवैध टैग", "Invalid Tag": "अवैध टैग",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "कीबोर्ड शॉर्टकट", "Keyboard shortcuts": "कीबोर्ड शॉर्टकट",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "", "Knowledge created successfully.": "",
"Knowledge deleted successfully.": "", "Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "", "Knowledge reset successfully.": "",
"Knowledge updated successfully": "", "Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "", "Lost": "",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "OpenWebUI समुदाय द्वारा निर्मित", "Made by Open WebUI Community": "OpenWebUI समुदाय द्वारा निर्मित",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"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": "मेई",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "एलएलएम द्वारा सुलभ यादें यहां दिखाई जाएंगी।", "Memories accessible by LLMs will be shown here.": "एलएलएम द्वारा सुलभ यादें यहां दिखाई जाएंगी।",
"Memory": "मेमोरी", "Memory": "मेमोरी",
"Memory added successfully": "", "Memory added successfully": "",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "", "Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "मॉडल चयनित नहीं है", "Model not selected": "मॉडल चयनित नहीं है",
"Model Params": "मॉडल Params", "Model Params": "मॉडल Params",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "नाम", "Name": "नाम",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "कोई खोज क्वेरी जनरेट नहीं हुई", "No search query generated": "कोई खोज क्वेरी जनरेट नहीं हुई",
"No source available": "कोई स्रोत उपलब्ध नहीं है", "No source available": "कोई स्रोत उपलब्ध नहीं है",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "", "No valves to update": "",
"Node Ids": "",
"None": "कोई नहीं", "None": "कोई नहीं",
"Not factually correct": "तथ्यात्मक रूप से सही नहीं है", "Not factually correct": "तथ्यात्मक रूप से सही नहीं है",
"Not helpful": "", "Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "खोजें", "Search": "खोजें",
"Search a model": "एक मॉडल खोजें", "Search a model": "एक मॉडल खोजें",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "चैट खोजें", "Search Chats": "चैट खोजें",
"Search Collection": "", "Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "निर्देशों के लिए readme.md देखें", "See readme.md for instructions": "निर्देशों के लिए readme.md देखें",
"See what's new": "देखें, क्या नया है", "See what's new": "देखें, क्या नया है",
"Seed": "सीड्\u200c", "Seed": "सीड्\u200c",
"Select": "",
"Select a base model": "एक आधार मॉडल का चयन करें", "Select a base model": "एक आधार मॉडल का चयन करें",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "", "Select a engine": "",
"Select a function": "", "Select a function": "",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "एक मॉडल चुनें", "Select a model": "एक मॉडल चुनें",
"Select a model (optional)": "",
"Select a pipeline": "एक पाइपलाइन का चयन करें", "Select a pipeline": "एक पाइपलाइन का चयन करें",
"Select a pipeline url": "एक पाइपलाइन url चुनें", "Select a pipeline url": "एक पाइपलाइन url चुनें",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "", "Select a tool": "",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "", "Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "", "Select Knowledge": "",
"Select only one model to call": "", "Select only one model to call": "",
"Selected model(s) do not support image inputs": "चयनित मॉडल छवि इनपुट का समर्थन नहीं करते हैं", "Selected model(s) do not support image inputs": "चयनित मॉडल छवि इनपुट का समर्थन नहीं करते हैं",
@ -1215,6 +1262,7 @@
"Serply API Key": "", "Serply API Key": "",
"Serpstack API Key": "सर्पस्टैक एपीआई कुंजी", "Serpstack API Key": "सर्पस्टैक एपीआई कुंजी",
"Server connection verified": "सर्वर कनेक्शन सत्यापित", "Server connection verified": "सर्वर कनेक्शन सत्यापित",
"Session": "",
"Set as default": "डिफाल्ट के रूप में सेट", "Set as default": "डिफाल्ट के रूप में सेट",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "डिफ़ॉल्ट मॉडल सेट करें", "Set Default Model": "डिफ़ॉल्ट मॉडल सेट करें",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "स्रोत", "Source": "स्रोत",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "उपशीर्षक (जैसे रोमन साम्राज्य के बारे में)", "Subtitle (e.g. about the Roman Empire)": "उपशीर्षक (जैसे रोमन साम्राज्य के बारे में)",
"Success": "संपन्न", "Success": "संपन्न",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "सफलतापूर्वक उत्परिवर्तित।", "Successfully updated.": "सफलतापूर्वक उत्परिवर्तित।",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "सुझावी", "Suggested": "सुझावी",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "स्कोर का मान 0.0 (0%) और 1.0 (100%) के बीच होना चाहिए।", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "स्कोर का मान 0.0 (0%) और 1.0 (100%) के बीच होना चाहिए।",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "फ़ाइलें अपलोड करें", "Upload Files": "फ़ाइलें अपलोड करें",
"Upload Pipeline": "", "Upload Pipeline": "",
"Upload Progress": "प्रगति अपलोड करें", "Upload Progress": "प्रगति अपलोड करें",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "URL मोड", "URL Mode": "URL मोड",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "", "Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "मान्य समय इकाइयाँ:", "Valid time units:": "मान्य समय इकाइयाँ:",
"Validate certificate": "",
"Valves": "", "Valves": "",
"Valves updated": "", "Valves updated": "",
"Valves updated successfully": "", "Valves updated successfully": "",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "", "Whisper (Local)": "",
"Why?": "", "Why?": "",
"Widescreen Mode": "", "Widescreen Mode": "",
"Width": "",
"Won": "", "Won": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "वर्कस्पेस", "Workspace": "वर्कस्पेस",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Razgovori korisnika {{user}}", "{{user}}'s Chats": "Razgovori korisnika {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Backend je potreban", "{{webUIName}} Backend Required": "{{webUIName}} Backend je potreban",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "", "Account Activation Pending": "",
"Accurate information": "Točne informacije", "Accurate information": "Točne informacije",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "", "Actions": "",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "", "Amazing": "",
"an assistant": "asistent", "an assistant": "asistent",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "API ključevi", "API keys": "API ključevi",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "Baneri", "Banners": "Baneri",
"Base Model (From)": "Osnovni model (Od)", "Base Model (From)": "Osnovni model (Od)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "prije", "before": "prije",
"Being lazy": "Biti lijen", "Being lazy": "Biti lijen",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "Promijeni lozinku", "Change Password": "Promijeni lozinku",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "Potreban je ComfyUI osnovni URL.", "ComfyUI Base URL is required.": "Potreban je ComfyUI osnovni URL.",
"ComfyUI Workflow": "", "ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "", "ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Naredba", "Command": "Naredba",
"Comment": "", "Comment": "",
"Completions": "", "Completions": "",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Istodobni zahtjevi", "Concurrent Requests": "Istodobni zahtjevi",
"Config imported successfully": "",
"Configure": "", "Configure": "",
"Confirm": "", "Confirm": "",
"Confirm Password": "Potvrdite lozinku", "Confirm Password": "Potvrdite lozinku",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Prosinac", "December": "Prosinac",
"Deepgram": "",
"Default": "Zadano", "Default": "Zadano",
"Default (Open AI)": "", "Default (Open AI)": "",
"Default (SentenceTransformers)": "Zadano (SentenceTransformers)", "Default (SentenceTransformers)": "Zadano (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "", "Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Unesite Github sirovi URL", "Enter Github Raw URL": "Unesite Github sirovi URL",
"Enter Google PSE API Key": "Unesite Google PSE API ključ", "Enter Google PSE API Key": "Unesite Google PSE API ključ",
"Enter Google PSE Engine Id": "Unesite ID Google PSE motora", "Enter Google PSE Engine Id": "Unesite ID Google PSE motora",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Unesite veličinu slike (npr. 512x512)", "Enter Image Size (e.g. 512x512)": "Unesite veličinu slike (npr. 512x512)",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Unesite URL (npr. http://127.0.0.1:7860/)", "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 URL (e.g. http://localhost:11434)": "Unesite URL (npr. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "Greška", "Error": "Greška",
"ERROR": "", "ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "", "Evaluations": "",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "Bok, {{name}}", "Hello, {{name}}": "Bok, {{name}}",
"Help": "Pomoć", "Help": "Pomoć",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "Sakrij", "Hide": "Sakrij",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Unos naredbi", "Input commands": "Unos naredbi",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "", "Invalid file format.": "",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Nevažeća oznaka", "Invalid Tag": "Nevažeća oznaka",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "Tipkovnički prečaci", "Keyboard shortcuts": "Tipkovnički prečaci",
"Knowledge": "Znanje", "Knowledge": "Znanje",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "", "Knowledge created successfully.": "",
"Knowledge deleted successfully.": "", "Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "", "Knowledge reset successfully.": "",
"Knowledge updated successfully": "", "Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "", "Lost": "",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Izradio OpenWebUI Community", "Made by Open WebUI Community": "Izradio OpenWebUI Community",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimalno 3 modela se mogu preuzeti istovremeno. Pokušajte ponovo kasnije.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimalno 3 modela se mogu preuzeti istovremeno. Pokušajte ponovo kasnije.",
"May": "Svibanj", "May": "Svibanj",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Ovdje će biti prikazana memorija kojoj mogu pristupiti LLM-ovi.", "Memories accessible by LLMs will be shown here.": "Ovdje će biti prikazana memorija kojoj mogu pristupiti LLM-ovi.",
"Memory": "Memorija", "Memory": "Memorija",
"Memory added successfully": "", "Memory added successfully": "",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "", "Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Model nije odabran", "Model not selected": "Model nije odabran",
"Model Params": "Model parametri", "Model Params": "Model parametri",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Ime", "Name": "Ime",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Nije generiran upit za pretraživanje", "No search query generated": "Nije generiran upit za pretraživanje",
"No source available": "Nema dostupnog izvora", "No source available": "Nema dostupnog izvora",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "", "No valves to update": "",
"Node Ids": "",
"None": "Ništa", "None": "Ništa",
"Not factually correct": "Nije činjenično točno", "Not factually correct": "Nije činjenično točno",
"Not helpful": "", "Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Pretraga", "Search": "Pretraga",
"Search a model": "Pretraži model", "Search a model": "Pretraži model",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "Pretraži razgovore", "Search Chats": "Pretraži razgovore",
"Search Collection": "", "Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Pogledajte readme.md za upute", "See readme.md for instructions": "Pogledajte readme.md za upute",
"See what's new": "Pogledajte što je novo", "See what's new": "Pogledajte što je novo",
"Seed": "Sjeme", "Seed": "Sjeme",
"Select": "",
"Select a base model": "Odabir osnovnog modela", "Select a base model": "Odabir osnovnog modela",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Odaberite pogon", "Select a engine": "Odaberite pogon",
"Select a function": "", "Select a function": "",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Odaberite model", "Select a model": "Odaberite model",
"Select a model (optional)": "",
"Select a pipeline": "Odabir kanala", "Select a pipeline": "Odabir kanala",
"Select a pipeline url": "Odabir URL-a kanala", "Select a pipeline url": "Odabir URL-a kanala",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "", "Select a tool": "",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "", "Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "", "Select Knowledge": "",
"Select only one model to call": "Odaberite samo jedan model za poziv", "Select only one model to call": "Odaberite samo jedan model za poziv",
"Selected model(s) do not support image inputs": "Odabrani modeli ne podržavaju unose slika", "Selected model(s) do not support image inputs": "Odabrani modeli ne podržavaju unose slika",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API ključ", "Serply API Key": "Serply API ključ",
"Serpstack API Key": "Serpstack API API ključ", "Serpstack API Key": "Serpstack API API ključ",
"Server connection verified": "Veza s poslužiteljem potvrđena", "Server connection verified": "Veza s poslužiteljem potvrđena",
"Session": "",
"Set as default": "Postavi kao zadano", "Set as default": "Postavi kao zadano",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "Postavi zadani model", "Set Default Model": "Postavi zadani model",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Izvor", "Source": "Izvor",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Podnaslov (npr. o Rimskom carstvu)", "Subtitle (e.g. about the Roman Empire)": "Podnaslov (npr. o Rimskom carstvu)",
"Success": "Uspjeh", "Success": "Uspjeh",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Uspješno ažurirano.", "Successfully updated.": "Uspješno ažurirano.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Predloženo", "Suggested": "Predloženo",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"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%).", "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%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Prijenos datoteka", "Upload Files": "Prijenos datoteka",
"Upload Pipeline": "Prijenos kanala", "Upload Pipeline": "Prijenos kanala",
"Upload Progress": "Napredak učitavanja", "Upload Progress": "Napredak učitavanja",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "URL način", "URL Mode": "URL način",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "", "Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "Važeće vremenske jedinice:", "Valid time units:": "Važeće vremenske jedinice:",
"Validate certificate": "",
"Valves": "", "Valves": "",
"Valves updated": "", "Valves updated": "",
"Valves updated successfully": "", "Valves updated successfully": "",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (lokalno)", "Whisper (Local)": "Whisper (lokalno)",
"Why?": "", "Why?": "",
"Widescreen Mode": "Mod širokog zaslona", "Widescreen Mode": "Mod širokog zaslona",
"Width": "",
"Won": "", "Won": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Radna ploča", "Workspace": "Radna ploča",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} rejtett sor", "{{COUNT}} hidden lines": "{{COUNT}} rejtett sor",
"{{COUNT}} Replies": "{{COUNT}} Válasz", "{{COUNT}} Replies": "{{COUNT}} Válasz",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} beszélgetései", "{{user}}'s Chats": "{{user}} beszélgetései",
"{{webUIName}} Backend Required": "{{webUIName}} Backend szükséges", "{{webUIName}} Backend Required": "{{webUIName}} Backend szükséges",
"*Prompt node ID(s) are required for image generation": "*Prompt node ID(k) szükségesek a képgeneráláshoz", "*Prompt node ID(s) are required for image generation": "*Prompt node ID(k) szükségesek a képgeneráláshoz",
@ -29,6 +30,7 @@
"Account Activation Pending": "Fiók aktiválása folyamatban", "Account Activation Pending": "Fiók aktiválása folyamatban",
"Accurate information": "Pontos információ", "Accurate information": "Pontos információ",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Műveletek", "Actions": "Műveletek",
"Activate": "Aktiválás", "Activate": "Aktiválás",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktiváld ezt a parancsot a \"/{{COMMAND}}\" beírásával a csevegőmezőbe.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktiváld ezt a parancsot a \"/{{COMMAND}}\" beírásával a csevegőmezőbe.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "Csodálatos", "Amazing": "Csodálatos",
"an assistant": "egy asszisztens", "an assistant": "egy asszisztens",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Elemezve", "Analyzed": "Elemezve",
"Analyzing...": "Elemzés...", "Analyzing...": "Elemzés...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API kulcs végpont korlátozások", "API Key Endpoint Restrictions": "API kulcs végpont korlátozások",
"API keys": "API kulcsok", "API keys": "API kulcsok",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "Alkalmazás DN", "Application DN": "Alkalmazás DN",
"Application DN Password": "Alkalmazás DN jelszó", "Application DN Password": "Alkalmazás DN jelszó",
"applies to all users with the \"user\" role": "minden \"felhasználó\" szerepkörű felhasználóra vonatkozik", "applies to all users with the \"user\" role": "minden \"felhasználó\" szerepkörű felhasználóra vonatkozik",
@ -160,6 +164,7 @@
"Banners": "Bannerek", "Banners": "Bannerek",
"Base Model (From)": "Alap modell (Forrás)", "Base Model (From)": "Alap modell (Forrás)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "előtt", "before": "előtt",
"Being lazy": "Lustaság", "Being lazy": "Lustaság",
"Beta": "Béta", "Beta": "Béta",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "Tanúsítvány útvonal", "Certificate Path": "Tanúsítvány útvonal",
"Change Password": "Jelszó módosítása", "Change Password": "Jelszó módosítása",
"Channel deleted successfully": "",
"Channel Name": "Csatorna neve", "Channel Name": "Csatorna neve",
"Channel updated successfully": "",
"Channels": "Csatornák", "Channels": "Csatornák",
"Character": "Karakter", "Character": "Karakter",
"Character limit for autocomplete generation input": "Karakterlimit az automatikus kiegészítés bemenetéhez", "Character limit for autocomplete generation input": "Karakterlimit az automatikus kiegészítés bemenetéhez",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Kód végrehajtás", "Code execution": "Kód végrehajtás",
"Code Execution": "Kód végrehajtás", "Code Execution": "Kód végrehajtás",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI alap URL szükséges.", "ComfyUI Base URL is required.": "ComfyUI alap URL szükséges.",
"ComfyUI Workflow": "ComfyUI munkafolyamat", "ComfyUI Workflow": "ComfyUI munkafolyamat",
"ComfyUI Workflow Nodes": "ComfyUI munkafolyamat csomópontok", "ComfyUI Workflow Nodes": "ComfyUI munkafolyamat csomópontok",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Parancs", "Command": "Parancs",
"Comment": "", "Comment": "",
"Completions": "Kiegészítések", "Completions": "Kiegészítések",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Párhuzamos kérések", "Concurrent Requests": "Párhuzamos kérések",
"Config imported successfully": "",
"Configure": "Konfigurálás", "Configure": "Konfigurálás",
"Confirm": "Megerősítés", "Confirm": "Megerősítés",
"Confirm Password": "Jelszó megerősítése", "Confirm Password": "Jelszó megerősítése",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "December", "December": "December",
"Deepgram": "",
"Default": "Alapértelmezett", "Default": "Alapértelmezett",
"Default (Open AI)": "Alapértelmezett (Open AI)", "Default (Open AI)": "Alapértelmezett (Open AI)",
"Default (SentenceTransformers)": "Alapértelmezett (SentenceTransformers)", "Default (SentenceTransformers)": "Alapértelmezett (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Közvetlen kapcsolatok", "Direct Connections": "Közvetlen kapcsolatok",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "A közvetlen kapcsolatok lehetővé teszik a felhasználók számára, hogy saját OpenAI kompatibilis API végpontjaikhoz csatlakozzanak.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "A közvetlen kapcsolatok lehetővé teszik a felhasználók számára, hogy saját OpenAI kompatibilis API végpontjaikhoz csatlakozzanak.",
"Direct Tool Servers": "Közvetlen eszköszerverek", "Direct Tool Servers": "Közvetlen eszköszerverek",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Add meg vesszővel elválasztott \"token:bias_érték\" párokat (példa: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Add meg vesszővel elválasztott \"token:bias_érték\" párokat (példa: 5432:100, 413:-100)",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "Add meg a leírást", "Enter description": "Add meg a leírást",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Add meg a Github Raw URL-t", "Enter Github Raw URL": "Add meg a Github Raw URL-t",
"Enter Google PSE API Key": "Add meg a Google PSE API kulcsot", "Enter Google PSE API Key": "Add meg a Google PSE API kulcsot",
"Enter Google PSE Engine Id": "Add meg a Google PSE motor azonosítót", "Enter Google PSE Engine Id": "Add meg a Google PSE motor azonosítót",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Add meg a kép méretet (pl. 512x512)", "Enter Image Size (e.g. 512x512)": "Add meg a kép méretet (pl. 512x512)",
"Enter Jina API Key": "Add meg a Jina API kulcsot", "Enter Jina API Key": "Add meg a Jina API kulcsot",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Add meg a Top K újrarangsorolót", "Enter Top K Reranker": "Add meg a Top K újrarangsorolót",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Add meg az URL-t (pl. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Add meg az URL-t (pl. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Add meg az URL-t (pl. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Add meg az URL-t (pl. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Add meg a webhook URL-t", "Enter your webhook URL": "Add meg a webhook URL-t",
"Error": "Hiba", "Error": "Hiba",
"ERROR": "HIBA", "ERROR": "HIBA",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Hiba a Google Drive elérése során: {{error}}", "Error accessing Google Drive: {{error}}": "Hiba a Google Drive elérése során: {{error}}",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "Hiba a fájl feltöltése során: {{error}}", "Error uploading file: {{error}}": "Hiba a fájl feltöltése során: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Értékelések", "Evaluations": "Értékelések",
"Everyone": "", "Everyone": "",
"Exa API Key": "Exa API kulcs", "Exa API Key": "Exa API kulcs",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Tapintási visszajelzés", "Haptic Feedback": "Tapintási visszajelzés",
"Height": "",
"Hello, {{name}}": "Helló, {{name}}", "Hello, {{name}}": "Helló, {{name}}",
"Help": "Segítség", "Help": "Segítség",
"Help us create the best community leaderboard by sharing your feedback history!": "Segíts nekünk a legjobb közösségi ranglista létrehozásában a visszajelzési előzményeid megosztásával!", "Help us create the best community leaderboard by sharing your feedback history!": "Segíts nekünk a legjobb közösségi ranglista létrehozásában a visszajelzési előzményeid megosztásával!",
@ -733,6 +753,7 @@
"Hide": "Elrejtés", "Hide": "Elrejtés",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "Modell elrejtése", "Hide Model": "Modell elrejtése",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "Kezdőlap", "Home": "Kezdőlap",
"Host": "Hoszt", "Host": "Hoszt",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Az összes tartalom kontextusként való befecskendezése átfogó feldolgozáshoz, ez összetett lekérdezésekhez ajánlott.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Az összes tartalom kontextusként való befecskendezése átfogó feldolgozáshoz, ez összetett lekérdezésekhez ajánlott.",
"Input": "", "Input": "",
"Input commands": "Beviteli parancsok", "Input commands": "Beviteli parancsok",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "Érvénytelen fájlformátum.", "Invalid file format.": "Érvénytelen fájlformátum.",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Érvénytelen címke", "Invalid Tag": "Érvénytelen címke",
"is typing...": "ír...", "is typing...": "ír...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "Kulcs", "Key": "Kulcs",
"Key is required": "",
"Keyboard shortcuts": "Billentyűparancsok", "Keyboard shortcuts": "Billentyűparancsok",
"Knowledge": "Tudásbázis", "Knowledge": "Tudásbázis",
"Knowledge Access": "Tudásbázis hozzáférés", "Knowledge Access": "Tudásbázis hozzáférés",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Tudásbázis sikeresen létrehozva.", "Knowledge created successfully.": "Tudásbázis sikeresen létrehozva.",
"Knowledge deleted successfully.": "Tudásbázis sikeresen törölve.", "Knowledge deleted successfully.": "Tudásbázis sikeresen törölve.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Tudásbázis nyilvános megosztása", "Knowledge Public Sharing": "Tudásbázis nyilvános megosztása",
"Knowledge reset successfully.": "Tudásbázis sikeresen visszaállítva.", "Knowledge reset successfully.": "Tudásbázis sikeresen visszaállítva.",
"Knowledge updated successfully": "Tudásbázis sikeresen frissítve", "Knowledge updated successfully": "Tudásbázis sikeresen frissítve",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "Helyhozzáférés nem engedélyezett", "Location access not allowed": "Helyhozzáférés nem engedélyezett",
"Lost": "Elveszett", "Lost": "Elveszett",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Az OpenWebUI közösség által készítve", "Made by Open WebUI Community": "Az OpenWebUI közösség által készítve",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "Maximum feltöltési méret", "Max Upload Size": "Maximum feltöltési méret",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum 3 modell tölthető le egyszerre. Kérjük, próbálja újra később.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum 3 modell tölthető le egyszerre. Kérjük, próbálja újra később.",
"May": "Május", "May": "Május",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Az LLM-ek által elérhető emlékek itt jelennek meg.", "Memories accessible by LLMs will be shown here.": "Az LLM-ek által elérhető emlékek itt jelennek meg.",
"Memory": "Memória", "Memory": "Memória",
"Memory added successfully": "Memória sikeresen hozzáadva", "Memory added successfully": "Memória sikeresen hozzáadva",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "Modell azonosítók", "Model IDs": "Modell azonosítók",
"Model Name": "Modell neve", "Model Name": "Modell neve",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Nincs kiválasztva modell", "Model not selected": "Nincs kiválasztva modell",
"Model Params": "Modell paraméterek", "Model Params": "Modell paraméterek",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Név", "Name": "Név",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nevezd el a tudásbázisodat", "Name your knowledge base": "Nevezd el a tudásbázisodat",
"Native": "Natív", "Native": "Natív",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Nem generálódott keresési lekérdezés", "No search query generated": "Nem generálódott keresési lekérdezés",
"No source available": "Nincs elérhető forrás", "No source available": "Nincs elérhető forrás",
"No users were found.": "Nem található felhasználó.", "No users were found.": "Nem található felhasználó.",
"No valves": "",
"No valves to update": "Nincs frissítendő szelep", "No valves to update": "Nincs frissítendő szelep",
"Node Ids": "",
"None": "Nincs", "None": "Nincs",
"Not factually correct": "Tényszerűen nem helyes", "Not factually correct": "Tényszerűen nem helyes",
"Not helpful": "Nem segítőkész", "Not helpful": "Nem segítőkész",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Keresés", "Search": "Keresés",
"Search a model": "Modell keresése", "Search a model": "Modell keresése",
"Search all emojis": "",
"Search Base": "Keresési alap", "Search Base": "Keresési alap",
"Search Chats": "Beszélgetések keresése", "Search Chats": "Beszélgetések keresése",
"Search Collection": "Gyűjtemény keresése", "Search Collection": "Gyűjtemény keresése",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Lásd a readme.md fájlt az útmutatásért", "See readme.md for instructions": "Lásd a readme.md fájlt az útmutatásért",
"See what's new": "Újdonságok megtekintése", "See what's new": "Újdonságok megtekintése",
"Seed": "Seed", "Seed": "Seed",
"Select": "",
"Select a base model": "Válasszon egy alapmodellt", "Select a base model": "Válasszon egy alapmodellt",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Válasszon egy motort", "Select a engine": "Válasszon egy motort",
"Select a function": "Válasszon egy funkciót", "Select a function": "Válasszon egy funkciót",
"Select a group": "Válasszon egy csoportot", "Select a group": "Válasszon egy csoportot",
"Select a language": "",
"Select a mode": "",
"Select a model": "Válasszon egy modellt", "Select a model": "Válasszon egy modellt",
"Select a model (optional)": "",
"Select a pipeline": "Válasszon egy folyamatot", "Select a pipeline": "Válasszon egy folyamatot",
"Select a pipeline url": "Válasszon egy folyamat URL-t", "Select a pipeline url": "Válasszon egy folyamat URL-t",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Válasszon egy eszközt", "Select a tool": "Válasszon egy eszközt",
"Select a voice": "",
"Select an auth method": "Válasszon egy hitelesítési módszert", "Select an auth method": "Válasszon egy hitelesítési módszert",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Válasszon egy Ollama példányt", "Select an Ollama instance": "Válasszon egy Ollama példányt",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Motor kiválasztása", "Select Engine": "Motor kiválasztása",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Tudásbázis kiválasztása", "Select Knowledge": "Tudásbázis kiválasztása",
"Select only one model to call": "Csak egy modellt válasszon ki hívásra", "Select only one model to call": "Csak egy modellt válasszon ki hívásra",
"Selected model(s) do not support image inputs": "A kiválasztott modell(ek) nem támogatják a képbemenetet", "Selected model(s) do not support image inputs": "A kiválasztott modell(ek) nem támogatják a képbemenetet",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API kulcs", "Serply API Key": "Serply API kulcs",
"Serpstack API Key": "Serpstack API kulcs", "Serpstack API Key": "Serpstack API kulcs",
"Server connection verified": "Szerverkapcsolat ellenőrizve", "Server connection verified": "Szerverkapcsolat ellenőrizve",
"Session": "",
"Set as default": "Beállítás alapértelmezettként", "Set as default": "Beállítás alapértelmezettként",
"Set CFG Scale": "CFG skála beállítása", "Set CFG Scale": "CFG skála beállítása",
"Set Default Model": "Alapértelmezett modell beállítása", "Set Default Model": "Alapértelmezett modell beállítása",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Forrás", "Source": "Forrás",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Alcím (pl. a Római Birodalomról)", "Subtitle (e.g. about the Roman Empire)": "Alcím (pl. a Római Birodalomról)",
"Success": "Siker", "Success": "Siker",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Sikeresen frissítve.", "Successfully updated.": "Sikeresen frissítve.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Javasolt", "Suggested": "Javasolt",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "A maximális fájlméret MB-ban. Ha a fájlméret meghaladja ezt a limitet, a fájl nem lesz feltöltve.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "A maximális fájlméret MB-ban. Ha a fájlméret meghaladja ezt a limitet, a fájl nem lesz feltöltve.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "A csevegésben egyszerre használható fájlok maximális száma. Ha a fájlok száma meghaladja ezt a limitet, a fájlok nem lesznek feltöltve.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "A csevegésben egyszerre használható fájlok maximális száma. Ha a fájlok száma meghaladja ezt a limitet, a fájlok nem lesznek feltöltve.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "A pontszámnak 0,0 (0%) és 1,0 (100%) közötti értéknek kell lennie.", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "A pontszámnak 0,0 (0%) és 1,0 (100%) közötti értéknek kell lennie.",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "A modell hőmérséklete. A hőmérséklet növelése kreatívabb válaszokat eredményez a modelltől.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "A modell hőmérséklete. A hőmérséklet növelése kreatívabb válaszokat eredményez a modelltől.",
@ -1439,7 +1495,9 @@
"Upload Files": "Fájlok feltöltése", "Upload Files": "Fájlok feltöltése",
"Upload Pipeline": "Folyamat feltöltése", "Upload Pipeline": "Folyamat feltöltése",
"Upload Progress": "Feltöltési folyamat", "Upload Progress": "Feltöltési folyamat",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "URL mód", "URL Mode": "URL mód",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "Használja a '#' karaktert a prompt bevitelénél a tudásbázis betöltéséhez és felhasználásához.", "Use '#' in the prompt input to load and include your knowledge.": "Használja a '#' karaktert a prompt bevitelénél a tudásbázis betöltéséhez és felhasználásához.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Az alapértelmezett aréna modell használata az összes modellel. Kattintson a plusz gombra egyéni modellek hozzáadásához.", "Using the default arena model with all models. Click the plus button to add custom models.": "Az alapértelmezett aréna modell használata az összes modellel. Kattintson a plusz gombra egyéni modellek hozzáadásához.",
"Valid time units:": "Érvényes időegységek:", "Valid time units:": "Érvényes időegységek:",
"Validate certificate": "",
"Valves": "Szelepek", "Valves": "Szelepek",
"Valves updated": "Szelepek frissítve", "Valves updated": "Szelepek frissítve",
"Valves updated successfully": "Szelepek sikeresen frissítve", "Valves updated successfully": "Szelepek sikeresen frissítve",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (helyi)", "Whisper (Local)": "Whisper (helyi)",
"Why?": "Miért?", "Why?": "Miért?",
"Widescreen Mode": "Szélesvásznú mód", "Widescreen Mode": "Szélesvásznú mód",
"Width": "",
"Won": "Nyert", "Won": "Nyert",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "A top-k-val együtt működik. Magasabb érték (pl. 0,95) változatosabb szöveget eredményez, alacsonyabb érték (pl. 0,5) fókuszáltabb és konzervatívabb szöveget generál.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "A top-k-val együtt működik. Magasabb érték (pl. 0,95) változatosabb szöveget eredményez, alacsonyabb érték (pl. 0,5) fókuszáltabb és konzervatívabb szöveget generál.",
"Workspace": "Munkaterület", "Workspace": "Munkaterület",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Obrolan {{user}}", "{{user}}'s Chats": "Obrolan {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Diperlukan Backend", "{{webUIName}} Backend Required": "{{webUIName}} Diperlukan Backend",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "Aktivasi Akun Tertunda", "Account Activation Pending": "Aktivasi Akun Tertunda",
"Accurate information": "Informasi yang akurat", "Accurate information": "Informasi yang akurat",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "", "Actions": "",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "", "Amazing": "",
"an assistant": "asisten", "an assistant": "asisten",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "Kunci API", "API keys": "Kunci API",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "Spanduk", "Banners": "Spanduk",
"Base Model (From)": "Model Dasar (Dari)", "Base Model (From)": "Model Dasar (Dari)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "sebelum", "before": "sebelum",
"Being lazy": "Menjadi malas", "Being lazy": "Menjadi malas",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "Ubah Kata Sandi", "Change Password": "Ubah Kata Sandi",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "URL Dasar ComfyUI diperlukan.", "ComfyUI Base URL is required.": "URL Dasar ComfyUI diperlukan.",
"ComfyUI Workflow": "", "ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "", "ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Perintah", "Command": "Perintah",
"Comment": "", "Comment": "",
"Completions": "", "Completions": "",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Permintaan Bersamaan", "Concurrent Requests": "Permintaan Bersamaan",
"Config imported successfully": "",
"Configure": "", "Configure": "",
"Confirm": "Konfirmasi", "Confirm": "Konfirmasi",
"Confirm Password": "Konfirmasi Kata Sandi", "Confirm Password": "Konfirmasi Kata Sandi",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Desember", "December": "Desember",
"Deepgram": "",
"Default": "Default", "Default": "Default",
"Default (Open AI)": "", "Default (Open AI)": "",
"Default (SentenceTransformers)": "Default (Pengubah Kalimat)", "Default (SentenceTransformers)": "Default (Pengubah Kalimat)",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "", "Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Masukkan URL Mentah Github", "Enter Github Raw URL": "Masukkan URL Mentah Github",
"Enter Google PSE API Key": "Masukkan Kunci API Google PSE", "Enter Google PSE API Key": "Masukkan Kunci API Google PSE",
"Enter Google PSE Engine Id": "Masukkan Id Mesin Google PSE", "Enter Google PSE Engine Id": "Masukkan Id Mesin Google PSE",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Masukkan Ukuran Gambar (mis. 512x512)", "Enter Image Size (e.g. 512x512)": "Masukkan Ukuran Gambar (mis. 512x512)",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Masukkan URL (mis. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Masukkan URL (mis. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Masukkan URL (mis. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Masukkan URL (mis. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "Kesalahan", "Error": "Kesalahan",
"ERROR": "", "ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "", "Evaluations": "",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "Halo, {{name}}", "Hello, {{name}}": "Halo, {{name}}",
"Help": "Bantuan", "Help": "Bantuan",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "Sembunyikan", "Hide": "Sembunyikan",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Perintah masukan", "Input commands": "Perintah masukan",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "", "Invalid file format.": "",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Tag tidak valid", "Invalid Tag": "Tag tidak valid",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "Pintasan keyboard", "Keyboard shortcuts": "Pintasan keyboard",
"Knowledge": "Pengetahuan", "Knowledge": "Pengetahuan",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "", "Knowledge created successfully.": "",
"Knowledge deleted successfully.": "", "Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "", "Knowledge reset successfully.": "",
"Knowledge updated successfully": "", "Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "", "Lost": "",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Dibuat oleh Komunitas OpenWebUI", "Made by Open WebUI Community": "Dibuat oleh Komunitas OpenWebUI",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimal 3 model dapat diunduh secara bersamaan. Silakan coba lagi nanti.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimal 3 model dapat diunduh secara bersamaan. Silakan coba lagi nanti.",
"May": "Mei", "May": "Mei",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Memori yang dapat diakses oleh LLM akan ditampilkan di sini.", "Memories accessible by LLMs will be shown here.": "Memori yang dapat diakses oleh LLM akan ditampilkan di sini.",
"Memory": "Memori", "Memory": "Memori",
"Memory added successfully": "Memori berhasil ditambahkan", "Memory added successfully": "Memori berhasil ditambahkan",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "", "Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Model tidak dipilih", "Model not selected": "Model tidak dipilih",
"Model Params": "Parameter Model", "Model Params": "Parameter Model",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Nama", "Name": "Nama",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Tidak ada permintaan pencarian yang dibuat", "No search query generated": "Tidak ada permintaan pencarian yang dibuat",
"No source available": "Tidak ada sumber yang tersedia", "No source available": "Tidak ada sumber yang tersedia",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "Tidak ada katup untuk diperbarui", "No valves to update": "Tidak ada katup untuk diperbarui",
"Node Ids": "",
"None": "Tidak ada", "None": "Tidak ada",
"Not factually correct": "Tidak benar secara faktual", "Not factually correct": "Tidak benar secara faktual",
"Not helpful": "", "Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Cari", "Search": "Cari",
"Search a model": "Mencari model", "Search a model": "Mencari model",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "Cari Obrolan", "Search Chats": "Cari Obrolan",
"Search Collection": "", "Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Lihat readme.md untuk instruksi", "See readme.md for instructions": "Lihat readme.md untuk instruksi",
"See what's new": "Lihat apa yang baru", "See what's new": "Lihat apa yang baru",
"Seed": "Benih", "Seed": "Benih",
"Select": "",
"Select a base model": "Pilih model dasar", "Select a base model": "Pilih model dasar",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Pilih mesin", "Select a engine": "Pilih mesin",
"Select a function": "Memilih fungsi", "Select a function": "Memilih fungsi",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Pilih model", "Select a model": "Pilih model",
"Select a model (optional)": "",
"Select a pipeline": "Pilih saluran pipa", "Select a pipeline": "Pilih saluran pipa",
"Select a pipeline url": "Pilih url saluran pipa", "Select a pipeline url": "Pilih url saluran pipa",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Pilih alat", "Select a tool": "Pilih alat",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "", "Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "", "Select Knowledge": "",
"Select only one model to call": "Pilih hanya satu model untuk dipanggil", "Select only one model to call": "Pilih hanya satu model untuk dipanggil",
"Selected model(s) do not support image inputs": "Model yang dipilih tidak mendukung input gambar", "Selected model(s) do not support image inputs": "Model yang dipilih tidak mendukung input gambar",
@ -1215,6 +1262,7 @@
"Serply API Key": "Kunci API Serply", "Serply API Key": "Kunci API Serply",
"Serpstack API Key": "Kunci API Serpstack", "Serpstack API Key": "Kunci API Serpstack",
"Server connection verified": "Koneksi server diverifikasi", "Server connection verified": "Koneksi server diverifikasi",
"Session": "",
"Set as default": "Ditetapkan sebagai default", "Set as default": "Ditetapkan sebagai default",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "Tetapkan Model Default", "Set Default Model": "Tetapkan Model Default",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Sumber", "Source": "Sumber",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Subtitle (misalnya tentang Kekaisaran Romawi)", "Subtitle (e.g. about the Roman Empire)": "Subtitle (misalnya tentang Kekaisaran Romawi)",
"Success": "Berhasil", "Success": "Berhasil",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Berhasil diperbarui.", "Successfully updated.": "Berhasil diperbarui.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Disarankan", "Suggested": "Disarankan",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Nilai yang diberikan haruslah nilai antara 0,0 (0%) dan 1,0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Nilai yang diberikan haruslah nilai antara 0,0 (0%) dan 1,0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Unggah File", "Upload Files": "Unggah File",
"Upload Pipeline": "Unggah Pipeline", "Upload Pipeline": "Unggah Pipeline",
"Upload Progress": "Kemajuan Unggah", "Upload Progress": "Kemajuan Unggah",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "Mode URL", "URL Mode": "Mode URL",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "", "Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "Unit waktu yang valid:", "Valid time units:": "Unit waktu yang valid:",
"Validate certificate": "",
"Valves": "Katup", "Valves": "Katup",
"Valves updated": "Katup diperbarui", "Valves updated": "Katup diperbarui",
"Valves updated successfully": "Katup berhasil diperbarui", "Valves updated successfully": "Katup berhasil diperbarui",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Bisikan (Lokal)", "Whisper (Local)": "Bisikan (Lokal)",
"Why?": "", "Why?": "",
"Widescreen Mode": "Mode Layar Lebar", "Widescreen Mode": "Mode Layar Lebar",
"Width": "",
"Won": "", "Won": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Ruang Kerja", "Workspace": "Ruang Kerja",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} línte folaithe", "{{COUNT}} hidden lines": "{{COUNT}} línte folaithe",
"{{COUNT}} Replies": "{{COUNT}} Freagra", "{{COUNT}} Replies": "{{COUNT}} Freagra",
"{{COUNT}} words": "{{COUNT}} focail", "{{COUNT}} words": "{{COUNT}} focail",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Comhráite {{user}}", "{{user}}'s Chats": "Comhráite {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Ceoldeireadh Riachtanach", "{{webUIName}} Backend Required": "{{webUIName}} Ceoldeireadh Riachtanach",
"*Prompt node ID(s) are required for image generation": "* Tá ID nód leid ag teastáil chun íomhá a ghiniúint", "*Prompt node ID(s) are required for image generation": "* Tá ID nód leid ag teastáil chun íomhá a ghiniúint",
@ -29,6 +30,7 @@
"Account Activation Pending": "Gníomhachtaithe Cuntas", "Account Activation Pending": "Gníomhachtaithe Cuntas",
"Accurate information": "Faisnéis chruinn", "Accurate information": "Faisnéis chruinn",
"Action": "Gníomh", "Action": "Gníomh",
"Action not found": "",
"Actions": "Gníomhartha", "Actions": "Gníomhartha",
"Activate": "Gníomhachtaigh", "Activate": "Gníomhachtaigh",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Gníomhachtaigh an t-ordú seo trí \"/{{COMMAND}}\" a chlóscríobh chun ionchur comhrá a dhéanamh.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Gníomhachtaigh an t-ordú seo trí \"/{{COMMAND}}\" a chlóscríobh chun ionchur comhrá a dhéanamh.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "Seinn Fuaim Fógra i gCónaí", "Always Play Notification Sound": "Seinn Fuaim Fógra i gCónaí",
"Amazing": "Iontach", "Amazing": "Iontach",
"an assistant": "cúntóir", "an assistant": "cúntóir",
"An error occurred while fetching the explanation": "",
"Analytics": "Anailísíocht", "Analytics": "Anailísíocht",
"Analyzed": "Anailísithe", "Analyzed": "Anailísithe",
"Analyzing...": "Ag déanamh anailíse...", "Analyzing...": "Ag déanamh anailíse...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Príomhshrianta Críochphointe API", "API Key Endpoint Restrictions": "Príomhshrianta Críochphointe API",
"API keys": "Eochracha API", "API keys": "Eochracha API",
"API Version": "Leagan API", "API Version": "Leagan API",
"API Version is required": "",
"Application DN": "Feidhmchlár DN", "Application DN": "Feidhmchlár DN",
"Application DN Password": "Feidhmchlár DN Pasfhocal", "Application DN Password": "Feidhmchlár DN Pasfhocal",
"applies to all users with the \"user\" role": "baineann sé le gach úsáideoir a bhfuil an ról \"úsáideoir\" aige", "applies to all users with the \"user\" role": "baineann sé le gach úsáideoir a bhfuil an ról \"úsáideoir\" aige",
@ -160,6 +164,7 @@
"Banners": "Meirgí", "Banners": "Meirgí",
"Base Model (From)": "Samhail Bunúsach (Ó)", "Base Model (From)": "Samhail Bunúsach (Ó)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "Luasaíonn Taisce an Liosta Bunsamhail de rochtain trí bhunmhúnlaí a fháil ach amháin ag am tosaithe nó ar shocruithe a shábháil-níos tapúla, ach b'fhéidir nach dtaispeánfar athruithe bonnsamhail le déanaí.", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "Luasaíonn Taisce an Liosta Bunsamhail de rochtain trí bhunmhúnlaí a fháil ach amháin ag am tosaithe nó ar shocruithe a shábháil-níos tapúla, ach b'fhéidir nach dtaispeánfar athruithe bonnsamhail le déanaí.",
"Bearer": "",
"before": "roimh", "before": "roimh",
"Being lazy": "A bheith leisciúil", "Being lazy": "A bheith leisciúil",
"Beta": "Béite", "Beta": "Béite",
@ -189,7 +194,9 @@
"Capture Audio": "Gabháil Fuaime", "Capture Audio": "Gabháil Fuaime",
"Certificate Path": "Cosán Teastais", "Certificate Path": "Cosán Teastais",
"Change Password": "Athraigh Pasfhocal", "Change Password": "Athraigh Pasfhocal",
"Channel deleted successfully": "",
"Channel Name": "Ainm Cainéal", "Channel Name": "Ainm Cainéal",
"Channel updated successfully": "",
"Channels": "Cainéil", "Channels": "Cainéil",
"Character": "Carachtar", "Character": "Carachtar",
"Character limit for autocomplete generation input": "Teorainn charachtair le haghaidh ionchur giniúna uathchríochnaithe", "Character limit for autocomplete generation input": "Teorainn charachtair le haghaidh ionchur giniúna uathchríochnaithe",
@ -238,6 +245,7 @@
"Close modal": "Dún modúl", "Close modal": "Dún modúl",
"Close settings modal": "Dún modúl na socruithe", "Close settings modal": "Dún modúl na socruithe",
"Close Sidebar": "Dún an Barra Taobh", "Close Sidebar": "Dún an Barra Taobh",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Bloc Cód", "Code Block": "Bloc Cód",
"Code execution": "Cód a fhorghníomhú", "Code execution": "Cód a fhorghníomhú",
"Code Execution": "Forghníomhú Cóid", "Code Execution": "Forghníomhú Cóid",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "Teastaíonn URL ComfyUI Base.", "ComfyUI Base URL is required.": "Teastaíonn URL ComfyUI Base.",
"ComfyUI Workflow": "Sreabhadh Oibre ComfyUI", "ComfyUI Workflow": "Sreabhadh Oibre ComfyUI",
"ComfyUI Workflow Nodes": "Nóid Sreabhadh Oibre ComfyUI", "ComfyUI Workflow Nodes": "Nóid Sreabhadh Oibre ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Ordú", "Command": "Ordú",
"Comment": "Trácht", "Comment": "Trácht",
"Completions": "Críochnaithe", "Completions": "Críochnaithe",
"Compress Images in Channels": "Comhbhrúigh Íomhánna i gCainéil", "Compress Images in Channels": "Comhbhrúigh Íomhánna i gCainéil",
"Concurrent Requests": "Iarrataí Comhthéime", "Concurrent Requests": "Iarrataí Comhthéime",
"Config imported successfully": "",
"Configure": "Cumraigh", "Configure": "Cumraigh",
"Confirm": "Deimhnigh", "Confirm": "Deimhnigh",
"Confirm Password": "Deimhnigh Pasfhocal", "Confirm Password": "Deimhnigh Pasfhocal",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Eochair API Marcóra Datalab ag teastáil.", "Datalab Marker API Key required.": "Eochair API Marcóra Datalab ag teastáil.",
"DD/MM/YYYY": "LL/MM/LLLL", "DD/MM/YYYY": "LL/MM/LLLL",
"December": "Nollaig", "December": "Nollaig",
"Deepgram": "",
"Default": "Réamhshocraithe", "Default": "Réamhshocraithe",
"Default (Open AI)": "Réamhshocraithe (Oscail AI)", "Default (Open AI)": "Réamhshocraithe (Oscail AI)",
"Default (SentenceTransformers)": "Réamhshocraithe (SentenceTransFormers)", "Default (SentenceTransformers)": "Réamhshocraithe (SentenceTransFormers)",
@ -377,6 +388,7 @@
"Direct Connections": "Naisc Dhíreacha", "Direct Connections": "Naisc Dhíreacha",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Ligeann Connections Direct d'úsáideoirí ceangal lena gcríochphointí API féin atá comhoiriúnach le OpenAI.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Ligeann Connections Direct d'úsáideoirí ceangal lena gcríochphointí API féin atá comhoiriúnach le OpenAI.",
"Direct Tool Servers": "Freastalaithe Uirlisí Díreacha", "Direct Tool Servers": "Freastalaithe Uirlisí Díreacha",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "Díchumasaigh Léirmhínitheoir Cód", "Disable Code Interpreter": "Díchumasaigh Léirmhínitheoir Cód",
"Disable Image Extraction": "Díchumasaigh Eastóscadh Íomhá", "Disable Image Extraction": "Díchumasaigh Eastóscadh Íomhá",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Díchumasaigh eastóscadh íomhánna ón PDF. Má tá Úsáid LLM cumasaithe, cuirfear fotheidil leis na híomhánna go huathoibríoch. Is é Bréag an réamhshocrú.", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Díchumasaigh eastóscadh íomhánna ón PDF. Má tá Úsáid LLM cumasaithe, cuirfear fotheidil leis na híomhánna go huathoibríoch. Is é Bréag an réamhshocrú.",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Cuir isteach péirí camóg-scartha \"comhartha:luach laofachta\" (mar shampla: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Cuir isteach péirí camóg-scartha \"comhartha:luach laofachta\" (mar shampla: 5432:100, 413:-100)",
"Enter Config in JSON format": "Cuir isteach Cumraíocht i bhformáid JSON", "Enter Config in JSON format": "Cuir isteach Cumraíocht i bhformáid JSON",
"Enter content for the pending user info overlay. Leave empty for default.": "Cuir isteach ábhar don fhorleagan faisnéise úsáideora atá ar feitheamh. Fág folamh don réamhshocrú.", "Enter content for the pending user info overlay. Leave empty for default.": "Cuir isteach ábhar don fhorleagan faisnéise úsáideora atá ar feitheamh. Fág folamh don réamhshocrú.",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "Cuir isteach URL Bonn Datalab Marker API", "Enter Datalab Marker API Base URL": "Cuir isteach URL Bonn Datalab Marker API",
"Enter Datalab Marker API Key": "Iontráil Eochair API Marcóra Datalab", "Enter Datalab Marker API Key": "Iontráil Eochair API Marcóra Datalab",
"Enter description": "Iontráil cur síos", "Enter description": "Iontráil cur síos",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Cuir isteach URL Github Raw", "Enter Github Raw URL": "Cuir isteach URL Github Raw",
"Enter Google PSE API Key": "Cuir isteach Eochair API Google PSE", "Enter Google PSE API Key": "Cuir isteach Eochair API Google PSE",
"Enter Google PSE Engine Id": "Cuir isteach ID Inneall Google PSE", "Enter Google PSE Engine Id": "Cuir isteach ID Inneall Google PSE",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Iontráil Méid Íomhá (m.sh. 512x512)", "Enter Image Size (e.g. 512x512)": "Iontráil Méid Íomhá (m.sh. 512x512)",
"Enter Jina API Key": "Cuir isteach Eochair API Jina", "Enter Jina API Key": "Cuir isteach Eochair API Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "Cuir isteach cumraíocht JSON (m.sh., {\"disable_links\": true})", "Enter JSON config (e.g., {\"disable_links\": true})": "Cuir isteach cumraíocht JSON (m.sh., {\"disable_links\": true})",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Cuir isteach Barr K Reranker", "Enter Top K Reranker": "Cuir isteach Barr K Reranker",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Iontráil URL (m.sh. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Iontráil URL (m.sh. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Iontráil URL (m.sh. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Iontráil URL (m.sh. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "Cuir isteach Pasfhocal Yacy", "Enter Yacy Password": "Cuir isteach Pasfhocal Yacy",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Cuir isteach URL Yacy (m.sh. http://yacy.example.com:8090)", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Cuir isteach URL Yacy (m.sh. http://yacy.example.com:8090)",
"Enter Yacy Username": "Cuir isteach Ainm Úsáideora Yacy", "Enter Yacy Username": "Cuir isteach Ainm Úsáideora Yacy",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Cuir isteach URL do webhook", "Enter your webhook URL": "Cuir isteach URL do webhook",
"Error": "Earráid", "Error": "Earráid",
"ERROR": "EARRÁID", "ERROR": "EARRÁID",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Earráid agus tú ag rochtain Google Drive: {{error}}", "Error accessing Google Drive: {{error}}": "Earráid agus tú ag rochtain Google Drive: {{error}}",
"Error accessing media devices.": "Earráid ag rochtain gléasanna meán.", "Error accessing media devices.": "Earráid ag rochtain gléasanna meán.",
"Error starting recording.": "Earráid ag tosú taifeadta.", "Error starting recording.": "Earráid ag tosú taifeadta.",
"Error unloading model: {{error}}": "Earráid ag díluchtú samhail: {{error}}", "Error unloading model: {{error}}": "Earráid ag díluchtú samhail: {{error}}",
"Error uploading file: {{error}}": "Earráid agus comhad á uaslódáil: {{error}}", "Error uploading file: {{error}}": "Earráid agus comhad á uaslódáil: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Meastóireachtaí", "Evaluations": "Meastóireachtaí",
"Everyone": "Gach duine", "Everyone": "Gach duine",
"Exa API Key": "Eochair Exa API", "Exa API Key": "Eochair Exa API",
@ -725,6 +744,7 @@
"H2": "H2", "H2": "H2",
"H3": "H3", "H3": "H3",
"Haptic Feedback": "Aiseolas Haptic", "Haptic Feedback": "Aiseolas Haptic",
"Height": "",
"Hello, {{name}}": "Dia duit, {{name}}", "Hello, {{name}}": "Dia duit, {{name}}",
"Help": "Cabhair", "Help": "Cabhair",
"Help us create the best community leaderboard by sharing your feedback history!": "Cabhraigh linn an clár ceannairí pobail is fearr a chruthú trí do stair aiseolais a roinnt!", "Help us create the best community leaderboard by sharing your feedback history!": "Cabhraigh linn an clár ceannairí pobail is fearr a chruthú trí do stair aiseolais a roinnt!",
@ -733,6 +753,7 @@
"Hide": "Folaigh", "Hide": "Folaigh",
"Hide from Sidebar": "Folaigh ón mBarra Taoibh", "Hide from Sidebar": "Folaigh ón mBarra Taoibh",
"Hide Model": "Folaigh an tSamhail", "Hide Model": "Folaigh an tSamhail",
"High": "",
"High Contrast Mode": "Mód Ardchodarsnachta", "High Contrast Mode": "Mód Ardchodarsnachta",
"Home": "Baile", "Home": "Baile",
"Host": "Óstach", "Host": "Óstach",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Instealladh an t-ábhar ar fad mar chomhthéacs do phróiseáil chuimsitheach, moltar é seo le haghaidh ceisteanna casta.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Instealladh an t-ábhar ar fad mar chomhthéacs do phróiseáil chuimsitheach, moltar é seo le haghaidh ceisteanna casta.",
"Input": "Ionchur", "Input": "Ionchur",
"Input commands": "Orduithe ionchuir", "Input commands": "Orduithe ionchuir",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Athróga Ionchuir", "Input Variables": "Athróga Ionchuir",
"Insert": "Cuir isteach", "Insert": "Cuir isteach",
"Insert Follow-Up Prompt to Input": "Cuir isteach leid leantach le hionchur", "Insert Follow-Up Prompt to Input": "Cuir isteach leid leantach le hionchur",
@ -789,6 +811,7 @@
"Invalid file content": "Ábhar comhaid neamhbhailí", "Invalid file content": "Ábhar comhaid neamhbhailí",
"Invalid file format.": "Formáid comhaid neamhbhailí.", "Invalid file format.": "Formáid comhaid neamhbhailí.",
"Invalid JSON file": "Comhad JSON neamhbhailí", "Invalid JSON file": "Comhad JSON neamhbhailí",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "Formáid JSON neamhbhailí i gCumraíocht Bhreise", "Invalid JSON format in Additional Config": "Formáid JSON neamhbhailí i gCumraíocht Bhreise",
"Invalid Tag": "Clib neamhbhailí", "Invalid Tag": "Clib neamhbhailí",
"is typing...": "ag clóscríobh...", "is typing...": "ag clóscríobh...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "Coinnigh Leideanna Leanúnacha i gComhrá", "Keep Follow-Up Prompts in Chat": "Coinnigh Leideanna Leanúnacha i gComhrá",
"Keep in Sidebar": "Coinnigh sa Bharra Taobh", "Keep in Sidebar": "Coinnigh sa Bharra Taobh",
"Key": "Eochair", "Key": "Eochair",
"Key is required": "",
"Keyboard shortcuts": "Aicearraí méarchlár", "Keyboard shortcuts": "Aicearraí méarchlár",
"Knowledge": "Eolas", "Knowledge": "Eolas",
"Knowledge Access": "Rochtain Eolais", "Knowledge Access": "Rochtain Eolais",
"Knowledge Base": "Bunachar Eolais", "Knowledge Base": "Bunachar Eolais",
"Knowledge created successfully.": "Eolas cruthaithe go rathúil.", "Knowledge created successfully.": "Eolas cruthaithe go rathúil.",
"Knowledge deleted successfully.": "D'éirigh leis an eolas a scriosadh.", "Knowledge deleted successfully.": "D'éirigh leis an eolas a scriosadh.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Roinnt Faisnéise Poiblí", "Knowledge Public Sharing": "Roinnt Faisnéise Poiblí",
"Knowledge reset successfully.": "D'éirigh le hathshocrú eolais.", "Knowledge reset successfully.": "D'éirigh le hathshocrú eolais.",
"Knowledge updated successfully": "D'éirigh leis an eolas a nuashonrú", "Knowledge updated successfully": "D'éirigh leis an eolas a nuashonrú",
@ -852,6 +878,7 @@
"Local Task Model": "Samhail Tasc Áitiúil", "Local Task Model": "Samhail Tasc Áitiúil",
"Location access not allowed": "Ní cheadaítear rochtain suímh", "Location access not allowed": "Ní cheadaítear rochtain suímh",
"Lost": "Cailleadh", "Lost": "Cailleadh",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Déanta ag OpenWebUI Community", "Made by Open WebUI Community": "Déanta ag OpenWebUI Community",
"Make password visible in the user interface": "Déan an focal faire le feiceáil sa chomhéadan úsáideora", "Make password visible in the user interface": "Déan an focal faire le feiceáil sa chomhéadan úsáideora",
@ -873,6 +900,7 @@
"Max Upload Size": "Méid Uaslódála Max", "Max Upload Size": "Méid Uaslódála Max",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Is féidir uasmhéid de 3 samhail a íoslódáil ag an am Bain triail as arís níos déanaí.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Is féidir uasmhéid de 3 samhail a íoslódáil ag an am Bain triail as arís níos déanaí.",
"May": "Bealtaine", "May": "Bealtaine",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Taispeánfar cuimhní atá inrochtana ag LLManna anseo.", "Memories accessible by LLMs will be shown here.": "Taispeánfar cuimhní atá inrochtana ag LLManna anseo.",
"Memory": "Cuimhne", "Memory": "Cuimhne",
"Memory added successfully": "Cuireadh cuimhne leis go", "Memory added successfully": "Cuireadh cuimhne leis go",
@ -908,6 +936,7 @@
"Model ID is required.": "Tá ID samhail ag teastáil.", "Model ID is required.": "Tá ID samhail ag teastáil.",
"Model IDs": "Aitheantas Samhail", "Model IDs": "Aitheantas Samhail",
"Model Name": "Ainm an tSamhail", "Model Name": "Ainm an tSamhail",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "Tá Ainm an tSamhail de dhíth.", "Model Name is required.": "Tá Ainm an tSamhail de dhíth.",
"Model not selected": "Níor roghnaíodh an tsamhail", "Model not selected": "Níor roghnaíodh an tsamhail",
"Model Params": "Paraiméadair Samhail", "Model Params": "Paraiméadair Samhail",
@ -926,6 +955,7 @@
"More Concise": "Níos Gonta", "More Concise": "Níos Gonta",
"More Options": "Tuilleadh Roghanna", "More Options": "Tuilleadh Roghanna",
"Name": "Ainm", "Name": "Ainm",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Cuir ainm ar do bhunachar eolais", "Name your knowledge base": "Cuir ainm ar do bhunachar eolais",
"Native": "Dúchasach", "Native": "Dúchasach",
"New Button": "Cnaipe Nua", "New Button": "Cnaipe Nua",
@ -960,7 +990,9 @@
"No search query generated": "Ní ghintear aon cheist cuardaigh", "No search query generated": "Ní ghintear aon cheist cuardaigh",
"No source available": "Níl aon fhoinse ar fáil", "No source available": "Níl aon fhoinse ar fáil",
"No users were found.": "Níor aimsíodh aon úsáideoirí.", "No users were found.": "Níor aimsíodh aon úsáideoirí.",
"No valves": "",
"No valves to update": "Gan comhlaí le nuashonrú", "No valves to update": "Gan comhlaí le nuashonrú",
"Node Ids": "",
"None": "Dada", "None": "Dada",
"Not factually correct": "Níl sé ceart go fírineach", "Not factually correct": "Níl sé ceart go fírineach",
"Not helpful": "Gan a bheith cabhrach", "Not helpful": "Gan a bheith cabhrach",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Scrollaigh ar Athrú Brainse", "Scroll On Branch Change": "Scrollaigh ar Athrú Brainse",
"Search": "Cuardaigh", "Search": "Cuardaigh",
"Search a model": "Cuardaigh samhail", "Search a model": "Cuardaigh samhail",
"Search all emojis": "",
"Search Base": "Bonn Cuardaigh", "Search Base": "Bonn Cuardaigh",
"Search Chats": "Cuardaigh Comhráite", "Search Chats": "Cuardaigh Comhráite",
"Search Collection": "Bailiúchán Cuardaigh", "Search Collection": "Bailiúchán Cuardaigh",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Féach readme.md le haghaidh treoracha", "See readme.md for instructions": "Féach readme.md le haghaidh treoracha",
"See what's new": "Féach cad atá nua", "See what's new": "Féach cad atá nua",
"Seed": "Síol", "Seed": "Síol",
"Select": "",
"Select a base model": "Roghnaigh samhail bhunúsach", "Select a base model": "Roghnaigh samhail bhunúsach",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "Roghnaigh comhrá le réamhamharc a fháil air", "Select a conversation to preview": "Roghnaigh comhrá le réamhamharc a fháil air",
"Select a engine": "Roghnaigh inneall", "Select a engine": "Roghnaigh inneall",
"Select a function": "Roghnaigh feidhm", "Select a function": "Roghnaigh feidhm",
"Select a group": "Roghnaigh grúpa", "Select a group": "Roghnaigh grúpa",
"Select a language": "",
"Select a mode": "",
"Select a model": "Roghnaigh samhail", "Select a model": "Roghnaigh samhail",
"Select a model (optional)": "",
"Select a pipeline": "Roghnaigh píblíne", "Select a pipeline": "Roghnaigh píblíne",
"Select a pipeline url": "Roghnaigh url píblíne", "Select a pipeline url": "Roghnaigh url píblíne",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Roghnaigh uirlis", "Select a tool": "Roghnaigh uirlis",
"Select a voice": "",
"Select an auth method": "Roghnaigh modh an údair", "Select an auth method": "Roghnaigh modh an údair",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Roghnaigh sampla Olama", "Select an Ollama instance": "Roghnaigh sampla Olama",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Roghnaigh Inneall", "Select Engine": "Roghnaigh Inneall",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Roghnaigh Eolais", "Select Knowledge": "Roghnaigh Eolais",
"Select only one model to call": "Roghnaigh samhail amháin le glaoch", "Select only one model to call": "Roghnaigh samhail amháin le glaoch",
"Selected model(s) do not support image inputs": "Ní thacaíonn an/na samhlacha roghnaithe le hionchuir íomhá", "Selected model(s) do not support image inputs": "Ní thacaíonn an/na samhlacha roghnaithe le hionchuir íomhá",
@ -1215,6 +1262,7 @@
"Serply API Key": "Eochair API Serply", "Serply API Key": "Eochair API Serply",
"Serpstack API Key": "Eochair API Serpstack", "Serpstack API Key": "Eochair API Serpstack",
"Server connection verified": "Ceangal freastalaí fíoraithe", "Server connection verified": "Ceangal freastalaí fíoraithe",
"Session": "",
"Set as default": "Socraigh mar réamhshocraithe", "Set as default": "Socraigh mar réamhshocraithe",
"Set CFG Scale": "Socraigh Scála CFG", "Set CFG Scale": "Socraigh Scála CFG",
"Set Default Model": "Socraigh an tSamhail Réamhshocraithe", "Set Default Model": "Socraigh an tSamhail Réamhshocraithe",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "Seachain an Taisce", "Skip Cache": "Seachain an Taisce",
"Skip the cache and re-run the inference. Defaults to False.": "Seachain an taisce agus athrith an tátal. Réamhshocrú Bréagach.", "Skip the cache and re-run the inference. Defaults to False.": "Seachain an taisce agus athrith an tátal. Réamhshocrú Bréagach.",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "Sougou Search API sID", "Sougou Search API sID": "Sougou Search API sID",
"Sougou Search API SK": "Sougou Search API SK", "Sougou Search API SK": "Sougou Search API SK",
"Source": "Foinse", "Source": "Foinse",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Easpórtáil PDF Stílithe", "Stylized PDF Export": "Easpórtáil PDF Stílithe",
"Subtitle (e.g. about the Roman Empire)": "Fotheideal (m.sh. faoin Impireacht Rómhánach)", "Subtitle (e.g. about the Roman Empire)": "Fotheideal (m.sh. faoin Impireacht Rómhánach)",
"Success": "Rath", "Success": "Rath",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Nuashonraithe go rathúil.", "Successfully updated.": "Nuashonraithe go rathúil.",
"Suggest a change": "Mol athrú", "Suggest a change": "Mol athrú",
"Suggested": "Molta", "Suggested": "Molta",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Uasmhéid an chomhaid i MB. Má sháraíonn méid an chomhaid an teorainn seo, ní uaslódófar an comhad.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Uasmhéid an chomhaid i MB. Má sháraíonn méid an chomhaid an teorainn seo, ní uaslódófar an comhad.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "An líon uasta na gcomhaid is féidir a úsáid ag an am céanna i gcomhrá. Má sháraíonn líon na gcomhaid an teorainn seo, ní uaslódófar na comhaid.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "An líon uasta na gcomhaid is féidir a úsáid ag an am céanna i gcomhrá. Má sháraíonn líon na gcomhaid an teorainn seo, ní uaslódófar na comhaid.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "An fhormáid aschuir don téacs. Is féidir é a úsáid mar 'json', 'markdown', nó 'html'. Is é 'markdown' an réamhshocrú.", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "An fhormáid aschuir don téacs. Is féidir é a úsáid mar 'json', 'markdown', nó 'html'. Is é 'markdown' an réamhshocrú.",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Ba chóir go mbeadh an scór ina luach idir 0.0 (0%) agus 1.0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Ba chóir go mbeadh an scór ina luach idir 0.0 (0%) agus 1.0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "Méid an bhloic delta srutha don tsamhail. Má mhéadaítear an smután, freagróidh an tsamhail le píosaí níos mó téacs ar an toirt.", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "Méid an bhloic delta srutha don tsamhail. Má mhéadaítear an smután, freagróidh an tsamhail le píosaí níos mó téacs ar an toirt.",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Teocht an tsamhail. Déanfaidh méadú ar an teocht an tsamhail a fhreagairt níos cruthaithí.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Teocht an tsamhail. Déanfaidh méadú ar an teocht an tsamhail a fhreagairt níos cruthaithí.",
@ -1439,7 +1495,9 @@
"Upload Files": "Uaslódáil Comhaid", "Upload Files": "Uaslódáil Comhaid",
"Upload Pipeline": "Uaslódáil píblíne", "Upload Pipeline": "Uaslódáil píblíne",
"Upload Progress": "Dul Chun Cinn an Uaslódála", "Upload Progress": "Dul Chun Cinn an Uaslódála",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "Mód URL", "URL Mode": "Mód URL",
"Usage": "Úsáid", "Usage": "Úsáid",
"Use '#' in the prompt input to load and include your knowledge.": "Úsáid '#' san ionchur leid chun do chuid eolais a lódáil agus a chur san áireamh.", "Use '#' in the prompt input to load and include your knowledge.": "Úsáid '#' san ionchur leid chun do chuid eolais a lódáil agus a chur san áireamh.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "Ag Úsáid Aisghabhála Dírithe", "Using Focused Retrieval": "Ag Úsáid Aisghabhála Dírithe",
"Using the default arena model with all models. Click the plus button to add custom models.": "Ag baint úsáide as an tsamhail réimse réamhshocraithe le gach samhail. Cliceáil an cnaipe móide chun samhlacha saincheaptha a chur leis.", "Using the default arena model with all models. Click the plus button to add custom models.": "Ag baint úsáide as an tsamhail réimse réamhshocraithe le gach samhail. Cliceáil an cnaipe móide chun samhlacha saincheaptha a chur leis.",
"Valid time units:": "Aonaid ama bailí:", "Valid time units:": "Aonaid ama bailí:",
"Validate certificate": "",
"Valves": "Comhlaí", "Valves": "Comhlaí",
"Valves updated": "Comhlaí dáta", "Valves updated": "Comhlaí dáta",
"Valves updated successfully": "Comhlaí nuashonraíodh", "Valves updated successfully": "Comhlaí nuashonraíodh",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Áitiúil)", "Whisper (Local)": "Whisper (Áitiúil)",
"Why?": "Cén fáth?", "Why?": "Cén fáth?",
"Widescreen Mode": "Mód Leathanscáileán", "Widescreen Mode": "Mód Leathanscáileán",
"Width": "",
"Won": "Bhuaigh", "Won": "Bhuaigh",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Oibríonn sé le barr-k. Beidh téacs níos éagsúla mar thoradh ar luach níos airde (m.sh., 0.95), agus ginfidh luach níos ísle (m.sh., 0.5) téacs níos dírithe agus níos coimeádaí.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Oibríonn sé le barr-k. Beidh téacs níos éagsúla mar thoradh ar luach níos airde (m.sh., 0.95), agus ginfidh luach níos ísle (m.sh., 0.5) téacs níos dírithe agus níos coimeádaí.",
"Workspace": "Spás oibre", "Workspace": "Spás oibre",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} righe nascoste", "{{COUNT}} hidden lines": "{{COUNT}} righe nascoste",
"{{COUNT}} Replies": "{{COUNT}} Risposte", "{{COUNT}} Replies": "{{COUNT}} Risposte",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} Chat", "{{user}}'s Chats": "{{user}} Chat",
"{{webUIName}} Backend Required": "{{webUIName}} Richiesta Backend", "{{webUIName}} Backend Required": "{{webUIName}} Richiesta Backend",
"*Prompt node ID(s) are required for image generation": "*ID nodo prompt sono necessari per la generazione di immagini", "*Prompt node ID(s) are required for image generation": "*ID nodo prompt sono necessari per la generazione di immagini",
@ -29,6 +30,7 @@
"Account Activation Pending": "Account in attesa di attivazione", "Account Activation Pending": "Account in attesa di attivazione",
"Accurate information": "Informazioni accurate", "Accurate information": "Informazioni accurate",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Azioni", "Actions": "Azioni",
"Activate": "Attiva", "Activate": "Attiva",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Attiva questo comando digitando \"/{{COMMAND}}\" nell'input della chat.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Attiva questo comando digitando \"/{{COMMAND}}\" nell'input della chat.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "Riproduci sempre il suono di notifica", "Always Play Notification Sound": "Riproduci sempre il suono di notifica",
"Amazing": "Fantastico", "Amazing": "Fantastico",
"an assistant": "un assistente", "an assistant": "un assistente",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Analizzato", "Analyzed": "Analizzato",
"Analyzing...": "Analisi in corso...", "Analyzing...": "Analisi in corso...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Restrizioni Endpoint Chiave API", "API Key Endpoint Restrictions": "Restrizioni Endpoint Chiave API",
"API keys": "Chiavi API", "API keys": "Chiavi API",
"API Version": "Versione API", "API Version": "Versione API",
"API Version is required": "",
"Application DN": "DN dell'applicazione", "Application DN": "DN dell'applicazione",
"Application DN Password": "Password DN dell'applicazione", "Application DN Password": "Password DN dell'applicazione",
"applies to all users with the \"user\" role": "applica a tutti gli utenti con il ruolo \"utente\"", "applies to all users with the \"user\" role": "applica a tutti gli utenti con il ruolo \"utente\"",
@ -160,6 +164,7 @@
"Banners": "Banner", "Banners": "Banner",
"Base Model (From)": "Modello base (da)", "Base Model (From)": "Modello base (da)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "prima", "before": "prima",
"Being lazy": "Faccio il pigro", "Being lazy": "Faccio il pigro",
"Beta": "Beta", "Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Cattura audio", "Capture Audio": "Cattura audio",
"Certificate Path": "Percorso certificato", "Certificate Path": "Percorso certificato",
"Change Password": "Cambia password", "Change Password": "Cambia password",
"Channel deleted successfully": "",
"Channel Name": "Nome canale", "Channel Name": "Nome canale",
"Channel updated successfully": "",
"Channels": "Canali", "Channels": "Canali",
"Character": "Carattere", "Character": "Carattere",
"Character limit for autocomplete generation input": "Limite di caratteri per l'input di generazione dell'autocompletamento", "Character limit for autocomplete generation input": "Limite di caratteri per l'input di generazione dell'autocompletamento",
@ -238,6 +245,7 @@
"Close modal": "Chiudi modale", "Close modal": "Chiudi modale",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Esecuzione codice", "Code execution": "Esecuzione codice",
"Code Execution": "Esecuzione codice", "Code Execution": "Esecuzione codice",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "L'URL base ComfyUI è obbligatorio.", "ComfyUI Base URL is required.": "L'URL base ComfyUI è obbligatorio.",
"ComfyUI Workflow": "Flusso di lavoro ComfyUI", "ComfyUI Workflow": "Flusso di lavoro ComfyUI",
"ComfyUI Workflow Nodes": "Nodi flusso di lavoro ComfyUI", "ComfyUI Workflow Nodes": "Nodi flusso di lavoro ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Comando", "Command": "Comando",
"Comment": "", "Comment": "",
"Completions": "Completamenti", "Completions": "Completamenti",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Richieste simultanee", "Concurrent Requests": "Richieste simultanee",
"Config imported successfully": "",
"Configure": "Configura", "Configure": "Configura",
"Confirm": "Conferma", "Confirm": "Conferma",
"Confirm Password": "Conferma password", "Confirm Password": "Conferma password",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Chiave Datalab Marker API necessaria.", "Datalab Marker API Key required.": "Chiave Datalab Marker API necessaria.",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Dicembre", "December": "Dicembre",
"Deepgram": "",
"Default": "Predefinito", "Default": "Predefinito",
"Default (Open AI)": "Predefinito (Open AI)", "Default (Open AI)": "Predefinito (Open AI)",
"Default (SentenceTransformers)": "Predefinito (SentenceTransformers)", "Default (SentenceTransformers)": "Predefinito (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Connessioni Dirette", "Direct Connections": "Connessioni Dirette",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Le Connessioni Dirette consentono agli utenti di connettersi ai propri endpoint API compatibili con OpenAI.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Le Connessioni Dirette consentono agli utenti di connettersi ai propri endpoint API compatibili con OpenAI.",
"Direct Tool Servers": "Strimentu Server Diretti", "Direct Tool Servers": "Strimentu Server Diretti",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "Disattiva l'estrazione immagini", "Disable Image Extraction": "Disattiva l'estrazione immagini",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Disattiva l'estrazione immagini dai PDF. Se LLM è attivo le immagini saranno didascalizzate. Predefinito a Falso.", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Disattiva l'estrazione immagini dai PDF. Se LLM è attivo le immagini saranno didascalizzate. Predefinito a Falso.",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Inserisci coppie \"token:valore_bias\" separate da virgole (esempio: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Inserisci coppie \"token:valore_bias\" separate da virgole (esempio: 5432:100, 413:-100)",
"Enter Config in JSON format": "Inserisci la configurazione nel formato JSON", "Enter Config in JSON format": "Inserisci la configurazione nel formato JSON",
"Enter content for the pending user info overlay. Leave empty for default.": "Inserisci contenuto per l'overlay di info per utenti in attesa. Lascia vuoto per predefinito.", "Enter content for the pending user info overlay. Leave empty for default.": "Inserisci contenuto per l'overlay di info per utenti in attesa. Lascia vuoto per predefinito.",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "Inserisci la chiave Datalab Marker API", "Enter Datalab Marker API Key": "Inserisci la chiave Datalab Marker API",
"Enter description": "Inserisci descrizione", "Enter description": "Inserisci descrizione",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Inserisci URL Grezzo di Github", "Enter Github Raw URL": "Inserisci URL Grezzo di Github",
"Enter Google PSE API Key": "Inserisci Chiave API per Google PSE", "Enter Google PSE API Key": "Inserisci Chiave API per Google PSE",
"Enter Google PSE Engine Id": "Inserisci Engine Id per Google PSE", "Enter Google PSE Engine Id": "Inserisci Engine Id per Google PSE",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Inserisci Dimensione Immagine (ad esempio 512x512)", "Enter Image Size (e.g. 512x512)": "Inserisci Dimensione Immagine (ad esempio 512x512)",
"Enter Jina API Key": "Inserisci Chiave API Jina", "Enter Jina API Key": "Inserisci Chiave API Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Inserisci Top K Reranker", "Enter Top K Reranker": "Inserisci Top K Reranker",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Inserisci URL (ad esempio http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Inserisci URL (ad esempio http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Inserisci URL (ad esempio http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Inserisci URL (ad esempio http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "Inserisci Password Yacy", "Enter Yacy Password": "Inserisci Password Yacy",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Inserisci l'URL Yacy (ad esempio http://yacy.example.com:8090)", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Inserisci l'URL Yacy (ad esempio http://yacy.example.com:8090)",
"Enter Yacy Username": "Inserisci Nome Utente Yacy", "Enter Yacy Username": "Inserisci Nome Utente Yacy",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Inserisci l'URL del tuo webhook", "Enter your webhook URL": "Inserisci l'URL del tuo webhook",
"Error": "Errore", "Error": "Errore",
"ERROR": "ERRORE", "ERROR": "ERRORE",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Errore durante l'accesso a Google Drive: {{error}}", "Error accessing Google Drive: {{error}}": "Errore durante l'accesso a Google Drive: {{error}}",
"Error accessing media devices.": "Errore durante l'accesso ai dispositivi multimediali.", "Error accessing media devices.": "Errore durante l'accesso ai dispositivi multimediali.",
"Error starting recording.": "Errore durante l'avvio della registrazione.", "Error starting recording.": "Errore durante l'avvio della registrazione.",
"Error unloading model: {{error}}": "Errore durante lo scaricamento della memoria del modello: {{error}}", "Error unloading model: {{error}}": "Errore durante lo scaricamento della memoria del modello: {{error}}",
"Error uploading file: {{error}}": "Errore durante il caricamento del file: {{error}}", "Error uploading file: {{error}}": "Errore durante il caricamento del file: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Valutazioni", "Evaluations": "Valutazioni",
"Everyone": "", "Everyone": "",
"Exa API Key": "Chiave API Exa", "Exa API Key": "Chiave API Exa",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Feedback Aptico", "Haptic Feedback": "Feedback Aptico",
"Height": "",
"Hello, {{name}}": "Ciao, {{name}}", "Hello, {{name}}": "Ciao, {{name}}",
"Help": "Aiuto", "Help": "Aiuto",
"Help us create the best community leaderboard by sharing your feedback history!": "Aiutaci a creare la migliore classifica della community condividendo la tua cronologia feedback!", "Help us create the best community leaderboard by sharing your feedback history!": "Aiutaci a creare la migliore classifica della community condividendo la tua cronologia feedback!",
@ -733,6 +753,7 @@
"Hide": "Nascondi", "Hide": "Nascondi",
"Hide from Sidebar": "Nascosta dalla barra laterale", "Hide from Sidebar": "Nascosta dalla barra laterale",
"Hide Model": "Nascondi Modello", "Hide Model": "Nascondi Modello",
"High": "",
"High Contrast Mode": "Modalità Alto Contrasto", "High Contrast Mode": "Modalità Alto Contrasto",
"Home": "Home", "Home": "Home",
"Host": "Host", "Host": "Host",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Inietta l'intero contenuto come contesto per un'elaborazione completa, questo è consigliato per query complesse.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Inietta l'intero contenuto come contesto per un'elaborazione completa, questo è consigliato per query complesse.",
"Input": "", "Input": "",
"Input commands": "Comandi di input", "Input commands": "Comandi di input",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "Contenuto del file non valido", "Invalid file content": "Contenuto del file non valido",
"Invalid file format.": "Formato file non valido.", "Invalid file format.": "Formato file non valido.",
"Invalid JSON file": "File JSOn non valido", "Invalid JSON file": "File JSOn non valido",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Tag non valido", "Invalid Tag": "Tag non valido",
"is typing...": "sta digitando...", "is typing...": "sta digitando...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "Mantieni nella barra laterale", "Keep in Sidebar": "Mantieni nella barra laterale",
"Key": "Chiave", "Key": "Chiave",
"Key is required": "",
"Keyboard shortcuts": "Scorciatoie da tastiera", "Keyboard shortcuts": "Scorciatoie da tastiera",
"Knowledge": "Conoscenza", "Knowledge": "Conoscenza",
"Knowledge Access": "Accesso alla conoscenza", "Knowledge Access": "Accesso alla conoscenza",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Conoscenza creata con successo.", "Knowledge created successfully.": "Conoscenza creata con successo.",
"Knowledge deleted successfully.": "Conoscenza eliminata con successo.", "Knowledge deleted successfully.": "Conoscenza eliminata con successo.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Conoscenza condivisione pubblica", "Knowledge Public Sharing": "Conoscenza condivisione pubblica",
"Knowledge reset successfully.": "Conoscenza ripristinata con successo.", "Knowledge reset successfully.": "Conoscenza ripristinata con successo.",
"Knowledge updated successfully": "Conoscenza aggiornata con successo", "Knowledge updated successfully": "Conoscenza aggiornata con successo",
@ -852,6 +878,7 @@
"Local Task Model": "Modello Task locale", "Local Task Model": "Modello Task locale",
"Location access not allowed": "Accesso alla posizione non consentito", "Location access not allowed": "Accesso alla posizione non consentito",
"Lost": "Perso", "Lost": "Perso",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Realizzato dalla Comunità Open WebUI", "Made by Open WebUI Community": "Realizzato dalla Comunità Open WebUI",
"Make password visible in the user interface": "Rendi la password visibile nella interfaccia utente", "Make password visible in the user interface": "Rendi la password visibile nella interfaccia utente",
@ -873,6 +900,7 @@
"Max Upload Size": "Dimensione massima di caricamento", "Max Upload Size": "Dimensione massima di caricamento",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "È possibile scaricare un massimo di 3 modelli contemporaneamente. Riprova più tardi.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "È possibile scaricare un massimo di 3 modelli contemporaneamente. Riprova più tardi.",
"May": "Maggio", "May": "Maggio",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "I memori accessibili ai LLM saranno mostrati qui.", "Memories accessible by LLMs will be shown here.": "I memori accessibili ai LLM saranno mostrati qui.",
"Memory": "Memoria", "Memory": "Memoria",
"Memory added successfully": "Memoria aggiunta con successo", "Memory added successfully": "Memoria aggiunta con successo",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "ID modello", "Model IDs": "ID modello",
"Model Name": "Nome modello", "Model Name": "Nome modello",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Modello non selezionato", "Model not selected": "Modello non selezionato",
"Model Params": "Parametri del modello", "Model Params": "Parametri del modello",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Nome", "Name": "Nome",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Dai un nome alla tua base di conoscenza", "Name your knowledge base": "Dai un nome alla tua base di conoscenza",
"Native": "Nativo", "Native": "Nativo",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Nessuna query di ricerca generata", "No search query generated": "Nessuna query di ricerca generata",
"No source available": "Nessuna fonte disponibile", "No source available": "Nessuna fonte disponibile",
"No users were found.": "Nessun utente trovato.", "No users were found.": "Nessun utente trovato.",
"No valves": "",
"No valves to update": "Nessuna valvola da aggiornare", "No valves to update": "Nessuna valvola da aggiornare",
"Node Ids": "",
"None": "Nessuno", "None": "Nessuno",
"Not factually correct": "Non corretto dal punto di vista fattuale", "Not factually correct": "Non corretto dal punto di vista fattuale",
"Not helpful": "Non utile", "Not helpful": "Non utile",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Scorri al cambio di branch", "Scroll On Branch Change": "Scorri al cambio di branch",
"Search": "Cerca", "Search": "Cerca",
"Search a model": "Cerca un modello", "Search a model": "Cerca un modello",
"Search all emojis": "",
"Search Base": "Cerca base", "Search Base": "Cerca base",
"Search Chats": "Cerca nelle chat", "Search Chats": "Cerca nelle chat",
"Search Collection": "Cerca collezione", "Search Collection": "Cerca collezione",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Vedi readme.md per le istruzioni", "See readme.md for instructions": "Vedi readme.md per le istruzioni",
"See what's new": "Guarda le novità", "See what's new": "Guarda le novità",
"Seed": "Seme", "Seed": "Seme",
"Select": "",
"Select a base model": "Selezionare un modello di base", "Select a base model": "Selezionare un modello di base",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Seleziona un motore", "Select a engine": "Seleziona un motore",
"Select a function": "Seleziona una funzione", "Select a function": "Seleziona una funzione",
"Select a group": "Seleziona un gruppo", "Select a group": "Seleziona un gruppo",
"Select a language": "",
"Select a mode": "",
"Select a model": "Seleziona un modello", "Select a model": "Seleziona un modello",
"Select a model (optional)": "",
"Select a pipeline": "Selezionare una pipeline", "Select a pipeline": "Selezionare una pipeline",
"Select a pipeline url": "Selezionare l'URL di una pipeline", "Select a pipeline url": "Selezionare l'URL di una pipeline",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Seleziona uno strumento", "Select a tool": "Seleziona uno strumento",
"Select a voice": "",
"Select an auth method": "Seleziona un metodo di autenticazione", "Select an auth method": "Seleziona un metodo di autenticazione",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Seleziona un'istanza Ollama", "Select an Ollama instance": "Seleziona un'istanza Ollama",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Seleziona motore", "Select Engine": "Seleziona motore",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Seleziona conoscenza", "Select Knowledge": "Seleziona conoscenza",
"Select only one model to call": "Seleziona solo un modello da chiamare", "Select only one model to call": "Seleziona solo un modello da chiamare",
"Selected model(s) do not support image inputs": "I modelli selezionati non supportano l'input di immagini", "Selected model(s) do not support image inputs": "I modelli selezionati non supportano l'input di immagini",
@ -1215,6 +1262,7 @@
"Serply API Key": "Chiave API Serply", "Serply API Key": "Chiave API Serply",
"Serpstack API Key": "Chiave API Serpstack", "Serpstack API Key": "Chiave API Serpstack",
"Server connection verified": "Connessione al server verificata", "Server connection verified": "Connessione al server verificata",
"Session": "",
"Set as default": "Imposta come predefinito", "Set as default": "Imposta come predefinito",
"Set CFG Scale": "Imposta scala CFG", "Set CFG Scale": "Imposta scala CFG",
"Set Default Model": "Imposta modello predefinito", "Set Default Model": "Imposta modello predefinito",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "Salta cache", "Skip Cache": "Salta cache",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "sID per Songou Search API", "Sougou Search API sID": "sID per Songou Search API",
"Sougou Search API SK": "SK per Songou Search API", "Sougou Search API SK": "SK per Songou Search API",
"Source": "Fonte", "Source": "Fonte",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Esportazione PDF Stilizzata", "Stylized PDF Export": "Esportazione PDF Stilizzata",
"Subtitle (e.g. about the Roman Empire)": "Sottotitolo (ad esempio sull'Impero Romano)", "Subtitle (e.g. about the Roman Empire)": "Sottotitolo (ad esempio sull'Impero Romano)",
"Success": "Successo", "Success": "Successo",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Aggiornato con successo.", "Successfully updated.": "Aggiornato con successo.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Suggerito", "Suggested": "Suggerito",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "La dimensione massima del file in MB. Se la dimensione del file supera questo limite, il file non verrà caricato.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "La dimensione massima del file in MB. Se la dimensione del file supera questo limite, il file non verrà caricato.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "La dimensione massima del numero di file che possono essere utilizzati contemporaneamente nella chat. Se il numero di file supera questo limite, i file non verranno caricati.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "La dimensione massima del numero di file che possono essere utilizzati contemporaneamente nella chat. Se il numero di file supera questo limite, i file non verranno caricati.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Il formato di output per il testo. Può essere 'json', 'markdown', o 'html'. Predefinito 'markdown'.", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Il formato di output per il testo. Può essere 'json', 'markdown', o 'html'. Predefinito 'markdown'.",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Il punteggio dovrebbe essere un valore compreso tra 0.0 (0%) e 1.0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Il punteggio dovrebbe essere un valore compreso tra 0.0 (0%) e 1.0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "La temperatura del modello. Aumentare la temperatura farà sì che il modello risponda in modo più creativo.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "La temperatura del modello. Aumentare la temperatura farà sì che il modello risponda in modo più creativo.",
@ -1439,7 +1495,9 @@
"Upload Files": "Carica File", "Upload Files": "Carica File",
"Upload Pipeline": "Carica Pipeline", "Upload Pipeline": "Carica Pipeline",
"Upload Progress": "Avanzamento Caricamento", "Upload Progress": "Avanzamento Caricamento",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "Modalità URL", "URL Mode": "Modalità URL",
"Usage": "Utilizzo", "Usage": "Utilizzo",
"Use '#' in the prompt input to load and include your knowledge.": "Usa '#' nell'input del prompt per caricare e includere la tua conoscenza.", "Use '#' in the prompt input to load and include your knowledge.": "Usa '#' nell'input del prompt per caricare e includere la tua conoscenza.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Utilizzando il modello di arena predefinito con tutti i modelli. Fai clic sul pulsante più per aggiungere modelli personalizzati.", "Using the default arena model with all models. Click the plus button to add custom models.": "Utilizzando il modello di arena predefinito con tutti i modelli. Fai clic sul pulsante più per aggiungere modelli personalizzati.",
"Valid time units:": "Unità di tempo valide:", "Valid time units:": "Unità di tempo valide:",
"Validate certificate": "",
"Valves": "Valvole", "Valves": "Valvole",
"Valves updated": "Valvole aggiornate", "Valves updated": "Valvole aggiornate",
"Valves updated successfully": "Valvole aggiornate con successo", "Valves updated successfully": "Valvole aggiornate con successo",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Locale)", "Whisper (Local)": "Whisper (Locale)",
"Why?": "Perché?", "Why?": "Perché?",
"Widescreen Mode": "Modalità widescreen", "Widescreen Mode": "Modalità widescreen",
"Width": "",
"Won": "Vinto", "Won": "Vinto",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Lavora insieme a top-k. Un valore più alto (ad esempio, 0,95) porterà a un testo più vario, mentre un valore più basso (ad esempio, 0,5) genererà un testo più focalizzato e conservativo.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Lavora insieme a top-k. Un valore più alto (ad esempio, 0,95) porterà a un testo più vario, mentre un valore più basso (ad esempio, 0,5) genererà un testo più focalizzato e conservativo.",
"Workspace": "Spazio di lavoro", "Workspace": "Spazio di lavoro",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} 非表示行", "{{COUNT}} hidden lines": "{{COUNT}} 非表示行",
"{{COUNT}} Replies": "{{COUNT}} 返信", "{{COUNT}} Replies": "{{COUNT}} 返信",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} のチャット", "{{user}}'s Chats": "{{user}} のチャット",
"{{webUIName}} Backend Required": "{{webUIName}} バックエンドが必要です", "{{webUIName}} Backend Required": "{{webUIName}} バックエンドが必要です",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "アカウント承認待ち", "Account Activation Pending": "アカウント承認待ち",
"Accurate information": "情報が正確", "Accurate information": "情報が正確",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "アクション", "Actions": "アクション",
"Activate": "アクティブ化", "Activate": "アクティブ化",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "このコマンド \"/{{COMMAND}}\" をチャットに入力してアクティブ化します", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "このコマンド \"/{{COMMAND}}\" をチャットに入力してアクティブ化します",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "常に通知音を再生", "Always Play Notification Sound": "常に通知音を再生",
"Amazing": "", "Amazing": "",
"an assistant": "アシスタント", "an assistant": "アシスタント",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "分析された", "Analyzed": "分析された",
"Analyzing...": "分析中...", "Analyzing...": "分析中...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API キーのエンドポイント制限", "API Key Endpoint Restrictions": "API キーのエンドポイント制限",
"API keys": "API キー", "API keys": "API キー",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "バナー", "Banners": "バナー",
"Base Model (From)": "ベースモデル (From)", "Base Model (From)": "ベースモデル (From)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "より前", "before": "より前",
"Being lazy": "怠惰な", "Being lazy": "怠惰な",
"Beta": "ベータ", "Beta": "ベータ",
@ -189,7 +194,9 @@
"Capture Audio": "音声のキャプチャ", "Capture Audio": "音声のキャプチャ",
"Certificate Path": "証明書パス", "Certificate Path": "証明書パス",
"Change Password": "パスワードを変更", "Change Password": "パスワードを変更",
"Channel deleted successfully": "",
"Channel Name": "チャンネル名", "Channel Name": "チャンネル名",
"Channel updated successfully": "",
"Channels": "チャンネル", "Channels": "チャンネル",
"Character": "文字", "Character": "文字",
"Character limit for autocomplete generation input": "オートコンプリート生成入力の文字数の制限", "Character limit for autocomplete generation input": "オートコンプリート生成入力の文字数の制限",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "コードの実行", "Code execution": "コードの実行",
"Code Execution": "コードの実行", "Code Execution": "コードの実行",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUIベースURLが必要です。", "ComfyUI Base URL is required.": "ComfyUIベースURLが必要です。",
"ComfyUI Workflow": "ComfyUIワークフロー", "ComfyUI Workflow": "ComfyUIワークフロー",
"ComfyUI Workflow Nodes": "ComfyUIワークフローード", "ComfyUI Workflow Nodes": "ComfyUIワークフローード",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "コマンド", "Command": "コマンド",
"Comment": "", "Comment": "",
"Completions": "コンプリート", "Completions": "コンプリート",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "同時リクエスト", "Concurrent Requests": "同時リクエスト",
"Config imported successfully": "",
"Configure": "設定", "Configure": "設定",
"Confirm": "確認", "Confirm": "確認",
"Confirm Password": "パスワードの確認", "Confirm Password": "パスワードの確認",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "12月", "December": "12月",
"Deepgram": "",
"Default": "デフォルト", "Default": "デフォルト",
"Default (Open AI)": "デフォルト(OpenAI)", "Default (Open AI)": "デフォルト(OpenAI)",
"Default (SentenceTransformers)": "デフォルト (SentenceTransformers)", "Default (SentenceTransformers)": "デフォルト (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "ダイレクトコネクション", "Direct Connections": "ダイレクトコネクション",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "ダイレクトコネクションは、ユーザーが独自のOpenAI互換APIエンドポイントに接続できるようにします。", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "ダイレクトコネクションは、ユーザーが独自のOpenAI互換APIエンドポイントに接続できるようにします。",
"Direct Tool Servers": "ダイレクトツールサーバー", "Direct Tool Servers": "ダイレクトツールサーバー",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "カンマ区切りの \"token:bias_value\" ペアを入力してください (例: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "カンマ区切りの \"token:bias_value\" ペアを入力してください (例: 5432:100, 413:-100)",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "保留中のユーザー情報オーバーレイの内容を入力してください。デフォルトのままにする場合は空のままにします。", "Enter content for the pending user info overlay. Leave empty for default.": "保留中のユーザー情報オーバーレイの内容を入力してください。デフォルトのままにする場合は空のままにします。",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "説明を入力", "Enter description": "説明を入力",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Github Raw URLを入力", "Enter Github Raw URL": "Github Raw URLを入力",
"Enter Google PSE API Key": "Google PSE APIキーの入力", "Enter Google PSE API Key": "Google PSE APIキーの入力",
"Enter Google PSE Engine Id": "Google PSE エンジン ID を入力します。", "Enter Google PSE Engine Id": "Google PSE エンジン ID を入力します。",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "画像サイズを入力してください (例: 512x512)", "Enter Image Size (e.g. 512x512)": "画像サイズを入力してください (例: 512x512)",
"Enter Jina API Key": "Jina APIキーを入力", "Enter Jina API Key": "Jina APIキーを入力",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "トップ K Rerankerを入力してください。", "Enter Top K Reranker": "トップ K Rerankerを入力してください。",
"Enter URL (e.g. http://127.0.0.1:7860/)": "URL を入力してください (例: http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "URL を入力してください (例: http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "URL を入力してください (例: http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "URL を入力してください (例: http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "Yacyパスワードを入力してください。", "Enter Yacy Password": "Yacyパスワードを入力してください。",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Yacy URLを入力してください (例: http://yacy.example.com:8090)", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Yacy URLを入力してください (例: http://yacy.example.com:8090)",
"Enter Yacy Username": "Yacyユーザー名を入力してください。", "Enter Yacy Username": "Yacyユーザー名を入力してください。",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Webhook URLを入力してください", "Enter your webhook URL": "Webhook URLを入力してください",
"Error": "エラー", "Error": "エラー",
"ERROR": "エラー", "ERROR": "エラー",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Google Driveへのアクセスに失敗しました: {{error}}", "Error accessing Google Drive: {{error}}": "Google Driveへのアクセスに失敗しました: {{error}}",
"Error accessing media devices.": "メディアデバイスへのアクセスに失敗しました。", "Error accessing media devices.": "メディアデバイスへのアクセスに失敗しました。",
"Error starting recording.": "録音を開始できませんでした。", "Error starting recording.": "録音を開始できませんでした。",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "ファイルアップロードに失敗しました: {{error}}", "Error uploading file: {{error}}": "ファイルアップロードに失敗しました: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "評価", "Evaluations": "評価",
"Everyone": "", "Everyone": "",
"Exa API Key": "Exa APIキー", "Exa API Key": "Exa APIキー",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "触覚フィードバック", "Haptic Feedback": "触覚フィードバック",
"Height": "",
"Hello, {{name}}": "こんにちは、{{name}} さん", "Hello, {{name}}": "こんにちは、{{name}} さん",
"Help": "ヘルプ", "Help": "ヘルプ",
"Help us create the best community leaderboard by sharing your feedback history!": "フィードバック履歴を共有して、最も優れたコミュニティリーダーボードを作成しましょう!", "Help us create the best community leaderboard by sharing your feedback history!": "フィードバック履歴を共有して、最も優れたコミュニティリーダーボードを作成しましょう!",
@ -733,6 +753,7 @@
"Hide": "非表示", "Hide": "非表示",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "モデルを非表示", "Hide Model": "モデルを非表示",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "ホーム", "Home": "ホーム",
"Host": "ホスト", "Host": "ホスト",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "複雑なクエリには、包括的な処理のためにコンテンツ全体をコンテキストとして注入することをお勧めします。", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "複雑なクエリには、包括的な処理のためにコンテンツ全体をコンテキストとして注入することをお勧めします。",
"Input": "", "Input": "",
"Input commands": "入力コマンド", "Input commands": "入力コマンド",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "無効なファイル内容", "Invalid file content": "無効なファイル内容",
"Invalid file format.": "無効なファイル形式", "Invalid file format.": "無効なファイル形式",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "無効なタグ", "Invalid Tag": "無効なタグ",
"is typing...": "入力中...", "is typing...": "入力中...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "キー", "Key": "キー",
"Key is required": "",
"Keyboard shortcuts": "キーボードショートカット", "Keyboard shortcuts": "キーボードショートカット",
"Knowledge": "ナレッジベース", "Knowledge": "ナレッジベース",
"Knowledge Access": "ナレッジアクセス", "Knowledge Access": "ナレッジアクセス",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "ナレッジベースの作成に成功しました", "Knowledge created successfully.": "ナレッジベースの作成に成功しました",
"Knowledge deleted successfully.": "ナレッジベースの削除に成功しました", "Knowledge deleted successfully.": "ナレッジベースの削除に成功しました",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "ナレッジベースの公開共有", "Knowledge Public Sharing": "ナレッジベースの公開共有",
"Knowledge reset successfully.": "ナレッジベースのリセットに成功しました", "Knowledge reset successfully.": "ナレッジベースのリセットに成功しました",
"Knowledge updated successfully": "ナレッジベースのアップデートに成功しました", "Knowledge updated successfully": "ナレッジベースのアップデートに成功しました",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "位置情報のアクセスが許可されていません", "Location access not allowed": "位置情報のアクセスが許可されていません",
"Lost": "", "Lost": "",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "OpenWebUI コミュニティによって作成", "Made by Open WebUI Community": "OpenWebUI コミュニティによって作成",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "最大アップロードサイズ", "Max Upload Size": "最大アップロードサイズ",
"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": "5月", "May": "5月",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLM がアクセスできるメモリはここに表示されます。", "Memories accessible by LLMs will be shown here.": "LLM がアクセスできるメモリはここに表示されます。",
"Memory": "メモリ", "Memory": "メモリ",
"Memory added successfully": "メモリに追加されました。", "Memory added successfully": "メモリに追加されました。",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "モデルID", "Model IDs": "モデルID",
"Model Name": "モデル名", "Model Name": "モデル名",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "モデルが選択されていません", "Model not selected": "モデルが選択されていません",
"Model Params": "モデルパラメータ", "Model Params": "モデルパラメータ",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "名前", "Name": "名前",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "ナレッジベースの名前を付ける", "Name your knowledge base": "ナレッジベースの名前を付ける",
"Native": "ネイティブ", "Native": "ネイティブ",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "検索クエリは生成されません", "No search query generated": "検索クエリは生成されません",
"No source available": "使用可能なソースがありません", "No source available": "使用可能なソースがありません",
"No users were found.": "ユーザーが見つかりません。", "No users were found.": "ユーザーが見つかりません。",
"No valves": "",
"No valves to update": "更新するバルブがありません", "No valves to update": "更新するバルブがありません",
"Node Ids": "",
"None": "何一つ", "None": "何一つ",
"Not factually correct": "実事上正しくない", "Not factually correct": "実事上正しくない",
"Not helpful": "役に立たない", "Not helpful": "役に立たない",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "ブランチ変更時にスクロール", "Scroll On Branch Change": "ブランチ変更時にスクロール",
"Search": "検索", "Search": "検索",
"Search a model": "モデルを検索", "Search a model": "モデルを検索",
"Search all emojis": "",
"Search Base": "ベースを検索", "Search Base": "ベースを検索",
"Search Chats": "チャットの検索", "Search Chats": "チャットの検索",
"Search Collection": "Collectionの検索", "Search Collection": "Collectionの検索",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "手順については readme.md を参照してください", "See readme.md for instructions": "手順については readme.md を参照してください",
"See what's new": "新機能を見る", "See what's new": "新機能を見る",
"Seed": "シード", "Seed": "シード",
"Select": "",
"Select a base model": "基本モデルの選択", "Select a base model": "基本モデルの選択",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "エンジンの選択", "Select a engine": "エンジンの選択",
"Select a function": "Functionの選択", "Select a function": "Functionの選択",
"Select a group": "グループの選択", "Select a group": "グループの選択",
"Select a language": "",
"Select a mode": "",
"Select a model": "モデルを選択", "Select a model": "モデルを選択",
"Select a model (optional)": "",
"Select a pipeline": "パイプラインの選択", "Select a pipeline": "パイプラインの選択",
"Select a pipeline url": "パイプラインの URL を選択する", "Select a pipeline url": "パイプラインの URL を選択する",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "ツールの選択", "Select a tool": "ツールの選択",
"Select a voice": "",
"Select an auth method": "認証方法の選択", "Select an auth method": "認証方法の選択",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Ollama インスタンスの選択", "Select an Ollama instance": "Ollama インスタンスの選択",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "エンジンの選択", "Select Engine": "エンジンの選択",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "ナレッジベースの選択", "Select Knowledge": "ナレッジベースの選択",
"Select only one model to call": "1つのモデルを呼び出すには、1つのモデルを選択してください。", "Select only one model to call": "1つのモデルを呼び出すには、1つのモデルを選択してください。",
"Selected model(s) do not support image inputs": "一部のモデルは画像入力をサポートしていません", "Selected model(s) do not support image inputs": "一部のモデルは画像入力をサポートしていません",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply APIキー", "Serply API Key": "Serply APIキー",
"Serpstack API Key": "Serpstack APIキー", "Serpstack API Key": "Serpstack APIキー",
"Server connection verified": "サーバー接続が確認されました", "Server connection verified": "サーバー接続が確認されました",
"Session": "",
"Set as default": "デフォルトに設定", "Set as default": "デフォルトに設定",
"Set CFG Scale": "CFG Scaleを設定", "Set CFG Scale": "CFG Scaleを設定",
"Set Default Model": "デフォルトモデルを設定", "Set Default Model": "デフォルトモデルを設定",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "Sougou Search API sID", "Sougou Search API sID": "Sougou Search API sID",
"Sougou Search API SK": "Sougou Search API SK", "Sougou Search API SK": "Sougou Search API SK",
"Source": "ソース", "Source": "ソース",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "スタイル付きPDFエクスポート", "Stylized PDF Export": "スタイル付きPDFエクスポート",
"Subtitle (e.g. about the Roman Empire)": "字幕 (例: ローマ帝国)", "Subtitle (e.g. about the Roman Empire)": "字幕 (例: ローマ帝国)",
"Success": "成功", "Success": "成功",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "正常に更新されました。", "Successfully updated.": "正常に更新されました。",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "提案", "Suggested": "提案",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "ファイルの最大サイズはMBです。ファイルサイズがこの制限を超える場合、ファイルはアップロードされません。", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "ファイルの最大サイズはMBです。ファイルサイズがこの制限を超える場合、ファイルはアップロードされません。",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "一度に使用できるファイルの最大数。ファイルの数がこの制限を超える場合、ファイルはアップロードされません。", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "一度に使用できるファイルの最大数。ファイルの数がこの制限を超える場合、ファイルはアップロードされません。",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "スコアは0.0(0%)から1.0(100%)の間の値にしてください。", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "スコアは0.0(0%)から1.0(100%)の間の値にしてください。",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "モデルのtemperature。温度を上げるとモデルはより創造的に回答します。", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "モデルのtemperature。温度を上げるとモデルはより創造的に回答します。",
@ -1439,7 +1495,9 @@
"Upload Files": "ファイルのアップロード", "Upload Files": "ファイルのアップロード",
"Upload Pipeline": "アップロードパイプライン", "Upload Pipeline": "アップロードパイプライン",
"Upload Progress": "アップロードの進行状況", "Upload Progress": "アップロードの進行状況",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "URL モード", "URL Mode": "URL モード",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "#を入力するとナレッジベースを参照することが出来ます。", "Use '#' in the prompt input to load and include your knowledge.": "#を入力するとナレッジベースを参照することが出来ます。",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "", "Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "有効な時間単位:", "Valid time units:": "有効な時間単位:",
"Validate certificate": "",
"Valves": "", "Valves": "",
"Valves updated": "バルブが更新されました", "Valves updated": "バルブが更新されました",
"Valves updated successfully": "バルブが正常に更新されました", "Valves updated successfully": "バルブが正常に更新されました",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (ローカル)", "Whisper (Local)": "Whisper (ローカル)",
"Why?": "", "Why?": "",
"Widescreen Mode": "ワイドスクリーンモード", "Widescreen Mode": "ワイドスクリーンモード",
"Width": "",
"Won": "", "Won": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "ワークスペース", "Workspace": "ワークスペース",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} პასუხი", "{{COUNT}} Replies": "{{COUNT}} პასუხი",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}-ის ჩათები", "{{user}}'s Chats": "{{user}}-ის ჩათები",
"{{webUIName}} Backend Required": "{{webUIName}} საჭიროა უკანაბოლო", "{{webUIName}} Backend Required": "{{webUIName}} საჭიროა უკანაბოლო",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "დარჩენილი ანგარიშის აქტივაცია", "Account Activation Pending": "დარჩენილი ანგარიშის აქტივაცია",
"Accurate information": "სწორი ინფორმაცია", "Accurate information": "სწორი ინფორმაცია",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "ქმედებები", "Actions": "ქმედებები",
"Activate": "აქტივაცია", "Activate": "აქტივაცია",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "გადასარევია", "Amazing": "გადასარევია",
"an assistant": "დამხმარე", "an assistant": "დამხმარე",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "გაანაზლიებულია", "Analyzed": "გაანაზლიებულია",
"Analyzing...": "ანალიზი...", "Analyzing...": "ანალიზი...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "API გასაღებები", "API keys": "API გასაღებები",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "აპლიკაციის DN", "Application DN": "აპლიკაციის DN",
"Application DN Password": "აპლიკაციის DN-ის პაროლი", "Application DN Password": "აპლიკაციის DN-ის პაროლი",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "ბანერები", "Banners": "ბანერები",
"Base Model (From)": "საბაზისო მოდელი (საიდან)", "Base Model (From)": "საბაზისო მოდელი (საიდან)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "მითითებულ დრომდე", "before": "მითითებულ დრომდე",
"Being lazy": "ზარმაცობა", "Being lazy": "ზარმაცობა",
"Beta": "ბეტა", "Beta": "ბეტა",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "სერტიფიკატის ბილიკი", "Certificate Path": "სერტიფიკატის ბილიკი",
"Change Password": "პაროლის შეცვლა", "Change Password": "პაროლის შეცვლა",
"Channel deleted successfully": "",
"Channel Name": "არხის სახელი", "Channel Name": "არხის სახელი",
"Channel updated successfully": "",
"Channels": "არხები", "Channels": "არხები",
"Character": "სიმბოლო", "Character": "სიმბოლო",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI საბაზისო URL აუცილებელია.", "ComfyUI Base URL is required.": "ComfyUI საბაზისო URL აუცილებელია.",
"ComfyUI Workflow": "", "ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "", "ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "ბრძანება", "Command": "ბრძანება",
"Comment": "", "Comment": "",
"Completions": "", "Completions": "",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "ერთდროული მოთხოვნები", "Concurrent Requests": "ერთდროული მოთხოვნები",
"Config imported successfully": "",
"Configure": "მორგება", "Configure": "მორგება",
"Confirm": "დადასტურება", "Confirm": "დადასტურება",
"Confirm Password": "გაიმეორეთ პაროლი", "Confirm Password": "გაიმეორეთ პაროლი",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "დეკემბერი", "December": "დეკემბერი",
"Deepgram": "",
"Default": "ნაგულისხმევი", "Default": "ნაგულისხმევი",
"Default (Open AI)": "", "Default (Open AI)": "",
"Default (SentenceTransformers)": "ნაგულისხმევი (SentenceTransformers)", "Default (SentenceTransformers)": "ნაგულისხმევი (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "პირდაპირი მიერთება", "Direct Connections": "პირდაპირი მიერთება",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "შეიყვანეთ აღწერა", "Enter description": "შეიყვანეთ აღწერა",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "შეიყვანეთ Github Raw URL", "Enter Github Raw URL": "შეიყვანეთ Github Raw URL",
"Enter Google PSE API Key": "შეიყვანეთ Google PSE API-ის გასაღები", "Enter Google PSE API Key": "შეიყვანეთ Google PSE API-ის გასაღები",
"Enter Google PSE Engine Id": "შეიყვანეთ Google PSE ძრავის ID", "Enter Google PSE Engine Id": "შეიყვანეთ Google PSE ძრავის ID",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "შეიყვანეთ სურათის ზომა (მაგ. 512x512)", "Enter Image Size (e.g. 512x512)": "შეიყვანეთ სურათის ზომა (მაგ. 512x512)",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "შეიყვანეთ ბმული (მაგ: http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "შეიყვანეთ ბმული (მაგ: http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "შეიყვანეთ ბმული (მაგ: http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "შეიყვანეთ ბმული (მაგ: http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "შეცდომა", "Error": "შეცდომა",
"ERROR": "ERROR", "ERROR": "ERROR",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "", "Evaluations": "",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "გამარჯობა, {{name}}", "Hello, {{name}}": "გამარჯობა, {{name}}",
"Help": "დახმარება", "Help": "დახმარება",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "დამალვა", "Hide": "დამალვა",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "მთავარი", "Home": "მთავარი",
"Host": "ჰოსტი", "Host": "ჰოსტი",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "შეიყვანეთ ბრძანებები", "Input commands": "შეიყვანეთ ბრძანებები",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "არასწორი ფაილის ფორმატი.", "Invalid file format.": "არასწორი ფაილის ფორმატი.",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "არასწორი ჭდე", "Invalid Tag": "არასწორი ჭდე",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "გასაღები", "Key": "გასაღები",
"Key is required": "",
"Keyboard shortcuts": "კლავიატურის მალსახმობები", "Keyboard shortcuts": "კლავიატურის მალსახმობები",
"Knowledge": "ცოდნა", "Knowledge": "ცოდნა",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "", "Knowledge created successfully.": "",
"Knowledge deleted successfully.": "", "Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "", "Knowledge reset successfully.": "",
"Knowledge updated successfully": "", "Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "წაგება", "Lost": "წაგება",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "შექმნილია OpenWebUI საზოგადოების მიერ", "Made by Open WebUI Community": "შექმნილია OpenWebUI საზოგადოების მიერ",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"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": "მაისი",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLM-ებისთვის ხელმისაწვდომი მეხსიერებები აქ გამოჩნდება.", "Memories accessible by LLMs will be shown here.": "LLM-ებისთვის ხელმისაწვდომი მეხსიერებები აქ გამოჩნდება.",
"Memory": "მეხსიერება", "Memory": "მეხსიერება",
"Memory added successfully": "", "Memory added successfully": "",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "მოდელის ID-ები", "Model IDs": "მოდელის ID-ები",
"Model Name": "Მოდელის სახელი", "Model Name": "Მოდელის სახელი",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "მოდელი არჩეული არაა", "Model not selected": "მოდელი არჩეული არაა",
"Model Params": "მოდელის პარამეტრები", "Model Params": "მოდელის პარამეტრები",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "სახელი", "Name": "სახელი",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "საკუთარი", "Native": "საკუთარი",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "ძებნის მოთხოვნა არ შექმნილა", "No search query generated": "ძებნის მოთხოვნა არ შექმნილა",
"No source available": "წყარო ხელმისაწვდომი არაა", "No source available": "წყარო ხელმისაწვდომი არაა",
"No users were found.": "მომხმარებლები აღმოჩენილი არაა.", "No users were found.": "მომხმარებლები აღმოჩენილი არაა.",
"No valves": "",
"No valves to update": "", "No valves to update": "",
"Node Ids": "",
"None": "არცერთი", "None": "არცერთი",
"Not factually correct": "მთლად სწორი არაა", "Not factually correct": "მთლად სწორი არაა",
"Not helpful": "სასარგებლო არაა", "Not helpful": "სასარგებლო არაა",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "ძებნა", "Search": "ძებნა",
"Search a model": "მოდელის ძებნა", "Search a model": "მოდელის ძებნა",
"Search all emojis": "",
"Search Base": "ბაზის ძებნა", "Search Base": "ბაზის ძებნა",
"Search Chats": "ძებნა ჩატებში", "Search Chats": "ძებნა ჩატებში",
"Search Collection": "კოლექციის ძებნა", "Search Collection": "კოლექციის ძებნა",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "ინსტრუქციებისთვის იხილეთ readme.md", "See readme.md for instructions": "ინსტრუქციებისთვის იხილეთ readme.md",
"See what's new": "ნახეთ, რა არის ახალი", "See what's new": "ნახეთ, რა არის ახალი",
"Seed": "თესლი", "Seed": "თესლი",
"Select": "",
"Select a base model": "აირჩიეთ საბაზისო მოდელი", "Select a base model": "აირჩიეთ საბაზისო მოდელი",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "აირჩიეთ ძრავა", "Select a engine": "აირჩიეთ ძრავა",
"Select a function": "აირჩიეთ ფუნქცია", "Select a function": "აირჩიეთ ფუნქცია",
"Select a group": "აირჩიეთ ჯგუფი", "Select a group": "აირჩიეთ ჯგუფი",
"Select a language": "",
"Select a mode": "",
"Select a model": "აირჩიეთ მოდელი", "Select a model": "აირჩიეთ მოდელი",
"Select a model (optional)": "",
"Select a pipeline": "აირჩიეთ მილსადენი", "Select a pipeline": "აირჩიეთ მილსადენი",
"Select a pipeline url": "აირჩიეთ მილსადენის url", "Select a pipeline url": "აირჩიეთ მილსადენის url",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "აირჩიეთ ხელსაწყო", "Select a tool": "აირჩიეთ ხელსაწყო",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "", "Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "", "Select Knowledge": "",
"Select only one model to call": "", "Select only one model to call": "",
"Selected model(s) do not support image inputs": "მონიშნულ მოდელებს გამოსახულების შეყვანის მხარდაჭერა არ გააჩნიათ", "Selected model(s) do not support image inputs": "მონიშნულ მოდელებს გამოსახულების შეყვანის მხარდაჭერა არ გააჩნიათ",
@ -1215,6 +1262,7 @@
"Serply API Key": "", "Serply API Key": "",
"Serpstack API Key": "Serpstack API-ის გასაღები", "Serpstack API Key": "Serpstack API-ის გასაღები",
"Server connection verified": "სერვერთან კავშირი გადამოწმებულია", "Server connection verified": "სერვერთან კავშირი გადამოწმებულია",
"Session": "",
"Set as default": "ნაგულისხმევად დაყენება", "Set as default": "ნაგულისხმევად დაყენება",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "ნაგულისხმევი მოდელის დაყენება", "Set Default Model": "ნაგულისხმევი მოდელის დაყენება",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "წყარო", "Source": "წყარო",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "სუბტიტრები (მაგ. რომის იმპერიის შესახებ)", "Subtitle (e.g. about the Roman Empire)": "სუბტიტრები (მაგ. რომის იმპერიის შესახებ)",
"Success": "წარმატება", "Success": "წარმატება",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "წარმატებით განახლდა.", "Successfully updated.": "წარმატებით განახლდა.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "შეთავაზებულია", "Suggested": "შეთავაზებულია",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "რეიტინგი უნდა იყოს მნიშვნელობ შუალედიდან 0.0 (0%) - 1.0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "რეიტინგი უნდა იყოს მნიშვნელობ შუალედიდან 0.0 (0%) - 1.0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "ფაილების ატვირთვა", "Upload Files": "ფაილების ატვირთვა",
"Upload Pipeline": "", "Upload Pipeline": "",
"Upload Progress": "ატვირთვის მიმდინარეობა", "Upload Progress": "ატვირთვის მიმდინარეობა",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "URL რეჟიმი", "URL Mode": "URL რეჟიმი",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "", "Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "სწორი დროის ერთეულები:", "Valid time units:": "სწორი დროის ერთეულები:",
"Validate certificate": "",
"Valves": "", "Valves": "",
"Valves updated": "", "Valves updated": "",
"Valves updated successfully": "", "Valves updated successfully": "",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "", "Whisper (Local)": "",
"Why?": "რატომ?", "Why?": "რატომ?",
"Widescreen Mode": "", "Widescreen Mode": "",
"Width": "",
"Won": "ვონი", "Won": "ვონი",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "სამუშაო სივრცე", "Workspace": "სამუშაო სივრცე",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} n yizirigen yeffren", "{{COUNT}} hidden lines": "{{COUNT}} n yizirigen yeffren",
"{{COUNT}} Replies": "{{COUNT}} n tririyin", "{{COUNT}} Replies": "{{COUNT}} n tririyin",
"{{COUNT}} words": "{{COUNT}} n wawalen", "{{COUNT}} words": "{{COUNT}} n wawalen",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Asqerdec n {{user}}", "{{user}}'s Chats": "Asqerdec n {{user}}",
"{{webUIName}} Backend Required": "", "{{webUIName}} Backend Required": "",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "Armad n umiḍan deg uṛaǧu", "Account Activation Pending": "Armad n umiḍan deg uṛaǧu",
"Accurate information": "Talɣut tusdidt", "Accurate information": "Talɣut tusdidt",
"Action": "Tigawt", "Action": "Tigawt",
"Action not found": "",
"Actions": "Tigawin", "Actions": "Tigawin",
"Activate": "Sermed", "Activate": "Sermed",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Xdem lameṛ-a s tira n \"/{COMMAND}}\" akken ad tqeṣṣreḍ asekcem.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Xdem lameṛ-a s tira n \"/{COMMAND}}\" akken ad tqeṣṣreḍ asekcem.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "Dima tturar alɣu Yettban", "Always Play Notification Sound": "Dima tturar alɣu Yettban",
"Amazing": "Igerrez", "Amazing": "Igerrez",
"an assistant": "d amallal", "an assistant": "d amallal",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Yettwasekyed", "Analyzed": "Yettwasekyed",
"Analyzing...": "La yettwasekyad…", "Analyzing...": "La yettwasekyad…",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Agaz n ugaz n tsarut API", "API Key Endpoint Restrictions": "Agaz n ugaz n tsarut API",
"API keys": "Tisura API", "API keys": "Tisura API",
"API Version": "Lqem n API", "API Version": "Lqem n API",
"API Version is required": "",
"Application DN": "DN n wesnas", "Application DN": "DN n wesnas",
"Application DN Password": "Awal n uɛeddi n DN n usnas", "Application DN Password": "Awal n uɛeddi n DN n usnas",
"applies to all users with the \"user\" role": "yeɛna akk iseqdacen yesɛan tamlilt \"user\"", "applies to all users with the \"user\" role": "yeɛna akk iseqdacen yesɛan tamlilt \"user\"",
@ -160,6 +164,7 @@
"Banners": "Iɣerracen", "Banners": "Iɣerracen",
"Base Model (From)": "", "Base Model (From)": "",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "Umuɣ n uzadur n tebdart Cache yessazzel anekcum s tmudmin tidusanin kan deg ubeddu neɣ deg yiɣewwaren i d-yettwasellken — amestir, maca yezmer lḥal ur d-yesskan ara ibeddilen ineggura n tmudemt azadur.", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "Umuɣ n uzadur n tebdart Cache yessazzel anekcum s tmudmin tidusanin kan deg ubeddu neɣ deg yiɣewwaren i d-yettwasellken — amestir, maca yezmer lḥal ur d-yesskan ara ibeddilen ineggura n tmudemt azadur.",
"Bearer": "",
"before": "send", "before": "send",
"Being lazy": "Ili-k d ameɛdaz", "Being lazy": "Ili-k d ameɛdaz",
"Beta": "Biṭa", "Beta": "Biṭa",
@ -189,7 +194,9 @@
"Capture Audio": "Asekles n umeslaw", "Capture Audio": "Asekles n umeslaw",
"Certificate Path": "Abrid n uselkin", "Certificate Path": "Abrid n uselkin",
"Change Password": "Snifel awal n uɛeddi", "Change Password": "Snifel awal n uɛeddi",
"Channel deleted successfully": "",
"Channel Name": "Isem n ubadu", "Channel Name": "Isem n ubadu",
"Channel updated successfully": "",
"Channels": "Ibuda", "Channels": "Ibuda",
"Character": "asekkil", "Character": "asekkil",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "Mdel asfaylu", "Close modal": "Mdel asfaylu",
"Close settings modal": "Mdel asfaylu n iɣewwaṛen", "Close settings modal": "Mdel asfaylu n iɣewwaṛen",
"Close Sidebar": "Mdel agalis adisan", "Close Sidebar": "Mdel agalis adisan",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Iḥder n tengalt", "Code Block": "Iḥder n tengalt",
"Code execution": "Aselkem n tengalt", "Code execution": "Aselkem n tengalt",
"Code Execution": "Aselkem n tengalt", "Code Execution": "Aselkem n tengalt",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI Tansa URL n uzadur tesra.", "ComfyUI Base URL is required.": "ComfyUI Tansa URL n uzadur tesra.",
"ComfyUI Workflow": "Asuddem n umahil n ComfyUI", "ComfyUI Workflow": "Asuddem n umahil n ComfyUI",
"ComfyUI Workflow Nodes": "Taneddict n usuddem n umahil n ComfyUI", "ComfyUI Workflow Nodes": "Taneddict n usuddem n umahil n ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Anezḍay", "Command": "Anezḍay",
"Comment": "Awennit", "Comment": "Awennit",
"Completions": "", "Completions": "",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "", "Concurrent Requests": "",
"Config imported successfully": "",
"Configure": "Swel", "Configure": "Swel",
"Confirm": "Sentem", "Confirm": "Sentem",
"Confirm Password": "Sentem awal n uɛeddi", "Confirm Password": "Sentem awal n uɛeddi",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "API n isefkalab Marker Tesri tasarut.", "Datalab Marker API Key required.": "API n isefkalab Marker Tesri tasarut.",
"DD/MM/YYYY": "JJ/MM/AAAA", "DD/MM/YYYY": "JJ/MM/AAAA",
"December": "Duǧambeṛ", "December": "Duǧambeṛ",
"Deepgram": "",
"Default": "Amezwer", "Default": "Amezwer",
"Default (Open AI)": "Amezwer (Open AI)", "Default (Open AI)": "Amezwer (Open AI)",
"Default (SentenceTransformers)": "S wudem amezwar (SentenceTransformers)", "Default (SentenceTransformers)": "S wudem amezwar (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Tuqqniwin tusridin", "Direct Connections": "Tuqqniwin tusridin",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Tuqqniwin tusridin ttaǧǧant iseqdacen ad qqnen ɣer wagazen-nsen n taggara API imṣadan OpenAI.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Tuqqniwin tusridin ttaǧǧant iseqdacen ad qqnen ɣer wagazen-nsen n taggara API imṣadan OpenAI.",
"Direct Tool Servers": "Iqeddacen n ifecka usriden", "Direct Tool Servers": "Iqeddacen n ifecka usriden",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "Sens afsay n tugniwin", "Disable Image Extraction": "Sens afsay n tugniwin",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Kkes-d asufeɣ n tugna seg PDF. Ma yella aseqdec n LLM yermed, tugniwin ad ttwakelsent s wudem awurman. Imezwura ɣer False.", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Kkes-d asufeɣ n tugna seg PDF. Ma yella aseqdec n LLM yermed, tugniwin ad ttwakelsent s wudem awurman. Imezwura ɣer False.",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Kcem ɣer tyugiwin \"token:bias_value\" i d-yezgan gar-asent (amedya: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Kcem ɣer tyugiwin \"token:bias_value\" i d-yezgan gar-asent (amedya: 5432:100, 413:-100)",
"Enter Config in JSON format": "Kcem ɣer Config s umasal JSON", "Enter Config in JSON format": "Kcem ɣer Config s umasal JSON",
"Enter content for the pending user info overlay. Leave empty for default.": "Sekcem agbur n telɣut n useqdac yettwaṛjan. Eǧǧ ilem i tazwara.", "Enter content for the pending user info overlay. Leave empty for default.": "Sekcem agbur n telɣut n useqdac yettwaṛjan. Eǧǧ ilem i tazwara.",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "Sekcem API n isefkalab Marker Tasarut", "Enter Datalab Marker API Key": "Sekcem API n isefkalab Marker Tasarut",
"Enter description": "Sekcem aglam", "Enter description": "Sekcem aglam",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Sekcem tansa URL tazegzawt n Github", "Enter Github Raw URL": "Sekcem tansa URL tazegzawt n Github",
"Enter Google PSE API Key": "Sekcem tasarut API n Google PSE", "Enter Google PSE API Key": "Sekcem tasarut API n Google PSE",
"Enter Google PSE Engine Id": "Sekcem Google PSE Engine Id", "Enter Google PSE Engine Id": "Sekcem Google PSE Engine Id",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Sekcem tugna Size (amedya 512x512)", "Enter Image Size (e.g. 512x512)": "Sekcem tugna Size (amedya 512x512)",
"Enter Jina API Key": "Sekcem tasarut API n Jina", "Enter Jina API Key": "Sekcem tasarut API n Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Kcem ɣer Top K Reranker", "Enter Top K Reranker": "Kcem ɣer Top K Reranker",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Sekcem tansa URL (amedya. http://127.0.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Sekcem tansa URL (amedya. http://127.0.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Sekcem tansa URL (amedya. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Sekcem tansa URL (amedya. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "Sekcem-d awal n uɛeddi n Yacy", "Enter Yacy Password": "Sekcem-d awal n uɛeddi n Yacy",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Sekcem tansa URL n Yacy (amedya. http://yacy.example.com:8090)", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Sekcem tansa URL n Yacy (amedya. http://yacy.example.com:8090)",
"Enter Yacy Username": "Sekcem-d isem n useqdac n Yacy", "Enter Yacy Username": "Sekcem-d isem n useqdac n Yacy",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Sekcem tansa URL-ik webhook", "Enter your webhook URL": "Sekcem tansa URL-ik webhook",
"Error": "Tuccḍa", "Error": "Tuccḍa",
"ERROR": "TUCCḌA", "ERROR": "TUCCḌA",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Tuccḍa Google Drive: {{error}}", "Error accessing Google Drive: {{error}}": "Tuccḍa Google Drive: {{error}}",
"Error accessing media devices.": "Tuccḍa deg unekcum ɣer yibenkan n yiẓeḍwa.", "Error accessing media devices.": "Tuccḍa deg unekcum ɣer yibenkan n yiẓeḍwa.",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "Tuccḍa deg usali n tmudemt: {{error}}", "Error unloading model: {{error}}": "Tuccḍa deg usali n tmudemt: {{error}}",
"Error uploading file: {{error}}": "Tuccḍa deg usali n ufaylu: {{error}}", "Error uploading file: {{error}}": "Tuccḍa deg usali n ufaylu: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Iktazalen", "Evaluations": "Iktazalen",
"Everyone": "Yal yiwen", "Everyone": "Yal yiwen",
"Exa API Key": "Tasarut API n Exa", "Exa API Key": "Tasarut API n Exa",
@ -725,6 +744,7 @@
"H2": "H2", "H2": "H2",
"H3": "H3", "H3": "H3",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "Azul a {{name}}", "Hello, {{name}}": "Azul a {{name}}",
"Help": "Tallalt", "Help": "Tallalt",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "Seggelmes", "Hide": "Seggelmes",
"Hide from Sidebar": "Ffer seg ufeggag n yidis", "Hide from Sidebar": "Ffer seg ufeggag n yidis",
"Hide Model": "Ffer tamudemt", "Hide Model": "Ffer tamudemt",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "Agejdan", "Home": "Agejdan",
"Host": "Asneftaɣ", "Host": "Asneftaɣ",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "", "Input commands": "",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "Ger", "Insert": "Ger",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "Agbur n ufaylu d arameɣtu", "Invalid file content": "Agbur n ufaylu d arameɣtu",
"Invalid file format.": "Amasal n ufaylu d arameɣtu.", "Invalid file format.": "Amasal n ufaylu d arameɣtu.",
"Invalid JSON file": "Afaylu JSON arameɣtu", "Invalid JSON file": "Afaylu JSON arameɣtu",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "", "Invalid Tag": "",
"is typing...": "yettaru…", "is typing...": "yettaru…",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "Kemmel tiwsatin n uḍfaṛ-Up deg Chat", "Keep Follow-Up Prompts in Chat": "Kemmel tiwsatin n uḍfaṛ-Up deg Chat",
"Keep in Sidebar": "Senṭeḍ-it deg ufeggag n yidis", "Keep in Sidebar": "Senṭeḍ-it deg ufeggag n yidis",
"Key": "Tasarutt", "Key": "Tasarutt",
"Key is required": "",
"Keyboard shortcuts": "Inegzumen n unasiw", "Keyboard shortcuts": "Inegzumen n unasiw",
"Knowledge": "Tamusni", "Knowledge": "Tamusni",
"Knowledge Access": "Anekcum ɣer tmussni", "Knowledge Access": "Anekcum ɣer tmussni",
"Knowledge Base": "Taffa n tmusni", "Knowledge Base": "Taffa n tmusni",
"Knowledge created successfully.": "Tamussni tennulfa-d akken iwata.", "Knowledge created successfully.": "Tamussni tennulfa-d akken iwata.",
"Knowledge deleted successfully.": "Tamussni tettwakkes akken iwata.", "Knowledge deleted successfully.": "Tamussni tettwakkes akken iwata.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Tamussni tettuwennez akken iwata.", "Knowledge reset successfully.": "Tamussni tettuwennez akken iwata.",
"Knowledge updated successfully": "Timussniwin ttwaleqqment akken iwata", "Knowledge updated successfully": "Timussniwin ttwaleqqment akken iwata",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "Anekcum ɣer tuddna", "Location access not allowed": "Anekcum ɣer tuddna",
"Lost": "Iruḥ", "Lost": "Iruḥ",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Texdem-it-id temɣiwant n Open WebUI", "Made by Open WebUI Community": "Texdem-it-id temɣiwant n Open WebUI",
"Make password visible in the user interface": "Sken-d awal n uɛeddi deg ugrudem n useqdac", "Make password visible in the user interface": "Sken-d awal n uɛeddi deg ugrudem n useqdac",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum n 3 n tmudmin yezmer ad d-yettwasider seg-a ɣer da. Ttxil-k, ɛreḍ tikkelt niḍen ticki.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum n 3 n tmudmin yezmer ad d-yettwasider seg-a ɣer da. Ttxil-k, ɛreḍ tikkelt niḍen ticki.",
"May": "Mayyu", "May": "Mayyu",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Da ara d-banent teḥkayin ara yaweḍ yiwen ɣer LLMs.", "Memories accessible by LLMs will be shown here.": "Da ara d-banent teḥkayin ara yaweḍ yiwen ɣer LLMs.",
"Memory": "Takatut", "Memory": "Takatut",
"Memory added successfully": "Asmekti yettwarna akken iwata", "Memory added successfully": "Asmekti yettwarna akken iwata",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "Isulayen n tmudmiwin", "Model IDs": "Isulayen n tmudmiwin",
"Model Name": "Isem n tmudemt", "Model Name": "Isem n tmudemt",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "", "Model not selected": "",
"Model Params": "Iɣewwaren n timudemt", "Model Params": "Iɣewwaren n timudemt",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "Ugar n textiṛiyin", "More Options": "Ugar n textiṛiyin",
"Name": "Isem", "Name": "Isem",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Fket-d azadur-nwen n tmussni", "Name your knowledge base": "Fket-d azadur-nwen n tmussni",
"Native": "", "Native": "",
"New Button": "Taqeffalt tamaynut", "New Button": "Taqeffalt tamaynut",
@ -960,7 +990,9 @@
"No search query generated": "", "No search query generated": "",
"No source available": "Ulac aɣbalu yettwafen", "No source available": "Ulac aɣbalu yettwafen",
"No users were found.": "Ulac iseqdacen.", "No users were found.": "Ulac iseqdacen.",
"No valves": "",
"No valves to update": "", "No valves to update": "",
"Node Ids": "",
"None": "Ula d yiwen", "None": "Ula d yiwen",
"Not factually correct": "", "Not factually correct": "",
"Not helpful": "Ur infiɛ ara", "Not helpful": "Ur infiɛ ara",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Abeddel n Branch", "Scroll On Branch Change": "Abeddel n Branch",
"Search": "Nadi", "Search": "Nadi",
"Search a model": "Nadi tamudemt", "Search a model": "Nadi tamudemt",
"Search all emojis": "",
"Search Base": "Taffa n unadi", "Search Base": "Taffa n unadi",
"Search Chats": "Nadi idiwenniyen", "Search Chats": "Nadi idiwenniyen",
"Search Collection": "Nadi talkensit", "Search Collection": "Nadi talkensit",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Ẓer taɣuṛi i lewṣaya", "See readme.md for instructions": "Ẓer taɣuṛi i lewṣaya",
"See what's new": "Wali d acu i yellan d amaynut", "See what's new": "Wali d acu i yellan d amaynut",
"Seed": "Seed", "Seed": "Seed",
"Select": "",
"Select a base model": "Fren tamudemt azadur", "Select a base model": "Fren tamudemt azadur",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "Fren adiwenni i teskant", "Select a conversation to preview": "Fren adiwenni i teskant",
"Select a engine": "Fren amsedday", "Select a engine": "Fren amsedday",
"Select a function": "Fren tasɣent", "Select a function": "Fren tasɣent",
"Select a group": "Fren agraw", "Select a group": "Fren agraw",
"Select a language": "",
"Select a mode": "",
"Select a model": "Fren tamudemt", "Select a model": "Fren tamudemt",
"Select a model (optional)": "",
"Select a pipeline": "Fren aselda", "Select a pipeline": "Fren aselda",
"Select a pipeline url": "Fren tansa URL n uselda", "Select a pipeline url": "Fren tansa URL n uselda",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Fren afecku", "Select a tool": "Fren afecku",
"Select a voice": "",
"Select an auth method": "Fren tarrayt n diri", "Select an auth method": "Fren tarrayt n diri",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Fren amedya Ollama", "Select an Ollama instance": "Fren amedya Ollama",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Fren amsadday", "Select Engine": "Fren amsadday",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Fren tamusni", "Select Knowledge": "Fren tamusni",
"Select only one model to call": "", "Select only one model to call": "",
"Selected model(s) do not support image inputs": "Ammud(s) yettwafernen ur yessefrak ara inekcamen n tugniwin yettwafernen", "Selected model(s) do not support image inputs": "Ammud(s) yettwafernen ur yessefrak ara inekcamen n tugniwin yettwafernen",
@ -1215,6 +1262,7 @@
"Serply API Key": "Tasarut API n Serply", "Serply API Key": "Tasarut API n Serply",
"Serpstack API Key": "Tasarut API n Serpstack", "Serpstack API Key": "Tasarut API n Serpstack",
"Server connection verified": "", "Server connection verified": "",
"Session": "",
"Set as default": "Sbadu-t d amezwaru", "Set as default": "Sbadu-t d amezwaru",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "Sbadu tamudemt tamezwart", "Set Default Model": "Sbadu tamudemt tamezwart",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "Seqcer aṭaksi-nni, tɛawdeḍ-as assefreg. Imezwura ɣer False.", "Skip the cache and re-run the inference. Defaults to False.": "Seqcer aṭaksi-nni, tɛawdeḍ-as assefreg. Imezwura ɣer False.",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "Asulay API n Sougou Search (sID)", "Sougou Search API sID": "Asulay API n Sougou Search (sID)",
"Sougou Search API SK": "Tasarut tuffirt n API Sougou Search (SK)", "Sougou Search API SK": "Tasarut tuffirt n API Sougou Search (SK)",
"Source": "Aɣbalu", "Source": "Aɣbalu",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Addad amaruz (amedya ɣef tgelda Tarumanit)", "Subtitle (e.g. about the Roman Empire)": "Addad amaruz (amedya ɣef tgelda Tarumanit)",
"Success": "Yedda", "Success": "Yedda",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Yettwaleqqem akken iwata.", "Successfully updated.": "Yettwaleqqem akken iwata.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Yettwasumer-d", "Suggested": "Yettwasumer-d",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Tiddi n ufaylu afellay deg MB. Ma yella teɣzi n ufaylu tɛedda i talast-a, afaylu ur yettali ara.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Tiddi n ufaylu afellay deg MB. Ma yella teɣzi n ufaylu tɛedda i talast-a, afaylu ur yettali ara.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Amḍan afellay n yifuyla i izemren ad ttwasqedcen ɣef tikkelt deg udiwenni. Ma yella amḍan n yifuyla iɛedda i talast-a, ifuyla ur ttalin ara.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Amḍan afellay n yifuyla i izemren ad ttwasqedcen ɣef tikkelt deg udiwenni. Ma yella amḍan n yifuyla iɛedda i talast-a, ifuyla ur ttalin ara.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Amasal n tuffɣa i uḍris. Tzemreḍ ad tiliḍ d 'json', d 'markdown' neɣ d 'html'. Imezwura ɣer 'markdown'.", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Amasal n tuffɣa i uḍris. Tzemreḍ ad tiliḍ d 'json', d 'markdown' neɣ d 'html'. Imezwura ɣer 'markdown'.",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Taẓɣelt n tmudemt. Asenqes n teẓɣelt ad yerr tamudemt d tiririt s tesɣent ugar.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Taẓɣelt n tmudemt. Asenqes n teẓɣelt ad yerr tamudemt d tiririt s tesɣent ugar.",
@ -1439,7 +1495,9 @@
"Upload Files": "Sali-d ifuyla", "Upload Files": "Sali-d ifuyla",
"Upload Pipeline": "Aselda n uɛebbi", "Upload Pipeline": "Aselda n uɛebbi",
"Upload Progress": "", "Upload Progress": "",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "Askar n URL", "URL Mode": "Askar n URL",
"Usage": "Aseqdec", "Usage": "Aseqdec",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "Aseqdec n Retrieval yeslummes", "Using Focused Retrieval": "Aseqdec n Retrieval yeslummes",
"Using the default arena model with all models. Click the plus button to add custom models.": "Aseqdec n tmudemt n uzna amezwer s yal timudmin. Tekki ɣef tqeffalt-nni n tmerniwt akken ad ternuḍ timudmin tinsayanin.", "Using the default arena model with all models. Click the plus button to add custom models.": "Aseqdec n tmudemt n uzna amezwer s yal timudmin. Tekki ɣef tqeffalt-nni n tmerniwt akken ad ternuḍ timudmin tinsayanin.",
"Valid time units:": "Tigget n wakud ameɣtu:", "Valid time units:": "Tigget n wakud ameɣtu:",
"Validate certificate": "",
"Valves": "", "Valves": "",
"Valves updated": "", "Valves updated": "",
"Valves updated successfully": "Valves ttwaleqmen akken iwata", "Valves updated successfully": "Valves ttwaleqmen akken iwata",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (adigan)", "Whisper (Local)": "Whisper (adigan)",
"Why?": "Ayɣer?", "Why?": "Ayɣer?",
"Widescreen Mode": "Askar n ugdil aččuran", "Widescreen Mode": "Askar n ugdil aččuran",
"Width": "",
"Won": "Yerbaḥ", "Won": "Yerbaḥ",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Tamnaḍṭ n umahil", "Workspace": "Tamnaḍṭ n umahil",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "숨겨진 줄 {{COUNT}}개", "{{COUNT}} hidden lines": "숨겨진 줄 {{COUNT}}개",
"{{COUNT}} Replies": "답글 {{COUNT}}개", "{{COUNT}} Replies": "답글 {{COUNT}}개",
"{{COUNT}} words": "{{COUNT}} 단어", "{{COUNT}} words": "{{COUNT}} 단어",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}의 채팅", "{{user}}'s Chats": "{{user}}의 채팅",
"{{webUIName}} Backend Required": "{{webUIName}} 백엔드가 필요합니다.", "{{webUIName}} Backend Required": "{{webUIName}} 백엔드가 필요합니다.",
"*Prompt node ID(s) are required for image generation": "이미지 생성에는 프롬프트 노드 ID가 필요합니다.", "*Prompt node ID(s) are required for image generation": "이미지 생성에는 프롬프트 노드 ID가 필요합니다.",
@ -29,6 +30,7 @@
"Account Activation Pending": "계정 활성화 대기", "Account Activation Pending": "계정 활성화 대기",
"Accurate information": "정확한 정보", "Accurate information": "정확한 정보",
"Action": "액션", "Action": "액션",
"Action not found": "",
"Actions": "작업", "Actions": "작업",
"Activate": "활성화", "Activate": "활성화",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "채팅 입력창에 \"{{COMMAND}}\"을 입력해 명령을 실행하세요.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "채팅 입력창에 \"{{COMMAND}}\"을 입력해 명령을 실행하세요.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "항상 알림 소리 재생", "Always Play Notification Sound": "항상 알림 소리 재생",
"Amazing": "놀라움", "Amazing": "놀라움",
"an assistant": "어시스턴트", "an assistant": "어시스턴트",
"An error occurred while fetching the explanation": "",
"Analytics": "분석", "Analytics": "분석",
"Analyzed": "분석됨", "Analyzed": "분석됨",
"Analyzing...": "분석 중...", "Analyzing...": "분석 중...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API 키 엔드포인트 제한", "API Key Endpoint Restrictions": "API 키 엔드포인트 제한",
"API keys": "API 키", "API keys": "API 키",
"API Version": "API 버전", "API Version": "API 버전",
"API Version is required": "",
"Application DN": "Application DN", "Application DN": "Application DN",
"Application DN Password": "Application DN 비밀번호", "Application DN Password": "Application DN 비밀번호",
"applies to all users with the \"user\" role": "\"사용자\" 권한의 모든 사용자에게 적용됩니다", "applies to all users with the \"user\" role": "\"사용자\" 권한의 모든 사용자에게 적용됩니다",
@ -160,6 +164,7 @@
"Banners": "배너", "Banners": "배너",
"Base Model (From)": "기본 모델(시작)", "Base Model (From)": "기본 모델(시작)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "기본 모델 목록 캐시는 시작 시 또는 설정 저장 시에만 기본 모델을 불러와 접근 속도를 높여줍니다. 이는 더 빠르지만, 최근 기본 모델 변경 사항이 반영되지 않을 수 있습니다.", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "기본 모델 목록 캐시는 시작 시 또는 설정 저장 시에만 기본 모델을 불러와 접근 속도를 높여줍니다. 이는 더 빠르지만, 최근 기본 모델 변경 사항이 반영되지 않을 수 있습니다.",
"Bearer": "",
"before": "이전", "before": "이전",
"Being lazy": "게으름 피우기", "Being lazy": "게으름 피우기",
"Beta": "베타", "Beta": "베타",
@ -189,7 +194,9 @@
"Capture Audio": "오디오 캡처", "Capture Audio": "오디오 캡처",
"Certificate Path": "인증서 경로", "Certificate Path": "인증서 경로",
"Change Password": "비밀번호 변경", "Change Password": "비밀번호 변경",
"Channel deleted successfully": "",
"Channel Name": "채널 이름", "Channel Name": "채널 이름",
"Channel updated successfully": "",
"Channels": "채널", "Channels": "채널",
"Character": "캐릭터", "Character": "캐릭터",
"Character limit for autocomplete generation input": "자동 완성 생성 입력 문자 제한", "Character limit for autocomplete generation input": "자동 완성 생성 입력 문자 제한",
@ -238,6 +245,7 @@
"Close modal": "닫기", "Close modal": "닫기",
"Close settings modal": "설정 닫기", "Close settings modal": "설정 닫기",
"Close Sidebar": "사이드바 닫기", "Close Sidebar": "사이드바 닫기",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "코드 블록", "Code Block": "코드 블록",
"Code execution": "코드 실행", "Code execution": "코드 실행",
"Code Execution": "코드 실행", "Code Execution": "코드 실행",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI 기본 URL이 필요합니다.", "ComfyUI Base URL is required.": "ComfyUI 기본 URL이 필요합니다.",
"ComfyUI Workflow": "ComfyUI 워크플로", "ComfyUI Workflow": "ComfyUI 워크플로",
"ComfyUI Workflow Nodes": "ComfyUI 워크플로 노드", "ComfyUI Workflow Nodes": "ComfyUI 워크플로 노드",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "명령", "Command": "명령",
"Comment": "주석", "Comment": "주석",
"Completions": "완성됨", "Completions": "완성됨",
"Compress Images in Channels": "채널에 이미지들 압축하기", "Compress Images in Channels": "채널에 이미지들 압축하기",
"Concurrent Requests": "동시 요청 수", "Concurrent Requests": "동시 요청 수",
"Config imported successfully": "",
"Configure": "구성", "Configure": "구성",
"Confirm": "확인", "Confirm": "확인",
"Confirm Password": "비밀번호 확인", "Confirm Password": "비밀번호 확인",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Datalab Marker API 키가 필요합니다.", "Datalab Marker API Key required.": "Datalab Marker API 키가 필요합니다.",
"DD/MM/YYYY": "YYYY/MM/DD", "DD/MM/YYYY": "YYYY/MM/DD",
"December": "12월", "December": "12월",
"Deepgram": "",
"Default": "기본값", "Default": "기본값",
"Default (Open AI)": "기본값 (Open AI)", "Default (Open AI)": "기본값 (Open AI)",
"Default (SentenceTransformers)": "기본값 (SentenceTransformers)", "Default (SentenceTransformers)": "기본값 (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "직접 연결", "Direct Connections": "직접 연결",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "직접 연결을 통해 사용자는 자체 OpenAI 호환 API 엔드포인트에 연결할 수 있습니다.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "직접 연결을 통해 사용자는 자체 OpenAI 호환 API 엔드포인트에 연결할 수 있습니다.",
"Direct Tool Servers": "다이렉트 도구 서버", "Direct Tool Servers": "다이렉트 도구 서버",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "코드 인터프리터 비활성화", "Disable Code Interpreter": "코드 인터프리터 비활성화",
"Disable Image Extraction": "이미지 추출 비활성화", "Disable Image Extraction": "이미지 추출 비활성화",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "PDF에서 이미지 추출을 비활성화합니다. Use LLM이 활성화된 경우 이미지는 자동으로 캡션이 달립니다. 기본값은 False입니다.", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "PDF에서 이미지 추출을 비활성화합니다. Use LLM이 활성화된 경우 이미지는 자동으로 캡션이 달립니다. 기본값은 False입니다.",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "쉼표로 구분된 \\\"토큰:편향_값\\\" 쌍 입력 (예: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "쉼표로 구분된 \\\"토큰:편향_값\\\" 쌍 입력 (예: 5432:100, 413:-100)",
"Enter Config in JSON format": "JSON 형식의 설정 입력", "Enter Config in JSON format": "JSON 형식의 설정 입력",
"Enter content for the pending user info overlay. Leave empty for default.": "대기 중인 사용자 정보 오버레이에 들어갈 내용을 입력하세요. 비워두면 기본값이 사용됩니다.", "Enter content for the pending user info overlay. Leave empty for default.": "대기 중인 사용자 정보 오버레이에 들어갈 내용을 입력하세요. 비워두면 기본값이 사용됩니다.",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "Datalab Marker API URL 입력", "Enter Datalab Marker API Base URL": "Datalab Marker API URL 입력",
"Enter Datalab Marker API Key": "Datalab Marker API 키 입력", "Enter Datalab Marker API Key": "Datalab Marker API 키 입력",
"Enter description": "설명 입력", "Enter description": "설명 입력",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Github Raw URL 입력", "Enter Github Raw URL": "Github Raw URL 입력",
"Enter Google PSE API Key": "Google PSE API 키 입력", "Enter Google PSE API Key": "Google PSE API 키 입력",
"Enter Google PSE Engine Id": "Google PSE 엔진 ID 입력", "Enter Google PSE Engine Id": "Google PSE 엔진 ID 입력",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "이미지 크기 입력(예: 512x512)", "Enter Image Size (e.g. 512x512)": "이미지 크기 입력(예: 512x512)",
"Enter Jina API Key": "Jina API 키 입력", "Enter Jina API Key": "Jina API 키 입력",
"Enter JSON config (e.g., {\"disable_links\": true})": "JSON 설정 입력 (예: {\"disable_links\": true})", "Enter JSON config (e.g., {\"disable_links\": true})": "JSON 설정 입력 (예: {\"disable_links\": true})",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Top K 리랭커 입력", "Enter Top K Reranker": "Top K 리랭커 입력",
"Enter URL (e.g. http://127.0.0.1:7860/)": "URL 입력(예: http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "URL 입력(예: http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "URL 입력(예: http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "URL 입력(예: http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "Yacy 비밀번호 입력", "Enter Yacy Password": "Yacy 비밀번호 입력",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Yacy URL 입력(예: http://yacy.example.com:8090)", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Yacy URL 입력(예: http://yacy.example.com:8090)",
"Enter Yacy Username": "Yacy 사용자 이름 입력", "Enter Yacy Username": "Yacy 사용자 이름 입력",
@ -579,11 +595,14 @@
"Enter your webhook URL": "웹훅 URL을 입력해 주세요", "Enter your webhook URL": "웹훅 URL을 입력해 주세요",
"Error": "오류", "Error": "오류",
"ERROR": "오류", "ERROR": "오류",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Google Drive 액세스 오류: {{error}}", "Error accessing Google Drive: {{error}}": "Google Drive 액세스 오류: {{error}}",
"Error accessing media devices.": "미디어 장치 액세스 오류", "Error accessing media devices.": "미디어 장치 액세스 오류",
"Error starting recording.": "녹화 시작 오류", "Error starting recording.": "녹화 시작 오류",
"Error unloading model: {{error}}": "모델 언로드 오류: {{error}}", "Error unloading model: {{error}}": "모델 언로드 오류: {{error}}",
"Error uploading file: {{error}}": "파일 업로드 오류: {{error}}", "Error uploading file: {{error}}": "파일 업로드 오류: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "평가", "Evaluations": "평가",
"Everyone": "공개", "Everyone": "공개",
"Exa API Key": "Exa API 키", "Exa API Key": "Exa API 키",
@ -725,6 +744,7 @@
"H2": "제목 2", "H2": "제목 2",
"H3": "제목 3", "H3": "제목 3",
"Haptic Feedback": "햅틱 피드백", "Haptic Feedback": "햅틱 피드백",
"Height": "",
"Hello, {{name}}": "안녕하세요, {{name}}", "Hello, {{name}}": "안녕하세요, {{name}}",
"Help": "도움말", "Help": "도움말",
"Help us create the best community leaderboard by sharing your feedback history!": "당신의 피드백 기록을 공유함으로서 최고의 커뮤니티 리더보드를 만드는데 도와주세요!", "Help us create the best community leaderboard by sharing your feedback history!": "당신의 피드백 기록을 공유함으로서 최고의 커뮤니티 리더보드를 만드는데 도와주세요!",
@ -733,6 +753,7 @@
"Hide": "숨기기", "Hide": "숨기기",
"Hide from Sidebar": "사이드바에서 숨기기", "Hide from Sidebar": "사이드바에서 숨기기",
"Hide Model": "모델 숨기기", "Hide Model": "모델 숨기기",
"High": "",
"High Contrast Mode": "고대비 모드", "High Contrast Mode": "고대비 모드",
"Home": "홈", "Home": "홈",
"Host": "호스트", "Host": "호스트",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "전체 콘텐츠를 포괄적인 처리를 위해 컨텍스트로 삽입하세요. 이는 복잡한 쿼리에 권장됩니다.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "전체 콘텐츠를 포괄적인 처리를 위해 컨텍스트로 삽입하세요. 이는 복잡한 쿼리에 권장됩니다.",
"Input": "입력", "Input": "입력",
"Input commands": "명령어 입력", "Input commands": "명령어 입력",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "변수 입력", "Input Variables": "변수 입력",
"Insert": "삽입", "Insert": "삽입",
"Insert Follow-Up Prompt to Input": "후속 질문을 메시지 입력란에 삽입(자동 전송 없이)", "Insert Follow-Up Prompt to Input": "후속 질문을 메시지 입력란에 삽입(자동 전송 없이)",
@ -789,6 +811,7 @@
"Invalid file content": "잘못된 파일 내용", "Invalid file content": "잘못된 파일 내용",
"Invalid file format.": "잘못된 파일 형식", "Invalid file format.": "잘못된 파일 형식",
"Invalid JSON file": "잘못된 JSON 파일", "Invalid JSON file": "잘못된 JSON 파일",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "추가 설정에 잘못된 JSON 형식 입력", "Invalid JSON format in Additional Config": "추가 설정에 잘못된 JSON 형식 입력",
"Invalid Tag": "잘못된 태그", "Invalid Tag": "잘못된 태그",
"is typing...": "입력 중...", "is typing...": "입력 중...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "채팅마다 후속 질문이 항상 보이도록 유지", "Keep Follow-Up Prompts in Chat": "채팅마다 후속 질문이 항상 보이도록 유지",
"Keep in Sidebar": "사이드바에 유지", "Keep in Sidebar": "사이드바에 유지",
"Key": "키", "Key": "키",
"Key is required": "",
"Keyboard shortcuts": "키보드 단축키", "Keyboard shortcuts": "키보드 단축키",
"Knowledge": "지식 기반", "Knowledge": "지식 기반",
"Knowledge Access": "지식 기반 접근", "Knowledge Access": "지식 기반 접근",
"Knowledge Base": "지식 기반", "Knowledge Base": "지식 기반",
"Knowledge created successfully.": "성공적으로 지식 기반이 생성되었습니다", "Knowledge created successfully.": "성공적으로 지식 기반이 생성되었습니다",
"Knowledge deleted successfully.": "성공적으로 지식 기반이 삭제되었습니다", "Knowledge deleted successfully.": "성공적으로 지식 기반이 삭제되었습니다",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "지식 기반 공개 공유", "Knowledge Public Sharing": "지식 기반 공개 공유",
"Knowledge reset successfully.": "성공적으로 지식 기반이 초기화되었습니다", "Knowledge reset successfully.": "성공적으로 지식 기반이 초기화되었습니다",
"Knowledge updated successfully": "성공적으로 지식 기반이 업데이트되었습니다", "Knowledge updated successfully": "성공적으로 지식 기반이 업데이트되었습니다",
@ -852,6 +878,7 @@
"Local Task Model": "로컬 작업 모델", "Local Task Model": "로컬 작업 모델",
"Location access not allowed": "위치 접근이 허용되지 않음", "Location access not allowed": "위치 접근이 허용되지 않음",
"Lost": "패배", "Lost": "패배",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "OpenWebUI 커뮤니티에 의해 개발됨", "Made by Open WebUI Community": "OpenWebUI 커뮤니티에 의해 개발됨",
"Make password visible in the user interface": "비밀번호 보이기", "Make password visible in the user interface": "비밀번호 보이기",
@ -873,6 +900,7 @@
"Max Upload Size": "업로드 최대 사이즈", "Max Upload Size": "업로드 최대 사이즈",
"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": "5월", "May": "5월",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLM에서 접근할 수 있는 메모리는 여기에 표시됩니다.", "Memories accessible by LLMs will be shown here.": "LLM에서 접근할 수 있는 메모리는 여기에 표시됩니다.",
"Memory": "메모리", "Memory": "메모리",
"Memory added successfully": "성공적으로 메모리가 추가되었습니다", "Memory added successfully": "성공적으로 메모리가 추가되었습니다",
@ -908,6 +936,7 @@
"Model ID is required.": "모델 ID가 필요합니다", "Model ID is required.": "모델 ID가 필요합니다",
"Model IDs": "모델 IDs", "Model IDs": "모델 IDs",
"Model Name": "모델 이름", "Model Name": "모델 이름",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "모델 이름이 필요합니다", "Model Name is required.": "모델 이름이 필요합니다",
"Model not selected": "모델이 선택되지 않았습니다.", "Model not selected": "모델이 선택되지 않았습니다.",
"Model Params": "모델 파라미터", "Model Params": "모델 파라미터",
@ -926,6 +955,7 @@
"More Concise": "더 간결하게", "More Concise": "더 간결하게",
"More Options": "추가 설정", "More Options": "추가 설정",
"Name": "이름", "Name": "이름",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "지식 기반 이름을 지정하세요", "Name your knowledge base": "지식 기반 이름을 지정하세요",
"Native": "네이티브", "Native": "네이티브",
"New Button": "새 버튼", "New Button": "새 버튼",
@ -960,7 +990,9 @@
"No search query generated": "검색어가 생성되지 않았습니다.", "No search query generated": "검색어가 생성되지 않았습니다.",
"No source available": "사용 가능한 소스가 없습니다.", "No source available": "사용 가능한 소스가 없습니다.",
"No users were found.": "사용자를 찾을 수 없습니다.", "No users were found.": "사용자를 찾을 수 없습니다.",
"No valves": "",
"No valves to update": "업데이트 할 밸브가 없습니다.", "No valves to update": "업데이트 할 밸브가 없습니다.",
"Node Ids": "",
"None": "없음", "None": "없음",
"Not factually correct": "사실상 맞지 않음", "Not factually correct": "사실상 맞지 않음",
"Not helpful": "도움이 되지않음", "Not helpful": "도움이 되지않음",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "브랜치 변경 시 스크롤", "Scroll On Branch Change": "브랜치 변경 시 스크롤",
"Search": "검색", "Search": "검색",
"Search a model": "모델 검색", "Search a model": "모델 검색",
"Search all emojis": "",
"Search Base": "검색 기반", "Search Base": "검색 기반",
"Search Chats": "채팅 검색", "Search Chats": "채팅 검색",
"Search Collection": "컬렉션 검색", "Search Collection": "컬렉션 검색",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "설명은 readme.md를 참조하세요.", "See readme.md for instructions": "설명은 readme.md를 참조하세요.",
"See what's new": "새로운 기능 보기", "See what's new": "새로운 기능 보기",
"Seed": "시드", "Seed": "시드",
"Select": "",
"Select a base model": "기본 모델 선택", "Select a base model": "기본 모델 선택",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "대화를 선택하여 미리 보기", "Select a conversation to preview": "대화를 선택하여 미리 보기",
"Select a engine": "엔진 선택", "Select a engine": "엔진 선택",
"Select a function": "함수 선택", "Select a function": "함수 선택",
"Select a group": "그룹 선택", "Select a group": "그룹 선택",
"Select a language": "",
"Select a mode": "",
"Select a model": "모델 선택", "Select a model": "모델 선택",
"Select a model (optional)": "",
"Select a pipeline": "파이프라인 선택", "Select a pipeline": "파이프라인 선택",
"Select a pipeline url": "파이프라인 URL 선택", "Select a pipeline url": "파이프라인 URL 선택",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "도구 선택", "Select a tool": "도구 선택",
"Select a voice": "",
"Select an auth method": "인증 방법 선택", "Select an auth method": "인증 방법 선택",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Ollama 인스턴스 선택", "Select an Ollama instance": "Ollama 인스턴스 선택",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "엔진 선택", "Select Engine": "엔진 선택",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "지식 기반 선택", "Select Knowledge": "지식 기반 선택",
"Select only one model to call": "음성 기능을 위해서는 모델을 하나만 선택해야 합니다.", "Select only one model to call": "음성 기능을 위해서는 모델을 하나만 선택해야 합니다.",
"Selected model(s) do not support image inputs": "선택한 모델은 이미지 입력을 지원하지 않습니다.", "Selected model(s) do not support image inputs": "선택한 모델은 이미지 입력을 지원하지 않습니다.",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API 키", "Serply API Key": "Serply API 키",
"Serpstack API Key": "Serpstack API 키", "Serpstack API Key": "Serpstack API 키",
"Server connection verified": "서버 연결 확인됨", "Server connection verified": "서버 연결 확인됨",
"Session": "",
"Set as default": "기본값으로 설정", "Set as default": "기본값으로 설정",
"Set CFG Scale": "CFG Scale 설정", "Set CFG Scale": "CFG Scale 설정",
"Set Default Model": "기본 모델 설정", "Set Default Model": "기본 모델 설정",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "캐시 무시", "Skip Cache": "캐시 무시",
"Skip the cache and re-run the inference. Defaults to False.": "캐시를 무시하고 추론을 다시 실행합니다. 기본값은 False입니다.", "Skip the cache and re-run the inference. Defaults to False.": "캐시를 무시하고 추론을 다시 실행합니다. 기본값은 False입니다.",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "출처", "Source": "출처",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "서식이 적용된 PDF 내보내기", "Stylized PDF Export": "서식이 적용된 PDF 내보내기",
"Subtitle (e.g. about the Roman Empire)": "자막 (예: 로마 황제)", "Subtitle (e.g. about the Roman Empire)": "자막 (예: 로마 황제)",
"Success": "성공", "Success": "성공",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "성공적으로 업데이트되었습니다.", "Successfully updated.": "성공적으로 업데이트되었습니다.",
"Suggest a change": "변경 제안", "Suggest a change": "변경 제안",
"Suggested": "제안", "Suggested": "제안",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "최대 파일 크기(MB). 만약 파일 크기가 한도를 초과할 시, 파일은 업로드되지 않습니다", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "최대 파일 크기(MB). 만약 파일 크기가 한도를 초과할 시, 파일은 업로드되지 않습니다",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "하나의 채팅에서는 사용가능한 최대 파일 수가 있습니다. 만약 파일 수가 한도를 초과할 시, 파일은 업로드되지 않습니다.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "하나의 채팅에서는 사용가능한 최대 파일 수가 있습니다. 만약 파일 수가 한도를 초과할 시, 파일은 업로드되지 않습니다.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "텍스트의 출력 형식입니다. 'json', 'markdown', 또는 'html'이 될 수 있습니다. 기본값은 'markdown'입니다.", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "텍스트의 출력 형식입니다. 'json', 'markdown', 또는 'html'이 될 수 있습니다. 기본값은 'markdown'입니다.",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "점수는 0.0(0%)에서 1.0(100%) 사이의 값이어야 합니다.", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "점수는 0.0(0%)에서 1.0(100%) 사이의 값이어야 합니다.",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "모델의 온도. 온도를 높이면 모델이 더 창의적으로 답변할 수 있습니다.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "모델의 온도. 온도를 높이면 모델이 더 창의적으로 답변할 수 있습니다.",
@ -1439,7 +1495,9 @@
"Upload Files": "파일 업로드", "Upload Files": "파일 업로드",
"Upload Pipeline": "업로드 파이프라인", "Upload Pipeline": "업로드 파이프라인",
"Upload Progress": "업로드 진행 상황", "Upload Progress": "업로드 진행 상황",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "URL 모드", "URL Mode": "URL 모드",
"Usage": "사용량", "Usage": "사용량",
"Use '#' in the prompt input to load and include your knowledge.": "프롬프트 입력에서 '#'를 사용하여 지식 기반을 불러오고 포함하세요.", "Use '#' in the prompt input to load and include your knowledge.": "프롬프트 입력에서 '#'를 사용하여 지식 기반을 불러오고 포함하세요.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "집중 검색 사용", "Using Focused Retrieval": "집중 검색 사용",
"Using the default arena model with all models. Click the plus button to add custom models.": "모든 모델은 기본 아레나 모델을 사용중입니다. 플러스 버튼을 눌러 커스텀 모델을 추가하세요.", "Using the default arena model with all models. Click the plus button to add custom models.": "모든 모델은 기본 아레나 모델을 사용중입니다. 플러스 버튼을 눌러 커스텀 모델을 추가하세요.",
"Valid time units:": "유효 시간 단위:", "Valid time units:": "유효 시간 단위:",
"Validate certificate": "",
"Valves": "밸브", "Valves": "밸브",
"Valves updated": "밸브 업데이트됨", "Valves updated": "밸브 업데이트됨",
"Valves updated successfully": "성공적으로 밸브가 업데이트되었습니다", "Valves updated successfully": "성공적으로 밸브가 업데이트되었습니다",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (로컬)", "Whisper (Local)": "Whisper (로컬)",
"Why?": "이유는?", "Why?": "이유는?",
"Widescreen Mode": "와이드스크린 모드", "Widescreen Mode": "와이드스크린 모드",
"Width": "",
"Won": "승리", "Won": "승리",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "top-k와 함께 작동합니다. 값이 높을수록(예: 0.95) 더 다양한 텍스트가 생성되고, 값이 낮을수록(예: 0.5) 더 집중적이고 보수적인 텍스트가 생성됩니다.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "top-k와 함께 작동합니다. 값이 높을수록(예: 0.95) 더 다양한 텍스트가 생성되고, 값이 낮을수록(예: 0.5) 더 집중적이고 보수적인 텍스트가 생성됩니다.",
"Workspace": "워크스페이스", "Workspace": "워크스페이스",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} susirašinėjimai", "{{user}}'s Chats": "{{user}} susirašinėjimai",
"{{webUIName}} Backend Required": "{{webUIName}} būtinas serveris", "{{webUIName}} Backend Required": "{{webUIName}} būtinas serveris",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "Laukiama paskyros patvirtinimo", "Account Activation Pending": "Laukiama paskyros patvirtinimo",
"Accurate information": "Tiksli informacija", "Accurate information": "Tiksli informacija",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Veiksmai", "Actions": "Veiksmai",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "", "Amazing": "",
"an assistant": "assistentas", "an assistant": "assistentas",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "API raktai", "API keys": "API raktai",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "Baneriai", "Banners": "Baneriai",
"Base Model (From)": "Bazinis modelis", "Base Model (From)": "Bazinis modelis",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "prieš", "before": "prieš",
"Being lazy": "Būvimas tingiu", "Being lazy": "Būvimas tingiu",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "Keisti slaptažodį", "Change Password": "Keisti slaptažodį",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI bazės nuoroda privaloma", "ComfyUI Base URL is required.": "ComfyUI bazės nuoroda privaloma",
"ComfyUI Workflow": "", "ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "", "ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Command", "Command": "Command",
"Comment": "", "Comment": "",
"Completions": "", "Completions": "",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Kelios užklausos vienu metu", "Concurrent Requests": "Kelios užklausos vienu metu",
"Config imported successfully": "",
"Configure": "", "Configure": "",
"Confirm": "Patvrtinti", "Confirm": "Patvrtinti",
"Confirm Password": "Patvirtinkite slaptažodį", "Confirm Password": "Patvirtinkite slaptažodį",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Gruodis", "December": "Gruodis",
"Deepgram": "",
"Default": "Numatytasis", "Default": "Numatytasis",
"Default (Open AI)": "", "Default (Open AI)": "",
"Default (SentenceTransformers)": "Numatytasis (SentenceTransformers)", "Default (SentenceTransformers)": "Numatytasis (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "", "Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Įveskite GitHub Raw nuorodą", "Enter Github Raw URL": "Įveskite GitHub Raw nuorodą",
"Enter Google PSE API Key": "Įveskite Google PSE API raktą", "Enter Google PSE API Key": "Įveskite Google PSE API raktą",
"Enter Google PSE Engine Id": "Įveskite Google PSE variklio ID", "Enter Google PSE Engine Id": "Įveskite Google PSE variklio ID",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Įveskite paveiksliuko dydį (pvz. 512x512)", "Enter Image Size (e.g. 512x512)": "Įveskite paveiksliuko dydį (pvz. 512x512)",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Įveskite nuorodą (pvz. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Įveskite nuorodą (pvz. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Įveskite nuorododą (pvz. http://localhost:11434", "Enter URL (e.g. http://localhost:11434)": "Įveskite nuorododą (pvz. http://localhost:11434",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "Klaida", "Error": "Klaida",
"ERROR": "", "ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "", "Evaluations": "",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "Sveiki, {{name}}", "Hello, {{name}}": "Sveiki, {{name}}",
"Help": "Pagalba", "Help": "Pagalba",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "Paslėpti", "Hide": "Paslėpti",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Įvesties komandos", "Input commands": "Įvesties komandos",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "", "Invalid file format.": "",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Neteisinga žyma", "Invalid Tag": "Neteisinga žyma",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "Klaviatūros trumpiniai", "Keyboard shortcuts": "Klaviatūros trumpiniai",
"Knowledge": "Žinios", "Knowledge": "Žinios",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "", "Knowledge created successfully.": "",
"Knowledge deleted successfully.": "", "Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "", "Knowledge reset successfully.": "",
"Knowledge updated successfully": "", "Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "", "Lost": "",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Sukurta OpenWebUI bendruomenės", "Made by Open WebUI Community": "Sukurta OpenWebUI bendruomenės",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Daugiausiai trys modeliai gali būti parsisiunčiami vienu metu.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Daugiausiai trys modeliai gali būti parsisiunčiami vienu metu.",
"May": "gegužė", "May": "gegužė",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Atminitis prieinama kalbos modelio bus rodoma čia.", "Memories accessible by LLMs will be shown here.": "Atminitis prieinama kalbos modelio bus rodoma čia.",
"Memory": "Atmintis", "Memory": "Atmintis",
"Memory added successfully": "Atmintis pridėta sėkmingai", "Memory added successfully": "Atmintis pridėta sėkmingai",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "", "Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Modelis nepasirinktas", "Model not selected": "Modelis nepasirinktas",
"Model Params": "Modelio parametrai", "Model Params": "Modelio parametrai",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Pavadinimas", "Name": "Pavadinimas",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Paieškos užklausa nesugeneruota", "No search query generated": "Paieškos užklausa nesugeneruota",
"No source available": "Šaltinių nerasta", "No source available": "Šaltinių nerasta",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "Nėra atnaujinamų įeičių", "No valves to update": "Nėra atnaujinamų įeičių",
"Node Ids": "",
"None": "Nėra", "None": "Nėra",
"Not factually correct": "Faktiškai netikslu", "Not factually correct": "Faktiškai netikslu",
"Not helpful": "", "Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Ieškoti", "Search": "Ieškoti",
"Search a model": "Ieškoti modelio", "Search a model": "Ieškoti modelio",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "Ieškoti pokalbiuose", "Search Chats": "Ieškoti pokalbiuose",
"Search Collection": "", "Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Žiūrėti readme.md papildomoms instrukcijoms", "See readme.md for instructions": "Žiūrėti readme.md papildomoms instrukcijoms",
"See what's new": "Žiūrėti naujoves", "See what's new": "Žiūrėti naujoves",
"Seed": "Sėkla", "Seed": "Sėkla",
"Select": "",
"Select a base model": "Pasirinkite bazinį modelį", "Select a base model": "Pasirinkite bazinį modelį",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Pasirinkite variklį", "Select a engine": "Pasirinkite variklį",
"Select a function": "Pasirinkite funkciją", "Select a function": "Pasirinkite funkciją",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Pasirinkti modelį", "Select a model": "Pasirinkti modelį",
"Select a model (optional)": "",
"Select a pipeline": "Pasirinkite procesą", "Select a pipeline": "Pasirinkite procesą",
"Select a pipeline url": "Pasirinkite proceso nuorodą", "Select a pipeline url": "Pasirinkite proceso nuorodą",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Pasirinkite įrankį", "Select a tool": "Pasirinkite įrankį",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "", "Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "", "Select Knowledge": "",
"Select only one model to call": "Pasirinkite vieną modelį", "Select only one model to call": "Pasirinkite vieną modelį",
"Selected model(s) do not support image inputs": "Pasirinkti modeliai nepalaiko vaizdinių užklausų", "Selected model(s) do not support image inputs": "Pasirinkti modeliai nepalaiko vaizdinių užklausų",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API raktas", "Serply API Key": "Serply API raktas",
"Serpstack API Key": "Serpstach API raktas", "Serpstack API Key": "Serpstach API raktas",
"Server connection verified": "Serverio sujungimas patvirtintas", "Server connection verified": "Serverio sujungimas patvirtintas",
"Session": "",
"Set as default": "Nustatyti numatytąjį", "Set as default": "Nustatyti numatytąjį",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "Nustatyti numatytąjį modelį", "Set Default Model": "Nustatyti numatytąjį modelį",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Šaltinis", "Source": "Šaltinis",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Subtitras", "Subtitle (e.g. about the Roman Empire)": "Subtitras",
"Success": "Sėkmingai", "Success": "Sėkmingai",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Sėkmingai atnaujinta.", "Successfully updated.": "Sėkmingai atnaujinta.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Siūloma", "Suggested": "Siūloma",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Rezultatas turėtų būti tarp 0.0 (0%) ir 1.0 (100%)", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Rezultatas turėtų būti tarp 0.0 (0%) ir 1.0 (100%)",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Atnaujinti rinkmenas", "Upload Files": "Atnaujinti rinkmenas",
"Upload Pipeline": "Atnaujinti procesą", "Upload Pipeline": "Atnaujinti procesą",
"Upload Progress": "Įkėlimo progresas", "Upload Progress": "Įkėlimo progresas",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "URL režimas", "URL Mode": "URL režimas",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "", "Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "Teisingūs laiko vienetai :", "Valid time units:": "Teisingūs laiko vienetai :",
"Validate certificate": "",
"Valves": "Įeitys", "Valves": "Įeitys",
"Valves updated": "Įeitys atnaujintos", "Valves updated": "Įeitys atnaujintos",
"Valves updated successfully": "Įeitys atnaujintos sėkmingai", "Valves updated successfully": "Įeitys atnaujintos sėkmingai",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (lokalus)", "Whisper (Local)": "Whisper (lokalus)",
"Why?": "", "Why?": "",
"Widescreen Mode": "Plataus ekrano rėžimas", "Widescreen Mode": "Plataus ekrano rėžimas",
"Width": "",
"Won": "", "Won": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Nuostatos", "Workspace": "Nuostatos",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Perbualan {{user}}", "{{user}}'s Chats": "Perbualan {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Backend diperlukan", "{{webUIName}} Backend Required": "{{webUIName}} Backend diperlukan",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "Pengaktifan Akaun belum selesai", "Account Activation Pending": "Pengaktifan Akaun belum selesai",
"Accurate information": "Informasi tepat", "Accurate information": "Informasi tepat",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Tindakan", "Actions": "Tindakan",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "", "Amazing": "",
"an assistant": "seorang pembantu", "an assistant": "seorang pembantu",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "Kekunci API", "API keys": "Kekunci API",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "Sepanduk", "Banners": "Sepanduk",
"Base Model (From)": "Model Asas (Dari)", "Base Model (From)": "Model Asas (Dari)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "sebelum,", "before": "sebelum,",
"Being lazy": "Menjadi Malas", "Being lazy": "Menjadi Malas",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "Tukar Kata Laluan", "Change Password": "Tukar Kata Laluan",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "URL asas ComfyUI diperlukan", "ComfyUI Base URL is required.": "URL asas ComfyUI diperlukan",
"ComfyUI Workflow": "", "ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "", "ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Arahan", "Command": "Arahan",
"Comment": "", "Comment": "",
"Completions": "", "Completions": "",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Permintaan Serentak", "Concurrent Requests": "Permintaan Serentak",
"Config imported successfully": "",
"Configure": "", "Configure": "",
"Confirm": "Sahkan", "Confirm": "Sahkan",
"Confirm Password": "Sahkan kata laluan", "Confirm Password": "Sahkan kata laluan",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Disember", "December": "Disember",
"Deepgram": "",
"Default": "Lalai", "Default": "Lalai",
"Default (Open AI)": "", "Default (Open AI)": "",
"Default (SentenceTransformers)": "Lalai (SentenceTransformers)", "Default (SentenceTransformers)": "Lalai (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "", "Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Masukkan URL 'Github Raw'", "Enter Github Raw URL": "Masukkan URL 'Github Raw'",
"Enter Google PSE API Key": "Masukkan kunci API Google PSE", "Enter Google PSE API Key": "Masukkan kunci API Google PSE",
"Enter Google PSE Engine Id": "Masukkan Id Enjin Google PSE", "Enter Google PSE Engine Id": "Masukkan Id Enjin Google PSE",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Masukkan Saiz Imej (cth 512x512)", "Enter Image Size (e.g. 512x512)": "Masukkan Saiz Imej (cth 512x512)",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Masukkan URL (cth http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Masukkan URL (cth http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Masukkan URL (cth http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Masukkan URL (cth http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "Ralat", "Error": "Ralat",
"ERROR": "", "ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "", "Evaluations": "",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "Hello, {{name}}", "Hello, {{name}}": "Hello, {{name}}",
"Help": "Bantuan", "Help": "Bantuan",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "Sembunyi", "Hide": "Sembunyi",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Masukkan Arahan", "Input commands": "Masukkan Arahan",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "", "Invalid file format.": "",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Tag tidak sah", "Invalid Tag": "Tag tidak sah",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "Pintasan papan kekunci", "Keyboard shortcuts": "Pintasan papan kekunci",
"Knowledge": "Pengetahuan", "Knowledge": "Pengetahuan",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "", "Knowledge created successfully.": "",
"Knowledge deleted successfully.": "", "Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "", "Knowledge reset successfully.": "",
"Knowledge updated successfully": "", "Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "", "Lost": "",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Dicipta oleh Komuniti OpenWebUI", "Made by Open WebUI Community": "Dicipta oleh Komuniti OpenWebUI",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimum 3 model boleh dimuat turun serentak. Sila cuba sebentar lagi.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimum 3 model boleh dimuat turun serentak. Sila cuba sebentar lagi.",
"May": "Mei", "May": "Mei",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Memori yang boleh diakses oleh LLM akan ditunjukkan di sini.", "Memories accessible by LLMs will be shown here.": "Memori yang boleh diakses oleh LLM akan ditunjukkan di sini.",
"Memory": "Memori", "Memory": "Memori",
"Memory added successfully": "Memori berjaya ditambah", "Memory added successfully": "Memori berjaya ditambah",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "", "Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Model tidak dipilih", "Model not selected": "Model tidak dipilih",
"Model Params": "Model Params", "Model Params": "Model Params",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Nama", "Name": "Nama",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Tiada pertanyaan carian dijana", "No search query generated": "Tiada pertanyaan carian dijana",
"No source available": "Tiada sumber tersedia", "No source available": "Tiada sumber tersedia",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "Tiada 'valve' untuk dikemas kini", "No valves to update": "Tiada 'valve' untuk dikemas kini",
"Node Ids": "",
"None": "Tiada", "None": "Tiada",
"Not factually correct": "Tidak tepat secara fakta", "Not factually correct": "Tidak tepat secara fakta",
"Not helpful": "", "Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Carian", "Search": "Carian",
"Search a model": "Cari Model", "Search a model": "Cari Model",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "Cari Perbualan", "Search Chats": "Cari Perbualan",
"Search Collection": "", "Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Lihat readme.md untuk arahan", "See readme.md for instructions": "Lihat readme.md untuk arahan",
"See what's new": "Lihat apa yang terbaru", "See what's new": "Lihat apa yang terbaru",
"Seed": "Benih", "Seed": "Benih",
"Select": "",
"Select a base model": "Pilih model asas", "Select a base model": "Pilih model asas",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Pilih enjin", "Select a engine": "Pilih enjin",
"Select a function": "Pilih fungsi", "Select a function": "Pilih fungsi",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Pilih model", "Select a model": "Pilih model",
"Select a model (optional)": "",
"Select a pipeline": "Pilih 'pipeline'", "Select a pipeline": "Pilih 'pipeline'",
"Select a pipeline url": "Pilih url 'pipeline'", "Select a pipeline url": "Pilih url 'pipeline'",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Pilih alat", "Select a tool": "Pilih alat",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "", "Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "", "Select Knowledge": "",
"Select only one model to call": "Pilih hanya satu model untuk dipanggil", "Select only one model to call": "Pilih hanya satu model untuk dipanggil",
"Selected model(s) do not support image inputs": "Model dipilih tidak menyokong input imej", "Selected model(s) do not support image inputs": "Model dipilih tidak menyokong input imej",
@ -1215,6 +1262,7 @@
"Serply API Key": "Kunci API Serply", "Serply API Key": "Kunci API Serply",
"Serpstack API Key": "Kunci API Serpstack", "Serpstack API Key": "Kunci API Serpstack",
"Server connection verified": "Sambungan pelayan disahkan", "Server connection verified": "Sambungan pelayan disahkan",
"Session": "",
"Set as default": "Tetapkan sebagai lalai", "Set as default": "Tetapkan sebagai lalai",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "Tetapkan Model Lalai", "Set Default Model": "Tetapkan Model Lalai",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Sumber", "Source": "Sumber",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Sari kata (cth tentang Kesultanan Melaka)", "Subtitle (e.g. about the Roman Empire)": "Sari kata (cth tentang Kesultanan Melaka)",
"Success": "Berjaya", "Success": "Berjaya",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Berjaya Dikemaskini", "Successfully updated.": "Berjaya Dikemaskini",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Cadangan", "Suggested": "Cadangan",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Skor hendaklah berada diantara 0.0 (0%) dan 1.0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Skor hendaklah berada diantara 0.0 (0%) dan 1.0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Muatnaik fail", "Upload Files": "Muatnaik fail",
"Upload Pipeline": "Muatnaik 'Pipeline'", "Upload Pipeline": "Muatnaik 'Pipeline'",
"Upload Progress": "Kemajuan Muatnaik", "Upload Progress": "Kemajuan Muatnaik",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "Mod URL", "URL Mode": "Mod URL",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "", "Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "Unit masa yang sah:", "Valid time units:": "Unit masa yang sah:",
"Validate certificate": "",
"Valves": "'Valves'", "Valves": "'Valves'",
"Valves updated": "'Valves' dikemaskini", "Valves updated": "'Valves' dikemaskini",
"Valves updated successfully": "'Valves' berjaya dikemaskini", "Valves updated successfully": "'Valves' berjaya dikemaskini",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Local)", "Whisper (Local)": "Whisper (Local)",
"Why?": "", "Why?": "",
"Widescreen Mode": "Mod Skrin Lebar", "Widescreen Mode": "Mod Skrin Lebar",
"Width": "",
"Won": "", "Won": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Ruangan Kerja", "Workspace": "Ruangan Kerja",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} svar", "{{COUNT}} Replies": "{{COUNT}} svar",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} sine samtaler", "{{user}}'s Chats": "{{user}} sine samtaler",
"{{webUIName}} Backend Required": "Backend til {{webUIName}} kreves", "{{webUIName}} Backend Required": "Backend til {{webUIName}} kreves",
"*Prompt node ID(s) are required for image generation": "Node-ID-er for ledetekst kreves for generering av bilder", "*Prompt node ID(s) are required for image generation": "Node-ID-er for ledetekst kreves for generering av bilder",
@ -29,6 +30,7 @@
"Account Activation Pending": "Venter på kontoaktivering", "Account Activation Pending": "Venter på kontoaktivering",
"Accurate information": "Nøyaktig informasjon", "Accurate information": "Nøyaktig informasjon",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Handlinger", "Actions": "Handlinger",
"Activate": "Aktiver", "Activate": "Aktiver",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktiver denne kommandoen ved å skrive inn \"/{{COMMAND}}\" i chattens inntastingsfelt.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktiver denne kommandoen ved å skrive inn \"/{{COMMAND}}\" i chattens inntastingsfelt.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "Flott", "Amazing": "Flott",
"an assistant": "en assistent", "an assistant": "en assistent",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Analysert", "Analyzed": "Analysert",
"Analyzing...": "Analyserer...", "Analyzing...": "Analyserer...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Begrensninger for API-nøkkelens endepunkt", "API Key Endpoint Restrictions": "Begrensninger for API-nøkkelens endepunkt",
"API keys": "API-nøkler", "API keys": "API-nøkler",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "Applikasjonens DN", "Application DN": "Applikasjonens DN",
"Application DN Password": "Applikasjonens DN-passord", "Application DN Password": "Applikasjonens DN-passord",
"applies to all users with the \"user\" role": "gjelder for alle brukere med rollen \"user\"", "applies to all users with the \"user\" role": "gjelder for alle brukere med rollen \"user\"",
@ -160,6 +164,7 @@
"Banners": "Bannere", "Banners": "Bannere",
"Base Model (From)": "Grunnmodell (fra)", "Base Model (From)": "Grunnmodell (fra)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "før", "before": "før",
"Being lazy": "Er lat", "Being lazy": "Er lat",
"Beta": "Beta", "Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "Sertifikatbane", "Certificate Path": "Sertifikatbane",
"Change Password": "Endre passord", "Change Password": "Endre passord",
"Channel deleted successfully": "",
"Channel Name": "Kanalens navn", "Channel Name": "Kanalens navn",
"Channel updated successfully": "",
"Channels": "Kanaler", "Channels": "Kanaler",
"Character": "Karakter", "Character": "Karakter",
"Character limit for autocomplete generation input": "Begrensning av tegn for generering av autofullføring", "Character limit for autocomplete generation input": "Begrensning av tegn for generering av autofullføring",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Kodekjøring", "Code execution": "Kodekjøring",
"Code Execution": "Kodekjøring", "Code Execution": "Kodekjøring",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "Absolutt URL for ComfyUI kreves.", "ComfyUI Base URL is required.": "Absolutt URL for ComfyUI kreves.",
"ComfyUI Workflow": "ComfyUI-arbeidsflyt", "ComfyUI Workflow": "ComfyUI-arbeidsflyt",
"ComfyUI Workflow Nodes": "ComfyUI-arbeidsflytnoder", "ComfyUI Workflow Nodes": "ComfyUI-arbeidsflytnoder",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Kommando", "Command": "Kommando",
"Comment": "", "Comment": "",
"Completions": "Fullføringer", "Completions": "Fullføringer",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Samtidige forespørsler", "Concurrent Requests": "Samtidige forespørsler",
"Config imported successfully": "",
"Configure": "Konfigurer", "Configure": "Konfigurer",
"Confirm": "Bekreft", "Confirm": "Bekreft",
"Confirm Password": "Bekreft passordet", "Confirm Password": "Bekreft passordet",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "desember", "December": "desember",
"Deepgram": "",
"Default": "Standard", "Default": "Standard",
"Default (Open AI)": "Standard (Open AI)", "Default (Open AI)": "Standard (Open AI)",
"Default (SentenceTransformers)": "Standard (SentenceTransformers)", "Default (SentenceTransformers)": "Standard (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Direkte koblinger", "Direct Connections": "Direkte koblinger",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Med direkte koblinger kan brukerne koble til egne OpenAI-kompatible API-endepunkter.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Med direkte koblinger kan brukerne koble til egne OpenAI-kompatible API-endepunkter.",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "Angi beskrivelse", "Enter description": "Angi beskrivelse",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Angi Github Raw-URL", "Enter Github Raw URL": "Angi Github Raw-URL",
"Enter Google PSE API Key": "Angi API-nøkkel for Google PSE", "Enter Google PSE API Key": "Angi API-nøkkel for Google PSE",
"Enter Google PSE Engine Id": "Angi motor-ID for Google PSE", "Enter Google PSE Engine Id": "Angi motor-ID for Google PSE",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Angi bildestørrelse (f.eks. 512x512)", "Enter Image Size (e.g. 512x512)": "Angi bildestørrelse (f.eks. 512x512)",
"Enter Jina API Key": "Angi API-nøkkel for Jina", "Enter Jina API Key": "Angi API-nøkkel for Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Angi URL (f.eks. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Angi URL (f.eks. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Angi URL (f.eks. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Angi URL (f.eks. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Angi URL for webhook", "Enter your webhook URL": "Angi URL for webhook",
"Error": "Feil", "Error": "Feil",
"ERROR": "FEIL", "ERROR": "FEIL",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Feil under tilgang til Google Disk: {{error}}", "Error accessing Google Drive: {{error}}": "Feil under tilgang til Google Disk: {{error}}",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "Feil under opplasting av fil: {{error}}", "Error uploading file: {{error}}": "Feil under opplasting av fil: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Vurderinger", "Evaluations": "Vurderinger",
"Everyone": "", "Everyone": "",
"Exa API Key": "API-nøkkel for Exa", "Exa API Key": "API-nøkkel for Exa",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Haptisk tilbakemelding", "Haptic Feedback": "Haptisk tilbakemelding",
"Height": "",
"Hello, {{name}}": "Hei, {{name}}!", "Hello, {{name}}": "Hei, {{name}}!",
"Help": "Hjelp", "Help": "Hjelp",
"Help us create the best community leaderboard by sharing your feedback history!": "Hjelp oss med å skape den beste fellesskapsledertavlen ved å dele tilbakemeldingshistorikken din.", "Help us create the best community leaderboard by sharing your feedback history!": "Hjelp oss med å skape den beste fellesskapsledertavlen ved å dele tilbakemeldingshistorikken din.",
@ -733,6 +753,7 @@
"Hide": "Skjul", "Hide": "Skjul",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "Hjem", "Home": "Hjem",
"Host": "Host", "Host": "Host",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Inntast kommandoer", "Input commands": "Inntast kommandoer",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "Ugyldig filformat.", "Invalid file format.": "Ugyldig filformat.",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Ugyldig etikett", "Invalid Tag": "Ugyldig etikett",
"is typing...": "Skriver...", "is typing...": "Skriver...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "Nøkkel", "Key": "Nøkkel",
"Key is required": "",
"Keyboard shortcuts": "Hurtigtaster", "Keyboard shortcuts": "Hurtigtaster",
"Knowledge": "Kunnskap", "Knowledge": "Kunnskap",
"Knowledge Access": "Tilgang til kunnskap", "Knowledge Access": "Tilgang til kunnskap",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Kunnskap opprettet.", "Knowledge created successfully.": "Kunnskap opprettet.",
"Knowledge deleted successfully.": "Kunnskap slettet.", "Knowledge deleted successfully.": "Kunnskap slettet.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Tilbakestilling av kunnskap vellykket.", "Knowledge reset successfully.": "Tilbakestilling av kunnskap vellykket.",
"Knowledge updated successfully": "Kunnskap oppdatert", "Knowledge updated successfully": "Kunnskap oppdatert",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "Tilgang til lokasjon er ikke tillatt", "Location access not allowed": "Tilgang til lokasjon er ikke tillatt",
"Lost": "Tapt", "Lost": "Tapt",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Laget av OpenWebUI-fellesskapet", "Made by Open WebUI Community": "Laget av OpenWebUI-fellesskapet",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "Maks størrelse på opplasting", "Max Upload Size": "Maks størrelse på opplasting",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimalt tre modeller kan lastes ned samtidig. Prøv igjen senere.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimalt tre modeller kan lastes ned samtidig. Prøv igjen senere.",
"May": "mai", "May": "mai",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Språkmodellers tilgjengelige minner vises her.", "Memories accessible by LLMs will be shown here.": "Språkmodellers tilgjengelige minner vises her.",
"Memory": "Minne", "Memory": "Minne",
"Memory added successfully": "Minne lagt til", "Memory added successfully": "Minne lagt til",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "Modell-ID-er", "Model IDs": "Modell-ID-er",
"Model Name": "Modell", "Model Name": "Modell",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Modell ikke valgt", "Model not selected": "Modell ikke valgt",
"Model Params": "Modellparametere", "Model Params": "Modellparametere",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Navn", "Name": "Navn",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Gi kunnskapsbasen et navn", "Name your knowledge base": "Gi kunnskapsbasen et navn",
"Native": "Opprinnelig", "Native": "Opprinnelig",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Ingen søkespørringer er generert", "No search query generated": "Ingen søkespørringer er generert",
"No source available": "Ingen kilde tilgjengelig", "No source available": "Ingen kilde tilgjengelig",
"No users were found.": "Finner ingen brukere", "No users were found.": "Finner ingen brukere",
"No valves": "",
"No valves to update": "Ingen ventiler å oppdatere", "No valves to update": "Ingen ventiler å oppdatere",
"Node Ids": "",
"None": "Ingen", "None": "Ingen",
"Not factually correct": "Uriktig informasjon", "Not factually correct": "Uriktig informasjon",
"Not helpful": "Ikke nyttig", "Not helpful": "Ikke nyttig",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Søk", "Search": "Søk",
"Search a model": "Søk etter en modell", "Search a model": "Søk etter en modell",
"Search all emojis": "",
"Search Base": "Søke etter base", "Search Base": "Søke etter base",
"Search Chats": "Søk etter chatter", "Search Chats": "Søk etter chatter",
"Search Collection": "Søk etter samling", "Search Collection": "Søk etter samling",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Se readme.md for å få instruksjoner", "See readme.md for instructions": "Se readme.md for å få instruksjoner",
"See what's new": "Se hva som er nytt", "See what's new": "Se hva som er nytt",
"Seed": "Seed", "Seed": "Seed",
"Select": "",
"Select a base model": "Velg en grunnmodell", "Select a base model": "Velg en grunnmodell",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Velg en motor", "Select a engine": "Velg en motor",
"Select a function": "Velg en funksjon", "Select a function": "Velg en funksjon",
"Select a group": "Velg en gruppe", "Select a group": "Velg en gruppe",
"Select a language": "",
"Select a mode": "",
"Select a model": "Velg en modell", "Select a model": "Velg en modell",
"Select a model (optional)": "",
"Select a pipeline": "Velg en pipeline", "Select a pipeline": "Velg en pipeline",
"Select a pipeline url": "Velg en pipeline-URL", "Select a pipeline url": "Velg en pipeline-URL",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Velg et verktøy", "Select a tool": "Velg et verktøy",
"Select a voice": "",
"Select an auth method": "Velg en autentiseringsmetode", "Select an auth method": "Velg en autentiseringsmetode",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Velg en Ollama-forekomst", "Select an Ollama instance": "Velg en Ollama-forekomst",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Velg motor", "Select Engine": "Velg motor",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Velg kunnskap", "Select Knowledge": "Velg kunnskap",
"Select only one model to call": "Velg bare én modell som skal kalles", "Select only one model to call": "Velg bare én modell som skal kalles",
"Selected model(s) do not support image inputs": "Valgte modell(er) støtter ikke bildeinndata", "Selected model(s) do not support image inputs": "Valgte modell(er) støtter ikke bildeinndata",
@ -1215,6 +1262,7 @@
"Serply API Key": "API-nøkkel for Serply", "Serply API Key": "API-nøkkel for Serply",
"Serpstack API Key": "API-nøkkel for Serpstack", "Serpstack API Key": "API-nøkkel for Serpstack",
"Server connection verified": "Servertilkobling bekreftet", "Server connection verified": "Servertilkobling bekreftet",
"Session": "",
"Set as default": "Angi som standard", "Set as default": "Angi som standard",
"Set CFG Scale": "Angi CFG-skala", "Set CFG Scale": "Angi CFG-skala",
"Set Default Model": "Angi standard modell", "Set Default Model": "Angi standard modell",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Kilde", "Source": "Kilde",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Undertittel (f.eks. om romerriket)", "Subtitle (e.g. about the Roman Empire)": "Undertittel (f.eks. om romerriket)",
"Success": "Suksess", "Success": "Suksess",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Oppdatert.", "Successfully updated.": "Oppdatert.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Foreslått", "Suggested": "Foreslått",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Den maksimale filstørrelsen i MB. Hvis en filstørrelse overskrider denne grensen, blir ikke filen lastet opp.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Den maksimale filstørrelsen i MB. Hvis en filstørrelse overskrider denne grensen, blir ikke filen lastet opp.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Maksimalt antall filer som kan brukes samtidig i chatten. Hvis antallet filer overskrider denne grensen, blir de ikke lastet opp.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Maksimalt antall filer som kan brukes samtidig i chatten. Hvis antallet filer overskrider denne grensen, blir de ikke lastet opp.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Poengsummen skal være en verdi mellom 0,0 (0 %) og 1,0 (100 %).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Poengsummen skal være en verdi mellom 0,0 (0 %) og 1,0 (100 %).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Last opp filer", "Upload Files": "Last opp filer",
"Upload Pipeline": "Last opp pipeline", "Upload Pipeline": "Last opp pipeline",
"Upload Progress": "Opplastingsfremdrift", "Upload Progress": "Opplastingsfremdrift",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "URL-modus", "URL Mode": "URL-modus",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "Bruk # i ledetekstens inntastingsfelt for å laste inn og inkludere kunnskapene dine.", "Use '#' in the prompt input to load and include your knowledge.": "Bruk # i ledetekstens inntastingsfelt for å laste inn og inkludere kunnskapene dine.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Bruker standard Arena-modellen med alle modeller. Klikk på plussknappen for å legge til egne modeller.", "Using the default arena model with all models. Click the plus button to add custom models.": "Bruker standard Arena-modellen med alle modeller. Klikk på plussknappen for å legge til egne modeller.",
"Valid time units:": "Gyldige tidsenheter:", "Valid time units:": "Gyldige tidsenheter:",
"Validate certificate": "",
"Valves": "Ventiler", "Valves": "Ventiler",
"Valves updated": "Ventiler oppdatert", "Valves updated": "Ventiler oppdatert",
"Valves updated successfully": "Ventilene er oppdatert", "Valves updated successfully": "Ventilene er oppdatert",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Lokal)", "Whisper (Local)": "Whisper (Lokal)",
"Why?": "Hvorfor?", "Why?": "Hvorfor?",
"Widescreen Mode": "Bredskjermmodus", "Widescreen Mode": "Bredskjermmodus",
"Width": "",
"Won": "Vant", "Won": "Vant",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Arbeidsområde", "Workspace": "Arbeidsområde",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} verborgen regels", "{{COUNT}} hidden lines": "{{COUNT}} verborgen regels",
"{{COUNT}} Replies": "{{COUNT}} antwoorden", "{{COUNT}} Replies": "{{COUNT}} antwoorden",
"{{COUNT}} words": "{{COUNT}} woorden", "{{COUNT}} words": "{{COUNT}} woorden",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}'s chats", "{{user}}'s Chats": "{{user}}'s chats",
"{{webUIName}} Backend Required": "{{webUIName}} Backend verplicht", "{{webUIName}} Backend Required": "{{webUIName}} Backend verplicht",
"*Prompt node ID(s) are required for image generation": "*Prompt node ID('s) zijn vereist voor het genereren van afbeeldingen", "*Prompt node ID(s) are required for image generation": "*Prompt node ID('s) zijn vereist voor het genereren van afbeeldingen",
@ -29,6 +30,7 @@
"Account Activation Pending": "Accountactivatie in afwachting", "Account Activation Pending": "Accountactivatie in afwachting",
"Accurate information": "Accurate informatie", "Accurate information": "Accurate informatie",
"Action": "Actie", "Action": "Actie",
"Action not found": "",
"Actions": "Acties", "Actions": "Acties",
"Activate": "Activeren", "Activate": "Activeren",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activeer dit commando door \"/{{COMMAND}}\" in de chat te typen", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activeer dit commando door \"/{{COMMAND}}\" in de chat te typen",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "Geweldig", "Amazing": "Geweldig",
"an assistant": "een assistent", "an assistant": "een assistent",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Geanalyseerd", "Analyzed": "Geanalyseerd",
"Analyzing...": "Aan het analyseren...", "Analyzing...": "Aan het analyseren...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API-sleutel endpoint-beperkingen", "API Key Endpoint Restrictions": "API-sleutel endpoint-beperkingen",
"API keys": "API-sleutels", "API keys": "API-sleutels",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "Applicatie DN", "Application DN": "Applicatie DN",
"Application DN Password": "Applicatie", "Application DN Password": "Applicatie",
"applies to all users with the \"user\" role": "wordt op alle gebruikers met de \"gebruikersrol\" toegepast", "applies to all users with the \"user\" role": "wordt op alle gebruikers met de \"gebruikersrol\" toegepast",
@ -160,6 +164,7 @@
"Banners": "Banners", "Banners": "Banners",
"Base Model (From)": "Basismodel (Vanaf)", "Base Model (From)": "Basismodel (Vanaf)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "voor", "before": "voor",
"Being lazy": "Lui zijn", "Being lazy": "Lui zijn",
"Beta": "Beta", "Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Audio opnemen", "Capture Audio": "Audio opnemen",
"Certificate Path": "Pad naar certificaat", "Certificate Path": "Pad naar certificaat",
"Change Password": "Wijzig Wachtwoord", "Change Password": "Wijzig Wachtwoord",
"Channel deleted successfully": "",
"Channel Name": "Kanaalnaam", "Channel Name": "Kanaalnaam",
"Channel updated successfully": "",
"Channels": "Kanalen", "Channels": "Kanalen",
"Character": "Karakter", "Character": "Karakter",
"Character limit for autocomplete generation input": "Karakterlimiet voor automatische generatieinvoer", "Character limit for autocomplete generation input": "Karakterlimiet voor automatische generatieinvoer",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Code uitvoeren", "Code execution": "Code uitvoeren",
"Code Execution": "Code-uitvoer", "Code Execution": "Code-uitvoer",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI Base URL is required.", "ComfyUI Base URL is required.": "ComfyUI Base URL is required.",
"ComfyUI Workflow": "ComfyUI workflow", "ComfyUI Workflow": "ComfyUI workflow",
"ComfyUI Workflow Nodes": "ComfyUI workflowknopen", "ComfyUI Workflow Nodes": "ComfyUI workflowknopen",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Commando", "Command": "Commando",
"Comment": "Reactie", "Comment": "Reactie",
"Completions": "Voltooiingen", "Completions": "Voltooiingen",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Gelijktijdige verzoeken", "Concurrent Requests": "Gelijktijdige verzoeken",
"Config imported successfully": "",
"Configure": "Configureer", "Configure": "Configureer",
"Confirm": "Bevestigen", "Confirm": "Bevestigen",
"Confirm Password": "Bevestig wachtwoord", "Confirm Password": "Bevestig wachtwoord",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Datalab Marker API Key vereist.", "Datalab Marker API Key required.": "Datalab Marker API Key vereist.",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "December", "December": "December",
"Deepgram": "",
"Default": "Standaard", "Default": "Standaard",
"Default (Open AI)": "Standaard (Open AI)", "Default (Open AI)": "Standaard (Open AI)",
"Default (SentenceTransformers)": "Standaard (SentenceTransformers)", "Default (SentenceTransformers)": "Standaard (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Directe verbindingen", "Direct Connections": "Directe verbindingen",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Directe verbindingen stellen gebruikers in staat om met hun eigen OpenAI compatibele API-endpoints te verbinden.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Directe verbindingen stellen gebruikers in staat om met hun eigen OpenAI compatibele API-endpoints te verbinden.",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Voer kommagescheiden \"token:bias_waarde\" paren in (bijv. 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Voer kommagescheiden \"token:bias_waarde\" paren in (bijv. 5432:100, 413:-100)",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "Voer beschrijving in", "Enter description": "Voer beschrijving in",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Voer de Github Raw-URL in", "Enter Github Raw URL": "Voer de Github Raw-URL in",
"Enter Google PSE API Key": "Voer de Google PSE API-sleutel in", "Enter Google PSE API Key": "Voer de Google PSE API-sleutel in",
"Enter Google PSE Engine Id": "Voer Google PSE Engine-ID in", "Enter Google PSE Engine Id": "Voer Google PSE Engine-ID in",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Voeg afbeelding formaat toe (Bijv. 512x512)", "Enter Image Size (e.g. 512x512)": "Voeg afbeelding formaat toe (Bijv. 512x512)",
"Enter Jina API Key": "Voer Jina API-sleutel in", "Enter Jina API Key": "Voer Jina API-sleutel in",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Voer Tok K reranker in", "Enter Top K Reranker": "Voer Tok K reranker in",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Voer URL in (Bijv. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Voer URL in (Bijv. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Voer URL in (Bijv. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Voer URL in (Bijv. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Voer je webhook-URL in", "Enter your webhook URL": "Voer je webhook-URL in",
"Error": "Fout", "Error": "Fout",
"ERROR": "ERROR", "ERROR": "ERROR",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Fout bij het benaderen van Google Drive: {{error}}", "Error accessing Google Drive: {{error}}": "Fout bij het benaderen van Google Drive: {{error}}",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "Error bij het uploaden van bestand: {{error}}", "Error uploading file: {{error}}": "Error bij het uploaden van bestand: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Beoordelingen", "Evaluations": "Beoordelingen",
"Everyone": "", "Everyone": "",
"Exa API Key": "Exa API-sleutel", "Exa API Key": "Exa API-sleutel",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Haptische feedback", "Haptic Feedback": "Haptische feedback",
"Height": "",
"Hello, {{name}}": "Hallo, {{name}}", "Hello, {{name}}": "Hallo, {{name}}",
"Help": "Help", "Help": "Help",
"Help us create the best community leaderboard by sharing your feedback history!": "Help ons het beste community leaderboard te maken door je feedbackgeschiedenis te delen!", "Help us create the best community leaderboard by sharing your feedback history!": "Help ons het beste community leaderboard te maken door je feedbackgeschiedenis te delen!",
@ -733,6 +753,7 @@
"Hide": "Verberg", "Hide": "Verberg",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "Verberg model", "Hide Model": "Verberg model",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "Thuis", "Home": "Thuis",
"Host": "Host", "Host": "Host",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecteer de volledige inhoud als context voor uitgebreide verwerking, dit wordt aanbevolen voor complexe query's.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecteer de volledige inhoud als context voor uitgebreide verwerking, dit wordt aanbevolen voor complexe query's.",
"Input": "", "Input": "",
"Input commands": "Voer commando's in", "Input commands": "Voer commando's in",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "Ongeldig bestandsformaat", "Invalid file format.": "Ongeldig bestandsformaat",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Ongeldige Tag", "Invalid Tag": "Ongeldige Tag",
"is typing...": "is aan het schrijven...", "is typing...": "is aan het schrijven...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "Sleutel", "Key": "Sleutel",
"Key is required": "",
"Keyboard shortcuts": "Toetsenbord snelkoppelingen", "Keyboard shortcuts": "Toetsenbord snelkoppelingen",
"Knowledge": "Kennis", "Knowledge": "Kennis",
"Knowledge Access": "Kennistoegang", "Knowledge Access": "Kennistoegang",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Kennis succesvol aangemaakt", "Knowledge created successfully.": "Kennis succesvol aangemaakt",
"Knowledge deleted successfully.": "Kennis succesvol verwijderd", "Knowledge deleted successfully.": "Kennis succesvol verwijderd",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Publieke kennisdeling", "Knowledge Public Sharing": "Publieke kennisdeling",
"Knowledge reset successfully.": "Kennis succesvol gereset", "Knowledge reset successfully.": "Kennis succesvol gereset",
"Knowledge updated successfully": "Kennis succesvol bijgewerkt", "Knowledge updated successfully": "Kennis succesvol bijgewerkt",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "Locatietoegang niet toegestaan", "Location access not allowed": "Locatietoegang niet toegestaan",
"Lost": "Verloren", "Lost": "Verloren",
"Low": "",
"LTR": "LNR", "LTR": "LNR",
"Made by Open WebUI Community": "Gemaakt door OpenWebUI Community", "Made by Open WebUI Community": "Gemaakt door OpenWebUI Community",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "Maximale Uploadgrootte", "Max Upload Size": "Maximale Uploadgrootte",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximaal 3 modellen kunnen tegelijkertijd worden gedownload. Probeer het later opnieuw.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximaal 3 modellen kunnen tegelijkertijd worden gedownload. Probeer het later opnieuw.",
"May": "Mei", "May": "Mei",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Geheugen toegankelijk voor LLMs wordt hier getoond.", "Memories accessible by LLMs will be shown here.": "Geheugen toegankelijk voor LLMs wordt hier getoond.",
"Memory": "Geheugen", "Memory": "Geheugen",
"Memory added successfully": "Geheugen succesvol toegevoegd", "Memory added successfully": "Geheugen succesvol toegevoegd",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "Model-IDs", "Model IDs": "Model-IDs",
"Model Name": "Modelnaam", "Model Name": "Modelnaam",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Model niet geselecteerd", "Model not selected": "Model niet geselecteerd",
"Model Params": "Modelparams", "Model Params": "Modelparams",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Naam", "Name": "Naam",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Geef je kennisbasis een naam", "Name your knowledge base": "Geef je kennisbasis een naam",
"Native": "Native", "Native": "Native",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Geen zoekopdracht gegenereerd", "No search query generated": "Geen zoekopdracht gegenereerd",
"No source available": "Geen bron beschikbaar", "No source available": "Geen bron beschikbaar",
"No users were found.": "Geen gebruikers gevonden", "No users were found.": "Geen gebruikers gevonden",
"No valves": "",
"No valves to update": "Geen kleppen om bij te werken", "No valves to update": "Geen kleppen om bij te werken",
"Node Ids": "",
"None": "Geen", "None": "Geen",
"Not factually correct": "Niet feitelijk juist", "Not factually correct": "Niet feitelijk juist",
"Not helpful": "Niet nuttig", "Not helpful": "Niet nuttig",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Zoeken", "Search": "Zoeken",
"Search a model": "Zoek een model", "Search a model": "Zoek een model",
"Search all emojis": "",
"Search Base": "Zoeken naar basis", "Search Base": "Zoeken naar basis",
"Search Chats": "Chats zoeken", "Search Chats": "Chats zoeken",
"Search Collection": "Zoek naar verzamelingen", "Search Collection": "Zoek naar verzamelingen",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Zie readme.md voor instructies", "See readme.md for instructions": "Zie readme.md voor instructies",
"See what's new": "Zie wat er nieuw is", "See what's new": "Zie wat er nieuw is",
"Seed": "Seed", "Seed": "Seed",
"Select": "",
"Select a base model": "Selecteer een basismodel", "Select a base model": "Selecteer een basismodel",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Selecteer een engine", "Select a engine": "Selecteer een engine",
"Select a function": "Selecteer een functie", "Select a function": "Selecteer een functie",
"Select a group": "Selecteer een groep", "Select a group": "Selecteer een groep",
"Select a language": "",
"Select a mode": "",
"Select a model": "Selecteer een model", "Select a model": "Selecteer een model",
"Select a model (optional)": "",
"Select a pipeline": "Selecteer een pijplijn", "Select a pipeline": "Selecteer een pijplijn",
"Select a pipeline url": "Selecteer een pijplijn-URL", "Select a pipeline url": "Selecteer een pijplijn-URL",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Selecteer een tool", "Select a tool": "Selecteer een tool",
"Select a voice": "",
"Select an auth method": "Selecteer een authenticatiemethode", "Select an auth method": "Selecteer een authenticatiemethode",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Selecteer een Ollama-instantie", "Select an Ollama instance": "Selecteer een Ollama-instantie",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Selecteer Engine", "Select Engine": "Selecteer Engine",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Selecteer kennis", "Select Knowledge": "Selecteer kennis",
"Select only one model to call": "Selecteer maar één model om aan te roepen", "Select only one model to call": "Selecteer maar één model om aan te roepen",
"Selected model(s) do not support image inputs": "Geselecteerde modellen ondersteunen geen beeldinvoer", "Selected model(s) do not support image inputs": "Geselecteerde modellen ondersteunen geen beeldinvoer",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API-sleutel", "Serply API Key": "Serply API-sleutel",
"Serpstack API Key": "Serpstack API-sleutel", "Serpstack API Key": "Serpstack API-sleutel",
"Server connection verified": "Server verbinding geverifieerd", "Server connection verified": "Server verbinding geverifieerd",
"Session": "",
"Set as default": "Stel in als standaard", "Set as default": "Stel in als standaard",
"Set CFG Scale": "Stel CFG-schaal in", "Set CFG Scale": "Stel CFG-schaal in",
"Set Default Model": "Stel Standaardmodel in", "Set Default Model": "Stel Standaardmodel in",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Bron", "Source": "Bron",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Ondertitel (bijv. over de Romeinse Empire)", "Subtitle (e.g. about the Roman Empire)": "Ondertitel (bijv. over de Romeinse Empire)",
"Success": "Succes", "Success": "Succes",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Succesvol bijgewerkt.", "Successfully updated.": "Succesvol bijgewerkt.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Suggestie", "Suggested": "Suggestie",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "De maximale bestandsgrootte in MB. Als het bestand groter is dan deze limiet, wordt het bestand niet geüpload.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "De maximale bestandsgrootte in MB. Als het bestand groter is dan deze limiet, wordt het bestand niet geüpload.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Het maximum aantal bestanden dat in één keer kan worden gebruikt in de chat. Als het aantal bestanden deze limiet overschrijdt, worden de bestanden niet geüpload.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Het maximum aantal bestanden dat in één keer kan worden gebruikt in de chat. Als het aantal bestanden deze limiet overschrijdt, worden de bestanden niet geüpload.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "De score moet een waarde zijn tussen 0.0 (0%) en 1.0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "De score moet een waarde zijn tussen 0.0 (0%) en 1.0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "De temperatuur van het model. De temperatuur groter maken zal het model creatiever laten antwoorden.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "De temperatuur van het model. De temperatuur groter maken zal het model creatiever laten antwoorden.",
@ -1439,7 +1495,9 @@
"Upload Files": "Bestanden uploaden", "Upload Files": "Bestanden uploaden",
"Upload Pipeline": "Upload Pijpleiding", "Upload Pipeline": "Upload Pijpleiding",
"Upload Progress": "Upload Voortgang", "Upload Progress": "Upload Voortgang",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "URL-modus", "URL Mode": "URL-modus",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "Gebruik '#' in de promptinvoer om je kennis te laden en op te nemen.", "Use '#' in the prompt input to load and include your knowledge.": "Gebruik '#' in de promptinvoer om je kennis te laden en op te nemen.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Het standaard arena-model gebruiken met alle modellen. Klik op de plusknop om aangepaste modellen toe te voegen.", "Using the default arena model with all models. Click the plus button to add custom models.": "Het standaard arena-model gebruiken met alle modellen. Klik op de plusknop om aangepaste modellen toe te voegen.",
"Valid time units:": "Geldige tijdseenheden:", "Valid time units:": "Geldige tijdseenheden:",
"Validate certificate": "",
"Valves": "Kleppen", "Valves": "Kleppen",
"Valves updated": "Kleppen bijgewerkt", "Valves updated": "Kleppen bijgewerkt",
"Valves updated successfully": "Kleppen succesvol bijgewerkt", "Valves updated successfully": "Kleppen succesvol bijgewerkt",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Lokaal)", "Whisper (Local)": "Whisper (Lokaal)",
"Why?": "Waarom?", "Why?": "Waarom?",
"Widescreen Mode": "Breedschermmodus", "Widescreen Mode": "Breedschermmodus",
"Width": "",
"Won": "Gewonnen", "Won": "Gewonnen",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Werkt samen met top-k. Een hogere waarde (bijv. 0,95) leidt tot meer diverse tekst, terwijl een lagere waarde (bijv. 0,5) meer gerichte en conservatieve tekst genereert.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Werkt samen met top-k. Een hogere waarde (bijv. 0,95) leidt tot meer diverse tekst, terwijl een lagere waarde (bijv. 0,5) meer gerichte en conservatieve tekst genereert.",
"Workspace": "Werkruimte", "Workspace": "Werkruimte",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} ਦੀਆਂ ਗੱਲਾਂ", "{{user}}'s Chats": "{{user}} ਦੀਆਂ ਗੱਲਾਂ",
"{{webUIName}} Backend Required": "{{webUIName}} ਬੈਕਐਂਡ ਲੋੜੀਂਦਾ ਹੈ", "{{webUIName}} Backend Required": "{{webUIName}} ਬੈਕਐਂਡ ਲੋੜੀਂਦਾ ਹੈ",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "", "Account Activation Pending": "",
"Accurate information": "ਸਹੀ ਜਾਣਕਾਰੀ", "Accurate information": "ਸਹੀ ਜਾਣਕਾਰੀ",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "", "Actions": "",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "", "Amazing": "",
"an assistant": "ਇੱਕ ਸਹਾਇਕ", "an assistant": "ਇੱਕ ਸਹਾਇਕ",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "API ਕੁੰਜੀਆਂ", "API keys": "API ਕੁੰਜੀਆਂ",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "ਬੈਨਰ", "Banners": "ਬੈਨਰ",
"Base Model (From)": "ਬੇਸ ਮਾਡਲ (ਤੋਂ)", "Base Model (From)": "ਬੇਸ ਮਾਡਲ (ਤੋਂ)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "ਪਹਿਲਾਂ", "before": "ਪਹਿਲਾਂ",
"Being lazy": "ਆਲਸੀ ਹੋਣਾ", "Being lazy": "ਆਲਸੀ ਹੋਣਾ",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "ਪਾਸਵਰਡ ਬਦਲੋ", "Change Password": "ਪਾਸਵਰਡ ਬਦਲੋ",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ਕੰਫੀਯੂਆਈ ਬੇਸ URL ਦੀ ਲੋੜ ਹੈ।", "ComfyUI Base URL is required.": "ਕੰਫੀਯੂਆਈ ਬੇਸ URL ਦੀ ਲੋੜ ਹੈ।",
"ComfyUI Workflow": "", "ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "", "ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "ਕਮਾਂਡ", "Command": "ਕਮਾਂਡ",
"Comment": "", "Comment": "",
"Completions": "", "Completions": "",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "ਸਮਕਾਲੀ ਬੇਨਤੀਆਂ", "Concurrent Requests": "ਸਮਕਾਲੀ ਬੇਨਤੀਆਂ",
"Config imported successfully": "",
"Configure": "", "Configure": "",
"Confirm": "", "Confirm": "",
"Confirm Password": "ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ", "Confirm Password": "ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "ਦਸੰਬਰ", "December": "ਦਸੰਬਰ",
"Deepgram": "",
"Default": "ਮੂਲ", "Default": "ਮੂਲ",
"Default (Open AI)": "", "Default (Open AI)": "",
"Default (SentenceTransformers)": "ਮੂਲ (ਸੈਂਟੈਂਸਟ੍ਰਾਂਸਫਾਰਮਰਸ)", "Default (SentenceTransformers)": "ਮੂਲ (ਸੈਂਟੈਂਸਟ੍ਰਾਂਸਫਾਰਮਰਸ)",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "", "Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Github ਕੱਚਾ URL ਦਾਖਲ ਕਰੋ", "Enter Github Raw URL": "Github ਕੱਚਾ URL ਦਾਖਲ ਕਰੋ",
"Enter Google PSE API Key": "Google PSE API ਕੁੰਜੀ ਦਾਖਲ ਕਰੋ", "Enter Google PSE API Key": "Google PSE API ਕੁੰਜੀ ਦਾਖਲ ਕਰੋ",
"Enter Google PSE Engine Id": "Google PSE ਇੰਜਣ ID ਦਾਖਲ ਕਰੋ", "Enter Google PSE Engine Id": "Google PSE ਇੰਜਣ ID ਦਾਖਲ ਕਰੋ",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "ਚਿੱਤਰ ਆਕਾਰ ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ 512x512)", "Enter Image Size (e.g. 512x512)": "ਚਿੱਤਰ ਆਕਾਰ ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ 512x512)",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "URL ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "URL ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "URL ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "URL ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "ਗਲਤੀ", "Error": "ਗਲਤੀ",
"ERROR": "", "ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "", "Evaluations": "",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "ਸਤ ਸ੍ਰੀ ਅਕਾਲ, {{name}}", "Hello, {{name}}": "ਸਤ ਸ੍ਰੀ ਅਕਾਲ, {{name}}",
"Help": "ਮਦਦ", "Help": "ਮਦਦ",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "ਲੁਕਾਓ", "Hide": "ਲੁਕਾਓ",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "ਇਨਪੁਟ ਕਮਾਂਡਾਂ", "Input commands": "ਇਨਪੁਟ ਕਮਾਂਡਾਂ",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "", "Invalid file format.": "",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "ਗਲਤ ਟੈਗ", "Invalid Tag": "ਗਲਤ ਟੈਗ",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "ਕੀਬੋਰਡ ਸ਼ਾਰਟਕਟ", "Keyboard shortcuts": "ਕੀਬੋਰਡ ਸ਼ਾਰਟਕਟ",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "", "Knowledge created successfully.": "",
"Knowledge deleted successfully.": "", "Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "", "Knowledge reset successfully.": "",
"Knowledge updated successfully": "", "Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "", "Lost": "",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਦੁਆਰਾ ਬਣਾਇਆ ਗਿਆ", "Made by Open WebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਦੁਆਰਾ ਬਣਾਇਆ ਗਿਆ",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"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": "ਮਈ",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLMs ਲਈ ਸਮਰੱਥ ਕਾਰਨ ਇੱਕ ਸੂਚਨਾ ਨੂੰ ਸ਼ਾਮਲ ਕੀਤਾ ਗਿਆ ਹੈ।", "Memories accessible by LLMs will be shown here.": "LLMs ਲਈ ਸਮਰੱਥ ਕਾਰਨ ਇੱਕ ਸੂਚਨਾ ਨੂੰ ਸ਼ਾਮਲ ਕੀਤਾ ਗਿਆ ਹੈ।",
"Memory": "ਮੀਮਰ", "Memory": "ਮੀਮਰ",
"Memory added successfully": "", "Memory added successfully": "",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "", "Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "ਮਾਡਲ ਚੁਣਿਆ ਨਹੀਂ ਗਿਆ", "Model not selected": "ਮਾਡਲ ਚੁਣਿਆ ਨਹੀਂ ਗਿਆ",
"Model Params": "ਮਾਡਲ ਪਰਮਜ਼", "Model Params": "ਮਾਡਲ ਪਰਮਜ਼",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "ਨਾਮ", "Name": "ਨਾਮ",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "ਕੋਈ ਖੋਜ ਪੁੱਛਗਿੱਛ ਤਿਆਰ ਨਹੀਂ ਕੀਤੀ ਗਈ", "No search query generated": "ਕੋਈ ਖੋਜ ਪੁੱਛਗਿੱਛ ਤਿਆਰ ਨਹੀਂ ਕੀਤੀ ਗਈ",
"No source available": "ਕੋਈ ਸਰੋਤ ਉਪਲਬਧ ਨਹੀਂ", "No source available": "ਕੋਈ ਸਰੋਤ ਉਪਲਬਧ ਨਹੀਂ",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "", "No valves to update": "",
"Node Ids": "",
"None": "ਕੋਈ ਨਹੀਂ", "None": "ਕੋਈ ਨਹੀਂ",
"Not factually correct": "ਤੱਥਕ ਰੂਪ ਵਿੱਚ ਸਹੀ ਨਹੀਂ", "Not factually correct": "ਤੱਥਕ ਰੂਪ ਵਿੱਚ ਸਹੀ ਨਹੀਂ",
"Not helpful": "", "Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "ਖੋਜ", "Search": "ਖੋਜ",
"Search a model": "ਇੱਕ ਮਾਡਲ ਖੋਜੋ", "Search a model": "ਇੱਕ ਮਾਡਲ ਖੋਜੋ",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "ਖੋਜ ਚੈਟਾਂ", "Search Chats": "ਖੋਜ ਚੈਟਾਂ",
"Search Collection": "", "Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "ਹਦਾਇਤਾਂ ਲਈ readme.md ਵੇਖੋ", "See readme.md for instructions": "ਹਦਾਇਤਾਂ ਲਈ readme.md ਵੇਖੋ",
"See what's new": "ਨਵਾਂ ਕੀ ਹੈ ਵੇਖੋ", "See what's new": "ਨਵਾਂ ਕੀ ਹੈ ਵੇਖੋ",
"Seed": "ਬੀਜ", "Seed": "ਬੀਜ",
"Select": "",
"Select a base model": "ਆਧਾਰ ਮਾਡਲ ਚੁਣੋ", "Select a base model": "ਆਧਾਰ ਮਾਡਲ ਚੁਣੋ",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "", "Select a engine": "",
"Select a function": "", "Select a function": "",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "ਇੱਕ ਮਾਡਲ ਚੁਣੋ", "Select a model": "ਇੱਕ ਮਾਡਲ ਚੁਣੋ",
"Select a model (optional)": "",
"Select a pipeline": "ਪਾਈਪਲਾਈਨ ਚੁਣੋ", "Select a pipeline": "ਪਾਈਪਲਾਈਨ ਚੁਣੋ",
"Select a pipeline url": "ਪਾਈਪਲਾਈਨ URL ਚੁਣੋ", "Select a pipeline url": "ਪਾਈਪਲਾਈਨ URL ਚੁਣੋ",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "", "Select a tool": "",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "", "Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "", "Select Knowledge": "",
"Select only one model to call": "", "Select only one model to call": "",
"Selected model(s) do not support image inputs": "ਚੁਣੇ ਗਏ ਮਾਡਲ(ਆਂ) ਚਿੱਤਰ ਇਨਪੁੱਟਾਂ ਦਾ ਸਮਰਥਨ ਨਹੀਂ ਕਰਦੇ", "Selected model(s) do not support image inputs": "ਚੁਣੇ ਗਏ ਮਾਡਲ(ਆਂ) ਚਿੱਤਰ ਇਨਪੁੱਟਾਂ ਦਾ ਸਮਰਥਨ ਨਹੀਂ ਕਰਦੇ",
@ -1215,6 +1262,7 @@
"Serply API Key": "", "Serply API Key": "",
"Serpstack API Key": "Serpstack API ਕੁੰਜੀ", "Serpstack API Key": "Serpstack API ਕੁੰਜੀ",
"Server connection verified": "ਸਰਵਰ ਕਨੈਕਸ਼ਨ ਦੀ ਪੁਸ਼ਟੀ ਕੀਤੀ ਗਈ", "Server connection verified": "ਸਰਵਰ ਕਨੈਕਸ਼ਨ ਦੀ ਪੁਸ਼ਟੀ ਕੀਤੀ ਗਈ",
"Session": "",
"Set as default": "ਮੂਲ ਵਜੋਂ ਸੈੱਟ ਕਰੋ", "Set as default": "ਮੂਲ ਵਜੋਂ ਸੈੱਟ ਕਰੋ",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "ਮੂਲ ਮਾਡਲ ਸੈੱਟ ਕਰੋ", "Set Default Model": "ਮੂਲ ਮਾਡਲ ਸੈੱਟ ਕਰੋ",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "ਸਰੋਤ", "Source": "ਸਰੋਤ",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "ਉਪਸਿਰਲੇਖ (ਉਦਾਹਰਣ ਲਈ ਰੋਮਨ ਸਾਮਰਾਜ ਬਾਰੇ)", "Subtitle (e.g. about the Roman Empire)": "ਉਪਸਿਰਲੇਖ (ਉਦਾਹਰਣ ਲਈ ਰੋਮਨ ਸਾਮਰਾਜ ਬਾਰੇ)",
"Success": "ਸਫਲਤਾ", "Success": "ਸਫਲਤਾ",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "ਸਫਲਤਾਪੂਰਵਕ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ।", "Successfully updated.": "ਸਫਲਤਾਪੂਰਵਕ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ।",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "ਸੁਝਾਇਆ ਗਿਆ", "Suggested": "ਸੁਝਾਇਆ ਗਿਆ",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "ਸਕੋਰ 0.0 (0%) ਅਤੇ 1.0 (100%) ਦੇ ਵਿਚਕਾਰ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ।", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "ਸਕੋਰ 0.0 (0%) ਅਤੇ 1.0 (100%) ਦੇ ਵਿਚਕਾਰ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ।",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "ਫਾਇਲਾਂ ਅੱਪਲੋਡ ਕਰੋ", "Upload Files": "ਫਾਇਲਾਂ ਅੱਪਲੋਡ ਕਰੋ",
"Upload Pipeline": "", "Upload Pipeline": "",
"Upload Progress": "ਅਪਲੋਡ ਪ੍ਰਗਤੀ", "Upload Progress": "ਅਪਲੋਡ ਪ੍ਰਗਤੀ",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "URL ਮੋਡ", "URL Mode": "URL ਮੋਡ",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "", "Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "ਵੈਧ ਸਮਾਂ ਇਕਾਈਆਂ:", "Valid time units:": "ਵੈਧ ਸਮਾਂ ਇਕਾਈਆਂ:",
"Validate certificate": "",
"Valves": "", "Valves": "",
"Valves updated": "", "Valves updated": "",
"Valves updated successfully": "", "Valves updated successfully": "",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "", "Whisper (Local)": "",
"Why?": "", "Why?": "",
"Widescreen Mode": "", "Widescreen Mode": "",
"Width": "",
"Won": "", "Won": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "ਕਾਰਜਸਥਲ", "Workspace": "ਕਾਰਜਸਥਲ",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} ukrytych linii", "{{COUNT}} hidden lines": "{{COUNT}} ukrytych linii",
"{{COUNT}} Replies": "{{COUNT}} odpowiedzi", "{{COUNT}} Replies": "{{COUNT}} odpowiedzi",
"{{COUNT}} words": "{{COUNT}} słów", "{{COUNT}} words": "{{COUNT}} słów",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Czaty użytkownika {{user}}", "{{user}}'s Chats": "Czaty użytkownika {{user}}",
"{{webUIName}} Backend Required": "Backend dla {{webUIName}} jest wymagany", "{{webUIName}} Backend Required": "Backend dla {{webUIName}} jest wymagany",
"*Prompt node ID(s) are required for image generation": "Wymagane są identyfikatory węzłów wyzwalających do generowania obrazów.", "*Prompt node ID(s) are required for image generation": "Wymagane są identyfikatory węzłów wyzwalających do generowania obrazów.",
@ -29,6 +30,7 @@
"Account Activation Pending": "Aktywacja konta w toku", "Account Activation Pending": "Aktywacja konta w toku",
"Accurate information": "Precyzyjna informacja", "Accurate information": "Precyzyjna informacja",
"Action": "Akcja", "Action": "Akcja",
"Action not found": "",
"Actions": "Akcje", "Actions": "Akcje",
"Activate": "Włącz", "Activate": "Włącz",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktywuj tę komendę, wpisując \"/{{COMMAND}}\" do pola wprowadzania czatu.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktywuj tę komendę, wpisując \"/{{COMMAND}}\" do pola wprowadzania czatu.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "Niesamowite", "Amazing": "Niesamowite",
"an assistant": "asystent", "an assistant": "asystent",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Przeanalizowane", "Analyzed": "Przeanalizowane",
"Analyzing...": "Analizowanie...", "Analyzing...": "Analizowanie...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Ograniczenia punktu końcowego klucza API", "API Key Endpoint Restrictions": "Ograniczenia punktu końcowego klucza API",
"API keys": "Klucze API", "API keys": "Klucze API",
"API Version": "Wersja API", "API Version": "Wersja API",
"API Version is required": "",
"Application DN": "Konto techniczne - Format DN", "Application DN": "Konto techniczne - Format DN",
"Application DN Password": "Hasło do konta technicznego", "Application DN Password": "Hasło do konta technicznego",
"applies to all users with the \"user\" role": "dotyczy wszystkich użytkowników z rolą \"user\"", "applies to all users with the \"user\" role": "dotyczy wszystkich użytkowników z rolą \"user\"",
@ -160,6 +164,7 @@
"Banners": "Bannery", "Banners": "Bannery",
"Base Model (From)": "Model bazowy (od)", "Base Model (From)": "Model bazowy (od)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "przed", "before": "przed",
"Being lazy": "Jest leniwy.", "Being lazy": "Jest leniwy.",
"Beta": "Beta", "Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "Ścieżka certyfikatu", "Certificate Path": "Ścieżka certyfikatu",
"Change Password": "Zmień hasło", "Change Password": "Zmień hasło",
"Channel deleted successfully": "",
"Channel Name": "Nazwa kanału", "Channel Name": "Nazwa kanału",
"Channel updated successfully": "",
"Channels": "Kanały", "Channels": "Kanały",
"Character": "Znak", "Character": "Znak",
"Character limit for autocomplete generation input": "Limit znaków dla wejścia generowanego automatycznie", "Character limit for autocomplete generation input": "Limit znaków dla wejścia generowanego automatycznie",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Blok kodu", "Code Block": "Blok kodu",
"Code execution": "Wykonanie kodu", "Code execution": "Wykonanie kodu",
"Code Execution": "Wykonanie kodu", "Code Execution": "Wykonanie kodu",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "Adres URL bazowy ComfyUI jest wymagany.", "ComfyUI Base URL is required.": "Adres URL bazowy ComfyUI jest wymagany.",
"ComfyUI Workflow": "Komfortowy przepływ pracy ComfyUI", "ComfyUI Workflow": "Komfortowy przepływ pracy ComfyUI",
"ComfyUI Workflow Nodes": "Komfortowe węzły przepływu pracy ComfyUI", "ComfyUI Workflow Nodes": "Komfortowe węzły przepływu pracy ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Polecenie", "Command": "Polecenie",
"Comment": "", "Comment": "",
"Completions": "Uzupełnienia", "Completions": "Uzupełnienia",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Równoległe żądania", "Concurrent Requests": "Równoległe żądania",
"Config imported successfully": "",
"Configure": "Skonfigurować", "Configure": "Skonfigurować",
"Confirm": "Potwierdź", "Confirm": "Potwierdź",
"Confirm Password": "Potwierdź hasło", "Confirm Password": "Potwierdź hasło",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Grudzień", "December": "Grudzień",
"Deepgram": "",
"Default": "Domyślny", "Default": "Domyślny",
"Default (Open AI)": "Domyślny (Open AI)", "Default (Open AI)": "Domyślny (Open AI)",
"Default (SentenceTransformers)": "Domyślny (SentenceTransformers)", "Default (SentenceTransformers)": "Domyślny (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Połączenia bezpośrednie", "Direct Connections": "Połączenia bezpośrednie",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Połączenia bezpośrednie umożliwiają użytkownikom łączenie się z własnymi końcówkami API kompatybilnymi z OpenAI.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Połączenia bezpośrednie umożliwiają użytkownikom łączenie się z własnymi końcówkami API kompatybilnymi z OpenAI.",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "Wprowadź opis", "Enter description": "Wprowadź opis",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Wprowadź surowy adres URL usługi GitHub", "Enter Github Raw URL": "Wprowadź surowy adres URL usługi GitHub",
"Enter Google PSE API Key": "Wprowadź klucz API Google PSE", "Enter Google PSE API Key": "Wprowadź klucz API Google PSE",
"Enter Google PSE Engine Id": "Wprowadź identyfikator urządzenia Google PSE", "Enter Google PSE Engine Id": "Wprowadź identyfikator urządzenia Google PSE",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Podaj rozmiar obrazu (np. 512x512)", "Enter Image Size (e.g. 512x512)": "Podaj rozmiar obrazu (np. 512x512)",
"Enter Jina API Key": "Wprowadź klucz API Jiny", "Enter Jina API Key": "Wprowadź klucz API Jiny",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Podaj adres URL (np. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Podaj adres URL (np. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Wprowadź adres URL (np. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Wprowadź adres URL (np. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Podaj adres URL swojego webhooka", "Enter your webhook URL": "Podaj adres URL swojego webhooka",
"Error": "Błąd", "Error": "Błąd",
"ERROR": "BŁĄD", "ERROR": "BŁĄD",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Błąd podczas dostępu do Google Drive: {{error}}", "Error accessing Google Drive: {{error}}": "Błąd podczas dostępu do Google Drive: {{error}}",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "Błąd podczas przesyłania pliku: {{error}}", "Error uploading file: {{error}}": "Błąd podczas przesyłania pliku: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Oceny", "Evaluations": "Oceny",
"Everyone": "Każdy", "Everyone": "Każdy",
"Exa API Key": "Klucz API Exa", "Exa API Key": "Klucz API Exa",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Haptyczne sprzężenie zwrotne", "Haptic Feedback": "Haptyczne sprzężenie zwrotne",
"Height": "",
"Hello, {{name}}": "Witaj, {{name}}", "Hello, {{name}}": "Witaj, {{name}}",
"Help": "Pomoc", "Help": "Pomoc",
"Help us create the best community leaderboard by sharing your feedback history!": "Pomóż nam stworzyć najlepszą tablicę liderów społeczności, dzieląc się swoją historią opinii!", "Help us create the best community leaderboard by sharing your feedback history!": "Pomóż nam stworzyć najlepszą tablicę liderów społeczności, dzieląc się swoją historią opinii!",
@ -733,6 +753,7 @@
"Hide": "Ukryj", "Hide": "Ukryj",
"Hide from Sidebar": "Ukryj z paska bocznego", "Hide from Sidebar": "Ukryj z paska bocznego",
"Hide Model": "Ukryj model", "Hide Model": "Ukryj model",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "Dom", "Home": "Dom",
"Host": "Serwer", "Host": "Serwer",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Wprowadź polecenia", "Input commands": "Wprowadź polecenia",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "Nieprawidłowa zawartość pliku", "Invalid file content": "Nieprawidłowa zawartość pliku",
"Invalid file format.": "Nieprawidłowy format pliku.", "Invalid file format.": "Nieprawidłowy format pliku.",
"Invalid JSON file": "Nieprawidłowy plik JSON", "Invalid JSON file": "Nieprawidłowy plik JSON",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Nieprawidłowy tag", "Invalid Tag": "Nieprawidłowy tag",
"is typing...": "Pisanie...", "is typing...": "Pisanie...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "Klucz", "Key": "Klucz",
"Key is required": "",
"Keyboard shortcuts": "Skróty klawiszowe", "Keyboard shortcuts": "Skróty klawiszowe",
"Knowledge": "Wiedza", "Knowledge": "Wiedza",
"Knowledge Access": "Dostęp do wiedzy", "Knowledge Access": "Dostęp do wiedzy",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Pomyślnie utworzona wiedza.", "Knowledge created successfully.": "Pomyślnie utworzona wiedza.",
"Knowledge deleted successfully.": "Wiedza została usunięta pomyślnie.", "Knowledge deleted successfully.": "Wiedza została usunięta pomyślnie.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Pomyślnie zresetowano wiedzę.", "Knowledge reset successfully.": "Pomyślnie zresetowano wiedzę.",
"Knowledge updated successfully": "Wiedza zaktualizowana pomyślnie", "Knowledge updated successfully": "Wiedza zaktualizowana pomyślnie",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "Przegrał", "Lost": "Przegrał",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Opracowane przez społeczność Open WebUI", "Made by Open WebUI Community": "Opracowane przez społeczność Open WebUI",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "Maksymalny rozmiar przesyłanego pliku", "Max Upload Size": "Maksymalny rozmiar przesyłanego pliku",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksymalnie 3 modele można pobierać jednocześnie. Proszę spróbować ponownie później.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksymalnie 3 modele można pobierać jednocześnie. Proszę spróbować ponownie później.",
"May": "Maj", "May": "Maj",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Wspomnienia dostępne za pomocą LLM zostaną wyświetlone tutaj.", "Memories accessible by LLMs will be shown here.": "Wspomnienia dostępne za pomocą LLM zostaną wyświetlone tutaj.",
"Memory": "Pamięć", "Memory": "Pamięć",
"Memory added successfully": "Pamięć dodana pomyślnie", "Memory added successfully": "Pamięć dodana pomyślnie",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "Identyfikatory modeli", "Model IDs": "Identyfikatory modeli",
"Model Name": "Nazwa modelu", "Model Name": "Nazwa modelu",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Model nie został wybrany", "Model not selected": "Model nie został wybrany",
"Model Params": "Parametry modelu", "Model Params": "Parametry modelu",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Nazwa", "Name": "Nazwa",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nazwij swoją bazę wiedzy", "Name your knowledge base": "Nazwij swoją bazę wiedzy",
"Native": "Rodzimy", "Native": "Rodzimy",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Nie wygenerowano żadnego zapytania wyszukiwania", "No search query generated": "Nie wygenerowano żadnego zapytania wyszukiwania",
"No source available": "Źródło nie jest dostępne.", "No source available": "Źródło nie jest dostępne.",
"No users were found.": "Nie znaleziono użytkowników.", "No users were found.": "Nie znaleziono użytkowników.",
"No valves": "",
"No valves to update": "Brak zaworów do aktualizacji", "No valves to update": "Brak zaworów do aktualizacji",
"Node Ids": "",
"None": "Brak", "None": "Brak",
"Not factually correct": "Niezgodne z rzeczywistością", "Not factually correct": "Niezgodne z rzeczywistością",
"Not helpful": "Nieprzydatne", "Not helpful": "Nieprzydatne",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Szukaj", "Search": "Szukaj",
"Search a model": "Wyszukaj model", "Search a model": "Wyszukaj model",
"Search all emojis": "",
"Search Base": "Użytkownicy - Baza wyszukiwania", "Search Base": "Użytkownicy - Baza wyszukiwania",
"Search Chats": "Przeszukaj czaty", "Search Chats": "Przeszukaj czaty",
"Search Collection": "Przeszukaj kolekcję", "Search Collection": "Przeszukaj kolekcję",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Sprawdź readme.md dla instrukcji", "See readme.md for instructions": "Sprawdź readme.md dla instrukcji",
"See what's new": "Sprawdź nowości", "See what's new": "Sprawdź nowości",
"Seed": "Seed", "Seed": "Seed",
"Select": "",
"Select a base model": "Wybór modelu bazowego", "Select a base model": "Wybór modelu bazowego",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Wybierz silnik", "Select a engine": "Wybierz silnik",
"Select a function": "Wybierz funkcję", "Select a function": "Wybierz funkcję",
"Select a group": "Wybierz grupę", "Select a group": "Wybierz grupę",
"Select a language": "",
"Select a mode": "",
"Select a model": "Wybierz model", "Select a model": "Wybierz model",
"Select a model (optional)": "",
"Select a pipeline": "Wybierz potok", "Select a pipeline": "Wybierz potok",
"Select a pipeline url": "Wybierz adres URL przepływu", "Select a pipeline url": "Wybierz adres URL przepływu",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Wybierz narzędzie", "Select a tool": "Wybierz narzędzie",
"Select a voice": "",
"Select an auth method": "Wybierz metodę uwierzytelniania", "Select an auth method": "Wybierz metodę uwierzytelniania",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Wybierz instancję Ollama", "Select an Ollama instance": "Wybierz instancję Ollama",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Wybierz silnik", "Select Engine": "Wybierz silnik",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Wybierz wiedzę", "Select Knowledge": "Wybierz wiedzę",
"Select only one model to call": "Wybierz tylko jeden model do wywołania", "Select only one model to call": "Wybierz tylko jeden model do wywołania",
"Selected model(s) do not support image inputs": "Wybrane modele nie obsługują danych wejściowych w formie obrazu", "Selected model(s) do not support image inputs": "Wybrane modele nie obsługują danych wejściowych w formie obrazu",
@ -1215,6 +1262,7 @@
"Serply API Key": "Klucz API Serply", "Serply API Key": "Klucz API Serply",
"Serpstack API Key": "Klucz API Serpstack", "Serpstack API Key": "Klucz API Serpstack",
"Server connection verified": "Połączenie z serwerem zostało zweryfikowane", "Server connection verified": "Połączenie z serwerem zostało zweryfikowane",
"Session": "",
"Set as default": "Ustaw jako domyślny", "Set as default": "Ustaw jako domyślny",
"Set CFG Scale": "Ustaw skalę CFG", "Set CFG Scale": "Ustaw skalę CFG",
"Set Default Model": "Ustaw model domyślny", "Set Default Model": "Ustaw model domyślny",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Źródło", "Source": "Źródło",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Podtytuł (np. o Imperium Rzymskim)", "Subtitle (e.g. about the Roman Empire)": "Podtytuł (np. o Imperium Rzymskim)",
"Success": "Sukces", "Success": "Sukces",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Uaktualniono pomyślnie.", "Successfully updated.": "Uaktualniono pomyślnie.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Proponowane", "Suggested": "Proponowane",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Maksymalny rozmiar pliku w MB. Jeśli rozmiar pliku przekroczy ten limit, plik nie zostanie przesłany.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Maksymalny rozmiar pliku w MB. Jeśli rozmiar pliku przekroczy ten limit, plik nie zostanie przesłany.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Maksymalna liczba plików, które można użyć jednocześnie w czacie. Jeśli liczba plików przekroczy ten limit, pliki nie zostaną przesłane.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Maksymalna liczba plików, które można użyć jednocześnie w czacie. Jeśli liczba plików przekroczy ten limit, pliki nie zostaną przesłane.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Wynik powinien być wartością pomiędzy 0,0 (0%) a 1,0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Wynik powinien być wartością pomiędzy 0,0 (0%) a 1,0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Prześlij pliki", "Upload Files": "Prześlij pliki",
"Upload Pipeline": "Prześlij przepływ", "Upload Pipeline": "Prześlij przepływ",
"Upload Progress": "Postęp przesyłania plików", "Upload Progress": "Postęp przesyłania plików",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "Adres URL", "URL": "Adres URL",
"URL is required": "",
"URL Mode": "Tryb URL", "URL Mode": "Tryb URL",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "Użyj '#' w polu wprowadzania zapytania, aby załadować i uwzględnić swoją wiedzę.", "Use '#' in the prompt input to load and include your knowledge.": "Użyj '#' w polu wprowadzania zapytania, aby załadować i uwzględnić swoją wiedzę.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Korzystanie z domyślnego modelu areny ze wszystkimi modelami. Kliknij przycisk plus, aby dodać niestandardowe modele.", "Using the default arena model with all models. Click the plus button to add custom models.": "Korzystanie z domyślnego modelu areny ze wszystkimi modelami. Kliknij przycisk plus, aby dodać niestandardowe modele.",
"Valid time units:": "Dozwolone jednostki czasu:", "Valid time units:": "Dozwolone jednostki czasu:",
"Validate certificate": "",
"Valves": "Zawory", "Valves": "Zawory",
"Valves updated": "Zawory zaktualizowane", "Valves updated": "Zawory zaktualizowane",
"Valves updated successfully": "Zawory zaktualizowane pomyślnie", "Valves updated successfully": "Zawory zaktualizowane pomyślnie",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Szept (Lokalny)", "Whisper (Local)": "Szept (Lokalny)",
"Why?": "Dlaczego?", "Why?": "Dlaczego?",
"Widescreen Mode": "Tryb panoramiczny", "Widescreen Mode": "Tryb panoramiczny",
"Width": "",
"Won": "Wygrał", "Won": "Wygrał",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Obszar roboczy", "Workspace": "Obszar roboczy",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} linhas ocultas", "{{COUNT}} hidden lines": "{{COUNT}} linhas ocultas",
"{{COUNT}} Replies": "{{COUNT}} Respostas", "{{COUNT}} Replies": "{{COUNT}} Respostas",
"{{COUNT}} words": "{{COUNT}} palavras", "{{COUNT}} words": "{{COUNT}} palavras",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Chats de {{user}}", "{{user}}'s Chats": "Chats de {{user}}",
"{{webUIName}} Backend Required": "Backend {{webUIName}} necessário", "{{webUIName}} Backend Required": "Backend {{webUIName}} necessário",
"*Prompt node ID(s) are required for image generation": "*Prompt node ID(s) são obrigatórios para gerar imagens", "*Prompt node ID(s) are required for image generation": "*Prompt node ID(s) são obrigatórios para gerar imagens",
@ -29,6 +30,7 @@
"Account Activation Pending": "Ativação da Conta Pendente", "Account Activation Pending": "Ativação da Conta Pendente",
"Accurate information": "Informações precisas", "Accurate information": "Informações precisas",
"Action": "Ação", "Action": "Ação",
"Action not found": "",
"Actions": "Ações", "Actions": "Ações",
"Activate": "Ativar", "Activate": "Ativar",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Ativar esse comando no chat digitando \"/{{COMMAND}}\"", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Ativar esse comando no chat digitando \"/{{COMMAND}}\"",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "Sempre reproduzir som de notificação", "Always Play Notification Sound": "Sempre reproduzir som de notificação",
"Amazing": "Incrível", "Amazing": "Incrível",
"an assistant": "um assistente", "an assistant": "um assistente",
"An error occurred while fetching the explanation": "",
"Analytics": "Análise", "Analytics": "Análise",
"Analyzed": "Analisado", "Analyzed": "Analisado",
"Analyzing...": "Analisando...", "Analyzing...": "Analisando...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Restrições de endpoint de chave de API", "API Key Endpoint Restrictions": "Restrições de endpoint de chave de API",
"API keys": "Chaves API", "API keys": "Chaves API",
"API Version": "Versão da API", "API Version": "Versão da API",
"API Version is required": "",
"Application DN": "DN da Aplicação", "Application DN": "DN da Aplicação",
"Application DN Password": "Senha da aplicação DN", "Application DN Password": "Senha da aplicação DN",
"applies to all users with the \"user\" role": "Aplicar para todos com permissão de \"usuário\"", "applies to all users with the \"user\" role": "Aplicar para todos com permissão de \"usuário\"",
@ -160,6 +164,7 @@
"Banners": "Banners", "Banners": "Banners",
"Base Model (From)": "Modelo Base (De)", "Base Model (From)": "Modelo Base (De)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "O cache da lista de modelos base acelera o acesso buscando modelos base somente na inicialização ou ao salvar as configurações — mais rápido, mas pode não mostrar alterações recentes no modelo base.", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "O cache da lista de modelos base acelera o acesso buscando modelos base somente na inicialização ou ao salvar as configurações — mais rápido, mas pode não mostrar alterações recentes no modelo base.",
"Bearer": "",
"before": "antes", "before": "antes",
"Being lazy": "Sendo preguiçoso", "Being lazy": "Sendo preguiçoso",
"Beta": "Beta", "Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Capturar Audio", "Capture Audio": "Capturar Audio",
"Certificate Path": "Caminho do Certificado", "Certificate Path": "Caminho do Certificado",
"Change Password": "Alterar Senha", "Change Password": "Alterar Senha",
"Channel deleted successfully": "",
"Channel Name": "Nome do canal", "Channel Name": "Nome do canal",
"Channel updated successfully": "",
"Channels": "Canais", "Channels": "Canais",
"Character": "Caracter", "Character": "Caracter",
"Character limit for autocomplete generation input": "Limite de caracteres para entrada de geração de preenchimento automático", "Character limit for autocomplete generation input": "Limite de caracteres para entrada de geração de preenchimento automático",
@ -238,6 +245,7 @@
"Close modal": "Fechar modal", "Close modal": "Fechar modal",
"Close settings modal": "Fechar configurações modal", "Close settings modal": "Fechar configurações modal",
"Close Sidebar": "Fechar barra lateral", "Close Sidebar": "Fechar barra lateral",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Bloco de código", "Code Block": "Bloco de código",
"Code execution": "Execução de código", "Code execution": "Execução de código",
"Code Execution": "Execução de código", "Code Execution": "Execução de código",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "URL Base do ComfyUI é necessária.", "ComfyUI Base URL is required.": "URL Base do ComfyUI é necessária.",
"ComfyUI Workflow": "", "ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "", "ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Comando", "Command": "Comando",
"Comment": "Comentário", "Comment": "Comentário",
"Completions": "Conclusões", "Completions": "Conclusões",
"Compress Images in Channels": "Comprimir imagens em canais", "Compress Images in Channels": "Comprimir imagens em canais",
"Concurrent Requests": "Solicitações simultâneas", "Concurrent Requests": "Solicitações simultâneas",
"Config imported successfully": "",
"Configure": "Configurar", "Configure": "Configurar",
"Confirm": "Confirmar", "Confirm": "Confirmar",
"Confirm Password": "Confirmar Senha", "Confirm Password": "Confirmar Senha",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Chave de API do Datalab Marker necessária.", "Datalab Marker API Key required.": "Chave de API do Datalab Marker necessária.",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Dezembro", "December": "Dezembro",
"Deepgram": "",
"Default": "Padrão", "Default": "Padrão",
"Default (Open AI)": "Padrão (Open AI)", "Default (Open AI)": "Padrão (Open AI)",
"Default (SentenceTransformers)": "Padrão (SentenceTransformers)", "Default (SentenceTransformers)": "Padrão (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Conexões Diretas", "Direct Connections": "Conexões Diretas",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "As conexões diretas permitem que os usuários se conectem aos seus próprios terminais de API compatíveis com OpenAI.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "As conexões diretas permitem que os usuários se conectem aos seus próprios terminais de API compatíveis com OpenAI.",
"Direct Tool Servers": "Servidores de ferramentas diretas", "Direct Tool Servers": "Servidores de ferramentas diretas",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "Desativar o interpretador de código", "Disable Code Interpreter": "Desativar o interpretador de código",
"Disable Image Extraction": "Desativar extração de imagem", "Disable Image Extraction": "Desativar extração de imagem",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Desabilite a extração de imagens do PDF. Se a opção Usar LLM estiver habilitada, as imagens serão legendadas automaticamente. O padrão é Falso.", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Desabilite a extração de imagens do PDF. Se a opção Usar LLM estiver habilitada, as imagens serão legendadas automaticamente. O padrão é Falso.",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Insira pares \"token:bias_value\" separados por vírgulas (exemplo: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Insira pares \"token:bias_value\" separados por vírgulas (exemplo: 5432:100, 413:-100)",
"Enter Config in JSON format": "Insira a configuração no formato JSON", "Enter Config in JSON format": "Insira a configuração no formato JSON",
"Enter content for the pending user info overlay. Leave empty for default.": "Insira o conteúdo para a sobreposição de informações pendentes do usuário. Deixe em branco para o padrão.", "Enter content for the pending user info overlay. Leave empty for default.": "Insira o conteúdo para a sobreposição de informações pendentes do usuário. Deixe em branco para o padrão.",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "Insira o URL base da API do marcador do Datalab", "Enter Datalab Marker API Base URL": "Insira o URL base da API do marcador do Datalab",
"Enter Datalab Marker API Key": "Insira a chave da API do marcador do Datalab", "Enter Datalab Marker API Key": "Insira a chave da API do marcador do Datalab",
"Enter description": "Digite a descrição", "Enter description": "Digite a descrição",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Digite a URL bruta do Github", "Enter Github Raw URL": "Digite a URL bruta do Github",
"Enter Google PSE API Key": "Digite a Chave API do Google PSE", "Enter Google PSE API Key": "Digite a Chave API do Google PSE",
"Enter Google PSE Engine Id": "Digite o ID do Motor do Google PSE", "Enter Google PSE Engine Id": "Digite o ID do Motor do Google PSE",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Digite o Tamanho da Imagem (por exemplo, 512x512)", "Enter Image Size (e.g. 512x512)": "Digite o Tamanho da Imagem (por exemplo, 512x512)",
"Enter Jina API Key": "Digite a Chave API Jina", "Enter Jina API Key": "Digite a Chave API Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "Insira a configuração JSON (por exemplo, {\"disable_links\": true})", "Enter JSON config (e.g., {\"disable_links\": true})": "Insira a configuração JSON (por exemplo, {\"disable_links\": true})",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Digite o Top K Reranker", "Enter Top K Reranker": "Digite o Top K Reranker",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Digite a URL (por exemplo, http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Digite a URL (por exemplo, http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Digite a URL (por exemplo, http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Digite a URL (por exemplo, http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "Digite a senha do Yacy", "Enter Yacy Password": "Digite a senha do Yacy",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Digite a URL do Yacy (por exemplo, http://yacy.example.com:8090)", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Digite a URL do Yacy (por exemplo, http://yacy.example.com:8090)",
"Enter Yacy Username": "Digite o nome de usuário do Yacy", "Enter Yacy Username": "Digite o nome de usuário do Yacy",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Insira a URL do seu webhook", "Enter your webhook URL": "Insira a URL do seu webhook",
"Error": "Erro", "Error": "Erro",
"ERROR": "ERRO", "ERROR": "ERRO",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Erro ao acessar o Google Drive: {{error}}", "Error accessing Google Drive: {{error}}": "Erro ao acessar o Google Drive: {{error}}",
"Error accessing media devices.": "Erro ao acessar dispositivos de mídia.", "Error accessing media devices.": "Erro ao acessar dispositivos de mídia.",
"Error starting recording.": "Erro ao iniciar a gravação.", "Error starting recording.": "Erro ao iniciar a gravação.",
"Error unloading model: {{error}}": "Erro ao descarregar modelo: {{error}}", "Error unloading model: {{error}}": "Erro ao descarregar modelo: {{error}}",
"Error uploading file: {{error}}": "Erro ao carregar o arquivo: {{error}}", "Error uploading file: {{error}}": "Erro ao carregar o arquivo: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Avaliações", "Evaluations": "Avaliações",
"Everyone": "Todos", "Everyone": "Todos",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "Olá, {{name}}", "Hello, {{name}}": "Olá, {{name}}",
"Help": "Ajuda", "Help": "Ajuda",
"Help us create the best community leaderboard by sharing your feedback history!": "Ajude-nos a criar o melhor ranking da comunidade compartilhando sua historia de comentários!", "Help us create the best community leaderboard by sharing your feedback history!": "Ajude-nos a criar o melhor ranking da comunidade compartilhando sua historia de comentários!",
@ -733,6 +753,7 @@
"Hide": "Ocultar", "Hide": "Ocultar",
"Hide from Sidebar": "Ocultar da barra lateral", "Hide from Sidebar": "Ocultar da barra lateral",
"Hide Model": "Ocultar modelo", "Hide Model": "Ocultar modelo",
"High": "",
"High Contrast Mode": "Modo de alto contraste", "High Contrast Mode": "Modo de alto contraste",
"Home": "Início", "Home": "Início",
"Host": "Servidor", "Host": "Servidor",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injete todo o conteúdo como contexto para processamento abrangente; isso é recomendado para consultas complexas.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injete todo o conteúdo como contexto para processamento abrangente; isso é recomendado para consultas complexas.",
"Input": "Entrada", "Input": "Entrada",
"Input commands": "Comandos de entrada", "Input commands": "Comandos de entrada",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Variáveis de entrada", "Input Variables": "Variáveis de entrada",
"Insert": "Inserir", "Insert": "Inserir",
"Insert Follow-Up Prompt to Input": "Inserir prompt de acompanhamento para entrada", "Insert Follow-Up Prompt to Input": "Inserir prompt de acompanhamento para entrada",
@ -789,6 +811,7 @@
"Invalid file content": "Conteúdo de arquivo inválido", "Invalid file content": "Conteúdo de arquivo inválido",
"Invalid file format.": "Formato de arquivo inválido.", "Invalid file format.": "Formato de arquivo inválido.",
"Invalid JSON file": "Arquivo JSON inválido", "Invalid JSON file": "Arquivo JSON inválido",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "Formato JSON inválido na configuração adicional", "Invalid JSON format in Additional Config": "Formato JSON inválido na configuração adicional",
"Invalid Tag": "Tag Inválida", "Invalid Tag": "Tag Inválida",
"is typing...": "está digitando...", "is typing...": "está digitando...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "Mantenha prompts de acompanhamento no chat", "Keep Follow-Up Prompts in Chat": "Mantenha prompts de acompanhamento no chat",
"Keep in Sidebar": "Manter na barra lateral", "Keep in Sidebar": "Manter na barra lateral",
"Key": "Chave", "Key": "Chave",
"Key is required": "",
"Keyboard shortcuts": "Atalhos de Teclado", "Keyboard shortcuts": "Atalhos de Teclado",
"Knowledge": "Conhecimento", "Knowledge": "Conhecimento",
"Knowledge Access": "Acesso ao Conhecimento", "Knowledge Access": "Acesso ao Conhecimento",
"Knowledge Base": "Base de Conhecimento", "Knowledge Base": "Base de Conhecimento",
"Knowledge created successfully.": "Conhecimento criado com sucesso.", "Knowledge created successfully.": "Conhecimento criado com sucesso.",
"Knowledge deleted successfully.": "Conhecimento excluído com sucesso.", "Knowledge deleted successfully.": "Conhecimento excluído com sucesso.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Conhecimento resetado com sucesso.", "Knowledge reset successfully.": "Conhecimento resetado com sucesso.",
"Knowledge updated successfully": "Conhecimento atualizado com sucesso", "Knowledge updated successfully": "Conhecimento atualizado com sucesso",
@ -852,6 +878,7 @@
"Local Task Model": "Modelo de Tarefa Local", "Local Task Model": "Modelo de Tarefa Local",
"Location access not allowed": "Acesso ao local não permitido", "Location access not allowed": "Acesso ao local não permitido",
"Lost": "Perdeu", "Lost": "Perdeu",
"Low": "",
"LTR": "Esquerda para Direita", "LTR": "Esquerda para Direita",
"Made by Open WebUI Community": "Feito pela Comunidade OpenWebUI", "Made by Open WebUI Community": "Feito pela Comunidade OpenWebUI",
"Make password visible in the user interface": "Tornar a senha visível na interface do usuário", "Make password visible in the user interface": "Tornar a senha visível na interface do usuário",
@ -873,6 +900,7 @@
"Max Upload Size": "Tamanho máximo do arquivo", "Max Upload Size": "Tamanho máximo do arquivo",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Máximo de 3 modelos podem ser baixados simultaneamente. Por favor, tente novamente mais tarde.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Máximo de 3 modelos podem ser baixados simultaneamente. Por favor, tente novamente mais tarde.",
"May": "Maio", "May": "Maio",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.", "Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.",
"Memory": "Memória", "Memory": "Memória",
"Memory added successfully": "Memória adicionada com sucesso", "Memory added successfully": "Memória adicionada com sucesso",
@ -908,6 +936,7 @@
"Model ID is required.": "É necessário o ID do modelo.", "Model ID is required.": "É necessário o ID do modelo.",
"Model IDs": "IDs do modelo", "Model IDs": "IDs do modelo",
"Model Name": "Nome do Modelo", "Model Name": "Nome do Modelo",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "O nome do modelo é obrigatório.", "Model Name is required.": "O nome do modelo é obrigatório.",
"Model not selected": "Modelo não selecionado", "Model not selected": "Modelo não selecionado",
"Model Params": "Parâmetros do Modelo", "Model Params": "Parâmetros do Modelo",
@ -926,6 +955,7 @@
"More Concise": "Mais conciso", "More Concise": "Mais conciso",
"More Options": "Mais opções", "More Options": "Mais opções",
"Name": "Nome", "Name": "Nome",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nome da sua base de conhecimento", "Name your knowledge base": "Nome da sua base de conhecimento",
"Native": "Nativo", "Native": "Nativo",
"New Button": "Novo Botão", "New Button": "Novo Botão",
@ -960,7 +990,9 @@
"No search query generated": "Nenhuma consulta de pesquisa gerada", "No search query generated": "Nenhuma consulta de pesquisa gerada",
"No source available": "Nenhuma fonte disponível", "No source available": "Nenhuma fonte disponível",
"No users were found.": "Nenhum usuário foi encontrado.", "No users were found.": "Nenhum usuário foi encontrado.",
"No valves": "",
"No valves to update": "Nenhuma válvula para atualizar", "No valves to update": "Nenhuma válvula para atualizar",
"Node Ids": "",
"None": "Nenhum", "None": "Nenhum",
"Not factually correct": "Não está factualmente correto", "Not factually correct": "Não está factualmente correto",
"Not helpful": "Não é útil", "Not helpful": "Não é útil",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Pesquisar", "Search": "Pesquisar",
"Search a model": "Pesquisar um modelo", "Search a model": "Pesquisar um modelo",
"Search all emojis": "",
"Search Base": "Pesquisar base", "Search Base": "Pesquisar base",
"Search Chats": "Pesquisar Chats", "Search Chats": "Pesquisar Chats",
"Search Collection": "Pesquisar Coleção", "Search Collection": "Pesquisar Coleção",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Veja readme.md para instruções", "See readme.md for instructions": "Veja readme.md para instruções",
"See what's new": "Veja o que há de novo", "See what's new": "Veja o que há de novo",
"Seed": "Seed", "Seed": "Seed",
"Select": "",
"Select a base model": "Selecione um modelo base", "Select a base model": "Selecione um modelo base",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "Selecione uma conversa para visualizar", "Select a conversation to preview": "Selecione uma conversa para visualizar",
"Select a engine": "Selecione um motor", "Select a engine": "Selecione um motor",
"Select a function": "Selecione uma função", "Select a function": "Selecione uma função",
"Select a group": "Selecionar grupo", "Select a group": "Selecionar grupo",
"Select a language": "",
"Select a mode": "",
"Select a model": "Selecione um modelo", "Select a model": "Selecione um modelo",
"Select a model (optional)": "",
"Select a pipeline": "Selecione um pipeline", "Select a pipeline": "Selecione um pipeline",
"Select a pipeline url": "Selecione uma URL de pipeline", "Select a pipeline url": "Selecione uma URL de pipeline",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Selecione uma ferramenta", "Select a tool": "Selecione uma ferramenta",
"Select a voice": "",
"Select an auth method": "Selecione um método de autenticação", "Select an auth method": "Selecione um método de autenticação",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Selecione uma instância do Ollama", "Select an Ollama instance": "Selecione uma instância do Ollama",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Selecionar Motor", "Select Engine": "Selecionar Motor",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Selecionar Conhecimento", "Select Knowledge": "Selecionar Conhecimento",
"Select only one model to call": "Selecione apenas um modelo para chamar", "Select only one model to call": "Selecione apenas um modelo para chamar",
"Selected model(s) do not support image inputs": "Modelo(s) selecionado(s) não suportam entradas de imagem", "Selected model(s) do not support image inputs": "Modelo(s) selecionado(s) não suportam entradas de imagem",
@ -1215,6 +1262,7 @@
"Serply API Key": "Chave da API Serply", "Serply API Key": "Chave da API Serply",
"Serpstack API Key": "Chave da API Serpstack", "Serpstack API Key": "Chave da API Serpstack",
"Server connection verified": "Conexão com o servidor verificada", "Server connection verified": "Conexão com o servidor verificada",
"Session": "",
"Set as default": "Definir como padrão", "Set as default": "Definir como padrão",
"Set CFG Scale": "Definir escala CFG", "Set CFG Scale": "Definir escala CFG",
"Set Default Model": "Definir Modelo Padrão", "Set Default Model": "Definir Modelo Padrão",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "Pular cache", "Skip Cache": "Pular cache",
"Skip the cache and re-run the inference. Defaults to False.": "Ignore o cache e execute a inferência novamente. O padrão é Falso.", "Skip the cache and re-run the inference. Defaults to False.": "Ignore o cache e execute a inferência novamente. O padrão é Falso.",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Fonte", "Source": "Fonte",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Exportação de PDF estilizado", "Stylized PDF Export": "Exportação de PDF estilizado",
"Subtitle (e.g. about the Roman Empire)": "Subtítulo (por exemplo, sobre o Império Romano)", "Subtitle (e.g. about the Roman Empire)": "Subtítulo (por exemplo, sobre o Império Romano)",
"Success": "Sucesso", "Success": "Sucesso",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Atualizado com sucesso.", "Successfully updated.": "Atualizado com sucesso.",
"Suggest a change": "Sugira uma mudança", "Suggest a change": "Sugira uma mudança",
"Suggested": "Sugerido", "Suggested": "Sugerido",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Máximo tamanho de arquivo em MB. Se o tamanho do arquivo exceder este limite, o arquivo não será enviado.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Máximo tamanho de arquivo em MB. Se o tamanho do arquivo exceder este limite, o arquivo não será enviado.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "O número máximo de arquivos que podem ser utilizados a cada vez em chat. Se o número de arquivos exceder este limite, os arquivos não serão enviados.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "O número máximo de arquivos que podem ser utilizados a cada vez em chat. Se o número de arquivos exceder este limite, os arquivos não serão enviados.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Formato de saída para o texto. Pode ser 'json', 'markdown' ou 'html'. O padrão é 'markdown'.", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Formato de saída para o texto. Pode ser 'json', 'markdown' ou 'html'. O padrão é 'markdown'.",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "A pontuação deve ser um valor entre 0.0 (0%) e 1.0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "A pontuação deve ser um valor entre 0.0 (0%) e 1.0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "O tamanho do bloco delta do fluxo para o modelo. Aumentar o tamanho do bloco fará com que o modelo responda com trechos maiores de texto de uma só vez.", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "O tamanho do bloco delta do fluxo para o modelo. Aumentar o tamanho do bloco fará com que o modelo responda com trechos maiores de texto de uma só vez.",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "A temperatura do modelo. Aumentar a temperatura fará com que o modelo responda de forma mais criativa.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "A temperatura do modelo. Aumentar a temperatura fará com que o modelo responda de forma mais criativa.",
@ -1439,7 +1495,9 @@
"Upload Files": "Carregar Arquivos", "Upload Files": "Carregar Arquivos",
"Upload Pipeline": "Fazer upload de Pipeline", "Upload Pipeline": "Fazer upload de Pipeline",
"Upload Progress": "Progresso do Upload", "Upload Progress": "Progresso do Upload",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "Modo URL", "URL Mode": "Modo URL",
"Usage": "Uso", "Usage": "Uso",
"Use '#' in the prompt input to load and include your knowledge.": "Usar '#' no prompt para carregar e incluir seus conhecimentos.", "Use '#' in the prompt input to load and include your knowledge.": "Usar '#' no prompt para carregar e incluir seus conhecimentos.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "Usando Recuperação Focada", "Using Focused Retrieval": "Usando Recuperação Focada",
"Using the default arena model with all models. Click the plus button to add custom models.": "Usando a arena de modelos padrão para todos os modelos. Clique no botão mais para adicionar modelos personalizados.", "Using the default arena model with all models. Click the plus button to add custom models.": "Usando a arena de modelos padrão para todos os modelos. Clique no botão mais para adicionar modelos personalizados.",
"Valid time units:": "Unidades de tempo válidas:", "Valid time units:": "Unidades de tempo válidas:",
"Validate certificate": "",
"Valves": "Válvulas", "Valves": "Válvulas",
"Valves updated": "Válvulas atualizadas", "Valves updated": "Válvulas atualizadas",
"Valves updated successfully": "Válvulas atualizadas com sucesso", "Valves updated successfully": "Válvulas atualizadas com sucesso",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Local)", "Whisper (Local)": "Whisper (Local)",
"Why?": "Por que", "Why?": "Por que",
"Widescreen Mode": "Modo Tela Cheia", "Widescreen Mode": "Modo Tela Cheia",
"Width": "",
"Won": "Ganhou", "Won": "Ganhou",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Funciona em conjunto com o top-k. Um valor mais alto (por exemplo, 0,95) resultará em um texto mais diverso, enquanto um valor mais baixo (por exemplo, 0,5) gerará um texto mais focado e conservador.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Funciona em conjunto com o top-k. Um valor mais alto (por exemplo, 0,95) resultará em um texto mais diverso, enquanto um valor mais baixo (por exemplo, 0,5) gerará um texto mais focado e conservador.",
"Workspace": "Espaço de Trabalho", "Workspace": "Espaço de Trabalho",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}'s Chats", "{{user}}'s Chats": "{{user}}'s Chats",
"{{webUIName}} Backend Required": "{{webUIName}} Backend Necessário", "{{webUIName}} Backend Required": "{{webUIName}} Backend Necessário",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "Ativação da Conta Pendente", "Account Activation Pending": "Ativação da Conta Pendente",
"Accurate information": "Informações precisas", "Accurate information": "Informações precisas",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "", "Actions": "",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "", "Amazing": "",
"an assistant": "um assistente", "an assistant": "um assistente",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "Chaves da API", "API keys": "Chaves da API",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "Estandartes", "Banners": "Estandartes",
"Base Model (From)": "Modelo Base (De)", "Base Model (From)": "Modelo Base (De)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "antes", "before": "antes",
"Being lazy": "Ser preguiçoso", "Being lazy": "Ser preguiçoso",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "Alterar Senha", "Change Password": "Alterar Senha",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "O URL Base do ComfyUI é obrigatório.", "ComfyUI Base URL is required.": "O URL Base do ComfyUI é obrigatório.",
"ComfyUI Workflow": "", "ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "", "ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Comando", "Command": "Comando",
"Comment": "", "Comment": "",
"Completions": "", "Completions": "",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Solicitações simultâneas", "Concurrent Requests": "Solicitações simultâneas",
"Config imported successfully": "",
"Configure": "", "Configure": "",
"Confirm": "", "Confirm": "",
"Confirm Password": "Confirmar Senha", "Confirm Password": "Confirmar Senha",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Dezembro", "December": "Dezembro",
"Deepgram": "",
"Default": "Padrão", "Default": "Padrão",
"Default (Open AI)": "", "Default (Open AI)": "",
"Default (SentenceTransformers)": "Padrão (SentenceTransformers)", "Default (SentenceTransformers)": "Padrão (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "", "Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Escreva o URL cru do Github", "Enter Github Raw URL": "Escreva o URL cru do Github",
"Enter Google PSE API Key": "Escreva a chave da API PSE do Google", "Enter Google PSE API Key": "Escreva a chave da API PSE do Google",
"Enter Google PSE Engine Id": "Escreva o ID do mecanismo PSE do Google", "Enter Google PSE Engine Id": "Escreva o ID do mecanismo PSE do Google",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Escreva o Tamanho da Imagem (por exemplo, 512x512)", "Enter Image Size (e.g. 512x512)": "Escreva o Tamanho da Imagem (por exemplo, 512x512)",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Escreva o URL (por exemplo, http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Escreva o URL (por exemplo, http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Escreva o URL (por exemplo, http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Escreva o URL (por exemplo, http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "Erro", "Error": "Erro",
"ERROR": "", "ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "", "Evaluations": "",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "Olá, {{name}}", "Hello, {{name}}": "Olá, {{name}}",
"Help": "Ajuda", "Help": "Ajuda",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "Ocultar", "Hide": "Ocultar",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Comandos de entrada", "Input commands": "Comandos de entrada",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "", "Invalid file format.": "",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Etiqueta Inválida", "Invalid Tag": "Etiqueta Inválida",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "Atalhos de teclado", "Keyboard shortcuts": "Atalhos de teclado",
"Knowledge": "Conhecimento", "Knowledge": "Conhecimento",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "", "Knowledge created successfully.": "",
"Knowledge deleted successfully.": "", "Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "", "Knowledge reset successfully.": "",
"Knowledge updated successfully": "", "Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "", "Lost": "",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Feito pela Comunidade OpenWebUI", "Made by Open WebUI Community": "Feito pela Comunidade OpenWebUI",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "O máximo de 3 modelos podem ser descarregados simultaneamente. Tente novamente mais tarde.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "O máximo de 3 modelos podem ser descarregados simultaneamente. Tente novamente mais tarde.",
"May": "Maio", "May": "Maio",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.", "Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.",
"Memory": "Memória", "Memory": "Memória",
"Memory added successfully": "", "Memory added successfully": "",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "", "Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Modelo não selecionado", "Model not selected": "Modelo não selecionado",
"Model Params": "Params Modelo", "Model Params": "Params Modelo",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Nome", "Name": "Nome",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Não foi gerada nenhuma consulta de pesquisa", "No search query generated": "Não foi gerada nenhuma consulta de pesquisa",
"No source available": "Nenhuma fonte disponível", "No source available": "Nenhuma fonte disponível",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "", "No valves to update": "",
"Node Ids": "",
"None": "Nenhum", "None": "Nenhum",
"Not factually correct": "Não é correto em termos factuais", "Not factually correct": "Não é correto em termos factuais",
"Not helpful": "", "Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Pesquisar", "Search": "Pesquisar",
"Search a model": "Pesquisar um modelo", "Search a model": "Pesquisar um modelo",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "Pesquisar Conversas", "Search Chats": "Pesquisar Conversas",
"Search Collection": "", "Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Consulte readme.md para obter instruções", "See readme.md for instructions": "Consulte readme.md para obter instruções",
"See what's new": "Veja o que há de novo", "See what's new": "Veja o que há de novo",
"Seed": "Semente", "Seed": "Semente",
"Select": "",
"Select a base model": "Selecione um modelo base", "Select a base model": "Selecione um modelo base",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Selecione um motor", "Select a engine": "Selecione um motor",
"Select a function": "", "Select a function": "",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Selecione um modelo", "Select a model": "Selecione um modelo",
"Select a model (optional)": "",
"Select a pipeline": "Selecione um pipeline", "Select a pipeline": "Selecione um pipeline",
"Select a pipeline url": "Selecione um URL de pipeline", "Select a pipeline url": "Selecione um URL de pipeline",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "", "Select a tool": "",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "", "Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "", "Select Knowledge": "",
"Select only one model to call": "Selecione apenas um modelo para a chamada", "Select only one model to call": "Selecione apenas um modelo para a chamada",
"Selected model(s) do not support image inputs": "O(s) modelo(s) selecionado(s) não suporta(m) entradas de imagem", "Selected model(s) do not support image inputs": "O(s) modelo(s) selecionado(s) não suporta(m) entradas de imagem",
@ -1215,6 +1262,7 @@
"Serply API Key": "", "Serply API Key": "",
"Serpstack API Key": "Chave da API Serpstack", "Serpstack API Key": "Chave da API Serpstack",
"Server connection verified": "Conexão com o servidor verificada", "Server connection verified": "Conexão com o servidor verificada",
"Session": "",
"Set as default": "Definir como padrão", "Set as default": "Definir como padrão",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "Definir Modelo Padrão", "Set Default Model": "Definir Modelo Padrão",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Fonte", "Source": "Fonte",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Subtítulo (ex.: sobre o Império Romano)", "Subtitle (e.g. about the Roman Empire)": "Subtítulo (ex.: sobre o Império Romano)",
"Success": "Sucesso", "Success": "Sucesso",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Atualizado com sucesso.", "Successfully updated.": "Atualizado com sucesso.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Sugerido", "Suggested": "Sugerido",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "A pontuação deve ser um valor entre 0.0 (0%) e 1.0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "A pontuação deve ser um valor entre 0.0 (0%) e 1.0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Carregar ficheiros", "Upload Files": "Carregar ficheiros",
"Upload Pipeline": "Carregar Pipeline", "Upload Pipeline": "Carregar Pipeline",
"Upload Progress": "Progresso do Carregamento", "Upload Progress": "Progresso do Carregamento",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "Modo de URL", "URL Mode": "Modo de URL",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "", "Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "Unidades de tempo válidas:", "Valid time units:": "Unidades de tempo válidas:",
"Validate certificate": "",
"Valves": "", "Valves": "",
"Valves updated": "", "Valves updated": "",
"Valves updated successfully": "", "Valves updated successfully": "",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Local)", "Whisper (Local)": "Whisper (Local)",
"Why?": "", "Why?": "",
"Widescreen Mode": "Modo Widescreen", "Widescreen Mode": "Modo Widescreen",
"Width": "",
"Won": "", "Won": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Espaço de Trabalho", "Workspace": "Espaço de Trabalho",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Conversațiile lui {{user}}", "{{user}}'s Chats": "Conversațiile lui {{user}}",
"{{webUIName}} Backend Required": "Este necesar backend-ul {{webUIName}}", "{{webUIName}} Backend Required": "Este necesar backend-ul {{webUIName}}",
"*Prompt node ID(s) are required for image generation": "*Sunt necesare ID-urile nodurilor de solicitare pentru generarea imaginii*", "*Prompt node ID(s) are required for image generation": "*Sunt necesare ID-urile nodurilor de solicitare pentru generarea imaginii*",
@ -29,6 +30,7 @@
"Account Activation Pending": "Activarea contului în așteptare", "Account Activation Pending": "Activarea contului în așteptare",
"Accurate information": "Informații precise", "Accurate information": "Informații precise",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Acțiuni", "Actions": "Acțiuni",
"Activate": "Activează", "Activate": "Activează",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activează această comandă tastând \"/{{COMMAND}}\" în chat.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activează această comandă tastând \"/{{COMMAND}}\" în chat.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "Uimitor", "Amazing": "Uimitor",
"an assistant": "un asistent", "an assistant": "un asistent",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Analizat", "Analyzed": "Analizat",
"Analyzing...": "Se analizează...", "Analyzing...": "Se analizează...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "Chei API", "API keys": "Chei API",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "Bannere", "Banners": "Bannere",
"Base Model (From)": "Model de Bază (De la)", "Base Model (From)": "Model de Bază (De la)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "înainte", "before": "înainte",
"Being lazy": "Fiind leneș", "Being lazy": "Fiind leneș",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "Schimbă Parola", "Change Password": "Schimbă Parola",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "Caracter", "Character": "Caracter",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Executarea codului", "Code execution": "Executarea codului",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "Este necesar URL-ul De Bază ComfyUI.", "ComfyUI Base URL is required.": "Este necesar URL-ul De Bază ComfyUI.",
"ComfyUI Workflow": "Flux de lucru ComfyUI", "ComfyUI Workflow": "Flux de lucru ComfyUI",
"ComfyUI Workflow Nodes": "Noduri de flux de lucru ComfyUI", "ComfyUI Workflow Nodes": "Noduri de flux de lucru ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Comandă", "Command": "Comandă",
"Comment": "", "Comment": "",
"Completions": "Completări", "Completions": "Completări",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Cereri Concurente", "Concurrent Requests": "Cereri Concurente",
"Config imported successfully": "",
"Configure": "Configurează", "Configure": "Configurează",
"Confirm": "Confirmă", "Confirm": "Confirmă",
"Confirm Password": "Confirmă Parola", "Confirm Password": "Confirmă Parola",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Decembrie", "December": "Decembrie",
"Deepgram": "",
"Default": "Implicit", "Default": "Implicit",
"Default (Open AI)": "Implicit (Open AI)", "Default (Open AI)": "Implicit (Open AI)",
"Default (SentenceTransformers)": "Implicit (SentenceTransformers)", "Default (SentenceTransformers)": "Implicit (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "Introduceți descrierea", "Enter description": "Introduceți descrierea",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Introduceți URL-ul Raw de pe Github", "Enter Github Raw URL": "Introduceți URL-ul Raw de pe Github",
"Enter Google PSE API Key": "Introduceți Cheia API Google PSE", "Enter Google PSE API Key": "Introduceți Cheia API Google PSE",
"Enter Google PSE Engine Id": "Introduceți ID-ul Motorului Google PSE", "Enter Google PSE Engine Id": "Introduceți ID-ul Motorului Google PSE",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Introduceți Dimensiunea Imaginii (de ex. 512x512)", "Enter Image Size (e.g. 512x512)": "Introduceți Dimensiunea Imaginii (de ex. 512x512)",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Introduceți URL-ul (de ex. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Introduceți URL-ul (de ex. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Introduceți URL-ul (de ex. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Introduceți URL-ul (de ex. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "Eroare", "Error": "Eroare",
"ERROR": "EROARE", "ERROR": "EROARE",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Evaluări", "Evaluations": "Evaluări",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Feedback haptic", "Haptic Feedback": "Feedback haptic",
"Height": "",
"Hello, {{name}}": "Salut, {{name}}", "Hello, {{name}}": "Salut, {{name}}",
"Help": "Ajutor", "Help": "Ajutor",
"Help us create the best community leaderboard by sharing your feedback history!": "Ajută-ne să creăm cel mai bun clasament al comunității împărtășind istoricul tău de feedback!", "Help us create the best community leaderboard by sharing your feedback history!": "Ajută-ne să creăm cel mai bun clasament al comunității împărtășind istoricul tău de feedback!",
@ -733,6 +753,7 @@
"Hide": "Ascunde", "Hide": "Ascunde",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Comenzi de intrare", "Input commands": "Comenzi de intrare",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "Format de fișier invalid.", "Invalid file format.": "Format de fișier invalid.",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Etichetă Invalidă", "Invalid Tag": "Etichetă Invalidă",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "Scurtături de la Tastatură", "Keyboard shortcuts": "Scurtături de la Tastatură",
"Knowledge": "Cunoștințe", "Knowledge": "Cunoștințe",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Cunoașterea a fost creată cu succes.", "Knowledge created successfully.": "Cunoașterea a fost creată cu succes.",
"Knowledge deleted successfully.": "Cunoștințele au fost șterse cu succes.", "Knowledge deleted successfully.": "Cunoștințele au fost șterse cu succes.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Resetarea cunoștințelor a fost efectuată cu succes.", "Knowledge reset successfully.": "Resetarea cunoștințelor a fost efectuată cu succes.",
"Knowledge updated successfully": "Cunoașterea a fost actualizată cu succes", "Knowledge updated successfully": "Cunoașterea a fost actualizată cu succes",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "Pierdut", "Lost": "Pierdut",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Realizat de Comunitatea OpenWebUI", "Made by Open WebUI Community": "Realizat de Comunitatea OpenWebUI",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "Dimensiune Maximă de Încărcare", "Max Upload Size": "Dimensiune Maximă de Încărcare",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maxim 3 modele pot fi descărcate simultan. Vă rugăm să încercați din nou mai târziu.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maxim 3 modele pot fi descărcate simultan. Vă rugăm să încercați din nou mai târziu.",
"May": "Mai", "May": "Mai",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Memoriile accesibile de LLM-uri vor fi afișate aici.", "Memories accessible by LLMs will be shown here.": "Memoriile accesibile de LLM-uri vor fi afișate aici.",
"Memory": "Memorie", "Memory": "Memorie",
"Memory added successfully": "Memoria a fost adăugată cu succes", "Memory added successfully": "Memoria a fost adăugată cu succes",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "Nume model", "Model Name": "Nume model",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Modelul nu a fost selectat", "Model not selected": "Modelul nu a fost selectat",
"Model Params": "Parametri Model", "Model Params": "Parametri Model",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Nume", "Name": "Nume",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Nu a fost generată nicio interogare de căutare", "No search query generated": "Nu a fost generată nicio interogare de căutare",
"No source available": "Nicio sursă disponibilă", "No source available": "Nicio sursă disponibilă",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "Nu există valve de actualizat", "No valves to update": "Nu există valve de actualizat",
"Node Ids": "",
"None": "Niciunul", "None": "Niciunul",
"Not factually correct": "Nu este corect din punct de vedere factual", "Not factually correct": "Nu este corect din punct de vedere factual",
"Not helpful": "Nu este de ajutor", "Not helpful": "Nu este de ajutor",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Caută", "Search": "Caută",
"Search a model": "Caută un model", "Search a model": "Caută un model",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "Caută în Conversații", "Search Chats": "Caută în Conversații",
"Search Collection": "Căutare Colecție", "Search Collection": "Căutare Colecție",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Consultați readme.md pentru instrucțiuni", "See readme.md for instructions": "Consultați readme.md pentru instrucțiuni",
"See what's new": "Vezi ce e nou", "See what's new": "Vezi ce e nou",
"Seed": "", "Seed": "",
"Select": "",
"Select a base model": "Selectează un model de bază", "Select a base model": "Selectează un model de bază",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Selectează un motor", "Select a engine": "Selectează un motor",
"Select a function": "Selectează o funcție", "Select a function": "Selectează o funcție",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Selectează un model", "Select a model": "Selectează un model",
"Select a model (optional)": "",
"Select a pipeline": "Selectează o conductă", "Select a pipeline": "Selectează o conductă",
"Select a pipeline url": "Selectează un URL de conductă", "Select a pipeline url": "Selectează un URL de conductă",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Selectează un instrument", "Select a tool": "Selectează un instrument",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Selectează motorul", "Select Engine": "Selectează motorul",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Selectarea cunoștințelor (Knowledge Selection) este un proces esențial în multiple domenii, incluzând inteligența artificială și învățarea automată. Aceasta presupune alegerea corectă a informațiilor sau datelor relevante dintr-un set mai mare pentru a le utiliza în analize, modele sau sisteme specifice. De exemplu, în învățarea automată, selectarea caracteristicilor este un aspect al selectării cunoștințelor și implică alegerea celor mai relevante date de intrare care contribuie la îmbunătățirea preciziei modelului.", "Select Knowledge": "Selectarea cunoștințelor (Knowledge Selection) este un proces esențial în multiple domenii, incluzând inteligența artificială și învățarea automată. Aceasta presupune alegerea corectă a informațiilor sau datelor relevante dintr-un set mai mare pentru a le utiliza în analize, modele sau sisteme specifice. De exemplu, în învățarea automată, selectarea caracteristicilor este un aspect al selectării cunoștințelor și implică alegerea celor mai relevante date de intrare care contribuie la îmbunătățirea preciziei modelului.",
"Select only one model to call": "Selectează doar un singur model pentru apel", "Select only one model to call": "Selectează doar un singur model pentru apel",
"Selected model(s) do not support image inputs": "Modelul(e) selectat(e) nu suportă intrări de imagine", "Selected model(s) do not support image inputs": "Modelul(e) selectat(e) nu suportă intrări de imagine",
@ -1215,6 +1262,7 @@
"Serply API Key": "Cheie API Serply", "Serply API Key": "Cheie API Serply",
"Serpstack API Key": "Cheie API Serpstack", "Serpstack API Key": "Cheie API Serpstack",
"Server connection verified": "Conexiunea la server a fost verificată", "Server connection verified": "Conexiunea la server a fost verificată",
"Session": "",
"Set as default": "Setează ca implicit", "Set as default": "Setează ca implicit",
"Set CFG Scale": "Setează scala CFG", "Set CFG Scale": "Setează scala CFG",
"Set Default Model": "Setează Modelul Implicit", "Set Default Model": "Setează Modelul Implicit",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Sursă", "Source": "Sursă",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Subtitlu (de ex. despre Imperiul Roman)", "Subtitle (e.g. about the Roman Empire)": "Subtitlu (de ex. despre Imperiul Roman)",
"Success": "Succes", "Success": "Succes",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Actualizat cu succes.", "Successfully updated.": "Actualizat cu succes.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Sugerat", "Suggested": "Sugerat",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Dimensiunea maximă a fișierului în MB. Dacă dimensiunea fișierului depășește această limită, fișierul nu va fi încărcat.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Dimensiunea maximă a fișierului în MB. Dacă dimensiunea fișierului depășește această limită, fișierul nu va fi încărcat.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Numărul maxim de fișiere care pot fi utilizate simultan în chat. Dacă numărul de fișiere depășește această limită, fișierele nu vor fi încărcate.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Numărul maxim de fișiere care pot fi utilizate simultan în chat. Dacă numărul de fișiere depășește această limită, fișierele nu vor fi încărcate.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Scorul ar trebui să fie o valoare între 0.0 (0%) și 1.0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Scorul ar trebui să fie o valoare între 0.0 (0%) și 1.0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Încarcă Fișiere", "Upload Files": "Încarcă Fișiere",
"Upload Pipeline": "Încarcă Conducta", "Upload Pipeline": "Încarcă Conducta",
"Upload Progress": "Progres Încărcare", "Upload Progress": "Progres Încărcare",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "Mod URL", "URL Mode": "Mod URL",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "Folosește '#' în prompt pentru a încărca și include cunoștințele tale.", "Use '#' in the prompt input to load and include your knowledge.": "Folosește '#' în prompt pentru a încărca și include cunoștințele tale.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Folosind modelul implicit de arenă cu toate modelele. Faceți clic pe butonul plus pentru a adăuga modele personalizate.", "Using the default arena model with all models. Click the plus button to add custom models.": "Folosind modelul implicit de arenă cu toate modelele. Faceți clic pe butonul plus pentru a adăuga modele personalizate.",
"Valid time units:": "Unități de timp valide:", "Valid time units:": "Unități de timp valide:",
"Validate certificate": "",
"Valves": "Valve", "Valves": "Valve",
"Valves updated": "Valve actualizate", "Valves updated": "Valve actualizate",
"Valves updated successfully": "Valve actualizate cu succes", "Valves updated successfully": "Valve actualizate cu succes",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Local)", "Whisper (Local)": "Whisper (Local)",
"Why?": "", "Why?": "",
"Widescreen Mode": "Mod Ecran Larg", "Widescreen Mode": "Mod Ecran Larg",
"Width": "",
"Won": "Câștigat", "Won": "Câștigat",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Spațiu de Lucru", "Workspace": "Spațiu de Lucru",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} скрытых строк", "{{COUNT}} hidden lines": "{{COUNT}} скрытых строк",
"{{COUNT}} Replies": "{{COUNT}} Ответов", "{{COUNT}} Replies": "{{COUNT}} Ответов",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Чаты {{user}}'а", "{{user}}'s Chats": "Чаты {{user}}'а",
"{{webUIName}} Backend Required": "Необходимо подключение к серверу {{webUIName}}", "{{webUIName}} Backend Required": "Необходимо подключение к серверу {{webUIName}}",
"*Prompt node ID(s) are required for image generation": "ID узлов промптов обязательны для генерации изображения", "*Prompt node ID(s) are required for image generation": "ID узлов промптов обязательны для генерации изображения",
@ -29,6 +30,7 @@
"Account Activation Pending": "Ожидание активации учетной записи", "Account Activation Pending": "Ожидание активации учетной записи",
"Accurate information": "Точная информация", "Accurate information": "Точная информация",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Действия", "Actions": "Действия",
"Activate": "Активировать", "Activate": "Активировать",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Активируйте эту команду, набрав \"/{{COMMAND}}\" для ввода в чате.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Активируйте эту команду, набрав \"/{{COMMAND}}\" для ввода в чате.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "Всегда проигрывать звук уведомления", "Always Play Notification Sound": "Всегда проигрывать звук уведомления",
"Amazing": "Удивительно", "Amazing": "Удивительно",
"an assistant": "ассистент", "an assistant": "ассистент",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Проанализировано", "Analyzed": "Проанализировано",
"Analyzing...": "Анализирую...", "Analyzing...": "Анализирую...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Ограничения на энд-поинт API", "API Key Endpoint Restrictions": "Ограничения на энд-поинт API",
"API keys": "Ключи API", "API keys": "Ключи API",
"API Version": "Версия API", "API Version": "Версия API",
"API Version is required": "",
"Application DN": "DN приложения", "Application DN": "DN приложения",
"Application DN Password": "DN-пароль приложения", "Application DN Password": "DN-пароль приложения",
"applies to all users with the \"user\" role": "применяется ко всем пользователям с ролью «пользователь»", "applies to all users with the \"user\" role": "применяется ко всем пользователям с ролью «пользователь»",
@ -160,6 +164,7 @@
"Banners": "Баннеры", "Banners": "Баннеры",
"Base Model (From)": "Базовая модель (от)", "Base Model (From)": "Базовая модель (от)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "до", "before": "до",
"Being lazy": "Лениво", "Being lazy": "Лениво",
"Beta": "Бета", "Beta": "Бета",
@ -189,7 +194,9 @@
"Capture Audio": "Захват аудио", "Capture Audio": "Захват аудио",
"Certificate Path": "Путь к сертификату", "Certificate Path": "Путь к сертификату",
"Change Password": "Изменить пароль", "Change Password": "Изменить пароль",
"Channel deleted successfully": "",
"Channel Name": "Название канала", "Channel Name": "Название канала",
"Channel updated successfully": "",
"Channels": "Каналы", "Channels": "Каналы",
"Character": "Символ", "Character": "Символ",
"Character limit for autocomplete generation input": "Ограничение количества символов для ввода при генерации автозаполнения", "Character limit for autocomplete generation input": "Ограничение количества символов для ввода при генерации автозаполнения",
@ -238,6 +245,7 @@
"Close modal": "Закрыть окно", "Close modal": "Закрыть окно",
"Close settings modal": "Закрыть окно настроек", "Close settings modal": "Закрыть окно настроек",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Исполнение кода", "Code execution": "Исполнение кода",
"Code Execution": "Исполнение кода", "Code Execution": "Исполнение кода",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "Необходим базовый адрес URL ComfyUI.", "ComfyUI Base URL is required.": "Необходим базовый адрес URL ComfyUI.",
"ComfyUI Workflow": "Рабочий процесс ComfyUI", "ComfyUI Workflow": "Рабочий процесс ComfyUI",
"ComfyUI Workflow Nodes": "Узлы рабочего процесса ComfyUI", "ComfyUI Workflow Nodes": "Узлы рабочего процесса ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Команда", "Command": "Команда",
"Comment": "", "Comment": "",
"Completions": "Завершения", "Completions": "Завершения",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Одновременные запросы", "Concurrent Requests": "Одновременные запросы",
"Config imported successfully": "",
"Configure": "Настроить", "Configure": "Настроить",
"Confirm": "Подтвердить", "Confirm": "Подтвердить",
"Confirm Password": "Подтвердите пароль", "Confirm Password": "Подтвердите пароль",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Требуется API-ключ Datalab Marker.", "Datalab Marker API Key required.": "Требуется API-ключ Datalab Marker.",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Декабрь", "December": "Декабрь",
"Deepgram": "",
"Default": "По умолчанию", "Default": "По умолчанию",
"Default (Open AI)": "По умолчанию (Open AI)", "Default (Open AI)": "По умолчанию (Open AI)",
"Default (SentenceTransformers)": "По умолчанию (SentenceTransformers)", "Default (SentenceTransformers)": "По умолчанию (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Прямые подключения", "Direct Connections": "Прямые подключения",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Прямые подключения позволяют пользователям подключаться к своим собственным конечным точкам API, совместимым с OpenAI.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Прямые подключения позволяют пользователям подключаться к своим собственным конечным точкам API, совместимым с OpenAI.",
"Direct Tool Servers": "Доступ к серверам инструментов", "Direct Tool Servers": "Доступ к серверам инструментов",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "Отключить извлечение изображений", "Disable Image Extraction": "Отключить извлечение изображений",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Отключить извлечение изображений из PDF. Если включена параметр Использовать LLM, изображения будут подписаны автоматически. По умолчанию установлено значение Выкл.", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Отключить извлечение изображений из PDF. Если включена параметр Использовать LLM, изображения будут подписаны автоматически. По умолчанию установлено значение Выкл.",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Введите пары \"token:bias_value\", разделенные запятыми (пример: 5432:100, 413:-100).", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Введите пары \"token:bias_value\", разделенные запятыми (пример: 5432:100, 413:-100).",
"Enter Config in JSON format": "Введите конфигурацию в формате JSON", "Enter Config in JSON format": "Введите конфигурацию в формате JSON",
"Enter content for the pending user info overlay. Leave empty for default.": "Введите содержимое информационного оверлея для ожидающего пользователя. Оставьте поле пустым для параметра по умолчанию.", "Enter content for the pending user info overlay. Leave empty for default.": "Введите содержимое информационного оверлея для ожидающего пользователя. Оставьте поле пустым для параметра по умолчанию.",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "Введите API-ключ Datalab Marker", "Enter Datalab Marker API Key": "Введите API-ключ Datalab Marker",
"Enter description": "Введите описание", "Enter description": "Введите описание",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Введите необработанный URL-адрес Github", "Enter Github Raw URL": "Введите необработанный URL-адрес Github",
"Enter Google PSE API Key": "Введите ключ API Google PSE", "Enter Google PSE API Key": "Введите ключ API Google PSE",
"Enter Google PSE Engine Id": "Введите Id движка Google PSE", "Enter Google PSE Engine Id": "Введите Id движка Google PSE",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Введите размер изображения (например, 512x512)", "Enter Image Size (e.g. 512x512)": "Введите размер изображения (например, 512x512)",
"Enter Jina API Key": "Введите ключ API Jina", "Enter Jina API Key": "Введите ключ API Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Введите Top K переоценщика", "Enter Top K Reranker": "Введите Top K переоценщика",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Введите URL-адрес (например, http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Введите URL-адрес (например, http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Введите URL-адрес (например, http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Введите URL-адрес (например, http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "Введите пароль Yacy", "Enter Yacy Password": "Введите пароль Yacy",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Введите URL-адрес Yacy (напр., http://yacy.example.com:8090)", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Введите URL-адрес Yacy (напр., http://yacy.example.com:8090)",
"Enter Yacy Username": "Введите имя пользователя Yacy", "Enter Yacy Username": "Введите имя пользователя Yacy",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Введите URL вашего веб-хука", "Enter your webhook URL": "Введите URL вашего веб-хука",
"Error": "Ошибка", "Error": "Ошибка",
"ERROR": "ОШИБКА", "ERROR": "ОШИБКА",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Ошибка доступа к Google Drive: {{error}}", "Error accessing Google Drive: {{error}}": "Ошибка доступа к Google Drive: {{error}}",
"Error accessing media devices.": "Ошибка доступа к мультимедийным устройствам.", "Error accessing media devices.": "Ошибка доступа к мультимедийным устройствам.",
"Error starting recording.": "Ошибка при запуске записи.", "Error starting recording.": "Ошибка при запуске записи.",
"Error unloading model: {{error}}": "Ошибка загрузки модели: {{error}}", "Error unloading model: {{error}}": "Ошибка загрузки модели: {{error}}",
"Error uploading file: {{error}}": "Ошибка загрузки файла: {{error}}", "Error uploading file: {{error}}": "Ошибка загрузки файла: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Оценки", "Evaluations": "Оценки",
"Everyone": "", "Everyone": "",
"Exa API Key": "Ключ API для Exa", "Exa API Key": "Ключ API для Exa",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Тактильная обратная связь", "Haptic Feedback": "Тактильная обратная связь",
"Height": "",
"Hello, {{name}}": "Привет, {{name}}", "Hello, {{name}}": "Привет, {{name}}",
"Help": "Помощь", "Help": "Помощь",
"Help us create the best community leaderboard by sharing your feedback history!": "Помогите нам создать лучшую таблицу лидеров сообщества, поделившись историей своих отзывов!", "Help us create the best community leaderboard by sharing your feedback history!": "Помогите нам создать лучшую таблицу лидеров сообщества, поделившись историей своих отзывов!",
@ -733,6 +753,7 @@
"Hide": "Скрыть", "Hide": "Скрыть",
"Hide from Sidebar": "Скрыть из боковой панели", "Hide from Sidebar": "Скрыть из боковой панели",
"Hide Model": "Скрыть модель", "Hide Model": "Скрыть модель",
"High": "",
"High Contrast Mode": "Режим высокой контрастности", "High Contrast Mode": "Режим высокой контрастности",
"Home": "Домой", "Home": "Домой",
"Host": "Хост", "Host": "Хост",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Использовать весь контент в качестве контекста для комплексной обработки, это рекомендуется для сложных запросов.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Использовать весь контент в качестве контекста для комплексной обработки, это рекомендуется для сложных запросов.",
"Input": "", "Input": "",
"Input commands": "Введите команды", "Input commands": "Введите команды",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "Недопустимое содержимое файла", "Invalid file content": "Недопустимое содержимое файла",
"Invalid file format.": "Неверный формат файла.", "Invalid file format.": "Неверный формат файла.",
"Invalid JSON file": "Недопустимый файл JSON", "Invalid JSON file": "Недопустимый файл JSON",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Недопустимый тег", "Invalid Tag": "Недопустимый тег",
"is typing...": "печатает...", "is typing...": "печатает...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "Оставить на боковой панели", "Keep in Sidebar": "Оставить на боковой панели",
"Key": "Ключ", "Key": "Ключ",
"Key is required": "",
"Keyboard shortcuts": "Горячие клавиши", "Keyboard shortcuts": "Горячие клавиши",
"Knowledge": "Знания", "Knowledge": "Знания",
"Knowledge Access": "Доступ к знаниям", "Knowledge Access": "Доступ к знаниям",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Знания созданы успешно.", "Knowledge created successfully.": "Знания созданы успешно.",
"Knowledge deleted successfully.": "Знания успешно удалены.", "Knowledge deleted successfully.": "Знания успешно удалены.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Публичный обмен знаниями", "Knowledge Public Sharing": "Публичный обмен знаниями",
"Knowledge reset successfully.": "Знания успешно сброшены.", "Knowledge reset successfully.": "Знания успешно сброшены.",
"Knowledge updated successfully": "Знания успешно обновлены", "Knowledge updated successfully": "Знания успешно обновлены",
@ -852,6 +878,7 @@
"Local Task Model": "Модель локальной задачи", "Local Task Model": "Модель локальной задачи",
"Location access not allowed": "Доступ к местоположению запрещен", "Location access not allowed": "Доступ к местоположению запрещен",
"Lost": "Поражение", "Lost": "Поражение",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Сделано сообществом OpenWebUI", "Made by Open WebUI Community": "Сделано сообществом OpenWebUI",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "Максимальный размер загрузок", "Max Upload Size": "Максимальный размер загрузок",
"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": "Май",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Воспоминания, доступные LLMs, будут отображаться здесь.", "Memories accessible by LLMs will be shown here.": "Воспоминания, доступные LLMs, будут отображаться здесь.",
"Memory": "Воспоминания", "Memory": "Воспоминания",
"Memory added successfully": "Воспоминание успешно добавлено", "Memory added successfully": "Воспоминание успешно добавлено",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "IDs Модели", "Model IDs": "IDs Модели",
"Model Name": "Название Модели", "Model Name": "Название Модели",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Модель не выбрана", "Model not selected": "Модель не выбрана",
"Model Params": "Параметры модели", "Model Params": "Параметры модели",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Имя", "Name": "Имя",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Назовите свою базу знаний", "Name your knowledge base": "Назовите свою базу знаний",
"Native": "Нативно", "Native": "Нативно",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Поисковый запрос не сгенерирован", "No search query generated": "Поисковый запрос не сгенерирован",
"No source available": "Нет доступных источников", "No source available": "Нет доступных источников",
"No users were found.": "Пользователи не найдены.", "No users were found.": "Пользователи не найдены.",
"No valves": "",
"No valves to update": "Нет вентилей для обновления", "No valves to update": "Нет вентилей для обновления",
"Node Ids": "",
"None": "Нет", "None": "Нет",
"Not factually correct": "Не соответствует действительности", "Not factually correct": "Не соответствует действительности",
"Not helpful": "Бесполезно", "Not helpful": "Бесполезно",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Прокручивать при изменении ветки", "Scroll On Branch Change": "Прокручивать при изменении ветки",
"Search": "Поиск", "Search": "Поиск",
"Search a model": "Поиск по моделям", "Search a model": "Поиск по моделям",
"Search all emojis": "",
"Search Base": "Поиск в базе", "Search Base": "Поиск в базе",
"Search Chats": "Поиск в чатах", "Search Chats": "Поиск в чатах",
"Search Collection": "Поиск коллекции", "Search Collection": "Поиск коллекции",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Смотрите readme.md для инструкций", "See readme.md for instructions": "Смотрите readme.md для инструкций",
"See what's new": "Посмотреть, что нового", "See what's new": "Посмотреть, что нового",
"Seed": "", "Seed": "",
"Select": "",
"Select a base model": "Выберите базовую модель", "Select a base model": "Выберите базовую модель",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Выберите движок", "Select a engine": "Выберите движок",
"Select a function": "Выберите функцию", "Select a function": "Выберите функцию",
"Select a group": "Выбрать группу", "Select a group": "Выбрать группу",
"Select a language": "",
"Select a mode": "",
"Select a model": "Выберите модель", "Select a model": "Выберите модель",
"Select a model (optional)": "",
"Select a pipeline": "Выберите конвейер", "Select a pipeline": "Выберите конвейер",
"Select a pipeline url": "Выберите URL-адрес конвейера", "Select a pipeline url": "Выберите URL-адрес конвейера",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Выберите инструмент", "Select a tool": "Выберите инструмент",
"Select a voice": "",
"Select an auth method": "Выбрать метод аутентификации", "Select an auth method": "Выбрать метод аутентификации",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Выбрать инстанс Ollama", "Select an Ollama instance": "Выбрать инстанс Ollama",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Выберите движок", "Select Engine": "Выберите движок",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Выбрать знание", "Select Knowledge": "Выбрать знание",
"Select only one model to call": "Выберите только одну модель для вызова", "Select only one model to call": "Выберите только одну модель для вызова",
"Selected model(s) do not support image inputs": "Выбранные модели не поддерживают ввод изображений", "Selected model(s) do not support image inputs": "Выбранные модели не поддерживают ввод изображений",
@ -1215,6 +1262,7 @@
"Serply API Key": "Ключ API Serply", "Serply API Key": "Ключ API Serply",
"Serpstack API Key": "Ключ API Serpstack", "Serpstack API Key": "Ключ API Serpstack",
"Server connection verified": "Соединение с сервером проверено", "Server connection verified": "Соединение с сервером проверено",
"Session": "",
"Set as default": "Установить по умолчанию", "Set as default": "Установить по умолчанию",
"Set CFG Scale": "Установить CFG Scale", "Set CFG Scale": "Установить CFG Scale",
"Set Default Model": "Установить модель по умолчанию", "Set Default Model": "Установить модель по умолчанию",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "Пропустить кэширование", "Skip Cache": "Пропустить кэширование",
"Skip the cache and re-run the inference. Defaults to False.": "Пропустить кэширование и перезапустить вывод. По умолчанию установлено значение Выкл.", "Skip the cache and re-run the inference. Defaults to False.": "Пропустить кэширование и перезапустить вывод. По умолчанию установлено значение Выкл.",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Источник", "Source": "Источник",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Стилизованный экспорт в формате PDF", "Stylized PDF Export": "Стилизованный экспорт в формате PDF",
"Subtitle (e.g. about the Roman Empire)": "Подзаголовок (напр., о Римской империи)", "Subtitle (e.g. about the Roman Empire)": "Подзаголовок (напр., о Римской империи)",
"Success": "Успех", "Success": "Успех",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Успешно обновлено.", "Successfully updated.": "Успешно обновлено.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Предложено", "Suggested": "Предложено",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Максимальный размер файла в МБ. Если размер файла превысит это ограничение, файл не будет загружен.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Максимальный размер файла в МБ. Если размер файла превысит это ограничение, файл не будет загружен.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Максимальное количество файлов, которые могут быть использованы одновременно в чате. Если количество файлов превысит это ограничение, файлы не будут загружены.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Максимальное количество файлов, которые могут быть использованы одновременно в чате. Если количество файлов превысит это ограничение, файлы не будут загружены.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Формат вывода текста. Может быть 'json', 'markdown', или 'html'. По умолчанию 'markdown'.", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Формат вывода текста. Может быть 'json', 'markdown', или 'html'. По умолчанию 'markdown'.",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Оценка должна быть значением между 0,0 (0%) и 1,0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Оценка должна быть значением между 0,0 (0%) и 1,0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Температура модели. При повышении температуры модель будет отвечать более творчески.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Температура модели. При повышении температуры модель будет отвечать более творчески.",
@ -1439,7 +1495,9 @@
"Upload Files": "Загрузить файлы", "Upload Files": "Загрузить файлы",
"Upload Pipeline": "Загрузить конвейер", "Upload Pipeline": "Загрузить конвейер",
"Upload Progress": "Прогресс загрузки", "Upload Progress": "Прогресс загрузки",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "Режим URL", "URL Mode": "Режим URL",
"Usage": "Использование", "Usage": "Использование",
"Use '#' in the prompt input to load and include your knowledge.": "Используйте «#» в строке ввода, чтобы загрузить и включить свои знания.", "Use '#' in the prompt input to load and include your knowledge.": "Используйте «#» в строке ввода, чтобы загрузить и включить свои знания.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Использование модели арены по умолчанию со всеми моделями. Нажмите кнопку «плюс», чтобы добавить пользовательские модели.", "Using the default arena model with all models. Click the plus button to add custom models.": "Использование модели арены по умолчанию со всеми моделями. Нажмите кнопку «плюс», чтобы добавить пользовательские модели.",
"Valid time units:": "Допустимые единицы времени:", "Valid time units:": "Допустимые единицы времени:",
"Validate certificate": "",
"Valves": "Вентили", "Valves": "Вентили",
"Valves updated": "Вентили обновлены", "Valves updated": "Вентили обновлены",
"Valves updated successfully": "Вентили успешно обновлены", "Valves updated successfully": "Вентили успешно обновлены",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Локально)", "Whisper (Local)": "Whisper (Локально)",
"Why?": "Почему?", "Why?": "Почему?",
"Widescreen Mode": "Широкоэкранный режим", "Widescreen Mode": "Широкоэкранный режим",
"Width": "",
"Won": "Победа", "Won": "Победа",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Работает совместно с top-k. Более высокое значение (например, 0,95) приведет к более разнообразному тексту, в то время как более низкое значение (например, 0,5) приведет к созданию более сфокусированного и консервативного текста.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Работает совместно с top-k. Более высокое значение (например, 0,95) приведет к более разнообразному тексту, в то время как более низкое значение (например, 0,5) приведет к созданию более сфокусированного и консервативного текста.",
"Workspace": "Рабочее пространство", "Workspace": "Рабочее пространство",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}'s konverzácie", "{{user}}'s Chats": "{{user}}'s konverzácie",
"{{webUIName}} Backend Required": "Vyžaduje sa {{webUIName}} Backend", "{{webUIName}} Backend Required": "Vyžaduje sa {{webUIName}} Backend",
"*Prompt node ID(s) are required for image generation": "*Sú potrebné IDs pre prompt node na generovanie obrázkov", "*Prompt node ID(s) are required for image generation": "*Sú potrebné IDs pre prompt node na generovanie obrázkov",
@ -29,6 +30,7 @@
"Account Activation Pending": "Čaká sa na aktiváciu účtu", "Account Activation Pending": "Čaká sa na aktiváciu účtu",
"Accurate information": "Presné informácie", "Accurate information": "Presné informácie",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Akcie", "Actions": "Akcie",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktivujte tento príkaz napísaním \"/{{COMMAND}}\" do chatového vstupu", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktivujte tento príkaz napísaním \"/{{COMMAND}}\" do chatového vstupu",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "", "Amazing": "",
"an assistant": "asistent", "an assistant": "asistent",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "API kľúče", "API keys": "API kľúče",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "Bannery", "Banners": "Bannery",
"Base Model (From)": "Základný model (z)", "Base Model (From)": "Základný model (z)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "pred", "before": "pred",
"Being lazy": "", "Being lazy": "",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "Zmeniť heslo", "Change Password": "Zmeniť heslo",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "Znak", "Character": "Znak",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Vykonávanie kódu", "Code execution": "Vykonávanie kódu",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "Je vyžadovaná základná URL pre ComfyUI.", "ComfyUI Base URL is required.": "Je vyžadovaná základná URL pre ComfyUI.",
"ComfyUI Workflow": "Pracovný postup ComfyUI", "ComfyUI Workflow": "Pracovný postup ComfyUI",
"ComfyUI Workflow Nodes": "Pracovné uzly ComfyUI", "ComfyUI Workflow Nodes": "Pracovné uzly ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Príkaz", "Command": "Príkaz",
"Comment": "", "Comment": "",
"Completions": "Doplnenia", "Completions": "Doplnenia",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Súčasné požiadavky", "Concurrent Requests": "Súčasné požiadavky",
"Config imported successfully": "",
"Configure": "Konfigurovať", "Configure": "Konfigurovať",
"Confirm": "Potvrdiť", "Confirm": "Potvrdiť",
"Confirm Password": "Potvrdenie hesla", "Confirm Password": "Potvrdenie hesla",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "December", "December": "December",
"Deepgram": "",
"Default": "Predvolené hodnoty alebo nastavenia.", "Default": "Predvolené hodnoty alebo nastavenia.",
"Default (Open AI)": "Predvolené (Open AI)", "Default (Open AI)": "Predvolené (Open AI)",
"Default (SentenceTransformers)": "Predvolené (SentenceTransformers)", "Default (SentenceTransformers)": "Predvolené (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "Zadajte popis", "Enter description": "Zadajte popis",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Zadajte URL adresu Github Raw", "Enter Github Raw URL": "Zadajte URL adresu Github Raw",
"Enter Google PSE API Key": "Zadajte kľúč rozhrania API Google PSE", "Enter Google PSE API Key": "Zadajte kľúč rozhrania API Google PSE",
"Enter Google PSE Engine Id": "Zadajte ID vyhľadávacieho mechanizmu Google PSE", "Enter Google PSE Engine Id": "Zadajte ID vyhľadávacieho mechanizmu Google PSE",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Zadajte veľkosť obrázka (napr. 512x512)", "Enter Image Size (e.g. 512x512)": "Zadajte veľkosť obrázka (napr. 512x512)",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Zadajte URL (napr. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Zadajte URL (napr. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Zadajte URL (napr. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Zadajte URL (napr. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "Chyba", "Error": "Chyba",
"ERROR": "Chyba", "ERROR": "Chyba",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Hodnotenia", "Evaluations": "Hodnotenia",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Haptická spätná väzba", "Haptic Feedback": "Haptická spätná väzba",
"Height": "",
"Hello, {{name}}": "Ahoj, {{name}}", "Hello, {{name}}": "Ahoj, {{name}}",
"Help": "Pomoc", "Help": "Pomoc",
"Help us create the best community leaderboard by sharing your feedback history!": "Pomôžte nám vytvoriť najlepší komunitný rebríček zdieľaním histórie vašej spätnej väzby!", "Help us create the best community leaderboard by sharing your feedback history!": "Pomôžte nám vytvoriť najlepší komunitný rebríček zdieľaním histórie vašej spätnej väzby!",
@ -733,6 +753,7 @@
"Hide": "Skryť", "Hide": "Skryť",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Vstupné príkazy", "Input commands": "Vstupné príkazy",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "Neplatný formát súboru.", "Invalid file format.": "Neplatný formát súboru.",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Neplatný tag", "Invalid Tag": "Neplatný tag",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "Klávesové skratky", "Keyboard shortcuts": "Klávesové skratky",
"Knowledge": "Znalosti", "Knowledge": "Znalosti",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Znalosť úspešne vytvorená.", "Knowledge created successfully.": "Znalosť úspešne vytvorená.",
"Knowledge deleted successfully.": "Znalosti boli úspešne odstránené.", "Knowledge deleted successfully.": "Znalosti boli úspešne odstránené.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Úspešné obnovenie znalostí.", "Knowledge reset successfully.": "Úspešné obnovenie znalostí.",
"Knowledge updated successfully": "Znalosti úspešne aktualizované", "Knowledge updated successfully": "Znalosti úspešne aktualizované",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "Stratený", "Lost": "Stratený",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Vytvorené komunitou OpenWebUI", "Made by Open WebUI Community": "Vytvorené komunitou OpenWebUI",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "Maximálna veľkosť nahrávania", "Max Upload Size": "Maximálna veľkosť nahrávania",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximálne 3 modely môžu byť stiahnuté súčasne. Prosím skúste to znova neskôr.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximálne 3 modely môžu byť stiahnuté súčasne. Prosím skúste to znova neskôr.",
"May": "Máj", "May": "Máj",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Spomienky prístupné LLM budú zobrazené tu.", "Memories accessible by LLMs will be shown here.": "Spomienky prístupné LLM budú zobrazené tu.",
"Memory": "Pamäť", "Memory": "Pamäť",
"Memory added successfully": "Pamäť bola úspešne pridaná.", "Memory added successfully": "Pamäť bola úspešne pridaná.",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "Názov modelu", "Model Name": "Názov modelu",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Model nebol vybraný", "Model not selected": "Model nebol vybraný",
"Model Params": "Parametre modelu", "Model Params": "Parametre modelu",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Meno", "Name": "Meno",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Nebola vygenerovaná žiadna vyhľadávacia otázka.", "No search query generated": "Nebola vygenerovaná žiadna vyhľadávacia otázka.",
"No source available": "Nie je dostupný žiadny zdroj.", "No source available": "Nie je dostupný žiadny zdroj.",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "Žiadne ventily na aktualizáciu", "No valves to update": "Žiadne ventily na aktualizáciu",
"Node Ids": "",
"None": "Žiadny", "None": "Žiadny",
"Not factually correct": "Nie je fakticky správne", "Not factually correct": "Nie je fakticky správne",
"Not helpful": "Nepomocné", "Not helpful": "Nepomocné",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Vyhľadávanie", "Search": "Vyhľadávanie",
"Search a model": "Vyhľadať model", "Search a model": "Vyhľadať model",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "Vyhľadávanie v chate", "Search Chats": "Vyhľadávanie v chate",
"Search Collection": "Hľadať kolekciu", "Search Collection": "Hľadať kolekciu",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Pozrite si {{readme.md}} pre pokyny.", "See readme.md for instructions": "Pozrite si {{readme.md}} pre pokyny.",
"See what's new": "Pozrite sa, čo je nové", "See what's new": "Pozrite sa, čo je nové",
"Seed": "Semienko", "Seed": "Semienko",
"Select": "",
"Select a base model": "Vyberte základný model", "Select a base model": "Vyberte základný model",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Vyberte engine", "Select a engine": "Vyberte engine",
"Select a function": "Vyberte funkciu", "Select a function": "Vyberte funkciu",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Vyberte model", "Select a model": "Vyberte model",
"Select a model (optional)": "",
"Select a pipeline": "Vyberte pipeline", "Select a pipeline": "Vyberte pipeline",
"Select a pipeline url": "Vyberte URL adresu kanála", "Select a pipeline url": "Vyberte URL adresu kanála",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Vyberte nástroj", "Select a tool": "Vyberte nástroj",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Vyberte engine", "Select Engine": "Vyberte engine",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Vybrať znalosti", "Select Knowledge": "Vybrať znalosti",
"Select only one model to call": "Vyberte iba jeden model, ktorý chcete použiť", "Select only one model to call": "Vyberte iba jeden model, ktorý chcete použiť",
"Selected model(s) do not support image inputs": "Vybraný(é) model(y) nepodporujú vstupy v podobe obrázkov.", "Selected model(s) do not support image inputs": "Vybraný(é) model(y) nepodporujú vstupy v podobe obrázkov.",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API kľúč", "Serply API Key": "Serply API kľúč",
"Serpstack API Key": "Kľúč API pre Serpstack", "Serpstack API Key": "Kľúč API pre Serpstack",
"Server connection verified": "Pripojenie k serveru overené", "Server connection verified": "Pripojenie k serveru overené",
"Session": "",
"Set as default": "Nastaviť ako predvolené", "Set as default": "Nastaviť ako predvolené",
"Set CFG Scale": "Nastavte hodnotu CFG Scale", "Set CFG Scale": "Nastavte hodnotu CFG Scale",
"Set Default Model": "Nastavenie predvoleného modelu", "Set Default Model": "Nastavenie predvoleného modelu",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Zdroj", "Source": "Zdroj",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Titulky (napr. o Rímskej ríši)", "Subtitle (e.g. about the Roman Empire)": "Titulky (napr. o Rímskej ríši)",
"Success": "Úspech", "Success": "Úspech",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Úspešne aktualizované.", "Successfully updated.": "Úspešne aktualizované.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Navrhované", "Suggested": "Navrhované",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Maximálna veľkosť súboru v MB. Ak veľkosť súboru presiahne tento limit, súbor nebude nahraný.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Maximálna veľkosť súboru v MB. Ak veľkosť súboru presiahne tento limit, súbor nebude nahraný.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Maximálny počet súborov, ktoré je možné použiť naraz v chate. Ak počet súborov presiahne tento limit, súbory nebudú nahrané.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Maximálny počet súborov, ktoré je možné použiť naraz v chate. Ak počet súborov presiahne tento limit, súbory nebudú nahrané.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Skóre by malo byť hodnotou medzi 0,0 (0%) a 1,0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Skóre by malo byť hodnotou medzi 0,0 (0%) a 1,0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Nahrať súbory", "Upload Files": "Nahrať súbory",
"Upload Pipeline": "Nahrať pipeline", "Upload Pipeline": "Nahrať pipeline",
"Upload Progress": "Priebeh nahrávania", "Upload Progress": "Priebeh nahrávania",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "Režim URL", "URL Mode": "Režim URL",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "Použite '#' vo vstupe promptu na načítanie a zahrnutie vašich vedomostí.", "Use '#' in the prompt input to load and include your knowledge.": "Použite '#' vo vstupe promptu na načítanie a zahrnutie vašich vedomostí.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Používanie predvoleného modelu arény so všetkými modelmi. Kliknutím na tlačidlo plus pridajte vlastné modely.", "Using the default arena model with all models. Click the plus button to add custom models.": "Používanie predvoleného modelu arény so všetkými modelmi. Kliknutím na tlačidlo plus pridajte vlastné modely.",
"Valid time units:": "Platné časové jednotky:", "Valid time units:": "Platné časové jednotky:",
"Validate certificate": "",
"Valves": "Ventily", "Valves": "Ventily",
"Valves updated": "Ventily aktualizované", "Valves updated": "Ventily aktualizované",
"Valves updated successfully": "Ventily boli úspešne aktualizované.", "Valves updated successfully": "Ventily boli úspešne aktualizované.",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Lokálne)", "Whisper (Local)": "Whisper (Lokálne)",
"Why?": "Prečo?", "Why?": "Prečo?",
"Widescreen Mode": "Režim širokouhlého zobrazenia", "Widescreen Mode": "Režim širokouhlého zobrazenia",
"Width": "",
"Won": "Vyhral", "Won": "Vyhral",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "", "Workspace": "",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} одговора", "{{COUNT}} Replies": "{{COUNT}} одговора",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Ћаскања корисника {{user}}", "{{user}}'s Chats": "Ћаскања корисника {{user}}",
"{{webUIName}} Backend Required": "Захтева се {{webUIName}} позадинац", "{{webUIName}} Backend Required": "Захтева се {{webUIName}} позадинац",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "Налози за активирање", "Account Activation Pending": "Налози за активирање",
"Accurate information": "Прецизне информације", "Accurate information": "Прецизне информације",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Радње", "Actions": "Радње",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Покрените ову наредбу куцањем \"/{{COMMAND}}\" у ћаскање.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Покрените ову наредбу куцањем \"/{{COMMAND}}\" у ћаскање.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "Невероватно", "Amazing": "Невероватно",
"an assistant": "помоћник", "an assistant": "помоћник",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "API кључеви", "API keys": "API кључеви",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "Барјаке", "Banners": "Барјаке",
"Base Model (From)": "Основни модел (од)", "Base Model (From)": "Основни модел (од)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "пре", "before": "пре",
"Being lazy": "Бити лењ", "Being lazy": "Бити лењ",
"Beta": "Бета", "Beta": "Бета",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "Путања до сертификата", "Certificate Path": "Путања до сертификата",
"Change Password": "Промени лозинку", "Change Password": "Промени лозинку",
"Channel deleted successfully": "",
"Channel Name": "Назив канала", "Channel Name": "Назив канала",
"Channel updated successfully": "",
"Channels": "Канали", "Channels": "Канали",
"Character": "Знак", "Character": "Знак",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Извршавање кода", "Code execution": "Извршавање кода",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "Потребна је основна адреса за ComfyUI.", "ComfyUI Base URL is required.": "Потребна је основна адреса за ComfyUI.",
"ComfyUI Workflow": "ComfyUI радни ток", "ComfyUI Workflow": "ComfyUI радни ток",
"ComfyUI Workflow Nodes": "ComfyUI чворови радног тока", "ComfyUI Workflow Nodes": "ComfyUI чворови радног тока",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Наредба", "Command": "Наредба",
"Comment": "", "Comment": "",
"Completions": "Допуне", "Completions": "Допуне",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Упоредни захтеви", "Concurrent Requests": "Упоредни захтеви",
"Config imported successfully": "",
"Configure": "Подеси", "Configure": "Подеси",
"Confirm": "Потврди", "Confirm": "Потврди",
"Confirm Password": "Потврди лозинку", "Confirm Password": "Потврди лозинку",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Децембар", "December": "Децембар",
"Deepgram": "",
"Default": "Подразумевано", "Default": "Подразумевано",
"Default (Open AI)": "Подразумевано (Open AI)", "Default (Open AI)": "Подразумевано (Open AI)",
"Default (SentenceTransformers)": "Подразумевано (SentenceTransformers)", "Default (SentenceTransformers)": "Подразумевано (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "", "Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Унесите Гитхуб Раw УРЛ адресу", "Enter Github Raw URL": "Унесите Гитхуб Раw УРЛ адресу",
"Enter Google PSE API Key": "Унесите Гоогле ПСЕ АПИ кључ", "Enter Google PSE API Key": "Унесите Гоогле ПСЕ АПИ кључ",
"Enter Google PSE Engine Id": "Унесите Гоогле ПСЕ ИД машине", "Enter Google PSE Engine Id": "Унесите Гоогле ПСЕ ИД машине",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Унесите величину слике (нпр. 512x512)", "Enter Image Size (e.g. 512x512)": "Унесите величину слике (нпр. 512x512)",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Унесите адресу (нпр. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Унесите адресу (нпр. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Унесите адресу (нпр. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Унесите адресу (нпр. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "Грешка", "Error": "Грешка",
"ERROR": "ГРЕШКА", "ERROR": "ГРЕШКА",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Процењивања", "Evaluations": "Процењивања",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Вибрација као одговор", "Haptic Feedback": "Вибрација као одговор",
"Height": "",
"Hello, {{name}}": "Здраво, {{name}}", "Hello, {{name}}": "Здраво, {{name}}",
"Help": "Помоћ", "Help": "Помоћ",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "Сакриј", "Hide": "Сакриј",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "Домаћин", "Host": "Домаћин",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Унеси наредбе", "Input commands": "Унеси наредбе",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "", "Invalid file format.": "",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Неисправна ознака", "Invalid Tag": "Неисправна ознака",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "Кључ", "Key": "Кључ",
"Key is required": "",
"Keyboard shortcuts": "Пречице на тастатури", "Keyboard shortcuts": "Пречице на тастатури",
"Knowledge": "Знање", "Knowledge": "Знање",
"Knowledge Access": "Приступ знању", "Knowledge Access": "Приступ знању",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "", "Knowledge created successfully.": "",
"Knowledge deleted successfully.": "", "Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "", "Knowledge reset successfully.": "",
"Knowledge updated successfully": "", "Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "Пораза", "Lost": "Пораза",
"Low": "",
"LTR": "ЛНД", "LTR": "ЛНД",
"Made by Open WebUI Community": "Израдила OpenWebUI заједница", "Made by Open WebUI Community": "Израдила OpenWebUI заједница",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"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": "Мај",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Памћења које ће бити појављена од овог LLM-а ће бити приказана овде.", "Memories accessible by LLMs will be shown here.": "Памћења које ће бити појављена од овог LLM-а ће бити приказана овде.",
"Memory": "Сећања", "Memory": "Сећања",
"Memory added successfully": "Сећање успешно додато", "Memory added successfully": "Сећање успешно додато",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "", "Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Модел није изабран", "Model not selected": "Модел није изабран",
"Model Params": "Модел Парамс", "Model Params": "Модел Парамс",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Име", "Name": "Име",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Није генерисан упит за претрагу", "No search query generated": "Није генерисан упит за претрагу",
"No source available": "Нема доступног извора", "No source available": "Нема доступног извора",
"No users were found.": "Нема корисника.", "No users were found.": "Нема корисника.",
"No valves": "",
"No valves to update": "", "No valves to update": "",
"Node Ids": "",
"None": "Нико", "None": "Нико",
"Not factually correct": "Није чињенично тачно", "Not factually correct": "Није чињенично тачно",
"Not helpful": "Није од помоћи", "Not helpful": "Није од помоћи",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Претражи", "Search": "Претражи",
"Search a model": "Претражи модел", "Search a model": "Претражи модел",
"Search all emojis": "",
"Search Base": "Претражи базу", "Search Base": "Претражи базу",
"Search Chats": "Претражи ћаскања", "Search Chats": "Претражи ћаскања",
"Search Collection": "Претражи колекцију", "Search Collection": "Претражи колекцију",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Погледај readme.md за упутства", "See readme.md for instructions": "Погледај readme.md за упутства",
"See what's new": "Погледај шта је ново", "See what's new": "Погледај шта је ново",
"Seed": "Семе", "Seed": "Семе",
"Select": "",
"Select a base model": "Избор основног модела", "Select a base model": "Избор основног модела",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Изабери мотор", "Select a engine": "Изабери мотор",
"Select a function": "Изабери функцију", "Select a function": "Изабери функцију",
"Select a group": "Изабери групу", "Select a group": "Изабери групу",
"Select a language": "",
"Select a mode": "",
"Select a model": "Изабери модел", "Select a model": "Изабери модел",
"Select a model (optional)": "",
"Select a pipeline": "Избор цевовода", "Select a pipeline": "Избор цевовода",
"Select a pipeline url": "Избор урл адресе цевовода", "Select a pipeline url": "Избор урл адресе цевовода",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Изабери алат", "Select a tool": "Изабери алат",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Изабери мотор", "Select Engine": "Изабери мотор",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Изабери знање", "Select Knowledge": "Изабери знање",
"Select only one model to call": "", "Select only one model to call": "",
"Selected model(s) do not support image inputs": "Изабрани модели не подржавају уносе слика", "Selected model(s) do not support image inputs": "Изабрани модели не подржавају уносе слика",
@ -1215,6 +1262,7 @@
"Serply API Key": "", "Serply API Key": "",
"Serpstack API Key": "Серпстацк АПИ кључ", "Serpstack API Key": "Серпстацк АПИ кључ",
"Server connection verified": "Веза са сервером потврђена", "Server connection verified": "Веза са сервером потврђена",
"Session": "",
"Set as default": "Подеси као подразумевано", "Set as default": "Подеси као подразумевано",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "Подеси као подразумевани модел", "Set Default Model": "Подеси као подразумевани модел",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Извор", "Source": "Извор",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Поднаслов (нпр. о Римском царству)", "Subtitle (e.g. about the Roman Empire)": "Поднаслов (нпр. о Римском царству)",
"Success": "Успех", "Success": "Успех",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Успешно ажурирано.", "Successfully updated.": "Успешно ажурирано.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Предложено", "Suggested": "Предложено",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Резултат треба да буде вредност између 0.0 (0%) и 1.0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Резултат треба да буде вредност између 0.0 (0%) и 1.0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Отпремање датотека", "Upload Files": "Отпремање датотека",
"Upload Pipeline": "Цевовод отпремања", "Upload Pipeline": "Цевовод отпремања",
"Upload Progress": "Напредак отпремања", "Upload Progress": "Напредак отпремања",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "УРЛ", "URL": "УРЛ",
"URL is required": "",
"URL Mode": "Режим адресе", "URL Mode": "Режим адресе",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "", "Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "Важеће временске јединице:", "Valid time units:": "Важеће временске јединице:",
"Validate certificate": "",
"Valves": "Вентили", "Valves": "Вентили",
"Valves updated": "Вентили ажурирани", "Valves updated": "Вентили ажурирани",
"Valves updated successfully": "Вентили успешно ажурирани", "Valves updated successfully": "Вентили успешно ажурирани",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "", "Whisper (Local)": "",
"Why?": "Зашто?", "Why?": "Зашто?",
"Widescreen Mode": "Режим широког екрана", "Widescreen Mode": "Режим широког екрана",
"Width": "",
"Won": "Победа", "Won": "Победа",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Радни простор", "Workspace": "Радни простор",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} dolda rader", "{{COUNT}} hidden lines": "{{COUNT}} dolda rader",
"{{COUNT}} Replies": "{{COUNT}} Svar", "{{COUNT}} Replies": "{{COUNT}} Svar",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}s Chattar", "{{user}}'s Chats": "{{user}}s Chattar",
"{{webUIName}} Backend Required": "{{webUIName}} Backend krävs", "{{webUIName}} Backend Required": "{{webUIName}} Backend krävs",
"*Prompt node ID(s) are required for image generation": "*Prompt node ID(s) krävs för bildgenerering", "*Prompt node ID(s) are required for image generation": "*Prompt node ID(s) krävs för bildgenerering",
@ -29,6 +30,7 @@
"Account Activation Pending": "Kontoaktivering väntar", "Account Activation Pending": "Kontoaktivering väntar",
"Accurate information": "Exakt information", "Accurate information": "Exakt information",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Åtgärder", "Actions": "Åtgärder",
"Activate": "Aktivera", "Activate": "Aktivera",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktivera detta kommando genom att skriva \"/{{COMMAND}}\" i chattrutan.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Aktivera detta kommando genom att skriva \"/{{COMMAND}}\" i chattrutan.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "Spela alltid aviseringsljud", "Always Play Notification Sound": "Spela alltid aviseringsljud",
"Amazing": "Fantastiskt", "Amazing": "Fantastiskt",
"an assistant": "en assistent", "an assistant": "en assistent",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Analyserad", "Analyzed": "Analyserad",
"Analyzing...": "Analyserar...", "Analyzing...": "Analyserar...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API-nyckel Endpoint-begränsningar", "API Key Endpoint Restrictions": "API-nyckel Endpoint-begränsningar",
"API keys": "API-nycklar", "API keys": "API-nycklar",
"API Version": "API-version", "API Version": "API-version",
"API Version is required": "",
"Application DN": "Applikations-DN", "Application DN": "Applikations-DN",
"Application DN Password": "Applikations-DN lösenord", "Application DN Password": "Applikations-DN lösenord",
"applies to all users with the \"user\" role": "gäller alla användare med \"user\"-rollen", "applies to all users with the \"user\" role": "gäller alla användare med \"user\"-rollen",
@ -160,6 +164,7 @@
"Banners": "Banners", "Banners": "Banners",
"Base Model (From)": "Basmodell (Från)", "Base Model (From)": "Basmodell (Från)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "före", "before": "före",
"Being lazy": "Är lat", "Being lazy": "Är lat",
"Beta": "Beta", "Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Fånga ljud", "Capture Audio": "Fånga ljud",
"Certificate Path": "Certifikatväg", "Certificate Path": "Certifikatväg",
"Change Password": "Ändra lösenord", "Change Password": "Ändra lösenord",
"Channel deleted successfully": "",
"Channel Name": "Kanalnamn", "Channel Name": "Kanalnamn",
"Channel updated successfully": "",
"Channels": "Kanaler", "Channels": "Kanaler",
"Character": "Tecken", "Character": "Tecken",
"Character limit for autocomplete generation input": "Teckengräns för inmatning av automatisk komplettering", "Character limit for autocomplete generation input": "Teckengräns för inmatning av automatisk komplettering",
@ -238,6 +245,7 @@
"Close modal": "Stäng modal", "Close modal": "Stäng modal",
"Close settings modal": "Stäng inställningsmodal", "Close settings modal": "Stäng inställningsmodal",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Kodkörning", "Code execution": "Kodkörning",
"Code Execution": "Kodkörning", "Code Execution": "Kodkörning",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI Base URL krävs.", "ComfyUI Base URL is required.": "ComfyUI Base URL krävs.",
"ComfyUI Workflow": "ComfyUI Arbetsflöde", "ComfyUI Workflow": "ComfyUI Arbetsflöde",
"ComfyUI Workflow Nodes": "ComfyUI Arbetsflödesnoder", "ComfyUI Workflow Nodes": "ComfyUI Arbetsflödesnoder",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Kommando", "Command": "Kommando",
"Comment": "", "Comment": "",
"Completions": "Slutföranden", "Completions": "Slutföranden",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Parallella anrop", "Concurrent Requests": "Parallella anrop",
"Config imported successfully": "",
"Configure": "Konfigurera", "Configure": "Konfigurera",
"Confirm": "Bekräfta", "Confirm": "Bekräfta",
"Confirm Password": "Bekräfta lösenord", "Confirm Password": "Bekräfta lösenord",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Datalab Marker API-nyckel krävs.", "Datalab Marker API Key required.": "Datalab Marker API-nyckel krävs.",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "december", "December": "december",
"Deepgram": "",
"Default": "Standard", "Default": "Standard",
"Default (Open AI)": "Standard (Open AI)", "Default (Open AI)": "Standard (Open AI)",
"Default (SentenceTransformers)": "Standard (SentenceTransformers)", "Default (SentenceTransformers)": "Standard (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Direkta anslutningar", "Direct Connections": "Direkta anslutningar",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Direkta anslutningar tillåter användare att ansluta till sina egna OpenAI-kompatibla API-endpoints.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Direkta anslutningar tillåter användare att ansluta till sina egna OpenAI-kompatibla API-endpoints.",
"Direct Tool Servers": "Direkta verktygsservrar", "Direct Tool Servers": "Direkta verktygsservrar",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "Inaktivera bildextrahering", "Disable Image Extraction": "Inaktivera bildextrahering",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Inaktivera bildextrahering från PDF-filen. Om Använd LLM är aktiverat kommer bilder att automatiskt bildtextas. Standardvärdet är False.", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Inaktivera bildextrahering från PDF-filen. Om Använd LLM är aktiverat kommer bilder att automatiskt bildtextas. Standardvärdet är False.",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Ange komma-separerade \"token:bias_value\"-par (exempel: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Ange komma-separerade \"token:bias_value\"-par (exempel: 5432:100, 413:-100)",
"Enter Config in JSON format": "Ange konfiguration i JSON-format", "Enter Config in JSON format": "Ange konfiguration i JSON-format",
"Enter content for the pending user info overlay. Leave empty for default.": "Ange innehåll för den väntande användarinformationen. Lämna tomt för standard.", "Enter content for the pending user info overlay. Leave empty for default.": "Ange innehåll för den väntande användarinformationen. Lämna tomt för standard.",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "Ange Datalab Marker API-nyckel", "Enter Datalab Marker API Key": "Ange Datalab Marker API-nyckel",
"Enter description": "Ange beskrivning", "Enter description": "Ange beskrivning",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Ange Github Raw URL", "Enter Github Raw URL": "Ange Github Raw URL",
"Enter Google PSE API Key": "Ange Google PSE API-nyckel", "Enter Google PSE API Key": "Ange Google PSE API-nyckel",
"Enter Google PSE Engine Id": "Ange Google PSE Engine Id", "Enter Google PSE Engine Id": "Ange Google PSE Engine Id",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Ange bildstorlek (t.ex. 512x512)", "Enter Image Size (e.g. 512x512)": "Ange bildstorlek (t.ex. 512x512)",
"Enter Jina API Key": "Ange Jina API-nyckel", "Enter Jina API Key": "Ange Jina API-nyckel",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Ange Top K Reranker", "Enter Top K Reranker": "Ange Top K Reranker",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Ange URL (t.ex. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Ange URL (t.ex. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Ange URL (t.ex. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Ange URL (t.ex. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "Ange Yacy-lösenord", "Enter Yacy Password": "Ange Yacy-lösenord",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Ange Yacy URL (t.ex. http://yacy.example.com:8090)", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Ange Yacy URL (t.ex. http://yacy.example.com:8090)",
"Enter Yacy Username": "Ange Yacy-användarnamn", "Enter Yacy Username": "Ange Yacy-användarnamn",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Ange din webhook-URL", "Enter your webhook URL": "Ange din webhook-URL",
"Error": "Fel", "Error": "Fel",
"ERROR": "FEL", "ERROR": "FEL",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Fel vid åtkomst till Google Drive: {{error}}", "Error accessing Google Drive: {{error}}": "Fel vid åtkomst till Google Drive: {{error}}",
"Error accessing media devices.": "Fel vid åtkomst till mediaenheter.", "Error accessing media devices.": "Fel vid åtkomst till mediaenheter.",
"Error starting recording.": "Fel vid start av inspelning.", "Error starting recording.": "Fel vid start av inspelning.",
"Error unloading model: {{error}}": "Fel vid avlastning av modell: {{error}}", "Error unloading model: {{error}}": "Fel vid avlastning av modell: {{error}}",
"Error uploading file: {{error}}": "Fel vid uppladdning av fil: {{error}}", "Error uploading file: {{error}}": "Fel vid uppladdning av fil: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Utvärderingar", "Evaluations": "Utvärderingar",
"Everyone": "", "Everyone": "",
"Exa API Key": "Exa API-nyckel", "Exa API Key": "Exa API-nyckel",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Haptisk återkoppling", "Haptic Feedback": "Haptisk återkoppling",
"Height": "",
"Hello, {{name}}": "Hej, {{name}}", "Hello, {{name}}": "Hej, {{name}}",
"Help": "Hjälp", "Help": "Hjälp",
"Help us create the best community leaderboard by sharing your feedback history!": "Hjälp oss att skapa den bästa community-topplistan genom att dela din feedbackhistorik!", "Help us create the best community leaderboard by sharing your feedback history!": "Hjälp oss att skapa den bästa community-topplistan genom att dela din feedbackhistorik!",
@ -733,6 +753,7 @@
"Hide": "Dölj", "Hide": "Dölj",
"Hide from Sidebar": "Dölj från sidofältet", "Hide from Sidebar": "Dölj från sidofältet",
"Hide Model": "Dölj modell", "Hide Model": "Dölj modell",
"High": "",
"High Contrast Mode": "Högkontrastläge", "High Contrast Mode": "Högkontrastläge",
"Home": "Hem", "Home": "Hem",
"Host": "Värd", "Host": "Värd",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injicera hela innehållet som kontext för omfattande bearbetning, detta rekommenderas för komplexa frågor.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injicera hela innehållet som kontext för omfattande bearbetning, detta rekommenderas för komplexa frågor.",
"Input": "", "Input": "",
"Input commands": "Indatakommandon", "Input commands": "Indatakommandon",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "Ogiltigt filinnehåll", "Invalid file content": "Ogiltigt filinnehåll",
"Invalid file format.": "Ogiltigt filformat.", "Invalid file format.": "Ogiltigt filformat.",
"Invalid JSON file": "Ogiltig JSON-fil", "Invalid JSON file": "Ogiltig JSON-fil",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Ogiltig tagg", "Invalid Tag": "Ogiltig tagg",
"is typing...": "skriver...", "is typing...": "skriver...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "Behåll i sidofältet", "Keep in Sidebar": "Behåll i sidofältet",
"Key": "Nyckel", "Key": "Nyckel",
"Key is required": "",
"Keyboard shortcuts": "Tangentbordsgenvägar", "Keyboard shortcuts": "Tangentbordsgenvägar",
"Knowledge": "Kunskap", "Knowledge": "Kunskap",
"Knowledge Access": "Kunskapsåtkomst", "Knowledge Access": "Kunskapsåtkomst",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Kunskapen har skapats.", "Knowledge created successfully.": "Kunskapen har skapats.",
"Knowledge deleted successfully.": "Kunskapen har tagits bort.", "Knowledge deleted successfully.": "Kunskapen har tagits bort.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Offentlig delning av kunskap", "Knowledge Public Sharing": "Offentlig delning av kunskap",
"Knowledge reset successfully.": "Kunskapen har återställts.", "Knowledge reset successfully.": "Kunskapen har återställts.",
"Knowledge updated successfully": "Kunskapen har uppdaterats", "Knowledge updated successfully": "Kunskapen har uppdaterats",
@ -852,6 +878,7 @@
"Local Task Model": "Lokal uppgiftsmodell", "Local Task Model": "Lokal uppgiftsmodell",
"Location access not allowed": "Åtkomst till platsen är inte tillåten", "Location access not allowed": "Åtkomst till platsen är inte tillåten",
"Lost": "Förlorad", "Lost": "Förlorad",
"Low": "",
"LTR": "Vänster till höger", "LTR": "Vänster till höger",
"Made by Open WebUI Community": "Skapad av OpenWebUI Community", "Made by Open WebUI Community": "Skapad av OpenWebUI Community",
"Make password visible in the user interface": "Gör lösenordet synligt i användargränssnittet", "Make password visible in the user interface": "Gör lösenordet synligt i användargränssnittet",
@ -873,6 +900,7 @@
"Max Upload Size": "Max uppladdningsstorlek", "Max Upload Size": "Max uppladdningsstorlek",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Högst 3 modeller kan laddas ner samtidigt. Vänligen försök igen senare.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Högst 3 modeller kan laddas ner samtidigt. Vänligen försök igen senare.",
"May": "maj", "May": "maj",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Minnen som är tillgängliga för LLM:er visas här.", "Memories accessible by LLMs will be shown here.": "Minnen som är tillgängliga för LLM:er visas här.",
"Memory": "Minne", "Memory": "Minne",
"Memory added successfully": "Minnet har lagts till", "Memory added successfully": "Minnet har lagts till",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "Modell-ID:n", "Model IDs": "Modell-ID:n",
"Model Name": "Modellnamn", "Model Name": "Modellnamn",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Modell inte vald", "Model not selected": "Modell inte vald",
"Model Params": "Modellparametrar", "Model Params": "Modellparametrar",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Namn", "Name": "Namn",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Namnge din kunskapsbas", "Name your knowledge base": "Namnge din kunskapsbas",
"Native": "Inbyggd", "Native": "Inbyggd",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Ingen sökfråga genererad", "No search query generated": "Ingen sökfråga genererad",
"No source available": "Ingen tillgänglig källa", "No source available": "Ingen tillgänglig källa",
"No users were found.": "Inga användare hittades.", "No users were found.": "Inga användare hittades.",
"No valves": "",
"No valves to update": "Inga ventiler att uppdatera", "No valves to update": "Inga ventiler att uppdatera",
"Node Ids": "",
"None": "Ingen", "None": "Ingen",
"Not factually correct": "Inte faktiskt korrekt", "Not factually correct": "Inte faktiskt korrekt",
"Not helpful": "Inte hjälpsam", "Not helpful": "Inte hjälpsam",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Scrolla vid grenbyte", "Scroll On Branch Change": "Scrolla vid grenbyte",
"Search": "Sök", "Search": "Sök",
"Search a model": "Sök efter en modell", "Search a model": "Sök efter en modell",
"Search all emojis": "",
"Search Base": "Sökbas", "Search Base": "Sökbas",
"Search Chats": "Sök i chattar", "Search Chats": "Sök i chattar",
"Search Collection": "Sök samling", "Search Collection": "Sök samling",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Se readme.md för instruktioner", "See readme.md for instructions": "Se readme.md för instruktioner",
"See what's new": "Se vad som är nytt", "See what's new": "Se vad som är nytt",
"Seed": "Seed", "Seed": "Seed",
"Select": "",
"Select a base model": "Välj en basmodell", "Select a base model": "Välj en basmodell",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Välj en motor", "Select a engine": "Välj en motor",
"Select a function": "Välj en funktion", "Select a function": "Välj en funktion",
"Select a group": "Välj en grupp", "Select a group": "Välj en grupp",
"Select a language": "",
"Select a mode": "",
"Select a model": "Välj en modell", "Select a model": "Välj en modell",
"Select a model (optional)": "",
"Select a pipeline": "Välj en rörledning", "Select a pipeline": "Välj en rörledning",
"Select a pipeline url": "Välj en URL för rörledningen", "Select a pipeline url": "Välj en URL för rörledningen",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Välj ett verktyg", "Select a tool": "Välj ett verktyg",
"Select a voice": "",
"Select an auth method": "Välj en autentiseringsmetod", "Select an auth method": "Välj en autentiseringsmetod",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Välj en Ollama-instans", "Select an Ollama instance": "Välj en Ollama-instans",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Välj motor", "Select Engine": "Välj motor",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Välj kunskap", "Select Knowledge": "Välj kunskap",
"Select only one model to call": "Välj endast en modell att ringa", "Select only one model to call": "Välj endast en modell att ringa",
"Selected model(s) do not support image inputs": "Valda modeller stöder inte bildinmatningar", "Selected model(s) do not support image inputs": "Valda modeller stöder inte bildinmatningar",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API-nyckel", "Serply API Key": "Serply API-nyckel",
"Serpstack API Key": "Serpstack API-nyckel", "Serpstack API Key": "Serpstack API-nyckel",
"Server connection verified": "Serveranslutning verifierad", "Server connection verified": "Serveranslutning verifierad",
"Session": "",
"Set as default": "Ange som standard", "Set as default": "Ange som standard",
"Set CFG Scale": "Ställ in CFG-skala", "Set CFG Scale": "Ställ in CFG-skala",
"Set Default Model": "Ange standardmodell", "Set Default Model": "Ange standardmodell",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "Hoppa över cache", "Skip Cache": "Hoppa över cache",
"Skip the cache and re-run the inference. Defaults to False.": "Hoppa över cacheminnet och kör inferensen igen. Standardvärdet är False.", "Skip the cache and re-run the inference. Defaults to False.": "Hoppa över cacheminnet och kör inferensen igen. Standardvärdet är False.",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "Sougou Sök API sID", "Sougou Search API sID": "Sougou Sök API sID",
"Sougou Search API SK": "Sougou Sök API SK", "Sougou Search API SK": "Sougou Sök API SK",
"Source": "Källa", "Source": "Källa",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Stiliserad PDF-export", "Stylized PDF Export": "Stiliserad PDF-export",
"Subtitle (e.g. about the Roman Empire)": "Undertext (t.ex. om Romerska Imperiet)", "Subtitle (e.g. about the Roman Empire)": "Undertext (t.ex. om Romerska Imperiet)",
"Success": "Framgång", "Success": "Framgång",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Uppdaterades framgångsrikt.", "Successfully updated.": "Uppdaterades framgångsrikt.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Föreslagen", "Suggested": "Föreslagen",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Den maximala filstorleken i MB. Om filstorleken överskrider denna gräns kommer filen inte att laddas upp.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Den maximala filstorleken i MB. Om filstorleken överskrider denna gräns kommer filen inte att laddas upp.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Det maximala antalet filer som kan användas samtidigt i chatten. Om antalet filer överskrider denna gräns kommer filerna inte att laddas upp.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Det maximala antalet filer som kan användas samtidigt i chatten. Om antalet filer överskrider denna gräns kommer filerna inte att laddas upp.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Utdataformatet för texten. Kan vara 'json', 'markdown' eller 'html'. Standardvärdet är 'markdown'.", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Utdataformatet för texten. Kan vara 'json', 'markdown' eller 'html'. Standardvärdet är 'markdown'.",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Betyget ska vara ett värde mellan 0.0 (0%) och 1.0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Betyget ska vara ett värde mellan 0.0 (0%) och 1.0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Modellens temperatur. Att öka temperaturen gör att modellen svarar mer kreativt.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Modellens temperatur. Att öka temperaturen gör att modellen svarar mer kreativt.",
@ -1439,7 +1495,9 @@
"Upload Files": "Ladda upp filer", "Upload Files": "Ladda upp filer",
"Upload Pipeline": "Ladda upp rörledning", "Upload Pipeline": "Ladda upp rörledning",
"Upload Progress": "Uppladdningsframsteg", "Upload Progress": "Uppladdningsframsteg",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "URL-läge", "URL Mode": "URL-läge",
"Usage": "Användning", "Usage": "Användning",
"Use '#' in the prompt input to load and include your knowledge.": "Använd '#' i prompten för att läsa in och inkludera din kunskap", "Use '#' in the prompt input to load and include your knowledge.": "Använd '#' i prompten för att läsa in och inkludera din kunskap",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Använda standardmodellen för arenan med alla modeller. Klicka på plusknappen för att lägga till anpassade modeller", "Using the default arena model with all models. Click the plus button to add custom models.": "Använda standardmodellen för arenan med alla modeller. Klicka på plusknappen för att lägga till anpassade modeller",
"Valid time units:": "Giltiga tidsenheter:", "Valid time units:": "Giltiga tidsenheter:",
"Validate certificate": "",
"Valves": "Ventiler", "Valves": "Ventiler",
"Valves updated": "Ventiler uppdaterade", "Valves updated": "Ventiler uppdaterade",
"Valves updated successfully": "Ventiler uppdaterade", "Valves updated successfully": "Ventiler uppdaterade",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (lokal)", "Whisper (Local)": "Whisper (lokal)",
"Why?": "Varför?", "Why?": "Varför?",
"Widescreen Mode": "Bredbildsläge", "Widescreen Mode": "Bredbildsläge",
"Width": "",
"Won": "Vann", "Won": "Vann",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Fungerar tillsammans med top-k. Ett högre värde (t.ex. 0,95) leder till mer varierande text, medan ett lägre värde (t.ex. 0,5) genererar mer fokuserad och konservativ text.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Fungerar tillsammans med top-k. Ett högre värde (t.ex. 0,95) leder till mer varierande text, medan ett lägre värde (t.ex. 0,5) genererar mer fokuserad och konservativ text.",
"Workspace": "Arbetsyta", "Workspace": "Arbetsyta",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "การสนทนาของ {{user}}", "{{user}}'s Chats": "การสนทนาของ {{user}}",
"{{webUIName}} Backend Required": "ต้องการ Backend ของ {{webUIName}}", "{{webUIName}} Backend Required": "ต้องการ Backend ของ {{webUIName}}",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "การเปิดใช้งานบัญชีอยู่ระหว่างดำเนินการ", "Account Activation Pending": "การเปิดใช้งานบัญชีอยู่ระหว่างดำเนินการ",
"Accurate information": "ข้อมูลที่ถูกต้อง", "Accurate information": "ข้อมูลที่ถูกต้อง",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "", "Actions": "",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "", "Amazing": "",
"an assistant": "ผู้ช่วย", "an assistant": "ผู้ช่วย",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "คีย์ API", "API keys": "คีย์ API",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "แบนเนอร์", "Banners": "แบนเนอร์",
"Base Model (From)": "โมเดลพื้นฐาน (จาก)", "Base Model (From)": "โมเดลพื้นฐาน (จาก)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "ก่อน", "before": "ก่อน",
"Being lazy": "ขี้เกียจ", "Being lazy": "ขี้เกียจ",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "เปลี่ยนรหัสผ่าน", "Change Password": "เปลี่ยนรหัสผ่าน",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ต้องการ URL ฐานของ ComfyUI", "ComfyUI Base URL is required.": "ต้องการ URL ฐานของ ComfyUI",
"ComfyUI Workflow": "", "ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "", "ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "คำสั่ง", "Command": "คำสั่ง",
"Comment": "", "Comment": "",
"Completions": "", "Completions": "",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "คำขอพร้อมกัน", "Concurrent Requests": "คำขอพร้อมกัน",
"Config imported successfully": "",
"Configure": "", "Configure": "",
"Confirm": "ยืนยัน", "Confirm": "ยืนยัน",
"Confirm Password": "ยืนยันรหัสผ่าน", "Confirm Password": "ยืนยันรหัสผ่าน",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "ธันวาคม", "December": "ธันวาคม",
"Deepgram": "",
"Default": "ค่าเริ่มต้น", "Default": "ค่าเริ่มต้น",
"Default (Open AI)": "", "Default (Open AI)": "",
"Default (SentenceTransformers)": "ค่าเริ่มต้น (SentenceTransformers)", "Default (SentenceTransformers)": "ค่าเริ่มต้น (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "", "Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "ใส่ URL ดิบของ Github", "Enter Github Raw URL": "ใส่ URL ดิบของ Github",
"Enter Google PSE API Key": "ใส่คีย์ API ของ Google PSE", "Enter Google PSE API Key": "ใส่คีย์ API ของ Google PSE",
"Enter Google PSE Engine Id": "ใส่รหัสเครื่องยนต์ของ Google PSE", "Enter Google PSE Engine Id": "ใส่รหัสเครื่องยนต์ของ Google PSE",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "ใส่ขนาดภาพ (เช่น 512x512)", "Enter Image Size (e.g. 512x512)": "ใส่ขนาดภาพ (เช่น 512x512)",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "ใส่ URL (เช่น http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "ใส่ URL (เช่น http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "ใส่ URL (เช่น http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "ใส่ URL (เช่น http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "ข้อผิดพลาด", "Error": "ข้อผิดพลาด",
"ERROR": "", "ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "การประเมิน", "Evaluations": "การประเมิน",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "สวัสดี, {{name}}", "Hello, {{name}}": "สวัสดี, {{name}}",
"Help": "ช่วยเหลือ", "Help": "ช่วยเหลือ",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "ซ่อน", "Hide": "ซ่อน",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "คำสั่งป้อนข้อมูล", "Input commands": "คำสั่งป้อนข้อมูล",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "", "Invalid file format.": "",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "แท็กไม่ถูกต้อง", "Invalid Tag": "แท็กไม่ถูกต้อง",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "ทางลัดแป้นพิมพ์", "Keyboard shortcuts": "ทางลัดแป้นพิมพ์",
"Knowledge": "ความรู้", "Knowledge": "ความรู้",
"Knowledge Access": "การเข้าถึงความรู้", "Knowledge Access": "การเข้าถึงความรู้",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "สร้างความรู้สำเร็จ", "Knowledge created successfully.": "สร้างความรู้สำเร็จ",
"Knowledge deleted successfully.": "ลบความรู้สำเร็จ", "Knowledge deleted successfully.": "ลบความรู้สำเร็จ",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "", "Knowledge reset successfully.": "",
"Knowledge updated successfully": "", "Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "", "Lost": "",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "สร้างโดยชุมชน OpenWebUI", "Made by Open WebUI Community": "สร้างโดยชุมชน OpenWebUI",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"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": "พฤษภาคม",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "ความจำ", "Memory": "ความจำ",
"Memory added successfully": "เพิ่มโมเดลสำเร็จ", "Memory added successfully": "เพิ่มโมเดลสำเร็จ",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "", "Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "ยังไม่ได้เลือกโมเดล", "Model not selected": "ยังไม่ได้เลือกโมเดล",
"Model Params": "พารามิเตอร์ของโมเดล", "Model Params": "พารามิเตอร์ของโมเดล",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "ชื่อ", "Name": "ชื่อ",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "ไม่มีการสร้างคำค้นหา", "No search query generated": "ไม่มีการสร้างคำค้นหา",
"No source available": "ไม่มีแหล่งข้อมูล", "No source available": "ไม่มีแหล่งข้อมูล",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "ไม่มีวาล์วที่จะอัปเดต", "No valves to update": "ไม่มีวาล์วที่จะอัปเดต",
"Node Ids": "",
"None": "ไม่มี", "None": "ไม่มี",
"Not factually correct": "ไม่ถูกต้องตามข้อเท็จจริง", "Not factually correct": "ไม่ถูกต้องตามข้อเท็จจริง",
"Not helpful": "", "Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "ค้นหา", "Search": "ค้นหา",
"Search a model": "ค้นหาโมเดล", "Search a model": "ค้นหาโมเดล",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "ค้นหาแชท", "Search Chats": "ค้นหาแชท",
"Search Collection": "", "Search Collection": "",
@ -1187,18 +1220,32 @@
"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": "",
"Select a base model": "เลือกโมเดลฐาน", "Select a base model": "เลือกโมเดลฐาน",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "เลือกเอนจิน", "Select a engine": "เลือกเอนจิน",
"Select a function": "เลือกฟังก์ชัน", "Select a function": "เลือกฟังก์ชัน",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "เลือกโมเดล", "Select a model": "เลือกโมเดล",
"Select a model (optional)": "",
"Select a pipeline": "เลือกไปป์ไลน์", "Select a pipeline": "เลือกไปป์ไลน์",
"Select a pipeline url": "เลือก URL ไปป์ไลน์", "Select a pipeline url": "เลือก URL ไปป์ไลน์",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "เลือกเครื่องมือ", "Select a tool": "เลือกเครื่องมือ",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "", "Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "", "Select Knowledge": "",
"Select only one model to call": "เลือกเพียงโมเดลเดียวที่จะใช้", "Select only one model to call": "เลือกเพียงโมเดลเดียวที่จะใช้",
"Selected model(s) do not support image inputs": "โมเดลที่เลือกไม่รองรับภาพ", "Selected model(s) do not support image inputs": "โมเดลที่เลือกไม่รองรับภาพ",
@ -1215,6 +1262,7 @@
"Serply API Key": "คีย์ API ของ Serply", "Serply API Key": "คีย์ API ของ Serply",
"Serpstack API Key": "คีย์ API ของ Serpstack", "Serpstack API Key": "คีย์ API ของ Serpstack",
"Server connection verified": "ยืนยันการเชื่อมต่อเซิร์ฟเวอร์แล้ว", "Server connection verified": "ยืนยันการเชื่อมต่อเซิร์ฟเวอร์แล้ว",
"Session": "",
"Set as default": "ตั้งเป็นค่าเริ่มต้น", "Set as default": "ตั้งเป็นค่าเริ่มต้น",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "ตั้งโมเดลเริ่มต้น", "Set Default Model": "ตั้งโมเดลเริ่มต้น",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "แหล่งที่มา", "Source": "แหล่งที่มา",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "คำบรรยาย (เช่น เกี่ยวกับจักรวรรดิโรมัน)", "Subtitle (e.g. about the Roman Empire)": "คำบรรยาย (เช่น เกี่ยวกับจักรวรรดิโรมัน)",
"Success": "สำเร็จ", "Success": "สำเร็จ",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "อัปเดตเรียบร้อยแล้ว", "Successfully updated.": "อัปเดตเรียบร้อยแล้ว",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "แนะนำ", "Suggested": "แนะนำ",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "คะแนนควรอยู่ระหว่าง 0.0 (0%) ถึง 1.0 (100%)", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "คะแนนควรอยู่ระหว่าง 0.0 (0%) ถึง 1.0 (100%)",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "อัปโหลดไฟล์", "Upload Files": "อัปโหลดไฟล์",
"Upload Pipeline": "อัปโหลดพายป์ไลน์", "Upload Pipeline": "อัปโหลดพายป์ไลน์",
"Upload Progress": "ความคืบหน้าการอัปโหลด", "Upload Progress": "ความคืบหน้าการอัปโหลด",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "โหมด URL", "URL Mode": "โหมด URL",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "ใช้โมเดล Arena กับโมเดลทั้งหมด คลิกปุ่มบวกเพื่อเพิ่มโมเดลที่กำหนดเอง", "Using the default arena model with all models. Click the plus button to add custom models.": "ใช้โมเดล Arena กับโมเดลทั้งหมด คลิกปุ่มบวกเพื่อเพิ่มโมเดลที่กำหนดเอง",
"Valid time units:": "หน่วยเวลาใช้ได้:", "Valid time units:": "หน่วยเวลาใช้ได้:",
"Validate certificate": "",
"Valves": "วาล์ว", "Valves": "วาล์ว",
"Valves updated": "วาล์วที่อัปเดตแล้ว", "Valves updated": "วาล์วที่อัปเดตแล้ว",
"Valves updated successfully": "อัปเดตวาล์วเรียบร้อยแล้ว", "Valves updated successfully": "อัปเดตวาล์วเรียบร้อยแล้ว",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (โลคอล)", "Whisper (Local)": "Whisper (โลคอล)",
"Why?": "", "Why?": "",
"Widescreen Mode": "โหมดหน้าจอกว้าง", "Widescreen Mode": "โหมดหน้าจอกว้าง",
"Width": "",
"Won": "", "Won": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "พื้นที่ทำงาน", "Workspace": "พื้นที่ทำงาน",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}'iň Çatlary", "{{user}}'s Chats": "{{user}}'iň Çatlary",
"{{webUIName}} Backend Required": "{{webUIName}} Backend Zerur", "{{webUIName}} Backend Required": "{{webUIName}} Backend Zerur",
"*Prompt node ID(s) are required for image generation": "", "*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "", "Account Activation Pending": "",
"Accurate information": "Takyk maglumat", "Accurate information": "Takyk maglumat",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "", "Actions": "",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "", "Amazing": "",
"an assistant": "kömekçi", "an assistant": "kömekçi",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "API açarlary", "API keys": "API açarlary",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "Bannerler", "Banners": "Bannerler",
"Base Model (From)": "Esasy Model (Kimden)", "Base Model (From)": "Esasy Model (Kimden)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "öň", "before": "öň",
"Being lazy": "Ýaltalyk", "Being lazy": "Ýaltalyk",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "Paroly Üýtget", "Change Password": "Paroly Üýtget",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "", "Character": "",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "", "Code execution": "",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI Esasy URL zerur.", "ComfyUI Base URL is required.": "ComfyUI Esasy URL zerur.",
"ComfyUI Workflow": "", "ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "", "ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Buýruk", "Command": "Buýruk",
"Comment": "", "Comment": "",
"Completions": "", "Completions": "",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Meňzeş Haýyşlar", "Concurrent Requests": "Meňzeş Haýyşlar",
"Config imported successfully": "",
"Configure": "", "Configure": "",
"Confirm": "", "Confirm": "",
"Confirm Password": "Paroly Tassyklap", "Confirm Password": "Paroly Tassyklap",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Dekabr", "December": "Dekabr",
"Deepgram": "",
"Default": "Nokatlaýyn", "Default": "Nokatlaýyn",
"Default (Open AI)": "", "Default (Open AI)": "",
"Default (SentenceTransformers)": "Nokatlaýyn (SentenceTransformers)", "Default (SentenceTransformers)": "Nokatlaýyn (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "", "Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "", "Enter Github Raw URL": "",
"Enter Google PSE API Key": "", "Enter Google PSE API Key": "",
"Enter Google PSE Engine Id": "", "Enter Google PSE Engine Id": "",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "", "Enter Image Size (e.g. 512x512)": "",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "", "Enter URL (e.g. http://127.0.0.1:7860/)": "",
"Enter URL (e.g. http://localhost:11434)": "", "Enter URL (e.g. http://localhost:11434)": "",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "Ýalňyşlyk", "Error": "Ýalňyşlyk",
"ERROR": "", "ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "", "Evaluations": "",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "", "Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "", "Hello, {{name}}": "",
"Help": "Kömek", "Help": "Kömek",
"Help us create the best community leaderboard by sharing your feedback history!": "", "Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "Gizle", "Hide": "Gizle",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "Modeli Gizle", "Hide Model": "Modeli Gizle",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "Baş Sahypa", "Home": "Baş Sahypa",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "", "Input commands": "",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "", "Invalid file format.": "",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "", "Invalid Tag": "",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "Açar", "Key": "Açar",
"Key is required": "",
"Keyboard shortcuts": "", "Keyboard shortcuts": "",
"Knowledge": "", "Knowledge": "",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "", "Knowledge created successfully.": "",
"Knowledge deleted successfully.": "", "Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "", "Knowledge reset successfully.": "",
"Knowledge updated successfully": "", "Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "", "Lost": "",
"Low": "",
"LTR": "", "LTR": "",
"Made by Open WebUI Community": "", "Made by Open WebUI Community": "",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "", "Max Upload Size": "",
"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": "Maý", "May": "Maý",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "", "Memories accessible by LLMs will be shown here.": "",
"Memory": "Ýat", "Memory": "Ýat",
"Memory added successfully": "", "Memory added successfully": "",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "", "Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "", "Model not selected": "",
"Model Params": "", "Model Params": "",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Ady", "Name": "Ady",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "", "No search query generated": "",
"No source available": "", "No source available": "",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "", "No valves to update": "",
"Node Ids": "",
"None": "Hiç", "None": "Hiç",
"Not factually correct": "", "Not factually correct": "",
"Not helpful": "", "Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Gözleg", "Search": "Gözleg",
"Search a model": "", "Search a model": "",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "", "Search Chats": "",
"Search Collection": "", "Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "", "See readme.md for instructions": "",
"See what's new": "", "See what's new": "",
"Seed": "", "Seed": "",
"Select": "",
"Select a base model": "", "Select a base model": "",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "", "Select a engine": "",
"Select a function": "", "Select a function": "",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Bir model saýla", "Select a model": "Bir model saýla",
"Select a model (optional)": "",
"Select a pipeline": "", "Select a pipeline": "",
"Select a pipeline url": "", "Select a pipeline url": "",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "", "Select a tool": "",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "", "Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "", "Select Knowledge": "",
"Select only one model to call": "", "Select only one model to call": "",
"Selected model(s) do not support image inputs": "", "Selected model(s) do not support image inputs": "",
@ -1215,6 +1262,7 @@
"Serply API Key": "", "Serply API Key": "",
"Serpstack API Key": "", "Serpstack API Key": "",
"Server connection verified": "", "Server connection verified": "",
"Session": "",
"Set as default": "", "Set as default": "",
"Set CFG Scale": "", "Set CFG Scale": "",
"Set Default Model": "", "Set Default Model": "",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Çeşme", "Source": "Çeşme",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "", "Subtitle (e.g. about the Roman Empire)": "",
"Success": "Üstünlik", "Success": "Üstünlik",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "", "Successfully updated.": "",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "", "Suggested": "",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "", "Upload Files": "",
"Upload Pipeline": "", "Upload Pipeline": "",
"Upload Progress": "", "Upload Progress": "",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "", "URL Mode": "",
"Usage": "Ulanyş", "Usage": "Ulanyş",
"Use '#' in the prompt input to load and include your knowledge.": "", "Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "", "Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "", "Valid time units:": "",
"Validate certificate": "",
"Valves": "", "Valves": "",
"Valves updated": "", "Valves updated": "",
"Valves updated successfully": "", "Valves updated successfully": "",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "", "Whisper (Local)": "",
"Why?": "", "Why?": "",
"Widescreen Mode": "", "Widescreen Mode": "",
"Width": "",
"Won": "", "Won": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "", "Workspace": "",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} Yanıt", "{{COUNT}} Replies": "{{COUNT}} Yanıt",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}'ın Sohbetleri", "{{user}}'s Chats": "{{user}}'ın Sohbetleri",
"{{webUIName}} Backend Required": "{{webUIName}} Arka-uç Gerekli", "{{webUIName}} Backend Required": "{{webUIName}} Arka-uç Gerekli",
"*Prompt node ID(s) are required for image generation": "*Görüntü oluşturma için düğüm kimlikleri gereklidir", "*Prompt node ID(s) are required for image generation": "*Görüntü oluşturma için düğüm kimlikleri gereklidir",
@ -29,6 +30,7 @@
"Account Activation Pending": "Hesap Aktivasyonu Bekleniyor", "Account Activation Pending": "Hesap Aktivasyonu Bekleniyor",
"Accurate information": "Doğru bilgi", "Accurate information": "Doğru bilgi",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Aksiyonlar", "Actions": "Aksiyonlar",
"Activate": "Aktif Et", "Activate": "Aktif Et",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Sohbet girişine \"/{{COMMAND}}\" yazarak bu komutu etkinleştirin.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Sohbet girişine \"/{{COMMAND}}\" yazarak bu komutu etkinleştirin.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "Harika", "Amazing": "Harika",
"an assistant": "bir asistan", "an assistant": "bir asistan",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Analiz edildi", "Analyzed": "Analiz edildi",
"Analyzing...": "Analiz ediliyor...", "Analyzing...": "Analiz ediliyor...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API Anahtarı Uç Nokta Kısıtlamaları", "API Key Endpoint Restrictions": "API Anahtarı Uç Nokta Kısıtlamaları",
"API keys": "API anahtarları", "API keys": "API anahtarları",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "Uygulama DN", "Application DN": "Uygulama DN",
"Application DN Password": "Uygulama DN Parola", "Application DN Password": "Uygulama DN Parola",
"applies to all users with the \"user\" role": "\"kullanıcı\" rolüne sahip tüm kullanıcılar için geçerlidir", "applies to all users with the \"user\" role": "\"kullanıcı\" rolüne sahip tüm kullanıcılar için geçerlidir",
@ -160,6 +164,7 @@
"Banners": "Afişler", "Banners": "Afişler",
"Base Model (From)": "Temel Model ('den)", "Base Model (From)": "Temel Model ('den)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "önce", "before": "önce",
"Being lazy": "Tembelleşiyor", "Being lazy": "Tembelleşiyor",
"Beta": "Beta", "Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Sesi Kaydet", "Capture Audio": "Sesi Kaydet",
"Certificate Path": "Sertifika Yolu", "Certificate Path": "Sertifika Yolu",
"Change Password": "Parola Değiştir", "Change Password": "Parola Değiştir",
"Channel deleted successfully": "",
"Channel Name": "Kanal Adı", "Channel Name": "Kanal Adı",
"Channel updated successfully": "",
"Channels": "Kanallar", "Channels": "Kanallar",
"Character": "Karakter", "Character": "Karakter",
"Character limit for autocomplete generation input": "Otomatik tamamlama üretimi girişi için karakter sınırı", "Character limit for autocomplete generation input": "Otomatik tamamlama üretimi girişi için karakter sınırı",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Kod yürütme", "Code execution": "Kod yürütme",
"Code Execution": "Kod Çalıştırma", "Code Execution": "Kod Çalıştırma",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI Temel URL gerekli.", "ComfyUI Base URL is required.": "ComfyUI Temel URL gerekli.",
"ComfyUI Workflow": "ComfyUI İş Akışı", "ComfyUI Workflow": "ComfyUI İş Akışı",
"ComfyUI Workflow Nodes": "ComfyUI İş Akışı Düğümleri", "ComfyUI Workflow Nodes": "ComfyUI İş Akışı Düğümleri",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Komut", "Command": "Komut",
"Comment": "", "Comment": "",
"Completions": "Tamamlamalar", "Completions": "Tamamlamalar",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Eşzamanlı İstekler", "Concurrent Requests": "Eşzamanlı İstekler",
"Config imported successfully": "",
"Configure": "Yapılandırma", "Configure": "Yapılandırma",
"Confirm": "Onayla", "Confirm": "Onayla",
"Confirm Password": "Parolayı Onayla", "Confirm Password": "Parolayı Onayla",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Aralık", "December": "Aralık",
"Deepgram": "",
"Default": "Varsayılan", "Default": "Varsayılan",
"Default (Open AI)": "Varsayılan (Open AI)", "Default (Open AI)": "Varsayılan (Open AI)",
"Default (SentenceTransformers)": "Varsayılan (SentenceTransformers)", "Default (SentenceTransformers)": "Varsayılan (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Doğrudan Bağlantılar", "Direct Connections": "Doğrudan Bağlantılar",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "Açıklama girin", "Enter description": "Açıklama girin",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Github Raw URL'sini girin", "Enter Github Raw URL": "Github Raw URL'sini girin",
"Enter Google PSE API Key": "Google PSE API Anahtarını Girin", "Enter Google PSE API Key": "Google PSE API Anahtarını Girin",
"Enter Google PSE Engine Id": "Google PSE Engine Id'sini Girin", "Enter Google PSE Engine Id": "Google PSE Engine Id'sini Girin",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Görüntü Boyutunu Girin (örn. 512x512)", "Enter Image Size (e.g. 512x512)": "Görüntü Boyutunu Girin (örn. 512x512)",
"Enter Jina API Key": "Jina API Anahtarını Girin", "Enter Jina API Key": "Jina API Anahtarını Girin",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "URL'yi Girin (örn. http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "URL'yi Girin (örn. http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "URL'yi Girin (e.g. http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "URL'yi Girin (e.g. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Webhook URL'nizi girin", "Enter your webhook URL": "Webhook URL'nizi girin",
"Error": "Hata", "Error": "Hata",
"ERROR": "HATA", "ERROR": "HATA",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Google Drive'a erişim hatası: {{error}}", "Error accessing Google Drive: {{error}}": "Google Drive'a erişim hatası: {{error}}",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "Dosya yüklenirken hata oluştu: {{error}}", "Error uploading file: {{error}}": "Dosya yüklenirken hata oluştu: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Değerlendirmeler", "Evaluations": "Değerlendirmeler",
"Everyone": "", "Everyone": "",
"Exa API Key": "Exa API Anahtarı", "Exa API Key": "Exa API Anahtarı",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Dokunsal Geri Bildirim", "Haptic Feedback": "Dokunsal Geri Bildirim",
"Height": "",
"Hello, {{name}}": "Merhaba, {{name}}", "Hello, {{name}}": "Merhaba, {{name}}",
"Help": "Yardım", "Help": "Yardım",
"Help us create the best community leaderboard by sharing your feedback history!": "En iyi topluluk lider tablosunu oluşturmamıza yardımcı olun, geri bildirim geçmişinizi paylaşın!", "Help us create the best community leaderboard by sharing your feedback history!": "En iyi topluluk lider tablosunu oluşturmamıza yardımcı olun, geri bildirim geçmişinizi paylaşın!",
@ -733,6 +753,7 @@
"Hide": "Gizle", "Hide": "Gizle",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "Modeli Gizle", "Hide Model": "Modeli Gizle",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "Ana bilgisayar", "Host": "Ana bilgisayar",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "Giriş komutları", "Input commands": "Giriş komutları",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "Geçersiz dosya biçimi.", "Invalid file format.": "Geçersiz dosya biçimi.",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Geçersiz etiket", "Invalid Tag": "Geçersiz etiket",
"is typing...": "yazıyor...", "is typing...": "yazıyor...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "Anahtar", "Key": "Anahtar",
"Key is required": "",
"Keyboard shortcuts": "Klavye kısayolları", "Keyboard shortcuts": "Klavye kısayolları",
"Knowledge": "Bilgi", "Knowledge": "Bilgi",
"Knowledge Access": "Bilgi Erişimi", "Knowledge Access": "Bilgi Erişimi",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Bilgi başarıyla oluşturuldu.", "Knowledge created successfully.": "Bilgi başarıyla oluşturuldu.",
"Knowledge deleted successfully.": "Bilgi başarıyla silindi.", "Knowledge deleted successfully.": "Bilgi başarıyla silindi.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Bilgi başarıyla sıfırlandı.", "Knowledge reset successfully.": "Bilgi başarıyla sıfırlandı.",
"Knowledge updated successfully": "Bilgi başarıyla güncellendi", "Knowledge updated successfully": "Bilgi başarıyla güncellendi",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "Kayıp", "Lost": "Kayıp",
"Low": "",
"LTR": "Soldan Sağa", "LTR": "Soldan Sağa",
"Made by Open WebUI Community": "OpenWebUI Topluluğu tarafından yapılmıştır", "Made by Open WebUI Community": "OpenWebUI Topluluğu tarafından yapılmıştır",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "Maksimum Yükleme Boyutu", "Max Upload Size": "Maksimum Yükleme Boyutu",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Aynı anda en fazla 3 model indirilebilir. Lütfen daha sonra tekrar deneyin.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Aynı anda en fazla 3 model indirilebilir. Lütfen daha sonra tekrar deneyin.",
"May": "Mayıs", "May": "Mayıs",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLM'ler tarafından erişilebilen bellekler burada gösterilecektir.", "Memories accessible by LLMs will be shown here.": "LLM'ler tarafından erişilebilen bellekler burada gösterilecektir.",
"Memory": "Bellek", "Memory": "Bellek",
"Memory added successfully": "Bellek başarıyla eklendi", "Memory added successfully": "Bellek başarıyla eklendi",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "Model Kimlikleri", "Model IDs": "Model Kimlikleri",
"Model Name": "Model Adı", "Model Name": "Model Adı",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Model seçilmedi", "Model not selected": "Model seçilmedi",
"Model Params": "Model Parametreleri", "Model Params": "Model Parametreleri",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Ad", "Name": "Ad",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Bilgi tabanınıza bir ad verin", "Name your knowledge base": "Bilgi tabanınıza bir ad verin",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Hiç arama sorgusu oluşturulmadı", "No search query generated": "Hiç arama sorgusu oluşturulmadı",
"No source available": "Kaynak mevcut değil", "No source available": "Kaynak mevcut değil",
"No users were found.": "Kullanıcı bulunamadı.", "No users were found.": "Kullanıcı bulunamadı.",
"No valves": "",
"No valves to update": "Güncellenecek valvler yok", "No valves to update": "Güncellenecek valvler yok",
"Node Ids": "",
"None": "Yok", "None": "Yok",
"Not factually correct": "Gerçeklere göre doğru değil", "Not factually correct": "Gerçeklere göre doğru değil",
"Not helpful": "Yardımcı olmadı", "Not helpful": "Yardımcı olmadı",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Ara", "Search": "Ara",
"Search a model": "Bir model ara", "Search a model": "Bir model ara",
"Search all emojis": "",
"Search Base": "Temel Ara", "Search Base": "Temel Ara",
"Search Chats": "Sohbetleri Ara", "Search Chats": "Sohbetleri Ara",
"Search Collection": "Koleksiyon Ara", "Search Collection": "Koleksiyon Ara",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Yönergeler için readme.md dosyasına bakın", "See readme.md for instructions": "Yönergeler için readme.md dosyasına bakın",
"See what's new": "Yeniliklere göz atın", "See what's new": "Yeniliklere göz atın",
"Seed": "Seed", "Seed": "Seed",
"Select": "",
"Select a base model": "Bir temel model seç", "Select a base model": "Bir temel model seç",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Bir motor seç", "Select a engine": "Bir motor seç",
"Select a function": "Bir fonksiyon seç", "Select a function": "Bir fonksiyon seç",
"Select a group": "Bir grup seç", "Select a group": "Bir grup seç",
"Select a language": "",
"Select a mode": "",
"Select a model": "Bir model seç", "Select a model": "Bir model seç",
"Select a model (optional)": "",
"Select a pipeline": "Bir pipeline seç", "Select a pipeline": "Bir pipeline seç",
"Select a pipeline url": "Bir pipeline URL'si seç", "Select a pipeline url": "Bir pipeline URL'si seç",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Bir araç seç", "Select a tool": "Bir araç seç",
"Select a voice": "",
"Select an auth method": "Yetkilendirme yöntemi seç", "Select an auth method": "Yetkilendirme yöntemi seç",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Motor Seç", "Select Engine": "Motor Seç",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Bilgi Seç", "Select Knowledge": "Bilgi Seç",
"Select only one model to call": "Arama için sadece bir model seç", "Select only one model to call": "Arama için sadece bir model seç",
"Selected model(s) do not support image inputs": "Seçilen model(ler) görüntü girişlerini desteklemiyor", "Selected model(s) do not support image inputs": "Seçilen model(ler) görüntü girişlerini desteklemiyor",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API Anahtarı", "Serply API Key": "Serply API Anahtarı",
"Serpstack API Key": "Serpstack API Anahtarı", "Serpstack API Key": "Serpstack API Anahtarı",
"Server connection verified": "Sunucu bağlantısı doğrulandı", "Server connection verified": "Sunucu bağlantısı doğrulandı",
"Session": "",
"Set as default": "Varsayılan olarak ayarla", "Set as default": "Varsayılan olarak ayarla",
"Set CFG Scale": "CFG Ölçeğini Ayarla", "Set CFG Scale": "CFG Ölçeğini Ayarla",
"Set Default Model": "Varsayılan Modeli Ayarla", "Set Default Model": "Varsayılan Modeli Ayarla",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Kaynak", "Source": "Kaynak",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Alt başlık (örn. Roma İmparatorluğu hakkında)", "Subtitle (e.g. about the Roman Empire)": "Alt başlık (örn. Roma İmparatorluğu hakkında)",
"Success": "Başarılı", "Success": "Başarılı",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Başarıyla güncellendi.", "Successfully updated.": "Başarıyla güncellendi.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Önerilen", "Suggested": "Önerilen",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "MB cinsinden maksimum dosya boyutu. Dosya boyutu bu sınırı aşarsa, dosya yüklenmeyecektir.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "MB cinsinden maksimum dosya boyutu. Dosya boyutu bu sınırı aşarsa, dosya yüklenmeyecektir.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Sohbette aynı anda kullanılabilecek maksimum dosya sayısı. Dosya sayısı bu sınırı aşarsa, dosyalar yüklenmeyecektir.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Sohbette aynı anda kullanılabilecek maksimum dosya sayısı. Dosya sayısı bu sınırı aşarsa, dosyalar yüklenmeyecektir.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Puan 0.0 (%0) ile 1.0 (%100) arasında bir değer olmalıdır.", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Puan 0.0 (%0) ile 1.0 (%100) arasında bir değer olmalıdır.",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Dosyaları Yükle", "Upload Files": "Dosyaları Yükle",
"Upload Pipeline": "Pipeline Yükle", "Upload Pipeline": "Pipeline Yükle",
"Upload Progress": "Yükleme İlerlemesi", "Upload Progress": "Yükleme İlerlemesi",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "URL Modu", "URL Mode": "URL Modu",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "Bilginizi yüklemek ve dahil etmek için prompt girişinde '#' kullanın.", "Use '#' in the prompt input to load and include your knowledge.": "Bilginizi yüklemek ve dahil etmek için prompt girişinde '#' kullanın.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Tüm modellerle varsayılan arena modelini kullanıyor. Özel modeller eklemek için artı düğmesine tıklayın.", "Using the default arena model with all models. Click the plus button to add custom models.": "Tüm modellerle varsayılan arena modelini kullanıyor. Özel modeller eklemek için artı düğmesine tıklayın.",
"Valid time units:": "Geçerli zaman birimleri:", "Valid time units:": "Geçerli zaman birimleri:",
"Validate certificate": "",
"Valves": "Valvler", "Valves": "Valvler",
"Valves updated": "Valvler güncellendi", "Valves updated": "Valvler güncellendi",
"Valves updated successfully": "Valvler başarıyla güncellendi", "Valves updated successfully": "Valvler başarıyla güncellendi",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Yerel)", "Whisper (Local)": "Whisper (Yerel)",
"Why?": "Neden?", "Why?": "Neden?",
"Widescreen Mode": "Geniş Ekran Modu", "Widescreen Mode": "Geniş Ekran Modu",
"Width": "",
"Won": "kazandı", "Won": "kazandı",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Çalışma Alanı", "Workspace": "Çalışma Alanı",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} يوشۇرۇن قۇرلار", "{{COUNT}} hidden lines": "{{COUNT}} يوشۇرۇن قۇرلار",
"{{COUNT}} Replies": "{{COUNT}} ئىنكاس", "{{COUNT}} Replies": "{{COUNT}} ئىنكاس",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} نىڭ سۆھبەتلىرى", "{{user}}'s Chats": "{{user}} نىڭ سۆھبەتلىرى",
"{{webUIName}} Backend Required": "{{webUIName}} ئارقا سۇپا زۆرۈر", "{{webUIName}} Backend Required": "{{webUIName}} ئارقا سۇپا زۆرۈر",
"*Prompt node ID(s) are required for image generation": "رەسىم ھاسىل قىلىش ئۈچۈن تۈرتكە نۇسخا ئۇچۇر ID(لىرى) زۆرۈر", "*Prompt node ID(s) are required for image generation": "رەسىم ھاسىل قىلىش ئۈچۈن تۈرتكە نۇسخا ئۇچۇر ID(لىرى) زۆرۈر",
@ -29,6 +30,7 @@
"Account Activation Pending": "ھېسابات ئاكتىپلىنىشى كۈتۈلمەكتە", "Account Activation Pending": "ھېسابات ئاكتىپلىنىشى كۈتۈلمەكتە",
"Accurate information": "توغرا ئۇچۇر", "Accurate information": "توغرا ئۇچۇر",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "ھەرىكەتلەر", "Actions": "ھەرىكەتلەر",
"Activate": "ئاكتىپلاش", "Activate": "ئاكتىپلاش",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "بۇ بۇيرۇقنى چىقىرىش ئۈچۈن سۆھبەتكە \"/{{COMMAND}}\" نى كىرگۈزۈڭ.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "بۇ بۇيرۇقنى چىقىرىش ئۈچۈن سۆھبەتكە \"/{{COMMAND}}\" نى كىرگۈزۈڭ.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "ئۇقتۇرۇش ئاۋازىنى ھەمىشە قوي", "Always Play Notification Sound": "ئۇقتۇرۇش ئاۋازىنى ھەمىشە قوي",
"Amazing": "ئاجايىپ", "Amazing": "ئاجايىپ",
"an assistant": "ياردەمچى", "an assistant": "ياردەمچى",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "تەھلىل قىلىندى", "Analyzed": "تەھلىل قىلىندى",
"Analyzing...": "تەھلىل قىلىنىۋاتىدۇ...", "Analyzing...": "تەھلىل قىلىنىۋاتىدۇ...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API ئاچقۇچى ئۇلانما چەكلىمەسى", "API Key Endpoint Restrictions": "API ئاچقۇچى ئۇلانما چەكلىمەسى",
"API keys": "API ئاچقۇچلىرى", "API keys": "API ئاچقۇچلىرى",
"API Version": "API نەشرى", "API Version": "API نەشرى",
"API Version is required": "",
"Application DN": "قوللىنىشچان DN", "Application DN": "قوللىنىشچان DN",
"Application DN Password": "قوللىنىشچان DN پارولى", "Application DN Password": "قوللىنىشچان DN پارولى",
"applies to all users with the \"user\" role": "\"ئىشلەتكۈچى\" رولىدىكى بارلىق ئىشلەتكۈچىلەرگە تەسىر قىلىدۇ", "applies to all users with the \"user\" role": "\"ئىشلەتكۈچى\" رولىدىكى بارلىق ئىشلەتكۈچىلەرگە تەسىر قىلىدۇ",
@ -160,6 +164,7 @@
"Banners": "لوزۇنكىلار", "Banners": "لوزۇنكىلار",
"Base Model (From)": "ئاساسىي مودېل (مەنبە)", "Base Model (From)": "ئاساسىي مودېل (مەنبە)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "بۇرۇن", "before": "بۇرۇن",
"Being lazy": "ھورۇن بۇلۇش", "Being lazy": "ھورۇن بۇلۇش",
"Beta": "بەتا", "Beta": "بەتا",
@ -189,7 +194,9 @@
"Capture Audio": "ئاۋاز تارتقۇزۇش", "Capture Audio": "ئاۋاز تارتقۇزۇش",
"Certificate Path": "كىنىشكا يولى", "Certificate Path": "كىنىشكا يولى",
"Change Password": "پارول ئۆزگەرتىش", "Change Password": "پارول ئۆزگەرتىش",
"Channel deleted successfully": "",
"Channel Name": "قانال ئاتى", "Channel Name": "قانال ئاتى",
"Channel updated successfully": "",
"Channels": "قاناللار", "Channels": "قاناللار",
"Character": "ھەرپ", "Character": "ھەرپ",
"Character limit for autocomplete generation input": "ئاپتوماتىك تولدۇرۇش كىرگۈزۈشنىڭ ھەرپ چەكى", "Character limit for autocomplete generation input": "ئاپتوماتىك تولدۇرۇش كىرگۈزۈشنىڭ ھەرپ چەكى",
@ -238,6 +245,7 @@
"Close modal": "مودالنى يېپىش", "Close modal": "مودالنى يېپىش",
"Close settings modal": "تەڭشەك مودالىنى يېپىش", "Close settings modal": "تەڭشەك مودالىنى يېپىش",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "كود ئىجرا قىلىش", "Code execution": "كود ئىجرا قىلىش",
"Code Execution": "كود ئىجرا قىلىش", "Code Execution": "كود ئىجرا قىلىش",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI ئاساسىي URL زۆرۈر.", "ComfyUI Base URL is required.": "ComfyUI ئاساسىي URL زۆرۈر.",
"ComfyUI Workflow": "ComfyUI جەريانى", "ComfyUI Workflow": "ComfyUI جەريانى",
"ComfyUI Workflow Nodes": "ComfyUI جەريان ئۇچۇرلىرى", "ComfyUI Workflow Nodes": "ComfyUI جەريان ئۇچۇرلىرى",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "بۇيرۇق", "Command": "بۇيرۇق",
"Comment": "", "Comment": "",
"Completions": "تولۇقلىنىشلار", "Completions": "تولۇقلىنىشلار",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "پاراللىل تەلەپلەر", "Concurrent Requests": "پاراللىل تەلەپلەر",
"Config imported successfully": "",
"Configure": "تەڭشەك", "Configure": "تەڭشەك",
"Confirm": "جەزملەش", "Confirm": "جەزملەش",
"Confirm Password": "پارولنى جەزملەش", "Confirm Password": "پارولنى جەزملەش",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Datalab Marker API ئاچقۇچى زۆرۈر.", "Datalab Marker API Key required.": "Datalab Marker API ئاچقۇچى زۆرۈر.",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "دېكابىر", "December": "دېكابىر",
"Deepgram": "",
"Default": "كۆڭۈلدىكى", "Default": "كۆڭۈلدىكى",
"Default (Open AI)": "كۆڭۈلدىكى (Open AI)", "Default (Open AI)": "كۆڭۈلدىكى (Open AI)",
"Default (SentenceTransformers)": "كۆڭۈلدىكى (SentenceTransformers)", "Default (SentenceTransformers)": "كۆڭۈلدىكى (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "بىۋاسىتە ئۇلىنىشلار", "Direct Connections": "بىۋاسىتە ئۇلىنىشلار",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "بىۋاسىتە ئۇلىنىشلار ئىشلەتكۈچىلەرگە ئۆز OpenAI ماس كېلىدىغان API ئۇلانمىسىغا باغلىنىشقا يول قويىدۇ.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "بىۋاسىتە ئۇلىنىشلار ئىشلەتكۈچىلەرگە ئۆز OpenAI ماس كېلىدىغان API ئۇلانمىسىغا باغلىنىشقا يول قويىدۇ.",
"Direct Tool Servers": "بىۋاسىتە قورال مۇلازىمېتىرلىرى", "Direct Tool Servers": "بىۋاسىتە قورال مۇلازىمېتىرلىرى",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "رەسىم چىقىرىشنى چەكلە", "Disable Image Extraction": "رەسىم چىقىرىشنى چەكلە",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "PDF دىن رەسىم چىقىرىش چەكلىنىدۇ. LLM ئىشلىتىلسە، رەسىملەر ئاپتوماتىك تېمىغا ئىگە بولىدۇ. كۆڭۈلدىكىچە چەكلەنمەيدۇ.", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "PDF دىن رەسىم چىقىرىش چەكلىنىدۇ. LLM ئىشلىتىلسە، رەسىملەر ئاپتوماتىك تېمىغا ئىگە بولىدۇ. كۆڭۈلدىكىچە چەكلەنمەيدۇ.",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "پۈتتۈر بىلەن ئايرىلغان \"token:bias_value\" جۈپىنى كىرگۈزۈڭ (مەسىلەن: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "پۈتتۈر بىلەن ئايرىلغان \"token:bias_value\" جۈپىنى كىرگۈزۈڭ (مەسىلەن: 5432:100, 413:-100)",
"Enter Config in JSON format": "JSON قېلىپىدا تەڭشەك كىرگۈزۈڭ", "Enter Config in JSON format": "JSON قېلىپىدا تەڭشەك كىرگۈزۈڭ",
"Enter content for the pending user info overlay. Leave empty for default.": "كۈتۈۋاتقان ئىشلەتكۈچى ئۇچۇر قاپلىمىسى ئۈچۈن مەزمۇن كىرگۈزۈڭ. كۆڭۈلدىكى ئۈچۈن بوش قالدۇرۇڭ.", "Enter content for the pending user info overlay. Leave empty for default.": "كۈتۈۋاتقان ئىشلەتكۈچى ئۇچۇر قاپلىمىسى ئۈچۈن مەزمۇن كىرگۈزۈڭ. كۆڭۈلدىكى ئۈچۈن بوش قالدۇرۇڭ.",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "Datalab Marker API ئاچقۇچى كىرگۈزۈڭ", "Enter Datalab Marker API Key": "Datalab Marker API ئاچقۇچى كىرگۈزۈڭ",
"Enter description": "چۈشەندۈرۈش كىرگۈزۈڭ", "Enter description": "چۈشەندۈرۈش كىرگۈزۈڭ",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Github Raw URL كىرگۈزۈڭ", "Enter Github Raw URL": "Github Raw URL كىرگۈزۈڭ",
"Enter Google PSE API Key": "Google PSE API ئاچقۇچى كىرگۈزۈڭ", "Enter Google PSE API Key": "Google PSE API ئاچقۇچى كىرگۈزۈڭ",
"Enter Google PSE Engine Id": "Google PSE ماتور ID كىرگۈزۈڭ", "Enter Google PSE Engine Id": "Google PSE ماتور ID كىرگۈزۈڭ",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "رەسىم چوڭلۇقى كىرگۈزۈڭ (مەسىلەن: 512x512)", "Enter Image Size (e.g. 512x512)": "رەسىم چوڭلۇقى كىرگۈزۈڭ (مەسىلەن: 512x512)",
"Enter Jina API Key": "Jina API ئاچقۇچى كىرگۈزۈڭ", "Enter Jina API Key": "Jina API ئاچقۇچى كىرگۈزۈڭ",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Top K قايتا تەرتىپلەش كىرگۈزۈڭ", "Enter Top K Reranker": "Top K قايتا تەرتىپلەش كىرگۈزۈڭ",
"Enter URL (e.g. http://127.0.0.1:7860/)": "URL كىرگۈزۈڭ (مەسىلەن: http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "URL كىرگۈزۈڭ (مەسىلەن: http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "URL كىرگۈزۈڭ (مەسىلەن: http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "URL كىرگۈزۈڭ (مەسىلەن: http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "Yacy پارول كىرگۈزۈڭ", "Enter Yacy Password": "Yacy پارول كىرگۈزۈڭ",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Yacy URL كىرگۈزۈڭ (مەسىلەن: http://yacy.example.com:8090)", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Yacy URL كىرگۈزۈڭ (مەسىلەن: http://yacy.example.com:8090)",
"Enter Yacy Username": "Yacy ئىشلەتكۈچى نامى كىرگۈزۈڭ", "Enter Yacy Username": "Yacy ئىشلەتكۈچى نامى كىرگۈزۈڭ",
@ -579,11 +595,14 @@
"Enter your webhook URL": "webhook URL كىرگۈزۈڭ", "Enter your webhook URL": "webhook URL كىرگۈزۈڭ",
"Error": "خاتا", "Error": "خاتا",
"ERROR": "خاتالىق", "ERROR": "خاتالىق",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Google Drive زىيارىتىدە خاتالىق: {{error}}", "Error accessing Google Drive: {{error}}": "Google Drive زىيارىتىدە خاتالىق: {{error}}",
"Error accessing media devices.": "كۆپ-ۋاستە ئۈسكۈنىلىرىگە زىيارەت خاتالىقى.", "Error accessing media devices.": "كۆپ-ۋاستە ئۈسكۈنىلىرىگە زىيارەت خاتالىقى.",
"Error starting recording.": "خاتىرىلەش باشلاش خاتالىقى.", "Error starting recording.": "خاتىرىلەش باشلاش خاتالىقى.",
"Error unloading model: {{error}}": "مودېل چىقىرىشتا خاتالىق: {{error}}", "Error unloading model: {{error}}": "مودېل چىقىرىشتا خاتالىق: {{error}}",
"Error uploading file: {{error}}": "ھۆججەت چىقىرىشتا خاتالىق: {{error}}", "Error uploading file: {{error}}": "ھۆججەت چىقىرىشتا خاتالىق: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "باھالاشلار", "Evaluations": "باھالاشلار",
"Everyone": "", "Everyone": "",
"Exa API Key": "Exa API ئاچقۇچى", "Exa API Key": "Exa API ئاچقۇچى",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "ئىجابىي ئۇقتۇرۇش", "Haptic Feedback": "ئىجابىي ئۇقتۇرۇش",
"Height": "",
"Hello, {{name}}": "ياخشىمۇسىز، {{name}}", "Hello, {{name}}": "ياخشىمۇسىز، {{name}}",
"Help": "ياردەم", "Help": "ياردەم",
"Help us create the best community leaderboard by sharing your feedback history!": "تەكلىپ-پىكىرلىرىڭىزنى ئورتاقلىشىش ئارقىلىق ئەڭ ياخشى مەھەللە رەھبەرلىك تاختىسى قۇرۇشىمىزغا ياردەم قىلىڭ!", "Help us create the best community leaderboard by sharing your feedback history!": "تەكلىپ-پىكىرلىرىڭىزنى ئورتاقلىشىش ئارقىلىق ئەڭ ياخشى مەھەللە رەھبەرلىك تاختىسى قۇرۇشىمىزغا ياردەم قىلىڭ!",
@ -733,6 +753,7 @@
"Hide": "يوشۇرۇش", "Hide": "يوشۇرۇش",
"Hide from Sidebar": "يانتاختىدىن يوشۇرۇش", "Hide from Sidebar": "يانتاختىدىن يوشۇرۇش",
"Hide Model": "مودېلنى يوشۇرۇش", "Hide Model": "مودېلنى يوشۇرۇش",
"High": "",
"High Contrast Mode": "يۇقىرى سېلىشتۇرما ھالەت", "High Contrast Mode": "يۇقىرى سېلىشتۇرما ھالەت",
"Home": "باش بەت", "Home": "باش بەت",
"Host": "مۇلازىمېتىر", "Host": "مۇلازىمېتىر",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "پۈتۈن مەزمۇننى مۇھىتقا قوشۇپ مول تەھلىل قىلىش، مۇرەككەپ سۇئاللار ئۈچۈن تەۋسىيە قىلىنىدۇ.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "پۈتۈن مەزمۇننى مۇھىتقا قوشۇپ مول تەھلىل قىلىش، مۇرەككەپ سۇئاللار ئۈچۈن تەۋسىيە قىلىنىدۇ.",
"Input": "", "Input": "",
"Input commands": "بۇيرۇق كىرگۈزۈش", "Input commands": "بۇيرۇق كىرگۈزۈش",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "ھۆججەت مەزمۇنى خاتا", "Invalid file content": "ھۆججەت مەزمۇنى خاتا",
"Invalid file format.": "ھۆججەت قېلىپى خاتا.", "Invalid file format.": "ھۆججەت قېلىپى خاتا.",
"Invalid JSON file": "JSON ھۆججىتى خاتا", "Invalid JSON file": "JSON ھۆججىتى خاتا",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "تەغ خاتا", "Invalid Tag": "تەغ خاتا",
"is typing...": "يازماقتا...", "is typing...": "يازماقتا...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "يانتاختىدا ساقلا", "Keep in Sidebar": "يانتاختىدا ساقلا",
"Key": "ئاچقۇچ", "Key": "ئاچقۇچ",
"Key is required": "",
"Keyboard shortcuts": "تىزلەتمىلەر", "Keyboard shortcuts": "تىزلەتمىلەر",
"Knowledge": "بىلىم", "Knowledge": "بىلىم",
"Knowledge Access": "بىلىم زىيارىتى", "Knowledge Access": "بىلىم زىيارىتى",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "بىلىم مۇۋەپپەقىيەتلىك قۇرۇلدى.", "Knowledge created successfully.": "بىلىم مۇۋەپپەقىيەتلىك قۇرۇلدى.",
"Knowledge deleted successfully.": "بىلىم مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى.", "Knowledge deleted successfully.": "بىلىم مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "بىلىمنى ئاممىغا ھەمبەھىرلەش", "Knowledge Public Sharing": "بىلىمنى ئاممىغا ھەمبەھىرلەش",
"Knowledge reset successfully.": "بىلىم مۇۋەپپەقىيەتلىك قايتا تەڭشەلدى.", "Knowledge reset successfully.": "بىلىم مۇۋەپپەقىيەتلىك قايتا تەڭشەلدى.",
"Knowledge updated successfully": "بىلىم مۇۋەپپەقىيەتلىك يېڭىلاندى", "Knowledge updated successfully": "بىلىم مۇۋەپپەقىيەتلىك يېڭىلاندى",
@ -852,6 +878,7 @@
"Local Task Model": "يەرلىك ۋەزىپە مودېلى", "Local Task Model": "يەرلىك ۋەزىپە مودېلى",
"Location access not allowed": "ئورۇن زىيارىتىغا ئىجازەت يوق", "Location access not allowed": "ئورۇن زىيارىتىغا ئىجازەت يوق",
"Lost": "يوقاپ كەتتى", "Lost": "يوقاپ كەتتى",
"Low": "",
"LTR": "LTR (سولدىن ئوڭغا)", "LTR": "LTR (سولدىن ئوڭغا)",
"Made by Open WebUI Community": "Open WebUI جەمئىيىتى تەرىپىدىن قۇرۇلغان", "Made by Open WebUI Community": "Open WebUI جەمئىيىتى تەرىپىدىن قۇرۇلغان",
"Make password visible in the user interface": "ئىشلەتكۈچى ئۈستىلىدە پارول كۆرسىتىش", "Make password visible in the user interface": "ئىشلەتكۈچى ئۈستىلىدە پارول كۆرسىتىش",
@ -873,6 +900,7 @@
"Max Upload Size": "ئەڭ چوڭ چىقىرىش چوڭلۇقى", "Max Upload Size": "ئەڭ چوڭ چىقىرىش چوڭلۇقى",
"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": "ماي",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLM ئىشلىتەلەيدىن ئەسلەتمىلەر بۇ يەردە كۆرۈنىدۇ.", "Memories accessible by LLMs will be shown here.": "LLM ئىشلىتەلەيدىن ئەسلەتمىلەر بۇ يەردە كۆرۈنىدۇ.",
"Memory": "ئەسلەتمە", "Memory": "ئەسلەتمە",
"Memory added successfully": "ئەسلەتمە مۇۋەپپەقىيەتلىك قوشۇلدى", "Memory added successfully": "ئەسلەتمە مۇۋەپپەقىيەتلىك قوشۇلدى",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "مودېل IDلىرى", "Model IDs": "مودېل IDلىرى",
"Model Name": "مودېل نامى", "Model Name": "مودېل نامى",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "مودېل تاللانمىغان", "Model not selected": "مودېل تاللانمىغان",
"Model Params": "مودېل پارامېتىرلىرى", "Model Params": "مودېل پارامېتىرلىرى",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "ئات", "Name": "ئات",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "بىلىم ئاساسى نامىنى كىرگۈزۈڭ", "Name your knowledge base": "بىلىم ئاساسى نامىنى كىرگۈزۈڭ",
"Native": "يەرلىك", "Native": "يەرلىك",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "ئىزدەش سۇئالى ھاسىل قىلىنمىدى", "No search query generated": "ئىزدەش سۇئالى ھاسىل قىلىنمىدى",
"No source available": "مەنبە يوق", "No source available": "مەنبە يوق",
"No users were found.": "ئىشلەتكۈچى تېپىلمىدى.", "No users were found.": "ئىشلەتكۈچى تېپىلمىدى.",
"No valves": "",
"No valves to update": "يېڭىلاشقا كېرەكلىك كران يوق", "No valves to update": "يېڭىلاشقا كېرەكلىك كران يوق",
"Node Ids": "",
"None": "يوق", "None": "يوق",
"Not factually correct": "ھەقىقى بولمىغان", "Not factually correct": "ھەقىقى بولمىغان",
"Not helpful": "پايدىسى يوق", "Not helpful": "پايدىسى يوق",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "تارماق ئۆزگەرسە ئېكران يۆتكىلىدۇ", "Scroll On Branch Change": "تارماق ئۆزگەرسە ئېكران يۆتكىلىدۇ",
"Search": "ئىزدەش", "Search": "ئىزدەش",
"Search a model": "مودېل ئىزدەش", "Search a model": "مودېل ئىزدەش",
"Search all emojis": "",
"Search Base": "ئىزدەش ئاساسى", "Search Base": "ئىزدەش ئاساسى",
"Search Chats": "سۆھبەت ئىزدەش", "Search Chats": "سۆھبەت ئىزدەش",
"Search Collection": "توپلام ئىزدەش", "Search Collection": "توپلام ئىزدەش",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "قوللانما ئۈچۈن readme.md غا قاراڭ", "See readme.md for instructions": "قوللانما ئۈچۈن readme.md غا قاراڭ",
"See what's new": "يېڭىلىقلارنى كۆرۈش", "See what's new": "يېڭىلىقلارنى كۆرۈش",
"Seed": "ئۇرۇق", "Seed": "ئۇرۇق",
"Select": "",
"Select a base model": "ئاساسىي مودېل تاللاڭ", "Select a base model": "ئاساسىي مودېل تاللاڭ",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "ماتور تاللاڭ", "Select a engine": "ماتور تاللاڭ",
"Select a function": "فۇنكسىيە تاللاڭ", "Select a function": "فۇنكسىيە تاللاڭ",
"Select a group": "گۇرۇپپا تاللاڭ", "Select a group": "گۇرۇپپا تاللاڭ",
"Select a language": "",
"Select a mode": "",
"Select a model": "مودېل تاللاڭ", "Select a model": "مودېل تاللاڭ",
"Select a model (optional)": "",
"Select a pipeline": "جەريان تاللاڭ", "Select a pipeline": "جەريان تاللاڭ",
"Select a pipeline url": "جەريان URL تاللاڭ", "Select a pipeline url": "جەريان URL تاللاڭ",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "قورال تاللاڭ", "Select a tool": "قورال تاللاڭ",
"Select a voice": "",
"Select an auth method": "دەلىللەش ئۇسۇلى تاللاڭ", "Select an auth method": "دەلىللەش ئۇسۇلى تاللاڭ",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Ollama نىڭ بىر ئەڭ تاللاڭ", "Select an Ollama instance": "Ollama نىڭ بىر ئەڭ تاللاڭ",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "ماتور تاللاڭ", "Select Engine": "ماتور تاللاڭ",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "بىلىم تاللاڭ", "Select Knowledge": "بىلىم تاللاڭ",
"Select only one model to call": "پەقەت بىر مودېل چاقىرالايسىز", "Select only one model to call": "پەقەت بىر مودېل چاقىرالايسىز",
"Selected model(s) do not support image inputs": "تاللانغان مودېل(لار) رەسىم كىرگۈزۈشنى قوللىمايدۇ", "Selected model(s) do not support image inputs": "تاللانغان مودېل(لار) رەسىم كىرگۈزۈشنى قوللىمايدۇ",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API ئاچقۇچى", "Serply API Key": "Serply API ئاچقۇچى",
"Serpstack API Key": "Serpstack API ئاچقۇچى", "Serpstack API Key": "Serpstack API ئاچقۇچى",
"Server connection verified": "مۇلازىمېتىر ئۇلىنىشى جەزملەندى", "Server connection verified": "مۇلازىمېتىر ئۇلىنىشى جەزملەندى",
"Session": "",
"Set as default": "كۆڭۈلدىكى قىلىش", "Set as default": "كۆڭۈلدىكى قىلىش",
"Set CFG Scale": "CFG ئامىلى تەڭشەش", "Set CFG Scale": "CFG ئامىلى تەڭشەش",
"Set Default Model": "كۆڭۈلدىكى مودېل تەڭشەش", "Set Default Model": "كۆڭۈلدىكى مودېل تەڭشەش",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "غەملەكتىن ئۆتۈپ كېتىش", "Skip Cache": "غەملەكتىن ئۆتۈپ كېتىش",
"Skip the cache and re-run the inference. Defaults to False.": "غەملەكتىن ئۆتۈپ، يەكۈننى قايتا ئىجرا قىلىش. كۆڭۈلدىكىچە چەكلەنگەن", "Skip the cache and re-run the inference. Defaults to False.": "غەملەكتىن ئۆتۈپ، يەكۈننى قايتا ئىجرا قىلىش. كۆڭۈلدىكىچە چەكلەنگەن",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "Sougou ئىزدەش API sID", "Sougou Search API sID": "Sougou ئىزدەش API sID",
"Sougou Search API SK": "Sougou ئىزدەش API SK", "Sougou Search API SK": "Sougou ئىزدەش API SK",
"Source": "مەنبە", "Source": "مەنبە",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "ئۇسلۇبلۇق PDF چىقىرىش", "Stylized PDF Export": "ئۇسلۇبلۇق PDF چىقىرىش",
"Subtitle (e.g. about the Roman Empire)": "تاق سۆز (مەسىلەن: رىم ئىمپېرىيەسى ھەققىدە)", "Subtitle (e.g. about the Roman Empire)": "تاق سۆز (مەسىلەن: رىم ئىمپېرىيەسى ھەققىدە)",
"Success": "مۇۋەپپەقىيەت", "Success": "مۇۋەپپەقىيەت",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "مۇۋەپپەقىيەتلىك يېڭىلاندى.", "Successfully updated.": "مۇۋەپپەقىيەتلىك يېڭىلاندى.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "تەكلىپلەر", "Suggested": "تەكلىپلەر",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "ھۆججەتنىڭ ئەڭ چوڭ چوڭلۇقى (MB). چەكتىن ئېشىپ كەتسى، چىقىرىلمىيدۇ.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "ھۆججەتنىڭ ئەڭ چوڭ چوڭلۇقى (MB). چەكتىن ئېشىپ كەتسى، چىقىرىلمىيدۇ.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "سۆھبەتتە بىرى ۋاقىتتا ئىشلىتىشكە بولىدىغان ھۆججەت ئەڭ كۆپ سانى. چەكتىن ئېشىپ كەتسى، چىقىرىلمىيدۇ.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "سۆھبەتتە بىرى ۋاقىتتا ئىشلىتىشكە بولىدىغان ھۆججەت ئەڭ كۆپ سانى. چەكتىن ئېشىپ كەتسى، چىقىرىلمىيدۇ.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "تېكست چىقىرىش قېلىپى. 'json', 'markdown', ياكى 'html' بولىدۇ. كۆڭۈلدىكى 'markdown'.", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "تېكست چىقىرىش قېلىپى. 'json', 'markdown', ياكى 'html' بولىدۇ. كۆڭۈلدىكى 'markdown'.",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "باھا 0.0 (0%) بىلەن 1.0 (100%) ئارىلىقىدا بولۇشى كېرەك.", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "باھا 0.0 (0%) بىلەن 1.0 (100%) ئارىلىقىدا بولۇشى كېرەك.",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "مودېل تېمپېراتۇراسى. تېمپېراتۇرا ئاشسىلا يېڭىلىق كۈچى يۇقىرى بولىدۇ.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "مودېل تېمپېراتۇراسى. تېمپېراتۇرا ئاشسىلا يېڭىلىق كۈچى يۇقىرى بولىدۇ.",
@ -1439,7 +1495,9 @@
"Upload Files": "ھۆججەت چىقىرىش", "Upload Files": "ھۆججەت چىقىرىش",
"Upload Pipeline": "جەريان چىقىرىش", "Upload Pipeline": "جەريان چىقىرىش",
"Upload Progress": "چىقىرىش جەريانى", "Upload Progress": "چىقىرىش جەريانى",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "URL ھالىتى", "URL Mode": "URL ھالىتى",
"Usage": "ئىشلىتىش", "Usage": "ئىشلىتىش",
"Use '#' in the prompt input to load and include your knowledge.": "بىلىمىڭىزنى يوللاش ئۈچۈن تۈرتكە كىرگۈزۈشىدە '#' ئىشلەتسىڭىز بولىدۇ.", "Use '#' in the prompt input to load and include your knowledge.": "بىلىمىڭىزنى يوللاش ئۈچۈن تۈرتكە كىرگۈزۈشىدە '#' ئىشلەتسىڭىز بولىدۇ.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "بارلىق مودېللاردا كۆڭۈلدىكى arena مودېلى ئىشلىتىلىدۇ. ئۆزلۈك مودېل قوشۇش ئۈچۈن قوشۇش كۇنۇپكىسىنى چېكىڭ.", "Using the default arena model with all models. Click the plus button to add custom models.": "بارلىق مودېللاردا كۆڭۈلدىكى arena مودېلى ئىشلىتىلىدۇ. ئۆزلۈك مودېل قوشۇش ئۈچۈن قوشۇش كۇنۇپكىسىنى چېكىڭ.",
"Valid time units:": "توغرا ۋاقىت بىرلىكلىرى:", "Valid time units:": "توغرا ۋاقىت بىرلىكلىرى:",
"Validate certificate": "",
"Valves": "كرانلار", "Valves": "كرانلار",
"Valves updated": "كرانلار يېڭىلاندى", "Valves updated": "كرانلار يېڭىلاندى",
"Valves updated successfully": "كرانلار مۇۋەپپەقىيەتلىك يېڭىلاندى", "Valves updated successfully": "كرانلار مۇۋەپپەقىيەتلىك يېڭىلاندى",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (يەرلىك)", "Whisper (Local)": "Whisper (يەرلىك)",
"Why?": "نېمىشقا؟", "Why?": "نېمىشقا؟",
"Widescreen Mode": "كەڭ ئېكران ھالىتى", "Widescreen Mode": "كەڭ ئېكران ھالىتى",
"Width": "",
"Won": "ئۇتتى", "Won": "ئۇتتى",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "top-k بىلەن بىرلىكتە ئىشلىتىلىدۇ. چوڭ قىممەت (مەسىلەن: 0.95) كۆپ خىل تېكست، كىچىك قىممەت (مەسىلەن: 0.5) تېخىمۇ مۇقىم تېكست چىقىرىدۇ.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "top-k بىلەن بىرلىكتە ئىشلىتىلىدۇ. چوڭ قىممەت (مەسىلەن: 0.95) كۆپ خىل تېكست، كىچىك قىممەت (مەسىلەن: 0.5) تېخىمۇ مۇقىم تېكست چىقىرىدۇ.",
"Workspace": "ئىشخانا", "Workspace": "ئىشخانا",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} прихованих рядків", "{{COUNT}} hidden lines": "{{COUNT}} прихованих рядків",
"{{COUNT}} Replies": "{{COUNT}} Відповіді", "{{COUNT}} Replies": "{{COUNT}} Відповіді",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Чати {{user}}а", "{{user}}'s Chats": "Чати {{user}}а",
"{{webUIName}} Backend Required": "Необхідно підключення бекенду {{webUIName}}", "{{webUIName}} Backend Required": "Необхідно підключення бекенду {{webUIName}}",
"*Prompt node ID(s) are required for image generation": "*Для генерації зображення потрібно вказати ідентифікатор(и) вузла(ів)", "*Prompt node ID(s) are required for image generation": "*Для генерації зображення потрібно вказати ідентифікатор(и) вузла(ів)",
@ -29,6 +30,7 @@
"Account Activation Pending": "Очікування активації облікового запису", "Account Activation Pending": "Очікування активації облікового запису",
"Accurate information": "Точна інформація", "Accurate information": "Точна інформація",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Дії", "Actions": "Дії",
"Activate": "Активувати", "Activate": "Активувати",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Активуйте цю команду, ввівши \"/{{COMMAND}}\" у введення чату.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Активуйте цю команду, ввівши \"/{{COMMAND}}\" у введення чату.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "Чудово", "Amazing": "Чудово",
"an assistant": "асистента", "an assistant": "асистента",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Проаналізовано", "Analyzed": "Проаналізовано",
"Analyzing...": "Аналізую...", "Analyzing...": "Аналізую...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Обмеження кінцевої точки ключа API", "API Key Endpoint Restrictions": "Обмеження кінцевої точки ключа API",
"API keys": "Ключі API", "API keys": "Ключі API",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "DN застосунку", "Application DN": "DN застосунку",
"Application DN Password": "Пароль DN застосунку", "Application DN Password": "Пароль DN застосунку",
"applies to all users with the \"user\" role": "стосується всіх користувачів з роллю \"користувач\"", "applies to all users with the \"user\" role": "стосується всіх користувачів з роллю \"користувач\"",
@ -160,6 +164,7 @@
"Banners": "Прапори", "Banners": "Прапори",
"Base Model (From)": "Базова модель (від)", "Base Model (From)": "Базова модель (від)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "до того, як", "before": "до того, як",
"Being lazy": "Не поспішати", "Being lazy": "Не поспішати",
"Beta": "Beta", "Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "Шлях до сертифіката", "Certificate Path": "Шлях до сертифіката",
"Change Password": "Змінити пароль", "Change Password": "Змінити пароль",
"Channel deleted successfully": "",
"Channel Name": "Назва каналу", "Channel Name": "Назва каналу",
"Channel updated successfully": "",
"Channels": "Канали", "Channels": "Канали",
"Character": "Персонаж", "Character": "Персонаж",
"Character limit for autocomplete generation input": "Ліміт символів для введення при генерації автозаповнення", "Character limit for autocomplete generation input": "Ліміт символів для введення при генерації автозаповнення",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Виконання коду", "Code execution": "Виконання коду",
"Code Execution": "Виконання коду", "Code Execution": "Виконання коду",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "Необхідно вказати URL-адресу ComfyUI.", "ComfyUI Base URL is required.": "Необхідно вказати URL-адресу ComfyUI.",
"ComfyUI Workflow": "ComfyUI Workflow", "ComfyUI Workflow": "ComfyUI Workflow",
"ComfyUI Workflow Nodes": "Вузли Workflow в ComfyUI", "ComfyUI Workflow Nodes": "Вузли Workflow в ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Команда", "Command": "Команда",
"Comment": "", "Comment": "",
"Completions": "Завершення", "Completions": "Завершення",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Одночасні запити", "Concurrent Requests": "Одночасні запити",
"Config imported successfully": "",
"Configure": "Налаштувати", "Configure": "Налаштувати",
"Confirm": "Підтвердити", "Confirm": "Підтвердити",
"Confirm Password": "Підтвердіть пароль", "Confirm Password": "Підтвердіть пароль",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Грудень", "December": "Грудень",
"Deepgram": "",
"Default": "За замовчуванням", "Default": "За замовчуванням",
"Default (Open AI)": "За замовчуванням (Open AI)", "Default (Open AI)": "За замовчуванням (Open AI)",
"Default (SentenceTransformers)": "За замовчуванням (SentenceTransformers)", "Default (SentenceTransformers)": "За замовчуванням (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Прямі з'єднання", "Direct Connections": "Прямі з'єднання",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Прямі з'єднання дозволяють користувачам підключатися до своїх власних API-кінцевих точок, сумісних з OpenAI.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Прямі з'єднання дозволяють користувачам підключатися до своїх власних API-кінцевих точок, сумісних з OpenAI.",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Введіть пари \"токен:значення_зміщення\", розділені комами (напр.: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Введіть пари \"токен:значення_зміщення\", розділені комами (напр.: 5432:100, 413:-100)",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "Введіть опис", "Enter description": "Введіть опис",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Введіть Raw URL-адресу Github", "Enter Github Raw URL": "Введіть Raw URL-адресу Github",
"Enter Google PSE API Key": "Введіть ключ API Google PSE", "Enter Google PSE API Key": "Введіть ключ API Google PSE",
"Enter Google PSE Engine Id": "Введіть Google PSE Engine Id", "Enter Google PSE Engine Id": "Введіть Google PSE Engine Id",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Введіть розмір зображення (напр., 512x512)", "Enter Image Size (e.g. 512x512)": "Введіть розмір зображення (напр., 512x512)",
"Enter Jina API Key": "Введіть ключ API Jina", "Enter Jina API Key": "Введіть ключ API Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Введіть Top K Реранкер", "Enter Top K Reranker": "Введіть Top K Реранкер",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Введіть URL-адресу (напр., http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Введіть URL-адресу (напр., http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Введіть URL-адресу (напр., http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Введіть URL-адресу (напр., http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Введіть URL вашого вебхука", "Enter your webhook URL": "Введіть URL вашого вебхука",
"Error": "Помилка", "Error": "Помилка",
"ERROR": "ПОМИЛКА", "ERROR": "ПОМИЛКА",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Помилка доступу до Google Drive: {{error}}", "Error accessing Google Drive: {{error}}": "Помилка доступу до Google Drive: {{error}}",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "Помилка завантаження файлу: {{error}}", "Error uploading file: {{error}}": "Помилка завантаження файлу: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Оцінювання", "Evaluations": "Оцінювання",
"Everyone": "", "Everyone": "",
"Exa API Key": "Exa API ключ", "Exa API Key": "Exa API ключ",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Тактильний зворотній зв'язок", "Haptic Feedback": "Тактильний зворотній зв'язок",
"Height": "",
"Hello, {{name}}": "Привіт, {{name}}", "Hello, {{name}}": "Привіт, {{name}}",
"Help": "Допоможіть", "Help": "Допоможіть",
"Help us create the best community leaderboard by sharing your feedback history!": "Допоможіть нам створити найкращу таблицю лідерів спільноти, поділившись історією своїх відгуків!", "Help us create the best community leaderboard by sharing your feedback history!": "Допоможіть нам створити найкращу таблицю лідерів спільноти, поділившись історією своїх відгуків!",
@ -733,6 +753,7 @@
"Hide": "Приховати", "Hide": "Приховати",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "Приховати модель", "Hide Model": "Приховати модель",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "Головна", "Home": "Головна",
"Host": "Хост", "Host": "Хост",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Вставте весь вміст як контекст для всебічної обробки, це рекомендується для складних запитів.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Вставте весь вміст як контекст для всебічної обробки, це рекомендується для складних запитів.",
"Input": "", "Input": "",
"Input commands": "Команди вводу", "Input commands": "Команди вводу",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "Неправильний формат файлу.", "Invalid file format.": "Неправильний формат файлу.",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Недійсний тег", "Invalid Tag": "Недійсний тег",
"is typing...": "друкує...", "is typing...": "друкує...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "Ключ", "Key": "Ключ",
"Key is required": "",
"Keyboard shortcuts": "Клавіатурні скорочення", "Keyboard shortcuts": "Клавіатурні скорочення",
"Knowledge": "Знання", "Knowledge": "Знання",
"Knowledge Access": "Доступ до знань", "Knowledge Access": "Доступ до знань",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Знання успішно створено.", "Knowledge created successfully.": "Знання успішно створено.",
"Knowledge deleted successfully.": "Знання успішно видалено.", "Knowledge deleted successfully.": "Знання успішно видалено.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Публічний обмін знаннями", "Knowledge Public Sharing": "Публічний обмін знаннями",
"Knowledge reset successfully.": "Знання успішно скинуто.", "Knowledge reset successfully.": "Знання успішно скинуто.",
"Knowledge updated successfully": "Знання успішно оновлено", "Knowledge updated successfully": "Знання успішно оновлено",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "Доступ до місцезнаходження не дозволено", "Location access not allowed": "Доступ до місцезнаходження не дозволено",
"Lost": "Втрачене", "Lost": "Втрачене",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Зроблено спільнотою OpenWebUI", "Made by Open WebUI Community": "Зроблено спільнотою OpenWebUI",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "Макс. розмір завантаження", "Max Upload Size": "Макс. розмір завантаження",
"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": "Травень",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Пам'ять, яка доступна LLM, буде показана тут.", "Memories accessible by LLMs will be shown here.": "Пам'ять, яка доступна LLM, буде показана тут.",
"Memory": "Пам'ять", "Memory": "Пам'ять",
"Memory added successfully": "Пам'ять додано успішно", "Memory added successfully": "Пам'ять додано успішно",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "ID моделей", "Model IDs": "ID моделей",
"Model Name": "Назва моделі", "Model Name": "Назва моделі",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Модель не вибрана", "Model not selected": "Модель не вибрана",
"Model Params": "Параметри моделі", "Model Params": "Параметри моделі",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Ім'я", "Name": "Ім'я",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Назвіть вашу базу знань", "Name your knowledge base": "Назвіть вашу базу знань",
"Native": "Рідний", "Native": "Рідний",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Пошуковий запит не сформовано", "No search query generated": "Пошуковий запит не сформовано",
"No source available": "Джерело не доступне", "No source available": "Джерело не доступне",
"No users were found.": "Користувачів не знайдено.", "No users were found.": "Користувачів не знайдено.",
"No valves": "",
"No valves to update": "Немає клапанів для оновлення", "No valves to update": "Немає клапанів для оновлення",
"Node Ids": "",
"None": "Нема", "None": "Нема",
"Not factually correct": "Не відповідає дійсності", "Not factually correct": "Не відповідає дійсності",
"Not helpful": "Не корисно", "Not helpful": "Не корисно",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Пошук", "Search": "Пошук",
"Search a model": "Шукати модель", "Search a model": "Шукати модель",
"Search all emojis": "",
"Search Base": "База пошуку", "Search Base": "База пошуку",
"Search Chats": "Пошук в чатах", "Search Chats": "Пошук в чатах",
"Search Collection": "Шукати колекцію", "Search Collection": "Шукати колекцію",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Див. readme.md для інструкцій", "See readme.md for instructions": "Див. readme.md для інструкцій",
"See what's new": "Подивіться, що нового", "See what's new": "Подивіться, що нового",
"Seed": "Сід", "Seed": "Сід",
"Select": "",
"Select a base model": "Обрати базову модель", "Select a base model": "Обрати базову модель",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Оберіть рушій", "Select a engine": "Оберіть рушій",
"Select a function": "Оберіть функцію", "Select a function": "Оберіть функцію",
"Select a group": "Вибрати групу", "Select a group": "Вибрати групу",
"Select a language": "",
"Select a mode": "",
"Select a model": "Оберіть модель", "Select a model": "Оберіть модель",
"Select a model (optional)": "",
"Select a pipeline": "Оберіть конвеєр", "Select a pipeline": "Оберіть конвеєр",
"Select a pipeline url": "Оберіть адресу конвеєра", "Select a pipeline url": "Оберіть адресу конвеєра",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Оберіть інструмент", "Select a tool": "Оберіть інструмент",
"Select a voice": "",
"Select an auth method": "Оберіть метод аутентифікації.", "Select an auth method": "Оберіть метод аутентифікації.",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Виберіть екземпляр Ollama", "Select an Ollama instance": "Виберіть екземпляр Ollama",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Виберіть двигун", "Select Engine": "Виберіть двигун",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Вибрати знання", "Select Knowledge": "Вибрати знання",
"Select only one model to call": "Оберіть лише одну модель для виклику", "Select only one model to call": "Оберіть лише одну модель для виклику",
"Selected model(s) do not support image inputs": "Вибрані модель(і) не підтримують вхідні зображення", "Selected model(s) do not support image inputs": "Вибрані модель(і) не підтримують вхідні зображення",
@ -1215,6 +1262,7 @@
"Serply API Key": "Ключ API Serply", "Serply API Key": "Ключ API Serply",
"Serpstack API Key": "Ключ API Serpstack", "Serpstack API Key": "Ключ API Serpstack",
"Server connection verified": "З'єднання з сервером підтверджено", "Server connection verified": "З'єднання з сервером підтверджено",
"Session": "",
"Set as default": "Встановити за замовчуванням", "Set as default": "Встановити за замовчуванням",
"Set CFG Scale": "Встановити масштаб CFG", "Set CFG Scale": "Встановити масштаб CFG",
"Set Default Model": "Встановити модель за замовчуванням", "Set Default Model": "Встановити модель за замовчуванням",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Джерело", "Source": "Джерело",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Підзаголовок (напр., про Римську імперію)", "Subtitle (e.g. about the Roman Empire)": "Підзаголовок (напр., про Римську імперію)",
"Success": "Успіх", "Success": "Успіх",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Успішно оновлено.", "Successfully updated.": "Успішно оновлено.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Запропоновано", "Suggested": "Запропоновано",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Максимальний розмір файлу в МБ. Якщо розмір файлу перевищує цей ліміт, файл не буде завантажено.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Максимальний розмір файлу в МБ. Якщо розмір файлу перевищує цей ліміт, файл не буде завантажено.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Максимальна кількість файлів, які можна використати одночасно в чаті. Якщо кількість файлів перевищує цей ліміт, файли не будуть завантажені.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Максимальна кількість файлів, які можна використати одночасно в чаті. Якщо кількість файлів перевищує цей ліміт, файли не будуть завантажені.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Оцінка повинна бути в діапазоні від 0.0 (0%) до 1.0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Оцінка повинна бути в діапазоні від 0.0 (0%) до 1.0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Температура моделі. Збільшення температури зробить відповіді моделі більш креативними.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Температура моделі. Збільшення температури зробить відповіді моделі більш креативними.",
@ -1439,7 +1495,9 @@
"Upload Files": "Завантажити файли", "Upload Files": "Завантажити файли",
"Upload Pipeline": "Завантажити конвеєр", "Upload Pipeline": "Завантажити конвеєр",
"Upload Progress": "Прогрес завантаження", "Upload Progress": "Прогрес завантаження",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "Режим URL-адреси", "URL Mode": "Режим URL-адреси",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "Використовуйте '#' у полі введення підказки, щоб завантажити та включити свої знання.", "Use '#' in the prompt input to load and include your knowledge.": "Використовуйте '#' у полі введення підказки, щоб завантажити та включити свої знання.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Використовуючи модель арени за замовчуванням з усіма моделями. Натисніть кнопку плюс, щоб додати користувацькі моделі.", "Using the default arena model with all models. Click the plus button to add custom models.": "Використовуючи модель арени за замовчуванням з усіма моделями. Натисніть кнопку плюс, щоб додати користувацькі моделі.",
"Valid time units:": "Дійсні одиниці часу:", "Valid time units:": "Дійсні одиниці часу:",
"Validate certificate": "",
"Valves": "Клапани", "Valves": "Клапани",
"Valves updated": "Клапани оновлено", "Valves updated": "Клапани оновлено",
"Valves updated successfully": "Клапани успішно оновлено", "Valves updated successfully": "Клапани успішно оновлено",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Локально)", "Whisper (Local)": "Whisper (Локально)",
"Why?": "Чому?", "Why?": "Чому?",
"Widescreen Mode": "Широкоекранний режим", "Widescreen Mode": "Широкоекранний режим",
"Width": "",
"Won": "Переможець", "Won": "Переможець",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Працює разом із top-k. Вищий показник (напр., 0.95) призведе до більш різноманітного тексту, тоді як нижчий показник (напр., 0.5) згенерує більш сфокусований та консервативний текст.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Працює разом із top-k. Вищий показник (напр., 0.95) призведе до більш різноманітного тексту, тоді як нижчий показник (напр., 0.5) згенерує більш сфокусований та консервативний текст.",
"Workspace": "Робочий простір", "Workspace": "Робочий простір",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "", "{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "", "{{COUNT}} Replies": "",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{ صارف }} کی بات چیت", "{{user}}'s Chats": "{{ صارف }} کی بات چیت",
"{{webUIName}} Backend Required": "{{webUIName}} بیک اینڈ درکار ہے", "{{webUIName}} Backend Required": "{{webUIName}} بیک اینڈ درکار ہے",
"*Prompt node ID(s) are required for image generation": "تصویر کی تخلیق کے لیے *پرومپٹ نوڈ آئی ڈی(ز) کی ضرورت ہے", "*Prompt node ID(s) are required for image generation": "تصویر کی تخلیق کے لیے *پرومپٹ نوڈ آئی ڈی(ز) کی ضرورت ہے",
@ -29,6 +30,7 @@
"Account Activation Pending": "اکاؤنٹ فعال ہونے کا انتظار ہے", "Account Activation Pending": "اکاؤنٹ فعال ہونے کا انتظار ہے",
"Accurate information": "درست معلومات", "Accurate information": "درست معلومات",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "اعمال", "Actions": "اعمال",
"Activate": "", "Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "", "Amazing": "",
"an assistant": "معاون", "an assistant": "معاون",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "", "Analyzed": "",
"Analyzing...": "", "Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "", "API Key Endpoint Restrictions": "",
"API keys": "API کیز", "API keys": "API کیز",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "", "Application DN": "",
"Application DN Password": "", "Application DN Password": "",
"applies to all users with the \"user\" role": "", "applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "بینرز", "Banners": "بینرز",
"Base Model (From)": "بیس ماڈل (سے)", "Base Model (From)": "بیس ماڈل (سے)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "پہلے", "before": "پہلے",
"Being lazy": "سستی کر رہا ہے", "Being lazy": "سستی کر رہا ہے",
"Beta": "", "Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "", "Certificate Path": "",
"Change Password": "پاس ورڈ تبدیل کریں", "Change Password": "پاس ورڈ تبدیل کریں",
"Channel deleted successfully": "",
"Channel Name": "", "Channel Name": "",
"Channel updated successfully": "",
"Channels": "", "Channels": "",
"Character": "کردار", "Character": "کردار",
"Character limit for autocomplete generation input": "", "Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "کوڈ کا نفاذ", "Code execution": "کوڈ کا نفاذ",
"Code Execution": "", "Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI بیس یو آر ایل ضروری ہے", "ComfyUI Base URL is required.": "ComfyUI بیس یو آر ایل ضروری ہے",
"ComfyUI Workflow": "کومفی یو آئی ورک فلو", "ComfyUI Workflow": "کومفی یو آئی ورک فلو",
"ComfyUI Workflow Nodes": "کومفی یو آئی ورک فلو نوڈز", "ComfyUI Workflow Nodes": "کومفی یو آئی ورک فلو نوڈز",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "کمانڈ", "Command": "کمانڈ",
"Comment": "", "Comment": "",
"Completions": "تکمیل", "Completions": "تکمیل",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "ہم وقت درخواستیں", "Concurrent Requests": "ہم وقت درخواستیں",
"Config imported successfully": "",
"Configure": "", "Configure": "",
"Confirm": "تصدیق کریں", "Confirm": "تصدیق کریں",
"Confirm Password": "پاس ورڈ کی توثیق کریں", "Confirm Password": "پاس ورڈ کی توثیق کریں",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "دسمبر", "December": "دسمبر",
"Deepgram": "",
"Default": "پہلے سے طے شدہ", "Default": "پہلے سے طے شدہ",
"Default (Open AI)": "ڈیفالٹ (اوپن اے آئی)", "Default (Open AI)": "ڈیفالٹ (اوپن اے آئی)",
"Default (SentenceTransformers)": "ڈیفالٹ (سینٹینس ٹرانسفارمرز)", "Default (SentenceTransformers)": "ڈیفالٹ (سینٹینس ٹرانسفارمرز)",
@ -377,6 +388,7 @@
"Direct Connections": "", "Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "", "Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "تفصیل درج کریں", "Enter description": "تفصیل درج کریں",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "گیٹ ہب را یو آر ایل درج کریں", "Enter Github Raw URL": "گیٹ ہب را یو آر ایل درج کریں",
"Enter Google PSE API Key": "گوگل PSE API کلید درج کریں", "Enter Google PSE API Key": "گوگل PSE API کلید درج کریں",
"Enter Google PSE Engine Id": "گوگل پی ایس ای انجن آئی ڈی درج کریں", "Enter Google PSE Engine Id": "گوگل پی ایس ای انجن آئی ڈی درج کریں",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "تصویر کا سائز درج کریں (مثال: 512x512)", "Enter Image Size (e.g. 512x512)": "تصویر کا سائز درج کریں (مثال: 512x512)",
"Enter Jina API Key": "", "Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "", "Enter Top K Reranker": "",
"Enter URL (e.g. http://127.0.0.1:7860/)": "یو آر ایل درج کریں (جیسے کہ http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "یو آر ایل درج کریں (جیسے کہ http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "یو آر ایل درج کریں (مثلاً http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "یو آر ایل درج کریں (مثلاً http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "", "Enter your webhook URL": "",
"Error": "غلطی", "Error": "غلطی",
"ERROR": "غلطی", "ERROR": "غلطی",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "", "Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "", "Error uploading file: {{error}}": "",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "تشخیصات", "Evaluations": "تشخیصات",
"Everyone": "", "Everyone": "",
"Exa API Key": "", "Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "ہاپٹک فیڈ بیک", "Haptic Feedback": "ہاپٹک فیڈ بیک",
"Height": "",
"Hello, {{name}}": "ہیلو، {{name}}", "Hello, {{name}}": "ہیلو، {{name}}",
"Help": "مدد", "Help": "مدد",
"Help us create the best community leaderboard by sharing your feedback history!": "ہمیں بہترین کمیونٹی لیڈر بورڈ بنانے میں مدد کریں، اپنی رائے کی تاریخ شیئر کر کے!", "Help us create the best community leaderboard by sharing your feedback history!": "ہمیں بہترین کمیونٹی لیڈر بورڈ بنانے میں مدد کریں، اپنی رائے کی تاریخ شیئر کر کے!",
@ -733,6 +753,7 @@
"Hide": "چھپائیں", "Hide": "چھپائیں",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "", "Hide Model": "",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "", "Home": "",
"Host": "", "Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "", "Input": "",
"Input commands": "کمانڈز داخل کریں", "Input commands": "کمانڈز داخل کریں",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "غلط فائل فارمیٹ", "Invalid file format.": "غلط فائل فارمیٹ",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "غلط ٹیگ", "Invalid Tag": "غلط ٹیگ",
"is typing...": "", "is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "", "Key": "",
"Key is required": "",
"Keyboard shortcuts": "کی بورڈ شارٹ کٹس", "Keyboard shortcuts": "کی بورڈ شارٹ کٹس",
"Knowledge": "علم", "Knowledge": "علم",
"Knowledge Access": "", "Knowledge Access": "",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "علم کامیابی سے تخلیق کیا گیا", "Knowledge created successfully.": "علم کامیابی سے تخلیق کیا گیا",
"Knowledge deleted successfully.": "معلومات کامیابی سے حذف ہو گئیں", "Knowledge deleted successfully.": "معلومات کامیابی سے حذف ہو گئیں",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "", "Knowledge Public Sharing": "",
"Knowledge reset successfully.": "علم کو کامیابی کے ساتھ دوبارہ ترتیب دیا گیا", "Knowledge reset successfully.": "علم کو کامیابی کے ساتھ دوبارہ ترتیب دیا گیا",
"Knowledge updated successfully": "علم کامیابی سے تازہ کر دیا گیا ہے", "Knowledge updated successfully": "علم کامیابی سے تازہ کر دیا گیا ہے",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "", "Location access not allowed": "",
"Lost": "گم شدہ", "Lost": "گم شدہ",
"Low": "",
"LTR": "بائیں سے دائیں", "LTR": "بائیں سے دائیں",
"Made by Open WebUI Community": "اوپن ویب یو آئی کمیونٹی کی جانب سے تیار کردہ", "Made by Open WebUI Community": "اوپن ویب یو آئی کمیونٹی کی جانب سے تیار کردہ",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "زیادہ سے زیادہ اپلوڈ سائز", "Max Upload Size": "زیادہ سے زیادہ اپلوڈ سائز",
"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": "مئی",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "یہاں LLMs کے ذریعہ قابل رسائی یادیں دکھائی جائیں گی", "Memories accessible by LLMs will be shown here.": "یہاں LLMs کے ذریعہ قابل رسائی یادیں دکھائی جائیں گی",
"Memory": "میموری", "Memory": "میموری",
"Memory added successfully": "میموری کامیابی سے شامل کر دی گئی", "Memory added successfully": "میموری کامیابی سے شامل کر دی گئی",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "", "Model IDs": "",
"Model Name": "ماڈل نام", "Model Name": "ماڈل نام",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "ماڈل منتخب نہیں ہوا", "Model not selected": "ماڈل منتخب نہیں ہوا",
"Model Params": "ماڈل پیرامیٹرز", "Model Params": "ماڈل پیرامیٹرز",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "نام", "Name": "نام",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "", "Name your knowledge base": "",
"Native": "", "Native": "",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "کوئی تلاش کی درخواست نہیں بنائی گئی", "No search query generated": "کوئی تلاش کی درخواست نہیں بنائی گئی",
"No source available": "ماخذ دستیاب نہیں ہے", "No source available": "ماخذ دستیاب نہیں ہے",
"No users were found.": "", "No users were found.": "",
"No valves": "",
"No valves to update": "تازہ کاری کے لئے کوئی والو نہیں", "No valves to update": "تازہ کاری کے لئے کوئی والو نہیں",
"Node Ids": "",
"None": "کوئی نہیں", "None": "کوئی نہیں",
"Not factually correct": "حقیقت کے مطابق نہیں ہے", "Not factually correct": "حقیقت کے مطابق نہیں ہے",
"Not helpful": "مددگار نہیں ہے", "Not helpful": "مددگار نہیں ہے",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "تلاش کریں", "Search": "تلاش کریں",
"Search a model": "ماڈل تلاش کریں", "Search a model": "ماڈل تلاش کریں",
"Search all emojis": "",
"Search Base": "", "Search Base": "",
"Search Chats": "چیٹس تلاش کریں", "Search Chats": "چیٹس تلاش کریں",
"Search Collection": "مجموعہ تلاش کریں", "Search Collection": "مجموعہ تلاش کریں",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "ہدایات کے لیے readme.md دیکھیں", "See readme.md for instructions": "ہدایات کے لیے readme.md دیکھیں",
"See what's new": "نیا کیا ہے دیکھیں", "See what's new": "نیا کیا ہے دیکھیں",
"Seed": "بیج", "Seed": "بیج",
"Select": "",
"Select a base model": "ایک بنیادی ماڈل منتخب کریں", "Select a base model": "ایک بنیادی ماڈل منتخب کریں",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "ایک انجن منتخب کریں", "Select a engine": "ایک انجن منتخب کریں",
"Select a function": "ایک فنکشن منتخب کریں", "Select a function": "ایک فنکشن منتخب کریں",
"Select a group": "", "Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "ایک ماڈل منتخب کریں", "Select a model": "ایک ماڈل منتخب کریں",
"Select a model (optional)": "",
"Select a pipeline": "ایک پائپ لائن منتخب کریں", "Select a pipeline": "ایک پائپ لائن منتخب کریں",
"Select a pipeline url": "پائپ لائن یو آر ایل منتخب کریں", "Select a pipeline url": "پائپ لائن یو آر ایل منتخب کریں",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "ایک ٹول منتخب کریں", "Select a tool": "ایک ٹول منتخب کریں",
"Select a voice": "",
"Select an auth method": "", "Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "", "Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "انجن منتخب کریں", "Select Engine": "انجن منتخب کریں",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "علم منتخب کریں", "Select Knowledge": "علم منتخب کریں",
"Select only one model to call": "صرف ایک ماڈل کو کال کرنے کے لئے منتخب کریں", "Select only one model to call": "صرف ایک ماڈل کو کال کرنے کے لئے منتخب کریں",
"Selected model(s) do not support image inputs": "منتخب کردہ ماڈل(ز) تصویری ان پٹ کی حمایت نہیں کرتے", "Selected model(s) do not support image inputs": "منتخب کردہ ماڈل(ز) تصویری ان پٹ کی حمایت نہیں کرتے",
@ -1215,6 +1262,7 @@
"Serply API Key": "سرپلی API کی کلید", "Serply API Key": "سرپلی API کی کلید",
"Serpstack API Key": "سرپ اسٹیک اے پی آئی کلید", "Serpstack API Key": "سرپ اسٹیک اے پی آئی کلید",
"Server connection verified": "سرور کنکشن تصدیق شدہ ہے", "Server connection verified": "سرور کنکشن تصدیق شدہ ہے",
"Session": "",
"Set as default": "بطور ڈیفالٹ سیٹ کریں", "Set as default": "بطور ڈیفالٹ سیٹ کریں",
"Set CFG Scale": "سی ایف جی اسکیل مقرر کریں", "Set CFG Scale": "سی ایف جی اسکیل مقرر کریں",
"Set Default Model": "ڈیفالٹ ماڈل سیٹ کریں", "Set Default Model": "ڈیفالٹ ماڈل سیٹ کریں",
@ -1265,6 +1313,12 @@
"sk-1234": "", "sk-1234": "",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "ماخذ", "Source": "ماخذ",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "ذیلی عنوان (جیسے رومن سلطنت کے بارے میں)", "Subtitle (e.g. about the Roman Empire)": "ذیلی عنوان (جیسے رومن سلطنت کے بارے میں)",
"Success": "کامیابی", "Success": "کامیابی",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "کامیابی سے تازہ کاری ہو گئی", "Successfully updated.": "کامیابی سے تازہ کاری ہو گئی",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "تجویز کردہ", "Suggested": "تجویز کردہ",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "زیادہ سے زیادہ فائل سائز ایم بی میں اگر فائل سائز اس حد سے تجاوز کر جاتا ہے، تو فائل اپ لوڈ نہیں ہوگی", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "زیادہ سے زیادہ فائل سائز ایم بی میں اگر فائل سائز اس حد سے تجاوز کر جاتا ہے، تو فائل اپ لوڈ نہیں ہوگی",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "چیٹ میں ایک وقت میں استعمال ہونے والی فائلوں کی زیادہ سے زیادہ تعداد اگر فائلوں کی تعداد اس حد سے تجاوز کر جائے تو فائلیں اپلوڈ نہیں کی جائیں گی", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "چیٹ میں ایک وقت میں استعمال ہونے والی فائلوں کی زیادہ سے زیادہ تعداد اگر فائلوں کی تعداد اس حد سے تجاوز کر جائے تو فائلیں اپلوڈ نہیں کی جائیں گی",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "سکور کی قیمت کو 0.0 (0%) اور 1.0 (100%) کے درمیان ہونا چاہیے", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "سکور کی قیمت کو 0.0 (0%) اور 1.0 (100%) کے درمیان ہونا چاہیے",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "فائلیں اپ لوڈ کریں", "Upload Files": "فائلیں اپ لوڈ کریں",
"Upload Pipeline": "اپ لوڈ پائپ لائن", "Upload Pipeline": "اپ لوڈ پائپ لائن",
"Upload Progress": "اپ لوڈ کی پیش رفت", "Upload Progress": "اپ لوڈ کی پیش رفت",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "", "URL": "",
"URL is required": "",
"URL Mode": "یو آر ایل موڈ", "URL Mode": "یو آر ایل موڈ",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "پرامپٹ ان پٹ میں '#' استعمال کریں تاکہ اپنی معلومات کو لوڈ اور شامل کریں", "Use '#' in the prompt input to load and include your knowledge.": "پرامپٹ ان پٹ میں '#' استعمال کریں تاکہ اپنی معلومات کو لوڈ اور شامل کریں",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "تمام ماڈلز کے ساتھ ڈیفالٹ ارینا ماڈل استعمال کریں حسب ضرورت ماڈلز شامل کرنے کے لیے پلس بٹن پر کلک کریں", "Using the default arena model with all models. Click the plus button to add custom models.": "تمام ماڈلز کے ساتھ ڈیفالٹ ارینا ماڈل استعمال کریں حسب ضرورت ماڈلز شامل کرنے کے لیے پلس بٹن پر کلک کریں",
"Valid time units:": "درست وقت کی اکائیاں:", "Valid time units:": "درست وقت کی اکائیاں:",
"Validate certificate": "",
"Valves": "والو", "Valves": "والو",
"Valves updated": "والوز کو اپ ڈیٹ کر دیا گیا", "Valves updated": "والوز کو اپ ڈیٹ کر دیا گیا",
"Valves updated successfully": "والو کامیابی کے ساتھ اپ ڈیٹ ہو گئے", "Valves updated successfully": "والو کامیابی کے ساتھ اپ ڈیٹ ہو گئے",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "سرگوشی (مقامی)", "Whisper (Local)": "سرگوشی (مقامی)",
"Why?": "", "Why?": "",
"Widescreen Mode": "وائڈ اسکرین موڈ", "Widescreen Mode": "وائڈ اسکرین موڈ",
"Width": "",
"Won": "جیتا", "Won": "جیتا",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "ورک اسپیس", "Workspace": "ورک اسپیس",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} та яширин чизиқ", "{{COUNT}} hidden lines": "{{COUNT}} та яширин чизиқ",
"{{COUNT}} Replies": "{{COUNT}} та жавоб", "{{COUNT}} Replies": "{{COUNT}} та жавоб",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} нинг чатлари", "{{user}}'s Chats": "{{user}} нинг чатлари",
"{{webUIName}} Backend Required": "{{webUIName}} Баенд талаб қилинади", "{{webUIName}} Backend Required": "{{webUIName}} Баенд талаб қилинади",
"*Prompt node ID(s) are required for image generation": "*Расм яратиш учун тезкор тугун идентификаторлари талаб қилинади", "*Prompt node ID(s) are required for image generation": "*Расм яратиш учун тезкор тугун идентификаторлари талаб қилинади",
@ -29,6 +30,7 @@
"Account Activation Pending": "Ҳисобни фаоллаштириш кутилмоқда", "Account Activation Pending": "Ҳисобни фаоллаштириш кутилмоқда",
"Accurate information": "Аниқ маълумот", "Accurate information": "Аниқ маълумот",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Ҳаракатлар", "Actions": "Ҳаракатлар",
"Activate": "Фаоллаштириш", "Activate": "Фаоллаштириш",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Чат киритиш учун “/{{COMMAND}}” териб ушбу буйруқни фаоллаштиринг.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Чат киритиш учун “/{{COMMAND}}” териб ушбу буйруқни фаоллаштиринг.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "Ҳар доим билдиришнома овозини ижро этиш", "Always Play Notification Sound": "Ҳар доим билдиришнома овозини ижро этиш",
"Amazing": "Ажойиб", "Amazing": "Ажойиб",
"an assistant": "ёрдамчи", "an assistant": "ёрдамчи",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Таҳлил қилинган", "Analyzed": "Таҳлил қилинган",
"Analyzing...": "Таҳлил қилинмоқда...", "Analyzing...": "Таҳлил қилинмоқда...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Дастурий Илова Интерфейси(API) калитининг чекловлари", "API Key Endpoint Restrictions": "Дастурий Илова Интерфейси(API) калитининг чекловлари",
"API keys": "Дастурий Илова Интерфейси(API) калитлари", "API keys": "Дастурий Илова Интерфейси(API) калитлари",
"API Version": "Дастурий Илова Интерфейси(API) версияси", "API Version": "Дастурий Илова Интерфейси(API) версияси",
"API Version is required": "",
"Application DN": "Ilovaning noyob aniqlovchisi(DN)", "Application DN": "Ilovaning noyob aniqlovchisi(DN)",
"Application DN Password": "Ilovaning noyob aniqlovchisi(DN) paroli", "Application DN Password": "Ilovaning noyob aniqlovchisi(DN) paroli",
"applies to all users with the \"user\" role": "\"фойдаланувчи\" ролига эга барча фойдаланувчиларга тегишли", "applies to all users with the \"user\" role": "\"фойдаланувчи\" ролига эга барча фойдаланувчиларга тегишли",
@ -160,6 +164,7 @@
"Banners": "Баннерлар", "Banners": "Баннерлар",
"Base Model (From)": "Асосий модел (дан бошлаб)", "Base Model (From)": "Асосий модел (дан бошлаб)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "олдин", "before": "олдин",
"Being lazy": "Дангаса бўлиш", "Being lazy": "Дангаса бўлиш",
"Beta": "Бета", "Beta": "Бета",
@ -189,7 +194,9 @@
"Capture Audio": "Аудио ёзиб олиш", "Capture Audio": "Аудио ёзиб олиш",
"Certificate Path": "Сертификат йўли", "Certificate Path": "Сертификат йўли",
"Change Password": "Паролни ўзгартириш", "Change Password": "Паролни ўзгартириш",
"Channel deleted successfully": "",
"Channel Name": "Канал номи", "Channel Name": "Канал номи",
"Channel updated successfully": "",
"Channels": "Каналлар", "Channels": "Каналлар",
"Character": "Характер", "Character": "Характер",
"Character limit for autocomplete generation input": "Автоматик тўлдиришни яратиш учун белгилар чегараси", "Character limit for autocomplete generation input": "Автоматик тўлдиришни яратиш учун белгилар чегараси",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Коднинг бажарилиши", "Code execution": "Коднинг бажарилиши",
"Code Execution": "Коднинг бажарилиши", "Code Execution": "Коднинг бажарилиши",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI базавий манзил талаб қилинади.", "ComfyUI Base URL is required.": "ComfyUI базавий манзил талаб қилинади.",
"ComfyUI Workflow": "ComfyUI иш жараёни", "ComfyUI Workflow": "ComfyUI иш жараёни",
"ComfyUI Workflow Nodes": "ComfyUI иш оқими тугунлари", "ComfyUI Workflow Nodes": "ComfyUI иш оқими тугунлари",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Буйруқ", "Command": "Буйруқ",
"Comment": "", "Comment": "",
"Completions": "Тугаллашлар", "Completions": "Тугаллашлар",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Бир вақтнинг ўзида сўровлар", "Concurrent Requests": "Бир вақтнинг ўзида сўровлар",
"Config imported successfully": "",
"Configure": "Созланг", "Configure": "Созланг",
"Confirm": "Тасдиқланг", "Confirm": "Тасдиқланг",
"Confirm Password": "Паролни тасдиқланг", "Confirm Password": "Паролни тасдиқланг",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Datalab Marker API Key талаб қилинади.", "Datalab Marker API Key required.": "Datalab Marker API Key талаб қилинади.",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "декабр", "December": "декабр",
"Deepgram": "",
"Default": "Стандарт", "Default": "Стандарт",
"Default (Open AI)": "Стандарт (Open AI)", "Default (Open AI)": "Стандарт (Open AI)",
"Default (SentenceTransformers)": "Стандарт (SentenceTransformers)", "Default (SentenceTransformers)": "Стандарт (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Тўғридан-тўғри уланишлар", "Direct Connections": "Тўғридан-тўғри уланишлар",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Тўғридан-тўғри уланишлар фойдаланувчиларга ўзларининг OpenAIга мос келувчи API сўнгги нуқталарига уланиш имконини беради.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Тўғридан-тўғри уланишлар фойдаланувчиларга ўзларининг OpenAIга мос келувчи API сўнгги нуқталарига уланиш имконини беради.",
"Direct Tool Servers": "Тўғридан-тўғри асбоблар серверлари", "Direct Tool Servers": "Тўғридан-тўғри асбоблар серверлари",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "Расм чиқаришни ўчириб қўйинг", "Disable Image Extraction": "Расм чиқаришни ўчириб қўйинг",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "PDFдан тасвирни ажратиб олишни ўчириб қўйинг. Агар LLM дан фойдаланиш ёқилган бўлса, тасвирларга автоматик сарлавҳа қўйилади. Бирламчи параметрлар False.", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "PDFдан тасвирни ажратиб олишни ўчириб қўйинг. Агар LLM дан фойдаланиш ёқилган бўлса, тасвирларга автоматик сарлавҳа қўйилади. Бирламчи параметрлар False.",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Вергул билан ажратилган \"token:bias_value\" жуфтларини киритинг (мисол: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Вергул билан ажратилган \"token:bias_value\" жуфтларини киритинг (мисол: 5432:100, 413:-100)",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "Кутилаётган фойдаланувчи маълумотлари қопламаси учун таркибни киритинг. Сукут бўйича бўш қолдиринг.", "Enter content for the pending user info overlay. Leave empty for default.": "Кутилаётган фойдаланувчи маълумотлари қопламаси учун таркибни киритинг. Сукут бўйича бўш қолдиринг.",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "Datalab Marker API Key калитини киритинг", "Enter Datalab Marker API Key": "Datalab Marker API Key калитини киритинг",
"Enter description": "Тавсифни киритинг", "Enter description": "Тавсифни киритинг",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Github Raw УРЛ манзилини киритинг", "Enter Github Raw URL": "Github Raw УРЛ манзилини киритинг",
"Enter Google PSE API Key": "Google PSE АПИ калитини киритинг", "Enter Google PSE API Key": "Google PSE АПИ калитини киритинг",
"Enter Google PSE Engine Id": "Google PSE Энгине идентификаторини киритинг", "Enter Google PSE Engine Id": "Google PSE Энгине идентификаторини киритинг",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Расм ҳажмини киритинг (масалан, 512х512)", "Enter Image Size (e.g. 512x512)": "Расм ҳажмини киритинг (масалан, 512х512)",
"Enter Jina API Key": "Jina АПИ калитини киритинг", "Enter Jina API Key": "Jina АПИ калитини киритинг",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Топ К Реранкер-га киринг", "Enter Top K Reranker": "Топ К Реранкер-га киринг",
"Enter URL (e.g. http://127.0.0.1:7860/)": "УРЛ манзилини киритинг (масалан, ҳттп://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "УРЛ манзилини киритинг (масалан, ҳттп://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "УРЛ манзилини киритинг (масалан, ҳттп://лоcалҳост:11434)", "Enter URL (e.g. http://localhost:11434)": "УРЛ манзилини киритинг (масалан, ҳттп://лоcалҳост:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "Yacy паролини киритинг", "Enter Yacy Password": "Yacy паролини киритинг",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Yacy УРЛ манзилини киритинг (масалан, ҳттп://яcй.эхампле.cом:8090)", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Yacy УРЛ манзилини киритинг (масалан, ҳттп://яcй.эхампле.cом:8090)",
"Enter Yacy Username": "Yacy фойдаланувчи номини киритинг", "Enter Yacy Username": "Yacy фойдаланувчи номини киритинг",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Вебҳук УРЛ манзилингизни киритинг", "Enter your webhook URL": "Вебҳук УРЛ манзилингизни киритинг",
"Error": "Хато", "Error": "Хато",
"ERROR": "ХАТО", "ERROR": "ХАТО",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Гоогле Дриве-га киришда хатолик юз берди: {{error}}", "Error accessing Google Drive: {{error}}": "Гоогле Дриве-га киришда хатолик юз берди: {{error}}",
"Error accessing media devices.": "Медиа қурилмаларига киришда хатолик юз берди.", "Error accessing media devices.": "Медиа қурилмаларига киришда хатолик юз берди.",
"Error starting recording.": "Ёзишни бошлашда хатолик юз берди.", "Error starting recording.": "Ёзишни бошлашда хатолик юз берди.",
"Error unloading model: {{error}}": "Моделни юклашда хатолик юз берди: {{error}}", "Error unloading model: {{error}}": "Моделни юклашда хатолик юз берди: {{error}}",
"Error uploading file: {{error}}": "Файлни юклашда хатолик юз берди: {{error}}", "Error uploading file: {{error}}": "Файлни юклашда хатолик юз берди: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Баҳолар", "Evaluations": "Баҳолар",
"Everyone": "", "Everyone": "",
"Exa API Key": "Exa АПИ калити", "Exa API Key": "Exa АПИ калити",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Ҳаптик фикр-мулоҳазалар", "Haptic Feedback": "Ҳаптик фикр-мулоҳазалар",
"Height": "",
"Hello, {{name}}": "Салом, {{name}}", "Hello, {{name}}": "Салом, {{name}}",
"Help": "Ёрдам", "Help": "Ёрдам",
"Help us create the best community leaderboard by sharing your feedback history!": "Фикр-мулоҳазаларингиз тарихини баҳам кўриш орқали энг яхши ҳамжамият етакчилари жадвалини яратишга ёрдам беринг!", "Help us create the best community leaderboard by sharing your feedback history!": "Фикр-мулоҳазаларингиз тарихини баҳам кўриш орқали энг яхши ҳамжамият етакчилари жадвалини яратишга ёрдам беринг!",
@ -733,6 +753,7 @@
"Hide": "Яшириш", "Hide": "Яшириш",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "Моделни яшириш", "Hide Model": "Моделни яшириш",
"High": "",
"High Contrast Mode": "Юқори контраст режими", "High Contrast Mode": "Юқори контраст режими",
"Home": "Уй", "Home": "Уй",
"Host": "Хост", "Host": "Хост",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Комплекс қайта ишлаш учун бутун таркибни контекст сифатида киритинг, бу мураккаб сўровлар учун тавсия этилади.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Комплекс қайта ишлаш учун бутун таркибни контекст сифатида киритинг, бу мураккаб сўровлар учун тавсия этилади.",
"Input": "", "Input": "",
"Input commands": "Кириш буйруқлари", "Input commands": "Кириш буйруқлари",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "Файл мазмуни нотўғри", "Invalid file content": "Файл мазмуни нотўғри",
"Invalid file format.": "Файл формати нотўғри.", "Invalid file format.": "Файл формати нотўғри.",
"Invalid JSON file": "ЖСОН файли яроқсиз", "Invalid JSON file": "ЖСОН файли яроқсиз",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Тег нотўғри", "Invalid Tag": "Тег нотўғри",
"is typing...": "ёзмоқда...", "is typing...": "ёзмоқда...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "Калит", "Key": "Калит",
"Key is required": "",
"Keyboard shortcuts": "Клавиатура ёрлиқлари", "Keyboard shortcuts": "Клавиатура ёрлиқлари",
"Knowledge": "Билим", "Knowledge": "Билим",
"Knowledge Access": "Билимга кириш", "Knowledge Access": "Билимга кириш",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Билим муваффақиятли яратилди.", "Knowledge created successfully.": "Билим муваффақиятли яратилди.",
"Knowledge deleted successfully.": "Маълумотлар муваффақиятли ўчирилди.", "Knowledge deleted successfully.": "Маълумотлар муваффақиятли ўчирилди.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Билимларни оммавий алмашиш", "Knowledge Public Sharing": "Билимларни оммавий алмашиш",
"Knowledge reset successfully.": "Маълумотлар қайта тикланди.", "Knowledge reset successfully.": "Маълумотлар қайта тикланди.",
"Knowledge updated successfully": "Билим муваффақиятли янгиланди", "Knowledge updated successfully": "Билим муваффақиятли янгиланди",
@ -852,6 +878,7 @@
"Local Task Model": "Маҳаллий вазифа модели", "Local Task Model": "Маҳаллий вазифа модели",
"Location access not allowed": "Жойлашувга рухсат берилмаган", "Location access not allowed": "Жойлашувга рухсат берилмаган",
"Lost": "Йўқотилган", "Lost": "Йўқотилган",
"Low": "",
"LTR": "ЛТР", "LTR": "ЛТР",
"Made by Open WebUI Community": "Опен WебУИ ҳамжамияти томонидан яратилган", "Made by Open WebUI Community": "Опен WебУИ ҳамжамияти томонидан яратилган",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "Максимал юклаш ҳажми", "Max Upload Size": "Максимал юклаш ҳажми",
"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": "май",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "ЛЛМлар кириши мумкин бўлган хотиралар бу эрда кўрсатилади.", "Memories accessible by LLMs will be shown here.": "ЛЛМлар кириши мумкин бўлган хотиралар бу эрда кўрсатилади.",
"Memory": "Хотира", "Memory": "Хотира",
"Memory added successfully": "Хотира муваффақиятли қўшилди", "Memory added successfully": "Хотира муваффақиятли қўшилди",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "Модел идентификаторлари", "Model IDs": "Модел идентификаторлари",
"Model Name": "Модел номи", "Model Name": "Модел номи",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Модел танланмаган", "Model not selected": "Модел танланмаган",
"Model Params": "Модел параметрлари", "Model Params": "Модел параметрлари",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Исм", "Name": "Исм",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Билимлар базасини номланг", "Name your knowledge base": "Билимлар базасини номланг",
"Native": "Маҳаллий", "Native": "Маҳаллий",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Ҳеч қандай қидирув сўрови яратилмади", "No search query generated": "Ҳеч қандай қидирув сўрови яратилмади",
"No source available": "Манба мавжуд эмас", "No source available": "Манба мавжуд эмас",
"No users were found.": "Ҳеч қандай фойдаланувчи топилмади.", "No users were found.": "Ҳеч қандай фойдаланувчи топилмади.",
"No valves": "",
"No valves to update": "Янгилаш учун клапанлар йўқ", "No valves to update": "Янгилаш учун клапанлар йўқ",
"Node Ids": "",
"None": "Йўқ", "None": "Йўқ",
"Not factually correct": "Аслида тўғри эмас", "Not factually correct": "Аслида тўғри эмас",
"Not helpful": "Фойдали эмас", "Not helpful": "Фойдали эмас",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Филиални ўзгартириш бўйича айлантиринг", "Scroll On Branch Change": "Филиални ўзгартириш бўйича айлантиринг",
"Search": "Қидирув", "Search": "Қидирув",
"Search a model": "Моделни қидиринг", "Search a model": "Моделни қидиринг",
"Search all emojis": "",
"Search Base": "Қидирув базаси", "Search Base": "Қидирув базаси",
"Search Chats": "Чатларни қидириш", "Search Chats": "Чатларни қидириш",
"Search Collection": "Тўпламни қидириш", "Search Collection": "Тўпламни қидириш",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Кўрсатмалар учун readme.md га қаранг", "See readme.md for instructions": "Кўрсатмалар учун readme.md га қаранг",
"See what's new": "Нима янгиликлар борлигини кўринг", "See what's new": "Нима янгиликлар борлигини кўринг",
"Seed": "Дастлабки маълумот", "Seed": "Дастлабки маълумот",
"Select": "",
"Select a base model": "Асосий моделни танланг", "Select a base model": "Асосий моделни танланг",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Двигателни танланг", "Select a engine": "Двигателни танланг",
"Select a function": "Функцияни танланг", "Select a function": "Функцияни танланг",
"Select a group": "Гуруҳни танланг", "Select a group": "Гуруҳни танланг",
"Select a language": "",
"Select a mode": "",
"Select a model": "Моделни танланг", "Select a model": "Моделни танланг",
"Select a model (optional)": "",
"Select a pipeline": "Қувурни танланг", "Select a pipeline": "Қувурни танланг",
"Select a pipeline url": "Қувур линиясининг УРЛ манзилини танланг", "Select a pipeline url": "Қувур линиясининг УРЛ манзилини танланг",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Асбобни танланг", "Select a tool": "Асбобни танланг",
"Select a voice": "",
"Select an auth method": "Аутентификация усулини танланг", "Select an auth method": "Аутентификация усулини танланг",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Оллама версиясини танланг", "Select an Ollama instance": "Оллама версиясини танланг",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "ДИшловчи тизимни танланг ", "Select Engine": "ДИшловчи тизимни танланг ",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Билим-ни танланг", "Select Knowledge": "Билим-ни танланг",
"Select only one model to call": "Қўнғироқ қилиш учун фақат битта моделни танланг", "Select only one model to call": "Қўнғироқ қилиш учун фақат битта моделни танланг",
"Selected model(s) do not support image inputs": "Танланган модел(лар) тасвир киритишни қўллаб-қувватламайди", "Selected model(s) do not support image inputs": "Танланган модел(лар) тасвир киритишни қўллаб-қувватламайди",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply АПИ калити", "Serply API Key": "Serply АПИ калити",
"Serpstack API Key": "Serpstack АПИ калити", "Serpstack API Key": "Serpstack АПИ калити",
"Server connection verified": "Сервер уланиши тасдиқланди", "Server connection verified": "Сервер уланиши тасдиқланди",
"Session": "",
"Set as default": "Стандарт сифатида ўрнатинг", "Set as default": "Стандарт сифатида ўрнатинг",
"Set CFG Scale": "CFG шкаласини ўрнатинг", "Set CFG Scale": "CFG шкаласини ўрнатинг",
"Set Default Model": "Стандарт моделни ўрнатинг", "Set Default Model": "Стандарт моделни ўрнатинг",
@ -1265,6 +1313,12 @@
"sk-1234": "ск-1234", "sk-1234": "ск-1234",
"Skip Cache": "Кешни ўтказиб юбориш", "Skip Cache": "Кешни ўтказиб юбориш",
"Skip the cache and re-run the inference. Defaults to False.": "Кешни ўтказиб юборинг ва хулосани қайта ишга туширинг. Бирламчи параметрлар Фалсе.", "Skip the cache and re-run the inference. Defaults to False.": "Кешни ўтказиб юборинг ва хулосани қайта ишга туширинг. Бирламчи параметрлар Фалсе.",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "Sougou Сеарч АПИ сИД", "Sougou Search API sID": "Sougou Сеарч АПИ сИД",
"Sougou Search API SK": "Sougou Сеарч АПИ СК", "Sougou Search API SK": "Sougou Сеарч АПИ СК",
"Source": "Манба", "Source": "Манба",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Услубий PDF экспорти", "Stylized PDF Export": "Услубий PDF экспорти",
"Subtitle (e.g. about the Roman Empire)": "Субтитр (масалан, Рим империяси ҳақида)", "Subtitle (e.g. about the Roman Empire)": "Субтитр (масалан, Рим империяси ҳақида)",
"Success": "Муваффақият", "Success": "Муваффақият",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Муваффақиятли янгиланди.", "Successfully updated.": "Муваффақиятли янгиланди.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Тавсия этилган", "Suggested": "Тавсия этилган",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Файлнинг максимал ҳажми МБ. Агар файл ҳажми ушбу чегарадан ошса, файл юкланмайди.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Файлнинг максимал ҳажми МБ. Агар файл ҳажми ушбу чегарадан ошса, файл юкланмайди.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Чатда бир вақтнинг ўзида ишлатилиши мумкин бўлган максимал файллар сони. Агар файллар сони ушбу чегарадан ошса, файллар юкланмайди.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Чатда бир вақтнинг ўзида ишлатилиши мумкин бўлган максимал файллар сони. Агар файллар сони ушбу чегарадан ошса, файллар юкланмайди.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Матн учун чиқиш формати. \"жсон\", \"маркдоwн\" ёки \"ҳтмл\" бўлиши мумкин. Бирламчи \"маркдоwн\" учун.", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Матн учун чиқиш формати. \"жсон\", \"маркдоwн\" ёки \"ҳтмл\" бўлиши мумкин. Бирламчи \"маркдоwн\" учун.",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Бал 0,0 (0%) ва 1,0 (100%) оралиғида бўлиши керак.", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Бал 0,0 (0%) ва 1,0 (100%) оралиғида бўлиши керак.",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Моделдаги ҳарорат. Ҳароратни ошириш моделни янада ижодий жавоб беришга мажбур қилади.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Моделдаги ҳарорат. Ҳароратни ошириш моделни янада ижодий жавоб беришга мажбур қилади.",
@ -1439,7 +1495,9 @@
"Upload Files": "Файлларни юклаш", "Upload Files": "Файлларни юклаш",
"Upload Pipeline": "Қувур линиясини юклаш", "Upload Pipeline": "Қувур линиясини юклаш",
"Upload Progress": "Юклаш жараёни", "Upload Progress": "Юклаш жараёни",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "УРЛ", "URL": "УРЛ",
"URL is required": "",
"URL Mode": "УРЛ режими", "URL Mode": "УРЛ режими",
"Usage": "Фойдаланиш", "Usage": "Фойдаланиш",
"Use '#' in the prompt input to load and include your knowledge.": "Ўз билимларингизни юклаш ва киритиш учун сўровномада \"#\" дан фойдаланинг.", "Use '#' in the prompt input to load and include your knowledge.": "Ўз билимларингизни юклаш ва киритиш учун сўровномада \"#\" дан фойдаланинг.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Барча моделлар билан стандарт арена моделидан фойдаланиш. Махсус моделларни қўшиш учун ортиқча тугмасини босинг.", "Using the default arena model with all models. Click the plus button to add custom models.": "Барча моделлар билан стандарт арена моделидан фойдаланиш. Махсус моделларни қўшиш учун ортиқча тугмасини босинг.",
"Valid time units:": "Яроқли вақт бирликлари:", "Valid time units:": "Яроқли вақт бирликлари:",
"Validate certificate": "",
"Valves": "Ёқиш/Ўчириш параметрлари", "Valves": "Ёқиш/Ўчириш параметрлари",
"Valves updated": "Ёқиш/Ўчириш параметрлари янгиланди", "Valves updated": "Ёқиш/Ўчириш параметрлари янгиланди",
"Valves updated successfully": "Ёқиш/Ўчириш параметрлари муваффақиятли янгиланди", "Valves updated successfully": "Ёқиш/Ўчириш параметрлари муваффақиятли янгиланди",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Шивирлаш (маҳаллий)", "Whisper (Local)": "Шивирлаш (маҳаллий)",
"Why?": "Нега?", "Why?": "Нега?",
"Widescreen Mode": "Кенг экран режими", "Widescreen Mode": "Кенг экран режими",
"Width": "",
"Won": "Ғалаба қозонди", "Won": "Ғалаба қозонди",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "top-k билан бирга ишлайди. Юқори қиймат (масалан, 0,95) матннинг хилма-хиллигига олиб келади, пастроқ қиймат эса (масалан, 0,5) кўпроқ диққатли ва консерватив матнни яратади.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "top-k билан бирга ишлайди. Юқори қиймат (масалан, 0,95) матннинг хилма-хиллигига олиб келади, пастроқ қиймат эса (масалан, 0,5) кўпроқ диққатли ва консерватив матнни яратади.",
"Workspace": "Иш майдони", "Workspace": "Иш майдони",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} dòng bị ẩn", "{{COUNT}} hidden lines": "{{COUNT}} dòng bị ẩn",
"{{COUNT}} Replies": "{{COUNT}} Trả lời", "{{COUNT}} Replies": "{{COUNT}} Trả lời",
"{{COUNT}} words": "", "{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Các cuộc trò chuyện của {{user}}", "{{user}}'s Chats": "Các cuộc trò chuyện của {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Yêu cầu Backend", "{{webUIName}} Backend Required": "{{webUIName}} Yêu cầu Backend",
"*Prompt node ID(s) are required for image generation": "*ID nút Prompt là bắt buộc để tạo ảnh", "*Prompt node ID(s) are required for image generation": "*ID nút Prompt là bắt buộc để tạo ảnh",
@ -29,6 +30,7 @@
"Account Activation Pending": "Tài khoản đang chờ kích hoạt", "Account Activation Pending": "Tài khoản đang chờ kích hoạt",
"Accurate information": "Thông tin chính xác", "Accurate information": "Thông tin chính xác",
"Action": "", "Action": "",
"Action not found": "",
"Actions": "Tác vụ", "Actions": "Tác vụ",
"Activate": "Kích hoạt", "Activate": "Kích hoạt",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Kích hoạt lệnh này bằng cách gõ \"/{{COMMAND}}\" vào ô nhập chat.", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Kích hoạt lệnh này bằng cách gõ \"/{{COMMAND}}\" vào ô nhập chat.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "", "Always Play Notification Sound": "",
"Amazing": "Tuyệt vời", "Amazing": "Tuyệt vời",
"an assistant": "trợ lý", "an assistant": "trợ lý",
"An error occurred while fetching the explanation": "",
"Analytics": "", "Analytics": "",
"Analyzed": "Đã phân tích", "Analyzed": "Đã phân tích",
"Analyzing...": "Đang phân tích...", "Analyzing...": "Đang phân tích...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Hạn chế Endpoint Khóa API", "API Key Endpoint Restrictions": "Hạn chế Endpoint Khóa API",
"API keys": "API Keys", "API keys": "API Keys",
"API Version": "", "API Version": "",
"API Version is required": "",
"Application DN": "DN Ứng dụng", "Application DN": "DN Ứng dụng",
"Application DN Password": "Mật khẩu DN Ứng dụng", "Application DN Password": "Mật khẩu DN Ứng dụng",
"applies to all users with the \"user\" role": "áp dụng cho tất cả người dùng có vai trò \"user\"", "applies to all users with the \"user\" role": "áp dụng cho tất cả người dùng có vai trò \"user\"",
@ -160,6 +164,7 @@
"Banners": "Biểu ngữ", "Banners": "Biểu ngữ",
"Base Model (From)": "Mô hình cơ sở (từ)", "Base Model (From)": "Mô hình cơ sở (từ)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
"Bearer": "",
"before": "trước", "before": "trước",
"Being lazy": "Lười biếng", "Being lazy": "Lười biếng",
"Beta": "Beta", "Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "", "Capture Audio": "",
"Certificate Path": "Đường dẫn Chứng chỉ", "Certificate Path": "Đường dẫn Chứng chỉ",
"Change Password": "Đổi Mật khẩu", "Change Password": "Đổi Mật khẩu",
"Channel deleted successfully": "",
"Channel Name": "Tên Kênh", "Channel Name": "Tên Kênh",
"Channel updated successfully": "",
"Channels": "Kênh", "Channels": "Kênh",
"Character": "Nhân vật", "Character": "Nhân vật",
"Character limit for autocomplete generation input": "Giới hạn ký tự cho đầu vào tạo tự động hoàn thành", "Character limit for autocomplete generation input": "Giới hạn ký tự cho đầu vào tạo tự động hoàn thành",
@ -238,6 +245,7 @@
"Close modal": "", "Close modal": "",
"Close settings modal": "", "Close settings modal": "",
"Close Sidebar": "", "Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "", "Code Block": "",
"Code execution": "Thực thi mã", "Code execution": "Thực thi mã",
"Code Execution": "Thực thi Mã", "Code Execution": "Thực thi Mã",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "Base URL của ComfyUI là bắt buộc.", "ComfyUI Base URL is required.": "Base URL của ComfyUI là bắt buộc.",
"ComfyUI Workflow": "Quy trình làm việc ComfyUI", "ComfyUI Workflow": "Quy trình làm việc ComfyUI",
"ComfyUI Workflow Nodes": "Các nút Quy trình làm việc ComfyUI", "ComfyUI Workflow Nodes": "Các nút Quy trình làm việc ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Lệnh", "Command": "Lệnh",
"Comment": "", "Comment": "",
"Completions": "Hoàn thành", "Completions": "Hoàn thành",
"Compress Images in Channels": "", "Compress Images in Channels": "",
"Concurrent Requests": "Các truy vấn đồng thời", "Concurrent Requests": "Các truy vấn đồng thời",
"Config imported successfully": "",
"Configure": "Cấu hình", "Configure": "Cấu hình",
"Confirm": "Xác nhận", "Confirm": "Xác nhận",
"Confirm Password": "Xác nhận Mật khẩu", "Confirm Password": "Xác nhận Mật khẩu",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "", "Datalab Marker API Key required.": "",
"DD/MM/YYYY": "", "DD/MM/YYYY": "",
"December": "Tháng 12", "December": "Tháng 12",
"Deepgram": "",
"Default": "Mặc định", "Default": "Mặc định",
"Default (Open AI)": "Mặc định (Open AI)", "Default (Open AI)": "Mặc định (Open AI)",
"Default (SentenceTransformers)": "Mặc định (SentenceTransformers)", "Default (SentenceTransformers)": "Mặc định (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Kết nối Trực tiếp", "Direct Connections": "Kết nối Trực tiếp",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Kết nối Trực tiếp cho phép người dùng kết nối với các điểm cuối API tương thích OpenAI của riêng họ.", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Kết nối Trực tiếp cho phép người dùng kết nối với các điểm cuối API tương thích OpenAI của riêng họ.",
"Direct Tool Servers": "Máy chủ Công cụ Trực tiếp", "Direct Tool Servers": "Máy chủ Công cụ Trực tiếp",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "", "Disable Code Interpreter": "",
"Disable Image Extraction": "", "Disable Image Extraction": "",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Nhập các cặp \"token:giá_trị_bias\" được phân tách bằng dấu phẩy (ví dụ: 5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Nhập các cặp \"token:giá_trị_bias\" được phân tách bằng dấu phẩy (ví dụ: 5432:100, 413:-100)",
"Enter Config in JSON format": "", "Enter Config in JSON format": "",
"Enter content for the pending user info overlay. Leave empty for default.": "", "Enter content for the pending user info overlay. Leave empty for default.": "",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "", "Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "", "Enter Datalab Marker API Key": "",
"Enter description": "Nhập mô tả", "Enter description": "Nhập mô tả",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Nhập URL cho Github Raw", "Enter Github Raw URL": "Nhập URL cho Github Raw",
"Enter Google PSE API Key": "Nhập Google PSE API Key", "Enter Google PSE API Key": "Nhập Google PSE API Key",
"Enter Google PSE Engine Id": "Nhập Google PSE Engine Id", "Enter Google PSE Engine Id": "Nhập Google PSE Engine Id",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Nhập Kích thước ảnh (vd: 512x512)", "Enter Image Size (e.g. 512x512)": "Nhập Kích thước ảnh (vd: 512x512)",
"Enter Jina API Key": "Nhập Khóa API Jina", "Enter Jina API Key": "Nhập Khóa API Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "Nhập Top K Reranker", "Enter Top K Reranker": "Nhập Top K Reranker",
"Enter URL (e.g. http://127.0.0.1:7860/)": "Nhập URL (vd: http://127.0.0.1:7860/)", "Enter URL (e.g. http://127.0.0.1:7860/)": "Nhập URL (vd: http://127.0.0.1:7860/)",
"Enter URL (e.g. http://localhost:11434)": "Nhập URL (vd: http://localhost:11434)", "Enter URL (e.g. http://localhost:11434)": "Nhập URL (vd: http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "", "Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "", "Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Nhập URL webhook của bạn", "Enter your webhook URL": "Nhập URL webhook của bạn",
"Error": "Lỗi", "Error": "Lỗi",
"ERROR": "LỖI", "ERROR": "LỖI",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Lỗi truy cập Google Drive: {{error}}", "Error accessing Google Drive: {{error}}": "Lỗi truy cập Google Drive: {{error}}",
"Error accessing media devices.": "", "Error accessing media devices.": "",
"Error starting recording.": "", "Error starting recording.": "",
"Error unloading model: {{error}}": "", "Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "Lỗi tải lên tệp: {{error}}", "Error uploading file: {{error}}": "Lỗi tải lên tệp: {{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "Đánh giá", "Evaluations": "Đánh giá",
"Everyone": "", "Everyone": "",
"Exa API Key": "Khóa API Exa", "Exa API Key": "Khóa API Exa",
@ -725,6 +744,7 @@
"H2": "", "H2": "",
"H3": "", "H3": "",
"Haptic Feedback": "Phản hồi xúc giác", "Haptic Feedback": "Phản hồi xúc giác",
"Height": "",
"Hello, {{name}}": "Xin chào {{name}}", "Hello, {{name}}": "Xin chào {{name}}",
"Help": "Trợ giúp", "Help": "Trợ giúp",
"Help us create the best community leaderboard by sharing your feedback history!": "Giúp chúng tôi tạo bảng xếp hạng cộng đồng tốt nhất bằng cách chia sẻ lịch sử phản hồi của bạn!", "Help us create the best community leaderboard by sharing your feedback history!": "Giúp chúng tôi tạo bảng xếp hạng cộng đồng tốt nhất bằng cách chia sẻ lịch sử phản hồi của bạn!",
@ -733,6 +753,7 @@
"Hide": "Ẩn", "Hide": "Ẩn",
"Hide from Sidebar": "", "Hide from Sidebar": "",
"Hide Model": "Ẩn Mô hình", "Hide Model": "Ẩn Mô hình",
"High": "",
"High Contrast Mode": "", "High Contrast Mode": "",
"Home": "Trang chủ", "Home": "Trang chủ",
"Host": "Host", "Host": "Host",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Đưa toàn bộ nội dung vào làm ngữ cảnh để xử lý toàn diện, điều này được khuyến nghị cho các truy vấn phức tạp.", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Đưa toàn bộ nội dung vào làm ngữ cảnh để xử lý toàn diện, điều này được khuyến nghị cho các truy vấn phức tạp.",
"Input": "", "Input": "",
"Input commands": "Nhập các câu lệnh", "Input commands": "Nhập các câu lệnh",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "", "Input Variables": "",
"Insert": "", "Insert": "",
"Insert Follow-Up Prompt to Input": "", "Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "", "Invalid file content": "",
"Invalid file format.": "Định dạng tệp không hợp lệ.", "Invalid file format.": "Định dạng tệp không hợp lệ.",
"Invalid JSON file": "", "Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "", "Invalid JSON format in Additional Config": "",
"Invalid Tag": "Tag không hợp lệ", "Invalid Tag": "Tag không hợp lệ",
"is typing...": "đang gõ...", "is typing...": "đang gõ...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "", "Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "", "Keep in Sidebar": "",
"Key": "Khóa", "Key": "Khóa",
"Key is required": "",
"Keyboard shortcuts": "Phím tắt", "Keyboard shortcuts": "Phím tắt",
"Knowledge": "Kiến thức", "Knowledge": "Kiến thức",
"Knowledge Access": "Truy cập Kiến thức", "Knowledge Access": "Truy cập Kiến thức",
"Knowledge Base": "", "Knowledge Base": "",
"Knowledge created successfully.": "Đã tạo kiến thức thành công.", "Knowledge created successfully.": "Đã tạo kiến thức thành công.",
"Knowledge deleted successfully.": "Đã xóa kiến thức thành công.", "Knowledge deleted successfully.": "Đã xóa kiến thức thành công.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Chia sẻ Công khai Kiến thức", "Knowledge Public Sharing": "Chia sẻ Công khai Kiến thức",
"Knowledge reset successfully.": "Đã đặt lại kiến thức thành công.", "Knowledge reset successfully.": "Đã đặt lại kiến thức thành công.",
"Knowledge updated successfully": "Đã cập nhật kiến thức thành công", "Knowledge updated successfully": "Đã cập nhật kiến thức thành công",
@ -852,6 +878,7 @@
"Local Task Model": "", "Local Task Model": "",
"Location access not allowed": "Không cho phép truy cập vị trí", "Location access not allowed": "Không cho phép truy cập vị trí",
"Lost": "Thua", "Lost": "Thua",
"Low": "",
"LTR": "LTR", "LTR": "LTR",
"Made by Open WebUI Community": "Được tạo bởi Cộng đồng OpenWebUI", "Made by Open WebUI Community": "Được tạo bởi Cộng đồng OpenWebUI",
"Make password visible in the user interface": "", "Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "Kích thước Tải lên Tối đa", "Max Upload Size": "Kích thước Tải lên Tối đa",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Tối đa 3 mô hình có thể được tải xuống cùng lúc. Vui lòng thử lại sau.", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Tối đa 3 mô hình có thể được tải xuống cùng lúc. Vui lòng thử lại sau.",
"May": "Tháng 5", "May": "Tháng 5",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Memory có thể truy cập bởi LLMs sẽ hiển thị ở đây.", "Memories accessible by LLMs will be shown here.": "Memory có thể truy cập bởi LLMs sẽ hiển thị ở đây.",
"Memory": "Memory", "Memory": "Memory",
"Memory added successfully": "Memory đã được thêm thành công", "Memory added successfully": "Memory đã được thêm thành công",
@ -908,6 +936,7 @@
"Model ID is required.": "", "Model ID is required.": "",
"Model IDs": "Các ID Mô hình", "Model IDs": "Các ID Mô hình",
"Model Name": "Tên Mô hình", "Model Name": "Tên Mô hình",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "", "Model Name is required.": "",
"Model not selected": "Chưa chọn Mô hình", "Model not selected": "Chưa chọn Mô hình",
"Model Params": "Mô hình Params", "Model Params": "Mô hình Params",
@ -926,6 +955,7 @@
"More Concise": "", "More Concise": "",
"More Options": "", "More Options": "",
"Name": "Tên", "Name": "Tên",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Đặt tên cho cơ sở kiến thức của bạn", "Name your knowledge base": "Đặt tên cho cơ sở kiến thức của bạn",
"Native": "Gốc", "Native": "Gốc",
"New Button": "", "New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Không có truy vấn tìm kiếm nào được tạo ra", "No search query generated": "Không có truy vấn tìm kiếm nào được tạo ra",
"No source available": "Không có nguồn", "No source available": "Không có nguồn",
"No users were found.": "Không tìm thấy người dùng nào.", "No users were found.": "Không tìm thấy người dùng nào.",
"No valves": "",
"No valves to update": "Chưa có valves nào được cập nhật", "No valves to update": "Chưa có valves nào được cập nhật",
"Node Ids": "",
"None": "Không ai", "None": "Không ai",
"Not factually correct": "Không chính xác so với thực tế", "Not factually correct": "Không chính xác so với thực tế",
"Not helpful": "Không hữu ích", "Not helpful": "Không hữu ích",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "", "Scroll On Branch Change": "",
"Search": "Tìm kiếm", "Search": "Tìm kiếm",
"Search a model": "Tìm model", "Search a model": "Tìm model",
"Search all emojis": "",
"Search Base": "Cơ sở Tìm kiếm", "Search Base": "Cơ sở Tìm kiếm",
"Search Chats": "Tìm kiếm các cuộc Chat", "Search Chats": "Tìm kiếm các cuộc Chat",
"Search Collection": "Tìm kiếm Bộ sưu tập", "Search Collection": "Tìm kiếm Bộ sưu tập",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Xem readme.md để biết hướng dẫn", "See readme.md for instructions": "Xem readme.md để biết hướng dẫn",
"See what's new": "Xem những cập nhật mới", "See what's new": "Xem những cập nhật mới",
"Seed": "Seed", "Seed": "Seed",
"Select": "",
"Select a base model": "Chọn một base model", "Select a base model": "Chọn một base model",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "", "Select a conversation to preview": "",
"Select a engine": "Chọn dịch vụ", "Select a engine": "Chọn dịch vụ",
"Select a function": "Chọn function", "Select a function": "Chọn function",
"Select a group": "Chọn một nhóm", "Select a group": "Chọn một nhóm",
"Select a language": "",
"Select a mode": "",
"Select a model": "Chọn mô hình", "Select a model": "Chọn mô hình",
"Select a model (optional)": "",
"Select a pipeline": "Chọn một quy trình", "Select a pipeline": "Chọn một quy trình",
"Select a pipeline url": "Chọn url quy trình", "Select a pipeline url": "Chọn url quy trình",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "Chọn tool", "Select a tool": "Chọn tool",
"Select a voice": "",
"Select an auth method": "Chọn một phương thức xác thực", "Select an auth method": "Chọn một phương thức xác thực",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Chọn một phiên bản Ollama", "Select an Ollama instance": "Chọn một phiên bản Ollama",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Chọn Engine", "Select Engine": "Chọn Engine",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Chọn Kiến thức", "Select Knowledge": "Chọn Kiến thức",
"Select only one model to call": "Chọn model để gọi", "Select only one model to call": "Chọn model để gọi",
"Selected model(s) do not support image inputs": "Model được lựa chọn không hỗ trợ đầu vào là hình ảnh", "Selected model(s) do not support image inputs": "Model được lựa chọn không hỗ trợ đầu vào là hình ảnh",
@ -1215,6 +1262,7 @@
"Serply API Key": "Khóa API Serply", "Serply API Key": "Khóa API Serply",
"Serpstack API Key": "Khóa API Serpstack", "Serpstack API Key": "Khóa API Serpstack",
"Server connection verified": "Kết nối máy chủ đã được xác minh", "Server connection verified": "Kết nối máy chủ đã được xác minh",
"Session": "",
"Set as default": "Đặt làm mặc định", "Set as default": "Đặt làm mặc định",
"Set CFG Scale": "Đặt Thang CFG", "Set CFG Scale": "Đặt Thang CFG",
"Set Default Model": "Đặt Mô hình Mặc định", "Set Default Model": "Đặt Mô hình Mặc định",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "", "Skip Cache": "",
"Skip the cache and re-run the inference. Defaults to False.": "", "Skip the cache and re-run the inference. Defaults to False.": "",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "", "Sougou Search API sID": "",
"Sougou Search API SK": "", "Sougou Search API SK": "",
"Source": "Nguồn", "Source": "Nguồn",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "", "Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Phụ đề (ví dụ: về Đế chế La Mã)", "Subtitle (e.g. about the Roman Empire)": "Phụ đề (ví dụ: về Đế chế La Mã)",
"Success": "Thành công", "Success": "Thành công",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Đã cập nhật thành công.", "Successfully updated.": "Đã cập nhật thành công.",
"Suggest a change": "", "Suggest a change": "",
"Suggested": "Gợi ý một số mẫu prompt", "Suggested": "Gợi ý một số mẫu prompt",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Kích thước tệp tối đa tính bằng MB. Nếu kích thước tệp vượt quá giới hạn này, tệp sẽ không được tải lên.", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Kích thước tệp tối đa tính bằng MB. Nếu kích thước tệp vượt quá giới hạn này, tệp sẽ không được tải lên.",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Số lượng tệp tối đa có thể được sử dụng cùng một lúc trong cuộc trò chuyện. Nếu số lượng tệp vượt quá giới hạn này, các tệp sẽ không được tải lên.", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Số lượng tệp tối đa có thể được sử dụng cùng một lúc trong cuộc trò chuyện. Nếu số lượng tệp vượt quá giới hạn này, các tệp sẽ không được tải lên.",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Điểm (score) phải có giá trị từ 0,0 (0%) đến 1,0 (100%).", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Điểm (score) phải có giá trị từ 0,0 (0%) đến 1,0 (100%).",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Nhiệt độ của mô hình. Tăng nhiệt độ sẽ làm cho mô hình trả lời sáng tạo hơn.", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Nhiệt độ của mô hình. Tăng nhiệt độ sẽ làm cho mô hình trả lời sáng tạo hơn.",
@ -1439,7 +1495,9 @@
"Upload Files": "Tải tệp lên máy chủ", "Upload Files": "Tải tệp lên máy chủ",
"Upload Pipeline": "Tải lên Pipeline", "Upload Pipeline": "Tải lên Pipeline",
"Upload Progress": "Tiến trình tải tệp lên hệ thống", "Upload Progress": "Tiến trình tải tệp lên hệ thống",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "Chế độ URL", "URL Mode": "Chế độ URL",
"Usage": "", "Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "Sử dụng '#' trong ô nhập prompt để tải và bao gồm kiến thức của bạn.", "Use '#' in the prompt input to load and include your knowledge.": "Sử dụng '#' trong ô nhập prompt để tải và bao gồm kiến thức của bạn.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "", "Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "Sử dụng mô hình arena mặc định với tất cả các mô hình. Nhấp vào nút dấu cộng để thêm các mô hình tùy chỉnh.", "Using the default arena model with all models. Click the plus button to add custom models.": "Sử dụng mô hình arena mặc định với tất cả các mô hình. Nhấp vào nút dấu cộng để thêm các mô hình tùy chỉnh.",
"Valid time units:": "Đơn vị thời gian hợp lệ:", "Valid time units:": "Đơn vị thời gian hợp lệ:",
"Validate certificate": "",
"Valves": "Valves", "Valves": "Valves",
"Valves updated": "Đã cập nhật Valves", "Valves updated": "Đã cập nhật Valves",
"Valves updated successfully": "Đã cập nhật Valves thành công", "Valves updated successfully": "Đã cập nhật Valves thành công",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Cục bộ)", "Whisper (Local)": "Whisper (Cục bộ)",
"Why?": "Tại sao?", "Why?": "Tại sao?",
"Widescreen Mode": "Chế độ màn hình rộng", "Widescreen Mode": "Chế độ màn hình rộng",
"Width": "",
"Won": "Thắng", "Won": "Thắng",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Hoạt động cùng với top-k. Giá trị cao hơn (ví dụ: 0.95) sẽ dẫn đến văn bản đa dạng hơn, trong khi giá trị thấp hơn (ví dụ: 0.5) sẽ tạo ra văn bản tập trung và thận trọng hơn.", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Hoạt động cùng với top-k. Giá trị cao hơn (ví dụ: 0.95) sẽ dẫn đến văn bản đa dạng hơn, trong khi giá trị thấp hơn (ví dụ: 0.5) sẽ tạo ra văn bản tập trung và thận trọng hơn.",
"Workspace": "Không gian làm việc", "Workspace": "Không gian làm việc",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} 行被隐藏", "{{COUNT}} hidden lines": "{{COUNT}} 行被隐藏",
"{{COUNT}} Replies": "{{COUNT}} 条回复", "{{COUNT}} Replies": "{{COUNT}} 条回复",
"{{COUNT}} words": "{{COUNT}} 个词", "{{COUNT}} words": "{{COUNT}} 个词",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} 的对话记录", "{{user}}'s Chats": "{{user}} 的对话记录",
"{{webUIName}} Backend Required": "{{webUIName}} 需要后端服务", "{{webUIName}} Backend Required": "{{webUIName}} 需要后端服务",
"*Prompt node ID(s) are required for image generation": "*图片生成需要 Prompt node ID", "*Prompt node ID(s) are required for image generation": "*图片生成需要 Prompt node ID",
@ -29,6 +30,7 @@
"Account Activation Pending": "账号待激活", "Account Activation Pending": "账号待激活",
"Accurate information": "信息准确", "Accurate information": "信息准确",
"Action": "操作", "Action": "操作",
"Action not found": "",
"Actions": "操作", "Actions": "操作",
"Activate": "激活", "Activate": "激活",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "在对话框中输入 \"/{{COMMAND}}\" 激活此命令", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "在对话框中输入 \"/{{COMMAND}}\" 激活此命令",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "始终播放通知声音", "Always Play Notification Sound": "始终播放通知声音",
"Amazing": "很棒", "Amazing": "很棒",
"an assistant": "一个助手", "an assistant": "一个助手",
"An error occurred while fetching the explanation": "",
"Analytics": "分析", "Analytics": "分析",
"Analyzed": "已分析", "Analyzed": "已分析",
"Analyzing...": "正在分析...", "Analyzing...": "正在分析...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API 密钥端点限制", "API Key Endpoint Restrictions": "API 密钥端点限制",
"API keys": "API 密钥", "API keys": "API 密钥",
"API Version": "API 版本", "API Version": "API 版本",
"API Version is required": "",
"Application DN": "Application DN", "Application DN": "Application DN",
"Application DN Password": "Application DN 密码", "Application DN Password": "Application DN 密码",
"applies to all users with the \"user\" role": "用于所有具有 “用户” 角色的用户", "applies to all users with the \"user\" role": "用于所有具有 “用户” 角色的用户",
@ -160,6 +164,7 @@
"Banners": "公告横幅", "Banners": "公告横幅",
"Base Model (From)": "基础模型(来自)", "Base Model (From)": "基础模型(来自)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "基础模型列表缓存仅在启动或保存设置时获取基础模型从而加快访问速度,但可能不会显示最近的基础模型更改。", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "基础模型列表缓存仅在启动或保存设置时获取基础模型从而加快访问速度,但可能不会显示最近的基础模型更改。",
"Bearer": "",
"before": "之前", "before": "之前",
"Being lazy": "回答不完整或敷衍了事", "Being lazy": "回答不完整或敷衍了事",
"Beta": "Beta", "Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "录制音频", "Capture Audio": "录制音频",
"Certificate Path": "证书路径", "Certificate Path": "证书路径",
"Change Password": "更改密码", "Change Password": "更改密码",
"Channel deleted successfully": "",
"Channel Name": "频道名称", "Channel Name": "频道名称",
"Channel updated successfully": "",
"Channels": "频道", "Channels": "频道",
"Character": "字符", "Character": "字符",
"Character limit for autocomplete generation input": "输入框内容自动补全输入的字符限制", "Character limit for autocomplete generation input": "输入框内容自动补全输入的字符限制",
@ -238,6 +245,7 @@
"Close modal": "关闭弹窗", "Close modal": "关闭弹窗",
"Close settings modal": "关闭设置弹窗", "Close settings modal": "关闭设置弹窗",
"Close Sidebar": "收起侧边栏", "Close Sidebar": "收起侧边栏",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "代码块", "Code Block": "代码块",
"Code execution": "代码执行", "Code execution": "代码执行",
"Code Execution": "代码执行", "Code Execution": "代码执行",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "需要 ComfyUI 基础 URL", "ComfyUI Base URL is required.": "需要 ComfyUI 基础 URL",
"ComfyUI Workflow": "ComfyUI 工作流", "ComfyUI Workflow": "ComfyUI 工作流",
"ComfyUI Workflow Nodes": "ComfyUI 工作流节点", "ComfyUI Workflow Nodes": "ComfyUI 工作流节点",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "命令", "Command": "命令",
"Comment": "注释", "Comment": "注释",
"Completions": "续写", "Completions": "续写",
"Compress Images in Channels": "压缩频道中的图片", "Compress Images in Channels": "压缩频道中的图片",
"Concurrent Requests": "并发请求", "Concurrent Requests": "并发请求",
"Config imported successfully": "",
"Configure": "配置", "Configure": "配置",
"Confirm": "确认", "Confirm": "确认",
"Confirm Password": "确认密码", "Confirm Password": "确认密码",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "需要 Datalab Marker API 密钥", "Datalab Marker API Key required.": "需要 Datalab Marker API 密钥",
"DD/MM/YYYY": "DD/MM/YYYY", "DD/MM/YYYY": "DD/MM/YYYY",
"December": "十二月", "December": "十二月",
"Deepgram": "",
"Default": "默认", "Default": "默认",
"Default (Open AI)": "默认 (OpenAI)", "Default (Open AI)": "默认 (OpenAI)",
"Default (SentenceTransformers)": "默认 (SentenceTransformers)", "Default (SentenceTransformers)": "默认 (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "直接连接", "Direct Connections": "直接连接",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "直接连接允许用户连接自有的 OpenAI 兼容的 API 端点", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "直接连接允许用户连接自有的 OpenAI 兼容的 API 端点",
"Direct Tool Servers": "直接连接工具服务器", "Direct Tool Servers": "直接连接工具服务器",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "禁用代码解释器", "Disable Code Interpreter": "禁用代码解释器",
"Disable Image Extraction": "禁用图像提取", "Disable Image Extraction": "禁用图像提取",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "禁用从 PDF 中提取图像。若启用 “使用大语言模型LLM图像将自动添加描述。默认为关闭", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "禁用从 PDF 中提取图像。若启用 “使用大语言模型LLM图像将自动添加描述。默认为关闭",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "输入以逗号分隔的 “token:bias_value” 对例如5432:100, 413:-100", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "输入以逗号分隔的 “token:bias_value” 对例如5432:100, 413:-100",
"Enter Config in JSON format": "输入 JSON 格式的配置", "Enter Config in JSON format": "输入 JSON 格式的配置",
"Enter content for the pending user info overlay. Leave empty for default.": "输入用户待激活界面的内容。留空使用默认", "Enter content for the pending user info overlay. Leave empty for default.": "输入用户待激活界面的内容。留空使用默认",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "输入 Datalab Marker API 请求 URL", "Enter Datalab Marker API Base URL": "输入 Datalab Marker API 请求 URL",
"Enter Datalab Marker API Key": "输入 Datalab Marker API 密钥", "Enter Datalab Marker API Key": "输入 Datalab Marker API 密钥",
"Enter description": "输入简介描述", "Enter description": "输入简介描述",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "输入 Github Raw URL", "Enter Github Raw URL": "输入 Github Raw URL",
"Enter Google PSE API Key": "输入 Google PSE API 密钥", "Enter Google PSE API Key": "输入 Google PSE API 密钥",
"Enter Google PSE Engine Id": "输入 Google PSE 引擎 ID", "Enter Google PSE Engine Id": "输入 Google PSE 引擎 ID",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "输入图像分辨率例如512x512", "Enter Image Size (e.g. 512x512)": "输入图像分辨率例如512x512",
"Enter Jina API Key": "输入 Jina API 密钥", "Enter Jina API Key": "输入 Jina API 密钥",
"Enter JSON config (e.g., {\"disable_links\": true})": "输入 JSON 配置(例如:{\"disable_links\": true}", "Enter JSON config (e.g., {\"disable_links\": true})": "输入 JSON 配置(例如:{\"disable_links\": true}",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "输入 Top K Reranker", "Enter Top K Reranker": "输入 Top K Reranker",
"Enter URL (e.g. http://127.0.0.1:7860/)": "输入 URL例如http://127.0.0.1:7860/", "Enter URL (e.g. http://127.0.0.1:7860/)": "输入 URL例如http://127.0.0.1:7860/",
"Enter URL (e.g. http://localhost:11434)": "输入 URL例如http://localhost:11434", "Enter URL (e.g. http://localhost:11434)": "输入 URL例如http://localhost:11434",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "输入 YaCy 密码", "Enter Yacy Password": "输入 YaCy 密码",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "输入 YaCy URL例如http://yacy.example.com:8090", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "输入 YaCy URL例如http://yacy.example.com:8090",
"Enter Yacy Username": "输入 YaCy 用户名", "Enter Yacy Username": "输入 YaCy 用户名",
@ -579,11 +595,14 @@
"Enter your webhook URL": "输入您的 Webhook URL", "Enter your webhook URL": "输入您的 Webhook URL",
"Error": "错误", "Error": "错误",
"ERROR": "错误", "ERROR": "错误",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "访问 Google 云端硬盘 出错:{{error}}", "Error accessing Google Drive: {{error}}": "访问 Google 云端硬盘 出错:{{error}}",
"Error accessing media devices.": "访问媒体设备时出错。", "Error accessing media devices.": "访问媒体设备时出错。",
"Error starting recording.": "开始录制时出错。", "Error starting recording.": "开始录制时出错。",
"Error unloading model: {{error}}": "卸载模型时出错:{{error}}", "Error unloading model: {{error}}": "卸载模型时出错:{{error}}",
"Error uploading file: {{error}}": "上传文件时出错:{{error}}", "Error uploading file: {{error}}": "上传文件时出错:{{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "竞技场评估", "Evaluations": "竞技场评估",
"Everyone": "所有人", "Everyone": "所有人",
"Exa API Key": "Exa API 密钥", "Exa API Key": "Exa API 密钥",
@ -725,6 +744,7 @@
"H2": "二级标题", "H2": "二级标题",
"H3": "三级标题", "H3": "三级标题",
"Haptic Feedback": "震动反馈", "Haptic Feedback": "震动反馈",
"Height": "",
"Hello, {{name}}": "您好,{{name}}", "Hello, {{name}}": "您好,{{name}}",
"Help": "帮助", "Help": "帮助",
"Help us create the best community leaderboard by sharing your feedback history!": "分享您的反馈历史记录,共建最佳模型社区排行榜!", "Help us create the best community leaderboard by sharing your feedback history!": "分享您的反馈历史记录,共建最佳模型社区排行榜!",
@ -733,6 +753,7 @@
"Hide": "隐藏", "Hide": "隐藏",
"Hide from Sidebar": "从侧边栏隐藏", "Hide from Sidebar": "从侧边栏隐藏",
"Hide Model": "隐藏模型", "Hide Model": "隐藏模型",
"High": "",
"High Contrast Mode": "高对比度模式", "High Contrast Mode": "高对比度模式",
"Home": "主页", "Home": "主页",
"Host": "主机", "Host": "主机",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "注入整个内容作为上下文进行综合处理,适用于复杂查询", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "注入整个内容作为上下文进行综合处理,适用于复杂查询",
"Input": "输入", "Input": "输入",
"Input commands": "输入命令", "Input commands": "输入命令",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "插入变量", "Input Variables": "插入变量",
"Insert": "插入", "Insert": "插入",
"Insert Follow-Up Prompt to Input": "插入追问提示词到输入框", "Insert Follow-Up Prompt to Input": "插入追问提示词到输入框",
@ -789,6 +811,7 @@
"Invalid file content": "文件内容无效", "Invalid file content": "文件内容无效",
"Invalid file format.": "文件格式无效", "Invalid file format.": "文件格式无效",
"Invalid JSON file": "JSON 文件无效", "Invalid JSON file": "JSON 文件无效",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "额外配置项中的 JSON 格式无效", "Invalid JSON format in Additional Config": "额外配置项中的 JSON 格式无效",
"Invalid Tag": "无效标签", "Invalid Tag": "无效标签",
"is typing...": "输入中...", "is typing...": "输入中...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "保留追问提示词在对话中", "Keep Follow-Up Prompts in Chat": "保留追问提示词在对话中",
"Keep in Sidebar": "保留在侧边栏", "Keep in Sidebar": "保留在侧边栏",
"Key": "密匙", "Key": "密匙",
"Key is required": "",
"Keyboard shortcuts": "键盘快捷键", "Keyboard shortcuts": "键盘快捷键",
"Knowledge": "知识库", "Knowledge": "知识库",
"Knowledge Access": "访问知识库", "Knowledge Access": "访问知识库",
"Knowledge Base": "知识库", "Knowledge Base": "知识库",
"Knowledge created successfully.": "知识成功创建", "Knowledge created successfully.": "知识成功创建",
"Knowledge deleted successfully.": "知识成功删除", "Knowledge deleted successfully.": "知识成功删除",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "知识公开共享", "Knowledge Public Sharing": "知识公开共享",
"Knowledge reset successfully.": "知识成功重置", "Knowledge reset successfully.": "知识成功重置",
"Knowledge updated successfully": "知识成功更新", "Knowledge updated successfully": "知识成功更新",
@ -852,6 +878,7 @@
"Local Task Model": "本地任务模型", "Local Task Model": "本地任务模型",
"Location access not allowed": "不允许访问位置信息", "Location access not allowed": "不允许访问位置信息",
"Lost": "落败", "Lost": "落败",
"Low": "",
"LTR": "从左至右", "LTR": "从左至右",
"Made by Open WebUI Community": "由 Open WebUI 社区开发", "Made by Open WebUI Community": "由 Open WebUI 社区开发",
"Make password visible in the user interface": "在用户界面中显示密码", "Make password visible in the user interface": "在用户界面中显示密码",
@ -873,6 +900,7 @@
"Max Upload Size": "最大上传大小", "Max Upload Size": "最大上传大小",
"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": "五月",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "大语言模型可访问的记忆将在此显示", "Memories accessible by LLMs will be shown here.": "大语言模型可访问的记忆将在此显示",
"Memory": "记忆", "Memory": "记忆",
"Memory added successfully": "记忆添加成功", "Memory added successfully": "记忆添加成功",
@ -908,6 +936,7 @@
"Model ID is required.": "模型 ID 是必填项。", "Model ID is required.": "模型 ID 是必填项。",
"Model IDs": "模型 ID", "Model IDs": "模型 ID",
"Model Name": "模型名称", "Model Name": "模型名称",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "模型名称是必填项。", "Model Name is required.": "模型名称是必填项。",
"Model not selected": "未选择模型", "Model not selected": "未选择模型",
"Model Params": "模型参数", "Model Params": "模型参数",
@ -926,6 +955,7 @@
"More Concise": "精炼表达", "More Concise": "精炼表达",
"More Options": "更多选项", "More Options": "更多选项",
"Name": "名称", "Name": "名称",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "为您的知识库命名", "Name your knowledge base": "为您的知识库命名",
"Native": "原生", "Native": "原生",
"New Button": "新按钮", "New Button": "新按钮",
@ -960,7 +990,9 @@
"No search query generated": "未生成搜索查询", "No search query generated": "未生成搜索查询",
"No source available": "没有可用来源", "No source available": "没有可用来源",
"No users were found.": "未找到用户", "No users were found.": "未找到用户",
"No valves": "",
"No valves to update": "没有需要更新的变量", "No valves to update": "没有需要更新的变量",
"Node Ids": "",
"None": "无", "None": "无",
"Not factually correct": "与事实不符", "Not factually correct": "与事实不符",
"Not helpful": "没有任何帮助", "Not helpful": "没有任何帮助",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "切换对话分支时滚动", "Scroll On Branch Change": "切换对话分支时滚动",
"Search": "搜索", "Search": "搜索",
"Search a model": "搜索模型", "Search a model": "搜索模型",
"Search all emojis": "",
"Search Base": "搜索库", "Search Base": "搜索库",
"Search Chats": "搜索对话", "Search Chats": "搜索对话",
"Search Collection": "搜索内容", "Search Collection": "搜索内容",
@ -1187,18 +1220,32 @@
"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": "",
"Select a base model": "选择一个基础模型", "Select a base model": "选择一个基础模型",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "选择对话进行预览", "Select a conversation to preview": "选择对话进行预览",
"Select a engine": "选择一个搜索引擎", "Select a engine": "选择一个搜索引擎",
"Select a function": "选择一个函数", "Select a function": "选择一个函数",
"Select a group": "选择一个权限组", "Select a group": "选择一个权限组",
"Select a language": "",
"Select a mode": "",
"Select a model": "选择一个模型", "Select a model": "选择一个模型",
"Select a model (optional)": "",
"Select a pipeline": "选择一个 Pipeline", "Select a pipeline": "选择一个 Pipeline",
"Select a pipeline url": "选择一个 Pipeline URL", "Select a pipeline url": "选择一个 Pipeline URL",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "选择一个工具", "Select a tool": "选择一个工具",
"Select a voice": "",
"Select an auth method": "选择身份验证方式", "Select an auth method": "选择身份验证方式",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "选择一个 Ollama 实例。", "Select an Ollama instance": "选择一个 Ollama 实例。",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "选择引擎", "Select Engine": "选择引擎",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "选择知识", "Select Knowledge": "选择知识",
"Select only one model to call": "请仅选择一个模型来语音通话", "Select only one model to call": "请仅选择一个模型来语音通话",
"Selected model(s) do not support image inputs": "已选择的模型不支持发送图像", "Selected model(s) do not support image inputs": "已选择的模型不支持发送图像",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API 密钥", "Serply API Key": "Serply API 密钥",
"Serpstack API Key": "Serpstack API 密钥", "Serpstack API Key": "Serpstack API 密钥",
"Server connection verified": "已验证服务器连接", "Server connection verified": "已验证服务器连接",
"Session": "",
"Set as default": "设为默认", "Set as default": "设为默认",
"Set CFG Scale": "设置 CFG Scale", "Set CFG Scale": "设置 CFG Scale",
"Set Default Model": "设置默认模型", "Set Default Model": "设置默认模型",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "跳过缓存", "Skip Cache": "跳过缓存",
"Skip the cache and re-run the inference. Defaults to False.": "跳过缓存并重新执行推理。默认为关闭", "Skip the cache and re-run the inference. Defaults to False.": "跳过缓存并重新执行推理。默认为关闭",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "搜狗搜索 API Secret ID", "Sougou Search API sID": "搜狗搜索 API Secret ID",
"Sougou Search API SK": "搜狗搜索 API Secret 密钥", "Sougou Search API SK": "搜狗搜索 API Secret 密钥",
"Source": "来源", "Source": "来源",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "风格化 PDF 导出", "Stylized PDF Export": "风格化 PDF 导出",
"Subtitle (e.g. about the Roman Empire)": "副标题(例如:聊聊罗马帝国)", "Subtitle (e.g. about the Roman Empire)": "副标题(例如:聊聊罗马帝国)",
"Success": "成功", "Success": "成功",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "成功更新", "Successfully updated.": "成功更新",
"Suggest a change": "提出修改建议", "Suggest a change": "提出修改建议",
"Suggested": "建议", "Suggested": "建议",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "最大文件大小 (MB)。如果文件大小超过此限制,则无法上传该文件。", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "最大文件大小 (MB)。如果文件大小超过此限制,则无法上传该文件。",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "在单次对话中可以使用的最大文件数。如果文件数超过此限制,则文件不会上传。", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "在单次对话中可以使用的最大文件数。如果文件数超过此限制,则文件不会上传。",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "文本输出格式。可选 'json', 'markdown' 或 'html'。默认为 'markdown'。", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "文本输出格式。可选 'json', 'markdown' 或 'html'。默认为 'markdown'。",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "分值应介于 0.0 (0%) 和 1.0 (100%) 之间。", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "分值应介于 0.0 (0%) 和 1.0 (100%) 之间。",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "模型在流式输出时每次发送的增量文本块大小。数值越大,模型每次返回的文字会更多。", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "模型在流式输出时每次发送的增量文本块大小。数值越大,模型每次返回的文字会更多。",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "模型的温度。增加温度将使模型的回答更有创意。", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "模型的温度。增加温度将使模型的回答更有创意。",
@ -1439,7 +1495,9 @@
"Upload Files": "上传文件", "Upload Files": "上传文件",
"Upload Pipeline": "上传 Pipeline", "Upload Pipeline": "上传 Pipeline",
"Upload Progress": "上传进度", "Upload Progress": "上传进度",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "URL 模式", "URL Mode": "URL 模式",
"Usage": "用量", "Usage": "用量",
"Use '#' in the prompt input to load and include your knowledge.": "在输入框中输入 '#' 号来加载您需要的知识库内容", "Use '#' in the prompt input to load and include your knowledge.": "在输入框中输入 '#' 号来加载您需要的知识库内容",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "使用聚焦检索", "Using Focused Retrieval": "使用聚焦检索",
"Using the default arena model with all models. Click the plus button to add custom models.": "竞技场模型默认使用所有模型。点击加号按钮添加自定义模型", "Using the default arena model with all models. Click the plus button to add custom models.": "竞技场模型默认使用所有模型。点击加号按钮添加自定义模型",
"Valid time units:": "有效时间单位:", "Valid time units:": "有效时间单位:",
"Validate certificate": "",
"Valves": "变量", "Valves": "变量",
"Valves updated": "变量已更新", "Valves updated": "变量已更新",
"Valves updated successfully": "变量更新成功", "Valves updated successfully": "变量更新成功",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (本地)", "Whisper (Local)": "Whisper (本地)",
"Why?": "为什么?", "Why?": "为什么?",
"Widescreen Mode": "宽屏模式", "Widescreen Mode": "宽屏模式",
"Width": "",
"Won": "获胜", "Won": "获胜",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "与 top-k 配合使用。较高的值(例如 0.95)将产生更加多样化的文本,而较低的值(例如 0.5)将产生更加集中和保守的文本。", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "与 top-k 配合使用。较高的值(例如 0.95)将产生更加多样化的文本,而较低的值(例如 0.5)将产生更加集中和保守的文本。",
"Workspace": "工作空间", "Workspace": "工作空间",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "已隱藏 {{COUNT}} 行", "{{COUNT}} hidden lines": "已隱藏 {{COUNT}} 行",
"{{COUNT}} Replies": "{{COUNT}} 回覆", "{{COUNT}} Replies": "{{COUNT}} 回覆",
"{{COUNT}} words": "{{COUNT}} 個詞", "{{COUNT}} words": "{{COUNT}} 個詞",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} 的對話", "{{user}}'s Chats": "{{user}} 的對話",
"{{webUIName}} Backend Required": "需要提供 {{webUIName}} 後端", "{{webUIName}} Backend Required": "需要提供 {{webUIName}} 後端",
"*Prompt node ID(s) are required for image generation": "* 圖片生成需要提示詞節點 ID", "*Prompt node ID(s) are required for image generation": "* 圖片生成需要提示詞節點 ID",
@ -29,6 +30,7 @@
"Account Activation Pending": "帳號待啟用", "Account Activation Pending": "帳號待啟用",
"Accurate information": "準確資訊", "Accurate information": "準確資訊",
"Action": "操作", "Action": "操作",
"Action not found": "",
"Actions": "動作", "Actions": "動作",
"Activate": "啟用", "Activate": "啟用",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "在對話輸入框中輸入 \"/{{COMMAND}}\" 來啟用此命令。", "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "在對話輸入框中輸入 \"/{{COMMAND}}\" 來啟用此命令。",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "總是播放通知音效", "Always Play Notification Sound": "總是播放通知音效",
"Amazing": "很棒", "Amazing": "很棒",
"an assistant": "助理", "an assistant": "助理",
"An error occurred while fetching the explanation": "",
"Analytics": "分析", "Analytics": "分析",
"Analyzed": "分析完畢", "Analyzed": "分析完畢",
"Analyzing...": "正在分析...", "Analyzing...": "正在分析...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API 金鑰端點限制", "API Key Endpoint Restrictions": "API 金鑰端點限制",
"API keys": "API 金鑰", "API keys": "API 金鑰",
"API Version": "API 版本", "API Version": "API 版本",
"API Version is required": "",
"Application DN": "應用程式 DN", "Application DN": "應用程式 DN",
"Application DN Password": "應用程式 DN 密碼", "Application DN Password": "應用程式 DN 密碼",
"applies to all users with the \"user\" role": "適用於所有具有「使用者」角色的使用者", "applies to all users with the \"user\" role": "適用於所有具有「使用者」角色的使用者",
@ -160,6 +164,7 @@
"Banners": "橫幅", "Banners": "橫幅",
"Base Model (From)": "基礎模型(來自)", "Base Model (From)": "基礎模型(來自)",
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "基礎模型清單快取僅在啟動或儲存設定時獲取基礎模型從而加快存取速度,但可能不會顯示最近的基礎模型變更。", "Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "基礎模型清單快取僅在啟動或儲存設定時獲取基礎模型從而加快存取速度,但可能不會顯示最近的基礎模型變更。",
"Bearer": "",
"before": "之前", "before": "之前",
"Being lazy": "懶惰模式", "Being lazy": "懶惰模式",
"Beta": "測試", "Beta": "測試",
@ -189,7 +194,9 @@
"Capture Audio": "錄製音訊", "Capture Audio": "錄製音訊",
"Certificate Path": "憑證路徑", "Certificate Path": "憑證路徑",
"Change Password": "修改密碼", "Change Password": "修改密碼",
"Channel deleted successfully": "",
"Channel Name": "頻道名稱", "Channel Name": "頻道名稱",
"Channel updated successfully": "",
"Channels": "頻道", "Channels": "頻道",
"Character": "角色", "Character": "角色",
"Character limit for autocomplete generation input": "自動完成生成輸入的字元限制", "Character limit for autocomplete generation input": "自動完成生成輸入的字元限制",
@ -238,6 +245,7 @@
"Close modal": "關閉模型", "Close modal": "關閉模型",
"Close settings modal": "關閉設定模型", "Close settings modal": "關閉設定模型",
"Close Sidebar": "收起側邊欄", "Close Sidebar": "收起側邊欄",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "程式碼區塊", "Code Block": "程式碼區塊",
"Code execution": "程式碼執行", "Code execution": "程式碼執行",
"Code Execution": "程式碼執行", "Code Execution": "程式碼執行",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "需要提供 ComfyUI 基底 URL。", "ComfyUI Base URL is required.": "需要提供 ComfyUI 基底 URL。",
"ComfyUI Workflow": "ComfyUI 工作流程", "ComfyUI Workflow": "ComfyUI 工作流程",
"ComfyUI Workflow Nodes": "ComfyUI 工作流程節點", "ComfyUI Workflow Nodes": "ComfyUI 工作流程節點",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "命令", "Command": "命令",
"Comment": "註解", "Comment": "註解",
"Completions": "自動完成", "Completions": "自動完成",
"Compress Images in Channels": "壓縮頻道中的圖片", "Compress Images in Channels": "壓縮頻道中的圖片",
"Concurrent Requests": "平行請求", "Concurrent Requests": "平行請求",
"Config imported successfully": "",
"Configure": "設定", "Configure": "設定",
"Confirm": "確認", "Confirm": "確認",
"Confirm Password": "確認密碼", "Confirm Password": "確認密碼",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "需要 Datalab Marker API 金鑰。", "Datalab Marker API Key required.": "需要 Datalab Marker API 金鑰。",
"DD/MM/YYYY": "DD/MM/YYYY", "DD/MM/YYYY": "DD/MM/YYYY",
"December": "12 月", "December": "12 月",
"Deepgram": "",
"Default": "預設", "Default": "預設",
"Default (Open AI)": "預設 (OpenAI)", "Default (Open AI)": "預設 (OpenAI)",
"Default (SentenceTransformers)": "預設 (SentenceTransformers)", "Default (SentenceTransformers)": "預設 (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "直接連線", "Direct Connections": "直接連線",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "直接連線允許使用者連線至自有或其他與 OpenAI API 相容的端點。", "Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "直接連線允許使用者連線至自有或其他與 OpenAI API 相容的端點。",
"Direct Tool Servers": "直連工具伺服器", "Direct Tool Servers": "直連工具伺服器",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "停用程式碼解譯器", "Disable Code Interpreter": "停用程式碼解譯器",
"Disable Image Extraction": "停用圖片擷取", "Disable Image Extraction": "停用圖片擷取",
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "停用從 PDF 擷取圖片。若啟用「使用 LLM」圖片將自動新增說明。預設為 False。", "Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "停用從 PDF 擷取圖片。若啟用「使用 LLM」圖片將自動新增說明。預設為 False。",
@ -488,6 +500,7 @@
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "輸入逗號分隔的 \"token:bias_value\" 配對 (範例5432:100, 413:-100)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "輸入逗號分隔的 \"token:bias_value\" 配對 (範例5432:100, 413:-100)",
"Enter Config in JSON format": "輸入 JSON 格式的設定", "Enter Config in JSON format": "輸入 JSON 格式的設定",
"Enter content for the pending user info overlay. Leave empty for default.": "為待處理的使用者訊息覆蓋層輸入內容。留空以使用預設值。", "Enter content for the pending user info overlay. Leave empty for default.": "為待處理的使用者訊息覆蓋層輸入內容。留空以使用預設值。",
"Enter coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "輸入 Datalab Marker API 請求 URL", "Enter Datalab Marker API Base URL": "輸入 Datalab Marker API 請求 URL",
"Enter Datalab Marker API Key": "輸入 Datalab Marker API 金鑰", "Enter Datalab Marker API Key": "輸入 Datalab Marker API 金鑰",
"Enter description": "輸入描述", "Enter description": "輸入描述",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "輸入 GitHub Raw URL", "Enter Github Raw URL": "輸入 GitHub Raw URL",
"Enter Google PSE API Key": "輸入 Google PSE API 金鑰", "Enter Google PSE API Key": "輸入 Google PSE API 金鑰",
"Enter Google PSE Engine Id": "輸入 Google PSE 引擎 ID", "Enter Google PSE Engine Id": "輸入 Google PSE 引擎 ID",
"Enter hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "輸入圖片尺寸例如512x512", "Enter Image Size (e.g. 512x512)": "輸入圖片尺寸例如512x512",
"Enter Jina API Key": "輸入 Jina API 金鑰", "Enter Jina API Key": "輸入 Jina API 金鑰",
"Enter JSON config (e.g., {\"disable_links\": true})": "輸入 JSON 設定(例如:{\"disable_links\": true}", "Enter JSON config (e.g., {\"disable_links\": true})": "輸入 JSON 設定(例如:{\"disable_links\": true}",
@ -563,6 +577,8 @@
"Enter Top K Reranker": "輸入 Top K Reranker", "Enter Top K Reranker": "輸入 Top K Reranker",
"Enter URL (e.g. http://127.0.0.1:7860/)": "輸入 URL例如http://127.0.0.1:7860/", "Enter URL (e.g. http://127.0.0.1:7860/)": "輸入 URL例如http://127.0.0.1:7860/",
"Enter URL (e.g. http://localhost:11434)": "輸入 URL例如http://localhost:11434", "Enter URL (e.g. http://localhost:11434)": "輸入 URL例如http://localhost:11434",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "輸入 Yacy 密碼", "Enter Yacy Password": "輸入 Yacy 密碼",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "輸入 Yacy URL例如http://yacy.example.com:8090", "Enter Yacy URL (e.g. http://yacy.example.com:8090)": "輸入 Yacy URL例如http://yacy.example.com:8090",
"Enter Yacy Username": "輸入 Yacy 使用者名稱", "Enter Yacy Username": "輸入 Yacy 使用者名稱",
@ -579,11 +595,14 @@
"Enter your webhook URL": "輸入您的 webhook URL", "Enter your webhook URL": "輸入您的 webhook URL",
"Error": "錯誤", "Error": "錯誤",
"ERROR": "錯誤", "ERROR": "錯誤",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "存取 Google Drive 時發生錯誤:{{error}}", "Error accessing Google Drive: {{error}}": "存取 Google Drive 時發生錯誤:{{error}}",
"Error accessing media devices.": "存取媒體裝置時發生錯誤。", "Error accessing media devices.": "存取媒體裝置時發生錯誤。",
"Error starting recording.": "啟動錄製時發生錯誤。", "Error starting recording.": "啟動錄製時發生錯誤。",
"Error unloading model: {{error}}": "卸載模型錯誤:{{error}}", "Error unloading model: {{error}}": "卸載模型錯誤:{{error}}",
"Error uploading file: {{error}}": "上傳檔案時發生錯誤:{{error}}", "Error uploading file: {{error}}": "上傳檔案時發生錯誤:{{error}}",
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
"Evaluations": "評估", "Evaluations": "評估",
"Everyone": "所有人", "Everyone": "所有人",
"Exa API Key": "Exa API 金鑰", "Exa API Key": "Exa API 金鑰",
@ -725,6 +744,7 @@
"H2": "二級標題", "H2": "二級標題",
"H3": "三級標題", "H3": "三級標題",
"Haptic Feedback": "觸覺回饋", "Haptic Feedback": "觸覺回饋",
"Height": "",
"Hello, {{name}}": "您好,{{name}}", "Hello, {{name}}": "您好,{{name}}",
"Help": "說明", "Help": "說明",
"Help us create the best community leaderboard by sharing your feedback history!": "透過分享您的回饋歷史,幫助我們建立最佳的社群排行榜!", "Help us create the best community leaderboard by sharing your feedback history!": "透過分享您的回饋歷史,幫助我們建立最佳的社群排行榜!",
@ -733,6 +753,7 @@
"Hide": "隱藏", "Hide": "隱藏",
"Hide from Sidebar": "從側邊欄隱藏", "Hide from Sidebar": "從側邊欄隱藏",
"Hide Model": "隱藏模型", "Hide Model": "隱藏模型",
"High": "",
"High Contrast Mode": "高對比模式", "High Contrast Mode": "高對比模式",
"Home": "首頁", "Home": "首頁",
"Host": "主機", "Host": "主機",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "將完整內容注入為上下文以進行全面處理,建議用於複雜查詢。", "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "將完整內容注入為上下文以進行全面處理,建議用於複雜查詢。",
"Input": "輸入", "Input": "輸入",
"Input commands": "輸入命令", "Input commands": "輸入命令",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "插入變數", "Input Variables": "插入變數",
"Insert": "插入", "Insert": "插入",
"Insert Follow-Up Prompt to Input": "插入追問提示詞到輸入框", "Insert Follow-Up Prompt to Input": "插入追問提示詞到輸入框",
@ -789,6 +811,7 @@
"Invalid file content": "檔案內容無效", "Invalid file content": "檔案內容無效",
"Invalid file format.": "檔案格式無效。", "Invalid file format.": "檔案格式無效。",
"Invalid JSON file": "JSON 檔案無效", "Invalid JSON file": "JSON 檔案無效",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "額外設定中的 JSON 格式無效", "Invalid JSON format in Additional Config": "額外設定中的 JSON 格式無效",
"Invalid Tag": "無效標籤", "Invalid Tag": "無效標籤",
"is typing...": "正在輸入...", "is typing...": "正在輸入...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "保留追問提示詞在對話中", "Keep Follow-Up Prompts in Chat": "保留追問提示詞在對話中",
"Keep in Sidebar": "保留在側邊欄", "Keep in Sidebar": "保留在側邊欄",
"Key": "金鑰", "Key": "金鑰",
"Key is required": "",
"Keyboard shortcuts": "鍵盤快捷鍵", "Keyboard shortcuts": "鍵盤快捷鍵",
"Knowledge": "知識", "Knowledge": "知識",
"Knowledge Access": "知識存取", "Knowledge Access": "知識存取",
"Knowledge Base": "知識庫", "Knowledge Base": "知識庫",
"Knowledge created successfully.": "成功建立知識。", "Knowledge created successfully.": "成功建立知識。",
"Knowledge deleted successfully.": "成功刪除知識。", "Knowledge deleted successfully.": "成功刪除知識。",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "知識公開分享", "Knowledge Public Sharing": "知識公開分享",
"Knowledge reset successfully.": "成功重設知識。", "Knowledge reset successfully.": "成功重設知識。",
"Knowledge updated successfully": "成功更新知識", "Knowledge updated successfully": "成功更新知識",
@ -852,6 +878,7 @@
"Local Task Model": "本機任務模型", "Local Task Model": "本機任務模型",
"Location access not allowed": "位置存取未獲允許", "Location access not allowed": "位置存取未獲允許",
"Lost": "落敗", "Lost": "落敗",
"Low": "",
"LTR": "從左到右", "LTR": "從左到右",
"Made by Open WebUI Community": "由 Open WebUI 社群製作", "Made by Open WebUI Community": "由 Open WebUI 社群製作",
"Make password visible in the user interface": "在使用者介面中顯示密碼", "Make password visible in the user interface": "在使用者介面中顯示密碼",
@ -873,6 +900,7 @@
"Max Upload Size": "最大上傳大小", "Max Upload Size": "最大上傳大小",
"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": "5 月", "May": "5 月",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "可被大型語言模型存取的記憶將顯示在此。", "Memories accessible by LLMs will be shown here.": "可被大型語言模型存取的記憶將顯示在此。",
"Memory": "記憶", "Memory": "記憶",
"Memory added successfully": "成功新增記憶", "Memory added successfully": "成功新增記憶",
@ -908,6 +936,7 @@
"Model ID is required.": "模型 ID 是必填項。", "Model ID is required.": "模型 ID 是必填項。",
"Model IDs": "模型 IDs", "Model IDs": "模型 IDs",
"Model Name": "模型名稱", "Model Name": "模型名稱",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "模型名稱是必填項。", "Model Name is required.": "模型名稱是必填項。",
"Model not selected": "未選取模型", "Model not selected": "未選取模型",
"Model Params": "模型參數", "Model Params": "模型參數",
@ -926,6 +955,7 @@
"More Concise": "精煉表達", "More Concise": "精煉表達",
"More Options": "更多選項", "More Options": "更多選項",
"Name": "名稱", "Name": "名稱",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "命名您的知識庫", "Name your knowledge base": "命名您的知識庫",
"Native": "原生", "Native": "原生",
"New Button": "新按鈕", "New Button": "新按鈕",
@ -960,7 +990,9 @@
"No search query generated": "未產生搜尋查詢", "No search query generated": "未產生搜尋查詢",
"No source available": "無可用來源", "No source available": "無可用來源",
"No users were found.": "未找到任何使用者", "No users were found.": "未找到任何使用者",
"No valves": "",
"No valves to update": "無變數可更新", "No valves to update": "無變數可更新",
"Node Ids": "",
"None": "無", "None": "無",
"Not factually correct": "與事實不符", "Not factually correct": "與事實不符",
"Not helpful": "沒有幫助", "Not helpful": "沒有幫助",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "切換分支時自動捲動", "Scroll On Branch Change": "切換分支時自動捲動",
"Search": "搜尋", "Search": "搜尋",
"Search a model": "搜尋模型", "Search a model": "搜尋模型",
"Search all emojis": "",
"Search Base": "搜尋基礎", "Search Base": "搜尋基礎",
"Search Chats": "搜尋對話", "Search Chats": "搜尋對話",
"Search Collection": "搜尋集合", "Search Collection": "搜尋集合",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "檢視 readme.md 以取得說明", "See readme.md for instructions": "檢視 readme.md 以取得說明",
"See what's new": "檢視新功能", "See what's new": "檢視新功能",
"Seed": "種子值", "Seed": "種子值",
"Select": "",
"Select a base model": "選擇基礎模型", "Select a base model": "選擇基礎模型",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "選擇對話進行預覽", "Select a conversation to preview": "選擇對話進行預覽",
"Select a engine": "選擇引擎", "Select a engine": "選擇引擎",
"Select a function": "選擇函式", "Select a function": "選擇函式",
"Select a group": "選擇群組", "Select a group": "選擇群組",
"Select a language": "",
"Select a mode": "",
"Select a model": "選擇模型", "Select a model": "選擇模型",
"Select a model (optional)": "",
"Select a pipeline": "選擇管線", "Select a pipeline": "選擇管線",
"Select a pipeline url": "選擇管線 URL", "Select a pipeline url": "選擇管線 URL",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "選擇工具", "Select a tool": "選擇工具",
"Select a voice": "",
"Select an auth method": "選擇驗證方式", "Select an auth method": "選擇驗證方式",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "選擇一個 Ollama 執行個體", "Select an Ollama instance": "選擇一個 Ollama 執行個體",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "選擇引擎", "Select Engine": "選擇引擎",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "選擇知識庫", "Select Knowledge": "選擇知識庫",
"Select only one model to call": "僅選擇一個模型來呼叫", "Select only one model to call": "僅選擇一個模型來呼叫",
"Selected model(s) do not support image inputs": "選取的模型不支援圖片輸入", "Selected model(s) do not support image inputs": "選取的模型不支援圖片輸入",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API 金鑰", "Serply API Key": "Serply API 金鑰",
"Serpstack API Key": "Serpstack API 金鑰", "Serpstack API Key": "Serpstack API 金鑰",
"Server connection verified": "伺服器連線已驗證", "Server connection verified": "伺服器連線已驗證",
"Session": "",
"Set as default": "設為預設", "Set as default": "設為預設",
"Set CFG Scale": "設定 CFG 比例", "Set CFG Scale": "設定 CFG 比例",
"Set Default Model": "設定預設模型", "Set Default Model": "設定預設模型",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234", "sk-1234": "sk-1234",
"Skip Cache": "略過快取", "Skip Cache": "略過快取",
"Skip the cache and re-run the inference. Defaults to False.": "略過快取並重新執行推理。預設為 False。", "Skip the cache and re-run the inference. Defaults to False.": "略過快取並重新執行推理。預設為 False。",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "搜狗搜尋 API sID", "Sougou Search API sID": "搜狗搜尋 API sID",
"Sougou Search API SK": "搜狗搜尋 API SK", "Sougou Search API SK": "搜狗搜尋 API SK",
"Source": "來源", "Source": "來源",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "風格化 PDF 匯出", "Stylized PDF Export": "風格化 PDF 匯出",
"Subtitle (e.g. about the Roman Empire)": "副標題(例如:關於羅馬帝國)", "Subtitle (e.g. about the Roman Empire)": "副標題(例如:關於羅馬帝國)",
"Success": "成功", "Success": "成功",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "更新成功。", "Successfully updated.": "更新成功。",
"Suggest a change": "提出修改建議", "Suggest a change": "提出修改建議",
"Suggested": "建議", "Suggested": "建議",
@ -1327,6 +1382,7 @@
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "檔案大小上限MB。如果檔案大小超過此限制檔案將不會被上傳。", "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "檔案大小上限MB。如果檔案大小超過此限制檔案將不會被上傳。",
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "對話中一次可使用的最大檔案數量。如果檔案數量超過此限制,檔案將不會被上傳。", "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "對話中一次可使用的最大檔案數量。如果檔案數量超過此限制,檔案將不會被上傳。",
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "文字輸出格式可選擇「json」、「markdown」或「html」。預設為「markdown」。", "The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "文字輸出格式可選擇「json」、「markdown」或「html」。預設為「markdown」。",
"The passwords you entered don't quite match. Please double-check and try again.": "",
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "分數應該是介於 0.00%)和 1.0100%)之間的值。", "The score should be a value between 0.0 (0%) and 1.0 (100%).": "分數應該是介於 0.00%)和 1.0100%)之間的值。",
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "模型在串流輸出時每次傳送的增量文字塊大小。數值越大,模型每次回傳的文字會更多。", "The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "模型在串流輸出時每次傳送的增量文字塊大小。數值越大,模型每次回傳的文字會更多。",
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "模型的溫度。提高溫度會使模型更具創造性地回答。", "The temperature of the model. Increasing the temperature will make the model answer more creatively.": "模型的溫度。提高溫度會使模型更具創造性地回答。",
@ -1439,7 +1495,9 @@
"Upload Files": "上傳檔案", "Upload Files": "上傳檔案",
"Upload Pipeline": "上傳管線", "Upload Pipeline": "上傳管線",
"Upload Progress": "上傳進度", "Upload Progress": "上傳進度",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL", "URL": "URL",
"URL is required": "",
"URL Mode": "URL 模式", "URL Mode": "URL 模式",
"Usage": "使用量", "Usage": "使用量",
"Use '#' in the prompt input to load and include your knowledge.": "在提示詞輸入中使用 '#' 來載入並包含您的知識。", "Use '#' in the prompt input to load and include your knowledge.": "在提示詞輸入中使用 '#' 來載入並包含您的知識。",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "使用聚焦檢索", "Using Focused Retrieval": "使用聚焦檢索",
"Using the default arena model with all models. Click the plus button to add custom models.": "正在使用預設競技場模型與所有模型。點選加號按鈕以新增自訂模型。", "Using the default arena model with all models. Click the plus button to add custom models.": "正在使用預設競技場模型與所有模型。點選加號按鈕以新增自訂模型。",
"Valid time units:": "有效的時間單位:", "Valid time units:": "有效的時間單位:",
"Validate certificate": "",
"Valves": "變數", "Valves": "變數",
"Valves updated": "變數已更新", "Valves updated": "變數已更新",
"Valves updated successfully": "變數成功更新", "Valves updated successfully": "變數成功更新",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper本機", "Whisper (Local)": "Whisper本機",
"Why?": "為什麼?", "Why?": "為什麼?",
"Widescreen Mode": "寬螢幕模式", "Widescreen Mode": "寬螢幕模式",
"Width": "",
"Won": "獲勝", "Won": "獲勝",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "與 top-k 一起使用。較高的值例如0.95將產生更多樣化的文字而較低的值例如0.5)將生成更集中和保守的文字。", "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "與 top-k 一起使用。較高的值例如0.95將產生更多樣化的文字而較低的值例如0.5)將生成更集中和保守的文字。",
"Workspace": "工作區", "Workspace": "工作區",

View File

@ -16,13 +16,13 @@
const onSubmit = async (modelInfo) => { const onSubmit = async (modelInfo) => {
if ($models.find((m) => m.id === modelInfo.id)) { if ($models.find((m) => m.id === modelInfo.id)) {
toast.error( toast.error(
`Error: A model with the ID '${modelInfo.id}' already exists. Please select a different ID to proceed.` i18n.t("Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.", { modelId: modelInfo.id })
); );
return; return;
} }
if (modelInfo.id === '') { if (modelInfo.id === '') {
toast.error('Error: Model ID cannot be empty. Please enter a valid ID to proceed.'); toast.error($i18n.t('Error: Model ID cannot be empty. Please enter a valid ID to proceed.'));
return; return;
} }