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}`
).catch((err) => {
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('://')
? server?.path
: `${server?.url}${(server?.path ?? '').startsWith('/') ? '' : '/'}${server?.path}`

View File

@ -108,7 +108,7 @@
if (!ollama && !url) {
loading = false;
toast.error('URL is required');
toast.error($i18n.t('URL is required'));
return;
}
@ -116,20 +116,20 @@
if (!apiVersion) {
loading = false;
toast.error('API Version is required');
toast.error($i18n.t('API Version is required'));
return;
}
if (!key) {
loading = false;
toast.error('Key is required');
toast.error($i18n.t('Key is required'));
return;
}
if (modelIds.length === 0) {
loading = false;
toast.error('Deployment names are required');
toast.error($i18n.t('Deployment names are required for Azure OpenAI'));
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'}`}
bind:value={auth_type}
>
<option value="bearer">Bearer</option>
<option value="session">Session</option>
<option value="bearer">{$i18n.t('Bearer')}</option>
<option value="session">{$i18n.t('Session')}</option>
</select>
</div>

View File

@ -105,7 +105,7 @@
sessionStorage.function = JSON.stringify({
..._function,
id: `${_function.id}_clone`,
name: `${_function.name} (Clone)`
name: `${_function.name} (${$i18n.t('Clone')})`
});
goto('/admin/functions/create');
}
@ -655,7 +655,7 @@
>
<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>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">
<li>{$i18n.t('Functions allow arbitrary code execution.')}</li>

View File

@ -215,13 +215,13 @@
<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"
bind:value={STT_ENGINE}
placeholder="Select an engine"
placeholder={$i18n.t('Select an engine')}
>
<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="deepgram">Deepgram</option>
<option value="azure">Azure AI Speech</option>
<option value="deepgram">{$i18n.t('Deepgram')}</option>
<option value="azure">{$i18n.t('Azure AI Speech')}</option>
</select>
</div>
</div>
@ -250,7 +250,7 @@
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"
bind:value={STT_MODEL}
placeholder="Select a model"
placeholder={$i18n.t('Select a model')}
/>
<datalist id="model-list">
@ -275,7 +275,7 @@
<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"
bind:value={STT_MODEL}
placeholder="Select a model (optional)"
placeholder={$i18n.t('Select a model (optional)')}
/>
</div>
</div>
@ -424,7 +424,7 @@
<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"
bind:value={TTS_ENGINE}
placeholder="Select a mode"
placeholder={$i18n.t('Select a mode')}
on:change={async (e) => {
await updateConfigHandler();
await getVoices();
@ -539,7 +539,7 @@
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"
bind:value={TTS_MODEL}
placeholder="CMU ARCTIC speaker embedding name"
placeholder={$i18n.t('CMU ARCTIC speaker embedding name')}
/>
<datalist id="model-list">
@ -581,7 +581,7 @@
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"
bind:value={TTS_VOICE}
placeholder="Select a voice"
placeholder={$i18n.t('Select a voice')}
/>
<datalist id="voice-list">
@ -600,7 +600,7 @@
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"
bind:value={TTS_MODEL}
placeholder="Select a model"
placeholder={$i18n.t('Select a model')}
/>
<datalist id="tts-model-list">
@ -622,7 +622,7 @@
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"
bind:value={TTS_VOICE}
placeholder="Select a voice"
placeholder={$i18n.t('Select a voice')}
/>
<datalist id="voice-list">
@ -641,7 +641,7 @@
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"
bind:value={TTS_MODEL}
placeholder="Select a model"
placeholder={$i18n.t('Select a model')}
/>
<datalist id="tts-model-list">
@ -663,7 +663,7 @@
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"
bind:value={TTS_VOICE}
placeholder="Select a voice"
placeholder={$i18n.t('Select a voice')}
/>
<datalist id="voice-list">
@ -690,7 +690,7 @@
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"
bind:value={TTS_AZURE_SPEECH_OUTPUT_FORMAT}
placeholder="Select a output format"
placeholder={$i18n.t('Select an output format')}
/>
</div>
</div>
@ -704,7 +704,7 @@
<div class="flex items-center relative">
<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"
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}
>
{#each Object.values(TTS_RESPONSE_SPLIT) as split}

View File

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

View File

@ -746,7 +746,7 @@
<select
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}
placeholder="Select an embedding model engine"
placeholder={$i18n.t('Select an embedding model engine')}
on:change={(e) => {
if (e.target.value === 'ollama') {
embeddingModel = '';
@ -811,7 +811,7 @@
<div class="flex gap-2">
<input
class="flex-1 w-full text-sm bg-transparent outline-hidden"
placeholder="Version"
placeholder={$i18n.t('Version')}
bind:value={AzureOpenAIVersion}
required
/>
@ -947,7 +947,7 @@
<select
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}
placeholder="Select a reranking model engine"
placeholder={$i18n.t('Select a reranking model engine')}
on:change={(e) => {
if (e.target.value === 'external') {
RAGConfig.RAG_RERANKING_MODEL = '';

View File

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

View File

@ -62,7 +62,7 @@
if (!name || !id) {
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;
}
@ -70,7 +70,7 @@
if ($models.find((model) => model.name === name)) {
loading = false;
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;
}
}

View File

@ -290,7 +290,7 @@
<select
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}
placeholder="Select a role"
placeholder={$i18n.t('Select a role')}
>
<option value="pending">{$i18n.t('pending')}</option>
<option value="user">{$i18n.t('user')}</option>
@ -587,7 +587,7 @@
</div>
</div>
<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">
<Switch bind:state={LDAP_SERVER.validate_cert} />

View File

@ -143,7 +143,7 @@
if (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;
return;
}
@ -566,10 +566,10 @@
</div>
</div>
<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
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}
required
/>
@ -578,12 +578,12 @@
<div class="w-full">
<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"
>
<input
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}
/>
</Tooltip>
@ -650,7 +650,7 @@
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"
bind:value={imageGenerationConfig.MODEL}
placeholder="Select a model"
placeholder={$i18n.t('Select a model')}
required
/>

View File

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

View File

@ -475,11 +475,11 @@
/>
<datalist id="perplexity-model-list">
<option value="sonar">Sonar</option>
<option value="sonar-pro">Sonar Pro</option>
<option value="sonar-reasoning">Sonar Reasoning</option>
<option value="sonar-reasoning-pro">Sonar Reasoning Pro</option>
<option value="sonar-deep-research">Sonar Deep Research</option>
<option value="sonar">{$i18n.t('Sonar')}</option>
<option value="sonar-pro">{$i18n.t('Sonar Pro')}</option>
<option value="sonar-reasoning">{$i18n.t('Sonar Reasoning')}</option>
<option value="sonar-reasoning-pro">{$i18n.t('Sonar Reasoning Pro')}</option>
<option value="sonar-deep-research">{$i18n.t('Sonar Deep Research')}</option>
</datalist>
</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"
bind:value={webConfig.PERPLEXITY_SEARCH_CONTEXT_USAGE}
>
<option value="low">Low</option>
<option value="medium">Medium</option>
<option value="high">High</option>
<option value="low">{$i18n.t('Low')}</option>
<option value="medium">{$i18n.t('Medium')}</option>
<option value="high">{$i18n.t('High')}</option>
</select>
</div>
</div>

View File

@ -158,7 +158,7 @@
<select
class="w-full bg-transparent outline-hidden py-0.5 text-sm"
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>
{#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;
const uploadInputElement = document.getElementById('upload-user-csv-input');

View File

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

View File

@ -68,7 +68,7 @@
const actionHandler = async (actionId) => {
if (!model) {
toast.error('Model not selected');
toast.error($i18n.t('Model not selected'));
return;
}
@ -79,7 +79,7 @@
let selectedAction = actions.find((action) => action.id === actionId);
if (!selectedAction) {
toast.error('Action not found');
toast.error($i18n.t('Action not found'));
return;
}
@ -195,7 +195,7 @@
}
}
} 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
class=" w-full rounded-sm text-xs py-2 px-1 bg-transparent outline-hidden"
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="functions" class="bg-gray-100 dark:bg-gray-800"

View File

@ -131,7 +131,7 @@
<input
type="text"
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]}
autocomplete="off"
required
@ -156,7 +156,7 @@
<input
type="text"
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]}
autocomplete="off"
required
@ -232,7 +232,7 @@
<input
type="text"
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]}
autocomplete="off"
required
@ -308,7 +308,7 @@
<input
type="text"
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]}
autocomplete="off"
required

View File

@ -41,7 +41,7 @@
export let id = '';
export let value = '';
export let placeholder = 'Select a model';
export let placeholder = $i18n.t('Select a model');
export let searchEnabled = true;
export let searchPlaceholder = $i18n.t('Search a model');
@ -314,7 +314,7 @@
...$MODEL_DOWNLOAD_POOL
});
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 = '';
} else {
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 = '';
newPasswordConfirm = '';

View File

@ -187,7 +187,7 @@
<select
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}
placeholder="Select an engine"
placeholder={$i18n.t('Select an engine')}
>
<option value="">{$i18n.t('Default')}</option>
<option value="web">{$i18n.t('Web API')}</option>
@ -246,7 +246,7 @@
<select
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}
placeholder="Select an engine"
placeholder={$i18n.t('Select an engine')}
>
<option value="">{$i18n.t('Default')}</option>
<option value="browser-kokoro">{$i18n.t('Kokoro.js (Browser)')}</option>
@ -261,7 +261,7 @@
<select
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}
placeholder="Select dtype"
placeholder={$i18n.t('Select dtype')}
>
<option value="" disabled selected>Select dtype</option>
<option value="fp32">fp32</option>
@ -319,7 +319,7 @@
list="voice-list"
class="w-full text-sm bg-transparent dark:text-gray-300 outline-hidden"
bind:value={voice}
placeholder="Select a voice"
placeholder={$i18n.t('Select a voice')}
/>
<datalist id="voice-list">
@ -387,7 +387,7 @@
list="voice-list"
class="w-full text-sm bg-transparent dark:text-gray-300 outline-hidden"
bind:value={voice}
placeholder="Select a voice"
placeholder={$i18n.t('Select a voice')}
/>
<datalist id="voice-list">

View File

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

View File

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

View File

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

View File

