Compare commits
31 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b72150c881 | |||
| ceaefd8053 | |||
| 2d84db2621 | |||
| 3527023d88 | |||
| e99453219a | |||
| 45f88b80ad | |||
| ba81b47800 | |||
| 646671c576 | |||
| 3d5e361a21 | |||
| bb45d35a36 | |||
| 6a9978dd12 | |||
| 1dd8e5fafd | |||
| dd6de749d5 | |||
| 8fc5532e2f | |||
| 863f73de20 | |||
| 6f17c29d93 | |||
| 6c8d68b6fc | |||
| 4a2792b4da | |||
| 9dd45ddf7c | |||
| dcc57500dd | |||
| e3ae30e42f | |||
| 14e650077a | |||
| 36b9bcee0f | |||
| 6186dec781 | |||
| 667928efb0 | |||
| f4b5039adf | |||
| 8380d3f5ae | |||
| 419005a578 | |||
| 7593d11b97 | |||
| aaf97b85dc | |||
| ea7d4ec6ea |
@@ -5,6 +5,33 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [0.5.7] - 2025-01-23
|
||||
|
||||
### Added
|
||||
|
||||
- **🌍 Enhanced Internationalization (i18n)**: Refined and expanded translations for greater global accessibility and a smoother experience for international users.
|
||||
|
||||
### Fixed
|
||||
|
||||
- **🔗 Connection Model ID Resolution**: Resolved an issue preventing model IDs from registering in connections.
|
||||
- **💡 Prefix ID for Ollama Connections**: Fixed a bug where prefix IDs in Ollama connections were non-functional.
|
||||
- **🔧 Ollama Model Enable/Disable Functionality**: Addressed the issue of enable/disable toggles not working for Ollama base models.
|
||||
- **🔒 RBAC Permissions for Tools and Models**: Corrected incorrect Role-Based Access Control (RBAC) permissions for tools and models, ensuring that users now only access features according to their assigned privileges, enhancing security and role clarity.
|
||||
|
||||
## [0.5.6] - 2025-01-22
|
||||
|
||||
### Added
|
||||
|
||||
- **🧠 Effortful Reasoning Control for OpenAI Models**: Introduced the reasoning_effort parameter in chat controls for supported OpenAI models, enabling users to fine-tune how much cognitive effort a model dedicates to its responses, offering greater customization for complex queries and reasoning tasks.
|
||||
|
||||
### Fixed
|
||||
|
||||
- **🔄 Chat Controls Loading UI Bug**: Resolved an issue where collapsible chat controls appeared as "loading," ensuring a smoother and more intuitive user experience for managing chat settings.
|
||||
|
||||
### Changed
|
||||
|
||||
- **🔧 Updated Ollama Model Creation**: Revamped the Ollama model creation method to align with their new JSON payload format, ensuring seamless compatibility and more efficient model setup workflows.
|
||||
|
||||
## [0.5.5] - 2025-01-22
|
||||
|
||||
### Added
|
||||
|
||||
@@ -155,6 +155,16 @@ async def update_model_by_id(
|
||||
detail=ERROR_MESSAGES.NOT_FOUND,
|
||||
)
|
||||
|
||||
if (
|
||||
model.user_id != user.id
|
||||
and not has_access(user.id, "write", model.access_control)
|
||||
and user.role != "admin"
|
||||
):
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_400_BAD_REQUEST,
|
||||
detail=ERROR_MESSAGES.ACCESS_PROHIBITED,
|
||||
)
|
||||
|
||||
model = Models.update_model_by_id(id, form_data)
|
||||
return model
|
||||
|
||||
|
||||
@@ -261,7 +261,7 @@ async def get_all_models(request: Request):
|
||||
if request.app.state.config.ENABLE_OLLAMA_API:
|
||||
request_tasks = []
|
||||
for idx, url in enumerate(request.app.state.config.OLLAMA_BASE_URLS):
|
||||
if (str(idx) not in request.app.state.config.OLLAMA_API_CONFIGS) or (
|
||||
if (str(idx) not in request.app.state.config.OLLAMA_API_CONFIGS) and (
|
||||
url not in request.app.state.config.OLLAMA_API_CONFIGS # Legacy support
|
||||
):
|
||||
request_tasks.append(send_get_request(f"{url}/api/tags"))
|
||||
@@ -551,11 +551,12 @@ async def push_model(
|
||||
|
||||
|
||||
class CreateModelForm(BaseModel):
|
||||
name: str
|
||||
modelfile: Optional[str] = None
|
||||
model: Optional[str] = None
|
||||
stream: Optional[bool] = None
|
||||
path: Optional[str] = None
|
||||
|
||||
model_config = ConfigDict(extra="allow")
|
||||
|
||||
|
||||
@router.post("/api/create")
|
||||
@router.post("/api/create/{url_idx}")
|
||||
@@ -961,7 +962,7 @@ async def get_ollama_url(request: Request, model: str, url_idx: Optional[int] =
|
||||
)
|
||||
url_idx = random.choice(models[model].get("urls", []))
|
||||
url = request.app.state.config.OLLAMA_BASE_URLS[url_idx]
|
||||
return url
|
||||
return url, url_idx
|
||||
|
||||
|
||||
@router.post("/api/chat")
|
||||
@@ -1029,7 +1030,7 @@ async def generate_chat_completion(
|
||||
if ":" not in payload["model"]:
|
||||
payload["model"] = f"{payload['model']}:latest"
|
||||
|
||||
url = await get_ollama_url(request, payload["model"], url_idx)
|
||||
url, url_idx = await get_ollama_url(request, payload["model"], url_idx)
|
||||
api_config = request.app.state.config.OLLAMA_API_CONFIGS.get(
|
||||
str(url_idx),
|
||||
request.app.state.config.OLLAMA_API_CONFIGS.get(url, {}), # Legacy support
|
||||
@@ -1131,7 +1132,7 @@ async def generate_openai_completion(
|
||||
if ":" not in payload["model"]:
|
||||
payload["model"] = f"{payload['model']}:latest"
|
||||
|
||||
url = await get_ollama_url(request, payload["model"], url_idx)
|
||||
url, url_idx = await get_ollama_url(request, payload["model"], url_idx)
|
||||
api_config = request.app.state.config.OLLAMA_API_CONFIGS.get(
|
||||
str(url_idx),
|
||||
request.app.state.config.OLLAMA_API_CONFIGS.get(url, {}), # Legacy support
|
||||
@@ -1208,7 +1209,7 @@ async def generate_openai_chat_completion(
|
||||
if ":" not in payload["model"]:
|
||||
payload["model"] = f"{payload['model']}:latest"
|
||||
|
||||
url = await get_ollama_url(request, payload["model"], url_idx)
|
||||
url, url_idx = await get_ollama_url(request, payload["model"], url_idx)
|
||||
api_config = request.app.state.config.OLLAMA_API_CONFIGS.get(
|
||||
str(url_idx),
|
||||
request.app.state.config.OLLAMA_API_CONFIGS.get(url, {}), # Legacy support
|
||||
|
||||
@@ -266,7 +266,7 @@ async def get_all_models_responses(request: Request) -> list:
|
||||
|
||||
request_tasks = []
|
||||
for idx, url in enumerate(request.app.state.config.OPENAI_API_BASE_URLS):
|
||||
if (str(idx) not in request.app.state.config.OPENAI_API_CONFIGS) or (
|
||||
if (str(idx) not in request.app.state.config.OPENAI_API_CONFIGS) and (
|
||||
url not in request.app.state.config.OPENAI_API_CONFIGS # Legacy support
|
||||
):
|
||||
request_tasks.append(
|
||||
|
||||
@@ -309,6 +309,17 @@ async def update_tools_valves_by_id(
|
||||
status_code=status.HTTP_401_UNAUTHORIZED,
|
||||
detail=ERROR_MESSAGES.NOT_FOUND,
|
||||
)
|
||||
|
||||
if (
|
||||
tools.user_id != user.id
|
||||
and not has_access(user.id, "write", tools.access_control)
|
||||
and user.role != "admin"
|
||||
):
|
||||
raise HTTPException(
|
||||
status_code=status.HTTP_400_BAD_REQUEST,
|
||||
detail=ERROR_MESSAGES.ACCESS_PROHIBITED,
|
||||
)
|
||||
|
||||
if id in request.app.state.TOOLS:
|
||||
tools_module = request.app.state.TOOLS[id]
|
||||
else:
|
||||
|
||||
@@ -557,7 +557,7 @@ async def chat_image_generation_handler(
|
||||
await __event_emitter__(
|
||||
{
|
||||
"type": "message",
|
||||
"data": {"content": f""},
|
||||
"data": {"content": f"\n"},
|
||||
}
|
||||
)
|
||||
|
||||
@@ -671,6 +671,10 @@ def apply_params_to_form_data(form_data, model):
|
||||
|
||||
if "frequency_penalty" in params:
|
||||
form_data["frequency_penalty"] = params["frequency_penalty"]
|
||||
|
||||
if "reasoning_effort" in params:
|
||||
form_data["reasoning_effort"] = params["reasoning_effort"]
|
||||
|
||||
return form_data
|
||||
|
||||
|
||||
@@ -1074,7 +1078,7 @@ async def process_chat_response(
|
||||
|
||||
# We might want to disable this by default
|
||||
detect_reasoning = True
|
||||
reasoning_tags = ["think", "reason", "reasoning", "thought"]
|
||||
reasoning_tags = ["think", "reason", "reasoning", "thought", "Thought"]
|
||||
current_tag = None
|
||||
|
||||
reasoning_start_time = None
|
||||
@@ -1166,7 +1170,7 @@ async def process_chat_response(
|
||||
)
|
||||
|
||||
# Format reasoning with <details> tag
|
||||
content = f'{ongoing_content}<details type="reasoning" done="true">\n<summary>Thought for {reasoning_duration} seconds</summary>\n{reasoning_display_content}\n</details>\n'
|
||||
content = f'{ongoing_content}<details type="reasoning" done="true" duration="{reasoning_duration}">\n<summary>Thought for {reasoning_duration} seconds</summary>\n{reasoning_display_content}\n</details>\n'
|
||||
else:
|
||||
content = ""
|
||||
|
||||
|
||||
@@ -47,6 +47,7 @@ def apply_model_params_to_body_openai(params: dict, form_data: dict) -> dict:
|
||||
"top_p": float,
|
||||
"max_tokens": int,
|
||||
"frequency_penalty": float,
|
||||
"reasoning_effort": str,
|
||||
"seed": lambda x: x,
|
||||
"stop": lambda x: [bytes(s, "utf-8").decode("unicode_escape") for s in x],
|
||||
}
|
||||
|
||||
Generated
+2
-2
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "open-webui",
|
||||
"version": "0.5.5",
|
||||
"version": "0.5.7",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "open-webui",
|
||||
"version": "0.5.5",
|
||||
"version": "0.5.7",
|
||||
"dependencies": {
|
||||
"@codemirror/lang-javascript": "^6.2.2",
|
||||
"@codemirror/lang-python": "^6.1.6",
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "open-webui",
|
||||
"version": "0.5.5",
|
||||
"version": "0.5.7",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "npm run pyodide:fetch && vite dev --host",
|
||||
|
||||
@@ -360,12 +360,7 @@ export const generateChatCompletion = async (token: string = '', body: object) =
|
||||
return [res, controller];
|
||||
};
|
||||
|
||||
export const createModel = async (
|
||||
token: string,
|
||||
tagName: string,
|
||||
content: string,
|
||||
urlIdx: string | null = null
|
||||
) => {
|
||||
export const createModel = async (token: string, payload: object, urlIdx: string | null = null) => {
|
||||
let error = null;
|
||||
|
||||
const res = await fetch(
|
||||
@@ -377,10 +372,7 @@ export const createModel = async (
|
||||
'Content-Type': 'application/json',
|
||||
Authorization: `Bearer ${token}`
|
||||
},
|
||||
body: JSON.stringify({
|
||||
name: tagName,
|
||||
modelfile: content
|
||||
})
|
||||
body: JSON.stringify(payload)
|
||||
}
|
||||
).catch((err) => {
|
||||
error = err;
|
||||
|
||||
@@ -44,8 +44,9 @@
|
||||
let modelTag = '';
|
||||
|
||||
let createModelLoading = false;
|
||||
let createModelTag = '';
|
||||
let createModelContent = '';
|
||||
let createModelName = '';
|
||||
let createModelObject = '';
|
||||
|
||||
let createModelDigest = '';
|
||||
let createModelPullProgress = null;
|
||||
|
||||
@@ -427,10 +428,23 @@
|
||||
|
||||
const createModelHandler = async () => {
|
||||
createModelLoading = true;
|
||||
|
||||
let modelObject = {};
|
||||
// parse createModelObject
|
||||
try {
|
||||
modelObject = JSON.parse(createModelObject);
|
||||
} catch (error) {
|
||||
toast.error(`${error}`);
|
||||
createModelLoading = false;
|
||||
return;
|
||||
}
|
||||
|
||||
const res = await createModel(
|
||||
localStorage.token,
|
||||
createModelTag,
|
||||
createModelContent,
|
||||
{
|
||||
model: createModelName,
|
||||
...modelObject
|
||||
},
|
||||
urlIdx
|
||||
).catch((error) => {
|
||||
toast.error(`${error}`);
|
||||
@@ -496,18 +510,22 @@
|
||||
|
||||
createModelLoading = false;
|
||||
|
||||
createModelTag = '';
|
||||
createModelContent = '';
|
||||
createModelName = '';
|
||||
createModelObject = '';
|
||||
createModelDigest = '';
|
||||
createModelPullProgress = null;
|
||||
};
|
||||
|
||||
const init = async () => {
|
||||
loading = true;
|
||||
ollamaModels = await getOllamaModels(localStorage.token, urlIdx);
|
||||
ollamaModels = await getOllamaModels(localStorage.token, urlIdx).catch((error) => {
|
||||
toast.error(`${error}`);
|
||||
return null;
|
||||
});
|
||||
|
||||
console.log(ollamaModels);
|
||||
loading = false;
|
||||
if (ollamaModels) {
|
||||
loading = false;
|
||||
}
|
||||
};
|
||||
|
||||
$: if (urlIdx !== null) {
|
||||
@@ -747,15 +765,15 @@
|
||||
placeholder={$i18n.t('Enter model tag (e.g. {{modelTag}})', {
|
||||
modelTag: 'my-modelfile'
|
||||
})}
|
||||
bind:value={createModelTag}
|
||||
bind:value={createModelName}
|
||||
disabled={createModelLoading}
|
||||
/>
|
||||
|
||||
<textarea
|
||||
bind:value={createModelContent}
|
||||
bind:value={createModelObject}
|
||||
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-100 dark:bg-gray-850 outline-none resize-none scrollbar-hidden"
|
||||
rows="6"
|
||||
placeholder={`TEMPLATE """{{ .System }}\nUSER: {{ .Prompt }}\nASSISTANT: """\nPARAMETER num_ctx 4096\nPARAMETER stop "</s>"\nPARAMETER stop "USER:"\nPARAMETER stop "ASSISTANT:"`}
|
||||
placeholder={`e.g. {"model": "my-modelfile", "from": "ollama:7b"})`}
|
||||
disabled={createModelLoading}
|
||||
/>
|
||||
</div>
|
||||
@@ -1013,6 +1031,12 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{:else if ollamaModels === null}
|
||||
<div class="flex justify-center items-center w-full h-full text-xs py-3">
|
||||
{$i18n.t('Failed to fetch models')}
|
||||
</div>
|
||||
{:else}
|
||||
<Spinner />
|
||||
<div class="flex justify-center items-center w-full h-full py-3">
|
||||
<Spinner />
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
seed: null,
|
||||
stop: null,
|
||||
temperature: null,
|
||||
reasoning_effort: null,
|
||||
frequency_penalty: null,
|
||||
repeat_last_n: null,
|
||||
mirostat: null,
|
||||
@@ -158,7 +159,7 @@
|
||||
<div class="flex mt-0.5 space-x-2">
|
||||
<div class=" flex-1">
|
||||
<input
|
||||
class="w-full rounded-lg py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
|
||||
class="w-full rounded-lg py-2 px-1 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
|
||||
type="text"
|
||||
placeholder={$i18n.t('Enter stop sequence')}
|
||||
bind:value={params.stop}
|
||||
@@ -224,6 +225,49 @@
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class=" py-0.5 w-full justify-between">
|
||||
<Tooltip
|
||||
content={$i18n.t(
|
||||
'Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)'
|
||||
)}
|
||||
placement="top-start"
|
||||
className="inline-tooltip"
|
||||
>
|
||||
<div class="flex w-full justify-between">
|
||||
<div class=" self-center text-xs font-medium">
|
||||
{$i18n.t('Reasoning Effort')}
|
||||
</div>
|
||||
<button
|
||||
class="p-1 px-3 text-xs flex rounded transition flex-shrink-0 outline-none"
|
||||
type="button"
|
||||
on:click={() => {
|
||||
params.reasoning_effort = (params?.reasoning_effort ?? null) === null ? 'medium' : null;
|
||||
}}
|
||||
>
|
||||
{#if (params?.reasoning_effort ?? null) === null}
|
||||
<span class="ml-2 self-center"> {$i18n.t('Default')} </span>
|
||||
{:else}
|
||||
<span class="ml-2 self-center"> {$i18n.t('Custom')} </span>
|
||||
{/if}
|
||||
</button>
|
||||
</div>
|
||||
</Tooltip>
|
||||
|
||||
{#if (params?.reasoning_effort ?? null) !== null}
|
||||
<div class="flex mt-0.5 space-x-2">
|
||||
<div class=" flex-1">
|
||||
<input
|
||||
class="w-full rounded-lg py-2 px-1 text-sm dark:text-gray-300 dark:bg-gray-850 outline-none"
|
||||
type="text"
|
||||
placeholder={$i18n.t('Enter reasoning effort')}
|
||||
bind:value={params.reasoning_effort}
|
||||
autocomplete="off"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class=" py-0.5 w-full justify-between">
|
||||
<Tooltip
|
||||
content={$i18n.t(
|
||||
|
||||
@@ -1,5 +1,27 @@
|
||||
<script lang="ts">
|
||||
import { getContext, createEventDispatcher } from 'svelte';
|
||||
const i18n = getContext('i18n');
|
||||
|
||||
import dayjs from '$lib/dayjs';
|
||||
import duration from 'dayjs/plugin/duration';
|
||||
import relativeTime from 'dayjs/plugin/relativeTime';
|
||||
|
||||
dayjs.extend(duration);
|
||||
dayjs.extend(relativeTime);
|
||||
|
||||
async function loadLocale(locales) {
|
||||
for (const locale of locales) {
|
||||
try {
|
||||
dayjs.locale(locale);
|
||||
break; // Stop after successfully loading the first available locale
|
||||
} catch (error) {
|
||||
console.error(`Could not load locale '${locale}':`, error);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Assuming $i18n.languages is an array of language codes
|
||||
$: loadLocale($i18n.languages);
|
||||
|
||||
const dispatch = createEventDispatcher();
|
||||
$: dispatch('change', open);
|
||||
@@ -37,20 +59,30 @@
|
||||
}}
|
||||
>
|
||||
<div
|
||||
class=" w-full font-medium flex items-center justify-between gap-2 {attributes?.done !==
|
||||
'true'
|
||||
class=" w-full font-medium flex items-center justify-between gap-2 {attributes?.done &&
|
||||
attributes?.done !== 'true'
|
||||
? 'shimmer'
|
||||
: ''}
|
||||
"
|
||||
>
|
||||
{#if attributes?.done !== 'true'}
|
||||
{#if attributes?.done && attributes?.done !== 'true'}
|
||||
<div>
|
||||
<Spinner className="size-4" />
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<div class="">
|
||||
{title}
|
||||
{#if attributes?.type === 'reasoning'}
|
||||
{#if attributes?.done === 'true' && attributes?.duration}
|
||||
{$i18n.t('Thought for {{DURATION}}', {
|
||||
DURATION: dayjs.duration(attributes.duration, 'seconds').humanize()
|
||||
})}
|
||||
{:else}
|
||||
{$i18n.t('Thinking...')}
|
||||
{/if}
|
||||
{:else}
|
||||
{title}
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="flex self-center translate-y-[1px]">
|
||||
|
||||
@@ -0,0 +1,104 @@
|
||||
import dayjs from 'dayjs';
|
||||
|
||||
// Import all locales
|
||||
import 'dayjs/locale/af';
|
||||
import 'dayjs/locale/am';
|
||||
import 'dayjs/locale/ar';
|
||||
import 'dayjs/locale/az';
|
||||
import 'dayjs/locale/be';
|
||||
import 'dayjs/locale/bg';
|
||||
import 'dayjs/locale/bi';
|
||||
import 'dayjs/locale/bm';
|
||||
import 'dayjs/locale/bn';
|
||||
import 'dayjs/locale/bo';
|
||||
import 'dayjs/locale/br';
|
||||
import 'dayjs/locale/bs';
|
||||
import 'dayjs/locale/ca';
|
||||
import 'dayjs/locale/cs';
|
||||
import 'dayjs/locale/cv';
|
||||
import 'dayjs/locale/cy';
|
||||
import 'dayjs/locale/da';
|
||||
import 'dayjs/locale/de';
|
||||
import 'dayjs/locale/dv';
|
||||
import 'dayjs/locale/el';
|
||||
import 'dayjs/locale/en';
|
||||
import 'dayjs/locale/eo';
|
||||
import 'dayjs/locale/es';
|
||||
import 'dayjs/locale/eu';
|
||||
import 'dayjs/locale/fa';
|
||||
import 'dayjs/locale/fi';
|
||||
import 'dayjs/locale/fo';
|
||||
import 'dayjs/locale/fr';
|
||||
import 'dayjs/locale/fy';
|
||||
import 'dayjs/locale/ga';
|
||||
import 'dayjs/locale/gd';
|
||||
import 'dayjs/locale/gl';
|
||||
import 'dayjs/locale/gu';
|
||||
import 'dayjs/locale/he';
|
||||
import 'dayjs/locale/hi';
|
||||
import 'dayjs/locale/hr';
|
||||
import 'dayjs/locale/ht';
|
||||
import 'dayjs/locale/hu';
|
||||
import 'dayjs/locale/id';
|
||||
import 'dayjs/locale/is';
|
||||
import 'dayjs/locale/it';
|
||||
import 'dayjs/locale/ja';
|
||||
import 'dayjs/locale/jv';
|
||||
import 'dayjs/locale/ka';
|
||||
import 'dayjs/locale/kk';
|
||||
import 'dayjs/locale/km';
|
||||
import 'dayjs/locale/kn';
|
||||
import 'dayjs/locale/ko';
|
||||
import 'dayjs/locale/ku';
|
||||
import 'dayjs/locale/ky';
|
||||
import 'dayjs/locale/lb';
|
||||
import 'dayjs/locale/lo';
|
||||
import 'dayjs/locale/lt';
|
||||
import 'dayjs/locale/lv';
|
||||
import 'dayjs/locale/me';
|
||||
import 'dayjs/locale/mi';
|
||||
import 'dayjs/locale/mk';
|
||||
import 'dayjs/locale/ml';
|
||||
import 'dayjs/locale/mn';
|
||||
import 'dayjs/locale/mr';
|
||||
import 'dayjs/locale/ms';
|
||||
import 'dayjs/locale/mt';
|
||||
import 'dayjs/locale/my';
|
||||
import 'dayjs/locale/nb';
|
||||
import 'dayjs/locale/ne';
|
||||
import 'dayjs/locale/nl';
|
||||
import 'dayjs/locale/nn';
|
||||
import 'dayjs/locale/pl';
|
||||
import 'dayjs/locale/pt';
|
||||
import 'dayjs/locale/ro';
|
||||
import 'dayjs/locale/ru';
|
||||
import 'dayjs/locale/rw';
|
||||
import 'dayjs/locale/sd';
|
||||
import 'dayjs/locale/se';
|
||||
import 'dayjs/locale/si';
|
||||
import 'dayjs/locale/sk';
|
||||
import 'dayjs/locale/sl';
|
||||
import 'dayjs/locale/sq';
|
||||
import 'dayjs/locale/sr';
|
||||
import 'dayjs/locale/ss';
|
||||
import 'dayjs/locale/sv';
|
||||
import 'dayjs/locale/sw';
|
||||
import 'dayjs/locale/ta';
|
||||
import 'dayjs/locale/te';
|
||||
import 'dayjs/locale/tet';
|
||||
import 'dayjs/locale/tg';
|
||||
import 'dayjs/locale/th';
|
||||
import 'dayjs/locale/tk';
|
||||
import 'dayjs/locale/tlh';
|
||||
import 'dayjs/locale/tr';
|
||||
import 'dayjs/locale/tzl';
|
||||
import 'dayjs/locale/tzm';
|
||||
import 'dayjs/locale/uk';
|
||||
import 'dayjs/locale/ur';
|
||||
import 'dayjs/locale/uz';
|
||||
import 'dayjs/locale/vi';
|
||||
import 'dayjs/locale/yo';
|
||||
import 'dayjs/locale/zh';
|
||||
import 'dayjs/locale/et';
|
||||
|
||||
export default dayjs;
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "اتصالات",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
"Content": "الاتصال",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "(e.g. 50) أدخل عدد الخطوات",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "أدخل النتيجة",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "فشل في إنشاء مفتاح API.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "أقراء لي",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "سجل صوت",
|
||||
"Redirecting you to OpenWebUI Community": "OpenWebUI إعادة توجيهك إلى مجتمع ",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "شرح شامل",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Връзки",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
"Content": "Съдържание",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Въведете брой стъпки (напр. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "Въведете оценка",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "Неуспешно създаване на API ключ.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Грешка при четене на съдържанието от клипборда",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Прочети на Голос",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Записване на глас",
|
||||
"Redirecting you to OpenWebUI Community": "Пренасочване към OpenWebUI общността",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "Това е подробно описание.",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "কানেকশনগুলো",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
"Content": "বিষয়বস্তু",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "ধাপের সংখ্যা দিন (যেমন: 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "স্কোর দিন",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "API Key তৈরি করা যায়নি।",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "ক্লিপবোর্ডের বিষয়বস্তু পড়া সম্ভব হয়নি",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "পড়াশোনা করুন",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "ভয়েস রেকর্ড করুন",
|
||||
"Redirecting you to OpenWebUI Community": "আপনাকে OpenWebUI কমিউনিটিতে পাঠানো হচ্ছে",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "পুঙ্খানুপুঙ্খ ব্যাখ্যা",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
"(e.g. `sh webui.sh --api`)": "(p. ex. `sh webui.sh --api`)",
|
||||
"(latest)": "(últim)",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} respostes",
|
||||
"{{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",
|
||||
@@ -35,7 +35,7 @@
|
||||
"Add Group": "Afegir grup",
|
||||
"Add Memory": "Afegir memòria",
|
||||
"Add Model": "Afegir un model",
|
||||
"Add Reaction": "",
|
||||
"Add Reaction": "Afegir reacció",
|
||||
"Add Tag": "Afegir etiqueta",
|
||||
"Add Tags": "Afegir etiquetes",
|
||||
"Add text content": "Afegir contingut de text",
|
||||
@@ -51,7 +51,7 @@
|
||||
"Advanced Params": "Paràmetres avançats",
|
||||
"All Documents": "Tots els documents",
|
||||
"All models deleted successfully": "Tots els models s'han eliminat correctament",
|
||||
"Allow Chat Controls": "",
|
||||
"Allow Chat Controls": "Permetre els controls de xat",
|
||||
"Allow Chat Delete": "Permetre eliminar el xat",
|
||||
"Allow Chat Deletion": "Permetre la supressió del xat",
|
||||
"Allow Chat Edit": "Permetre editar el xat",
|
||||
@@ -60,7 +60,7 @@
|
||||
"Allow Temporary Chat": "Permetre el xat temporal",
|
||||
"Allow User Location": "Permetre la ubicació de l'usuari",
|
||||
"Allow Voice Interruption in Call": "Permetre la interrupció de la veu en una trucada",
|
||||
"Allowed Endpoints": "",
|
||||
"Allowed Endpoints": "Punts d'accés permesos",
|
||||
"Already have an account?": "Ja tens un compte?",
|
||||
"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativa al top_p, i pretén garantir un equilibri de qualitat i varietat. El paràmetre p representa la probabilitat mínima que es consideri un token, en relació amb la probabilitat del token més probable. Per exemple, amb p=0,05 i el token més probable amb una probabilitat de 0,9, es filtren els logits amb un valor inferior a 0,045. (Per defecte: 0.0)",
|
||||
"Amazing": "Al·lucinant",
|
||||
@@ -71,7 +71,7 @@
|
||||
"API Base URL": "URL Base de l'API",
|
||||
"API Key": "clau API",
|
||||
"API Key created.": "clau API creada.",
|
||||
"API Key Endpoint Restrictions": "",
|
||||
"API Key Endpoint Restrictions": "Restriccions del punt d'accés de la Clau API",
|
||||
"API keys": "Claus de l'API",
|
||||
"Application DN": "DN d'aplicació",
|
||||
"Application DN Password": "Contrasenya del DN d'aplicació",
|
||||
@@ -91,7 +91,7 @@
|
||||
"Assistant": "Assistent",
|
||||
"Attach file": "Adjuntar arxiu",
|
||||
"Attention to detail": "Atenció al detall",
|
||||
"Attribute for Mail": "",
|
||||
"Attribute for Mail": "Atribut per al Correu",
|
||||
"Attribute for Username": "Atribut per al Nom d'usuari",
|
||||
"Audio": "Àudio",
|
||||
"August": "Agost",
|
||||
@@ -168,7 +168,7 @@
|
||||
"Click on the user role button to change a user's role.": "Clica sobre el botó de rol d'usuari per canviar el rol d'un usuari.",
|
||||
"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Permís d'escriptura al porta-retalls denegat. Comprova els ajustos de navegador per donar l'accés necessari.",
|
||||
"Clone": "Clonar",
|
||||
"Clone Chat": "",
|
||||
"Clone Chat": "Clonar el xat",
|
||||
"Close": "Tancar",
|
||||
"Code execution": "Execució de codi",
|
||||
"Code formatted successfully": "Codi formatat correctament",
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Confirma la teva acció",
|
||||
"Confirm your new password": "Confirma la teva nova contrasenya",
|
||||
"Connections": "Connexions",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "Restringeix l'esforç de raonament dels models de raonament. Només aplicable a models de raonament de proveïdors específics que donen suport a l'esforç de raonament. (Per defecte: mitjà)",
|
||||
"Contact Admin for WebUI Access": "Posat en contacte amb l'administrador per accedir a WebUI",
|
||||
"Content": "Contingut",
|
||||
"Content Extraction": "Extracció de contingut",
|
||||
@@ -316,7 +317,7 @@
|
||||
"Embedding Model": "Model d'incrustació",
|
||||
"Embedding Model Engine": "Motor de model d'incrustació",
|
||||
"Embedding model set to \"{{embedding_model}}\"": "Model d'incrustació configurat a \"{{embedding_model}}\"",
|
||||
"Enable API Key": "",
|
||||
"Enable API Key": "Activar la Clau API",
|
||||
"Enable autocomplete generation for chat messages": "Activar la generació automàtica per als missatges del xat",
|
||||
"Enable Community Sharing": "Activar l'ús compartit amb la comunitat",
|
||||
"Enable Google Drive": "Activar Google Drive",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "Introdueix la clau API de Mojeek Search",
|
||||
"Enter Number of Steps (e.g. 50)": "Introdueix el nombre de passos (p. ex. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Entra l'URL (p. ex. https://user:password@host:port)",
|
||||
"Enter reasoning effort": "Introdueix l'esforç de raonament",
|
||||
"Enter Sampler (e.g. Euler a)": "Introdueix el mostrejador (p.ex. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Entra el programador (p.ex. Karras)",
|
||||
"Enter Score": "Introdueix la puntuació",
|
||||
@@ -391,7 +393,7 @@
|
||||
"Evaluations": "Avaluacions",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Exemple: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Exemple: TOTS",
|
||||
"Example: mail": "",
|
||||
"Example: mail": "Exemple: mail",
|
||||
"Example: ou=users,dc=foo,dc=example": "Exemple: ou=users,dc=foo,dc=example",
|
||||
"Example: sAMAccountName or uid or userPrincipalName": "Exemple: sAMAccountName o uid o userPrincipalName",
|
||||
"Exclude": "Excloure",
|
||||
@@ -412,11 +414,12 @@
|
||||
"External Models": "Models externs",
|
||||
"Failed to add file.": "No s'ha pogut afegir l'arxiu.",
|
||||
"Failed to create API Key.": "No s'ha pogut crear la clau API.",
|
||||
"Failed to fetch models": "No s'han pogut obtenir els models",
|
||||
"Failed to read clipboard contents": "No s'ha pogut llegir el contingut del porta-retalls",
|
||||
"Failed to save models configuration": "No s'ha pogut desar la configuració dels models",
|
||||
"Failed to update settings": "No s'han pogut actualitzar les preferències",
|
||||
"Failed to upload file.": "No s'ha pogut pujar l'arxiu.",
|
||||
"Features Permissions": "",
|
||||
"Features Permissions": "Permisos de les característiques",
|
||||
"February": "Febrer",
|
||||
"Feedback History": "Històric de comentaris",
|
||||
"Feedbacks": "Comentaris",
|
||||
@@ -491,15 +494,15 @@
|
||||
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Afirmo que he llegit i entenc les implicacions de la meva acció. Soc conscient dels riscos associats a l'execució de codi arbitrari i he verificat la fiabilitat de la font.",
|
||||
"ID": "ID",
|
||||
"Ignite curiosity": "Despertar la curiositat",
|
||||
"Image": "",
|
||||
"Image": "Imatge",
|
||||
"Image Compression": "Compressió d'imatges",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image generation": "Generació d'imatges",
|
||||
"Image Generation": "Generació d'imatges",
|
||||
"Image Generation (Experimental)": "Generació d'imatges (Experimental)",
|
||||
"Image Generation Engine": "Motor de generació d'imatges",
|
||||
"Image Max Compression Size": "Mida màxima de la compressió d'imatges",
|
||||
"Image Prompt Generation": "",
|
||||
"Image Prompt Generation Prompt": "",
|
||||
"Image Prompt Generation": "Generació d'indicacions d'imatge",
|
||||
"Image Prompt Generation Prompt": "Indicació per a la generació d'indicacions d'imatge",
|
||||
"Image Settings": "Preferències d'imatges",
|
||||
"Images": "Imatges",
|
||||
"Import Chats": "Importar xats",
|
||||
@@ -520,7 +523,7 @@
|
||||
"Interface": "Interfície",
|
||||
"Invalid file format.": "Format d'arxiu no vàlid.",
|
||||
"Invalid Tag": "Etiqueta no vàlida",
|
||||
"is typing...": "",
|
||||
"is typing...": "està escrivint...",
|
||||
"January": "Gener",
|
||||
"Jina API Key": "Clau API de Jina",
|
||||
"join our Discord for help.": "uneix-te al nostre Discord per obtenir ajuda.",
|
||||
@@ -545,7 +548,7 @@
|
||||
"Language": "Idioma",
|
||||
"Last Active": "Activitat recent",
|
||||
"Last Modified": "Modificació",
|
||||
"Last reply": "",
|
||||
"Last reply": "Darrera resposta",
|
||||
"LDAP": "LDAP",
|
||||
"LDAP server updated": "Servidor LDAP actualitzat",
|
||||
"Leaderboard": "Tauler de classificació",
|
||||
@@ -556,7 +559,7 @@
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "Deixa-ho en blanc per utilitzar la indicació predeterminada o introdueix una indicació personalitzada",
|
||||
"Light": "Clar",
|
||||
"Listening...": "Escoltant...",
|
||||
"Llama.cpp": "",
|
||||
"Llama.cpp": "Llama.cpp",
|
||||
"LLMs can make mistakes. Verify important information.": "Els models de llenguatge poden cometre errors. Verifica la informació important.",
|
||||
"Local": "Local",
|
||||
"Local Models": "Models locals",
|
||||
@@ -567,7 +570,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Assegura't d'exportar un fitxer workflow.json com a format API des de ComfyUI.",
|
||||
"Manage": "Gestionar",
|
||||
"Manage Arena Models": "Gestionar els models de l'Arena",
|
||||
"Manage Models": "",
|
||||
"Manage Models": "Gestionar els models",
|
||||
"Manage Ollama": "Gestionar Ollama",
|
||||
"Manage Ollama API Connections": "Gestionar les connexions a l'API d'Ollama",
|
||||
"Manage OpenAI API Connections": "Gestionar les connexions a l'API d'OpenAI",
|
||||
@@ -622,7 +625,7 @@
|
||||
"Name": "Nom",
|
||||
"Name your knowledge base": "Anomena la teva base de coneixement",
|
||||
"New Chat": "Nou xat",
|
||||
"New Folder": "",
|
||||
"New Folder": "Nova carpeta",
|
||||
"New Password": "Nova contrasenya",
|
||||
"new-channel": "nou-canal",
|
||||
"No content found": "No s'ha trobat contingut",
|
||||
@@ -633,7 +636,7 @@
|
||||
"No files found.": "No s'han trobat arxius.",
|
||||
"No groups with access, add a group to grant access": "No hi ha cap grup amb accés, afegeix un grup per concedir accés",
|
||||
"No HTML, CSS, or JavaScript content found.": "No s'ha trobat contingut HTML, CSS o JavaScript.",
|
||||
"No inference engine with management support found": "",
|
||||
"No inference engine with management support found": "No s'ha trobat un motor d'inferència amb suport de gestió",
|
||||
"No knowledge found": "No s'ha trobat Coneixement",
|
||||
"No model IDs": "No hi ha IDs de model",
|
||||
"No models found": "No s'han trobat models",
|
||||
@@ -738,8 +741,9 @@
|
||||
"RAG Template": "Plantilla RAG",
|
||||
"Rating": "Valoració",
|
||||
"Re-rank models by topic similarity": "Reclassificar els models per similitud de temes",
|
||||
"Read": "",
|
||||
"Read": "Llegit",
|
||||
"Read Aloud": "Llegir en veu alta",
|
||||
"Reasoning Effort": "Esforç de raonament",
|
||||
"Record voice": "Enregistrar la veu",
|
||||
"Redirecting you to OpenWebUI Community": "Redirigint-te a la comunitat OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Redueix la probabilitat de generar ximpleries. Un valor més alt (p. ex. 100) donarà respostes més diverses, mentre que un valor més baix (p. ex. 10) serà més conservador. (Per defecte: 40)",
|
||||
@@ -754,7 +758,7 @@
|
||||
"Rename": "Canviar el nom",
|
||||
"Reorder Models": "Reordenar els models",
|
||||
"Repeat Last N": "Repeteix els darrers N",
|
||||
"Reply in Thread": "",
|
||||
"Reply in Thread": "Respondre al fil",
|
||||
"Request Mode": "Mode de sol·licitud",
|
||||
"Reranking Model": "Model de reavaluació",
|
||||
"Reranking model disabled": "Model de reavaluació desactivat",
|
||||
@@ -763,7 +767,7 @@
|
||||
"Reset All Models": "Restablir tots els models",
|
||||
"Reset Upload Directory": "Restableix el directori de pujades",
|
||||
"Reset Vector Storage/Knowledge": "Restableix el Repositori de vectors/Coneixement",
|
||||
"Reset view": "",
|
||||
"Reset view": "Netejar la vista",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Les notifications de resposta no es poden activar perquè els permisos del lloc web han estat rebutjats. Comprova les preferències del navegador per donar l'accés necessari.",
|
||||
"Response splitting": "Divisió de la resposta",
|
||||
"Result": "Resultat",
|
||||
@@ -816,7 +820,7 @@
|
||||
"Select a pipeline": "Seleccionar una Pipeline",
|
||||
"Select a pipeline url": "Seleccionar l'URL d'una Pipeline",
|
||||
"Select a tool": "Seleccionar una eina",
|
||||
"Select an Ollama instance": "",
|
||||
"Select an Ollama instance": "Seleccionar una instància d'Ollama",
|
||||
"Select Engine": "Seleccionar el motor",
|
||||
"Select Knowledge": "Seleccionar coneixement",
|
||||
"Select model": "Seleccionar un model",
|
||||
@@ -843,7 +847,7 @@
|
||||
"Set Scheduler": "Establir el programador",
|
||||
"Set Steps": "Establir el nombre de passos",
|
||||
"Set Task Model": "Establir el model de tasca",
|
||||
"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
|
||||
"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "Estableix el nombre de capes que es descarregaran a la GPU. Augmentar aquest valor pot millorar significativament el rendiment dels models optimitzats per a l'acceleració de la GPU, però també pot consumir més energia i recursos de GPU.",
|
||||
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Establir el nombre de fils de treball utilitzats per al càlcul. Aquesta opció controla quants fils s'utilitzen per processar les sol·licituds entrants simultàniament. Augmentar aquest valor pot millorar el rendiment amb càrregues de treball de concurrència elevada, però també pot consumir més recursos de CPU.",
|
||||
"Set Voice": "Establir la veu",
|
||||
"Set whisper model": "Establir el model whisper",
|
||||
@@ -908,7 +912,7 @@
|
||||
"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "La mida del lot determina quantes sol·licituds de text es processen alhora. Una mida de lot més gran pot augmentar el rendiment i la velocitat del model, però també requereix més memòria. (Per defecte: 512)",
|
||||
"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Els desenvolupadors d'aquest complement són voluntaris apassionats de la comunitat. Si trobeu útil aquest complement, considereu contribuir al seu desenvolupament.",
|
||||
"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "La classificació d'avaluació es basa en el sistema de qualificació Elo i s'actualitza en temps real.",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "",
|
||||
"The LDAP attribute that maps to the mail that users use to sign in.": "L'atribut LDAP que s'associa al correu que els usuaris utilitzen per iniciar la sessió.",
|
||||
"The LDAP attribute that maps to the username that users use to sign in.": "L'atribut LDAP que mapeja el nom d'usuari amb l'usuari que vol iniciar sessió",
|
||||
"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "La classificació està actualment en versió beta i és possible que s'ajustin els càlculs de la puntuació a mesura que es perfeccioni l'algorisme.",
|
||||
"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à.",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Això eliminarà tots els models incloent els personalitzats i no es pot desfer",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Això restablirà la base de coneixement i sincronitzarà tots els fitxers. Vols continuar?",
|
||||
"Thorough explanation": "Explicació en detall",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "La URL del servidor Tika és obligatòria.",
|
||||
"Tiktoken": "Tiktoken",
|
||||
@@ -944,7 +949,7 @@
|
||||
"To access the GGUF models available for downloading,": "Per accedir als models GGUF disponibles per descarregar,",
|
||||
"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Per accedir a la WebUI, poseu-vos en contacte amb l'administrador. Els administradors poden gestionar els estats dels usuaris des del tauler d'administració.",
|
||||
"To attach knowledge base here, add them to the \"Knowledge\" workspace first.": "Per adjuntar la base de coneixement aquí, afegiu-la primer a l'espai de treball \"Coneixement\".",
|
||||
"To learn more about available endpoints, visit our documentation.": "",
|
||||
"To learn more about available endpoints, visit our documentation.": "Per obtenir més informació sobre els punts d'accés disponibles, visiteu la nostra documentació.",
|
||||
"To protect your privacy, only ratings, model IDs, tags, and metadata are shared from your feedback—your chat logs remain private and are not included.": "Per protegir la privadesa, només es comparteixen puntuacions, identificadors de models, etiquetes i metadades dels comentaris; els registres de xat romanen privats i no s'inclouen.",
|
||||
"To select actions here, add them to the \"Functions\" workspace first.": "Per seleccionar accions aquí, afegeix-les primer a l'espai de treball \"Funcions\".",
|
||||
"To select filters here, add them to the \"Functions\" workspace first.": "Per seleccionar filtres aquí, afegeix-los primer a l'espai de treball \"Funcions\".",
|
||||
@@ -1023,7 +1028,7 @@
|
||||
"variable to have them replaced with clipboard content.": "variable per tenir-les reemplaçades amb el contingut del porta-retalls.",
|
||||
"Version": "Versió",
|
||||
"Version {{selectedVersion}} of {{totalVersions}}": "Versió {{selectedVersion}} de {{totalVersions}}",
|
||||
"View Replies": "",
|
||||
"View Replies": "Veure les respostes",
|
||||
"Visibility": "Visibilitat",
|
||||
"Voice": "Veu",
|
||||
"Voice Input": "Entrada de veu",
|
||||
@@ -1054,7 +1059,7 @@
|
||||
"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. (Default: 0.9)": "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. (Per defecte: 0,9)",
|
||||
"Workspace": "Espai de treball",
|
||||
"Workspace Permissions": "Permisos de l'espai de treball",
|
||||
"Write": "",
|
||||
"Write": "Escriure",
|
||||
"Write a prompt suggestion (e.g. Who are you?)": "Escriu una suggerència d'indicació (p. ex. Qui ets?)",
|
||||
"Write a summary in 50 words that summarizes [topic or keyword].": "Escriu un resum en 50 paraules que resumeixi [tema o paraula clau].",
|
||||
"Write something...": "Escriu quelcom...",
|
||||
@@ -1064,7 +1069,7 @@
|
||||
"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Només pots xatejar amb un màxim de {{maxCount}} fitxers alhora.",
|
||||
"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Pots personalitzar les teves interaccions amb els models de llenguatge afegint memòries mitjançant el botó 'Gestiona' que hi ha a continuació, fent-les més útils i adaptades a tu.",
|
||||
"You cannot upload an empty file.": "No es pot pujar un ariux buit.",
|
||||
"You do not have permission to access this feature.": "",
|
||||
"You do not have permission to access this feature.": "No tens permís per accedir a aquesta funcionalitat",
|
||||
"You do not have permission to upload files.": "No tens permisos per pujar arxius.",
|
||||
"You have no archived conversations.": "No tens converses arxivades.",
|
||||
"You have shared this chat": "Has compartit aquest xat",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Mga koneksyon",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
"Content": "Kontento",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Pagsulod sa gidaghanon sa mga lakang (e.g. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Napakyas sa pagbasa sa sulod sa clipboard",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Irekord ang tingog",
|
||||
"Redirecting you to OpenWebUI Community": "Gi-redirect ka sa komunidad sa OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Potvrďte svoji akci",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Připojení",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Kontaktujte administrátora pro přístup k webovému rozhraní.",
|
||||
"Content": "Obsah",
|
||||
"Content Extraction": "Extrahování obsahu",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Zadejte počet kroků (např. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "Zadejte vzorkovač (např. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Zadejte plánovač (např. Karras)",
|
||||
"Enter Score": "Zadejte skóre",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Externí modely",
|
||||
"Failed to add file.": "Nepodařilo se přidat soubor.",
|
||||
"Failed to create API Key.": "Nepodařilo se vytvořit API klíč.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Nepodařilo se přečíst obsah schránky",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "Nepodařilo se aktualizovat nastavení",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "Znovu seřaďte modely podle podobnosti témat.",
|
||||
"Read": "",
|
||||
"Read Aloud": "Číst nahlas",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Nahrát hlas",
|
||||
"Redirecting you to OpenWebUI Community": "Přesměrování na komunitu OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Toto obnoví znalostní databázi a synchronizuje všechny soubory. Přejete si pokračovat?",
|
||||
"Thorough explanation": "Obsáhlé vysvětlení",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "Je vyžadována URL adresa serveru Tika.",
|
||||
"Tiktoken": "Tiktoken",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Bekræft din handling",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Forbindelser",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Kontakt din administrator for adgang til WebUI",
|
||||
"Content": "Indhold",
|
||||
"Content Extraction": "Udtræk af indhold",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Indtast antal trin (f.eks. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "Indtast sampler (f.eks. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Indtast scheduler (f.eks. Karras)",
|
||||
"Enter Score": "Indtast score",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Eksterne modeller",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "Kunne ikke oprette API-nøgle.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Kunne ikke læse indholdet af udklipsholderen",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "Kunne ikke opdatere indstillinger",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Læs højt",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Optag stemme",
|
||||
"Redirecting you to OpenWebUI Community": "Omdirigerer dig til OpenWebUI Community",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dette vil nulstille vidensbasen og synkronisere alle filer. Vil du fortsætte?",
|
||||
"Thorough explanation": "Grundig forklaring",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "Tika-server-URL påkrævet.",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Bestätigen Sie Ihre Aktion.",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Verbindungen",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Kontaktieren Sie den Administrator für den Zugriff auf die Weboberfläche",
|
||||
"Content": "Info",
|
||||
"Content Extraction": "Inhaltsextraktion",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "Geben Sie den Mojeek Search API-Schlüssel ein",
|
||||
"Enter Number of Steps (e.g. 50)": "Geben Sie die Anzahl an Schritten ein (z. B. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "Geben Sie den Sampler ein (z. B. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Geben Sie den Scheduler ein (z. B. Karras)",
|
||||
"Enter Score": "Punktzahl eingeben",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Externe Modelle",
|
||||
"Failed to add file.": "Fehler beim Hinzufügen der Datei.",
|
||||
"Failed to create API Key.": "Fehler beim Erstellen des API-Schlüssels.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Fehler beim Abruf der Zwischenablage",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "Fehler beim Aktualisieren der Einstellungen",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "Modelle nach thematischer Ähnlichkeit neu ordnen",
|
||||
"Read": "",
|
||||
"Read Aloud": "Vorlesen",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Stimme aufnehmen",
|
||||
"Redirecting you to OpenWebUI Community": "Sie werden zur OpenWebUI-Community weitergeleitet",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Reduziert die Wahrscheinlichkeit, Unsinn zu generieren. Ein höherer Wert (z.B. 100) liefert vielfältigere Antworten, während ein niedrigerer Wert (z.B. 10) konservativer ist. (Standard: 40)",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Dies wird alle Modelle einschließlich benutzerdefinierter Modelle löschen und kann nicht rückgängig gemacht werden.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dadurch wird die Wissensdatenbank zurückgesetzt und alle Dateien synchronisiert. Möchten Sie fortfahren?",
|
||||
"Thorough explanation": "Ausführliche Erklärung",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "Tika-Server-URL erforderlich.",
|
||||
"Tiktoken": "Tiktoken",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Connections",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
"Content": "Content",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Enter Number of Steps (e.g. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Failed to read clipboard borks",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Record Bark",
|
||||
"Redirecting you to OpenWebUI Community": "Redirecting you to OpenWebUI Community",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Επιβεβαιώστε την ενέργειά σας",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Συνδέσεις",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Επικοινωνήστε με τον Διαχειριστή για Πρόσβαση στο WebUI",
|
||||
"Content": "Περιεχόμενο",
|
||||
"Content Extraction": "Εξαγωγή Περιεχομένου",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "Εισάγετε το Κλειδί API Mojeek Search",
|
||||
"Enter Number of Steps (e.g. 50)": "Εισάγετε τον Αριθμό Βημάτων (π.χ. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "Εισάγετε τον Sampler (π.χ. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Εισάγετε τον Scheduler (π.χ. Karras)",
|
||||
"Enter Score": "Εισάγετε το Score",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Εξωτερικά Μοντέλα",
|
||||
"Failed to add file.": "Αποτυχία προσθήκης αρχείου.",
|
||||
"Failed to create API Key.": "Αποτυχία δημιουργίας Κλειδιού API.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Αποτυχία ανάγνωσης περιεχομένων πρόχειρου",
|
||||
"Failed to save models configuration": "Αποτυχία αποθήκευσης ρυθμίσεων μοντέλων",
|
||||
"Failed to update settings": "Αποτυχία ενημέρωσης ρυθμίσεων",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "Επανατάξη μοντέλων κατά ομοιότητα θέματος",
|
||||
"Read": "",
|
||||
"Read Aloud": "Ανάγνωση Φωναχτά",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Εγγραφή φωνής",
|
||||
"Redirecting you to OpenWebUI Community": "Μετακατεύθυνση στην Κοινότητα OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Μειώνει την πιθανότητα δημιουργίας ανοησιών. Μια υψηλότερη τιμή (π.χ. 100) θα δώσει πιο ποικίλες απαντήσεις, ενώ μια χαμηλότερη τιμή (π.χ. 10) θα δημιουργήσει πιο συντηρητικές απαντήσεις. (Προεπιλογή: 40)",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Αυτό θα διαγράψει όλα τα μοντέλα, συμπεριλαμβανομένων των προσαρμοσμένων μοντέλων και δεν μπορεί να αναιρεθεί.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Αυτό θα επαναφέρει τη βάση γνώσης και θα συγχρονίσει όλα τα αρχεία. Θέλετε να συνεχίσετε;",
|
||||
"Thorough explanation": "Λεπτομερής εξήγηση",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "Απαιτείται το URL διακομιστή Tika.",
|
||||
"Tiktoken": "Tiktoken",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
"Content": "",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "",
|
||||
"Redirecting you to OpenWebUI Community": "",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
"Content": "",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "",
|
||||
"Redirecting you to OpenWebUI Community": "",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Confirma tu acción",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Conexiones",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Contacta el administrador para obtener acceso al WebUI",
|
||||
"Content": "Contenido",
|
||||
"Content Extraction": "Extracción de contenido",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Ingrese el número de pasos (p.ej., 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "Ingrese el sampler (p.ej., Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Ingrese el planificador (p.ej., Karras)",
|
||||
"Enter Score": "Ingrese la puntuación",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Modelos Externos",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "No se pudo crear la clave API.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "No se pudo leer el contenido del portapapeles",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "Falla al actualizar los ajustes",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Leer al oído",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Grabar voz",
|
||||
"Redirecting you to OpenWebUI Community": "Redireccionándote a la comunidad OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Esto reseteará la base de conocimientos y sincronizará todos los archivos. ¿Desea continuar?",
|
||||
"Thorough explanation": "Explicación exhaustiva",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "URL del servidor de Tika",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Berretsi zure ekintza",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Konexioak",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Jarri harremanetan Administratzailearekin WebUI Sarbiderako",
|
||||
"Content": "Edukia",
|
||||
"Content Extraction": "Eduki Erauzketa",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "Sartu Mojeek Bilaketa API Gakoa",
|
||||
"Enter Number of Steps (e.g. 50)": "Sartu Urrats Kopurua (adib. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "Sartu Sampler-a (adib. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Sartu Planifikatzailea (adib. Karras)",
|
||||
"Enter Score": "Sartu Puntuazioa",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Kanpoko Ereduak",
|
||||
"Failed to add file.": "Huts egin du fitxategia gehitzean.",
|
||||
"Failed to create API Key.": "Huts egin du API Gakoa sortzean.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Huts egin du arbelaren edukia irakurtzean",
|
||||
"Failed to save models configuration": "Huts egin du ereduen konfigurazioa gordetzean",
|
||||
"Failed to update settings": "Huts egin du ezarpenak eguneratzean",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "Berrantolatu modeloak gai antzekotasunaren arabera",
|
||||
"Read": "",
|
||||
"Read Aloud": "Irakurri ozen",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Grabatu ahotsa",
|
||||
"Redirecting you to OpenWebUI Community": "OpenWebUI Komunitatera berbideratzen",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Zentzugabekeriak sortzeko probabilitatea murrizten du. Balio altuago batek (adib. 100) erantzun anitzagoak emango ditu, balio baxuago batek (adib. 10) kontserbadoreagoa izango den bitartean. (Lehenetsia: 40)",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Honek modelo guztiak ezabatuko ditu, modelo pertsonalizatuak barne, eta ezin da desegin.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Honek ezagutza-basea berrezarri eta fitxategi guztiak sinkronizatuko ditu. Jarraitu nahi duzu?",
|
||||
"Thorough explanation": "Azalpen sakona",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "Tika zerbitzariaren URLa beharrezkoa da.",
|
||||
"Tiktoken": "Tiktoken",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "ارتباطات",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "برای دسترسی به WebUI با مدیر تماس بگیرید",
|
||||
"Content": "محتوا",
|
||||
"Content Extraction": "استخراج محتوا",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "تعداد گام ها را وارد کنید (مثال: 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "امتیاز را وارد کنید",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "مدل\u200cهای بیرونی",
|
||||
"Failed to add file.": "خطا در افزودن پرونده",
|
||||
"Failed to create API Key.": "ایجاد کلید API با خطا مواجه شد.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "خواندن محتوای کلیپ بورد ناموفق بود",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "خطا در به\u200cروزرسانی تنظیمات",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "خواندن به صورت صوتی",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "ضبط صدا",
|
||||
"Redirecting you to OpenWebUI Community": "در حال هدایت به OpenWebUI Community",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "توضیح کامل",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Vahvista toimintasi",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Yhteydet",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Ota yhteyttä ylläpitäjään WebUI-käyttöä varten",
|
||||
"Content": "Sisältö",
|
||||
"Content Extraction": "Sisällön erottelu",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "Kirjoita Mojeek Search API -avain",
|
||||
"Enter Number of Steps (e.g. 50)": "Kirjoita askelten määrä (esim. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Kirjoita välityspalvelimen URL-osoite (esim. https://käyttäjä:salasana@host:portti)",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "Kirjoita näytteistäjä (esim. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Kirjoita ajoitin (esim. Karras)",
|
||||
"Enter Score": "Kirjoita pistemäärä",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Ulkoiset mallit",
|
||||
"Failed to add file.": "Tiedoston lisääminen epäonnistui.",
|
||||
"Failed to create API Key.": "API-avaimen luonti epäonnistui.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Leikepöydän sisällön lukeminen epäonnistui",
|
||||
"Failed to save models configuration": "Mallien määrityksen tallentaminen epäonnistui",
|
||||
"Failed to update settings": "Asetusten päivittäminen epäonnistui",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "Uudelleenjärjestä mallit aiheyhteyden mukaan",
|
||||
"Read": "",
|
||||
"Read Aloud": "Lue ääneen",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Nauhoita ääni",
|
||||
"Redirecting you to OpenWebUI Community": "Ohjataan sinut OpenWebUI-yhteisöön",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Vähentää merkityksetöntä sisältöä tuottavan todennäköisyyttä. Korkeampi arvo (esim. 100) antaa monipuolisempia vastauksia, kun taas alhaisempi arvo (esim. 10) on konservatiivisempi. (Oletus: 40)",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Tämä poistaa kaikki mallit, mukaan lukien mukautetut mallit, eikä sitä voi peruuttaa.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Tämä nollaa tietokannan ja synkronoi kaikki tiedostot. Haluatko jatkaa?",
|
||||
"Thorough explanation": "Perusteellinen selitys",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "Tika Server URL vaaditaan.",
|
||||
"Tiktoken": "Tiktoken",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Confirmez votre action",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Connexions",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Contacter l'administrateur pour l'accès à l'interface Web",
|
||||
"Content": "Contenu",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Entrez le nombre de pas (par ex. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "Entrez votre score",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Modèles externes",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "Échec de la création de la clé API.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "Échec de la mise à jour des paramètres",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Lire à haute voix",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Enregistrer la voix",
|
||||
"Redirecting you to OpenWebUI Community": "Redirection vers la communauté OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "Explication approfondie",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "URL du serveur Tika requise.",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Confirmer votre action",
|
||||
"Confirm your new password": "Confirmer votre nouveau mot de passe",
|
||||
"Connections": "Connexions",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Contacter l'administrateur pour obtenir l'accès à WebUI",
|
||||
"Content": "Contenu",
|
||||
"Content Extraction": "Extraction du contenu",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "Entrez la clé API Mojeek",
|
||||
"Enter Number of Steps (e.g. 50)": "Entrez le nombre d'étapes (par ex. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Entrez l'URL du proxy (par ex. https://use:password@host:port)",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "Entrez le sampler (par ex. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Entrez le planificateur (par ex. Karras)",
|
||||
"Enter Score": "Entrez votre score",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Modèles externes",
|
||||
"Failed to add file.": "Échec de l'ajout du fichier.",
|
||||
"Failed to create API Key.": "Échec de la création de la clé API.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
|
||||
"Failed to save models configuration": "Échec de la sauvegarde de la configuration des modèles",
|
||||
"Failed to update settings": "Échec de la mise à jour des paramètres",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "Reclasser les modèles par similarité de sujet",
|
||||
"Read": "",
|
||||
"Read Aloud": "Lire à haute voix",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Enregistrer la voix",
|
||||
"Redirecting you to OpenWebUI Community": "Redirection vers la communauté OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Réduit la probabilité de générer des non-sens. Une valeur plus élevée (par exemple 100) donnera des réponses plus diversifiées, tandis qu'une valeur plus basse (par exemple 10) sera plus conservatrice. (Par défaut : 40)",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Cela supprimera tous les modèles, y compris les modèles personnalisés, et ne peut pas être annulé.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Cela réinitialisera la base de connaissances et synchronisera tous les fichiers. Souhaitez-vous continuer ?",
|
||||
"Thorough explanation": "Explication approfondie",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "URL du serveur Tika requise.",
|
||||
"Tiktoken": "Tiktoken",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "חיבורים",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
"Content": "תוכן",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "הזן מספר שלבים (למשל 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "הזן ציון",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "יצירת מפתח API נכשלה.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "קריאת תוכן הלוח נכשלה",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "קרא בקול",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "הקלט קול",
|
||||
"Redirecting you to OpenWebUI Community": "מפנה אותך לקהילת OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "תיאור מפורט",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "सम्बन्ध",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
"Content": "सामग्री",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "चरणों की संख्या दर्ज करें (उदा. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "स्कोर दर्ज करें",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "एपीआई कुंजी बनाने में विफल.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "क्लिपबोर्ड सामग्री पढ़ने में विफल",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "जोर से पढ़ें",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "आवाज रिकॉर्ड करना",
|
||||
"Redirecting you to OpenWebUI Community": "आपको OpenWebUI समुदाय पर पुनर्निर्देशित किया जा रहा है",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "विस्तृत व्याख्या",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Povezivanja",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Kontaktirajte admina za WebUI pristup",
|
||||
"Content": "Sadržaj",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Unesite broj koraka (npr. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "Unesite ocjenu",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Vanjski modeli",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "Neuspješno stvaranje API ključa.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Neuspješno čitanje sadržaja međuspremnika",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "Greška kod ažuriranja postavki",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Čitaj naglas",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Snimanje glasa",
|
||||
"Redirecting you to OpenWebUI Community": "Preusmjeravanje na OpenWebUI zajednicu",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "Detaljno objašnjenje",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Erősítsd meg a műveletet",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Kapcsolatok",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Lépj kapcsolatba az adminnal a WebUI hozzáférésért",
|
||||
"Content": "Tartalom",
|
||||
"Content Extraction": "Tartalom kinyerés",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Add meg a lépések számát (pl. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "Add meg a mintavételezőt (pl. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Add meg az ütemezőt (pl. Karras)",
|
||||
"Enter Score": "Add meg a pontszámot",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Külső modellek",
|
||||
"Failed to add file.": "Nem sikerült hozzáadni a fájlt.",
|
||||
"Failed to create API Key.": "Nem sikerült létrehozni az API kulcsot.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Nem sikerült olvasni a vágólap tartalmát",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "Nem sikerült frissíteni a beállításokat",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "Modellek újrarangsorolása téma hasonlóság alapján",
|
||||
"Read": "",
|
||||
"Read Aloud": "Felolvasás",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Hang rögzítése",
|
||||
"Redirecting you to OpenWebUI Community": "Átirányítás az OpenWebUI közösséghez",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Ez visszaállítja a tudásbázist és szinkronizálja az összes fájlt. Szeretné folytatni?",
|
||||
"Thorough explanation": "Alapos magyarázat",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "Tika szerver URL szükséges.",
|
||||
"Tiktoken": "Tiktoken",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Konfirmasi tindakan Anda",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Koneksi",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Hubungi Admin untuk Akses WebUI",
|
||||
"Content": "Konten",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Masukkan Jumlah Langkah (mis. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "Masukkan Skor",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Model Eksternal",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "Gagal membuat API Key.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Gagal membaca konten papan klip",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "Gagal memperbarui pengaturan",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Baca dengan Keras",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Rekam suara",
|
||||
"Redirecting you to OpenWebUI Community": "Mengarahkan Anda ke Komunitas OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "Penjelasan menyeluruh",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Deimhnigh do ghníomh",
|
||||
"Confirm your new password": "Deimhnigh do phasfhocal nua",
|
||||
"Connections": "Naisc",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Déan teagmháil le Riarachán le haghaidh Rochtana WebUI",
|
||||
"Content": "Ábhar",
|
||||
"Content Extraction": "Straibhadh Ábhar",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "Cuir isteach Eochair API Cuardach Mojeek",
|
||||
"Enter Number of Steps (e.g. 50)": "Iontráil Líon na gCéimeanna (m.sh. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Cuir isteach URL seachfhreastalaí (m.sh. https://user:password@host:port)",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "Cuir isteach Sampler (m.sh. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Cuir isteach Sceidealóir (m.sh. Karras)",
|
||||
"Enter Score": "Iontráil Scór",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Múnlaí Seachtracha",
|
||||
"Failed to add file.": "Theip ar an gcomhad a chur leis.",
|
||||
"Failed to create API Key.": "Theip ar an eochair API a chruthú.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Theip ar ábhar gearrthaisce a lé",
|
||||
"Failed to save models configuration": "Theip ar chumraíocht na múnlaí a shábháil",
|
||||
"Failed to update settings": "Theip ar shocruithe a nuashonrú",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "Athrangaigh múnlaí de réir cosúlachta topaicí",
|
||||
"Read": "",
|
||||
"Read Aloud": "Léigh Ard",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Taifead guth",
|
||||
"Redirecting you to OpenWebUI Community": "Tú a atreorú chuig OpenWebUI Community",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Laghdaíonn sé an dóchúlacht go giniúint nonsense. Tabharfaidh luach níos airde (m.sh. 100) freagraí níos éagsúla, agus beidh luach níos ísle (m.sh. 10) níos coimeádaí. (Réamhshocrú: 40)",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Scriosfaidh sé seo gach samhail lena n-áirítear múnlaí saincheaptha agus ní féidir é a chealú.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Déanfaidh sé seo an bonn eolais a athshocrú agus gach comhad a shioncronú. Ar mhaith leat leanúint ar aghaidh?",
|
||||
"Thorough explanation": "Míniú críochnúil",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "Teastaíonn URL Freastalaí Tika.",
|
||||
"Tiktoken": "Tictoken",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Connessioni",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
"Content": "Contenuto",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Inserisci il numero di passaggi (ad esempio 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "Inserisci il punteggio",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "Impossibile creare la chiave API.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Impossibile leggere il contenuto degli appunti",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Leggi ad alta voce",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Registra voce",
|
||||
"Redirecting you to OpenWebUI Community": "Reindirizzamento alla comunità OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "Spiegazione dettagliata",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "あなたのアクションの確認",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "接続",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "WEBUIへの接続について管理者に問い合わせ下さい。",
|
||||
"Content": "コンテンツ",
|
||||
"Content Extraction": "コンテンツ抽出",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "ステップ数を入力してください (例: 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "サンプラーを入力してください(e.g. Euler a)。",
|
||||
"Enter Scheduler (e.g. Karras)": "スケジューラーを入力してください。(e.g. Karras)",
|
||||
"Enter Score": "スコアを入力してください",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "外部モデル",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "APIキーの作成に失敗しました。",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "クリップボードの内容を読み取れませんでした",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "設定アップデート失敗",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "読み上げ",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "音声を録音",
|
||||
"Redirecting you to OpenWebUI Community": "OpenWebUI コミュニティにリダイレクトしています",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "詳細な説明",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "კავშირები",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
"Content": "კონტენტი",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "შეიყვანეთ ნაბიჯების რაოდენობა (მაგ. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "შეიყვანეთ ქულა",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "API ღილაკის შექმნა ვერ მოხერხდა.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "ბუფერში შიგთავსის წაკითხვა ვერ მოხერხდა",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "ხმის ჩაწერა",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "ხმის ჩაწერა",
|
||||
"Redirecting you to OpenWebUI Community": "გადამისამართდებით OpenWebUI საზოგადოებაში",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "ვრცლად აღწერა",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "액션 확인",
|
||||
"Confirm your new password": "새로운 비밀번호를 한 번 더 입력해 주세요",
|
||||
"Connections": "연결",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "WebUI 접속을 위해서는 관리자에게 연락에 연락하십시오",
|
||||
"Content": "내용",
|
||||
"Content Extraction": "내용 추출",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "Mojeek Search API 키 입력",
|
||||
"Enter Number of Steps (e.g. 50)": "단계 수 입력(예: 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "프록시 URL 입력(예: https://user:password@host:port)",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "샘플러 입력 (예: 오일러 a(Euler a))",
|
||||
"Enter Scheduler (e.g. Karras)": "스케쥴러 입력 (예: 카라스(Karras))",
|
||||
"Enter Score": "점수 입력",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "외부 모델",
|
||||
"Failed to add file.": "파일추가에 실패했습니다",
|
||||
"Failed to create API Key.": "API 키 생성에 실패했습니다.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "클립보드 내용 가져오기를 실패하였습니다.",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "설정 업데이트에 실패하였습니다.",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "주제 유사성으로 모델을 재정렬하기",
|
||||
"Read": "",
|
||||
"Read Aloud": "읽어주기",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "음성 녹음",
|
||||
"Redirecting you to OpenWebUI Community": "OpenWebUI 커뮤니티로 리디렉션 중",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "지식 기반과 모든 파일 연동을 초기화합니다. 계속 하시겠습니까?",
|
||||
"Thorough explanation": "완전한 설명",
|
||||
"Thought for {{DURATION}}": "{{DURATION}} 동안 생각함",
|
||||
"Tika": "티카(Tika)",
|
||||
"Tika Server URL required.": "티카 서버 URL이 필요합니다",
|
||||
"Tiktoken": "틱토큰 (Tiktoken)",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Patvirtinkite veiksmą",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Ryšiai",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Susisiekite su administratoriumi dėl prieigos",
|
||||
"Content": "Turinys",
|
||||
"Content Extraction": "Turinio ištraukimas",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Įveskite žingsnių kiekį (pvz. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "Įveskite rezultatą",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Išoriniai modeliai",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "Nepavyko sukurti API rakto",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Nepavyko perskaityti kopijuoklės",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "Nepavyko atnaujinti nustatymų",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Skaityti garsiai",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Įrašyti balsą",
|
||||
"Redirecting you to OpenWebUI Community": "Perkeliam Jus į OpenWebUI bendruomenę",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "Platus paaiškinimas",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "Reiklainga Tika serverio nuorodą",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Sahkan tindakan anda",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Sambungan",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Hubungi admin untuk akses WebUI",
|
||||
"Content": "Kandungan",
|
||||
"Content Extraction": "Pengekstrakan Kandungan",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Masukkan Bilangan Langkah (cth 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "Masukkan Skor",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Model Luaran",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "Gagal mencipta kekunci API",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Gagal membaca konten papan klip",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "Gagal mengemaskini tetapan",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Baca dengan lantang",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Rakam suara",
|
||||
"Redirecting you to OpenWebUI Community": "Membawa anda ke Komuniti OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "Penjelasan menyeluruh",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "URL Pelayan Tika diperlukan.",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Bekreft handlingen",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Tilkoblinger",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Kontakt administrator for å få tilgang til WebUI",
|
||||
"Content": "Innhold",
|
||||
"Content Extraction": "Uthenting av innhold",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "Angi API-nøkkel for Mojeek-søk",
|
||||
"Enter Number of Steps (e.g. 50)": "Angi antall steg (f.eks. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "Angi Sampler (e.g. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Angi Scheduler (f.eks. Karras)",
|
||||
"Enter Score": "Angi poengsum",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Eksterne modeller",
|
||||
"Failed to add file.": "Kan ikke legge til filen.",
|
||||
"Failed to create API Key.": "Kan ikke opprette en API-nøkkel.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Kan ikke lese utklippstavlens innhold",
|
||||
"Failed to save models configuration": "Kan ikke lagre konfigurasjonen av modeller",
|
||||
"Failed to update settings": "Kan ikke oppdatere innstillinger",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "Ny rangering av modeller etter emnelikhet",
|
||||
"Read": "",
|
||||
"Read Aloud": "Les høyt",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Ta opp tale",
|
||||
"Redirecting you to OpenWebUI Community": "Omdirigerer deg til OpenWebUI-fellesskapet",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Reduserer sannsynligheten for å generere meningsløse svar. En høyere verdi (f.eks. 100) vil gi mer varierte svar, mens en lavere verdi (f.eks. 10) vil være mer konservativ. (Standard: 40)",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Dette sletter alle modeller, inkludert tilpassede modeller, og kan ikke angres.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dette tilbakestiller kunnskapsbasen og synkroniserer alle filer. Vil du fortsette?",
|
||||
"Thorough explanation": "Grundig forklaring",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "Server-URL for Tika kreves.",
|
||||
"Tiktoken": "Tiktoken",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Bevestig uw actie",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Verbindingen",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Neem contact op met de beheerder voor WebUI-toegang",
|
||||
"Content": "Inhoud",
|
||||
"Content Extraction": "Inhoudsextractie",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "Voer Mojeek Search API-sleutel in",
|
||||
"Enter Number of Steps (e.g. 50)": "Voeg aantal stappen toe (Bijv. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "Voer Sampler in (bv. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Voer Scheduler in (bv. Karras)",
|
||||
"Enter Score": "Voeg score toe",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Externe modules",
|
||||
"Failed to add file.": "Het is niet gelukt om het bestand toe te voegen.",
|
||||
"Failed to create API Key.": "Kan API Key niet aanmaken.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Kan klembord inhoud niet lezen",
|
||||
"Failed to save models configuration": "Het is niet gelukt om de modelconfiguratie op te slaan",
|
||||
"Failed to update settings": "Instellingen konden niet worden bijgewerkt.",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "Herrangschik modellen op basis van onderwerpsovereenkomst",
|
||||
"Read": "",
|
||||
"Read Aloud": "Voorlezen",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Neem stem op",
|
||||
"Redirecting you to OpenWebUI Community": "Je wordt doorgestuurd naar OpenWebUI Community",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Vermindert de kans op het genereren van onzin. Een hogere waarde (bijv. 100) zal meer diverse antwoorden geven, terwijl een lagere waarde (bijv. 10) conservatiever zal zijn. (Standaard: 40)",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Dit zal alle modellen, ook aangepaste modellen, verwijderen en kan niet ontdaan worden",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Dit zal de kennisdatabase resetten en alle bestanden synchroniseren. Wilt u doorgaan?",
|
||||
"Thorough explanation": "Gevorderde uitleg",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "Tika Server-URL vereist",
|
||||
"Tiktoken": "Tiktoken",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "ਕਨੈਕਸ਼ਨ",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
"Content": "ਸਮੱਗਰੀ",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "ਕਦਮਾਂ ਦੀ ਗਿਣਤੀ ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "ਸਕੋਰ ਦਰਜ ਕਰੋ",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "API ਕੁੰਜੀ ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ।",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "ਕਲਿੱਪਬੋਰਡ ਸਮੱਗਰੀ ਪੜ੍ਹਣ ਵਿੱਚ ਅਸਫਲ",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "ਜੋਰ ਨਾਲ ਪੜ੍ਹੋ",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "ਆਵਾਜ਼ ਰਿਕਾਰਡ ਕਰੋ",
|
||||
"Redirecting you to OpenWebUI Community": "ਤੁਹਾਨੂੰ ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਵੱਲ ਰੀਡਾਇਰੈਕਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "ਵਿਸਥਾਰ ਨਾਲ ਵਿਆਖਿਆ",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Połączenia",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
"Content": "Zawartość",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Wprowadź liczbę kroków (np. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "Wprowadź wynik",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "Nie udało się utworzyć klucza API.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Nie udało się odczytać zawartości schowka",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Czytaj na głos",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Nagraj głos",
|
||||
"Redirecting you to OpenWebUI Community": "Przekierowujemy Cię do społeczności OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "Dokładne wyjaśnienie",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Confirme sua ação",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Conexões",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Contate o Admin para Acesso ao WebUI",
|
||||
"Content": "Conteúdo",
|
||||
"Content Extraction": "Extração de Conteúdo",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "Digite a Chave API do Mojeek Search",
|
||||
"Enter Number of Steps (e.g. 50)": "Digite o Número de Passos (por exemplo, 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "Digite o Sampler (por exemplo, Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Digite o Agendador (por exemplo, Karras)",
|
||||
"Enter Score": "Digite a Pontuação",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Modelos Externos",
|
||||
"Failed to add file.": "Falha ao adicionar arquivo.",
|
||||
"Failed to create API Key.": "Falha ao criar a Chave API.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "Falha ao atualizar as configurações",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "Reclassificação de modelos por similaridade de tópico",
|
||||
"Read": "",
|
||||
"Read Aloud": "Ler em Voz Alta",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Gravar voz",
|
||||
"Redirecting you to OpenWebUI Community": "Redirecionando você para a Comunidade OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Reduz a probabilidade de gerar absurdos. Um valor mais alto (por exemplo, 100) dará respostas mais diversas, enquanto um valor mais baixo (por exemplo, 10) será mais conservador. (Padrão: 40)",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Isto vai excluir todos os modelos, incluindo personalizados e não pode ser desfeito.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Esta ação resetará a base de conhecimento e sincronizará todos os arquivos. Deseja continuar?",
|
||||
"Thorough explanation": "Explicação detalhada",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "URL do servidor Tika necessária.",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Conexões",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Contatar Admin para acesso ao WebUI",
|
||||
"Content": "Conteúdo",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Escreva o Número de Etapas (por exemplo, 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "Escreva a Pontuação",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Modelos Externos",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "Falha ao criar a Chave da API.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "Falha ao atualizar as definições",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Ler em Voz Alta",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Gravar voz",
|
||||
"Redirecting you to OpenWebUI Community": "Redirecionando-o para a Comunidade OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "Explicação Minuciosa",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Confirmă acțiunea ta",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Conexiuni",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Contactează administratorul pentru acces WebUI",
|
||||
"Content": "Conținut",
|
||||
"Content Extraction": "Extragere Conținut",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Introduceți Numărul de Pași (de ex. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "Introduce Sampler (de exemplu, Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Introduceți Programatorul (de exemplu, Karras)",
|
||||
"Enter Score": "Introduceți Scorul",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Modele Externe",
|
||||
"Failed to add file.": "Eșec la adăugarea fișierului.",
|
||||
"Failed to create API Key.": "Crearea cheii API a eșuat.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Citirea conținutului clipboard-ului a eșuat",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "Actualizarea setărilor a eșuat",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "Reordonează modelele în funcție de similaritatea tematică",
|
||||
"Read": "",
|
||||
"Read Aloud": "Citește cu Voce Tare",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Înregistrează vocea",
|
||||
"Redirecting you to OpenWebUI Community": "Vă redirecționăm către Comunitatea OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Aceasta va reseta baza de cunoștințe și va sincroniza toate fișierele. Doriți să continuați?",
|
||||
"Thorough explanation": "Explicație detaliată",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "Este necesar URL-ul serverului Tika.",
|
||||
"Tiktoken": "Tiktoken",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Подтвердите свое действие",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Соединение",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Обратитесь к администратору для получения доступа к WebUI",
|
||||
"Content": "Содержание",
|
||||
"Content Extraction": "Извлечение контента",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Введите количество шагов (например, 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "Введите сэмплер (например, Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Введите планировщик (например, Karras)",
|
||||
"Enter Score": "Введите оценку",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Внешние модели",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "Не удалось создать ключ API.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Не удалось прочитать содержимое буфера обмена",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "Не удалось обновить настройки",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Прочитать вслух",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Записать голос",
|
||||
"Redirecting you to OpenWebUI Community": "Перенаправляем вас в сообщество OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "При этом будут удалены все модели, включая пользовательские, и это действие нельзя будет отменить.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Это сбросит базу знаний и синхронизирует все файлы. Хотите продолжить?",
|
||||
"Thorough explanation": "Подробное объяснение",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "Требуется URL-адрес сервера Tika.",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Potvrďte svoju akciu",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Pripojenia",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Kontaktujte administrátora pre prístup k webovému rozhraniu.",
|
||||
"Content": "Obsah",
|
||||
"Content Extraction": "Extrakcia obsahu",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Zadajte počet krokov (napr. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "Zadajte vzorkovač (napr. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Zadajte plánovač (napr. Karras)",
|
||||
"Enter Score": "Zadajte skóre",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Externé modely",
|
||||
"Failed to add file.": "Nepodarilo sa pridať súbor.",
|
||||
"Failed to create API Key.": "Nepodarilo sa vytvoriť API kľúč.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Nepodarilo sa prečítať obsah schránky",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "Nepodarilo sa aktualizovať nastavenia",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "Znova zoradiť modely podľa podobnosti tém.",
|
||||
"Read": "",
|
||||
"Read Aloud": "Čítať nahlas",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Nahrať hlas",
|
||||
"Redirecting you to OpenWebUI Community": "Presmerovanie na komunitu OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Toto obnoví znalostnú databázu a synchronizuje všetky súbory. Prajete si pokračovať?",
|
||||
"Thorough explanation": "Obsiahle vysvetlenie",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "Je vyžadovaná URL adresa servera Tika.",
|
||||
"Tiktoken": "Tiktoken",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Везе",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
"Content": "Садржај",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Унесите број корака (нпр. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "Унесите резултат",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "Неуспешно стварање API кључа.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Неуспешно читање садржаја оставе",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Прочитај наглас",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Сними глас",
|
||||
"Redirecting you to OpenWebUI Community": "Преусмеравање на OpenWebUI заједницу",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "Детаљно објашњење",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Anslutningar",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Kontakta administratören för att få åtkomst till WebUI",
|
||||
"Content": "Innehåll",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Ange antal steg (t.ex. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "Ange betyg",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Externa modeller",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "Misslyckades med att skapa API-nyckel.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Misslyckades med att läsa urklippsinnehåll",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "Misslyckades med att uppdatera inställningarna",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Läs igenom",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Spela in röst",
|
||||
"Redirecting you to OpenWebUI Community": "Omdirigerar dig till OpenWebUI Community",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "Djupare förklaring",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "ยืนยันการดำเนินการของคุณ",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "การเชื่อมต่อ",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "ติดต่อผู้ดูแลระบบสำหรับการเข้าถึง WebUI",
|
||||
"Content": "เนื้อหา",
|
||||
"Content Extraction": "การสกัดเนื้อหา",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "ใส่จำนวนขั้นตอน (เช่น 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "ใส่คะแนน",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "โมเดลภายนอก",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "สร้างคีย์ API ล้มเหลว",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "อ่านเนื้อหาคลิปบอร์ดล้มเหลว",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "อัปเดตการตั้งค่าล้มเหลว",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "อ่านออกเสียง",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "บันทึกเสียง",
|
||||
"Redirecting you to OpenWebUI Community": "กำลังเปลี่ยนเส้นทางคุณไปยังชุมชน OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "คำอธิบายอย่างละเอียด",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "จำเป็นต้องมี URL ของเซิร์ฟเวอร์ Tika",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "",
|
||||
"Content": "",
|
||||
"Content Extraction": "",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "",
|
||||
"Redirecting you to OpenWebUI Community": "",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "İşleminizi onaylayın",
|
||||
"Confirm your new password": "Yeni parolanızı onaylayın",
|
||||
"Connections": "Bağlantılar",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "WebUI Erişimi için Yöneticiyle İletişime Geçin",
|
||||
"Content": "İçerik",
|
||||
"Content Extraction": "İçerik Çıkarma",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "Mojeek Search API Anahtarını Girin",
|
||||
"Enter Number of Steps (e.g. 50)": "Adım Sayısını Girin (örn. 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "Örnekleyiciyi Girin (örn. Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Zamanlayıcıyı Girin (örn. Karras)",
|
||||
"Enter Score": "Skoru Girin",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Modelleri Dışa Aktar",
|
||||
"Failed to add file.": "Dosya eklenemedi.",
|
||||
"Failed to create API Key.": "API Anahtarı oluşturulamadı.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Pano içeriği okunamadı",
|
||||
"Failed to save models configuration": "Modeller yapılandırması kaydedilemedi",
|
||||
"Failed to update settings": "Ayarlar güncellenemedi",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "Konu benzerliğine göre modelleri yeniden sırala",
|
||||
"Read": "",
|
||||
"Read Aloud": "Sesli Oku",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Ses kaydı yap",
|
||||
"Redirecting you to OpenWebUI Community": "OpenWebUI Topluluğuna yönlendiriliyorsunuz",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Bu, özel modeller dahil olmak üzere tüm modelleri silecek ve geri alınamaz.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Bu, bilgi tabanını sıfırlayacak ve tüm dosyaları senkronize edecek. Devam etmek istiyor musunuz?",
|
||||
"Thorough explanation": "Kapsamlı açıklama",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "Tika Sunucu URL'si gereklidir.",
|
||||
"Tiktoken": "Tiktoken",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Підтвердіть свою дію",
|
||||
"Confirm your new password": "Підтвердіть свій новий пароль",
|
||||
"Connections": "З'єднання",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Зверніться до адміна для отримання доступу до WebUI",
|
||||
"Content": "Зміст",
|
||||
"Content Extraction": "Вилучення вмісту",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "Введіть API ключ для пошуку Mojeek",
|
||||
"Enter Number of Steps (e.g. 50)": "Введіть кількість кроків (напр., 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "Введіть URL проксі (напр., https://user:password@host:port)",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "Введіть семплер (напр., Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "Введіть планувальник (напр., Karras)",
|
||||
"Enter Score": "Введіть бал",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Зовнішні моделі",
|
||||
"Failed to add file.": "Не вдалося додати файл.",
|
||||
"Failed to create API Key.": "Не вдалося створити API ключ.",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Не вдалося прочитати вміст буфера обміну",
|
||||
"Failed to save models configuration": "Не вдалося зберегти конфігурацію моделей",
|
||||
"Failed to update settings": "Не вдалося оновити налаштування",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "Перестановка моделей за схожістю тем",
|
||||
"Read": "",
|
||||
"Read Aloud": "Читати вголос",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Записати голос",
|
||||
"Redirecting you to OpenWebUI Community": "Перенаправляємо вас до спільноти OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Знижує ймовірність генерації безглуздих відповідей. Вищі значення (напр., 100) призведуть до більш різноманітних відповідей, тоді як нижчі значення (напр., 10) будуть більш обережними. (За замовчуванням: 40)",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "Це видалить усі моделі, включаючи користувацькі моделі, і не може бути скасовано.",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "Це скине базу знань і синхронізує всі файли. Ви бажаєте продовжити?",
|
||||
"Thorough explanation": "Детальне пояснення",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "Потрібна URL-адреса сервера Tika.",
|
||||
"Tiktoken": "Tiktoken",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "اپنی کارروائی کی تصدیق کریں",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "کنکشنز",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "ویب یو آئی رسائی کے لیے ایڈمن سے رابطہ کریں",
|
||||
"Content": "مواد",
|
||||
"Content Extraction": "مواد نکالنا",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "درج کریں مراحل کی تعداد (جیسے 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "نمونہ درج کریں (مثال: آئلر a)",
|
||||
"Enter Scheduler (e.g. Karras)": "شیڈیولر درج کریں (مثلاً Karras)",
|
||||
"Enter Score": "درجہ درج کریں",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "بیرونی ماڈلز",
|
||||
"Failed to add file.": "فائل شامل کرنے میں ناکام",
|
||||
"Failed to create API Key.": "API کلید بنانے میں ناکام",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "کلپ بورڈ مواد کو پڑھنے میں ناکام",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "ترتیبات کی تازہ کاری ناکام رہی",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "موضوع کی مماثلت کے لحاظ سے ماڈلز کی دوبارہ ترتیب دیں",
|
||||
"Read": "",
|
||||
"Read Aloud": "بُلند آواز میں پڑھیں",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "صوت ریکارڈ کریں",
|
||||
"Redirecting you to OpenWebUI Community": "آپ کو اوپن ویب یو آئی کمیونٹی کی طرف ری ڈائریکٹ کیا جا رہا ہے",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "یہ علمی بنیاد کو دوبارہ ترتیب دے گا اور تمام فائلز کو متوازن کرے گا کیا آپ جاری رکھنا چاہتے ہیں؟",
|
||||
"Thorough explanation": "مکمل وضاحت",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "ٹیکہ",
|
||||
"Tika Server URL required.": "ٹکا سرور یو آر ایل درکار ہے",
|
||||
"Tiktoken": "ٹک ٹوکن",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "Xác nhận hành động của bạn",
|
||||
"Confirm your new password": "",
|
||||
"Connections": "Kết nối",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "",
|
||||
"Contact Admin for WebUI Access": "Liên hệ với Quản trị viên để được cấp quyền truy cập",
|
||||
"Content": "Nội dung",
|
||||
"Content Extraction": "Trích xuất nội dung",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "",
|
||||
"Enter Number of Steps (e.g. 50)": "Nhập số Steps (vd: 50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "",
|
||||
"Enter reasoning effort": "",
|
||||
"Enter Sampler (e.g. Euler a)": "",
|
||||
"Enter Scheduler (e.g. Karras)": "",
|
||||
"Enter Score": "Nhập Score",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "Các model ngoài",
|
||||
"Failed to add file.": "",
|
||||
"Failed to create API Key.": "Lỗi khởi tạo API Key",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to read clipboard contents": "Không thể đọc nội dung clipboard",
|
||||
"Failed to save models configuration": "",
|
||||
"Failed to update settings": "Lỗi khi cập nhật các cài đặt",
|
||||
@@ -740,6 +743,7 @@
|
||||
"Re-rank models by topic similarity": "",
|
||||
"Read": "",
|
||||
"Read Aloud": "Đọc ra loa",
|
||||
"Reasoning Effort": "",
|
||||
"Record voice": "Ghi âm",
|
||||
"Redirecting you to OpenWebUI Community": "Đang chuyển hướng bạn đến Cộng đồng OpenWebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "",
|
||||
"Thorough explanation": "Giải thích kỹ lưỡng",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "",
|
||||
"Tika Server URL required.": "Bắt buộc phải nhập URL cho Tika Server ",
|
||||
"Tiktoken": "",
|
||||
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "确定吗?",
|
||||
"Confirm your new password": "确认新密码",
|
||||
"Connections": "外部连接",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "限制推理模型的推理努力。仅适用于支持推理努力的特定提供商的推理模型。(默认值:中等)",
|
||||
"Contact Admin for WebUI Access": "请联系管理员以获取访问权限",
|
||||
"Content": "内容",
|
||||
"Content Extraction": "内容提取",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "输入 Mojeek Search API 密钥",
|
||||
"Enter Number of Steps (e.g. 50)": "输入步骤数 (Steps) (例如:50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "输入代理 URL (例如:https://用户名:密码@主机名:端口)",
|
||||
"Enter reasoning effort": "设置推理努力",
|
||||
"Enter Sampler (e.g. Euler a)": "输入 Sampler (例如:Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "输入 Scheduler (例如:Karras)",
|
||||
"Enter Score": "输入评分",
|
||||
@@ -412,6 +414,7 @@
|
||||
"External Models": "外部模型",
|
||||
"Failed to add file.": "添加文件失败。",
|
||||
"Failed to create API Key.": "无法创建 API 密钥。",
|
||||
"Failed to fetch models": "无法获取模型",
|
||||
"Failed to read clipboard contents": "无法读取剪贴板内容",
|
||||
"Failed to save models configuration": "无法保存模型配置",
|
||||
"Failed to update settings": "无法更新设置",
|
||||
@@ -556,7 +559,7 @@
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "留空以使用默认提示词,或输入自定义提示词。",
|
||||
"Light": "浅色",
|
||||
"Listening...": "正在倾听...",
|
||||
"Llama.cpp": "",
|
||||
"Llama.cpp": "Llama.cpp",
|
||||
"LLMs can make mistakes. Verify important information.": "大语言模型可能会生成误导性错误信息,请对关键信息加以验证。",
|
||||
"Local": "本地",
|
||||
"Local Models": "本地模型",
|
||||
@@ -567,7 +570,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "确保从 ComfyUI 导出 API 格式的 workflow.json 文件。",
|
||||
"Manage": "管理",
|
||||
"Manage Arena Models": "管理竞技场模型",
|
||||
"Manage Models": "",
|
||||
"Manage Models": "管理模型",
|
||||
"Manage Ollama": "管理 Ollama",
|
||||
"Manage Ollama API Connections": "管理Ollama API连接",
|
||||
"Manage OpenAI API Connections": "管理OpenAI API连接",
|
||||
@@ -633,7 +636,7 @@
|
||||
"No files found.": "未找到文件。",
|
||||
"No groups with access, add a group to grant access": "没有权限组,请添加一个权限组以授予访问权限",
|
||||
"No HTML, CSS, or JavaScript content found.": "未找到 HTML、CSS 或 JavaScript 内容。",
|
||||
"No inference engine with management support found": "",
|
||||
"No inference engine with management support found": "未找到支持管理的推理引擎",
|
||||
"No knowledge found": "未找到知识",
|
||||
"No model IDs": "没有模型 ID",
|
||||
"No models found": "未找到任何模型",
|
||||
@@ -738,8 +741,9 @@
|
||||
"RAG Template": "RAG 提示词模板",
|
||||
"Rating": "评价",
|
||||
"Re-rank models by topic similarity": "根据主题相似性对模型重新排序",
|
||||
"Read": "",
|
||||
"Read": "阅读",
|
||||
"Read Aloud": "朗读",
|
||||
"Reasoning Effort": "推理努力",
|
||||
"Record voice": "录音",
|
||||
"Redirecting you to OpenWebUI Community": "正在将您重定向到 OpenWebUI 社区",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "降低产生无意义答案的概率。数值越大(如 100),答案就越多样化,而数值越小(如 10),答案就越保守。(默认值:40)",
|
||||
@@ -816,7 +820,7 @@
|
||||
"Select a pipeline": "选择一个管道",
|
||||
"Select a pipeline url": "选择一个管道 URL",
|
||||
"Select a tool": "选择一个工具",
|
||||
"Select an Ollama instance": "",
|
||||
"Select an Ollama instance": "选择一个 Ollama 实例。",
|
||||
"Select Engine": "选择引擎",
|
||||
"Select Knowledge": "选择知识",
|
||||
"Select model": "选择模型",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "这将删除所有模型,包括自定义模型,且无法撤销。",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "这将重置知识库并替换所有文件为目录下文件。确认继续?",
|
||||
"Thorough explanation": "解释较为详细",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "请输入 Tika 服务器地址。",
|
||||
"Tiktoken": "Tiktoken",
|
||||
@@ -1054,7 +1059,7 @@
|
||||
"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. (Default: 0.9)": "与 top-k 一起工作。较高的值(例如0.95)将导致更具多样性的文本,而较低的值(例如0.5)将生成更集中和保守的文本。(默认值:0.9)",
|
||||
"Workspace": "工作空间",
|
||||
"Workspace Permissions": "工作空间权限",
|
||||
"Write": "",
|
||||
"Write": "写作",
|
||||
"Write a prompt suggestion (e.g. Who are you?)": "写一个提示词建议(例如:你是谁?)",
|
||||
"Write a summary in 50 words that summarizes [topic or keyword].": "用 50 个字写一个总结 [主题或关键词]。",
|
||||
"Write something...": "单击以键入内容...",
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
"Advanced Params": "進階參數",
|
||||
"All Documents": "所有文件",
|
||||
"All models deleted successfully": "成功刪除所有模型",
|
||||
"Allow Chat Controls": "",
|
||||
"Allow Chat Controls": "允許控制對話",
|
||||
"Allow Chat Delete": "允許刪除對話",
|
||||
"Allow Chat Deletion": "允許刪除對話紀錄",
|
||||
"Allow Chat Edit": "允許編輯對話",
|
||||
@@ -189,6 +189,7 @@
|
||||
"Confirm your action": "確認您的操作",
|
||||
"Confirm your new password": "確認您的新密碼",
|
||||
"Connections": "連線",
|
||||
"Constrains effort on reasoning for reasoning models. Only applicable to reasoning models from specific providers that support reasoning effort. (Default: medium)": "限制用於推理模型的推理程度 。僅適用於特定供應商提供的、支援推理程度設定的推理模型。(預設:中等)",
|
||||
"Contact Admin for WebUI Access": "請聯絡管理員以取得 WebUI 存取權限",
|
||||
"Content": "內容",
|
||||
"Content Extraction": "內容擷取",
|
||||
@@ -354,6 +355,7 @@
|
||||
"Enter Mojeek Search API Key": "輸入 Mojeek 搜尋 API 金鑰",
|
||||
"Enter Number of Steps (e.g. 50)": "輸入步驟數(例如:50)",
|
||||
"Enter proxy URL (e.g. https://user:password@host:port)": "輸入代理程式 URL(例如:https://user:password@host:port)",
|
||||
"Enter reasoning effort": "輸入推理程度",
|
||||
"Enter Sampler (e.g. Euler a)": "輸入取樣器(例如:Euler a)",
|
||||
"Enter Scheduler (e.g. Karras)": "輸入排程器(例如:Karras)",
|
||||
"Enter Score": "輸入分數",
|
||||
@@ -412,11 +414,12 @@
|
||||
"External Models": "外部模型",
|
||||
"Failed to add file.": "新增檔案失敗。",
|
||||
"Failed to create API Key.": "建立 API 金鑰失敗。",
|
||||
"Failed to fetch models": "獲取模型失敗",
|
||||
"Failed to read clipboard contents": "讀取剪貼簿內容失敗",
|
||||
"Failed to save models configuration": "儲存模型設定失敗",
|
||||
"Failed to update settings": "更新設定失敗",
|
||||
"Failed to upload file.": "上傳檔案失敗。",
|
||||
"Features Permissions": "",
|
||||
"Features Permissions": "功能權限",
|
||||
"February": "2 月",
|
||||
"Feedback History": "回饋歷史",
|
||||
"Feedbacks": "回饋",
|
||||
@@ -491,15 +494,15 @@
|
||||
"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "我確認已閱讀並理解我的操作所帶來的影響。我了解執行任意程式碼的相關風險,並已驗證來源的可信度。",
|
||||
"ID": "ID",
|
||||
"Ignite curiosity": "點燃好奇心",
|
||||
"Image": "",
|
||||
"Image": "圖片",
|
||||
"Image Compression": "圖片壓縮",
|
||||
"Image generation": "",
|
||||
"Image Generation": "",
|
||||
"Image generation": "圖片生成",
|
||||
"Image Generation": "圖片生成",
|
||||
"Image Generation (Experimental)": "圖片生成(實驗性功能)",
|
||||
"Image Generation Engine": "圖片生成引擎",
|
||||
"Image Max Compression Size": "圖片最大壓縮大小",
|
||||
"Image Prompt Generation": "",
|
||||
"Image Prompt Generation Prompt": "",
|
||||
"Image Prompt Generation": "圖片提示詞生成",
|
||||
"Image Prompt Generation Prompt": "生成圖片提示詞的提示詞",
|
||||
"Image Settings": "圖片設定",
|
||||
"Images": "圖片",
|
||||
"Import Chats": "匯入對話紀錄",
|
||||
@@ -556,7 +559,7 @@
|
||||
"Leave empty to use the default prompt, or enter a custom prompt": "留空以使用預設提示詞,或輸入自訂提示詞",
|
||||
"Light": "淺色",
|
||||
"Listening...": "正在聆聽...",
|
||||
"Llama.cpp": "",
|
||||
"Llama.cpp": "Llama.cpp",
|
||||
"LLMs can make mistakes. Verify important information.": "大型語言模型可能會出錯。請驗證重要資訊。",
|
||||
"Local": "本機",
|
||||
"Local Models": "本機模型",
|
||||
@@ -567,7 +570,7 @@
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "請確保從 ComfyUI 匯出 workflow.json 檔案為 API 格式。",
|
||||
"Manage": "管理",
|
||||
"Manage Arena Models": "管理競技模型",
|
||||
"Manage Models": "",
|
||||
"Manage Models": "管理模型",
|
||||
"Manage Ollama": "管理 Ollama",
|
||||
"Manage Ollama API Connections": "管理 Ollama API 連線",
|
||||
"Manage OpenAI API Connections": "管理 OpenAI API 連線",
|
||||
@@ -633,7 +636,7 @@
|
||||
"No files found.": "找不到檔案。",
|
||||
"No groups with access, add a group to grant access": "沒有具有存取權限的群組,新增群組以授予存取權限",
|
||||
"No HTML, CSS, or JavaScript content found.": "找不到 HTML、CSS 或 JavaScript 內容。",
|
||||
"No inference engine with management support found": "",
|
||||
"No inference engine with management support found": "找不到支援管理功能的推理引擎",
|
||||
"No knowledge found": "找不到知識",
|
||||
"No model IDs": "沒有任何模型 ID",
|
||||
"No models found": "找不到模型",
|
||||
@@ -738,8 +741,9 @@
|
||||
"RAG Template": "RAG 範本",
|
||||
"Rating": "評分",
|
||||
"Re-rank models by topic similarity": "根據主題相似度重新排序模型",
|
||||
"Read": "",
|
||||
"Read": "讀取",
|
||||
"Read Aloud": "大聲朗讀",
|
||||
"Reasoning Effort": "推理程度",
|
||||
"Record voice": "錄音",
|
||||
"Redirecting you to OpenWebUI Community": "正在將您重導向至 OpenWebUI 社群",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "降低產生無意義內容的機率。較高的值(例如 100)會給出更多樣化的答案,而較低的值(例如 10)會更保守。(預設:40)",
|
||||
@@ -816,7 +820,7 @@
|
||||
"Select a pipeline": "選擇管線",
|
||||
"Select a pipeline url": "選擇管線 URL",
|
||||
"Select a tool": "選擇工具",
|
||||
"Select an Ollama instance": "",
|
||||
"Select an Ollama instance": "選擇一個 Ollama 實例",
|
||||
"Select Engine": "選擇引擎",
|
||||
"Select Knowledge": "選擇知識庫",
|
||||
"Select model": "選擇模型",
|
||||
@@ -843,7 +847,7 @@
|
||||
"Set Scheduler": "設定排程器",
|
||||
"Set Steps": "設定步數",
|
||||
"Set Task Model": "設定任務模型",
|
||||
"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
|
||||
"Set the number of layers, which will be off-loaded to GPU. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "設定要卸載至 GPU 的層數。增加此數值可以顯著提升針對 GPU 加速最佳化的模型的效能,但也可能消耗更多電力和 GPU 資源。",
|
||||
"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "設定用於計算的工作執行緒數量。此選項控制使用多少執行緒來同時處理傳入的請求。增加此值可以在高併發工作負載下提升效能,但也可能消耗更多 CPU 資源。",
|
||||
"Set Voice": "設定語音",
|
||||
"Set whisper model": "設定 whisper 模型",
|
||||
@@ -930,6 +934,7 @@
|
||||
"This will delete all models including custom models and cannot be undone.": "這將刪除所有模型,包括自訂模型,且無法復原。",
|
||||
"This will reset the knowledge base and sync all files. Do you wish to continue?": "這將重設知識庫並同步所有檔案。您確定要繼續嗎?",
|
||||
"Thorough explanation": "詳細解釋",
|
||||
"Thought for {{DURATION}}": "",
|
||||
"Tika": "Tika",
|
||||
"Tika Server URL required.": "需要 Tika 伺服器 URL。",
|
||||
"Tiktoken": "Tiktoken",
|
||||
@@ -1054,7 +1059,7 @@
|
||||
"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. (Default: 0.9)": "與 top-k 一起運作。較高的值(例如 0.95)會產生更多樣化的文字,而較低的值(例如 0.5)會產生更專注和保守的文字。(預設:0.9)",
|
||||
"Workspace": "工作區",
|
||||
"Workspace Permissions": "工作區權限",
|
||||
"Write": "",
|
||||
"Write": "寫入",
|
||||
"Write a prompt suggestion (e.g. Who are you?)": "撰寫提示詞建議(例如:你是誰?)",
|
||||
"Write a summary in 50 words that summarizes [topic or keyword].": "用 50 字寫一篇總結 [主題或關鍵字] 的摘要。",
|
||||
"Write something...": "寫一些什麽...",
|
||||
@@ -1064,7 +1069,7 @@
|
||||
"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "您一次最多只能與 {{maxCount}} 個檔案進行對話。",
|
||||
"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "您可以透過下方的「管理」按鈕新增記憶,將您與大型語言模型的互動個人化,讓它們更有幫助並更符合您的需求。",
|
||||
"You cannot upload an empty file.": "您無法上傳空檔案",
|
||||
"You do not have permission to access this feature.": "",
|
||||
"You do not have permission to access this feature.": "您沒有權限訪問此功能",
|
||||
"You do not have permission to upload files.": "您沒有權限上傳檔案",
|
||||
"You have no archived conversations.": "您沒有已封存的對話。",
|
||||
"You have shared this chat": "您已分享此對話",
|
||||
|
||||
Reference in New Issue
Block a user