@ -113,7 +113,7 @@
<input
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"
placeholder="Enter hex color (e.g. #FF0000)"
placeholder={$i18n.t("Enter hex color (e.g. #FF0000)")}
bind:value={valves[property]}
autocomplete="off"
disabled
@ -139,7 +139,7 @@
<input
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"
placeholder="Enter coordinates (e.g. 51.505, -0.09)"
placeholder={$i18n.t("Enter hex color (e.g. #FF0000)")}
bind:value={valves[property]}
autocomplete="off"
on:change={() => {

View File

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

View File

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

View File

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

View File

@ -489,7 +489,7 @@
<div>
<select
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}
on:change={(e) => {
addUsage(e.target.value);

View File

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

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "دردشات {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} مطلوب",
"*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "",
"Accurate information": "معلومات دقيقة",
"Action": "",
"Action not found": "",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "",
"Amazing": "",
"an assistant": "مساعد",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "",
"Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "",
"API keys": "مفاتيح واجهة برمجة التطبيقات",
"API Version": "",
"API Version is required": "",
"Application DN": "",
"Application DN Password": "",
"applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "لافتات",
"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.": "",
"Bearer": "",
"before": "قبل",
"Being lazy": "كون كسول",
"Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "",
"Change Password": "تغير الباسورد",
"Channel deleted successfully": "",
"Channel Name": "",
"Channel updated successfully": "",
"Channels": "",
"Character": "",
"Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"Code execution": "",
"Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI الرابط مطلوب",
"ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "الأوامر",
"Comment": "",
"Completions": "",
"Compress Images in Channels": "",
"Concurrent Requests": "الطلبات المتزامنة",
"Config imported successfully": "",
"Configure": "",
"Confirm": "",
"Confirm Password": "تأكيد كلمة المرور",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "ديسمبر",
"Deepgram": "",
"Default": "الإفتراضي",
"Default (Open AI)": "",
"Default (SentenceTransformers)": "(SentenceTransformers) الإفتراضي",
@ -377,6 +388,7 @@
"Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "أدخل عنوان URL ل Github Raw",
"Enter Google PSE API Key": "أدخل مفتاح واجهة برمجة تطبيقات 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 Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "URL (e.g. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "",
"Error": "خطأ",
"ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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": "",
"Everyone": "",
"Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": " {{name}} مرحبا",
"Help": "مساعدة",
"Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "أخفاء",
"Hide from Sidebar": "",
"Hide Model": "",
"High": "",
"High Contrast Mode": "",
"Home": "",
"Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "إدخال الأوامر",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "تاق غير صالحة",
"is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "",
"Key is required": "",
"Keyboard shortcuts": "اختصارات لوحة المفاتيح",
"Knowledge": "",
"Knowledge Access": "",
"Knowledge Base": "",
"Knowledge created successfully.": "",
"Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "",
"Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "",
"Lost": "",
"Low": "",
"LTR": "من جهة اليسار إلى اليمين",
"Made by Open WebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "يمكن تنزيل 3 نماذج كحد أقصى في وقت واحد. الرجاء معاودة المحاولة في وقت لاحق.",
"May": "مايو",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.",
"Memory": "الذاكرة",
"Memory added successfully": "",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "",
"Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "لم تختار موديل",
"Model Params": "معلمات النموذج",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "الأسم",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Native": "",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "لم يتم إنشاء استعلام بحث",
"No source available": "لا يوجد مصدر متاح",
"No users were found.": "",
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"None": "اي",
"Not factually correct": "ليس صحيحا من حيث الواقع",
"Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "البحث",
"Search a model": "البحث عن موديل",
"Search all emojis": "",
"Search Base": "",
"Search Chats": "البحث في الدردشات",
"Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "readme.md للحصول على التعليمات",
"See what's new": "ما الجديد",
"Seed": "Seed",
"Select": "",
"Select a base model": "حدد نموذجا أساسيا",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "",
"Select a function": "",
"Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "أختار الموديل",
"Select a model (optional)": "",
"Select a pipeline": "حدد مسارا",
"Select a pipeline url": "حدد عنوان URL لخط الأنابيب",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "",
"Select a voice": "",
"Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"Select only one model to call": "",
"Selected model(s) do not support image inputs": "النموذج (النماذج) المحددة لا تدعم مدخلات الصور",
@ -1215,6 +1262,7 @@
"Serply API Key": "",
"Serpstack API Key": "مفتاح واجهة برمجة تطبيقات Serpstack",
"Server connection verified": "تم التحقق من اتصال الخادم",
"Session": "",
"Set as default": "الافتراضي",
"Set CFG Scale": "",
"Set Default Model": "تفعيد الموديل الافتراضي",
@ -1265,6 +1313,12 @@
"sk-1234": "",
"Skip Cache": "",
"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 SK": "",
"Source": "المصدر",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "(e.g. about the Roman Empire) الترجمة",
"Success": "نجاح",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "تم التحديث بنجاح",
"Suggest a change": "",
"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 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 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 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.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "تحميل الملفات",
"Upload Pipeline": "",
"Upload Progress": "جاري التحميل",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "",
"URL is required": "",
"URL Mode": "رابط الموديل",
"Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "وحدات زمنية صالحة:",
"Validate certificate": "",
"Valves": "",
"Valves updated": "",
"Valves updated successfully": "",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "",
"Why?": "",
"Widescreen Mode": "",
"Width": "",
"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.": "",
"Workspace": "مساحة العمل",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} سطر/أسطر مخفية",
"{{COUNT}} Replies": "{{COUNT}} رد/ردود",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "محادثات المستخدم {{user}}",
"{{webUIName}} Backend Required": "يتطلب الخلفية الخاصة بـ {{webUIName}}",
"*Prompt node ID(s) are required for image generation": "*معرّف/معرّفات عقدة الموجه مطلوبة لتوليد الصور",
@ -29,6 +30,7 @@
"Account Activation Pending": "انتظار تفعيل الحساب",
"Accurate information": "معلومات دقيقة",
"Action": "",
"Action not found": "",
"Actions": "الإجراءات",
"Activate": "تفعيل",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "قم بتفعيل هذا الأمر بكتابة \"/{{COMMAND}}\" في مدخل المحادثة.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "",
"Amazing": "رائع",
"an assistant": "مساعد",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "تم التحليل",
"Analyzing...": "جارٍ التحليل...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "قيود نقاط نهاية مفتاح API",
"API keys": "مفاتيح واجهة برمجة التطبيقات (API)",
"API Version": "",
"API Version is required": "",
"Application DN": "DN التطبيق",
"Application DN Password": "كلمة مرور DN التطبيق",
"applies to all users with the \"user\" role": "ينطبق على جميع المستخدمين الذين لديهم دور \"مستخدم\"",
@ -160,6 +164,7 @@
"Banners": "لافتات",
"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.": "",
"Bearer": "",
"before": "قبل",
"Being lazy": "كونك كسولاً",
"Beta": "بيتا",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "مسار الشهادة",
"Change Password": "تغيير كلمة المرور",
"Channel deleted successfully": "",
"Channel Name": "اسم القناة",
"Channel updated successfully": "",
"Channels": "القنوات",
"Character": "الشخصية",
"Character limit for autocomplete generation input": "حد الأحرف لمدخل توليد الإكمال التلقائي",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"Code execution": "تنفيذ الشيفرة",
"Code Execution": "تنفيذ الشيفرة",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "عنوان الأساس لـ ComfyUI مطلوب.",
"ComfyUI Workflow": "سير عمل ComfyUI",
"ComfyUI Workflow Nodes": "عقد سير عمل ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "الأمر",
"Comment": "",
"Completions": "الإكمالات",
"Compress Images in Channels": "",
"Concurrent Requests": "الطلبات المتزامنة",
"Config imported successfully": "",
"Configure": "تكوين",
"Confirm": "تأكيد",
"Confirm Password": "تأكيد كلمة المرور",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "ديسمبر",
"Deepgram": "",
"Default": "افتراضي",
"Default (Open AI)": "افتراضي (Open AI)",
"Default (SentenceTransformers)": "افتراضي (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "الاتصالات المباشرة",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "تتيح الاتصالات المباشرة للمستخدمين الاتصال بنقاط نهاية API متوافقة مع OpenAI الخاصة بهم.",
"Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "أدخل الوصف",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "أدخل عنوان URL ل Github Raw",
"Enter Google PSE API Key": "أدخل مفتاح واجهة برمجة تطبيقات 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 Jina API Key": "أدخل مفتاح API لـ Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "URL (e.g. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "أدخل رابط Webhook الخاص بك",
"Error": "خطأ",
"ERROR": "خطأ",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "حدث خطأ أثناء الوصول إلى Google Drive: {{error}}",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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": "التقييمات",
"Everyone": "",
"Exa API Key": "مفتاح API لـ Exa",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "الاهتزاز اللمسي",
"Height": "",
"Hello, {{name}}": " {{name}} مرحبا",
"Help": "مساعدة",
"Help us create the best community leaderboard by sharing your feedback history!": "ساعدنا في إنشاء أفضل قائمة للمتصدرين من خلال مشاركة سجل ملاحظاتك!",
@ -733,6 +753,7 @@
"Hide": "أخفاء",
"Hide from Sidebar": "",
"Hide Model": "",
"High": "",
"High Contrast Mode": "",
"Home": "الصفحة الرئيسية",
"Host": "المضيف",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "إدخال الأوامر",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "تنسيق ملف غير صالح.",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "تاق غير صالحة",
"is typing...": "يكتب...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "المفتاح",
"Key is required": "",
"Keyboard shortcuts": "اختصارات لوحة المفاتيح",
"Knowledge": "المعرفة",
"Knowledge Access": "الوصول إلى المعرفة",
"Knowledge Base": "",
"Knowledge created successfully.": "تم إنشاء المعرفة بنجاح.",
"Knowledge deleted successfully.": "تم حذف المعرفة بنجاح.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "تم إعادة تعيين المعرفة بنجاح.",
"Knowledge updated successfully": "تم تحديث المعرفة بنجاح",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "لا يُسمح بالوصول إلى الموقع",
"Lost": "ضائع",
"Low": "",
"LTR": "من جهة اليسار إلى اليمين",
"Made by Open WebUI Community": "OpenWebUI تم إنشاؤه بواسطة مجتمع ",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"Max Upload Size": "الحد الأقصى لحجم الملف المرفوع",
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "يمكن تنزيل 3 نماذج كحد أقصى في وقت واحد. الرجاء معاودة المحاولة في وقت لاحق.",
"May": "مايو",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.",
"Memory": "الذاكرة",
"Memory added successfully": "تم إضافة الذاكرة بنجاح",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "معرّفات النماذج",
"Model Name": "اسم النموذج",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "لم تختار موديل",
"Model Params": "معلمات النموذج",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "الأسم",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "قم بتسمية قاعدة معرفتك",
"Native": "أصلي",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "لم يتم إنشاء استعلام بحث",
"No source available": "لا يوجد مصدر متاح",
"No users were found.": "لم يتم العثور على مستخدمين.",
"No valves": "",
"No valves to update": "لا توجد صمامات للتحديث",
"Node Ids": "",
"None": "اي",
"Not factually correct": "ليس صحيحا من حيث الواقع",
"Not helpful": "غير مفيد",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "البحث",
"Search a model": "البحث عن موديل",
"Search all emojis": "",
"Search Base": "قاعدة البحث",
"Search Chats": "البحث في الدردشات",
"Search Collection": "البحث في المجموعة",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "readme.md للحصول على التعليمات",
"See what's new": "ما الجديد",
"Seed": "Seed",
"Select": "",
"Select a base model": "حدد نموذجا أساسيا",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "اختر محركًا",
"Select a function": "اختر وظيفة",
"Select a group": "اختر مجموعة",
"Select a language": "",
"Select a mode": "",
"Select a model": "أختار الموديل",
"Select a model (optional)": "",
"Select a pipeline": "حدد مسارا",
"Select a pipeline url": "حدد عنوان URL لخط الأنابيب",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "اختر أداة",
"Select a voice": "",
"Select an auth method": "اختر طريقة التوثيق",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "اختر نسخة Ollama",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "اختر المحرك",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "اختر المعرفة",
"Select only one model to call": "اختر نموذجًا واحدًا فقط للاستدعاء",
"Selected model(s) do not support image inputs": "النموذج (النماذج) المحددة لا تدعم مدخلات الصور",
@ -1215,6 +1262,7 @@
"Serply API Key": "مفتاح API لـ Serply",
"Serpstack API Key": "مفتاح واجهة برمجة تطبيقات Serpstack",
"Server connection verified": "تم التحقق من اتصال الخادم",
"Session": "",
"Set as default": "الافتراضي",
"Set CFG Scale": "ضبط مقياس CFG",
"Set Default Model": "تفعيد الموديل الافتراضي",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"Skip Cache": "",
"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 SK": "",
"Source": "المصدر",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "(e.g. about the Roman Empire) الترجمة",
"Success": "نجاح",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "تم التحديث بنجاح",
"Suggest a change": "",
"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 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 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 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.": "درجة حرارة النموذج. زيادتها تجعل الإجابات أكثر إبداعًا.",
@ -1439,7 +1495,9 @@
"Upload Files": "تحميل الملفات",
"Upload Pipeline": "رفع خط المعالجة",
"Upload Progress": "جاري التحميل",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "الرابط",
"URL is required": "",
"URL Mode": "رابط الموديل",
"Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "استخدم الرمز '#' في خانة التوجيه لتحميل وإدراج المعرفة الخاصة بك.",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "يتم استخدام نموذج الساحة الافتراضي مع جميع النماذج. اضغط على زر + لإضافة نماذج مخصصة.",
"Valid time units:": "وحدات زمنية صالحة:",
"Validate certificate": "",
"Valves": "الصمامات",
"Valves updated": "تم تحديث الصمامات",
"Valves updated successfully": "تم تحديث الصمامات بنجاح",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (محلي)",
"Why?": "لماذا؟",
"Widescreen Mode": "وضع الشاشة العريضة",
"Width": "",
"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) تنتج نصًا أكثر تركيزًا وتحفظًا.",
"Workspace": "مساحة العمل",

View File

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

View File

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

View File

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

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} línies ocultes",
"{{COUNT}} Replies": "{{COUNT}} respostes",
"{{COUNT}} words": "{{COUNT}} paraules",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Els xats de {{user}}",
"{{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",
@ -29,6 +30,7 @@
"Account Activation Pending": "Activació del compte pendent",
"Accurate information": "Informació precisa",
"Action": "Acció",
"Action not found": "",
"Actions": "Accions",
"Activate": "Activar",
"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ó",
"Amazing": "Al·lucinant",
"an assistant": "un assistent",
"An error occurred while fetching the explanation": "",
"Analytics": "Analítica",
"Analyzed": "Analitzat",
"Analyzing...": "Analitzant...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Restriccions del punt d'accés de la Clau API",
"API keys": "Claus de l'API",
"API Version": "Versió de l'API",
"API Version is required": "",
"Application DN": "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\"",
@ -160,6 +164,7 @@
"Banners": "Banners",
"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.",
"Bearer": "",
"before": "abans",
"Being lazy": "Essent mandrós",
"Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Capturar àudio",
"Certificate Path": "Camí del certificat",
"Change Password": "Canviar la contrasenya",
"Channel deleted successfully": "",
"Channel Name": "Nom del canal",
"Channel updated successfully": "",
"Channels": "Canals",
"Character": "Personatge",
"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 settings modal": "Tancar el modal de configuració",
"Close Sidebar": "Tancar la barra lateral",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Bloc 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 Workflow": "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",
"Comment": "Comentari",
"Completions": "Completaments",
"Compress Images in Channels": "Comprimir imatges en els canals",
"Concurrent Requests": "Peticions simultànies",
"Config imported successfully": "",
"Configure": "Configurar",
"Confirm": "Confirmar",
"Confirm Password": "Confirmar la contrasenya",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "API de Datalab Marker requereix clau.",
"DD/MM/YYYY": "DD/MM/YYYY",
"December": "Desembre",
"Deepgram": "",
"Default": "Per defecte",
"Default (Open AI)": "Per defecte (Open AI)",
"Default (SentenceTransformers)": "Per defecte (SentenceTransformers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "Servidors d'eines directes",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "Deshabilitar l'interpret de codi",
"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.",
@ -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 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 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 Key": "Introdueix la clau API de Datalab Marker",
"Enter description": "Introdueix la descripció",
@ -510,6 +523,7 @@
"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 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 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})",
@ -563,6 +577,8 @@
"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://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 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",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Entra la URL del webhook",
"Error": "Error",
"ERROR": "ERROR",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Error en accedir a Google Drive: {{error}}",
"Error accessing media devices.": "Error en accedir als dispositius multimèdia",
"Error starting recording.": "Error en començar a enregistrar",
"Error unloading model: {{error}}": "Error en descarregar el model: {{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",
"Everyone": "Tothom",
"Exa API Key": "Clau API d'EXA",
@ -725,6 +744,7 @@
"H2": "H2",
"H3": "H3",
"Haptic Feedback": "Retorn hàptic",
"Height": "",
"Hello, {{name}}": "Hola, {{name}}",
"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!",
@ -733,6 +753,7 @@
"Hide": "Amaga",
"Hide from Sidebar": "Amagar de la barra lateral",
"Hide Model": "Amagar el model",
"High": "",
"High Contrast Mode": "Mode d'alt contrast",
"Home": "Inici",
"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.",
"Input": "Entrada",
"Input commands": "Entra comandes",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Variables d'entrada",
"Insert": "Inserir",
"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 format.": "Format d'arxiu 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 Tag": "Etiqueta no vàlida",
"is typing...": "està escrivint...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "Mantenir els missatges de seguiment en el xat",
"Keep in Sidebar": "Mantenir a la barra lateral",
"Key": "Clau",
"Key is required": "",
"Keyboard shortcuts": "Dreceres de teclat",
"Knowledge": "Coneixement",
"Knowledge Access": "Accés al coneixement",
"Knowledge Base": "Base de coneixement",
"Knowledge created successfully.": "Coneixement creat correctament.",
"Knowledge deleted successfully.": "Coneixement eliminat correctament.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Compartir públicament el Coneixement",
"Knowledge reset successfully.": "Coneixement restablert correctament.",
"Knowledge updated successfully": "Coneixement actualitzat correctament.",
@ -852,6 +878,7 @@
"Local Task Model": "Model local de tasques",
"Location access not allowed": "Accés a la ubicació no permesa",
"Lost": "Perdut",
"Low": "",
"LTR": "LTR",
"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",
@ -873,6 +900,7 @@
"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.",
"May": "Maig",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Les memòries accessibles pels models de llenguatge es mostraran aquí.",
"Memory": "Memòria",
"Memory added successfully": "Memòria afegida correctament",
@ -908,6 +936,7 @@
"Model ID is required.": "L'ID del model és necessari",
"Model IDs": "Identificadors 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 not selected": "Model no seleccionat",
"Model Params": "Paràmetres del model",
@ -926,6 +955,7 @@
"More Concise": "Més precís",
"More Options": "Més opcions",
"Name": "Nom",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Anomena la teva base de coneixement",
"Native": "Natiu",
"New Button": "Botó nou",
@ -960,7 +990,9 @@
"No search query generated": "No s'ha generat cap consulta",
"No source available": "Sense font disponible",
"No users were found.": "No s'han trobat usuaris",
"No valves": "",
"No valves to update": "No hi ha cap Valve per actualitzar",
"Node Ids": "",
"None": "Cap",
"Not factually correct": "No és clarament correcte",
"Not helpful": "No ajuda",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Fer scroll en canviar de branca",
"Search": "Cercar",
"Search a model": "Cercar un model",
"Search all emojis": "",
"Search Base": "Base de cerca",
"Search Chats": "Cercar xats",
"Search Collection": "Cercar col·leccions",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Consulta l'arxiu readme.md per obtenir instruccions",
"See what's new": "Veure què hi ha de nou",
"Seed": "Llavor",
"Select": "",
"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 engine": "Seleccionar un motor",
"Select a function": "Seleccionar una funció",
"Select a group": "Seleccionar un grup",
"Select a language": "",
"Select a mode": "",
"Select a model": "Seleccionar un model",
"Select a model (optional)": "",
"Select a pipeline": "Seleccionar 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 voice": "",
"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 output format": "",
"Select dtype": "",
"Select Engine": "Seleccionar el motor",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Seleccionar coneixement",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Clau API de Serply",
"Serpstack API Key": "Clau API de Serpstack",
"Server connection verified": "Connexió al servidor verificada",
"Session": "",
"Set as default": "Establir com a predeterminat",
"Set CFG Scale": "Establir l'escala CFG",
"Set Default Model": "Establir el model predeterminat",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"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.",
"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 SK": "SK de l'API de Sougou Search",
"Source": "Font",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Exportació en PDF estilitzat",
"Subtitle (e.g. about the Roman Empire)": "Subtítol (per exemple, sobre l'Imperi Romà)",
"Success": "Èxit",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Actualitzat correctament.",
"Suggest a change": "Suggerir un canvi",
"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 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 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 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.",
@ -1439,7 +1495,9 @@
"Upload Files": "Pujar fitxers",
"Upload Pipeline": "Pujar una Pipeline",
"Upload Progress": "Progrés de càrrega",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL",
"URL is required": "",
"URL Mode": "Mode URL",
"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.",
@ -1461,6 +1519,7 @@
"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.",
"Valid time units:": "Unitats de temps vàlides:",
"Validate certificate": "",
"Valves": "Valves",
"Valves updated": "Valves actualitzades",
"Valves updated successfully": "Valves actualitzades correctament",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (local)",
"Why?": "Per què?",
"Widescreen Mode": "Mode de pantalla ampla",
"Width": "",
"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.",
"Workspace": "Espai de treball",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "Backend {{webUIName}} gikinahanglan",
"*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "",
"Accurate information": "",
"Action": "",
"Action not found": "",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "",
"Amazing": "",
"an assistant": "usa ka katabang",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "",
"Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "",
"API keys": "",
"API Version": "",
"API Version is required": "",
"Application DN": "",
"Application DN Password": "",
"applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "",
"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.": "",
"Bearer": "",
"before": "",
"Being lazy": "",
"Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "",
"Change Password": "Usba ang password",
"Channel deleted successfully": "",
"Channel Name": "",
"Channel updated successfully": "",
"Channels": "",
"Character": "",
"Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"Code execution": "",
"Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "",
"ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Pag-order",
"Comment": "",
"Completions": "",
"Compress Images in Channels": "",
"Concurrent Requests": "",
"Config imported successfully": "",
"Configure": "",
"Confirm": "",
"Confirm Password": "Kumpirma ang password",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "",
"Deepgram": "",
"Default": "Pinaagi sa default",
"Default (Open AI)": "",
"Default (SentenceTransformers)": "",
@ -377,6 +388,7 @@
"Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "",
"Enter Google PSE API Key": "",
"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 Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "",
"Error": "",
"ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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": "",
"Everyone": "",
"Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "Maayong buntag, {{name}}",
"Help": "",
"Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "Tagoa",
"Hide from Sidebar": "",
"Hide Model": "",
"High": "",
"High Contrast Mode": "",
"Home": "",
"Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "Pagsulod sa input commands",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "",
"is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "",
"Key is required": "",
"Keyboard shortcuts": "Mga shortcut sa keyboard",
"Knowledge": "",
"Knowledge Access": "",
"Knowledge Base": "",
"Knowledge created successfully.": "",
"Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "",
"Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "",
"Lost": "",
"Low": "",
"LTR": "",
"Made by Open WebUI Community": "Gihimo sa komunidad sa OpenWebUI",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"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. ",
"May": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Memory added successfully": "",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "",
"Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Wala gipili ang modelo",
"Model Params": "",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Ngalan",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Native": "",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "",
"No source available": "Walay tinubdan nga anaa",
"No users were found.": "",
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"None": "",
"Not factually correct": "",
"Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Pagpanukiduki",
"Search a model": "",
"Search all emojis": "",
"Search Base": "",
"Search Chats": "",
"Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Tan-awa ang readme.md alang sa mga panudlo",
"See what's new": "Tan-awa unsay bag-o",
"Seed": "Binhi",
"Select": "",
"Select a base model": "",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "",
"Select a function": "",
"Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Pagpili og modelo",
"Select a model (optional)": "",
"Select a pipeline": "",
"Select a pipeline url": "",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "",
"Select a voice": "",
"Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"Select only one model to call": "",
"Selected model(s) do not support image inputs": "",
@ -1215,6 +1262,7 @@
"Serply API Key": "",
"Serpstack API Key": "",
"Server connection verified": "Gipamatud-an nga koneksyon sa server",
"Session": "",
"Set as default": "Define pinaagi sa default",
"Set CFG Scale": "",
"Set Default Model": "Ibutang ang default template",
@ -1265,6 +1313,12 @@
"sk-1234": "",
"Skip Cache": "",
"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 SK": "",
"Source": "Tinubdan",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "Kalampusan",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Malampuson nga na-update.",
"Suggest a change": "",
"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 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 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 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.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "",
"Upload Pipeline": "",
"Upload Progress": "Pag-uswag sa Pag-upload",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "",
"URL is required": "",
"URL Mode": "URL mode",
"Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "",
"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:",
"Validate certificate": "",
"Valves": "",
"Valves updated": "",
"Valves updated successfully": "",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "",
"Why?": "",
"Widescreen Mode": "",
"Width": "",
"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.": "",
"Workspace": "",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}'s konverzace",
"{{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ů",
@ -29,6 +30,7 @@
"Account Activation Pending": "Čeká na aktivaci účtu",
"Accurate information": "Přesné informace",
"Action": "",
"Action not found": "",
"Actions": "Akce",
"Activate": "",
"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": "",
"Amazing": "",
"an assistant": "asistent",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "",
"Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "",
"API keys": "API klíče",
"API Version": "",
"API Version is required": "",
"Application DN": "",
"Application DN Password": "",
"applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "Bannery",
"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.": "",
"Bearer": "",
"before": "před",
"Being lazy": "",
"Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "",
"Change Password": "Změnit heslo",
"Channel deleted successfully": "",
"Channel Name": "",
"Channel updated successfully": "",
"Channels": "",
"Character": "Znak",
"Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"Code execution": "Provádění kódu",
"Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "Je vyžadována základní URL pro ComfyUI.",
"ComfyUI Workflow": "Pracovní postup ComfyUI",
"ComfyUI Workflow Nodes": "Pracovní uzly ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Příkaz",
"Comment": "",
"Completions": "Doplnění",
"Compress Images in Channels": "",
"Concurrent Requests": "Současné požadavky",
"Config imported successfully": "",
"Configure": "Konfigurovat",
"Confirm": "Potvrdit",
"Confirm Password": "Potvrzení hesla",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "Prosinec",
"Deepgram": "",
"Default": "Výchozí hodnoty nebo nastavení.",
"Default (Open AI)": "Výchozí (Open AI)",
"Default (SentenceTransformers)": "Výchozí (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "Zadejte popis",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Zadejte URL adresu Github Raw",
"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 hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Zadejte velikost obrázku (např. 512x512)",
"Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Zadejte URL (např. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "",
"Error": "Chyba",
"ERROR": "Chyba",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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í",
"Everyone": "",
"Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "Haptická zpětná vazba",
"Height": "",
"Hello, {{name}}": "Ahoj, {{name}}",
"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!",
@ -733,6 +753,7 @@
"Hide": "Schovej",
"Hide from Sidebar": "",
"Hide Model": "",
"High": "",
"High Contrast Mode": "",
"Home": "",
"Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "Vstupní příkazy",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "Neplatný formát souboru.",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Neplatný tag",
"is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "",
"Key is required": "",
"Keyboard shortcuts": "Klávesové zkratky",
"Knowledge": "Znalosti",
"Knowledge Access": "",
"Knowledge Base": "",
"Knowledge created successfully.": "Znalost úspěšně vytvořena.",
"Knowledge deleted successfully.": "Znalosti byly úspěšně odstraněny.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Úspěšné obnovení znalostí.",
"Knowledge updated successfully": "Znalosti úspěšně aktualizovány",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "",
"Lost": "Ztracený",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Vytvořeno komunitou OpenWebUI",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"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.",
"May": "květen",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Vzpomínky přístupné LLMs budou zobrazeny zde.",
"Memory": "Paměť",
"Memory added successfully": "Paměť byla úspěšně přidána.",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "",
"Model Name": "Název modelu",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Model nebyl vybrán",
"Model Params": "Parametry modelu",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Jméno",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Native": "",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Nebyl vygenerován žádný vyhledávací dotaz.",
"No source available": "Není k dispozici žádný zdroj.",
"No users were found.": "",
"No valves": "",
"No valves to update": "Žádné ventily k aktualizaci",
"Node Ids": "",
"None": "Žádný",
"Not factually correct": "Není fakticky správné",
"Not helpful": "Nepomocné",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Vyhledávání",
"Search a model": "Vyhledat model",
"Search all emojis": "",
"Search Base": "",
"Search Chats": "Vyhledávání v chatu",
"Search Collection": "Hledat kolekci",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Podívejte se do {{readme.md}} pro pokyny.",
"See what's new": "Podívejte se, co je nového",
"Seed": "Semínko",
"Select": "",
"Select a base model": "Vyberte základní model",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "Vyberte engine",
"Select a function": "Vyberte funkci",
"Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Vyberte model",
"Select a model (optional)": "",
"Select a pipeline": "Vyberte pipeline",
"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 voice": "",
"Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Vyberte engine",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Vybrat znalosti",
"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ů.",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API klíč",
"Serpstack API Key": "Klíč API pro Serpstack",
"Server connection verified": "Připojení k serveru ověřeno",
"Session": "",
"Set as default": "Nastavit jako výchozí",
"Set CFG Scale": "Nastavte hodnotu CFG Scale",
"Set Default Model": "Nastavení výchozího modelu",
@ -1265,6 +1313,12 @@
"sk-1234": "",
"Skip Cache": "",
"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 SK": "",
"Source": "Zdroj",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Titulky (např. o Římské říši)",
"Success": "Úspěch",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Úspěšně aktualizováno.",
"Suggest a change": "",
"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 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 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 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.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Nahrát soubory",
"Upload Pipeline": "Nahrát pipeline",
"Upload Progress": "Průběh nahrávání",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "",
"URL is required": "",
"URL Mode": "Režim URL",
"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í.",
@ -1461,6 +1519,7 @@
"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.",
"Valid time units:": "Platné časové jednotky:",
"Validate certificate": "",
"Valves": "Ventily",
"Valves updated": "Ventily aktualizovány",
"Valves updated successfully": "Ventily byly úspěšně aktualizovány.",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Lokálně)",
"Why?": "Proč?",
"Widescreen Mode": "Režim širokoúhlého zobrazení",
"Width": "",
"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.": "",
"Workspace": "",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} skjulte linjer",
"{{COUNT}} Replies": "{{COUNT}} svar",
"{{COUNT}} words": "{{COUNT}} ord",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}s chats",
"{{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",
@ -29,6 +30,7 @@
"Account Activation Pending": "Aktivering af profil afventer",
"Accurate information": "Profilinformation",
"Action": "Handling",
"Action not found": "",
"Actions": "Handlinger",
"Activate": "Aktiver",
"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",
"Amazing": "Fantastisk",
"an assistant": "en assistent",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "Analyseret",
"Analyzing...": "Analyserer...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API nøgler endpoint forbehold",
"API keys": "API nøgler",
"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": "gælder for alle brugere med \"bruger\" rolle",
@ -160,6 +164,7 @@
"Banners": "Bannere",
"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.",
"Bearer": "",
"before": "før",
"Being lazy": "At være doven",
"Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Optag lyd",
"Certificate Path": "Certifikat sti",
"Change Password": "Skift password",
"Channel deleted successfully": "",
"Channel Name": "Kanalnavn",
"Channel updated successfully": "",
"Channels": "Kanaler",
"Character": "Karakterer",
"Character limit for autocomplete generation input": "Karaktergrænse for genereret autofuldførsel",
@ -238,6 +245,7 @@
"Close modal": "Luk dialogboks",
"Close settings modal": "Luk dialogboks med indstillinger",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Kodeblok",
"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 Workflow": "ComfyUI Workflow",
"ComfyUI Workflow Nodes": "ComfyUI Workflow Nodes",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Kommando",
"Comment": "Kommentar",
"Completions": "Completions",
"Compress Images in Channels": "",
"Concurrent Requests": "Concurrent requests",
"Config imported successfully": "",
"Configure": "Konfigurer",
"Confirm": "Bekræft",
"Confirm Password": "Bekræft password",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Datalab Marker API nøgle påkrævet.",
"DD/MM/YYYY": "DD/MM/ÅÅÅÅ",
"December": "december",
"Deepgram": "",
"Default": "Standard",
"Default (Open AI)": "Standard (Open AI)",
"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "Direkte værktøjsservere",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "Deaktiver kode interpreter",
"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.",
@ -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 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 coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "Indtast Datalab Marker API nøgle",
"Enter description": "Indtast beskrivelse",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Indtast Github Raw URL",
"Enter Google PSE API Key": "Indtast Google PSE API-nøgle",
"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 Jina API Key": "Indtast Jina API nøgle",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Indtast URL (f.eks. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"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 Username": "Indtast Yacy brugernavn",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Indtast din webhook URL",
"Error": "Fejl",
"ERROR": "FEJL",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Fejl ved adgang til Google Drive: {{error}}",
"Error accessing media devices.": "Fejl ved adgang til medieenheder.",
"Error starting recording.": "Fejl ved start af optagelse.",
"Error unloading model: {{error}}": "Fejl ved aflæsning af model: {{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",
"Everyone": "Alle",
"Exa API Key": "Exa API-nøgle",
@ -725,6 +744,7 @@
"H2": "H2",
"H3": "H3",
"Haptic Feedback": "Haptisk feedback",
"Height": "",
"Hello, {{name}}": "Hej {{name}}",
"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!",
@ -733,6 +753,7 @@
"Hide": "Skjul",
"Hide from Sidebar": "Skjul fra sidebaren",
"Hide Model": "Skjul model",
"High": "",
"High Contrast Mode": "Høj kontrast tilstand",
"Home": "Hjem",
"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.",
"Input": "",
"Input commands": "Inputkommandoer",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Input variable",
"Insert": "Indsæt",
"Insert Follow-Up Prompt to Input": "Indsæt opfølgningsprompt til input",
@ -789,6 +811,7 @@
"Invalid file content": "Ugyldigt filindhold",
"Invalid file format.": "Ugyldigt filformat.",
"Invalid JSON file": "Ugyldig JSON fil",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Ugyldigt tag",
"is typing...": "er i gang med at skrive...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "Behold opfølgningsprompts i chat",
"Keep in Sidebar": "Behold i sidebaren",
"Key": "Nøgle",
"Key is required": "",
"Keyboard shortcuts": "Tastaturgenveje",
"Knowledge": "Viden",
"Knowledge Access": "Videnadgang",
"Knowledge Base": "Vidensbase",
"Knowledge created successfully.": "Viden oprettet.",
"Knowledge deleted successfully.": "Viden slettet.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Viden offentlig deling",
"Knowledge reset successfully.": "Viden nulstillet.",
"Knowledge updated successfully": "Viden opdateret.",
@ -852,6 +878,7 @@
"Local Task Model": "Lokal opgavemodel",
"Location access not allowed": "Adgang til placering ikke tilladt",
"Lost": "Tabt",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Lavet af OpenWebUI Community",
"Make password visible in the user interface": "Gør adgangskode synlig i brugergrænsefladen",
@ -873,6 +900,7 @@
"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.",
"May": "Maj",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Minder, der er tilgængelige for LLM'er, vises her.",
"Memory": "Hukommelse",
"Memory added successfully": "Hukommelse tilføjet.",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "Model-ID'er",
"Model Name": "Modelnavn",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Model ikke valgt",
"Model Params": "Modelparametre",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Navn",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Navngiv din vidensbase",
"Native": "Indbygget",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Ingen søgeforespørgsel genereret",
"No source available": "Ingen kilde tilgængelig",
"No users were found.": "Ingen brugere blev fundet.",
"No valves": "",
"No valves to update": "Ingen ventiler at opdatere",
"Node Ids": "",
"None": "Ingen",
"Not factually correct": "Ikke faktuelt korrekt",
"Not helpful": "Ikke hjælpsom",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Scroll ved gren ændring",
"Search": "Søg",
"Search a model": "Søg efter en model",
"Search all emojis": "",
"Search Base": "Søgebase",
"Search Chats": "Søg i chats",
"Search Collection": "Søg i samling",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Se readme.md for instruktioner",
"See what's new": "Se, hvad der er nyt",
"Seed": "Seed",
"Select": "",
"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 engine": "Vælg en engine",
"Select a function": "Vælg en funktion",
"Select a group": "Vælg en gruppe",
"Select a language": "",
"Select a mode": "",
"Select a model": "Vælg en model",
"Select a model (optional)": "",
"Select a pipeline": "Vælg en pipeline",
"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 voice": "",
"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 output format": "",
"Select dtype": "",
"Select Engine": "Vælg engine",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Vælg viden",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API-nøgle",
"Serpstack API Key": "Serpstack API-nøgle",
"Server connection verified": "Serverforbindelse bekræftet",
"Session": "",
"Set as default": "Indstil som standard",
"Set CFG Scale": "Indstil CFG-skala",
"Set Default Model": "Indstil standardmodel",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"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.",
"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",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Stiliseret PDF eksport",
"Subtitle (e.g. about the Roman Empire)": "Undertitel (f.eks. om Romerriget)",
"Success": "Succes",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Opdateret.",
"Suggest a change": "",
"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 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 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 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.",
@ -1439,7 +1495,9 @@
"Upload Files": "Upload filer",
"Upload Pipeline": "Upload pipeline",
"Upload Progress": "Uploadfremdrift",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL",
"URL is required": "",
"URL Mode": "URL-tilstand",
"Usage": "Forbrug",
"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 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:",
"Validate certificate": "",
"Valves": "Ventiler",
"Valves updated": "Ventiler opdateret",
"Valves updated successfully": "Ventiler opdateret.",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (lokal)",
"Why?": "Hvorfor?",
"Widescreen Mode": "Widescreen-tilstand",
"Width": "",
"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.",
"Workspace": "Arbejdsområde",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} versteckte Zeilen",
"{{COUNT}} Replies": "{{COUNT}} Antworten",
"{{COUNT}} words": "{{COUNT}} Wörter",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}s Chats",
"{{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",
@ -29,6 +30,7 @@
"Account Activation Pending": "Kontoaktivierung ausstehend",
"Accurate information": "Präzise Information(en)",
"Action": "Aktion",
"Action not found": "",
"Actions": "Aktionen",
"Activate": "Aktivieren",
"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",
"Amazing": "Fantastisch",
"an assistant": "ein Assistent",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "Analysiert",
"Analyzing...": "Analysiere...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API-Schlüssel Endpunkteinschränkungen",
"API keys": "API-Schlüssel",
"API Version": "API Version",
"API Version is required": "",
"Application DN": "Anwendungs-DN",
"Application DN Password": "Anwendungs-DN-Passwort",
"applies to all users with the \"user\" role": "gilt für alle Benutzer mit der Rolle \"Benutzer\"",
@ -160,6 +164,7 @@
"Banners": "Banner",
"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.": "",
"Bearer": "",
"before": "bereits geteilt",
"Being lazy": "Faulheit",
"Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Audio aufzeichnen",
"Certificate Path": "Zertifikatpfad",
"Change Password": "Passwort ändern",
"Channel deleted successfully": "",
"Channel Name": "Kanalname",
"Channel updated successfully": "",
"Channels": "Kanäle",
"Character": "Zeichen",
"Character limit for autocomplete generation input": "Zeichenlimit für die Eingabe der automatischen Vervollständigung",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Codeblock",
"Code execution": "Codeausführung",
"Code Execution": "Codeausführung",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI-Basis-URL wird benötigt.",
"ComfyUI Workflow": "ComfyUI-Workflow",
"ComfyUI Workflow Nodes": "ComfyUI-Workflow-Knoten",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Befehl",
"Comment": "Kommentar",
"Completions": "Vervollständigungen",
"Compress Images in Channels": "",
"Concurrent Requests": "Anzahl gleichzeitiger Anfragen",
"Config imported successfully": "",
"Configure": "Konfigurieren",
"Confirm": "Bestätigen",
"Confirm Password": "Passwort bestätigen",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "TT/MM/JJJJ",
"December": "Dezember",
"Deepgram": "",
"Default": "Standard",
"Default (Open AI)": "Standard (Open AI)",
"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "Direkt verbundene Werkzeug-Server",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "Deaktivierte Code Interpreter",
"Disable Image Extraction": "Deaktivierte Bildextraktion",
"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 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 coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "",
"Enter description": "Geben Sie eine Beschreibung ein",
@ -510,6 +523,7 @@
"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 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 Jina API Key": "Geben Sie den Jina-API-Schlüssel ein",
"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 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 value": "",
"Enter value (true/false)": "",
"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 Username": "Yacy-Benutzernamen eingeben",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Geben Sie Ihre Webhook-URL ein",
"Error": "Fehler",
"ERROR": "FEHLER",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Fehler beim Zugriff auf Google Drive: {{error}}",
"Error accessing media devices.": "Fehler beim Zugreifen auf Mediengeräte",
"Error starting recording.": "Fehler beim Starten der Aufnahme",
"Error unloading model: {{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",
"Everyone": "",
"Exa API Key": "Exa-API-Schlüssel",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "Haptisches Feedback",
"Height": "",
"Hello, {{name}}": "Hallo, {{name}}",
"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!",
@ -733,6 +753,7 @@
"Hide": "Verbergen",
"Hide from Sidebar": "Von Seitenleiste entfernen",
"Hide Model": "Modell verstecken",
"High": "",
"High Contrast Mode": "Modus für hohen Kontrast",
"Home": "Startseite",
"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.",
"Input": "",
"Input commands": "Eingabebefehle",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Eingabe Variablen",
"Insert": "Einfügen",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "Ungültiger Dateiinhalt",
"Invalid file format.": "Ungültiges Dateiformat.",
"Invalid JSON file": "Ungültige JSON Datei",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Ungültiger Tag",
"is typing...": "schreibt ...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "In Seitenleiste anzeigen",
"Key": "Schlüssel",
"Key is required": "",
"Keyboard shortcuts": "Tastenkombinationen",
"Knowledge": "Wissen",
"Knowledge Access": "Wissenszugriff",
"Knowledge Base": "Wissensdatenbank",
"Knowledge created successfully.": "Wissen erfolgreich erstellt.",
"Knowledge deleted successfully.": "Wissen erfolgreich gelöscht.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Öffentliche Freigabe von Wissen",
"Knowledge reset successfully.": "Wissen erfolgreich zurückgesetzt.",
"Knowledge updated successfully": "Wissen erfolgreich aktualisiert",
@ -852,6 +878,7 @@
"Local Task Model": "Lokales Aufgabenmodell",
"Location access not allowed": "Standortzugriff nicht erlaubt",
"Lost": "Verloren",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Von der OpenWebUI-Community",
"Make password visible in the user interface": "Passwort im Benutzerinterface sichtbar machen",
@ -873,6 +900,7 @@
"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.",
"May": "Mai",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Erinnerungen, die für Modelle zugänglich sind, werden hier angezeigt.",
"Memory": "Erinnerungen",
"Memory added successfully": "Erinnerung erfolgreich hinzugefügt",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "Modell-IDs",
"Model Name": "Modell-Name",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Modell nicht ausgewählt",
"Model Params": "Modell-Parameter",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Name",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Benennen Sie Ihren Wissensspeicher",
"Native": "Nativ",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Keine Suchanfrage generiert",
"No source available": "Keine Quelle verfügbar",
"No users were found.": "Keine Benutzer gefunden.",
"No valves": "",
"No valves to update": "Keine Valves zum Aktualisieren",
"Node Ids": "",
"None": "Nichts",
"Not factually correct": "Nicht sachlich korrekt",
"Not helpful": "Nicht hilfreich",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Suchen",
"Search a model": "Modell suchen",
"Search all emojis": "",
"Search Base": "Suchbasis",
"Search Chats": "Chats durchsuchen...",
"Search Collection": "Sammlung durchsuchen",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Anleitung in readme.md anzeigen",
"See what's new": "Entdecken Sie die Neuigkeiten",
"Seed": "Seed",
"Select": "",
"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 engine": "Wählen Sie eine Engine",
"Select a function": "Wählen Sie eine Funktion",
"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 (optional)": "",
"Select a pipeline": "Wählen Sie eine Pipeline",
"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 voice": "",
"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 output format": "",
"Select dtype": "",
"Select Engine": "Engine auswählen",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Wissensdatenbank auswählen",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply-API-Schlüssel",
"Serpstack API Key": "Serpstack-API-Schlüssel",
"Server connection verified": "Serververbindung überprüft",
"Session": "",
"Set as default": "Als Standard festlegen",
"Set CFG Scale": "CFG-Skala festlegen",
"Set Default Model": "Standardmodell festlegen",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"Skip Cache": "Cache überspringen",
"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": "Quelle",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Stilisierter PDF-Export",
"Subtitle (e.g. about the Roman Empire)": "Untertitel (z. B. über das Römische Reich)",
"Success": "Erfolg",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Erfolgreich aktualisiert.",
"Suggest a change": "",
"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 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 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 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.",
@ -1439,7 +1495,9 @@
"Upload Files": "Datei(en) hochladen",
"Upload Pipeline": "Pipeline hochladen",
"Upload Progress": "Hochladefortschritt",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL",
"URL is required": "",
"URL Mode": "URL-Modus",
"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.",
@ -1461,6 +1519,7 @@
"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.",
"Valid time units:": "Gültige Zeiteinheiten:",
"Validate certificate": "",
"Valves": "Valves",
"Valves updated": "Valves aktualisiert",
"Valves updated successfully": "Valves erfolgreich aktualisiert",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (lokal)",
"Why?": "Warum?",
"Widescreen Mode": "Breitbildmodus",
"Width": "",
"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.",
"Workspace": "Arbeitsbereich",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "",
"{{webUIName}} Backend Required": "{{webUIName}} Backend Much Required",
"*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "",
"Accurate information": "",
"Action": "",
"Action not found": "",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "",
"Amazing": "",
"an assistant": "such assistant",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "",
"Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "",
"API keys": "",
"API Version": "",
"API Version is required": "",
"Application DN": "",
"Application DN Password": "",
"applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "",
"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.": "",
"Bearer": "",
"before": "",
"Being lazy": "",
"Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "",
"Change Password": "Change Password",
"Channel deleted successfully": "",
"Channel Name": "",
"Channel updated successfully": "",
"Channels": "",
"Character": "",
"Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"Code execution": "",
"Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "",
"ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Command",
"Comment": "",
"Completions": "",
"Compress Images in Channels": "",
"Concurrent Requests": "",
"Config imported successfully": "",
"Configure": "",
"Confirm": "",
"Confirm Password": "Confirm Password",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "",
"Deepgram": "",
"Default": "Default",
"Default (Open AI)": "",
"Default (SentenceTransformers)": "",
@ -377,6 +388,7 @@
"Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "",
"Enter Google PSE API Key": "",
"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 Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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 value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "",
"Error": "",
"ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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": "",
"Everyone": "",
"Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "Much helo, {{name}}",
"Help": "",
"Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "Hide",
"Hide from Sidebar": "",
"Hide Model": "",
"High": "",
"High Contrast Mode": "",
"Home": "",
"Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "Input commands",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "",
"is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "",
"Key is required": "",
"Keyboard shortcuts": "Keyboard Barkcuts",
"Knowledge": "",
"Knowledge Access": "",
"Knowledge Base": "",
"Knowledge created successfully.": "",
"Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "",
"Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "",
"Lost": "",
"Low": "",
"LTR": "",
"Made by Open WebUI Community": "Made by Open WebUI Community",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"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": "",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "",
"Memory": "",
"Memory added successfully": "",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "",
"Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Model not selected",
"Model Params": "",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Name",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Native": "",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "",
"No source available": "No source available",
"No users were found.": "",
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"None": "",
"Not factually correct": "",
"Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Search very search",
"Search a model": "",
"Search all emojis": "",
"Search Base": "",
"Search Chats": "",
"Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "See readme.md for instructions wow",
"See what's new": "See what's new so amaze",
"Seed": "Seed very plant",
"Select": "",
"Select a base model": "",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "",
"Select a function": "",
"Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Select a model much choice",
"Select a model (optional)": "",
"Select a pipeline": "",
"Select a pipeline url": "",
"Select a reranking model engine": "",
"Select a role": "",
"Select a theme": "",
"Select a tool": "",
"Select a voice": "",
"Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"Select only one model to call": "",
"Selected model(s) do not support image inputs": "",
@ -1215,6 +1262,7 @@
"Serply API Key": "",
"Serpstack API Key": "",
"Server connection verified": "Server connection verified much secure",
"Session": "",
"Set as default": "Set as default very default",
"Set CFG Scale": "",
"Set Default Model": "Set Default Model much model",
@ -1265,6 +1313,12 @@
"sk-1234": "",
"Skip Cache": "",
"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 SK": "",
"Source": "Source",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "",
"Success": "Success very success",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Successfully updated. Very updated.",
"Suggest a change": "",
"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 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 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 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.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "",
"Upload Pipeline": "",
"Upload Progress": "Upload Progress much progress",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "",
"URL is required": "",
"URL Mode": "URL Mode much mode",
"Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "Valid time units: much time",
"Validate certificate": "",
"Valves": "",
"Valves updated": "",
"Valves updated successfully": "",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "",
"Why?": "",
"Widescreen Mode": "",
"Width": "",
"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.": "",
"Workspace": "",

View File

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

View File

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

View File

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

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} líneas ocultas",
"{{COUNT}} Replies": "{{COUNT}} Respuestas",
"{{COUNT}} words": "{{COUNT}} palabras",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Chats de {{user}}",
"{{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",
@ -29,6 +30,7 @@
"Account Activation Pending": "Activación de cuenta Pendiente",
"Accurate information": "Información precisa",
"Action": "Acción",
"Action not found": "",
"Actions": "Acciones",
"Activate": "Activar",
"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",
"Amazing": "Emocionante",
"an assistant": "un asistente",
"An error occurred while fetching the explanation": "",
"Analytics": "Analíticas",
"Analyzed": "Analizado",
"Analyzing...": "Analizando..",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Clave API para Endpoints Restringidos",
"API keys": "Claves API",
"API Version": "Version API",
"API Version is required": "",
"Application DN": "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\" ",
@ -160,6 +164,7 @@
"Banners": "Banners",
"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.",
"Bearer": "",
"before": "antes",
"Being lazy": "Ser perezoso",
"Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Capturar Audio",
"Certificate Path": "Ruta a Certificado",
"Change Password": "Cambiar Contraseña",
"Channel deleted successfully": "",
"Channel Name": "Nombre del Canal",
"Channel updated successfully": "",
"Channels": "Canal",
"Character": "Carácter",
"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 settings modal": "Cerrar modal configuraciones",
"Close Sidebar": "Cerrar Barra Lateral",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Bloque 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 Workflow": "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",
"Comment": "Comentario",
"Completions": "Cumplimientos",
"Compress Images in Channels": "Comprimir Imágenes en Canales",
"Concurrent Requests": "Número de Solicitudes Concurrentes",
"Config imported successfully": "",
"Configure": "Configurar",
"Confirm": "Confirmar",
"Confirm Password": "Confirma Contraseña",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Clave API de Datalab Marker Requerida",
"DD/MM/YYYY": "DD/MM/YYYY",
"December": "Diciembre",
"Deepgram": "",
"Default": "Predeterminado",
"Default (Open AI)": "Predeterminado (Open AI)",
"Default (SentenceTransformers)": "Predeterminado (SentenceTransformers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "Servidores de Herramientas Directos",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "Deshabilitar Interprete de Código",
"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).",
@ -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 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 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 Key": "Ingresar Clave API de Datalab Marker",
"Enter description": "Ingresar Descripción",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Ingresar URL Github en Bruto(raw)",
"Enter Google PSE API Key": "Ingresar Clave API de Google PSE",
"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 Jina API Key": "Ingresar Clave API de Jina",
"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 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 value": "",
"Enter value (true/false)": "",
"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 Username": "Ingresar Nombre de Usuario de Yacy",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Ingresa tu URL de webhook",
"Error": "Error",
"ERROR": "ERROR",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Error accediendo a Google Drive: {{error}}",
"Error accessing media devices.": "Error accediendo a dispositivos de medios.",
"Error starting recording.": "Error al comenzar la grabación.",
"Error unloading model: {{error}}": "Error subiendo el modelo: {{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",
"Everyone": "Todos",
"Exa API Key": "Clave API de Exa",
@ -725,6 +744,7 @@
"H2": "H2",
"H3": "H3",
"Haptic Feedback": "Realimentación Háptica",
"Height": "",
"Hello, {{name}}": "Hola, {{name}}",
"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!",
@ -733,6 +753,7 @@
"Hide": "Esconder",
"Hide from Sidebar": "Ocultar Panel Lateral",
"Hide Model": "Ocultar Modelo",
"High": "",
"High Contrast Mode": "Modo Alto Contraste",
"Home": "Inicio",
"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.",
"Input": "Entrada",
"Input commands": "Ingresar comandos",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Ingresar variables",
"Insert": "Insertar",
"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 format.": "Formato de archivo 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 Tag": "Etiqueta Inválida",
"is typing...": "está escribiendo...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "Mantener Sugerencias de Indicador en el Chat",
"Keep in Sidebar": "Mantener en Barra Lateral",
"Key": "Clave",
"Key is required": "",
"Keyboard shortcuts": "Atajos de teclado",
"Knowledge": "Conocimiento",
"Knowledge Access": "Acceso a Conocimiento",
"Knowledge Base": "Base de Conocimiento",
"Knowledge created successfully.": "Conocimiento creado correctamente.",
"Knowledge deleted successfully.": "Conocimiento eliminado correctamente.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Compartir Conocimiento Públicamente",
"Knowledge reset successfully.": "Conocimiento restablecido correctamente.",
"Knowledge updated successfully": "Conocimiento actualizado correctamente.",
@ -852,6 +878,7 @@
"Local Task Model": "Modelo Local para Tarea",
"Location access not allowed": "Sin acceso a la Ubicación",
"Lost": "Perdido",
"Low": "",
"LTR": "LTR",
"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.",
@ -873,6 +900,7 @@
"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.",
"May": "Mayo",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Las memorias accesibles por los LLMs se mostrarán aquí.",
"Memory": "Memoria",
"Memory added successfully": "Memoria añadida correctamente",
@ -908,6 +936,7 @@
"Model ID is required.": "El ID de Modelo es requerido",
"Model IDs": "IDs 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 not selected": "Modelo no seleccionado",
"Model Params": "Paráms Modelo",
@ -926,6 +955,7 @@
"More Concise": "Más Conciso",
"More Options": "Más Opciones",
"Name": "Nombre",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nombra tu base de conocimientos",
"Native": "Nativo",
"New Button": "Nuevo Botón",
@ -960,7 +990,9 @@
"No search query generated": "No se generó ninguna consulta de búsqueda",
"No source available": "No hay fuente disponible",
"No users were found.": "No se encontraron usuarios.",
"No valves": "",
"No valves to update": "No hay válvulas para actualizar",
"Node Ids": "",
"None": "Ninguno",
"Not factually correct": "No es correcto en todos los aspectos",
"Not helpful": "No aprovechable",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Desplazamiento al Cambiar Rama",
"Search": "Buscar",
"Search a model": "Buscar un Modelo",
"Search all emojis": "",
"Search Base": "Busqueda Base",
"Search Chats": "Buscar Chats",
"Search Collection": "Buscar Colección",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Ver readme.md para instrucciones",
"See what's new": "Ver las novedades",
"Seed": "Semilla",
"Select": "",
"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 engine": "Seleccionar un motor",
"Select a function": "Seleccionar una función",
"Select a group": "Seleccionar un grupo",
"Select a language": "",
"Select a mode": "",
"Select a model": "Selecciona un modelo",
"Select a model (optional)": "",
"Select a pipeline": "Seleccionar una 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 voice": "",
"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 output format": "",
"Select dtype": "",
"Select Engine": "Seleccionar Motor",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Seleccionar Conocimiento",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Clave API de Serply",
"Serpstack API Key": "Clave API de Serpstack",
"Server connection verified": "Conexión al servidor verificada",
"Session": "",
"Set as default": "Establecer como Predeterminado",
"Set CFG Scale": "Establecer la Escala CFG",
"Set Default Model": "Establecer Modelo Predeterminado",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"Skip Cache": "Evitar Caché",
"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 SK": "SK API de Sougou Search",
"Source": "Fuente",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Exportar PDF Estilizado",
"Subtitle (e.g. about the Roman Empire)": "Subtítulo (p.ej. sobre el Imperio Romano)",
"Success": "Correcto",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Actualizado correctamente.",
"Suggest a change": "Sugerir un cambio",
"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 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 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 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.",
@ -1439,7 +1495,9 @@
"Upload Files": "Subir Archivos",
"Upload Pipeline": "Subir Tubería",
"Upload Progress": "Progreso de la Subida",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL",
"URL is required": "",
"URL Mode": "Modo URL",
"Usage": "Uso",
"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 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:",
"Validate certificate": "",
"Valves": "Válvulas",
"Valves updated": "Válvulas actualizadas",
"Valves updated successfully": "Válvulas actualizados correctamente",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Local)",
"Why?": "¿Por qué?",
"Widescreen Mode": "Modo Pantalla Ancha",
"Width": "",
"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.",
"Workspace": "Espacio de Trabajo",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} peidetud rida",
"{{COUNT}} Replies": "{{COUNT}} vastust",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} vestlused",
"{{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",
@ -29,6 +30,7 @@
"Account Activation Pending": "Konto aktiveerimine ootel",
"Accurate information": "Täpne informatsioon",
"Action": "",
"Action not found": "",
"Actions": "Toimingud",
"Activate": "Aktiveeri",
"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": "",
"Amazing": "Suurepärane",
"an assistant": "assistent",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "Analüüsitud",
"Analyzing...": "Analüüsimine...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API võtme lõpp-punkti piirangud",
"API keys": "API võtmed",
"API Version": "",
"API Version is required": "",
"Application DN": "Rakenduse DN",
"Application DN Password": "Rakenduse DN parool",
"applies to all users with the \"user\" role": "kehtib kõigile kasutajatele \"kasutaja\" rolliga",
@ -160,6 +164,7 @@
"Banners": "Bännerid",
"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.": "",
"Bearer": "",
"before": "enne",
"Being lazy": "Laisklemine",
"Beta": "Beeta",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "Sertifikaadi tee",
"Change Password": "Muuda parooli",
"Channel deleted successfully": "",
"Channel Name": "Kanali nimi",
"Channel updated successfully": "",
"Channels": "Kanalid",
"Character": "Tegelane",
"Character limit for autocomplete generation input": "Märkide piirang automaattäitmise genereerimise sisendile",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"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 Workflow": "ComfyUI töövoog",
"ComfyUI Workflow Nodes": "ComfyUI töövoo sõlmed",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Käsk",
"Comment": "",
"Completions": "Lõpetamised",
"Compress Images in Channels": "",
"Concurrent Requests": "Samaaegsed päringud",
"Config imported successfully": "",
"Configure": "Konfigureeri",
"Confirm": "Kinnita",
"Confirm Password": "Kinnita parool",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "Detsember",
"Deepgram": "",
"Default": "Vaikimisi",
"Default (Open AI)": "Vaikimisi (Open AI)",
"Default (SentenceTransformers)": "Vaikimisi (SentenceTransformers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "Sisestage kirjeldus",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Sisestage Github toorURL",
"Enter Google PSE API Key": "Sisestage Google PSE API võti",
"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 Jina API Key": "Sisestage Jina API võti",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Sisestage URL (nt http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Sisestage oma webhook URL",
"Error": "Viga",
"ERROR": "VIGA",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Viga Google Drive'i juurdepääsul: {{error}}",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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",
"Everyone": "",
"Exa API Key": "Exa API võti",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "Haptiline tagasiside",
"Height": "",
"Hello, {{name}}": "Tere, {{name}}",
"Help": "Abi",
"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 from Sidebar": "",
"Hide Model": "",
"High": "",
"High Contrast Mode": "",
"Home": "Avaleht",
"Host": "Host",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "Sisendkäsud",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "Vigane failiformaat.",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Vigane silt",
"is typing...": "kirjutab...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "Võti",
"Key is required": "",
"Keyboard shortcuts": "Klaviatuuri otseteed",
"Knowledge": "Teadmised",
"Knowledge Access": "Teadmiste juurdepääs",
"Knowledge Base": "",
"Knowledge created successfully.": "Teadmised edukalt loodud.",
"Knowledge deleted successfully.": "Teadmised edukalt kustutatud.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Teadmised edukalt lähtestatud.",
"Knowledge updated successfully": "Teadmised edukalt uuendatud",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "Asukoha juurdepääs pole lubatud",
"Lost": "Kaotanud",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Loodud Open WebUI kogukonna poolt",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"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.",
"May": "Mai",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLM-idele ligipääsetavad mälestused kuvatakse siin.",
"Memory": "Mälu",
"Memory added successfully": "Mälu edukalt lisatud",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "Mudeli ID-d",
"Model Name": "Mudeli nimi",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Mudel pole valitud",
"Model Params": "Mudeli parameetrid",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Nimi",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nimetage oma teadmiste baas",
"Native": "Omane",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Otsingupäringut ei genereeritud",
"No source available": "Allikas pole saadaval",
"No users were found.": "Kasutajaid ei leitud.",
"No valves": "",
"No valves to update": "Pole klappe, mida uuendada",
"Node Ids": "",
"None": "Mitte ühtegi",
"Not factually correct": "Faktiliselt ebakorrektne",
"Not helpful": "Pole abistav",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Otsing",
"Search a model": "Otsi mudelit",
"Search all emojis": "",
"Search Base": "Otsingu baas",
"Search Chats": "Otsi vestlusi",
"Search Collection": "Otsi kogust",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Juhiste saamiseks vaadake readme.md",
"See what's new": "Vaata, mis on uut",
"Seed": "Seeme",
"Select": "",
"Select a base model": "Valige baas mudel",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "Valige mootor",
"Select a function": "Valige funktsioon",
"Select a group": "Valige grupp",
"Select a language": "",
"Select a mode": "",
"Select a model": "Valige mudel",
"Select a model (optional)": "",
"Select a pipeline": "Valige torustik",
"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 voice": "",
"Select an auth method": "Valige autentimismeetod",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Valige Ollama instants",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Valige mootor",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Valige teadmised",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API võti",
"Serpstack API Key": "Serpstack API võti",
"Server connection verified": "Serveri ühendus kontrollitud",
"Session": "",
"Set as default": "Määra vaikimisi",
"Set CFG Scale": "Määra CFG skaala",
"Set Default Model": "Määra vaikimisi mudel",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"Skip Cache": "",
"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 SK": "",
"Source": "Allikas",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Alampealkiri (nt Rooma impeeriumi kohta)",
"Success": "Õnnestus",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Edukalt uuendatud.",
"Suggest a change": "",
"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 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 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 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.",
@ -1439,7 +1495,9 @@
"Upload Files": "Laadi failid üles",
"Upload Pipeline": "Laadi torustik üles",
"Upload Progress": "Üleslaadimise progress",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL",
"URL is required": "",
"URL Mode": "URL režiim",
"Usage": "",
"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 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:",
"Validate certificate": "",
"Valves": "Klapid",
"Valves updated": "Klapid uuendatud",
"Valves updated successfully": "Klapid edukalt uuendatud",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (lokaalne)",
"Why?": "Miks?",
"Widescreen Mode": "Laiekraani režiim",
"Width": "",
"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.",
"Workspace": "Tööala",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}-ren Txatak",
"{{webUIName}} Backend Required": "{{webUIName}} Backend-a Beharrezkoa",
"*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",
"Accurate information": "Informazio zehatza",
"Action": "",
"Action not found": "",
"Actions": "Ekintzak",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "\"/{{COMMAND}}\" idatziz aktibatu komando hau txataren sarreran.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "",
"Amazing": "Harrigarria",
"an assistant": "laguntzaile bat",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "",
"Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "",
"API keys": "API gakoak",
"API Version": "",
"API Version is required": "",
"Application DN": "Aplikazioaren DN",
"Application DN Password": "Aplikazioaren DN Pasahitza",
"applies to all users with the \"user\" role": "\"erabiltzaile\" rola duten erabiltzaile guztiei aplikatzen zaie",
@ -160,6 +164,7 @@
"Banners": "Bannerrak",
"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.": "",
"Bearer": "",
"before": "aurretik",
"Being lazy": "Alferra izatea",
"Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "Ziurtagiriaren Bidea",
"Change Password": "Aldatu Pasahitza",
"Channel deleted successfully": "",
"Channel Name": "",
"Channel updated successfully": "",
"Channels": "",
"Character": "Karakterea",
"Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"Code execution": "Kodearen exekuzioa",
"Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI Oinarri URLa beharrezkoa da.",
"ComfyUI Workflow": "ComfyUI Lan-fluxua",
"ComfyUI Workflow Nodes": "ComfyUI Lan-fluxu Nodoak",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Komandoa",
"Comment": "",
"Completions": "Osatzeak",
"Compress Images in Channels": "",
"Concurrent Requests": "Eskari Konkurrenteak",
"Config imported successfully": "",
"Configure": "Konfiguratu",
"Confirm": "Berretsi",
"Confirm Password": "Berretsi Pasahitza",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "Abendua",
"Deepgram": "",
"Default": "Lehenetsia",
"Default (Open AI)": "Lehenetsia (Open AI)",
"Default (SentenceTransformers)": "Lehenetsia (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "Sartu deskribapena",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Sartu Github Raw URLa",
"Enter Google PSE API Key": "Sartu Google PSE API Gakoa",
"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 Jina API Key": "Sartu Jina API Gakoa",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Sartu URLa (adib. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "",
"Error": "Errorea",
"ERROR": "ERROREA",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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",
"Everyone": "",
"Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "Feedback Haptikoa",
"Height": "",
"Hello, {{name}}": "Kaixo, {{name}}",
"Help": "Laguntza",
"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 from Sidebar": "",
"Hide Model": "",
"High": "",
"High Contrast Mode": "",
"Home": "",
"Host": "Ostalaria",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "Sartu komandoak",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "Fitxategi formatu baliogabea.",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Etiketa Baliogabea",
"is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "Gakoa",
"Key is required": "",
"Keyboard shortcuts": "Teklatuko lasterbideak",
"Knowledge": "Ezagutza",
"Knowledge Access": "Ezagutzarako Sarbidea",
"Knowledge Base": "",
"Knowledge created successfully.": "Ezagutza ongi sortu da.",
"Knowledge deleted successfully.": "Ezagutza ongi ezabatu da.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Ezagutza ongi berrezarri da.",
"Knowledge updated successfully": "Ezagutza ongi eguneratu da.",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "",
"Lost": "Galduta",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "OpenWebUI Komunitateak egina",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"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.",
"May": "Maiatza",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLMek atzitu ditzaketen memoriak hemen erakutsiko dira.",
"Memory": "Memoria",
"Memory added successfully": "Memoria ongi gehitu da",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "Modelo IDak",
"Model Name": "Modeloaren izena",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Ez da modelorik hautatu",
"Model Params": "Modelo parametroak",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Izena",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Izendatu zure ezagutza-basea",
"Native": "",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Ez da bilaketa kontsultarik sortu",
"No source available": "Ez dago iturririk eskuragarri",
"No users were found.": "Ez da erabiltzailerik aurkitu.",
"No valves": "",
"No valves to update": "Ez dago balbularik eguneratzeko",
"Node Ids": "",
"None": "Bat ere ez",
"Not factually correct": "Ez da faktikoki zuzena",
"Not helpful": "Ez da lagungarria",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Bilatu",
"Search a model": "Bilatu modelo bat",
"Search all emojis": "",
"Search Base": "Bilaketa oinarria",
"Search Chats": "Bilatu txatak",
"Search Collection": "Bilatu bilduma",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Ikusi readme.md argibideetarako",
"See what's new": "Ikusi berritasunak",
"Seed": "Hazia",
"Select": "",
"Select a base model": "Hautatu oinarrizko modeloa",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "Hautatu motor bat",
"Select a function": "Hautatu funtzio bat",
"Select a group": "Hautatu talde bat",
"Select a language": "",
"Select a mode": "",
"Select a model": "Hautatu modelo bat",
"Select a model (optional)": "",
"Select a pipeline": "Hautatu pipeline 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 voice": "",
"Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Hautatu motorra",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Hautatu ezagutza",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API gakoa",
"Serpstack API Key": "Serpstack API gakoa",
"Server connection verified": "Zerbitzari konexioa egiaztatuta",
"Session": "",
"Set as default": "Ezarri lehenetsi gisa",
"Set CFG Scale": "Ezarri CFG eskala",
"Set Default Model": "Ezarri lehenetsi modeloa",
@ -1265,6 +1313,12 @@
"sk-1234": "",
"Skip Cache": "",
"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 SK": "",
"Source": "Iturria",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Azpititulua (adib. Erromatar Inperioari buruz)",
"Success": "Arrakasta",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Ongi eguneratu da.",
"Suggest a change": "",
"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 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 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 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.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Kargatu fitxategiak",
"Upload Pipeline": "Kargatu Pipeline-a",
"Upload Progress": "Kargaren aurrerapena",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URLa",
"URL is required": "",
"URL Mode": "URL modua",
"Usage": "",
"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 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:",
"Validate certificate": "",
"Valves": "Balbulak",
"Valves updated": "Balbulak eguneratuta",
"Valves updated successfully": "Balbulak ongi eguneratu dira",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Lokala)",
"Why?": "Zergatik?",
"Widescreen Mode": "Pantaila zabaleko modua",
"Width": "",
"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.": "",
"Workspace": "Lan-eremua",

View File

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

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} piilotettua riviä",
"{{COUNT}} Replies": "{{COUNT}} vastausta",
"{{COUNT}} words": "{{COUNT}} sanaa",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}:n keskustelut",
"{{webUIName}} Backend Required": "{{webUIName}}-backend vaaditaan",
"*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",
"Accurate information": "Tarkkaa tietoa",
"Action": "Toiminto",
"Action not found": "",
"Actions": "Toiminnot",
"Activate": "Aktivoi",
"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",
"Amazing": "Hämmästyttävä",
"an assistant": "avustaja",
"An error occurred while fetching the explanation": "",
"Analytics": "Analytiikka",
"Analyzed": "Analysoitu",
"Analyzing...": "Analysoidaan..",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API-avaimen päätepiste rajoitukset",
"API keys": "API-avaimet",
"API Version": "API-versio",
"API Version is required": "",
"Application DN": "Sovelluksen DN",
"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",
@ -160,6 +164,7 @@
"Banners": "Bannerit",
"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.": "",
"Bearer": "",
"before": "ennen",
"Being lazy": "Oli laiska",
"Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Kaappaa ääntä",
"Certificate Path": "Varmennepolku",
"Change Password": "Vaihda salasana",
"Channel deleted successfully": "",
"Channel Name": "Kanavan nimi",
"Channel updated successfully": "",
"Channels": "Kanavat",
"Character": "Kirjain",
"Character limit for autocomplete generation input": "Automaattisen täydennyksen syötteen merkkiraja",
@ -238,6 +245,7 @@
"Close modal": "Sulje modaali",
"Close settings modal": "Sulje asetus modaali",
"Close Sidebar": "Sulje sivupalkki",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Koodiblokki",
"Code execution": "Koodin suoritus",
"Code Execution": "Koodin Suoritus",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI verkko-osoite vaaditaan.",
"ComfyUI Workflow": "ComfyUI-työnkulku",
"ComfyUI Workflow Nodes": "ComfyUI-työnkulun solmut",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Komento",
"Comment": "Kommentti",
"Completions": "Täydennykset",
"Compress Images in Channels": "Pakkaa kuvat kanavissa",
"Concurrent Requests": "Samanaikaiset pyynnöt",
"Config imported successfully": "",
"Configure": "Määritä",
"Confirm": "Vahvista",
"Confirm Password": "Vahvista salasana",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Datalab Marker API-avain vaaditaan.",
"DD/MM/YYYY": "DD/MM/YYYY",
"December": "joulukuu",
"Deepgram": "",
"Default": "Oletus",
"Default (Open AI)": "Oletus (Open AI)",
"Default (SentenceTransformers)": "Oletus (SentenceTransformers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "Suorat työkalu palvelimet",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "Poista Koodin suoritus 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ä.",
@ -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 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 coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "Kirjoita Datalab Marker API verkko-osoite",
"Enter Datalab Marker API Key": "Kirjoita Datalab Marker API-avain",
"Enter description": "Kirjoita kuvaus",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Kirjoita Github Raw -verkko-osoite",
"Enter Google PSE API Key": "Kirjoita Google PSE API -avain",
"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 Jina API Key": "Kirjoita Jina API -avain",
"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 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 value": "",
"Enter value (true/false)": "",
"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 Username": "Kirjoita Yacy käyttäjänimi",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Kirjoita webhook osoitteesi",
"Error": "Virhe",
"ERROR": "VIRHE",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Virhe yhdistäessä Google Drive: {{error}}",
"Error accessing media devices.": "Virhe medialaitteita käytettäessä.",
"Error starting recording.": "Virhe nauhoitusta aloittaessa.",
"Error unloading model: {{error}}": "Virhe mallia ladattaessa: {{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",
"Everyone": "Kaikki",
"Exa API Key": "Exa API -avain",
@ -725,6 +744,7 @@
"H2": "H2",
"H3": "H3",
"Haptic Feedback": "Haptinen palaute",
"Height": "",
"Hello, {{name}}": "Hei, {{name}}",
"Help": "Ohje",
"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 from Sidebar": "Piilota sivupalkista",
"Hide Model": "Piilota malli",
"High": "",
"High Contrast Mode": "Korkean kontrastin tila",
"Home": "Koti",
"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.",
"Input": "Syöte",
"Input commands": "Syötekäskyt",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Syötteen muuttujat",
"Insert": "Lisää",
"Insert Follow-Up Prompt to Input": "Lisää jatkokysymys syötteeseen",
@ -789,6 +811,7 @@
"Invalid file content": "Virheellinen tiedostosisältö",
"Invalid file format.": "Virheellinen tiedostomuoto.",
"Invalid JSON file": "Virheellinen JSON tiedosto",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "Virheellinen JSON muotoilu lisäasetuksissa",
"Invalid Tag": "Virheellinen tagi",
"is typing...": "Kirjoittaa...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "Säilytä jatkokysymys kehoitteet keskustelussa",
"Keep in Sidebar": "Pidä sivupalkissa",
"Key": "Avain",
"Key is required": "",
"Keyboard shortcuts": "Pikanäppäimet",
"Knowledge": "Tietämys",
"Knowledge Access": "Tiedon käyttöoikeus",
"Knowledge Base": "Tietokanta",
"Knowledge created successfully.": "Tietokanta luotu onnistuneesti.",
"Knowledge deleted successfully.": "Tietokanta poistettu onnistuneesti.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Tietokannan julkinen jakaminen",
"Knowledge reset successfully.": "Tietokanta nollattu onnistuneesti.",
"Knowledge updated successfully": "Tietokanta päivitetty onnistuneesti",
@ -852,6 +878,7 @@
"Local Task Model": "Paikallinen työmalli",
"Location access not allowed": "Ei pääsyä sijaintitietoihin",
"Lost": "Mennyt",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Tehnyt OpenWebUI-yhteisö",
"Make password visible in the user interface": "Näytä salasana käyttöliittymässä",
@ -873,6 +900,7 @@
"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.",
"May": "toukokuu",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Muistitiedostot, joita LLM-ohjelmat käyttävät, näkyvät tässä.",
"Memory": "Muisti",
"Memory added successfully": "Muisti lisätty onnistuneesti",
@ -908,6 +936,7 @@
"Model ID is required.": "Mallin tunnus on pakollinen",
"Model IDs": "Mallitunnukset",
"Model Name": "Mallin nimi",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "Mallin nimi on pakollinen",
"Model not selected": "Mallia ei ole valittu",
"Model Params": "Mallin parametrit",
@ -926,6 +955,7 @@
"More Concise": "Ytimekkäämpi",
"More Options": "Lisää vaihtoehtoja",
"Name": "Nimi",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Anna tietokannalle nimi",
"Native": "Natiivi",
"New Button": "Uusi painike",
@ -960,7 +990,9 @@
"No search query generated": "Hakukyselyä ei luotu",
"No source available": "Lähdettä ei saatavilla",
"No users were found.": "Käyttäjiä ei löytynyt.",
"No valves": "",
"No valves to update": "Ei venttiileitä päivitettäväksi",
"Node Ids": "",
"None": "Ei mikään",
"Not factually correct": "Ei faktuaalisesti oikein",
"Not helpful": "Ei hyödyllinen",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Vieritä haaran vaihtoon",
"Search": "Haku",
"Search a model": "Hae mallia",
"Search all emojis": "",
"Search Base": "Hakupohja",
"Search Chats": "Hae keskusteluja",
"Search Collection": "Hae kokoelmaa",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Katso ohjeet readme.md-tiedostosta",
"See what's new": "Katso, mitä uutta",
"Seed": "Siemenluku",
"Select": "",
"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 engine": "Valitse moottori",
"Select a function": "Valitse toiminto",
"Select a group": "Valitse ryhmä",
"Select a language": "",
"Select a mode": "",
"Select a model": "Valitse malli",
"Select a model (optional)": "",
"Select a pipeline": "Valitse putki",
"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 voice": "",
"Select an auth method": "Valitse kirjautumistapa",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Valitse Ollama instanssi",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Valitse moottori",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Valitse tietämys",
"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ä",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API -avain",
"Serpstack API Key": "Serpstack API -avain",
"Server connection verified": "Palvelinyhteys vahvistettu",
"Session": "",
"Set as default": "Aseta oletukseksi",
"Set CFG Scale": "Aseta CFG-mitta",
"Set Default Model": "Aseta oletusmalli",
@ -1265,6 +1313,12 @@
"sk-1234": "",
"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ä.",
"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": "Lähde",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Muotoiltun PDF-vienti",
"Subtitle (e.g. about the Roman Empire)": "Alaotsikko (esim. Rooman valtakunta)",
"Success": "Onnistui",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Päivitetty onnistuneesti.",
"Suggest a change": "Ehdota muutosta",
"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 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 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 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.",
@ -1439,7 +1495,9 @@
"Upload Files": "Lataa tiedostoja",
"Upload Pipeline": "Lataa putki",
"Upload Progress": "Latauksen edistyminen",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL",
"URL is required": "",
"URL Mode": "URL-tila",
"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.",
@ -1461,6 +1519,7 @@
"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.",
"Valid time units:": "Kelvolliset aikayksiköt:",
"Validate certificate": "",
"Valves": "Venttiilit",
"Valves updated": "Venttiilit päivitetty",
"Valves updated successfully": "Venttiilit päivitetty onnistuneesti",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (paikallinen)",
"Why?": "Miksi?",
"Widescreen Mode": "Laajakuvatila",
"Width": "",
"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.": "",
"Workspace": "Työtila",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "Nombres de lignes cachées {{COUNT}}",
"{{COUNT}} Replies": "{{COUNT}} réponses",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Conversations de {{user}}",
"{{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",
@ -29,6 +30,7 @@
"Account Activation Pending": "Activation du compte en attente",
"Accurate information": "Information exacte",
"Action": "Action",
"Action not found": "",
"Actions": "Actions",
"Activate": "Activer",
"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",
"Amazing": "Incroyable",
"an assistant": "un assistant",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "Analysé",
"Analyzing...": "Analyse en cours",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Restrictions des points de terminaison de la clé API",
"API keys": "Clés d'API",
"API Version": "Version de l'API",
"API Version is required": "",
"Application DN": "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 »",
@ -160,6 +164,7 @@
"Banners": "Bannières",
"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.",
"Bearer": "",
"before": "avant",
"Being lazy": "Être fainéant",
"Beta": "Bêta",
@ -189,7 +194,9 @@
"Capture Audio": "Prise de son",
"Certificate Path": "Chemin du certificat",
"Change Password": "Changer le mot de passe",
"Channel deleted successfully": "",
"Channel Name": "Nom du canal",
"Channel updated successfully": "",
"Channels": "Canaux",
"Character": "Caractère",
"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 settings modal": "Fermer la fenêtre des réglages",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"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 Workflow": "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",
"Comment": "Commentaire",
"Completions": "Complétions",
"Compress Images in Channels": "",
"Concurrent Requests": "Demandes concurrentes",
"Config imported successfully": "",
"Configure": "Configurer",
"Confirm": "Confirmer",
"Confirm Password": "Confirmer le mot de passe",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Clé API Datalab Marker requise.",
"DD/MM/YYYY": "",
"December": "Décembre",
"Deepgram": "",
"Default": "Par défaut",
"Default (Open AI)": "Par défaut (OpenAI)",
"Default (SentenceTransformers)": "Par défaut (Sentence Transformers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "Serveur d'outils directs",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "Désactiver l'interpréteur de code",
"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.",
@ -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 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 coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "Entrez la clé API Datalab Marker",
"Enter description": "Entrez la description",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Entrez l'URL brute de GitHub",
"Enter Google PSE API Key": "Entrez la clé API 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 Jina API Key": "Entrez la clé API Jina",
"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 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 value": "",
"Enter value (true/false)": "",
"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 Username": "Entrez le nom d'utilisateur Yacy",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Entrez l'URL de votre webhook",
"Error": "Erreur",
"ERROR": "ERREUR",
"Error accessing directory": "",
"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 starting recording.": "Erreur lors du démarrage de l'enregistrement",
"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: 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",
"Everyone": "",
"Exa API Key": "Clé d'Exa API",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "Retour haptique",
"Height": "",
"Hello, {{name}}": "Bonjour, {{name}}.",
"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 !",
@ -733,6 +753,7 @@
"Hide": "Cacher",
"Hide from Sidebar": "Cacher de la barre latérale",
"Hide Model": "Cache le Model",
"High": "",
"High Contrast Mode": "Mode avec contraste accentué",
"Home": "Home",
"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.",
"Input": "",
"Input commands": "Commandes d'entrée",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Variables d'entrée",
"Insert": "Insérer",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "Contenu de fichier invalide",
"Invalid file format.": "Format de fichier non valide.",
"Invalid JSON file": "Fichier JSON non valide",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Tag non valide",
"is typing...": "est en train d'écrire...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "Epingler dans la barre latérale",
"Key": "Clé",
"Key is required": "",
"Keyboard shortcuts": "Raccourcis clavier",
"Knowledge": "Connaissances",
"Knowledge Access": "Accès aux connaissances",
"Knowledge Base": "",
"Knowledge created successfully.": "Connaissance créé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 reset successfully.": "Connaissance réinitialisée avec succès.",
"Knowledge updated successfully": "Connaissance mise à jour avec succès",
@ -852,6 +878,7 @@
"Local Task Model": "Model de tâche local",
"Location access not allowed": "Accès à la localisation non autorisé",
"Lost": "Perdu",
"Low": "",
"LTR": "LTR",
"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",
@ -873,6 +900,7 @@
"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.",
"May": "Mai",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Les souvenirs accessibles par les LLMs seront affichées ici.",
"Memory": "Mémoire",
"Memory added successfully": "Souvenir ajoutée avec succès",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "ID des modèles",
"Model Name": "Nom du modèle",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Modèle non sélectionné",
"Model Params": "Réglages du modèle",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Nom d'utilisateur",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nommez votre base de connaissances",
"Native": "Natif",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Aucune requête de recherche générée",
"No source available": "Aucune source n'est disponible",
"No users were found.": "Aucun utilisateur trouvé.",
"No valves": "",
"No valves to update": "Aucune vanne à mettre à jour",
"Node Ids": "",
"None": "Aucun",
"Not factually correct": "Non factuellement correct",
"Not helpful": "Pas utile",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Défilement lors du changement de branche",
"Search": "Recherche",
"Search a model": "Rechercher un modèle",
"Search all emojis": "",
"Search Base": "Base de recherche",
"Search Chats": "Rechercher des conversations",
"Search Collection": "Rechercher une collection",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Voir le fichier readme.md pour les instructions",
"See what's new": "Découvrez les nouvelles fonctionnalités",
"Seed": "Seed",
"Select": "",
"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 engine": "Sélectionnez un moteur",
"Select a function": "Sélectionnez une fonction",
"Select a group": "Sélectionner un groupe",
"Select a language": "",
"Select a mode": "",
"Select a model": "Sélectionnez un modèle",
"Select a model (optional)": "",
"Select a pipeline": "Sélectionnez un 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 voice": "",
"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 output format": "",
"Select dtype": "",
"Select Engine": "Sélectionnez le moteur",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Sélectionnez une connaissance",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Clé API Serply",
"Serpstack API Key": "Clé API Serpstack",
"Server connection verified": "Connexion au serveur vérifiée",
"Session": "",
"Set as default": "Définir comme valeur par défaut",
"Set CFG Scale": "Définir la CFG",
"Set Default Model": "Définir le modèle par défaut",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"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",
"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 SK": "Clé secrète API Sougou Search (SK)",
"Source": "Source",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Export de PDF stylisés",
"Subtitle (e.g. about the Roman Empire)": "Sous-titres (par ex. sur l'Empire romain)",
"Success": "Réussite",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Mise à jour réussie.",
"Suggest a change": "",
"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 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 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 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.",
@ -1439,7 +1495,9 @@
"Upload Files": "Téléverser des fichiers",
"Upload Pipeline": "Pipeline de téléchargement",
"Upload Progress": "Progression de l'envoi",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL",
"URL is required": "",
"URL Mode": "Mode d'URL",
"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.",
@ -1461,6 +1519,7 @@
"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.",
"Valid time units:": "Unités de temps valides\u00a0:",
"Validate certificate": "",
"Valves": "Vannes",
"Valves updated": "Vannes mises à jour",
"Valves updated successfully": "Les vannes ont été mises à jour avec succès",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (local)",
"Why?": "Pourquoi ?",
"Widescreen Mode": "Mode grand écran",
"Width": "",
"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.",
"Workspace": "Espace de travail",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "Nombres de lignes cachées {{COUNT}}",
"{{COUNT}} Replies": "{{COUNT}} réponses",
"{{COUNT}} words": "{{COUNT}} mots",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Conversations de {{user}}",
"{{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",
@ -29,6 +30,7 @@
"Account Activation Pending": "Activation du compte en attente",
"Accurate information": "Information exacte",
"Action": "Action",
"Action not found": "",
"Actions": "Actions",
"Activate": "Activer",
"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",
"Amazing": "Incroyable",
"an assistant": "un assistant",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "Analysé",
"Analyzing...": "Analyse en cours",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Restrictions des points de terminaison de la clé API",
"API keys": "Clés d'API",
"API Version": "Version de l'API",
"API Version is required": "",
"Application DN": "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 »",
@ -160,6 +164,7 @@
"Banners": "Bannières",
"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.",
"Bearer": "",
"before": "avant",
"Being lazy": "Être fainéant",
"Beta": "Bêta",
@ -189,7 +194,9 @@
"Capture Audio": "Prise de son",
"Certificate Path": "Chemin du certificat",
"Change Password": "Changer le mot de passe",
"Channel deleted successfully": "",
"Channel Name": "Nom du canal",
"Channel updated successfully": "",
"Channels": "Canaux",
"Character": "Caractère",
"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 settings modal": "Fermer la fenêtre des réglages",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Bloc 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 Workflow": "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",
"Comment": "Commentaire",
"Completions": "Complétions",
"Compress Images in Channels": "",
"Concurrent Requests": "Demandes concurrentes",
"Config imported successfully": "",
"Configure": "Configurer",
"Confirm": "Confirmer",
"Confirm Password": "Confirmer le mot de passe",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Clé API Datalab Marker requise.",
"DD/MM/YYYY": "JJ/MM/AAAA",
"December": "Décembre",
"Deepgram": "",
"Default": "Par défaut",
"Default (Open AI)": "Par défaut (OpenAI)",
"Default (SentenceTransformers)": "Par défaut (Sentence Transformers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "Serveur d'outils directs",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "Désactiver l'interpréteur de code",
"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.",
@ -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 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 coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "Entrez la clé API Datalab Marker",
"Enter description": "Entrez la description",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Entrez l'URL brute de GitHub",
"Enter Google PSE API Key": "Entrez la clé API 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 Jina API Key": "Entrez la clé API Jina",
"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 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 value": "",
"Enter value (true/false)": "",
"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 Username": "Entrez le nom d'utilisateur Yacy",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Entrez l'URL de votre webhook",
"Error": "Erreur",
"ERROR": "ERREUR",
"Error accessing directory": "",
"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 starting recording.": "Erreur lors du démarrage de l'enregistrement",
"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: 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",
"Everyone": "",
"Exa API Key": "Clé d'Exa API",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "Retour haptique",
"Height": "",
"Hello, {{name}}": "Bonjour, {{name}}.",
"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 !",
@ -733,6 +753,7 @@
"Hide": "Cacher",
"Hide from Sidebar": "Cacher de la barre latérale",
"Hide Model": "Cache le Model",
"High": "",
"High Contrast Mode": "Mode avec contraste accentué",
"Home": "Home",
"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.",
"Input": "",
"Input commands": "Commandes d'entrée",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Variables d'entrée",
"Insert": "Insérer",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "Contenu de fichier invalide",
"Invalid file format.": "Format de fichier non valide.",
"Invalid JSON file": "Fichier JSON non valide",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Tag non valide",
"is typing...": "est en train d'écrire...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "Epingler dans la barre latérale",
"Key": "Clé",
"Key is required": "",
"Keyboard shortcuts": "Raccourcis clavier",
"Knowledge": "Connaissances",
"Knowledge Access": "Accès aux connaissances",
"Knowledge Base": "",
"Knowledge created successfully.": "Connaissance créé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 reset successfully.": "Connaissance réinitialisée avec succès.",
"Knowledge updated successfully": "Connaissance mise à jour avec succès",
@ -852,6 +878,7 @@
"Local Task Model": "Model de tâche local",
"Location access not allowed": "Accès à la localisation non autorisé",
"Lost": "Perdu",
"Low": "",
"LTR": "LTR",
"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",
@ -873,6 +900,7 @@
"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.",
"May": "Mai",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Les souvenirs accessibles par les LLMs seront affichées ici.",
"Memory": "Mémoire",
"Memory added successfully": "Souvenir ajoutée avec succès",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "ID des modèles",
"Model Name": "Nom du modèle",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Modèle non sélectionné",
"Model Params": "Réglages du modèle",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Nom d'utilisateur",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nommez votre base de connaissances",
"Native": "Natif",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Aucune requête de recherche générée",
"No source available": "Aucune source n'est disponible",
"No users were found.": "Aucun utilisateur trouvé.",
"No valves": "",
"No valves to update": "Aucune vanne à mettre à jour",
"Node Ids": "",
"None": "Aucun",
"Not factually correct": "Non factuellement correct",
"Not helpful": "Pas utile",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Défilement lors du changement de branche",
"Search": "Recherche",
"Search a model": "Rechercher un modèle",
"Search all emojis": "",
"Search Base": "Base de recherche",
"Search Chats": "Rechercher des conversations",
"Search Collection": "Rechercher une collection",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Voir le fichier readme.md pour les instructions",
"See what's new": "Découvrez les nouvelles fonctionnalités",
"Seed": "Seed",
"Select": "",
"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 engine": "Sélectionnez un moteur",
"Select a function": "Sélectionnez une fonction",
"Select a group": "Sélectionner un groupe",
"Select a language": "",
"Select a mode": "",
"Select a model": "Sélectionnez un modèle",
"Select a model (optional)": "",
"Select a pipeline": "Sélectionnez un 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 voice": "",
"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 output format": "",
"Select dtype": "",
"Select Engine": "Sélectionnez le moteur",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Sélectionnez une connaissance",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Clé API Serply",
"Serpstack API Key": "Clé API Serpstack",
"Server connection verified": "Connexion au serveur vérifiée",
"Session": "",
"Set as default": "Définir comme valeur par défaut",
"Set CFG Scale": "Définir la CFG",
"Set Default Model": "Définir le modèle par défaut",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"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",
"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 SK": "Clé secrète API Sougou Search (SK)",
"Source": "Source",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Export de PDF stylisés",
"Subtitle (e.g. about the Roman Empire)": "Sous-titres (par ex. sur l'Empire romain)",
"Success": "Réussite",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Mise à jour réussie.",
"Suggest a change": "",
"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 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 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 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.",
@ -1439,7 +1495,9 @@
"Upload Files": "Téléverser des fichiers",
"Upload Pipeline": "Pipeline de téléchargement",
"Upload Progress": "Progression de l'envoi",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL",
"URL is required": "",
"URL Mode": "Mode d'URL",
"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.",
@ -1461,6 +1519,7 @@
"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.",
"Valid time units:": "Unités de temps valides\u00a0:",
"Validate certificate": "",
"Valves": "Vannes",
"Valves updated": "Vannes mises à jour",
"Valves updated successfully": "Les vannes ont été mises à jour avec succès",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (local)",
"Why?": "Pourquoi ?",
"Widescreen Mode": "Mode grand écran",
"Width": "",
"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.",
"Workspace": "Espace de travail",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} Respostas",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Chats do {{user}}",
"{{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",
@ -29,6 +30,7 @@
"Account Activation Pending": "Activación da conta pendente",
"Accurate information": "Información precisa",
"Action": "",
"Action not found": "",
"Actions": "Accións",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Active este comando escribindo \"/{{COMMAND}}\" no chat",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "",
"Amazing": "Sorprendente",
"an assistant": "un asistente",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "Analizado",
"Analyzing...": "Analizando..",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Restriccions de Endpoint de Chave de API",
"API keys": "Chaves da API",
"API Version": "",
"API Version is required": "",
"Application DN": "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\" ",
@ -160,6 +164,7 @@
"Banners": "Mensaxes emerxentes",
"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.": "",
"Bearer": "",
"before": "antes",
"Being lazy": "Ser pregizeiro",
"Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "Ruta para os Certificados",
"Change Password": "Cambiar o contrasinal ",
"Channel deleted successfully": "",
"Channel Name": "Nome do Canal",
"Channel updated successfully": "",
"Channels": "Canal",
"Character": "Caracter",
"Character limit for autocomplete generation input": "Limite de caracteres para a entrada de xeneración do autocompletado",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"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 Workflow": "Fluxo de traballo de ComfyUI",
"ComfyUI Workflow Nodes": "Nodos para ComfyUI Workflow",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Comando",
"Comment": "",
"Completions": "Respostas autoxeradas",
"Compress Images in Channels": "",
"Concurrent Requests": "Solicitudes simultáneas",
"Config imported successfully": "",
"Configure": "Configurar",
"Confirm": "Confirmar",
"Confirm Password": "Confirmar Contrasinal ",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "Decembro",
"Deepgram": "",
"Default": "Por defecto",
"Default (Open AI)": "Predeterminado (Open AI)",
"Default (SentenceTransformers)": "Predeterminado (SentenceTransformers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "Ingrese a descripción",
@ -510,6 +523,7 @@
"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 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 Jina API Key": "Ingrese a chave API de Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Ingrese a URL (p.ej., http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Ingrese a sua URL de webhook",
"Error": "Error",
"ERROR": "ERROR",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Error o acceder a Google Drive: {{error}}",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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",
"Everyone": "",
"Exa API Key": "chave API de Exa",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "Retroalimentación háptica",
"Height": "",
"Hello, {{name}}": "Hola, {{name}}",
"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!",
@ -733,6 +753,7 @@
"Hide": "Esconder",
"Hide from Sidebar": "",
"Hide Model": "",
"High": "",
"High Contrast Mode": "",
"Home": "",
"Host": "Host",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "Ingresar comandos",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "Formato de Arquivo inválido.",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Etiqueta Inválida",
"is typing...": "está escribindo...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "Chave",
"Key is required": "",
"Keyboard shortcuts": "Atallos de teclado",
"Knowledge": "coñecemento",
"Knowledge Access": "Acceso al coñecemento",
"Knowledge Base": "",
"Knowledge created successfully.": "coñecemento creado exitosamente.",
"Knowledge deleted successfully.": "coñecemento eliminado exitosamente.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "coñecemento restablecido exitosamente.",
"Knowledge updated successfully": "coñecemento actualizado exitosamente.",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "",
"Lost": "Perdido",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Feito por a comunidad de OpenWebUI",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"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.",
"May": "Mayo",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "As memorias accesibles por os LLMs mostraránse aquí.",
"Memory": "Memoria",
"Memory added successfully": "Memoria añadida correctamente",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "IDs de modelos",
"Model Name": "Nombre do modelo",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Modelo no seleccionado",
"Model Params": "Parámetros do modelo",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Nombre",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nombra a tua base de coñecementos",
"Native": "Nativo",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "No se ha generado ninguna consulta de búsqueda",
"No source available": "Non ten fuente disponible",
"No users were found.": "No se encontraron usuarios.",
"No valves": "",
"No valves to update": "Non ten válvulas para actualizar",
"Node Ids": "",
"None": "Ninguno",
"Not factually correct": "No es correcto en todos os aspectos",
"Not helpful": "No útil",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Buscar",
"Search a model": "Buscar un modelo",
"Search all emojis": "",
"Search Base": "Base de búsqueda",
"Search Chats": "Chats de búsqueda",
"Search Collection": "Buscar Colección",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Vea o readme.md para instruccions",
"See what's new": "Ver as novedades",
"Seed": "Semilla",
"Select": "",
"Select a base model": "Seleccionar un modelo base",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "Busca un motor",
"Select a function": "Busca unha función",
"Select a group": "Seleccionar un grupo",
"Select a language": "",
"Select a mode": "",
"Select a model": "Selecciona un modelo",
"Select a model (optional)": "",
"Select a pipeline": "Selección de unha 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 voice": "",
"Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Seleccionar unha instancia de Ollama",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Selecciona Motor",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Selecciona coñecemento",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "chave API de Serply",
"Serpstack API Key": "chave API de Serpstack",
"Server connection verified": "Conexión do servidor verificada",
"Session": "",
"Set as default": "Establecer por defecto",
"Set CFG Scale": "Establecer la escala CFG",
"Set Default Model": "Establecer modelo predeterminado",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"Skip Cache": "",
"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 SK": "",
"Source": "Fonte",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Subtítulo (por Exemplo, sobre o Imperio Romano)",
"Success": "Éxito",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Actualizado exitosamente.",
"Suggest a change": "",
"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 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 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 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.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Subir arquivos",
"Upload Pipeline": "Subir Pipeline",
"Upload Progress": "Progreso de carga",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL",
"URL is required": "",
"URL Mode": "Modo de URL",
"Usage": "",
"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 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:",
"Validate certificate": "",
"Valves": "Valves",
"Valves updated": "Valves actualizados",
"Valves updated successfully": "Valves actualizados con éxito",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Xextor de voz (Local)",
"Why?": "¿Por qué?",
"Widescreen Mode": "Modo de pantalla ancha",
"Width": "",
"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.",
"Workspace": "Espacio de traballo",

View File

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

View File

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

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Razgovori korisnika {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Backend je potreban",
"*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "",
"Accurate information": "Točne informacije",
"Action": "",
"Action not found": "",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "",
"Amazing": "",
"an assistant": "asistent",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "",
"Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "",
"API keys": "API ključevi",
"API Version": "",
"API Version is required": "",
"Application DN": "",
"Application DN Password": "",
"applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "Baneri",
"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.": "",
"Bearer": "",
"before": "prije",
"Being lazy": "Biti lijen",
"Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "",
"Change Password": "Promijeni lozinku",
"Channel deleted successfully": "",
"Channel Name": "",
"Channel updated successfully": "",
"Channels": "",
"Character": "",
"Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"Code execution": "",
"Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "Potreban je ComfyUI osnovni URL.",
"ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Naredba",
"Comment": "",
"Completions": "",
"Compress Images in Channels": "",
"Concurrent Requests": "Istodobni zahtjevi",
"Config imported successfully": "",
"Configure": "",
"Confirm": "",
"Confirm Password": "Potvrdite lozinku",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "Prosinac",
"Deepgram": "",
"Default": "Zadano",
"Default (Open AI)": "",
"Default (SentenceTransformers)": "Zadano (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Unesite Github sirovi URL",
"Enter Google PSE API Key": "Unesite Google PSE API ključ",
"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 Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Unesite URL (npr. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "",
"Error": "Greška",
"ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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": "",
"Everyone": "",
"Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "Bok, {{name}}",
"Help": "Pomoć",
"Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "Sakrij",
"Hide from Sidebar": "",
"Hide Model": "",
"High": "",
"High Contrast Mode": "",
"Home": "",
"Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "Unos naredbi",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Nevažeća oznaka",
"is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "",
"Key is required": "",
"Keyboard shortcuts": "Tipkovnički prečaci",
"Knowledge": "Znanje",
"Knowledge Access": "",
"Knowledge Base": "",
"Knowledge created successfully.": "",
"Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "",
"Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "",
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Izradio OpenWebUI Community",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"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.",
"May": "Svibanj",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Ovdje će biti prikazana memorija kojoj mogu pristupiti LLM-ovi.",
"Memory": "Memorija",
"Memory added successfully": "",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "",
"Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Model nije odabran",
"Model Params": "Model parametri",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Ime",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Native": "",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Nije generiran upit za pretraživanje",
"No source available": "Nema dostupnog izvora",
"No users were found.": "",
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"None": "Ništa",
"Not factually correct": "Nije činjenično točno",
"Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Pretraga",
"Search a model": "Pretraži model",
"Search all emojis": "",
"Search Base": "",
"Search Chats": "Pretraži razgovore",
"Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Pogledajte readme.md za upute",
"See what's new": "Pogledajte što je novo",
"Seed": "Sjeme",
"Select": "",
"Select a base model": "Odabir osnovnog modela",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "Odaberite pogon",
"Select a function": "",
"Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Odaberite model",
"Select a model (optional)": "",
"Select a pipeline": "Odabir 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 voice": "",
"Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API ključ",
"Serpstack API Key": "Serpstack API API ključ",
"Server connection verified": "Veza s poslužiteljem potvrđena",
"Session": "",
"Set as default": "Postavi kao zadano",
"Set CFG Scale": "",
"Set Default Model": "Postavi zadani model",
@ -1265,6 +1313,12 @@
"sk-1234": "",
"Skip Cache": "",
"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 SK": "",
"Source": "Izvor",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Podnaslov (npr. o Rimskom carstvu)",
"Success": "Uspjeh",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Uspješno ažurirano.",
"Suggest a change": "",
"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 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 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 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.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Prijenos datoteka",
"Upload Pipeline": "Prijenos kanala",
"Upload Progress": "Napredak učitavanja",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "",
"URL is required": "",
"URL Mode": "URL način",
"Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "Važeće vremenske jedinice:",
"Validate certificate": "",
"Valves": "",
"Valves updated": "",
"Valves updated successfully": "",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (lokalno)",
"Why?": "",
"Widescreen Mode": "Mod širokog zaslona",
"Width": "",
"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.": "",
"Workspace": "Radna ploča",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} rejtett sor",
"{{COUNT}} Replies": "{{COUNT}} Válasz",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} beszélgetései",
"{{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",
@ -29,6 +30,7 @@
"Account Activation Pending": "Fiók aktiválása folyamatban",
"Accurate information": "Pontos információ",
"Action": "",
"Action not found": "",
"Actions": "Műveletek",
"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.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "",
"Amazing": "Csodálatos",
"an assistant": "egy asszisztens",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "Elemezve",
"Analyzing...": "Elemzés...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API kulcs végpont korlátozások",
"API keys": "API kulcsok",
"API Version": "",
"API Version is required": "",
"Application DN": "Alkalmazás DN",
"Application DN Password": "Alkalmazás DN jelszó",
"applies to all users with the \"user\" role": "minden \"felhasználó\" szerepkörű felhasználóra vonatkozik",
@ -160,6 +164,7 @@
"Banners": "Bannerek",
"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.": "",
"Bearer": "",
"before": "előtt",
"Being lazy": "Lustaság",
"Beta": "Béta",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "Tanúsítvány útvonal",
"Change Password": "Jelszó módosítása",
"Channel deleted successfully": "",
"Channel Name": "Csatorna neve",
"Channel updated successfully": "",
"Channels": "Csatornák",
"Character": "Karakter",
"Character limit for autocomplete generation input": "Karakterlimit az automatikus kiegészítés bemenetéhez",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"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 Workflow": "ComfyUI munkafolyamat",
"ComfyUI Workflow Nodes": "ComfyUI munkafolyamat csomópontok",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Parancs",
"Comment": "",
"Completions": "Kiegészítések",
"Compress Images in Channels": "",
"Concurrent Requests": "Párhuzamos kérések",
"Config imported successfully": "",
"Configure": "Konfigurálás",
"Confirm": "Megerősítés",
"Confirm Password": "Jelszó megerősítése",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "December",
"Deepgram": "",
"Default": "Alapértelmezett",
"Default (Open AI)": "Alapértelmezett (Open AI)",
"Default (SentenceTransformers)": "Alapértelmezett (SentenceTransformers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "Közvetlen eszköszerverek",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "Add meg a leírást",
@ -510,6 +523,7 @@
"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 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 Jina API Key": "Add meg a Jina API kulcsot",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Add meg az URL-t (pl. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Add meg a webhook URL-t",
"Error": "Hiba",
"ERROR": "HIBA",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Hiba a Google Drive elérése során: {{error}}",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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",
"Everyone": "",
"Exa API Key": "Exa API kulcs",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "Tapintási visszajelzés",
"Height": "",
"Hello, {{name}}": "Helló, {{name}}",
"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!",
@ -733,6 +753,7 @@
"Hide": "Elrejtés",
"Hide from Sidebar": "",
"Hide Model": "Modell elrejtése",
"High": "",
"High Contrast Mode": "",
"Home": "Kezdőlap",
"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.",
"Input": "",
"Input commands": "Beviteli parancsok",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "Érvénytelen fájlformátum.",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Érvénytelen címke",
"is typing...": "ír...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "Kulcs",
"Key is required": "",
"Keyboard shortcuts": "Billentyűparancsok",
"Knowledge": "Tudásbázis",
"Knowledge Access": "Tudásbázis hozzáférés",
"Knowledge Base": "",
"Knowledge created successfully.": "Tudásbázis sikeresen létrehozva.",
"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 reset successfully.": "Tudásbázis sikeresen visszaállítva.",
"Knowledge updated successfully": "Tudásbázis sikeresen frissítve",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "Helyhozzáférés nem engedélyezett",
"Lost": "Elveszett",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Az OpenWebUI közösség által készítve",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"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.",
"May": "Május",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Az LLM-ek által elérhető emlékek itt jelennek meg.",
"Memory": "Memória",
"Memory added successfully": "Memória sikeresen hozzáadva",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "Modell azonosítók",
"Model Name": "Modell neve",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Nincs kiválasztva modell",
"Model Params": "Modell paraméterek",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Név",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nevezd el a tudásbázisodat",
"Native": "Natív",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Nem generálódott keresési lekérdezés",
"No source available": "Nincs elérhető forrás",
"No users were found.": "Nem található felhasználó.",
"No valves": "",
"No valves to update": "Nincs frissítendő szelep",
"Node Ids": "",
"None": "Nincs",
"Not factually correct": "Tényszerűen nem helyes",
"Not helpful": "Nem segítőkész",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Keresés",
"Search a model": "Modell keresése",
"Search all emojis": "",
"Search Base": "Keresési alap",
"Search Chats": "Beszélgetések 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 what's new": "Újdonságok megtekintése",
"Seed": "Seed",
"Select": "",
"Select a base model": "Válasszon egy alapmodellt",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "Válasszon egy motort",
"Select a function": "Válasszon egy funkciót",
"Select a group": "Válasszon egy csoportot",
"Select a language": "",
"Select a mode": "",
"Select a model": "Válasszon egy modellt",
"Select a model (optional)": "",
"Select a pipeline": "Válasszon egy folyamatot",
"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 voice": "",
"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 output format": "",
"Select dtype": "",
"Select Engine": "Motor kiválasztása",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Tudásbázis kiválasztása",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API kulcs",
"Serpstack API Key": "Serpstack API kulcs",
"Server connection verified": "Szerverkapcsolat ellenőrizve",
"Session": "",
"Set as default": "Beállítás alapértelmezettként",
"Set CFG Scale": "CFG skála beállítása",
"Set Default Model": "Alapértelmezett modell beállítása",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"Skip Cache": "",
"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 SK": "",
"Source": "Forrás",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Alcím (pl. a Római Birodalomról)",
"Success": "Siker",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Sikeresen frissítve.",
"Suggest a change": "",
"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 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 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 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.",
@ -1439,7 +1495,9 @@
"Upload Files": "Fájlok feltöltése",
"Upload Pipeline": "Folyamat feltöltése",
"Upload Progress": "Feltöltési folyamat",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL",
"URL is required": "",
"URL Mode": "URL mód",
"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.",
@ -1461,6 +1519,7 @@
"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.",
"Valid time units:": "Érvényes időegységek:",
"Validate certificate": "",
"Valves": "Szelepek",
"Valves updated": "Szelepek frissítve",
"Valves updated successfully": "Szelepek sikeresen frissítve",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (helyi)",
"Why?": "Miért?",
"Widescreen Mode": "Szélesvásznú mód",
"Width": "",
"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.",
"Workspace": "Munkaterület",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Obrolan {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Diperlukan Backend",
"*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "Aktivasi Akun Tertunda",
"Accurate information": "Informasi yang akurat",
"Action": "",
"Action not found": "",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "",
"Amazing": "",
"an assistant": "asisten",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "",
"Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "",
"API keys": "Kunci API",
"API Version": "",
"API Version is required": "",
"Application DN": "",
"Application DN Password": "",
"applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "Spanduk",
"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.": "",
"Bearer": "",
"before": "sebelum",
"Being lazy": "Menjadi malas",
"Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "",
"Change Password": "Ubah Kata Sandi",
"Channel deleted successfully": "",
"Channel Name": "",
"Channel updated successfully": "",
"Channels": "",
"Character": "",
"Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"Code execution": "",
"Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "URL Dasar ComfyUI diperlukan.",
"ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Perintah",
"Comment": "",
"Completions": "",
"Compress Images in Channels": "",
"Concurrent Requests": "Permintaan Bersamaan",
"Config imported successfully": "",
"Configure": "",
"Confirm": "Konfirmasi",
"Confirm Password": "Konfirmasi Kata Sandi",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "Desember",
"Deepgram": "",
"Default": "Default",
"Default (Open AI)": "",
"Default (SentenceTransformers)": "Default (Pengubah Kalimat)",
@ -377,6 +388,7 @@
"Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Masukkan URL Mentah Github",
"Enter Google PSE API Key": "Masukkan Kunci API 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 Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Masukkan URL (mis. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "",
"Error": "Kesalahan",
"ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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": "",
"Everyone": "",
"Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "Halo, {{name}}",
"Help": "Bantuan",
"Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "Sembunyikan",
"Hide from Sidebar": "",
"Hide Model": "",
"High": "",
"High Contrast Mode": "",
"Home": "",
"Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "Perintah masukan",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Tag tidak valid",
"is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "",
"Key is required": "",
"Keyboard shortcuts": "Pintasan keyboard",
"Knowledge": "Pengetahuan",
"Knowledge Access": "",
"Knowledge Base": "",
"Knowledge created successfully.": "",
"Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "",
"Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "",
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Dibuat oleh Komunitas OpenWebUI",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"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.",
"May": "Mei",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Memori yang dapat diakses oleh LLM akan ditampilkan di sini.",
"Memory": "Memori",
"Memory added successfully": "Memori berhasil ditambahkan",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "",
"Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Model tidak dipilih",
"Model Params": "Parameter Model",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Nama",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Native": "",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Tidak ada permintaan pencarian yang dibuat",
"No source available": "Tidak ada sumber yang tersedia",
"No users were found.": "",
"No valves": "",
"No valves to update": "Tidak ada katup untuk diperbarui",
"Node Ids": "",
"None": "Tidak ada",
"Not factually correct": "Tidak benar secara faktual",
"Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Cari",
"Search a model": "Mencari model",
"Search all emojis": "",
"Search Base": "",
"Search Chats": "Cari Obrolan",
"Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Lihat readme.md untuk instruksi",
"See what's new": "Lihat apa yang baru",
"Seed": "Benih",
"Select": "",
"Select a base model": "Pilih model dasar",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "Pilih mesin",
"Select a function": "Memilih fungsi",
"Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Pilih model",
"Select a model (optional)": "",
"Select a pipeline": "Pilih 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 voice": "",
"Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Kunci API Serply",
"Serpstack API Key": "Kunci API Serpstack",
"Server connection verified": "Koneksi server diverifikasi",
"Session": "",
"Set as default": "Ditetapkan sebagai default",
"Set CFG Scale": "",
"Set Default Model": "Tetapkan Model Default",
@ -1265,6 +1313,12 @@
"sk-1234": "",
"Skip Cache": "",
"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 SK": "",
"Source": "Sumber",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Subtitle (misalnya tentang Kekaisaran Romawi)",
"Success": "Berhasil",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Berhasil diperbarui.",
"Suggest a change": "",
"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 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 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 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.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Unggah File",
"Upload Pipeline": "Unggah Pipeline",
"Upload Progress": "Kemajuan Unggah",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "",
"URL is required": "",
"URL Mode": "Mode URL",
"Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "Unit waktu yang valid:",
"Validate certificate": "",
"Valves": "Katup",
"Valves updated": "Katup diperbarui",
"Valves updated successfully": "Katup berhasil diperbarui",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Bisikan (Lokal)",
"Why?": "",
"Widescreen Mode": "Mode Layar Lebar",
"Width": "",
"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.": "",
"Workspace": "Ruang Kerja",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} línte folaithe",
"{{COUNT}} Replies": "{{COUNT}} Freagra",
"{{COUNT}} words": "{{COUNT}} focail",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Comhráite {{user}}",
"{{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",
@ -29,6 +30,7 @@
"Account Activation Pending": "Gníomhachtaithe Cuntas",
"Accurate information": "Faisnéis chruinn",
"Action": "Gníomh",
"Action not found": "",
"Actions": "Gníomhartha",
"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.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "Seinn Fuaim Fógra i gCónaí",
"Amazing": "Iontach",
"an assistant": "cúntóir",
"An error occurred while fetching the explanation": "",
"Analytics": "Anailísíocht",
"Analyzed": "Anailísithe",
"Analyzing...": "Ag déanamh anailíse...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Príomhshrianta Críochphointe API",
"API keys": "Eochracha API",
"API Version": "Leagan API",
"API Version is required": "",
"Application DN": "Feidhmchlár DN",
"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",
@ -160,6 +164,7 @@
"Banners": "Meirgí",
"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í.",
"Bearer": "",
"before": "roimh",
"Being lazy": "A bheith leisciúil",
"Beta": "Béite",
@ -189,7 +194,9 @@
"Capture Audio": "Gabháil Fuaime",
"Certificate Path": "Cosán Teastais",
"Change Password": "Athraigh Pasfhocal",
"Channel deleted successfully": "",
"Channel Name": "Ainm Cainéal",
"Channel updated successfully": "",
"Channels": "Cainéil",
"Character": "Carachtar",
"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 settings modal": "Dún modúl na socruithe",
"Close Sidebar": "Dún an Barra Taobh",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Bloc Cód",
"Code execution": "Cód a fhorghníomhú",
"Code Execution": "Forghníomhú Cóid",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "Teastaíonn URL ComfyUI Base.",
"ComfyUI Workflow": "Sreabhadh Oibre ComfyUI",
"ComfyUI Workflow Nodes": "Nóid Sreabhadh Oibre ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Ordú",
"Comment": "Trácht",
"Completions": "Críochnaithe",
"Compress Images in Channels": "Comhbhrúigh Íomhánna i gCainéil",
"Concurrent Requests": "Iarrataí Comhthéime",
"Config imported successfully": "",
"Configure": "Cumraigh",
"Confirm": "Deimhnigh",
"Confirm Password": "Deimhnigh Pasfhocal",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Eochair API Marcóra Datalab ag teastáil.",
"DD/MM/YYYY": "LL/MM/LLLL",
"December": "Nollaig",
"Deepgram": "",
"Default": "Réamhshocraithe",
"Default (Open AI)": "Réamhshocraithe (Oscail AI)",
"Default (SentenceTransformers)": "Réamhshocraithe (SentenceTransFormers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "Freastalaithe Uirlisí Díreacha",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "Díchumasaigh Léirmhínitheoir Cód",
"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ú.",
@ -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 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 coordinates (e.g. 51.505, -0.09)": "",
"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 description": "Iontráil cur síos",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Cuir isteach URL Github Raw",
"Enter Google PSE API Key": "Cuir isteach Eochair API 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 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})",
@ -563,6 +577,8 @@
"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://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 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",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Cuir isteach URL do webhook",
"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 media devices.": "Earráid ag rochtain gléasanna meán.",
"Error starting recording.": "Earráid ag tosú taifeadta.",
"Error unloading model: {{error}}": "Earráid ag díluchtú samhail: {{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í",
"Everyone": "Gach duine",
"Exa API Key": "Eochair Exa API",
@ -725,6 +744,7 @@
"H2": "H2",
"H3": "H3",
"Haptic Feedback": "Aiseolas Haptic",
"Height": "",
"Hello, {{name}}": "Dia duit, {{name}}",
"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!",
@ -733,6 +753,7 @@
"Hide": "Folaigh",
"Hide from Sidebar": "Folaigh ón mBarra Taoibh",
"Hide Model": "Folaigh an tSamhail",
"High": "",
"High Contrast Mode": "Mód Ardchodarsnachta",
"Home": "Baile",
"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.",
"Input": "Ionchur",
"Input commands": "Orduithe ionchuir",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Athróga Ionchuir",
"Insert": "Cuir isteach",
"Insert Follow-Up Prompt to Input": "Cuir isteach leid leantach le hionchur",
@ -789,6 +811,7 @@
"Invalid file content": "Ábhar comhaid neamhbhailí",
"Invalid file format.": "Formáid comhaid 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 Tag": "Clib neamhbhailí",
"is typing...": "ag clóscríobh...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "Coinnigh Leideanna Leanúnacha i gComhrá",
"Keep in Sidebar": "Coinnigh sa Bharra Taobh",
"Key": "Eochair",
"Key is required": "",
"Keyboard shortcuts": "Aicearraí méarchlár",
"Knowledge": "Eolas",
"Knowledge Access": "Rochtain Eolais",
"Knowledge Base": "Bunachar Eolais",
"Knowledge created successfully.": "Eolas cruthaithe go rathúil.",
"Knowledge deleted successfully.": "D'éirigh leis an eolas a scriosadh.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Roinnt Faisnéise Poiblí",
"Knowledge reset successfully.": "D'éirigh le hathshocrú eolais.",
"Knowledge updated successfully": "D'éirigh leis an eolas a nuashonrú",
@ -852,6 +878,7 @@
"Local Task Model": "Samhail Tasc Áitiúil",
"Location access not allowed": "Ní cheadaítear rochtain suímh",
"Lost": "Cailleadh",
"Low": "",
"LTR": "LTR",
"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",
@ -873,6 +900,7 @@
"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í.",
"May": "Bealtaine",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Taispeánfar cuimhní atá inrochtana ag LLManna anseo.",
"Memory": "Cuimhne",
"Memory added successfully": "Cuireadh cuimhne leis go",
@ -908,6 +936,7 @@
"Model ID is required.": "Tá ID samhail ag teastáil.",
"Model IDs": "Aitheantas Samhail",
"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 not selected": "Níor roghnaíodh an tsamhail",
"Model Params": "Paraiméadair Samhail",
@ -926,6 +955,7 @@
"More Concise": "Níos Gonta",
"More Options": "Tuilleadh Roghanna",
"Name": "Ainm",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Cuir ainm ar do bhunachar eolais",
"Native": "Dúchasach",
"New Button": "Cnaipe Nua",
@ -960,7 +990,9 @@
"No search query generated": "Ní ghintear aon cheist cuardaigh",
"No source available": "Níl aon fhoinse ar fáil",
"No users were found.": "Níor aimsíodh aon úsáideoirí.",
"No valves": "",
"No valves to update": "Gan comhlaí le nuashonrú",
"Node Ids": "",
"None": "Dada",
"Not factually correct": "Níl sé ceart go fírineach",
"Not helpful": "Gan a bheith cabhrach",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Scrollaigh ar Athrú Brainse",
"Search": "Cuardaigh",
"Search a model": "Cuardaigh samhail",
"Search all emojis": "",
"Search Base": "Bonn Cuardaigh",
"Search Chats": "Cuardaigh Comhráite",
"Search Collection": "Bailiúchán Cuardaigh",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Féach readme.md le haghaidh treoracha",
"See what's new": "Féach cad atá nua",
"Seed": "Síol",
"Select": "",
"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 engine": "Roghnaigh inneall",
"Select a function": "Roghnaigh feidhm",
"Select a group": "Roghnaigh grúpa",
"Select a language": "",
"Select a mode": "",
"Select a model": "Roghnaigh samhail",
"Select a model (optional)": "",
"Select a pipeline": "Roghnaigh 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 voice": "",
"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 output format": "",
"Select dtype": "",
"Select Engine": "Roghnaigh Inneall",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Roghnaigh Eolais",
"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á",
@ -1215,6 +1262,7 @@
"Serply API Key": "Eochair API Serply",
"Serpstack API Key": "Eochair API Serpstack",
"Server connection verified": "Ceangal freastalaí fíoraithe",
"Session": "",
"Set as default": "Socraigh mar réamhshocraithe",
"Set CFG Scale": "Socraigh Scála CFG",
"Set Default Model": "Socraigh an tSamhail Réamhshocraithe",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"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.",
"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": "Foinse",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Easpórtáil PDF Stílithe",
"Subtitle (e.g. about the Roman Empire)": "Fotheideal (m.sh. faoin Impireacht Rómhánach)",
"Success": "Rath",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Nuashonraithe go rathúil.",
"Suggest a change": "Mol athrú",
"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 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 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 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í.",
@ -1439,7 +1495,9 @@
"Upload Files": "Uaslódáil Comhaid",
"Upload Pipeline": "Uaslódáil píblíne",
"Upload Progress": "Dul Chun Cinn an Uaslódála",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL",
"URL is required": "",
"URL Mode": "Mód URL",
"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.",
@ -1461,6 +1519,7 @@
"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.",
"Valid time units:": "Aonaid ama bailí:",
"Validate certificate": "",
"Valves": "Comhlaí",
"Valves updated": "Comhlaí dáta",
"Valves updated successfully": "Comhlaí nuashonraíodh",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Áitiúil)",
"Why?": "Cén fáth?",
"Widescreen Mode": "Mód Leathanscáileán",
"Width": "",
"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í.",
"Workspace": "Spás oibre",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} righe nascoste",
"{{COUNT}} Replies": "{{COUNT}} Risposte",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} Chat",
"{{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",
@ -29,6 +30,7 @@
"Account Activation Pending": "Account in attesa di attivazione",
"Accurate information": "Informazioni accurate",
"Action": "",
"Action not found": "",
"Actions": "Azioni",
"Activate": "Attiva",
"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",
"Amazing": "Fantastico",
"an assistant": "un assistente",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "Analizzato",
"Analyzing...": "Analisi in corso...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Restrizioni Endpoint Chiave API",
"API keys": "Chiavi API",
"API Version": "Versione API",
"API Version is required": "",
"Application DN": "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\"",
@ -160,6 +164,7 @@
"Banners": "Banner",
"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.": "",
"Bearer": "",
"before": "prima",
"Being lazy": "Faccio il pigro",
"Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Cattura audio",
"Certificate Path": "Percorso certificato",
"Change Password": "Cambia password",
"Channel deleted successfully": "",
"Channel Name": "Nome canale",
"Channel updated successfully": "",
"Channels": "Canali",
"Character": "Carattere",
"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 settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"Code execution": "Esecuzione codice",
"Code Execution": "Esecuzione codice",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "L'URL base ComfyUI è obbligatorio.",
"ComfyUI Workflow": "Flusso di lavoro ComfyUI",
"ComfyUI Workflow Nodes": "Nodi flusso di lavoro ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Comando",
"Comment": "",
"Completions": "Completamenti",
"Compress Images in Channels": "",
"Concurrent Requests": "Richieste simultanee",
"Config imported successfully": "",
"Configure": "Configura",
"Confirm": "Conferma",
"Confirm Password": "Conferma password",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Chiave Datalab Marker API necessaria.",
"DD/MM/YYYY": "",
"December": "Dicembre",
"Deepgram": "",
"Default": "Predefinito",
"Default (Open AI)": "Predefinito (Open AI)",
"Default (SentenceTransformers)": "Predefinito (SentenceTransformers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "Strimentu Server Diretti",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"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.",
@ -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 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 coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "Inserisci la chiave Datalab Marker API",
"Enter description": "Inserisci descrizione",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Inserisci URL Grezzo di Github",
"Enter Google PSE API Key": "Inserisci Chiave API 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 Jina API Key": "Inserisci Chiave API Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Inserisci URL (ad esempio http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"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 Username": "Inserisci Nome Utente Yacy",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Inserisci l'URL del tuo webhook",
"Error": "Errore",
"ERROR": "ERRORE",
"Error accessing directory": "",
"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 starting recording.": "Errore durante l'avvio della registrazione.",
"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: 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",
"Everyone": "",
"Exa API Key": "Chiave API Exa",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "Feedback Aptico",
"Height": "",
"Hello, {{name}}": "Ciao, {{name}}",
"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!",
@ -733,6 +753,7 @@
"Hide": "Nascondi",
"Hide from Sidebar": "Nascosta dalla barra laterale",
"Hide Model": "Nascondi Modello",
"High": "",
"High Contrast Mode": "Modalità Alto Contrasto",
"Home": "Home",
"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.",
"Input": "",
"Input commands": "Comandi di input",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "Contenuto del file non valido",
"Invalid file format.": "Formato file non valido.",
"Invalid JSON file": "File JSOn non valido",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Tag non valido",
"is typing...": "sta digitando...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "Mantieni nella barra laterale",
"Key": "Chiave",
"Key is required": "",
"Keyboard shortcuts": "Scorciatoie da tastiera",
"Knowledge": "Conoscenza",
"Knowledge Access": "Accesso alla conoscenza",
"Knowledge Base": "",
"Knowledge created successfully.": "Conoscenza creata con successo.",
"Knowledge deleted successfully.": "Conoscenza eliminata con successo.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Conoscenza condivisione pubblica",
"Knowledge reset successfully.": "Conoscenza ripristinata con successo.",
"Knowledge updated successfully": "Conoscenza aggiornata con successo",
@ -852,6 +878,7 @@
"Local Task Model": "Modello Task locale",
"Location access not allowed": "Accesso alla posizione non consentito",
"Lost": "Perso",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Realizzato dalla Comunità Open WebUI",
"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",
"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",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "I memori accessibili ai LLM saranno mostrati qui.",
"Memory": "Memoria",
"Memory added successfully": "Memoria aggiunta con successo",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "ID modello",
"Model Name": "Nome modello",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Modello non selezionato",
"Model Params": "Parametri del modello",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Nome",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Dai un nome alla tua base di conoscenza",
"Native": "Nativo",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Nessuna query di ricerca generata",
"No source available": "Nessuna fonte disponibile",
"No users were found.": "Nessun utente trovato.",
"No valves": "",
"No valves to update": "Nessuna valvola da aggiornare",
"Node Ids": "",
"None": "Nessuno",
"Not factually correct": "Non corretto dal punto di vista fattuale",
"Not helpful": "Non utile",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Scorri al cambio di branch",
"Search": "Cerca",
"Search a model": "Cerca un modello",
"Search all emojis": "",
"Search Base": "Cerca base",
"Search Chats": "Cerca nelle chat",
"Search Collection": "Cerca collezione",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Vedi readme.md per le istruzioni",
"See what's new": "Guarda le novità",
"Seed": "Seme",
"Select": "",
"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 engine": "Seleziona un motore",
"Select a function": "Seleziona una funzione",
"Select a group": "Seleziona un gruppo",
"Select a language": "",
"Select a mode": "",
"Select a model": "Seleziona un modello",
"Select a model (optional)": "",
"Select a pipeline": "Selezionare 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 voice": "",
"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 output format": "",
"Select dtype": "",
"Select Engine": "Seleziona motore",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Seleziona conoscenza",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Chiave API Serply",
"Serpstack API Key": "Chiave API Serpstack",
"Server connection verified": "Connessione al server verificata",
"Session": "",
"Set as default": "Imposta come predefinito",
"Set CFG Scale": "Imposta scala CFG",
"Set Default Model": "Imposta modello predefinito",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"Skip Cache": "Salta cache",
"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 SK": "SK per Songou Search API",
"Source": "Fonte",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Esportazione PDF Stilizzata",
"Subtitle (e.g. about the Roman Empire)": "Sottotitolo (ad esempio sull'Impero Romano)",
"Success": "Successo",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Aggiornato con successo.",
"Suggest a change": "",
"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 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 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 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.",
@ -1439,7 +1495,9 @@
"Upload Files": "Carica File",
"Upload Pipeline": "Carica Pipeline",
"Upload Progress": "Avanzamento Caricamento",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL",
"URL is required": "",
"URL Mode": "Modalità URL",
"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.",
@ -1461,6 +1519,7 @@
"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.",
"Valid time units:": "Unità di tempo valide:",
"Validate certificate": "",
"Valves": "Valvole",
"Valves updated": "Valvole aggiornate",
"Valves updated successfully": "Valvole aggiornate con successo",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Locale)",
"Why?": "Perché?",
"Widescreen Mode": "Modalità widescreen",
"Width": "",
"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.",
"Workspace": "Spazio di lavoro",

View File

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

View File

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

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} n yizirigen yeffren",
"{{COUNT}} Replies": "{{COUNT}} n tririyin",
"{{COUNT}} words": "{{COUNT}} n wawalen",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Asqerdec n {{user}}",
"{{webUIName}} Backend Required": "",
"*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "Armad n umiḍan deg uṛaǧu",
"Accurate information": "Talɣut tusdidt",
"Action": "Tigawt",
"Action not found": "",
"Actions": "Tigawin",
"Activate": "Sermed",
"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",
"Amazing": "Igerrez",
"an assistant": "d amallal",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "Yettwasekyed",
"Analyzing...": "La yettwasekyad…",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Agaz n ugaz n tsarut API",
"API keys": "Tisura API",
"API Version": "Lqem n API",
"API Version is required": "",
"Application DN": "DN n wesnas",
"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\"",
@ -160,6 +164,7 @@
"Banners": "Iɣerracen",
"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.",
"Bearer": "",
"before": "send",
"Being lazy": "Ili-k d ameɛdaz",
"Beta": "Biṭa",
@ -189,7 +194,9 @@
"Capture Audio": "Asekles n umeslaw",
"Certificate Path": "Abrid n uselkin",
"Change Password": "Snifel awal n uɛeddi",
"Channel deleted successfully": "",
"Channel Name": "Isem n ubadu",
"Channel updated successfully": "",
"Channels": "Ibuda",
"Character": "asekkil",
"Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "Mdel asfaylu",
"Close settings modal": "Mdel asfaylu n iɣewwaṛen",
"Close Sidebar": "Mdel agalis adisan",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Iḥder 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 Workflow": "Asuddem 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",
"Comment": "Awennit",
"Completions": "",
"Compress Images in Channels": "",
"Concurrent Requests": "",
"Config imported successfully": "",
"Configure": "Swel",
"Confirm": "Sentem",
"Confirm Password": "Sentem awal n uɛeddi",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "API n isefkalab Marker Tesri tasarut.",
"DD/MM/YYYY": "JJ/MM/AAAA",
"December": "Duǧambeṛ",
"Deepgram": "",
"Default": "Amezwer",
"Default (Open AI)": "Amezwer (Open AI)",
"Default (SentenceTransformers)": "S wudem amezwar (SentenceTransformers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "Iqeddacen n ifecka usriden",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"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.",
@ -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 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 coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "Sekcem API n isefkalab Marker Tasarut",
"Enter description": "Sekcem aglam",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Sekcem tansa URL tazegzawt n Github",
"Enter Google PSE API Key": "Sekcem tasarut API n Google PSE",
"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 Jina API Key": "Sekcem tasarut API n Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://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 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",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Sekcem tansa URL-ik webhook",
"Error": "Tuccḍa",
"ERROR": "TUCCḌA",
"Error accessing directory": "",
"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 starting recording.": "",
"Error unloading model: {{error}}": "Tuccḍa deg usali n tmudemt: {{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",
"Everyone": "Yal yiwen",
"Exa API Key": "Tasarut API n Exa",
@ -725,6 +744,7 @@
"H2": "H2",
"H3": "H3",
"Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "Azul a {{name}}",
"Help": "Tallalt",
"Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "Seggelmes",
"Hide from Sidebar": "Ffer seg ufeggag n yidis",
"Hide Model": "Ffer tamudemt",
"High": "",
"High Contrast Mode": "",
"Home": "Agejdan",
"Host": "Asneftaɣ",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "Ger",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "Agbur n ufaylu d arameɣtu",
"Invalid file format.": "Amasal n ufaylu d arameɣtu.",
"Invalid JSON file": "Afaylu JSON arameɣtu",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "",
"is typing...": "yettaru…",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "Kemmel tiwsatin n uḍfaṛ-Up deg Chat",
"Keep in Sidebar": "Senṭeḍ-it deg ufeggag n yidis",
"Key": "Tasarutt",
"Key is required": "",
"Keyboard shortcuts": "Inegzumen n unasiw",
"Knowledge": "Tamusni",
"Knowledge Access": "Anekcum ɣer tmussni",
"Knowledge Base": "Taffa n tmusni",
"Knowledge created successfully.": "Tamussni tennulfa-d akken iwata.",
"Knowledge deleted successfully.": "Tamussni tettwakkes akken iwata.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Tamussni tettuwennez akken iwata.",
"Knowledge updated successfully": "Timussniwin ttwaleqqment akken iwata",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "Anekcum ɣer tuddna",
"Lost": "Iruḥ",
"Low": "",
"LTR": "LTR",
"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",
@ -873,6 +900,7 @@
"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.",
"May": "Mayyu",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Da ara d-banent teḥkayin ara yaweḍ yiwen ɣer LLMs.",
"Memory": "Takatut",
"Memory added successfully": "Asmekti yettwarna akken iwata",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "Isulayen n tmudmiwin",
"Model Name": "Isem n tmudemt",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "",
"Model Params": "Iɣewwaren n timudemt",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "Ugar n textiṛiyin",
"Name": "Isem",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Fket-d azadur-nwen n tmussni",
"Native": "",
"New Button": "Taqeffalt tamaynut",
@ -960,7 +990,9 @@
"No search query generated": "",
"No source available": "Ulac aɣbalu yettwafen",
"No users were found.": "Ulac iseqdacen.",
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"None": "Ula d yiwen",
"Not factually correct": "",
"Not helpful": "Ur infiɛ ara",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Abeddel n Branch",
"Search": "Nadi",
"Search a model": "Nadi tamudemt",
"Search all emojis": "",
"Search Base": "Taffa n unadi",
"Search Chats": "Nadi idiwenniyen",
"Search Collection": "Nadi talkensit",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Ẓer taɣuṛi i lewṣaya",
"See what's new": "Wali d acu i yellan d amaynut",
"Seed": "Seed",
"Select": "",
"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 engine": "Fren amsedday",
"Select a function": "Fren tasɣent",
"Select a group": "Fren agraw",
"Select a language": "",
"Select a mode": "",
"Select a model": "Fren tamudemt",
"Select a model (optional)": "",
"Select a pipeline": "Fren aselda",
"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 voice": "",
"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 output format": "",
"Select dtype": "",
"Select Engine": "Fren amsadday",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Fren tamusni",
"Select only one model to call": "",
"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",
"Serpstack API Key": "Tasarut API n Serpstack",
"Server connection verified": "",
"Session": "",
"Set as default": "Sbadu-t d amezwaru",
"Set CFG Scale": "",
"Set Default Model": "Sbadu tamudemt tamezwart",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"Skip Cache": "",
"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 SK": "Tasarut tuffirt n API Sougou Search (SK)",
"Source": "Aɣbalu",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Addad amaruz (amedya ɣef tgelda Tarumanit)",
"Success": "Yedda",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Yettwaleqqem akken iwata.",
"Suggest a change": "",
"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 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 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 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.",
@ -1439,7 +1495,9 @@
"Upload Files": "Sali-d ifuyla",
"Upload Pipeline": "Aselda n uɛebbi",
"Upload Progress": "",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL",
"URL is required": "",
"URL Mode": "Askar n URL",
"Usage": "Aseqdec",
"Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"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.",
"Valid time units:": "Tigget n wakud ameɣtu:",
"Validate certificate": "",
"Valves": "",
"Valves updated": "",
"Valves updated successfully": "Valves ttwaleqmen akken iwata",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (adigan)",
"Why?": "Ayɣer?",
"Widescreen Mode": "Askar n ugdil aččuran",
"Width": "",
"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.": "",
"Workspace": "Tamnaḍṭ n umahil",

View File

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

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} susirašinėjimai",
"{{webUIName}} Backend Required": "{{webUIName}} būtinas serveris",
"*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "Laukiama paskyros patvirtinimo",
"Accurate information": "Tiksli informacija",
"Action": "",
"Action not found": "",
"Actions": "Veiksmai",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "",
"Amazing": "",
"an assistant": "assistentas",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "",
"Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "",
"API keys": "API raktai",
"API Version": "",
"API Version is required": "",
"Application DN": "",
"Application DN Password": "",
"applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "Baneriai",
"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.": "",
"Bearer": "",
"before": "prieš",
"Being lazy": "Būvimas tingiu",
"Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "",
"Change Password": "Keisti slaptažodį",
"Channel deleted successfully": "",
"Channel Name": "",
"Channel updated successfully": "",
"Channels": "",
"Character": "",
"Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"Code execution": "",
"Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI bazės nuoroda privaloma",
"ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Command",
"Comment": "",
"Completions": "",
"Compress Images in Channels": "",
"Concurrent Requests": "Kelios užklausos vienu metu",
"Config imported successfully": "",
"Configure": "",
"Confirm": "Patvrtinti",
"Confirm Password": "Patvirtinkite slaptažodį",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "Gruodis",
"Deepgram": "",
"Default": "Numatytasis",
"Default (Open AI)": "",
"Default (SentenceTransformers)": "Numatytasis (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Įveskite GitHub Raw nuorodą",
"Enter Google PSE API Key": "Įveskite Google PSE API raktą",
"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 Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Įveskite nuorododą (pvz. http://localhost:11434",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "",
"Error": "Klaida",
"ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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": "",
"Everyone": "",
"Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "Sveiki, {{name}}",
"Help": "Pagalba",
"Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "Paslėpti",
"Hide from Sidebar": "",
"Hide Model": "",
"High": "",
"High Contrast Mode": "",
"Home": "",
"Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "Įvesties komandos",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Neteisinga žyma",
"is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "",
"Key is required": "",
"Keyboard shortcuts": "Klaviatūros trumpiniai",
"Knowledge": "Žinios",
"Knowledge Access": "",
"Knowledge Base": "",
"Knowledge created successfully.": "",
"Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "",
"Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "",
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Sukurta OpenWebUI bendruomenės",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"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.",
"May": "gegužė",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Atminitis prieinama kalbos modelio bus rodoma čia.",
"Memory": "Atmintis",
"Memory added successfully": "Atmintis pridėta sėkmingai",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "",
"Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Modelis nepasirinktas",
"Model Params": "Modelio parametrai",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Pavadinimas",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Native": "",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Paieškos užklausa nesugeneruota",
"No source available": "Šaltinių nerasta",
"No users were found.": "",
"No valves": "",
"No valves to update": "Nėra atnaujinamų įeičių",
"Node Ids": "",
"None": "Nėra",
"Not factually correct": "Faktiškai netikslu",
"Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Ieškoti",
"Search a model": "Ieškoti modelio",
"Search all emojis": "",
"Search Base": "",
"Search Chats": "Ieškoti pokalbiuose",
"Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Žiūrėti readme.md papildomoms instrukcijoms",
"See what's new": "Žiūrėti naujoves",
"Seed": "Sėkla",
"Select": "",
"Select a base model": "Pasirinkite bazinį modelį",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "Pasirinkite variklį",
"Select a function": "Pasirinkite funkciją",
"Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Pasirinkti modelį",
"Select a model (optional)": "",
"Select a pipeline": "Pasirinkite procesą",
"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 voice": "",
"Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"Select only one model to call": "Pasirinkite vieną modelį",
"Selected model(s) do not support image inputs": "Pasirinkti modeliai nepalaiko vaizdinių užklausų",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API raktas",
"Serpstack API Key": "Serpstach API raktas",
"Server connection verified": "Serverio sujungimas patvirtintas",
"Session": "",
"Set as default": "Nustatyti numatytąjį",
"Set CFG Scale": "",
"Set Default Model": "Nustatyti numatytąjį modelį",
@ -1265,6 +1313,12 @@
"sk-1234": "",
"Skip Cache": "",
"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 SK": "",
"Source": "Šaltinis",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Subtitras",
"Success": "Sėkmingai",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Sėkmingai atnaujinta.",
"Suggest a change": "",
"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 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 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 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.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Atnaujinti rinkmenas",
"Upload Pipeline": "Atnaujinti procesą",
"Upload Progress": "Įkėlimo progresas",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "",
"URL is required": "",
"URL Mode": "URL režimas",
"Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "Teisingūs laiko vienetai :",
"Validate certificate": "",
"Valves": "Įeitys",
"Valves updated": "Įeitys atnaujintos",
"Valves updated successfully": "Įeitys atnaujintos sėkmingai",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (lokalus)",
"Why?": "",
"Widescreen Mode": "Plataus ekrano rėžimas",
"Width": "",
"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.": "",
"Workspace": "Nuostatos",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Perbualan {{user}}",
"{{webUIName}} Backend Required": "{{webUIName}} Backend diperlukan",
"*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "Pengaktifan Akaun belum selesai",
"Accurate information": "Informasi tepat",
"Action": "",
"Action not found": "",
"Actions": "Tindakan",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "",
"Amazing": "",
"an assistant": "seorang pembantu",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "",
"Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "",
"API keys": "Kekunci API",
"API Version": "",
"API Version is required": "",
"Application DN": "",
"Application DN Password": "",
"applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "Sepanduk",
"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.": "",
"Bearer": "",
"before": "sebelum,",
"Being lazy": "Menjadi Malas",
"Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "",
"Change Password": "Tukar Kata Laluan",
"Channel deleted successfully": "",
"Channel Name": "",
"Channel updated successfully": "",
"Channels": "",
"Character": "",
"Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"Code execution": "",
"Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "URL asas ComfyUI diperlukan",
"ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Arahan",
"Comment": "",
"Completions": "",
"Compress Images in Channels": "",
"Concurrent Requests": "Permintaan Serentak",
"Config imported successfully": "",
"Configure": "",
"Confirm": "Sahkan",
"Confirm Password": "Sahkan kata laluan",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "Disember",
"Deepgram": "",
"Default": "Lalai",
"Default (Open AI)": "",
"Default (SentenceTransformers)": "Lalai (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Masukkan URL 'Github Raw'",
"Enter Google PSE API Key": "Masukkan kunci API 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 Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Masukkan URL (cth http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "",
"Error": "Ralat",
"ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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": "",
"Everyone": "",
"Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "Hello, {{name}}",
"Help": "Bantuan",
"Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "Sembunyi",
"Hide from Sidebar": "",
"Hide Model": "",
"High": "",
"High Contrast Mode": "",
"Home": "",
"Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "Masukkan Arahan",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Tag tidak sah",
"is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "",
"Key is required": "",
"Keyboard shortcuts": "Pintasan papan kekunci",
"Knowledge": "Pengetahuan",
"Knowledge Access": "",
"Knowledge Base": "",
"Knowledge created successfully.": "",
"Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "",
"Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "",
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Dicipta oleh Komuniti OpenWebUI",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"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.",
"May": "Mei",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Memori yang boleh diakses oleh LLM akan ditunjukkan di sini.",
"Memory": "Memori",
"Memory added successfully": "Memori berjaya ditambah",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "",
"Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Model tidak dipilih",
"Model Params": "Model Params",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Nama",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Native": "",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Tiada pertanyaan carian dijana",
"No source available": "Tiada sumber tersedia",
"No users were found.": "",
"No valves": "",
"No valves to update": "Tiada 'valve' untuk dikemas kini",
"Node Ids": "",
"None": "Tiada",
"Not factually correct": "Tidak tepat secara fakta",
"Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Carian",
"Search a model": "Cari Model",
"Search all emojis": "",
"Search Base": "",
"Search Chats": "Cari Perbualan",
"Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Lihat readme.md untuk arahan",
"See what's new": "Lihat apa yang terbaru",
"Seed": "Benih",
"Select": "",
"Select a base model": "Pilih model asas",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "Pilih enjin",
"Select a function": "Pilih fungsi",
"Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Pilih model",
"Select a model (optional)": "",
"Select a pipeline": "Pilih '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 voice": "",
"Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Kunci API Serply",
"Serpstack API Key": "Kunci API Serpstack",
"Server connection verified": "Sambungan pelayan disahkan",
"Session": "",
"Set as default": "Tetapkan sebagai lalai",
"Set CFG Scale": "",
"Set Default Model": "Tetapkan Model Lalai",
@ -1265,6 +1313,12 @@
"sk-1234": "",
"Skip Cache": "",
"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 SK": "",
"Source": "Sumber",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Sari kata (cth tentang Kesultanan Melaka)",
"Success": "Berjaya",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Berjaya Dikemaskini",
"Suggest a change": "",
"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 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 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 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.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Muatnaik fail",
"Upload Pipeline": "Muatnaik 'Pipeline'",
"Upload Progress": "Kemajuan Muatnaik",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "",
"URL is required": "",
"URL Mode": "Mod URL",
"Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "Unit masa yang sah:",
"Validate certificate": "",
"Valves": "'Valves'",
"Valves updated": "'Valves' dikemaskini",
"Valves updated successfully": "'Valves' berjaya dikemaskini",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Local)",
"Why?": "",
"Widescreen Mode": "Mod Skrin Lebar",
"Width": "",
"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.": "",
"Workspace": "Ruangan Kerja",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} svar",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}} sine samtaler",
"{{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",
@ -29,6 +30,7 @@
"Account Activation Pending": "Venter på kontoaktivering",
"Accurate information": "Nøyaktig informasjon",
"Action": "",
"Action not found": "",
"Actions": "Handlinger",
"Activate": "Aktiver",
"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": "",
"Amazing": "Flott",
"an assistant": "en assistent",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "Analysert",
"Analyzing...": "Analyserer...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Begrensninger for API-nøkkelens endepunkt",
"API keys": "API-nøkler",
"API Version": "",
"API Version is required": "",
"Application DN": "Applikasjonens DN",
"Application DN Password": "Applikasjonens DN-passord",
"applies to all users with the \"user\" role": "gjelder for alle brukere med rollen \"user\"",
@ -160,6 +164,7 @@
"Banners": "Bannere",
"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.": "",
"Bearer": "",
"before": "før",
"Being lazy": "Er lat",
"Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "Sertifikatbane",
"Change Password": "Endre passord",
"Channel deleted successfully": "",
"Channel Name": "Kanalens navn",
"Channel updated successfully": "",
"Channels": "Kanaler",
"Character": "Karakter",
"Character limit for autocomplete generation input": "Begrensning av tegn for generering av autofullføring",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"Code execution": "Kodekjøring",
"Code Execution": "Kodekjøring",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "Absolutt URL for ComfyUI kreves.",
"ComfyUI Workflow": "ComfyUI-arbeidsflyt",
"ComfyUI Workflow Nodes": "ComfyUI-arbeidsflytnoder",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Kommando",
"Comment": "",
"Completions": "Fullføringer",
"Compress Images in Channels": "",
"Concurrent Requests": "Samtidige forespørsler",
"Config imported successfully": "",
"Configure": "Konfigurer",
"Confirm": "Bekreft",
"Confirm Password": "Bekreft passordet",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "desember",
"Deepgram": "",
"Default": "Standard",
"Default (Open AI)": "Standard (Open AI)",
"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "Angi beskrivelse",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Angi Github Raw-URL",
"Enter Google PSE API Key": "Angi API-nøkkel 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 Jina API Key": "Angi API-nøkkel for Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Angi URL (f.eks. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Angi URL for webhook",
"Error": "Feil",
"ERROR": "FEIL",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Feil under tilgang til Google Disk: {{error}}",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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",
"Everyone": "",
"Exa API Key": "API-nøkkel for Exa",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "Haptisk tilbakemelding",
"Height": "",
"Hello, {{name}}": "Hei, {{name}}!",
"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.",
@ -733,6 +753,7 @@
"Hide": "Skjul",
"Hide from Sidebar": "",
"Hide Model": "",
"High": "",
"High Contrast Mode": "",
"Home": "Hjem",
"Host": "Host",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "Inntast kommandoer",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "Ugyldig filformat.",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Ugyldig etikett",
"is typing...": "Skriver...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "Nøkkel",
"Key is required": "",
"Keyboard shortcuts": "Hurtigtaster",
"Knowledge": "Kunnskap",
"Knowledge Access": "Tilgang til kunnskap",
"Knowledge Base": "",
"Knowledge created successfully.": "Kunnskap opprettet.",
"Knowledge deleted successfully.": "Kunnskap slettet.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Tilbakestilling av kunnskap vellykket.",
"Knowledge updated successfully": "Kunnskap oppdatert",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "Tilgang til lokasjon er ikke tillatt",
"Lost": "Tapt",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Laget av OpenWebUI-fellesskapet",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"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.",
"May": "mai",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Språkmodellers tilgjengelige minner vises her.",
"Memory": "Minne",
"Memory added successfully": "Minne lagt til",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "Modell-ID-er",
"Model Name": "Modell",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Modell ikke valgt",
"Model Params": "Modellparametere",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Navn",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Gi kunnskapsbasen et navn",
"Native": "Opprinnelig",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Ingen søkespørringer er generert",
"No source available": "Ingen kilde tilgjengelig",
"No users were found.": "Finner ingen brukere",
"No valves": "",
"No valves to update": "Ingen ventiler å oppdatere",
"Node Ids": "",
"None": "Ingen",
"Not factually correct": "Uriktig informasjon",
"Not helpful": "Ikke nyttig",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Søk",
"Search a model": "Søk etter en modell",
"Search all emojis": "",
"Search Base": "Søke etter base",
"Search Chats": "Søk etter chatter",
"Search Collection": "Søk etter samling",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Se readme.md for å få instruksjoner",
"See what's new": "Se hva som er nytt",
"Seed": "Seed",
"Select": "",
"Select a base model": "Velg en grunnmodell",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "Velg en motor",
"Select a function": "Velg en funksjon",
"Select a group": "Velg en gruppe",
"Select a language": "",
"Select a mode": "",
"Select a model": "Velg en modell",
"Select a model (optional)": "",
"Select a pipeline": "Velg en pipeline",
"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 voice": "",
"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 output format": "",
"Select dtype": "",
"Select Engine": "Velg motor",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Velg kunnskap",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "API-nøkkel for Serply",
"Serpstack API Key": "API-nøkkel for Serpstack",
"Server connection verified": "Servertilkobling bekreftet",
"Session": "",
"Set as default": "Angi som standard",
"Set CFG Scale": "Angi CFG-skala",
"Set Default Model": "Angi standard modell",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"Skip Cache": "",
"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 SK": "",
"Source": "Kilde",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Undertittel (f.eks. om romerriket)",
"Success": "Suksess",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Oppdatert.",
"Suggest a change": "",
"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 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 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 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.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Last opp filer",
"Upload Pipeline": "Last opp pipeline",
"Upload Progress": "Opplastingsfremdrift",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL",
"URL is required": "",
"URL Mode": "URL-modus",
"Usage": "",
"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 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:",
"Validate certificate": "",
"Valves": "Ventiler",
"Valves updated": "Ventiler oppdatert",
"Valves updated successfully": "Ventilene er oppdatert",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Lokal)",
"Why?": "Hvorfor?",
"Widescreen Mode": "Bredskjermmodus",
"Width": "",
"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.": "",
"Workspace": "Arbeidsområde",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} verborgen regels",
"{{COUNT}} Replies": "{{COUNT}} antwoorden",
"{{COUNT}} words": "{{COUNT}} woorden",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}'s chats",
"{{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",
@ -29,6 +30,7 @@
"Account Activation Pending": "Accountactivatie in afwachting",
"Accurate information": "Accurate informatie",
"Action": "Actie",
"Action not found": "",
"Actions": "Acties",
"Activate": "Activeren",
"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": "",
"Amazing": "Geweldig",
"an assistant": "een assistent",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "Geanalyseerd",
"Analyzing...": "Aan het analyseren...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API-sleutel endpoint-beperkingen",
"API keys": "API-sleutels",
"API Version": "",
"API Version is required": "",
"Application DN": "Applicatie DN",
"Application DN Password": "Applicatie",
"applies to all users with the \"user\" role": "wordt op alle gebruikers met de \"gebruikersrol\" toegepast",
@ -160,6 +164,7 @@
"Banners": "Banners",
"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.": "",
"Bearer": "",
"before": "voor",
"Being lazy": "Lui zijn",
"Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Audio opnemen",
"Certificate Path": "Pad naar certificaat",
"Change Password": "Wijzig Wachtwoord",
"Channel deleted successfully": "",
"Channel Name": "Kanaalnaam",
"Channel updated successfully": "",
"Channels": "Kanalen",
"Character": "Karakter",
"Character limit for autocomplete generation input": "Karakterlimiet voor automatische generatieinvoer",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"Code execution": "Code uitvoeren",
"Code Execution": "Code-uitvoer",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI Base URL is required.",
"ComfyUI Workflow": "ComfyUI workflow",
"ComfyUI Workflow Nodes": "ComfyUI workflowknopen",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Commando",
"Comment": "Reactie",
"Completions": "Voltooiingen",
"Compress Images in Channels": "",
"Concurrent Requests": "Gelijktijdige verzoeken",
"Config imported successfully": "",
"Configure": "Configureer",
"Confirm": "Bevestigen",
"Confirm Password": "Bevestig wachtwoord",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Datalab Marker API Key vereist.",
"DD/MM/YYYY": "",
"December": "December",
"Deepgram": "",
"Default": "Standaard",
"Default (Open AI)": "Standaard (Open AI)",
"Default (SentenceTransformers)": "Standaard (SentenceTransformers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "Voer beschrijving in",
@ -510,6 +523,7 @@
"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 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 Jina API Key": "Voer Jina API-sleutel in",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Voer URL in (Bijv. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Voer je webhook-URL in",
"Error": "Fout",
"ERROR": "ERROR",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Fout bij het benaderen van Google Drive: {{error}}",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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",
"Everyone": "",
"Exa API Key": "Exa API-sleutel",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "Haptische feedback",
"Height": "",
"Hello, {{name}}": "Hallo, {{name}}",
"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!",
@ -733,6 +753,7 @@
"Hide": "Verberg",
"Hide from Sidebar": "",
"Hide Model": "Verberg model",
"High": "",
"High Contrast Mode": "",
"Home": "Thuis",
"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.",
"Input": "",
"Input commands": "Voer commando's in",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "Ongeldig bestandsformaat",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Ongeldige Tag",
"is typing...": "is aan het schrijven...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "Sleutel",
"Key is required": "",
"Keyboard shortcuts": "Toetsenbord snelkoppelingen",
"Knowledge": "Kennis",
"Knowledge Access": "Kennistoegang",
"Knowledge Base": "",
"Knowledge created successfully.": "Kennis succesvol aangemaakt",
"Knowledge deleted successfully.": "Kennis succesvol verwijderd",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Publieke kennisdeling",
"Knowledge reset successfully.": "Kennis succesvol gereset",
"Knowledge updated successfully": "Kennis succesvol bijgewerkt",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "Locatietoegang niet toegestaan",
"Lost": "Verloren",
"Low": "",
"LTR": "LNR",
"Made by Open WebUI Community": "Gemaakt door OpenWebUI Community",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"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.",
"May": "Mei",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Geheugen toegankelijk voor LLMs wordt hier getoond.",
"Memory": "Geheugen",
"Memory added successfully": "Geheugen succesvol toegevoegd",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "Model-IDs",
"Model Name": "Modelnaam",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Model niet geselecteerd",
"Model Params": "Modelparams",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Naam",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Geef je kennisbasis een naam",
"Native": "Native",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Geen zoekopdracht gegenereerd",
"No source available": "Geen bron beschikbaar",
"No users were found.": "Geen gebruikers gevonden",
"No valves": "",
"No valves to update": "Geen kleppen om bij te werken",
"Node Ids": "",
"None": "Geen",
"Not factually correct": "Niet feitelijk juist",
"Not helpful": "Niet nuttig",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Zoeken",
"Search a model": "Zoek een model",
"Search all emojis": "",
"Search Base": "Zoeken naar basis",
"Search Chats": "Chats zoeken",
"Search Collection": "Zoek naar verzamelingen",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Zie readme.md voor instructies",
"See what's new": "Zie wat er nieuw is",
"Seed": "Seed",
"Select": "",
"Select a base model": "Selecteer een basismodel",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "Selecteer een engine",
"Select a function": "Selecteer een functie",
"Select a group": "Selecteer een groep",
"Select a language": "",
"Select a mode": "",
"Select a model": "Selecteer een model",
"Select a model (optional)": "",
"Select a pipeline": "Selecteer een pijplijn",
"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 voice": "",
"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 output format": "",
"Select dtype": "",
"Select Engine": "Selecteer Engine",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Selecteer kennis",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API-sleutel",
"Serpstack API Key": "Serpstack API-sleutel",
"Server connection verified": "Server verbinding geverifieerd",
"Session": "",
"Set as default": "Stel in als standaard",
"Set CFG Scale": "Stel CFG-schaal in",
"Set Default Model": "Stel Standaardmodel in",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"Skip Cache": "",
"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 SK": "",
"Source": "Bron",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Ondertitel (bijv. over de Romeinse Empire)",
"Success": "Succes",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Succesvol bijgewerkt.",
"Suggest a change": "",
"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 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 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 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.",
@ -1439,7 +1495,9 @@
"Upload Files": "Bestanden uploaden",
"Upload Pipeline": "Upload Pijpleiding",
"Upload Progress": "Upload Voortgang",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL",
"URL is required": "",
"URL Mode": "URL-modus",
"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.",
@ -1461,6 +1519,7 @@
"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.",
"Valid time units:": "Geldige tijdseenheden:",
"Validate certificate": "",
"Valves": "Kleppen",
"Valves updated": "Kleppen bijgewerkt",
"Valves updated successfully": "Kleppen succesvol bijgewerkt",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Lokaal)",
"Why?": "Waarom?",
"Widescreen Mode": "Breedschermmodus",
"Width": "",
"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.",
"Workspace": "Werkruimte",

View File

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

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} ukrytych linii",
"{{COUNT}} Replies": "{{COUNT}} odpowiedzi",
"{{COUNT}} words": "{{COUNT}} słów",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Czaty użytkownika {{user}}",
"{{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.",
@ -29,6 +30,7 @@
"Account Activation Pending": "Aktywacja konta w toku",
"Accurate information": "Precyzyjna informacja",
"Action": "Akcja",
"Action not found": "",
"Actions": "Akcje",
"Activate": "Włącz",
"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": "",
"Amazing": "Niesamowite",
"an assistant": "asystent",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "Przeanalizowane",
"Analyzing...": "Analizowanie...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Ograniczenia punktu końcowego klucza API",
"API keys": "Klucze API",
"API Version": "Wersja API",
"API Version is required": "",
"Application DN": "Konto techniczne - Format DN",
"Application DN Password": "Hasło do konta technicznego",
"applies to all users with the \"user\" role": "dotyczy wszystkich użytkowników z rolą \"user\"",
@ -160,6 +164,7 @@
"Banners": "Bannery",
"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.": "",
"Bearer": "",
"before": "przed",
"Being lazy": "Jest leniwy.",
"Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "Ścieżka certyfikatu",
"Change Password": "Zmień hasło",
"Channel deleted successfully": "",
"Channel Name": "Nazwa kanału",
"Channel updated successfully": "",
"Channels": "Kanały",
"Character": "Znak",
"Character limit for autocomplete generation input": "Limit znaków dla wejścia generowanego automatycznie",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Blok 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 Workflow": "Komfortowy przepływ 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",
"Comment": "",
"Completions": "Uzupełnienia",
"Compress Images in Channels": "",
"Concurrent Requests": "Równoległe żądania",
"Config imported successfully": "",
"Configure": "Skonfigurować",
"Confirm": "Potwierdź",
"Confirm Password": "Potwierdź hasło",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "Grudzień",
"Deepgram": "",
"Default": "Domyślny",
"Default (Open AI)": "Domyślny (Open AI)",
"Default (SentenceTransformers)": "Domyślny (SentenceTransformers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "Wprowadź opis",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Wprowadź surowy adres URL usługi GitHub",
"Enter Google PSE API Key": "Wprowadź klucz API 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 Jina API Key": "Wprowadź klucz API Jiny",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Wprowadź adres URL (np. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Podaj adres URL swojego webhooka",
"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 media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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",
"Everyone": "Każdy",
"Exa API Key": "Klucz API Exa",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "Haptyczne sprzężenie zwrotne",
"Height": "",
"Hello, {{name}}": "Witaj, {{name}}",
"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!",
@ -733,6 +753,7 @@
"Hide": "Ukryj",
"Hide from Sidebar": "Ukryj z paska bocznego",
"Hide Model": "Ukryj model",
"High": "",
"High Contrast Mode": "",
"Home": "Dom",
"Host": "Serwer",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "Wprowadź polecenia",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "Nieprawidłowa zawartość pliku",
"Invalid file format.": "Nieprawidłowy format pliku.",
"Invalid JSON file": "Nieprawidłowy plik JSON",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Nieprawidłowy tag",
"is typing...": "Pisanie...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "Klucz",
"Key is required": "",
"Keyboard shortcuts": "Skróty klawiszowe",
"Knowledge": "Wiedza",
"Knowledge Access": "Dostęp do wiedzy",
"Knowledge Base": "",
"Knowledge created successfully.": "Pomyślnie utworzona wiedza.",
"Knowledge deleted successfully.": "Wiedza została usunięta pomyślnie.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Pomyślnie zresetowano wiedzę.",
"Knowledge updated successfully": "Wiedza zaktualizowana pomyślnie",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "",
"Lost": "Przegrał",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Opracowane przez społeczność Open WebUI",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"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.",
"May": "Maj",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Wspomnienia dostępne za pomocą LLM zostaną wyświetlone tutaj.",
"Memory": "Pamięć",
"Memory added successfully": "Pamięć dodana pomyślnie",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "Identyfikatory modeli",
"Model Name": "Nazwa modelu",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Model nie został wybrany",
"Model Params": "Parametry modelu",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Nazwa",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nazwij swoją bazę wiedzy",
"Native": "Rodzimy",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Nie wygenerowano żadnego zapytania wyszukiwania",
"No source available": "Źródło nie jest dostępne.",
"No users were found.": "Nie znaleziono użytkowników.",
"No valves": "",
"No valves to update": "Brak zaworów do aktualizacji",
"Node Ids": "",
"None": "Brak",
"Not factually correct": "Niezgodne z rzeczywistością",
"Not helpful": "Nieprzydatne",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Szukaj",
"Search a model": "Wyszukaj model",
"Search all emojis": "",
"Search Base": "Użytkownicy - Baza wyszukiwania",
"Search Chats": "Przeszukaj czaty",
"Search Collection": "Przeszukaj kolekcję",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Sprawdź readme.md dla instrukcji",
"See what's new": "Sprawdź nowości",
"Seed": "Seed",
"Select": "",
"Select a base model": "Wybór modelu bazowego",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "Wybierz silnik",
"Select a function": "Wybierz funkcję",
"Select a group": "Wybierz grupę",
"Select a language": "",
"Select a mode": "",
"Select a model": "Wybierz model",
"Select a model (optional)": "",
"Select a pipeline": "Wybierz potok",
"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 voice": "",
"Select an auth method": "Wybierz metodę uwierzytelniania",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "Wybierz instancję Ollama",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Wybierz silnik",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Wybierz wiedzę",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Klucz API Serply",
"Serpstack API Key": "Klucz API Serpstack",
"Server connection verified": "Połączenie z serwerem zostało zweryfikowane",
"Session": "",
"Set as default": "Ustaw jako domyślny",
"Set CFG Scale": "Ustaw skalę CFG",
"Set Default Model": "Ustaw model domyślny",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"Skip Cache": "",
"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 SK": "",
"Source": "Źródło",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Podtytuł (np. o Imperium Rzymskim)",
"Success": "Sukces",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Uaktualniono pomyślnie.",
"Suggest a change": "",
"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 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 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 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.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Prześlij pliki",
"Upload Pipeline": "Prześlij przepływ",
"Upload Progress": "Postęp przesyłania plików",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "Adres URL",
"URL is required": "",
"URL Mode": "Tryb URL",
"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ę.",
@ -1461,6 +1519,7 @@
"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.",
"Valid time units:": "Dozwolone jednostki czasu:",
"Validate certificate": "",
"Valves": "Zawory",
"Valves updated": "Zawory zaktualizowane",
"Valves updated successfully": "Zawory zaktualizowane pomyślnie",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Szept (Lokalny)",
"Why?": "Dlaczego?",
"Widescreen Mode": "Tryb panoramiczny",
"Width": "",
"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.": "",
"Workspace": "Obszar roboczy",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} linhas ocultas",
"{{COUNT}} Replies": "{{COUNT}} Respostas",
"{{COUNT}} words": "{{COUNT}} palavras",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Chats de {{user}}",
"{{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",
@ -29,6 +30,7 @@
"Account Activation Pending": "Ativação da Conta Pendente",
"Accurate information": "Informações precisas",
"Action": "Ação",
"Action not found": "",
"Actions": "Ações",
"Activate": "Ativar",
"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",
"Amazing": "Incrível",
"an assistant": "um assistente",
"An error occurred while fetching the explanation": "",
"Analytics": "Análise",
"Analyzed": "Analisado",
"Analyzing...": "Analisando...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "Restrições de endpoint de chave de API",
"API keys": "Chaves API",
"API Version": "Versão da API",
"API Version is required": "",
"Application DN": "DN da Aplicação",
"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\"",
@ -160,6 +164,7 @@
"Banners": "Banners",
"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.",
"Bearer": "",
"before": "antes",
"Being lazy": "Sendo preguiçoso",
"Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Capturar Audio",
"Certificate Path": "Caminho do Certificado",
"Change Password": "Alterar Senha",
"Channel deleted successfully": "",
"Channel Name": "Nome do canal",
"Channel updated successfully": "",
"Channels": "Canais",
"Character": "Caracter",
"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 settings modal": "Fechar configurações modal",
"Close Sidebar": "Fechar barra lateral",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "Bloco 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 Workflow": "",
"ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Comando",
"Comment": "Comentário",
"Completions": "Conclusões",
"Compress Images in Channels": "Comprimir imagens em canais",
"Concurrent Requests": "Solicitações simultâneas",
"Config imported successfully": "",
"Configure": "Configurar",
"Confirm": "Confirmar",
"Confirm Password": "Confirmar Senha",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Chave de API do Datalab Marker necessária.",
"DD/MM/YYYY": "",
"December": "Dezembro",
"Deepgram": "",
"Default": "Padrão",
"Default (Open AI)": "Padrão (Open AI)",
"Default (SentenceTransformers)": "Padrão (SentenceTransformers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "Servidores de ferramentas diretas",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "Desativar o interpretador de código",
"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.",
@ -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 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 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 Key": "Insira a chave da API do marcador do Datalab",
"Enter description": "Digite a descrição",
@ -510,6 +523,7 @@
"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 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 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})",
@ -563,6 +577,8 @@
"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://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 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",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Insira a URL do seu webhook",
"Error": "Erro",
"ERROR": "ERRO",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Erro ao acessar o Google Drive: {{error}}",
"Error accessing media devices.": "Erro ao acessar dispositivos de mídia.",
"Error starting recording.": "Erro ao iniciar a gravação.",
"Error unloading model: {{error}}": "Erro ao descarregar modelo: {{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",
"Everyone": "Todos",
"Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "Olá, {{name}}",
"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!",
@ -733,6 +753,7 @@
"Hide": "Ocultar",
"Hide from Sidebar": "Ocultar da barra lateral",
"Hide Model": "Ocultar modelo",
"High": "",
"High Contrast Mode": "Modo de alto contraste",
"Home": "Início",
"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.",
"Input": "Entrada",
"Input commands": "Comandos de entrada",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "Variáveis de entrada",
"Insert": "Inserir",
"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 format.": "Formato de arquivo 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 Tag": "Tag Inválida",
"is typing...": "está digitando...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "Mantenha prompts de acompanhamento no chat",
"Keep in Sidebar": "Manter na barra lateral",
"Key": "Chave",
"Key is required": "",
"Keyboard shortcuts": "Atalhos de Teclado",
"Knowledge": "Conhecimento",
"Knowledge Access": "Acesso ao Conhecimento",
"Knowledge Base": "Base de Conhecimento",
"Knowledge created successfully.": "Conhecimento criado com sucesso.",
"Knowledge deleted successfully.": "Conhecimento excluído com sucesso.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Conhecimento resetado com sucesso.",
"Knowledge updated successfully": "Conhecimento atualizado com sucesso",
@ -852,6 +878,7 @@
"Local Task Model": "Modelo de Tarefa Local",
"Location access not allowed": "Acesso ao local não permitido",
"Lost": "Perdeu",
"Low": "",
"LTR": "Esquerda para Direita",
"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",
@ -873,6 +900,7 @@
"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.",
"May": "Maio",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.",
"Memory": "Memória",
"Memory added successfully": "Memória adicionada com sucesso",
@ -908,6 +936,7 @@
"Model ID is required.": "É necessário o ID do modelo.",
"Model IDs": "IDs 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 not selected": "Modelo não selecionado",
"Model Params": "Parâmetros do Modelo",
@ -926,6 +955,7 @@
"More Concise": "Mais conciso",
"More Options": "Mais opções",
"Name": "Nome",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nome da sua base de conhecimento",
"Native": "Nativo",
"New Button": "Novo Botão",
@ -960,7 +990,9 @@
"No search query generated": "Nenhuma consulta de pesquisa gerada",
"No source available": "Nenhuma fonte disponível",
"No users were found.": "Nenhum usuário foi encontrado.",
"No valves": "",
"No valves to update": "Nenhuma válvula para atualizar",
"Node Ids": "",
"None": "Nenhum",
"Not factually correct": "Não está factualmente correto",
"Not helpful": "Não é útil",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Pesquisar",
"Search a model": "Pesquisar um modelo",
"Search all emojis": "",
"Search Base": "Pesquisar base",
"Search Chats": "Pesquisar Chats",
"Search Collection": "Pesquisar Coleção",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Veja readme.md para instruções",
"See what's new": "Veja o que há de novo",
"Seed": "Seed",
"Select": "",
"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 engine": "Selecione um motor",
"Select a function": "Selecione uma função",
"Select a group": "Selecionar grupo",
"Select a language": "",
"Select a mode": "",
"Select a model": "Selecione um modelo",
"Select a model (optional)": "",
"Select a pipeline": "Selecione um 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 voice": "",
"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 output format": "",
"Select dtype": "",
"Select Engine": "Selecionar Motor",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Selecionar Conhecimento",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Chave da API Serply",
"Serpstack API Key": "Chave da API Serpstack",
"Server connection verified": "Conexão com o servidor verificada",
"Session": "",
"Set as default": "Definir como padrão",
"Set CFG Scale": "Definir escala CFG",
"Set Default Model": "Definir Modelo Padrão",
@ -1265,6 +1313,12 @@
"sk-1234": "",
"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.",
"Something went wrong :/": "",
"Sonar": "",
"Sonar Deep Research": "",
"Sonar Pro": "",
"Sonar Reasoning": "",
"Sonar Reasoning Pro": "",
"Sougou Search API sID": "",
"Sougou Search API SK": "",
"Source": "Fonte",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Exportação de PDF estilizado",
"Subtitle (e.g. about the Roman Empire)": "Subtítulo (por exemplo, sobre o Império Romano)",
"Success": "Sucesso",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Atualizado com sucesso.",
"Suggest a change": "Sugira uma mudança",
"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 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 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 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.",
@ -1439,7 +1495,9 @@
"Upload Files": "Carregar Arquivos",
"Upload Pipeline": "Fazer upload de Pipeline",
"Upload Progress": "Progresso do Upload",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "",
"URL is required": "",
"URL Mode": "Modo URL",
"Usage": "Uso",
"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 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:",
"Validate certificate": "",
"Valves": "Válvulas",
"Valves updated": "Válvulas atualizadas",
"Valves updated successfully": "Válvulas atualizadas com sucesso",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Local)",
"Why?": "Por que",
"Widescreen Mode": "Modo Tela Cheia",
"Width": "",
"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.",
"Workspace": "Espaço de Trabalho",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}'s Chats",
"{{webUIName}} Backend Required": "{{webUIName}} Backend Necessário",
"*Prompt node ID(s) are required for image generation": "",
@ -29,6 +30,7 @@
"Account Activation Pending": "Ativação da Conta Pendente",
"Accurate information": "Informações precisas",
"Action": "",
"Action not found": "",
"Actions": "",
"Activate": "",
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "",
"Amazing": "",
"an assistant": "um assistente",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "",
"Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "",
"API keys": "Chaves da API",
"API Version": "",
"API Version is required": "",
"Application DN": "",
"Application DN Password": "",
"applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "Estandartes",
"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.": "",
"Bearer": "",
"before": "antes",
"Being lazy": "Ser preguiçoso",
"Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "",
"Change Password": "Alterar Senha",
"Channel deleted successfully": "",
"Channel Name": "",
"Channel updated successfully": "",
"Channels": "",
"Character": "",
"Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"Code execution": "",
"Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "O URL Base do ComfyUI é obrigatório.",
"ComfyUI Workflow": "",
"ComfyUI Workflow Nodes": "",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Comando",
"Comment": "",
"Completions": "",
"Compress Images in Channels": "",
"Concurrent Requests": "Solicitações simultâneas",
"Config imported successfully": "",
"Configure": "",
"Confirm": "",
"Confirm Password": "Confirmar Senha",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "Dezembro",
"Deepgram": "",
"Default": "Padrão",
"Default (Open AI)": "",
"Default (SentenceTransformers)": "Padrão (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "",
@ -510,6 +523,7 @@
"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 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 Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Escreva o URL (por exemplo, http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "",
"Error": "Erro",
"ERROR": "",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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": "",
"Everyone": "",
"Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "",
"Height": "",
"Hello, {{name}}": "Olá, {{name}}",
"Help": "Ajuda",
"Help us create the best community leaderboard by sharing your feedback history!": "",
@ -733,6 +753,7 @@
"Hide": "Ocultar",
"Hide from Sidebar": "",
"Hide Model": "",
"High": "",
"High Contrast Mode": "",
"Home": "",
"Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "Comandos de entrada",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Etiqueta Inválida",
"is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "",
"Key is required": "",
"Keyboard shortcuts": "Atalhos de teclado",
"Knowledge": "Conhecimento",
"Knowledge Access": "",
"Knowledge Base": "",
"Knowledge created successfully.": "",
"Knowledge deleted successfully.": "",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "",
"Knowledge updated successfully": "",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "",
"Lost": "",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Feito pela Comunidade OpenWebUI",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"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.",
"May": "Maio",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.",
"Memory": "Memória",
"Memory added successfully": "",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "",
"Model Name": "",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Modelo não selecionado",
"Model Params": "Params Modelo",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Nome",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Native": "",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Não foi gerada nenhuma consulta de pesquisa",
"No source available": "Nenhuma fonte disponível",
"No users were found.": "",
"No valves": "",
"No valves to update": "",
"Node Ids": "",
"None": "Nenhum",
"Not factually correct": "Não é correto em termos factuais",
"Not helpful": "",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Pesquisar",
"Search a model": "Pesquisar um modelo",
"Search all emojis": "",
"Search Base": "",
"Search Chats": "Pesquisar Conversas",
"Search Collection": "",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Consulte readme.md para obter instruções",
"See what's new": "Veja o que há de novo",
"Seed": "Semente",
"Select": "",
"Select a base model": "Selecione um modelo base",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "Selecione um motor",
"Select a function": "",
"Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Selecione um modelo",
"Select a model (optional)": "",
"Select a pipeline": "Selecione um 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 voice": "",
"Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "",
"Serpstack API Key": "Chave da API Serpstack",
"Server connection verified": "Conexão com o servidor verificada",
"Session": "",
"Set as default": "Definir como padrão",
"Set CFG Scale": "",
"Set Default Model": "Definir Modelo Padrão",
@ -1265,6 +1313,12 @@
"sk-1234": "",
"Skip Cache": "",
"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 SK": "",
"Source": "Fonte",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Subtítulo (ex.: sobre o Império Romano)",
"Success": "Sucesso",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Atualizado com sucesso.",
"Suggest a change": "",
"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 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 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 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.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Carregar ficheiros",
"Upload Pipeline": "Carregar Pipeline",
"Upload Progress": "Progresso do Carregamento",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "",
"URL is required": "",
"URL Mode": "Modo de URL",
"Usage": "",
"Use '#' in the prompt input to load and include your knowledge.": "",
@ -1461,6 +1519,7 @@
"Using Focused Retrieval": "",
"Using the default arena model with all models. Click the plus button to add custom models.": "",
"Valid time units:": "Unidades de tempo válidas:",
"Validate certificate": "",
"Valves": "",
"Valves updated": "",
"Valves updated successfully": "",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Local)",
"Why?": "",
"Widescreen Mode": "Modo Widescreen",
"Width": "",
"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.": "",
"Workspace": "Espaço de Trabalho",

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Conversațiile lui {{user}}",
"{{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*",
@ -29,6 +30,7 @@
"Account Activation Pending": "Activarea contului în așteptare",
"Accurate information": "Informații precise",
"Action": "",
"Action not found": "",
"Actions": "Acțiuni",
"Activate": "Activează",
"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": "",
"Amazing": "Uimitor",
"an assistant": "un asistent",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "Analizat",
"Analyzing...": "Se analizează...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "",
"API keys": "Chei API",
"API Version": "",
"API Version is required": "",
"Application DN": "",
"Application DN Password": "",
"applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "Bannere",
"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.": "",
"Bearer": "",
"before": "înainte",
"Being lazy": "Fiind leneș",
"Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "",
"Change Password": "Schimbă Parola",
"Channel deleted successfully": "",
"Channel Name": "",
"Channel updated successfully": "",
"Channels": "",
"Character": "Caracter",
"Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"Code execution": "Executarea codului",
"Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "Este necesar URL-ul De Bază ComfyUI.",
"ComfyUI Workflow": "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ă",
"Comment": "",
"Completions": "Completări",
"Compress Images in Channels": "",
"Concurrent Requests": "Cereri Concurente",
"Config imported successfully": "",
"Configure": "Configurează",
"Confirm": "Confirmă",
"Confirm Password": "Confirmă Parola",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "Decembrie",
"Deepgram": "",
"Default": "Implicit",
"Default (Open AI)": "Implicit (Open AI)",
"Default (SentenceTransformers)": "Implicit (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "Introduceți descrierea",
@ -510,6 +523,7 @@
"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 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 Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Introduceți URL-ul (de ex. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "",
"Error": "Eroare",
"ERROR": "EROARE",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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",
"Everyone": "",
"Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "Feedback haptic",
"Height": "",
"Hello, {{name}}": "Salut, {{name}}",
"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!",
@ -733,6 +753,7 @@
"Hide": "Ascunde",
"Hide from Sidebar": "",
"Hide Model": "",
"High": "",
"High Contrast Mode": "",
"Home": "",
"Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "Comenzi de intrare",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "Format de fișier invalid.",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Etichetă Invalidă",
"is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "",
"Key is required": "",
"Keyboard shortcuts": "Scurtături de la Tastatură",
"Knowledge": "Cunoștințe",
"Knowledge Access": "",
"Knowledge Base": "",
"Knowledge created successfully.": "Cunoașterea a fost creată cu succes.",
"Knowledge deleted successfully.": "Cunoștințele au fost șterse cu succes.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Resetarea cunoștințelor a fost efectuată cu succes.",
"Knowledge updated successfully": "Cunoașterea a fost actualizată cu succes",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "",
"Lost": "Pierdut",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Realizat de Comunitatea OpenWebUI",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"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.",
"May": "Mai",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Memoriile accesibile de LLM-uri vor fi afișate aici.",
"Memory": "Memorie",
"Memory added successfully": "Memoria a fost adăugată cu succes",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "",
"Model Name": "Nume model",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Modelul nu a fost selectat",
"Model Params": "Parametri Model",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Nume",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Native": "",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Nu a fost generată nicio interogare de căutare",
"No source available": "Nicio sursă disponibilă",
"No users were found.": "",
"No valves": "",
"No valves to update": "Nu există valve de actualizat",
"Node Ids": "",
"None": "Niciunul",
"Not factually correct": "Nu este corect din punct de vedere factual",
"Not helpful": "Nu este de ajutor",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Caută",
"Search a model": "Caută un model",
"Search all emojis": "",
"Search Base": "",
"Search Chats": "Caută în Conversații",
"Search Collection": "Căutare Colecție",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Consultați readme.md pentru instrucțiuni",
"See what's new": "Vezi ce e nou",
"Seed": "",
"Select": "",
"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 engine": "Selectează un motor",
"Select a function": "Selectează o funcție",
"Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Selectează un model",
"Select a model (optional)": "",
"Select a pipeline": "Selectează o 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 voice": "",
"Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"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 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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Cheie API Serply",
"Serpstack API Key": "Cheie API Serpstack",
"Server connection verified": "Conexiunea la server a fost verificată",
"Session": "",
"Set as default": "Setează ca implicit",
"Set CFG Scale": "Setează scala CFG",
"Set Default Model": "Setează Modelul Implicit",
@ -1265,6 +1313,12 @@
"sk-1234": "",
"Skip Cache": "",
"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 SK": "",
"Source": "Sursă",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Subtitlu (de ex. despre Imperiul Roman)",
"Success": "Succes",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Actualizat cu succes.",
"Suggest a change": "",
"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 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 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 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.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Încarcă Fișiere",
"Upload Pipeline": "Încarcă Conducta",
"Upload Progress": "Progres Încărcare",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "",
"URL is required": "",
"URL Mode": "Mod URL",
"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.",
@ -1461,6 +1519,7 @@
"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.",
"Valid time units:": "Unități de timp valide:",
"Validate certificate": "",
"Valves": "Valve",
"Valves updated": "Valve actualizate",
"Valves updated successfully": "Valve actualizate cu succes",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Local)",
"Why?": "",
"Widescreen Mode": "Mod Ecran Larg",
"Width": "",
"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.": "",
"Workspace": "Spațiu de Lucru",

View File

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

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}'s konverzácie",
"{{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",
@ -29,6 +30,7 @@
"Account Activation Pending": "Čaká sa na aktiváciu účtu",
"Accurate information": "Presné informácie",
"Action": "",
"Action not found": "",
"Actions": "Akcie",
"Activate": "",
"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": "",
"Amazing": "",
"an assistant": "asistent",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "",
"Analyzing...": "",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "",
"API keys": "API kľúče",
"API Version": "",
"API Version is required": "",
"Application DN": "",
"Application DN Password": "",
"applies to all users with the \"user\" role": "",
@ -160,6 +164,7 @@
"Banners": "Bannery",
"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.": "",
"Bearer": "",
"before": "pred",
"Being lazy": "",
"Beta": "",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "",
"Change Password": "Zmeniť heslo",
"Channel deleted successfully": "",
"Channel Name": "",
"Channel updated successfully": "",
"Channels": "",
"Character": "Znak",
"Character limit for autocomplete generation input": "",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"Code execution": "Vykonávanie kódu",
"Code Execution": "",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "Je vyžadovaná základná URL pre ComfyUI.",
"ComfyUI Workflow": "Pracovný postup ComfyUI",
"ComfyUI Workflow Nodes": "Pracovné uzly ComfyUI",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Príkaz",
"Comment": "",
"Completions": "Doplnenia",
"Compress Images in Channels": "",
"Concurrent Requests": "Súčasné požiadavky",
"Config imported successfully": "",
"Configure": "Konfigurovať",
"Confirm": "Potvrdiť",
"Confirm Password": "Potvrdenie hesla",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "December",
"Deepgram": "",
"Default": "Predvolené hodnoty alebo nastavenia.",
"Default (Open AI)": "Predvolené (Open AI)",
"Default (SentenceTransformers)": "Predvolené (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "Zadajte popis",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Zadajte URL adresu Github Raw",
"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 hex color (e.g. #FF0000)": "",
"Enter Image Size (e.g. 512x512)": "Zadajte veľkosť obrázka (napr. 512x512)",
"Enter Jina API Key": "",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Zadajte URL (napr. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "",
"Error": "Chyba",
"ERROR": "Chyba",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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",
"Everyone": "",
"Exa API Key": "",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "Haptická spätná väzba",
"Height": "",
"Hello, {{name}}": "Ahoj, {{name}}",
"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!",
@ -733,6 +753,7 @@
"Hide": "Skryť",
"Hide from Sidebar": "",
"Hide Model": "",
"High": "",
"High Contrast Mode": "",
"Home": "",
"Host": "",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "Vstupné príkazy",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "Neplatný formát súboru.",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Neplatný tag",
"is typing...": "",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "",
"Key is required": "",
"Keyboard shortcuts": "Klávesové skratky",
"Knowledge": "Znalosti",
"Knowledge Access": "",
"Knowledge Base": "",
"Knowledge created successfully.": "Znalosť úspešne vytvorená.",
"Knowledge deleted successfully.": "Znalosti boli úspešne odstránené.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Úspešné obnovenie znalostí.",
"Knowledge updated successfully": "Znalosti úspešne aktualizované",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "",
"Lost": "Stratený",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Vytvorené komunitou OpenWebUI",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"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.",
"May": "Máj",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Spomienky prístupné LLM budú zobrazené tu.",
"Memory": "Pamäť",
"Memory added successfully": "Pamäť bola úspešne pridaná.",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "",
"Model Name": "Názov modelu",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Model nebol vybraný",
"Model Params": "Parametre modelu",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Meno",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Native": "",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Nebola vygenerovaná žiadna vyhľadávacia otázka.",
"No source available": "Nie je dostupný žiadny zdroj.",
"No users were found.": "",
"No valves": "",
"No valves to update": "Žiadne ventily na aktualizáciu",
"Node Ids": "",
"None": "Žiadny",
"Not factually correct": "Nie je fakticky správne",
"Not helpful": "Nepomocné",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Vyhľadávanie",
"Search a model": "Vyhľadať model",
"Search all emojis": "",
"Search Base": "",
"Search Chats": "Vyhľadávanie v chate",
"Search Collection": "Hľadať kolekciu",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Pozrite si {{readme.md}} pre pokyny.",
"See what's new": "Pozrite sa, čo je nové",
"Seed": "Semienko",
"Select": "",
"Select a base model": "Vyberte základný model",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "Vyberte engine",
"Select a function": "Vyberte funkciu",
"Select a group": "",
"Select a language": "",
"Select a mode": "",
"Select a model": "Vyberte model",
"Select a model (optional)": "",
"Select a pipeline": "Vyberte pipeline",
"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 voice": "",
"Select an auth method": "",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Vyberte engine",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Vybrať znalosti",
"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.",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API kľúč",
"Serpstack API Key": "Kľúč API pre Serpstack",
"Server connection verified": "Pripojenie k serveru overené",
"Session": "",
"Set as default": "Nastaviť ako predvolené",
"Set CFG Scale": "Nastavte hodnotu CFG Scale",
"Set Default Model": "Nastavenie predvoleného modelu",
@ -1265,6 +1313,12 @@
"sk-1234": "",
"Skip Cache": "",
"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 SK": "",
"Source": "Zdroj",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Titulky (napr. o Rímskej ríši)",
"Success": "Úspech",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Úspešne aktualizované.",
"Suggest a change": "",
"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 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 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 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.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Nahrať súbory",
"Upload Pipeline": "Nahrať pipeline",
"Upload Progress": "Priebeh nahrávania",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "",
"URL is required": "",
"URL Mode": "Režim URL",
"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í.",
@ -1461,6 +1519,7 @@
"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.",
"Valid time units:": "Platné časové jednotky:",
"Validate certificate": "",
"Valves": "Ventily",
"Valves updated": "Ventily aktualizované",
"Valves updated successfully": "Ventily boli úspešne aktualizované.",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Lokálne)",
"Why?": "Prečo?",
"Widescreen Mode": "Režim širokouhlého zobrazenia",
"Width": "",
"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.": "",
"Workspace": "",

View File

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

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} dolda rader",
"{{COUNT}} Replies": "{{COUNT}} Svar",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}s Chattar",
"{{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",
@ -29,6 +30,7 @@
"Account Activation Pending": "Kontoaktivering väntar",
"Accurate information": "Exakt information",
"Action": "",
"Action not found": "",
"Actions": "Åtgärder",
"Activate": "Aktivera",
"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",
"Amazing": "Fantastiskt",
"an assistant": "en assistent",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "Analyserad",
"Analyzing...": "Analyserar...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API-nyckel Endpoint-begränsningar",
"API keys": "API-nycklar",
"API Version": "API-version",
"API Version is required": "",
"Application DN": "Applikations-DN",
"Application DN Password": "Applikations-DN lösenord",
"applies to all users with the \"user\" role": "gäller alla användare med \"user\"-rollen",
@ -160,6 +164,7 @@
"Banners": "Banners",
"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.": "",
"Bearer": "",
"before": "före",
"Being lazy": "Är lat",
"Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Fånga ljud",
"Certificate Path": "Certifikatväg",
"Change Password": "Ändra lösenord",
"Channel deleted successfully": "",
"Channel Name": "Kanalnamn",
"Channel updated successfully": "",
"Channels": "Kanaler",
"Character": "Tecken",
"Character limit for autocomplete generation input": "Teckengräns för inmatning av automatisk komplettering",
@ -238,6 +245,7 @@
"Close modal": "Stäng modal",
"Close settings modal": "Stäng inställningsmodal",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"Code execution": "Kodkörning",
"Code Execution": "Kodkörning",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI Base URL krävs.",
"ComfyUI Workflow": "ComfyUI Arbetsflöde",
"ComfyUI Workflow Nodes": "ComfyUI Arbetsflödesnoder",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Kommando",
"Comment": "",
"Completions": "Slutföranden",
"Compress Images in Channels": "",
"Concurrent Requests": "Parallella anrop",
"Config imported successfully": "",
"Configure": "Konfigurera",
"Confirm": "Bekräfta",
"Confirm Password": "Bekräfta lösenord",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "Datalab Marker API-nyckel krävs.",
"DD/MM/YYYY": "",
"December": "december",
"Deepgram": "",
"Default": "Standard",
"Default (Open AI)": "Standard (Open AI)",
"Default (SentenceTransformers)": "Standard (SentenceTransformers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "Direkta verktygsservrar",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"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.",
@ -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 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 coordinates (e.g. 51.505, -0.09)": "",
"Enter Datalab Marker API Base URL": "",
"Enter Datalab Marker API Key": "Ange Datalab Marker API-nyckel",
"Enter description": "Ange beskrivning",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Ange Github Raw URL",
"Enter Google PSE API Key": "Ange Google PSE API-nyckel",
"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 Jina API Key": "Ange Jina API-nyckel",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Ange URL (t.ex. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"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 Username": "Ange Yacy-användarnamn",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Ange din webhook-URL",
"Error": "Fel",
"ERROR": "FEL",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Fel vid åtkomst till Google Drive: {{error}}",
"Error accessing media devices.": "Fel vid åtkomst till mediaenheter.",
"Error starting recording.": "Fel vid start av inspelning.",
"Error unloading model: {{error}}": "Fel vid avlastning av modell: {{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",
"Everyone": "",
"Exa API Key": "Exa API-nyckel",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "Haptisk återkoppling",
"Height": "",
"Hello, {{name}}": "Hej, {{name}}",
"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!",
@ -733,6 +753,7 @@
"Hide": "Dölj",
"Hide from Sidebar": "Dölj från sidofältet",
"Hide Model": "Dölj modell",
"High": "",
"High Contrast Mode": "Högkontrastläge",
"Home": "Hem",
"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.",
"Input": "",
"Input commands": "Indatakommandon",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "Ogiltigt filinnehåll",
"Invalid file format.": "Ogiltigt filformat.",
"Invalid JSON file": "Ogiltig JSON-fil",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Ogiltig tagg",
"is typing...": "skriver...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "Behåll i sidofältet",
"Key": "Nyckel",
"Key is required": "",
"Keyboard shortcuts": "Tangentbordsgenvägar",
"Knowledge": "Kunskap",
"Knowledge Access": "Kunskapsåtkomst",
"Knowledge Base": "",
"Knowledge created successfully.": "Kunskapen har skapats.",
"Knowledge deleted successfully.": "Kunskapen har tagits bort.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "Offentlig delning av kunskap",
"Knowledge reset successfully.": "Kunskapen har återställts.",
"Knowledge updated successfully": "Kunskapen har uppdaterats",
@ -852,6 +878,7 @@
"Local Task Model": "Lokal uppgiftsmodell",
"Location access not allowed": "Åtkomst till platsen är inte tillåten",
"Lost": "Förlorad",
"Low": "",
"LTR": "Vänster till höger",
"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",
@ -873,6 +900,7 @@
"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.",
"May": "maj",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "Minnen som är tillgängliga för LLM:er visas här.",
"Memory": "Minne",
"Memory added successfully": "Minnet har lagts till",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "Modell-ID:n",
"Model Name": "Modellnamn",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Modell inte vald",
"Model Params": "Modellparametrar",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Namn",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Namnge din kunskapsbas",
"Native": "Inbyggd",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Ingen sökfråga genererad",
"No source available": "Ingen tillgänglig källa",
"No users were found.": "Inga användare hittades.",
"No valves": "",
"No valves to update": "Inga ventiler att uppdatera",
"Node Ids": "",
"None": "Ingen",
"Not factually correct": "Inte faktiskt korrekt",
"Not helpful": "Inte hjälpsam",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "Scrolla vid grenbyte",
"Search": "Sök",
"Search a model": "Sök efter en modell",
"Search all emojis": "",
"Search Base": "Sökbas",
"Search Chats": "Sök i chattar",
"Search Collection": "Sök samling",
@ -1187,18 +1220,32 @@
"See readme.md for instructions": "Se readme.md för instruktioner",
"See what's new": "Se vad som är nytt",
"Seed": "Seed",
"Select": "",
"Select a base model": "Välj en basmodell",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "Välj en motor",
"Select a function": "Välj en funktion",
"Select a group": "Välj en grupp",
"Select a language": "",
"Select a mode": "",
"Select a model": "Välj en modell",
"Select a model (optional)": "",
"Select a pipeline": "Välj en rörledning",
"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 voice": "",
"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 output format": "",
"Select dtype": "",
"Select Engine": "Välj motor",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Välj kunskap",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API-nyckel",
"Serpstack API Key": "Serpstack API-nyckel",
"Server connection verified": "Serveranslutning verifierad",
"Session": "",
"Set as default": "Ange som standard",
"Set CFG Scale": "Ställ in CFG-skala",
"Set Default Model": "Ange standardmodell",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"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.",
"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 SK": "Sougou Sök API SK",
"Source": "Källa",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "Stiliserad PDF-export",
"Subtitle (e.g. about the Roman Empire)": "Undertext (t.ex. om Romerska Imperiet)",
"Success": "Framgång",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Uppdaterades framgångsrikt.",
"Suggest a change": "",
"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 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 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 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.",
@ -1439,7 +1495,9 @@
"Upload Files": "Ladda upp filer",
"Upload Pipeline": "Ladda upp rörledning",
"Upload Progress": "Uppladdningsframsteg",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL",
"URL is required": "",
"URL Mode": "URL-läge",
"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",
@ -1461,6 +1519,7 @@
"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",
"Valid time units:": "Giltiga tidsenheter:",
"Validate certificate": "",
"Valves": "Ventiler",
"Valves updated": "Ventiler uppdaterade",
"Valves updated successfully": "Ventiler uppdaterade",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (lokal)",
"Why?": "Varför?",
"Widescreen Mode": "Bredbildsläge",
"Width": "",
"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.",
"Workspace": "Arbetsyta",

View File

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

View File

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

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "",
"{{COUNT}} Replies": "{{COUNT}} Yanıt",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "{{user}}'ın Sohbetleri",
"{{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",
@ -29,6 +30,7 @@
"Account Activation Pending": "Hesap Aktivasyonu Bekleniyor",
"Accurate information": "Doğru bilgi",
"Action": "",
"Action not found": "",
"Actions": "Aksiyonlar",
"Activate": "Aktif Et",
"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": "",
"Amazing": "Harika",
"an assistant": "bir asistan",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "Analiz edildi",
"Analyzing...": "Analiz ediliyor...",
@ -113,6 +116,7 @@
"API Key Endpoint Restrictions": "API Anahtarı Uç Nokta Kısıtlamaları",
"API keys": "API anahtarları",
"API Version": "",
"API Version is required": "",
"Application DN": "Uygulama DN",
"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",
@ -160,6 +164,7 @@
"Banners": "Afişler",
"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.": "",
"Bearer": "",
"before": "önce",
"Being lazy": "Tembelleşiyor",
"Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "Sesi Kaydet",
"Certificate Path": "Sertifika Yolu",
"Change Password": "Parola Değiştir",
"Channel deleted successfully": "",
"Channel Name": "Kanal Adı",
"Channel updated successfully": "",
"Channels": "Kanallar",
"Character": "Karakter",
"Character limit for autocomplete generation input": "Otomatik tamamlama üretimi girişi için karakter sınırı",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"Code execution": "Kod yürütme",
"Code Execution": "Kod Çalıştırma",
@ -256,11 +264,13 @@
"ComfyUI Base URL is required.": "ComfyUI Temel URL gerekli.",
"ComfyUI Workflow": "ComfyUI İş Akışı",
"ComfyUI Workflow Nodes": "ComfyUI İş Akışı Düğümleri",
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
"Command": "Komut",
"Comment": "",
"Completions": "Tamamlamalar",
"Compress Images in Channels": "",
"Concurrent Requests": "Eşzamanlı İstekler",
"Config imported successfully": "",
"Configure": "Yapılandırma",
"Confirm": "Onayla",
"Confirm Password": "Parolayı Onayla",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "Aralık",
"Deepgram": "",
"Default": "Varsayılan",
"Default (Open AI)": "Varsayılan (Open AI)",
"Default (SentenceTransformers)": "Varsayılan (SentenceTransformers)",
@ -377,6 +388,7 @@
"Direct Connections": "Doğrudan Bağlantılar",
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "",
"Direct Tool Servers": "",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "Açıklama girin",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Github Raw URL'sini girin",
"Enter Google PSE API Key": "Google PSE API Anahtarını 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 Jina API Key": "Jina API Anahtarını Girin",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "URL'yi Girin (e.g. http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Webhook URL'nizi girin",
"Error": "Hata",
"ERROR": "HATA",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Google Drive'a erişim hatası: {{error}}",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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",
"Everyone": "",
"Exa API Key": "Exa API Anahtarı",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "Dokunsal Geri Bildirim",
"Height": "",
"Hello, {{name}}": "Merhaba, {{name}}",
"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!",
@ -733,6 +753,7 @@
"Hide": "Gizle",
"Hide from Sidebar": "",
"Hide Model": "Modeli Gizle",
"High": "",
"High Contrast Mode": "",
"Home": "",
"Host": "Ana bilgisayar",
@ -778,6 +799,7 @@
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input commands": "Giriş komutları",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "Geçersiz dosya biçimi.",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Geçersiz etiket",
"is typing...": "yazıyor...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "Anahtar",
"Key is required": "",
"Keyboard shortcuts": "Klavye kısayolları",
"Knowledge": "Bilgi",
"Knowledge Access": "Bilgi Erişimi",
"Knowledge Base": "",
"Knowledge created successfully.": "Bilgi başarıyla oluşturuldu.",
"Knowledge deleted successfully.": "Bilgi başarıyla silindi.",
"Knowledge Description": "",
"Knowledge Name": "",
"Knowledge Public Sharing": "",
"Knowledge reset successfully.": "Bilgi başarıyla sıfırlandı.",
"Knowledge updated successfully": "Bilgi başarıyla güncellendi",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "",
"Lost": "Kayıp",
"Low": "",
"LTR": "Soldan Sağa",
"Made by Open WebUI Community": "OpenWebUI Topluluğu tarafından yapılmıştır",
"Make password visible in the user interface": "",
@ -873,6 +900,7 @@
"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.",
"May": "Mayıs",
"Medium": "",
"Memories accessible by LLMs will be shown here.": "LLM'ler tarafından erişilebilen bellekler burada gösterilecektir.",
"Memory": "Bellek",
"Memory added successfully": "Bellek başarıyla eklendi",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "Model Kimlikleri",
"Model Name": "Model Adı",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Model seçilmedi",
"Model Params": "Model Parametreleri",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"Name": "Ad",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Bilgi tabanınıza bir ad verin",
"Native": "",
"New Button": "",
@ -960,7 +990,9 @@
"No search query generated": "Hiç arama sorgusu oluşturulmadı",
"No source available": "Kaynak mevcut değil",
"No users were found.": "Kullanıcı bulunamadı.",
"No valves": "",
"No valves to update": "Güncellenecek valvler yok",
"Node Ids": "",
"None": "Yok",
"Not factually correct": "Gerçeklere göre doğru değil",
"Not helpful": "Yardımcı olmadı",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Ara",
"Search a model": "Bir model ara",
"Search all emojis": "",
"Search Base": "Temel Ara",
"Search Chats": "Sohbetleri 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 what's new": "Yeniliklere göz atın",
"Seed": "Seed",
"Select": "",
"Select a base model": "Bir temel model seç",
"Select a base model (e.g. llama3, gpt-4o)": "",
"Select a conversation to preview": "",
"Select a engine": "Bir motor seç",
"Select a function": "Bir fonksiyon seç",
"Select a group": "Bir grup seç",
"Select a language": "",
"Select a mode": "",
"Select a model": "Bir model seç",
"Select a model (optional)": "",
"Select a pipeline": "Bir pipeline 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 voice": "",
"Select an auth method": "Yetkilendirme yöntemi seç",
"Select an embedding model engine": "",
"Select an engine": "",
"Select an Ollama instance": "",
"Select an output format": "",
"Select dtype": "",
"Select Engine": "Motor Seç",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Bilgi 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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Serply API Anahtarı",
"Serpstack API Key": "Serpstack API Anahtarı",
"Server connection verified": "Sunucu bağlantısı doğrulandı",
"Session": "",
"Set as default": "Varsayılan olarak ayarla",
"Set CFG Scale": "CFG Ölçeğini Ayarla",
"Set Default Model": "Varsayılan Modeli Ayarla",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"Skip Cache": "",
"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 SK": "",
"Source": "Kaynak",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Alt başlık (örn. Roma İmparatorluğu hakkında)",
"Success": "Başarılı",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Başarıyla güncellendi.",
"Suggest a change": "",
"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 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 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 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.": "",
@ -1439,7 +1495,9 @@
"Upload Files": "Dosyaları Yükle",
"Upload Pipeline": "Pipeline Yükle",
"Upload Progress": "Yükleme İlerlemesi",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL",
"URL is required": "",
"URL Mode": "URL Modu",
"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.",
@ -1461,6 +1519,7 @@
"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.",
"Valid time units:": "Geçerli zaman birimleri:",
"Validate certificate": "",
"Valves": "Valvler",
"Valves updated": "Valvler güncellendi",
"Valves updated successfully": "Valvler başarıyla güncellendi",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Yerel)",
"Why?": "Neden?",
"Widescreen Mode": "Geniş Ekran Modu",
"Width": "",
"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.": "",
"Workspace": "Çalışma Alanı",

View File

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

View File

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

View File

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

View File

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

View File

@ -14,6 +14,7 @@
"{{COUNT}} hidden lines": "{{COUNT}} dòng bị ẩn",
"{{COUNT}} Replies": "{{COUNT}} Trả lời",
"{{COUNT}} words": "",
"{{model}} download has been canceled": "",
"{{user}}'s Chats": "Các cuộc trò chuyện của {{user}}",
"{{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",
@ -29,6 +30,7 @@
"Account Activation Pending": "Tài khoản đang chờ kích hoạt",
"Accurate information": "Thông tin chính xác",
"Action": "",
"Action not found": "",
"Actions": "Tác vụ",
"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.",
@ -97,6 +99,7 @@
"Always Play Notification Sound": "",
"Amazing": "Tuyệt vời",
"an assistant": "trợ lý",
"An error occurred while fetching the explanation": "",
"Analytics": "",
"Analyzed": "Đã 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 keys": "API Keys",
"API Version": "",
"API Version is required": "",
"Application DN": "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\"",
@ -160,6 +164,7 @@
"Banners": "Biểu ngữ",
"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.": "",
"Bearer": "",
"before": "trước",
"Being lazy": "Lười biếng",
"Beta": "Beta",
@ -189,7 +194,9 @@
"Capture Audio": "",
"Certificate Path": "Đường dẫn Chứng chỉ",
"Change Password": "Đổi Mật khẩu",
"Channel deleted successfully": "",
"Channel Name": "Tên Kênh",
"Channel updated successfully": "",
"Channels": "Kênh",
"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",
@ -238,6 +245,7 @@
"Close modal": "",
"Close settings modal": "",
"Close Sidebar": "",
"CMU ARCTIC speaker embedding name": "",
"Code Block": "",
"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 Workflow": "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",
"Comment": "",
"Completions": "Hoàn thành",
"Compress Images in Channels": "",
"Concurrent Requests": "Các truy vấn đồng thời",
"Config imported successfully": "",
"Configure": "Cấu hình",
"Confirm": "Xác nhận",
"Confirm Password": "Xác nhận Mật khẩu",
@ -331,6 +341,7 @@
"Datalab Marker API Key required.": "",
"DD/MM/YYYY": "",
"December": "Tháng 12",
"Deepgram": "",
"Default": "Mặc định",
"Default (Open AI)": "Mặc định (Open AI)",
"Default (SentenceTransformers)": "Mặc định (SentenceTransformers)",
@ -377,6 +388,7 @@
"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 Tool Servers": "Máy chủ Công cụ Trực tiếp",
"Directory selection was cancelled": "",
"Disable Code Interpreter": "",
"Disable Image Extraction": "",
"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 Config in JSON format": "",
"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 Key": "",
"Enter description": "Nhập mô tả",
@ -510,6 +523,7 @@
"Enter Github Raw URL": "Nhập URL cho Github Raw",
"Enter Google PSE API Key": "Nhập Google PSE API Key",
"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 Jina API Key": "Nhập Khóa API Jina",
"Enter JSON config (e.g., {\"disable_links\": true})": "",
@ -563,6 +577,8 @@
"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://localhost:11434)": "Nhập URL (vd: http://localhost:11434)",
"Enter value": "",
"Enter value (true/false)": "",
"Enter Yacy Password": "",
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
"Enter Yacy Username": "",
@ -579,11 +595,14 @@
"Enter your webhook URL": "Nhập URL webhook của bạn",
"Error": "Lỗi",
"ERROR": "LỖI",
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Lỗi truy cập Google Drive: {{error}}",
"Error accessing media devices.": "",
"Error starting recording.": "",
"Error unloading model: {{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á",
"Everyone": "",
"Exa API Key": "Khóa API Exa",
@ -725,6 +744,7 @@
"H2": "",
"H3": "",
"Haptic Feedback": "Phản hồi xúc giác",
"Height": "",
"Hello, {{name}}": "Xin chào {{name}}",
"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!",
@ -733,6 +753,7 @@
"Hide": "Ẩn",
"Hide from Sidebar": "",
"Hide Model": "Ẩn Mô hình",
"High": "",
"High Contrast Mode": "",
"Home": "Trang chủ",
"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.",
"Input": "",
"Input commands": "Nhập các câu lệnh",
"Input Key (e.g. text, unet_name, steps)": "",
"Input Variables": "",
"Insert": "",
"Insert Follow-Up Prompt to Input": "",
@ -789,6 +811,7 @@
"Invalid file content": "",
"Invalid file format.": "Định dạng tệp không hợp lệ.",
"Invalid JSON file": "",
"Invalid JSON format for ComfyUI Workflow.": "",
"Invalid JSON format in Additional Config": "",
"Invalid Tag": "Tag không hợp lệ",
"is typing...": "đang gõ...",
@ -808,12 +831,15 @@
"Keep Follow-Up Prompts in Chat": "",
"Keep in Sidebar": "",
"Key": "Khóa",
"Key is required": "",
"Keyboard shortcuts": "Phím tắt",
"Knowledge": "Kiến thức",
"Knowledge Access": "Truy cập Kiến thức",
"Knowledge Base": "",
"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 Description": "",
"Knowledge Name": "",
"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 updated successfully": "Đã cập nhật kiến thức thành công",
@ -852,6 +878,7 @@
"Local Task Model": "",
"Location access not allowed": "Không cho phép truy cập vị trí",
"Lost": "Thua",
"Low": "",
"LTR": "LTR",
"Made by Open WebUI Community": "Được tạo bởi Cộng đồng OpenWebUI",
"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",
"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",
"Medium": "",
"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 added successfully": "Memory đã được thêm thành công",
@ -908,6 +936,7 @@
"Model ID is required.": "",
"Model IDs": "Các ID Mô hình",
"Model Name": "Tên Mô hình",
"Model name already exists, please choose a different one": "",
"Model Name is required.": "",
"Model not selected": "Chưa chọn Mô hình",
"Model Params": "Mô hình Params",
@ -926,6 +955,7 @@
"More Concise": "",
"More Options": "",
"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",
"Native": "Gốc",
"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 source available": "Không có nguồn",
"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",
"Node Ids": "",
"None": "Không ai",
"Not factually correct": "Không chính xác so với thực tế",
"Not helpful": "Không hữu ích",
@ -1158,6 +1190,7 @@
"Scroll On Branch Change": "",
"Search": "Tìm kiếm",
"Search a model": "Tìm model",
"Search all emojis": "",
"Search Base": "Cơ sở Tìm kiếm",
"Search Chats": "Tìm kiếm các cuộc Chat",
"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 what's new": "Xem những cập nhật mới",
"Seed": "Seed",
"Select": "",
"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 engine": "Chọn dịch vụ",
"Select a function": "Chọn function",
"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 (optional)": "",
"Select a pipeline": "Chọn một 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 voice": "",
"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 output format": "",
"Select dtype": "",
"Select Engine": "Chọn Engine",
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Chọn Kiến thức",
"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",
@ -1215,6 +1262,7 @@
"Serply API Key": "Khóa API Serply",
"Serpstack API Key": "Khóa API Serpstack",
"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 CFG Scale": "Đặt Thang CFG",
"Set Default Model": "Đặt Mô hình Mặc định",
@ -1265,6 +1313,12 @@
"sk-1234": "sk-1234",
"Skip Cache": "",
"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 SK": "",
"Source": "Nguồn",
@ -1285,6 +1339,7 @@
"Stylized PDF Export": "",
"Subtitle (e.g. about the Roman Empire)": "Phụ đề (ví dụ: về Đế chế La Mã)",
"Success": "Thành công",
"Successfully imported {{userCount}} users.": "",
"Successfully updated.": "Đã cập nhật thành công.",
"Suggest a change": "",
"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 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 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 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.",
@ -1439,7 +1495,9 @@
"Upload Files": "Tải tệp lên máy chủ",
"Upload Pipeline": "Tải lên Pipeline",
"Upload Progress": "Tiến trình tải tệp lên hệ thống",
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
"URL": "URL",
"URL is required": "",
"URL Mode": "Chế độ URL",
"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.",
@ -1461,6 +1519,7 @@
"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.",
"Valid time units:": "Đơn vị thời gian hợp lệ:",
"Validate certificate": "",
"Valves": "Valves",
"Valves updated": "Đã cập nhật Valves",
"Valves updated successfully": "Đã cập nhật Valves thành công",
@ -1503,6 +1562,7 @@
"Whisper (Local)": "Whisper (Cục bộ)",
"Why?": "Tại sao?",
"Widescreen Mode": "Chế độ màn hình rộng",
"Width": "",
"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.",
"Workspace": "Không gian làm việc",

View File

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

View File

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

View File

@ -16,13 +16,13 @@
const onSubmit = async (modelInfo) => {
if ($models.find((m) => m.id === modelInfo.id)) {
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;
}
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;
}