chore: format

This commit is contained in:
Timothy Jaeryang Baek
2026-04-01 04:36:02 -05:00
parent 53583f8d83
commit c8ef5a4f38
92 changed files with 3573 additions and 692 deletions
-1
View File
@@ -49,7 +49,6 @@ export type AutomationResponse = {
next_runs: number[] | null;
};
export const getAutomationItems = async (
token: string,
query: string | null,
+5 -1
View File
@@ -45,7 +45,11 @@ export const getTerminalConfig = async (
return res.json().catch(() => null);
};
export const getCwd = async (baseUrl: string, apiKey: string, sessionId?: string): Promise<string | null> => {
export const getCwd = async (
baseUrl: string,
apiKey: string,
sessionId?: string
): Promise<string | null> => {
const url = `${baseUrl.replace(/\/$/, '')}/files/cwd`;
const headers: Record<string, string> = { Authorization: `Bearer ${apiKey}` };
if (sessionId) headers['X-Session-Id'] = sessionId;
+2 -10
View File
@@ -155,17 +155,9 @@
<!-- Bottom toolbar -->
<div class="flex items-center justify-between px-4 pb-3.5 pt-1 gap-2">
<div class="flex items-center gap-0.5 flex-wrap flex-1 min-w-0">
<ScheduleDropdown
bind:this={scheduleDropdown}
side="top"
align="start"
/>
<ScheduleDropdown bind:this={scheduleDropdown} side="top" align="start" />
<ModelDropdown
bind:model_id
side="top"
align="start"
/>
<ModelDropdown bind:model_id side="top" align="start" />
<TerminalDropdown
{terminalServers}
@@ -161,7 +161,7 @@
if (runsLoading || (!hasMoreRuns && loadMore)) return;
runsLoading = true;
if (!loadMore) {
runsPage = 0;
hasMoreRuns = true;
@@ -175,7 +175,7 @@
} else {
runs = fetchedRuns;
}
if (fetchedRuns.length < 50) {
hasMoreRuns = false;
}
@@ -414,10 +414,7 @@
<div class="text-gray-500 text-xs mb-2 shrink-0">
{$i18n.t('Execution Logs')}
</div>
<div
class="flex-1 overflow-y-auto scrollbar-hidden w-full"
on:scroll={onScroll}
>
<div class="flex-1 overflow-y-auto scrollbar-hidden w-full" on:scroll={onScroll}>
{#if runsLoading && runs.length === 0}
<div class="flex justify-center py-4">
<Spinner className="size-4" />
@@ -30,9 +30,7 @@
<button
type="button"
class="flex items-center gap-1.5 px-2.5 py-1.5 rounded-2xl text-xs transition
{terminalServerId
? 'text-black dark:text-gray-100'
: 'text-gray-600 dark:text-gray-400'}
{terminalServerId ? 'text-black dark:text-gray-100' : 'text-gray-600 dark:text-gray-400'}
hover:bg-black/5 dark:hover:bg-white/5"
>
<Cloud className="size-3.5 shrink-0" strokeWidth="2" />
+408 -393
View File
@@ -94,7 +94,10 @@
const deltaY = touch.clientY - swipeStartY;
// Determine swipe direction from dead zone
if (!swipeLocked && (Math.abs(deltaX) > SWIPE_DEAD_ZONE || Math.abs(deltaY) > SWIPE_DEAD_ZONE)) {
if (
!swipeLocked &&
(Math.abs(deltaX) > SWIPE_DEAD_ZONE || Math.abs(deltaY) > SWIPE_DEAD_ZONE)
) {
if (Math.abs(deltaY) > Math.abs(deltaX)) {
// Vertical scroll — abort swipe tracking
isSwiping = false;
@@ -111,9 +114,8 @@
// Only allow right swipe
const clampedX = Math.max(0, deltaX);
// Dampen the motion beyond threshold for a rubber-band feel
swipeOffsetX = clampedX <= SWIPE_THRESHOLD
? clampedX
: SWIPE_THRESHOLD + (clampedX - SWIPE_THRESHOLD) * 0.3;
swipeOffsetX =
clampedX <= SWIPE_THRESHOLD ? clampedX : SWIPE_THRESHOLD + (clampedX - SWIPE_THRESHOLD) * 0.3;
swipeOffsetX = Math.min(swipeOffsetX, SWIPE_MAX);
};
@@ -162,9 +164,13 @@
{#if swipeOffsetX > 0}
<div
class="swipe-reply-indicator"
style="opacity: {Math.min(swipeOffsetX / SWIPE_THRESHOLD, 1)}; transform: scale({0.5 + Math.min(swipeOffsetX / SWIPE_THRESHOLD, 1) * 0.5});"
style="opacity: {Math.min(swipeOffsetX / SWIPE_THRESHOLD, 1)}; transform: scale({0.5 +
Math.min(swipeOffsetX / SWIPE_THRESHOLD, 1) * 0.5});"
>
<div class="swipe-reply-icon" class:swipe-reply-icon--active={swipeOffsetX >= SWIPE_THRESHOLD}>
<div
class="swipe-reply-icon"
class:swipe-reply-icon--active={swipeOffsetX >= SWIPE_THRESHOLD}
>
<ArrowUpLeftAlt className="size-5" />
</div>
</div>
@@ -175,7 +181,9 @@
class="flex flex-col justify-between w-full max-w-full mx-auto group hover:bg-gray-300/5 dark:hover:bg-gray-700/5 relative {className
? className
: `px-5 ${
replyToMessage ? 'border-l-4 border-blue-500 bg-blue-100/10 dark:bg-blue-100/5 pl-4' : ''
replyToMessage
? 'border-l-4 border-blue-500 bg-blue-100/10 dark:bg-blue-100/5 pl-4'
: ''
} ${
(message?.reply_to_message?.meta?.model_id ?? message?.reply_to_message?.user_id) ===
$user?.id
@@ -184,448 +192,453 @@
} ${message?.is_pinned ? 'bg-yellow-100/20 dark:bg-yellow-100/5' : ''}`} {showUserProfile
? 'pt-1.5 pb-0.5'
: ''}"
style="transform: translateX({swipeOffsetX}px); {swipeOffsetX > 0 ? '' : 'transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);'}"
style="transform: translateX({swipeOffsetX}px); {swipeOffsetX > 0
? ''
: 'transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);'}"
>
{#if !edit && !disabled}
<div
class=" absolute {showButtons ? '' : 'invisible group-hover:visible'} right-1 -top-2 z-10"
>
{#if !edit && !disabled}
<div
class="flex gap-1 rounded-lg bg-white dark:bg-gray-850 shadow-md p-0.5 border border-gray-100/30 dark:border-gray-850/30"
class=" absolute {showButtons ? '' : 'invisible group-hover:visible'} right-1 -top-2 z-10"
>
{#if onReaction}
<EmojiPicker
onClose={() => (showButtons = false)}
onSubmit={(name) => {
showButtons = false;
onReaction(name);
}}
>
<Tooltip content={$i18n.t('Add Reaction')}>
<button
class="hover:bg-gray-100 dark:hover:bg-gray-800 transition rounded-lg p-1"
on:click={() => {
showButtons = true;
}}
>
<FaceSmile />
</button>
</Tooltip>
</EmojiPicker>
{/if}
{#if onReply}
<Tooltip content={$i18n.t('Reply')}>
<button
class="hover:bg-gray-100 dark:hover:bg-gray-800 transition rounded-lg p-0.5"
on:click={() => {
onReply(message);
<div
class="flex gap-1 rounded-lg bg-white dark:bg-gray-850 shadow-md p-0.5 border border-gray-100/30 dark:border-gray-850/30"
>
{#if onReaction}
<EmojiPicker
onClose={() => (showButtons = false)}
onSubmit={(name) => {
showButtons = false;
onReaction(name);
}}
>
<ArrowUpLeftAlt className="size-5" />
</button>
</Tooltip>
{/if}
<Tooltip content={$i18n.t('Add Reaction')}>
<button
class="hover:bg-gray-100 dark:hover:bg-gray-800 transition rounded-lg p-1"
on:click={() => {
showButtons = true;
}}
>
<FaceSmile />
</button>
</Tooltip>
</EmojiPicker>
{/if}
<Tooltip content={message?.is_pinned ? $i18n.t('Unpin') : $i18n.t('Pin')}>
<button
class="hover:bg-gray-100 dark:hover:bg-gray-800 transition rounded-lg p-1"
on:click={() => {
onPin(message);
}}
>
{#if message?.is_pinned}
<PinSlash className="size-4" />
{:else}
<Pin className="size-4" />
{/if}
</button>
</Tooltip>
{#if onReply}
<Tooltip content={$i18n.t('Reply')}>
<button
class="hover:bg-gray-100 dark:hover:bg-gray-800 transition rounded-lg p-0.5"
on:click={() => {
onReply(message);
}}
>
<ArrowUpLeftAlt className="size-5" />
</button>
</Tooltip>
{/if}
{#if !thread && onThread}
<Tooltip content={$i18n.t('Reply in Thread')}>
<Tooltip content={message?.is_pinned ? $i18n.t('Unpin') : $i18n.t('Pin')}>
<button
class="hover:bg-gray-100 dark:hover:bg-gray-800 transition rounded-lg p-1"
on:click={() => {
onThread(message.id);
onPin(message);
}}
>
<ChatBubbleOvalEllipsis />
{#if message?.is_pinned}
<PinSlash className="size-4" />
{:else}
<Pin className="size-4" />
{/if}
</button>
</Tooltip>
{/if}
{#if message.user_id === $user?.id || $user?.role === 'admin'}
{#if onEdit}
<Tooltip content={$i18n.t('Edit')}>
{#if !thread && onThread}
<Tooltip content={$i18n.t('Reply in Thread')}>
<button
class="hover:bg-gray-100 dark:hover:bg-gray-800 transition rounded-lg p-1"
on:click={() => {
edit = true;
editedContent = message.content;
onThread(message.id);
}}
>
<Pencil />
<ChatBubbleOvalEllipsis />
</button>
</Tooltip>
{/if}
{#if onDelete}
<Tooltip content={$i18n.t('Delete')}>
<button
class="hover:bg-gray-100 dark:hover:bg-gray-800 transition rounded-lg p-1"
on:click={() => (showDeleteConfirmDialog = true)}
>
<GarbageBin />
</button>
</Tooltip>
{#if message.user_id === $user?.id || $user?.role === 'admin'}
{#if onEdit}
<Tooltip content={$i18n.t('Edit')}>
<button
class="hover:bg-gray-100 dark:hover:bg-gray-800 transition rounded-lg p-1"
on:click={() => {
edit = true;
editedContent = message.content;
}}
>
<Pencil />
</button>
</Tooltip>
{/if}
{#if onDelete}
<Tooltip content={$i18n.t('Delete')}>
<button
class="hover:bg-gray-100 dark:hover:bg-gray-800 transition rounded-lg p-1"
on:click={() => (showDeleteConfirmDialog = true)}
>
<GarbageBin />
</button>
</Tooltip>
{/if}
{/if}
{/if}
</div>
</div>
{/if}
{#if message?.is_pinned}
<div class="flex {showUserProfile ? 'mb-0.5' : 'mt-0.5'}">
<div class="ml-8.5 flex items-center gap-1 px-1 rounded-full text-xs">
<Pin className="size-3 text-yellow-500 dark:text-yellow-300" />
<span class="text-gray-500">{$i18n.t('Pinned')}</span>
</div>
</div>
{/if}
{#if message?.reply_to_message?.user}
<div class="relative text-xs mb-1">
<div
class="absolute h-3 w-7 left-[18px] top-2 rounded-tl-lg border-t-[1.5px] border-l-[1.5px] border-gray-200 dark:border-gray-700 z-0"
></div>
<button
class="ml-12 flex items-center space-x-2 relative z-0"
on:click={() => {
const messageElement = document.getElementById(
`message-${message.reply_to_message.id}`
);
if (messageElement) {
messageElement.scrollIntoView({ behavior: 'smooth', block: 'center' });
messageElement.classList.add('highlight');
setTimeout(() => {
messageElement.classList.remove('highlight');
}, 2000);
return;
}
}}
>
{#if message?.reply_to_message?.meta?.model_id}
<img
src={`${WEBUI_API_BASE_URL}/models/model/profile/image?id=${message.reply_to_message.meta.model_id}`}
alt={message.reply_to_message.meta.model_name ??
message.reply_to_message.meta.model_id}
class="size-4 ml-0.5 rounded-full object-cover"
on:error={(e) => {
e.currentTarget.src = '/favicon.png';
}}
/>
{:else}
<img
src={message.reply_to_message.user?.role === 'webhook'
? `${WEBUI_API_BASE_URL}/channels/webhooks/${message.reply_to_message.user?.id}/profile/image`
: `${WEBUI_API_BASE_URL}/users/${message.reply_to_message.user?.id}/profile/image`}
alt={message.reply_to_message.user?.name ?? $i18n.t('Unknown User')}
class="size-4 ml-0.5 rounded-full object-cover"
/>
{/if}
<div class="shrink-0">
{message?.reply_to_message.meta?.model_name ??
message?.reply_to_message.user?.name ??
$i18n.t('Unknown User')}
</div>
</div>
{/if}
<div class="italic text-sm text-gray-500 dark:text-gray-400 line-clamp-1 w-full flex-1">
<Markdown id={`${message.id}-reply-to`} content={message?.reply_to_message?.content} />
{#if message?.is_pinned}
<div class="flex {showUserProfile ? 'mb-0.5' : 'mt-0.5'}">
<div class="ml-8.5 flex items-center gap-1 px-1 rounded-full text-xs">
<Pin className="size-3 text-yellow-500 dark:text-yellow-300" />
<span class="text-gray-500">{$i18n.t('Pinned')}</span>
</div>
</button>
</div>
{/if}
</div>
{/if}
<div
class=" flex w-full message-{message.id} "
id="message-{message.id}"
dir={$settings.chatDirection}
>
<div class={`shrink-0 mr-1 w-9`}>
{#if showUserProfile}
{#if message?.meta?.model_id}
<img
src={`${WEBUI_API_BASE_URL}/models/model/profile/image?id=${message.meta.model_id}`}
alt={message.meta.model_name ?? message.meta.model_id}
class="size-8 translate-y-1 ml-0.5 object-cover rounded-full"
on:error={(e) => {
e.currentTarget.src = '/favicon.png';
}}
/>
{:else if message.user?.role === 'webhook'}
<ProfileImage
src={`${WEBUI_API_BASE_URL}/channels/webhooks/${message.user?.id}/profile/image`}
className={'size-8 ml-0.5'}
/>
{:else}
<ProfilePreview user={message.user}>
{#if message?.reply_to_message?.user}
<div class="relative text-xs mb-1">
<div
class="absolute h-3 w-7 left-[18px] top-2 rounded-tl-lg border-t-[1.5px] border-l-[1.5px] border-gray-200 dark:border-gray-700 z-0"
></div>
<button
class="ml-12 flex items-center space-x-2 relative z-0"
on:click={() => {
const messageElement = document.getElementById(
`message-${message.reply_to_message.id}`
);
if (messageElement) {
messageElement.scrollIntoView({ behavior: 'smooth', block: 'center' });
messageElement.classList.add('highlight');
setTimeout(() => {
messageElement.classList.remove('highlight');
}, 2000);
return;
}
}}
>
{#if message?.reply_to_message?.meta?.model_id}
<img
src={`${WEBUI_API_BASE_URL}/models/model/profile/image?id=${message.reply_to_message.meta.model_id}`}
alt={message.reply_to_message.meta.model_name ??
message.reply_to_message.meta.model_id}
class="size-4 ml-0.5 rounded-full object-cover"
on:error={(e) => {
e.currentTarget.src = '/favicon.png';
}}
/>
{:else}
<img
src={message.reply_to_message.user?.role === 'webhook'
? `${WEBUI_API_BASE_URL}/channels/webhooks/${message.reply_to_message.user?.id}/profile/image`
: `${WEBUI_API_BASE_URL}/users/${message.reply_to_message.user?.id}/profile/image`}
alt={message.reply_to_message.user?.name ?? $i18n.t('Unknown User')}
class="size-4 ml-0.5 rounded-full object-cover"
/>
{/if}
<div class="shrink-0">
{message?.reply_to_message.meta?.model_name ??
message?.reply_to_message.user?.name ??
$i18n.t('Unknown User')}
</div>
<div class="italic text-sm text-gray-500 dark:text-gray-400 line-clamp-1 w-full flex-1">
<Markdown
id={`${message.id}-reply-to`}
content={message?.reply_to_message?.content}
/>
</div>
</button>
</div>
{/if}
<div
class=" flex w-full message-{message.id} "
id="message-{message.id}"
dir={$settings.chatDirection}
>
<div class={`shrink-0 mr-1 w-9`}>
{#if showUserProfile}
{#if message?.meta?.model_id}
<img
src={`${WEBUI_API_BASE_URL}/models/model/profile/image?id=${message.meta.model_id}`}
alt={message.meta.model_name ?? message.meta.model_id}
class="size-8 translate-y-1 ml-0.5 object-cover rounded-full"
on:error={(e) => {
e.currentTarget.src = '/favicon.png';
}}
/>
{:else if message.user?.role === 'webhook'}
<ProfileImage
src={`${WEBUI_API_BASE_URL}/users/${message.user?.id}/profile/image`}
src={`${WEBUI_API_BASE_URL}/channels/webhooks/${message.user?.id}/profile/image`}
className={'size-8 ml-0.5'}
/>
</ProfilePreview>
{/if}
{:else}
<!-- <div class="w-7 h-7 rounded-full bg-transparent" /> -->
{#if message.created_at}
<div
class="mt-1.5 flex shrink-0 items-center text-xs self-center invisible group-hover:visible text-gray-500 font-medium first-letter:capitalize"
>
<Tooltip content={dayjs(message.created_at / 1000000).format('LLLL')}>
{dayjs(message.created_at / 1000000).format('HH:mm')}
</Tooltip>
</div>
{/if}
{/if}
</div>
<div class="flex-auto w-0 pl-2">
{#if showUserProfile}
<Name>
<div class=" self-end text-base shrink-0 font-medium truncate">
{#if message?.meta?.model_id}
{message?.meta?.model_name ?? message?.meta?.model_id}
{:else}
{message?.user?.name}
{/if}
</div>
{:else}
<ProfilePreview user={message.user}>
<ProfileImage
src={`${WEBUI_API_BASE_URL}/users/${message.user?.id}/profile/image`}
className={'size-8 ml-0.5'}
/>
</ProfilePreview>
{/if}
{:else}
<!-- <div class="w-7 h-7 rounded-full bg-transparent" /> -->
{#if message.created_at}
<div
class=" self-center text-xs text-gray-400 font-medium first-letter:capitalize ml-0.5 translate-y-[1px]"
class="mt-1.5 flex shrink-0 items-center text-xs self-center invisible group-hover:visible text-gray-500 font-medium first-letter:capitalize"
>
<Tooltip content={dayjs(message.created_at / 1000000).format('LLLL')}>
<span class="line-clamp-1">
{#if dayjs(message.created_at / 1000000).isToday()}
{dayjs(message.created_at / 1000000).format('LT')}
{:else}
{$i18n.t(formatDate(message.created_at / 1000000), {
LOCALIZED_TIME: dayjs(message.created_at / 1000000).format('LT'),
LOCALIZED_DATE: dayjs(message.created_at / 1000000).format('L')
})}
{/if}
</span>
{dayjs(message.created_at / 1000000).format('HH:mm')}
</Tooltip>
</div>
{/if}
</Name>
{/if}
{/if}
</div>
{#if message?.data === true}
<!-- loading indicator -->
<div class=" my-2">
<Skeleton />
</div>
{:else if (message?.data?.files ?? []).length > 0}
<div
class="my-2.5 w-full flex overflow-x-auto gap-2 flex-wrap"
dir={$settings?.chatDirection ?? 'auto'}
>
{#each message?.data?.files as file}
{@const fileUrl =
file.url.startsWith('data') || file.url.startsWith('http')
? file.url
: `${WEBUI_API_BASE_URL}/files/${file.url}${file?.content_type ? '/content' : ''}`}
<div>
{#if file.type === 'image' || (file?.content_type ?? '').startsWith('image/')}
<Image src={fileUrl} alt={file.name} imageClassName=" max-h-96 rounded-lg" />
{:else if file.type === 'video' || (file?.content_type ?? '').startsWith('video/')}
<video src={fileUrl} controls class=" max-h-96 rounded-lg"></video>
<div class="flex-auto w-0 pl-2">
{#if showUserProfile}
<Name>
<div class=" self-end text-base shrink-0 font-medium truncate">
{#if message?.meta?.model_id}
{message?.meta?.model_name ?? message?.meta?.model_id}
{:else}
<FileItem
item={file}
url={file.url}
name={file.name}
type={file.type}
size={file?.size}
small={true}
/>
{message?.user?.name}
{/if}
</div>
{/each}
</div>
{/if}
{#if edit}
<div class="py-2">
<Textarea
className=" bg-transparent outline-hidden w-full resize-none"
bind:value={editedContent}
onKeydown={(e) => {
if (e.key === 'Escape') {
document.getElementById('close-edit-message-button')?.click();
}
const isCmdOrCtrlPressed = e.metaKey || e.ctrlKey;
const isEnterPressed = e.key === 'Enter';
if (isCmdOrCtrlPressed && isEnterPressed) {
document.getElementById('confirm-edit-message-button')?.click();
}
}}
/>
<div class=" mt-2 mb-1 flex justify-end text-sm font-medium">
<div class="flex space-x-1.5">
<button
id="close-edit-message-button"
class="px-3.5 py-1.5 bg-white dark:bg-gray-900 hover:bg-gray-100 text-gray-800 dark:text-gray-100 transition rounded-3xl"
on:click={() => {
edit = false;
editedContent = null;
}}
{#if message.created_at}
<div
class=" self-center text-xs text-gray-400 font-medium first-letter:capitalize ml-0.5 translate-y-[1px]"
>
{$i18n.t('Cancel')}
</button>
<button
id="confirm-edit-message-button"
class="px-3.5 py-1.5 bg-gray-900 dark:bg-white hover:bg-gray-850 text-gray-100 dark:text-gray-800 transition rounded-3xl"
on:click={async () => {
onEdit(editedContent);
edit = false;
editedContent = null;
}}
>
{$i18n.t('Save')}
</button>
</div>
</div>
</div>
{:else}
<div class=" min-w-full markdown-prose {pending ? 'opacity-50' : ''}">
{#if (message?.content ?? '').trim() === '' && message?.meta?.model_id}
<Skeleton />
{:else}
<Markdown
id={message.id}
content={message.content}
paragraphTag="span"
/>{#if message.created_at !== message.updated_at && (message?.meta?.model_id ?? null) === null}<span
class="text-gray-500 text-[10px] pl-1 self-center">({$i18n.t('edited')})</span
>{/if}
{/if}
</div>
{#if (message?.reactions ?? []).length > 0}
<div>
<div class="flex items-center flex-wrap gap-y-1.5 gap-1 mt-1 mb-2">
{#each message.reactions as reaction}
<Tooltip
content={$i18n.t('{{NAMES}} reacted with {{REACTION}}', {
NAMES: reaction.users
.reduce((acc, u, idx) => {
const name = u.id === $user?.id ? $i18n.t('You') : u.name;
const total = reaction.users.length;
// First three names always added normally
if (idx < 3) {
const separator =
idx === 0
? ''
: idx === Math.min(2, total - 1)
? ` ${$i18n.t('and')} `
: ', ';
return `${acc}${separator}${name}`;
}
// More than 4 → "and X others"
if (idx === 3 && total > 4) {
return (
acc +
` ${$i18n.t('and {{COUNT}} others', {
COUNT: total - 3
})}`
);
}
return acc;
}, '')
.trim(),
REACTION: `:${reaction.name}:`
})}
>
<button
class="flex items-center gap-1.5 transition rounded-xl px-2 py-1 cursor-pointer {reaction.users
.map((u) => u.id)
.includes($user?.id)
? ' bg-blue-300/10 outline outline-blue-500/50 outline-1'
: 'bg-gray-300/10 dark:bg-gray-500/10 hover:outline hover:outline-gray-700/30 dark:hover:outline-gray-300/30 hover:outline-1'}"
on:click={() => {
if (onReaction) {
onReaction(reaction.name);
}
}}
>
<Emoji shortCode={reaction.name} />
{#if reaction.users.length > 0}
<div class="text-xs font-medium text-gray-500 dark:text-gray-400">
{reaction.users?.length}
</div>
<Tooltip content={dayjs(message.created_at / 1000000).format('LLLL')}>
<span class="line-clamp-1">
{#if dayjs(message.created_at / 1000000).isToday()}
{dayjs(message.created_at / 1000000).format('LT')}
{:else}
{$i18n.t(formatDate(message.created_at / 1000000), {
LOCALIZED_TIME: dayjs(message.created_at / 1000000).format('LT'),
LOCALIZED_DATE: dayjs(message.created_at / 1000000).format('L')
})}
{/if}
</button>
</span>
</Tooltip>
{/each}
</div>
{/if}
</Name>
{/if}
{#if onReaction}
<EmojiPicker
onSubmit={(name) => {
onReaction(name);
{#if message?.data === true}
<!-- loading indicator -->
<div class=" my-2">
<Skeleton />
</div>
{:else if (message?.data?.files ?? []).length > 0}
<div
class="my-2.5 w-full flex overflow-x-auto gap-2 flex-wrap"
dir={$settings?.chatDirection ?? 'auto'}
>
{#each message?.data?.files as file}
{@const fileUrl =
file.url.startsWith('data') || file.url.startsWith('http')
? file.url
: `${WEBUI_API_BASE_URL}/files/${file.url}${file?.content_type ? '/content' : ''}`}
<div>
{#if file.type === 'image' || (file?.content_type ?? '').startsWith('image/')}
<Image src={fileUrl} alt={file.name} imageClassName=" max-h-96 rounded-lg" />
{:else if file.type === 'video' || (file?.content_type ?? '').startsWith('video/')}
<video src={fileUrl} controls class=" max-h-96 rounded-lg"></video>
{:else}
<FileItem
item={file}
url={file.url}
name={file.name}
type={file.type}
size={file?.size}
small={true}
/>
{/if}
</div>
{/each}
</div>
{/if}
{#if edit}
<div class="py-2">
<Textarea
className=" bg-transparent outline-hidden w-full resize-none"
bind:value={editedContent}
onKeydown={(e) => {
if (e.key === 'Escape') {
document.getElementById('close-edit-message-button')?.click();
}
const isCmdOrCtrlPressed = e.metaKey || e.ctrlKey;
const isEnterPressed = e.key === 'Enter';
if (isCmdOrCtrlPressed && isEnterPressed) {
document.getElementById('confirm-edit-message-button')?.click();
}
}}
/>
<div class=" mt-2 mb-1 flex justify-end text-sm font-medium">
<div class="flex space-x-1.5">
<button
id="close-edit-message-button"
class="px-3.5 py-1.5 bg-white dark:bg-gray-900 hover:bg-gray-100 text-gray-800 dark:text-gray-100 transition rounded-3xl"
on:click={() => {
edit = false;
editedContent = null;
}}
>
<Tooltip content={$i18n.t('Add Reaction')}>
<div
class="flex items-center gap-1.5 bg-gray-500/10 hover:outline hover:outline-gray-700/30 dark:hover:outline-gray-300/30 hover:outline-1 transition rounded-xl px-1 py-1 cursor-pointer text-gray-500 dark:text-gray-400"
>
<FaceSmile />
</div>
</Tooltip>
</EmojiPicker>
{/if}
{$i18n.t('Cancel')}
</button>
<button
id="confirm-edit-message-button"
class="px-3.5 py-1.5 bg-gray-900 dark:bg-white hover:bg-gray-850 text-gray-100 dark:text-gray-800 transition rounded-3xl"
on:click={async () => {
onEdit(editedContent);
edit = false;
editedContent = null;
}}
>
{$i18n.t('Save')}
</button>
</div>
</div>
</div>
{/if}
{#if !thread && message.reply_count > 0}
<div class="flex items-center gap-1.5 -mt-0.5 mb-1.5">
<button
class="flex items-center text-xs py-1 text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-300 transition"
on:click={() => {
onThread(message.id);
}}
>
<span class="font-medium mr-1">
{$i18n.t('{{COUNT}} Replies', { COUNT: message.reply_count })}</span
><span>
{' - '}{$i18n.t('Last reply')}
{dayjs.unix(message.latest_reply_at / 1000000000).fromNow()}</span
>
<span class="ml-1">
<ChevronRight className="size-2.5" strokeWidth="3" />
</span>
<!-- {$i18n.t('View Replies')} -->
</button>
{:else}
<div class=" min-w-full markdown-prose {pending ? 'opacity-50' : ''}">
{#if (message?.content ?? '').trim() === '' && message?.meta?.model_id}
<Skeleton />
{:else}
<Markdown
id={message.id}
content={message.content}
paragraphTag="span"
/>{#if message.created_at !== message.updated_at && (message?.meta?.model_id ?? null) === null}<span
class="text-gray-500 text-[10px] pl-1 self-center">({$i18n.t('edited')})</span
>{/if}
{/if}
</div>
{#if (message?.reactions ?? []).length > 0}
<div>
<div class="flex items-center flex-wrap gap-y-1.5 gap-1 mt-1 mb-2">
{#each message.reactions as reaction}
<Tooltip
content={$i18n.t('{{NAMES}} reacted with {{REACTION}}', {
NAMES: reaction.users
.reduce((acc, u, idx) => {
const name = u.id === $user?.id ? $i18n.t('You') : u.name;
const total = reaction.users.length;
// First three names always added normally
if (idx < 3) {
const separator =
idx === 0
? ''
: idx === Math.min(2, total - 1)
? ` ${$i18n.t('and')} `
: ', ';
return `${acc}${separator}${name}`;
}
// More than 4 → "and X others"
if (idx === 3 && total > 4) {
return (
acc +
` ${$i18n.t('and {{COUNT}} others', {
COUNT: total - 3
})}`
);
}
return acc;
}, '')
.trim(),
REACTION: `:${reaction.name}:`
})}
>
<button
class="flex items-center gap-1.5 transition rounded-xl px-2 py-1 cursor-pointer {reaction.users
.map((u) => u.id)
.includes($user?.id)
? ' bg-blue-300/10 outline outline-blue-500/50 outline-1'
: 'bg-gray-300/10 dark:bg-gray-500/10 hover:outline hover:outline-gray-700/30 dark:hover:outline-gray-300/30 hover:outline-1'}"
on:click={() => {
if (onReaction) {
onReaction(reaction.name);
}
}}
>
<Emoji shortCode={reaction.name} />
{#if reaction.users.length > 0}
<div class="text-xs font-medium text-gray-500 dark:text-gray-400">
{reaction.users?.length}
</div>
{/if}
</button>
</Tooltip>
{/each}
{#if onReaction}
<EmojiPicker
onSubmit={(name) => {
onReaction(name);
}}
>
<Tooltip content={$i18n.t('Add Reaction')}>
<div
class="flex items-center gap-1.5 bg-gray-500/10 hover:outline hover:outline-gray-700/30 dark:hover:outline-gray-300/30 hover:outline-1 transition rounded-xl px-1 py-1 cursor-pointer text-gray-500 dark:text-gray-400"
>
<FaceSmile />
</div>
</Tooltip>
</EmojiPicker>
{/if}
</div>
</div>
{/if}
{#if !thread && message.reply_count > 0}
<div class="flex items-center gap-1.5 -mt-0.5 mb-1.5">
<button
class="flex items-center text-xs py-1 text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-300 transition"
on:click={() => {
onThread(message.id);
}}
>
<span class="font-medium mr-1">
{$i18n.t('{{COUNT}} Replies', { COUNT: message.reply_count })}</span
><span>
{' - '}{$i18n.t('Last reply')}
{dayjs.unix(message.latest_reply_at / 1000000000).fromNow()}</span
>
<span class="ml-1">
<ChevronRight className="size-2.5" strokeWidth="3" />
</span>
<!-- {$i18n.t('View Replies')} -->
</button>
</div>
{/if}
{/if}
{/if}
</div>
</div>
</div>
</div>
</div>
{/if}
@@ -669,7 +682,9 @@
border-radius: 50%;
background-color: rgba(128, 128, 128, 0.15);
color: rgba(128, 128, 128, 0.8);
transition: background-color 0.15s, color 0.15s;
transition:
background-color 0.15s,
color 0.15s;
}
.swipe-reply-icon--active {
+2 -2
View File
@@ -200,7 +200,7 @@
window.setTimeout(() => scrollToBottom(), 0);
await tick();
// Mark chat read when initially loading it
if (chatIdProp && !$temporaryChatEnabled) {
updateLastReadAt(chatIdProp);
@@ -2886,7 +2886,7 @@
{createMessagePair}
{onUpload}
messageQueue={$chatRequestQueues[$chatId] ?? []}
{chatTasks}
{chatTasks}
onQueueSendNow={async (id) => {
const queue = $chatRequestQueues[$chatId] ?? [];
const item = queue.find((m) => m.id === id);
+56 -9
View File
@@ -365,22 +365,52 @@
clearFilePreview();
if (isImage(filePath)) {
const result = await downloadFileBlob(terminal.url, terminal.key, filePath, chatId ?? undefined);
const result = await downloadFileBlob(
terminal.url,
terminal.key,
filePath,
chatId ?? undefined
);
if (result) fileImageUrl = URL.createObjectURL(result.blob);
} else if (isVideo(filePath)) {
const result = await downloadFileBlob(terminal.url, terminal.key, filePath, chatId ?? undefined);
const result = await downloadFileBlob(
terminal.url,
terminal.key,
filePath,
chatId ?? undefined
);
if (result) fileVideoUrl = URL.createObjectURL(result.blob);
} else if (isAudio(filePath)) {
const result = await downloadFileBlob(terminal.url, terminal.key, filePath, chatId ?? undefined);
const result = await downloadFileBlob(
terminal.url,
terminal.key,
filePath,
chatId ?? undefined
);
if (result) fileAudioUrl = URL.createObjectURL(result.blob);
} else if (isPdf(filePath)) {
const result = await downloadFileBlob(terminal.url, terminal.key, filePath, chatId ?? undefined);
const result = await downloadFileBlob(
terminal.url,
terminal.key,
filePath,
chatId ?? undefined
);
if (result) filePdfData = await result.blob.arrayBuffer();
} else if (isSqlite(filePath)) {
const result = await downloadFileBlob(terminal.url, terminal.key, filePath, chatId ?? undefined);
const result = await downloadFileBlob(
terminal.url,
terminal.key,
filePath,
chatId ?? undefined
);
if (result) fileSqliteData = await result.blob.arrayBuffer();
} else if (isOffice(filePath)) {
const result = await downloadFileBlob(terminal.url, terminal.key, filePath, chatId ?? undefined);
const result = await downloadFileBlob(
terminal.url,
terminal.key,
filePath,
chatId ?? undefined
);
if (result) {
const ext = getFileExt(filePath);
const arrayBuffer = await result.blob.arrayBuffer();
@@ -493,7 +523,12 @@
const terminal = selectedTerminal;
if (!terminal) return;
const result = await createDirectory(terminal.url, terminal.key, `${currentPath}${name}`, chatId ?? undefined);
const result = await createDirectory(
terminal.url,
terminal.key,
`${currentPath}${name}`,
chatId ?? undefined
);
toast[result ? 'success' : 'error'](
$i18n.t(result ? 'Folder created' : 'Failed to create folder')
);
@@ -554,7 +589,13 @@
const sourceDir = source.endsWith('/') ? source : source + '/';
if (destFolder.startsWith(sourceDir)) return;
const result = await moveEntry(terminal.url, terminal.key, source, destination, chatId ?? undefined);
const result = await moveEntry(
terminal.url,
terminal.key,
source,
destination,
chatId ?? undefined
);
if ('error' in result) {
toast.error(result.error);
} else {
@@ -573,7 +614,13 @@
if (oldPath === destination) return;
const result = await moveEntry(terminal.url, terminal.key, oldPath, destination, chatId ?? undefined);
const result = await moveEntry(
terminal.url,
terminal.key,
oldPath,
destination,
chatId ?? undefined
);
if ('error' in result) {
toast.error(result.error);
} else {
+4 -1
View File
@@ -122,7 +122,10 @@
export let history;
export let taskIds = null;
$: isActive = (taskIds && taskIds.length > 0) || (history.currentId && history.messages[history.currentId]?.done != true) || generating;
$: isActive =
(taskIds && taskIds.length > 0) ||
(history.currentId && history.messages[history.currentId]?.done != true) ||
generating;
export let prompt = '';
export let files = [];
@@ -43,7 +43,6 @@
export let readOnly = false;
export let editCodeBlock = true;
export let topPadding = false;
</script>
<div
@@ -393,7 +393,9 @@
});
if (res) {
toast.success($i18n.t('Model {{modelName}} deleted successfully', { modelName: model.name ?? model.id }));
toast.success(
$i18n.t('Model {{modelName}} deleted successfully', { modelName: model.name ?? model.id })
);
// If the deleted model was selected, clear the selection
if (value === model.id) {
@@ -427,7 +429,9 @@
<ConfirmDialog
bind:show={showDeleteConfirm}
title={$i18n.t('Delete Model')}
message={$i18n.t('Are you sure you want to delete **{{modelName}}**?', { modelName: deleteModelTarget?.name ?? deleteModelTarget?.id ?? '' })}
message={$i18n.t('Are you sure you want to delete **{{modelName}}**?', {
modelName: deleteModelTarget?.name ?? deleteModelTarget?.id ?? ''
})}
on:confirm={() => {
confirmDeleteModel();
}}
@@ -28,7 +28,6 @@
import PanzoomContainer from './PanzoomContainer.svelte';
import Reset from '../icons/Reset.svelte';
export let item;
export let show = false;
export let edit = false;
@@ -161,12 +161,7 @@
</div>
</div>
<PanzoomContainer className="flex h-full max-h-full justify-center items-center z-0">
<img
{src}
{alt}
class=" mx-auto h-full object-scale-down select-none"
draggable="false"
/>
<img {src} {alt} class=" mx-auto h-full object-scale-down select-none" draggable="false" />
</PanzoomContainer>
</div>
{/if}
@@ -24,7 +24,7 @@
instance = localInstance;
return () => {
localInstance.dispose();
}
};
});
</script>
+28 -4
View File
@@ -10,8 +10,32 @@
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
>
<path d="M20 20L15 15M15 15V19M15 15H19" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M4 20L9 15M9 15V19M9 15H5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M20 4L15 9M15 9V5M15 9H19" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M4 4L9 9M9 9V5M9 9H5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path
d="M20 20L15 15M15 15V19M15 15H19"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M4 20L9 15M9 15V19M9 15H5"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M20 4L15 9M15 9V5M15 9H19"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M4 4L9 9M9 9V5M9 9H5"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
+28 -4
View File
@@ -10,8 +10,32 @@
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
>
<path d="M9 9L4 4M4 4V8M4 4H8" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M15 9L20 4M20 4V8M20 4H16" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M9 15L4 20M4 20V16M4 20H8" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M15 15L20 20M20 20V16M20 20H16" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path
d="M9 9L4 4M4 4V8M4 4H8"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M15 9L20 4M20 4V8M20 4H16"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M9 15L4 20M4 20V16M4 20H8"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M15 15L20 20M20 20V16M20 20H16"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
+42 -6
View File
@@ -9,10 +9,46 @@
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M9 6L20 6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M3.80002 5.79999L4.60002 6.59998L6.60001 4.59999" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M3.80002 11.8L4.60002 12.6L6.60001 10.6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M3.80002 17.8L4.60002 18.6L6.60001 16.6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M9 12L20 12" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path d="M9 18L20 18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
<path
d="M9 6L20 6"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M3.80002 5.79999L4.60002 6.59998L6.60001 4.59999"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M3.80002 11.8L4.60002 12.6L6.60001 10.6"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M3.80002 17.8L4.60002 18.6L6.60001 16.6"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M9 12L20 12"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
<path
d="M9 18L20 18"
stroke="currentColor"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
@@ -9,7 +9,6 @@
import { showSettings, mobile, showSidebar, showShortcuts, user, config } from '$lib/stores';
import { WEBUI_API_BASE_URL } from '$lib/constants';
import Dropdown from '$lib/components/common/Dropdown.svelte';
@@ -216,39 +215,39 @@
</button>
{#if $user?.role === 'admin' || $user?.permissions?.features?.automations}
<a
href="/automations"
draggable="false"
class="flex rounded-xl py-1.5 px-3 w-full hover:bg-gray-50 dark:hover:bg-gray-800 transition cursor-pointer select-none"
on:click={async (e) => {
if (e.metaKey || e.ctrlKey || e.shiftKey || e.button === 1) return;
e.preventDefault();
show = false;
goto('/automations');
if ($mobile) {
await tick();
showSidebar.set(false);
}
}}
>
<div class="self-center mr-3">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="size-5"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M12 6v6h4.5m4.5 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
/>
</svg>
</div>
<div class="self-center truncate">{$i18n.t('Automations')}</div>
</a>
<a
href="/automations"
draggable="false"
class="flex rounded-xl py-1.5 px-3 w-full hover:bg-gray-50 dark:hover:bg-gray-800 transition cursor-pointer select-none"
on:click={async (e) => {
if (e.metaKey || e.ctrlKey || e.shiftKey || e.button === 1) return;
e.preventDefault();
show = false;
goto('/automations');
if ($mobile) {
await tick();
showSidebar.set(false);
}
}}
>
<div class="self-center mr-3">
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="currentColor"
class="size-5"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M12 6v6h4.5m4.5 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"
/>
</svg>
</div>
<div class="self-center truncate">{$i18n.t('Automations')}</div>
</a>
{/if}
<button
@@ -186,6 +186,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -202,6 +203,7 @@
"Assistant": "",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -224,6 +226,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 الرابط الرئيسي",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 الرابط مطلوب",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "",
"Available models": "",
"Available Tools": "",
@@ -254,6 +263,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "مفتاح واجهة برمجة تطبيقات البحث الشجاع",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -387,6 +397,7 @@
"Concurrent Requests": "الطلبات المتزامنة",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "",
"Confirm": "",
"Confirm Password": "تأكيد كلمة المرور",
@@ -456,6 +467,7 @@
"Create new secret key": "عمل سر جديد",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "أنشئت في",
"Created At": "أنشئت من",
@@ -477,6 +489,7 @@
"Data Controls": "",
"Database": "قاعدة البيانات",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "ديسمبر",
@@ -507,6 +520,7 @@
"Delete All": "",
"Delete All Chats": "حذف جميع الدردشات",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "حذف المحادثه.",
"Delete chat?": "",
"Delete File": "",
@@ -651,6 +665,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "نموذج التضمين",
"Embedding Model Engine": "تضمين محرك النموذج",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -742,6 +757,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "أدخل النتيجة",
@@ -766,6 +782,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -805,6 +822,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -822,6 +840,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "تجريبي",
"Explain": "",
@@ -1085,6 +1104,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "التثبيت من عنوان URL لجيثب",
"Instant Auto-Send After Voice Transcription": "",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "واجهه المستخدم",
@@ -1144,6 +1164,7 @@
"Last 90 days": "",
"Last Active": "آخر نشاط",
"Last Modified": "",
"Last ran": "",
"Last reply": "",
"LDAP": "",
"LDAP server updated": "",
@@ -1250,6 +1271,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "تم تحميل النموذج '{{modelName}}' بنجاح",
"Model '{{modelTag}}' is already in queue for downloading.": "النموذج '{{modelTag}}' موجود بالفعل في قائمة الانتظار للتحميل",
"Model {{modelId}} not found": "لم يتم العثور على النموذج {{modelId}}.",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "نموذج {{modelName}} غير قادر على الرؤية",
"Model {{name}} is now {{status}}": "نموذج {{name}} هو الآن {{status}}",
"Model {{name}} is now hidden": "",
@@ -1299,8 +1321,11 @@
"Name": "الأسم",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "دردشة جديدة",
"New File": "",
@@ -1319,9 +1344,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1332,6 +1359,7 @@
"No data": "",
"No data found": "",
"No distance available": "",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "",
@@ -1378,6 +1406,7 @@
"Not factually correct": "ليس صحيحا من حيث الواقع",
"Not helpful": "",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ملاحظة: إذا قمت بتعيين الحد الأدنى من النقاط، فلن يؤدي البحث إلا إلى إرجاع المستندات التي لها نقاط أكبر من أو تساوي الحد الأدنى من النقاط.",
@@ -1451,6 +1480,7 @@
"or": "أو",
"Ordered List": "",
"Other": "آخر",
"out of": "",
"Output": "",
"OUTPUT": "",
"Output format": "",
@@ -1466,6 +1496,7 @@
"Password": "الباسورد",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Paused": "",
"PDF document (.pdf)": "PDF ملف (.pdf)",
"PDF Extract Images (OCR)": "PDF أستخرج الصور (OCR)",
"PDF Loader Mode": "",
@@ -1570,6 +1601,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "سجل صوت",
"Redirecting you to Open WebUI Community": "OpenWebUI إعادة توجيهك إلى مجتمع ",
@@ -1605,6 +1637,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1641,6 +1674,8 @@
"RTL": "من اليمين إلى اليسار",
"Run": "",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "",
"Running...": "جارٍ التنفيذ...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1651,12 +1686,15 @@
"Save Chat": "",
"Saved": "",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "لم يعد حفظ سجلات الدردشة مباشرة في مساحة تخزين متصفحك مدعومًا. يرجى تخصيص بعض الوقت لتنزيل وحذف سجلات الدردشة الخاصة بك عن طريق النقر على الزر أدناه. لا تقلق، يمكنك بسهولة إعادة استيراد سجلات الدردشة الخاصة بك إلى الواجهة الخلفية من خلاله",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "البحث",
"Search a model": "البحث عن موديل",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "",
"Search channels and channel messages": "",
"Search Chats": "البحث في الدردشات",
@@ -1726,6 +1764,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1835,6 +1874,7 @@
"Start of the channel": "بداية القناة",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1885,8 +1925,10 @@
"Talk to Model": "",
"Tap to interrupt": "",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "",
"Tavily Extract Depth": "",
"Tell us more:": "أخبرنا المزيد:",
@@ -1953,6 +1995,7 @@
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "العنوان",
@@ -1970,6 +2013,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "",
"Toast notifications for new updates": "",
"Today": "اليوم",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2108,6 +2152,7 @@
"Waiting for upload...": "",
"Warning": "تحذير",
"Warning:": "تحذير:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "Web",
@@ -2142,6 +2187,7 @@
"Width": "",
"Wikipedia": "",
"Won": "",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "مساحة العمل",
"Workspace Permissions": "",
+46
View File
@@ -186,6 +186,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "هل أنت متأكد من رغبتك في مسح جميع الذكريات؟ لا يمكن التراجع عن هذا الإجراء.",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "هل أنت متأكد من رغبتك في حذف هذه القناة؟",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -202,6 +203,7 @@
"Assistant": "المساعد",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -224,6 +226,13 @@
"AUTOMATIC1111 Base URL": "الرابط الأساسي لـ AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "الرابط الأساسي لـ AUTOMATIC1111 مطلوب.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "القائمة المتاحة",
"Available models": "",
"Available Tools": "",
@@ -254,6 +263,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "تعزيز أو معاقبة رموز محددة لردود مقيدة. ستتراوح قيم التحيز بين -100 و100 (شاملة). (افتراضي: لا شيء)",
"Brave": "",
"Brave Search API Key": "مفتاح API لـ Brave Search",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -387,6 +397,7 @@
"Concurrent Requests": "الطلبات المتزامنة",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "تكوين",
"Confirm": "تأكيد",
"Confirm Password": "تأكيد كلمة المرور",
@@ -456,6 +467,7 @@
"Create new secret key": "إنشاء مفتاح سري جديد",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "تم الإنشاء في",
"Created At": "تاريخ الإنشاء",
@@ -477,6 +489,7 @@
"Data Controls": "",
"Database": "قاعدة البيانات",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "ديسمبر",
@@ -507,6 +520,7 @@
"Delete All": "",
"Delete All Chats": "حذف جميع الدردشات",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "حذف المحادثه.",
"Delete chat?": "هل تريد حذف المحادثة؟",
"Delete File": "",
@@ -651,6 +665,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "نموذج التضمين",
"Embedding Model Engine": "تضمين محرك النموذج",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -742,6 +757,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "أدخل عنوان البروكسي (مثال: https://user:password@host:port)",
"Enter reasoning effort": "أدخل مستوى الجهد في الاستدلال",
"Enter Score": "أدخل النتيجة",
@@ -766,6 +782,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "أدخل مفتاح API لـ Tavily",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "أدخل الرابط العلني لـ WebUI الخاص بك. سيتم استخدام هذا الرابط لإنشاء روابط داخل الإشعارات.",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -805,6 +822,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "حدث خطأ أثناء الوصول إلى Google Drive: {{error}}",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "حدث خطأ أثناء تحميل الملف: {{error}}",
@@ -822,6 +840,7 @@
"Execute code": "",
"Execute code for analysis": "تنفيذ الكود للتحليل",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "توسيع",
"Experimental": "تجريبي",
"Explain": "شرح",
@@ -1085,6 +1104,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "التثبيت من عنوان URL لجيثب",
"Instant Auto-Send After Voice Transcription": "إرسال تلقائي فوري بعد تحويل الصوت إلى نص",
"Instructions": "",
"Integration": "التكامل",
"Integrations": "",
"Interface": "واجهه المستخدم",
@@ -1144,6 +1164,7 @@
"Last 90 days": "",
"Last Active": "آخر نشاط",
"Last Modified": "آخر تعديل",
"Last ran": "",
"Last reply": "آخر رد",
"LDAP": "LDAP",
"LDAP server updated": "تم تحديث خادم LDAP",
@@ -1250,6 +1271,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "تم تحميل النموذج '{{modelName}}' بنجاح",
"Model '{{modelTag}}' is already in queue for downloading.": "النموذج '{{modelTag}}' موجود بالفعل في قائمة الانتظار للتحميل",
"Model {{modelId}} not found": "لم يتم العثور على النموذج {{modelId}}.",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "نموذج {{modelName}} غير قادر على الرؤية",
"Model {{name}} is now {{status}}": "نموذج {{name}} هو الآن {{status}}",
"Model {{name}} is now hidden": "",
@@ -1299,8 +1321,11 @@
"Name": "الأسم",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "قم بتسمية قاعدة معرفتك",
"Name, prompt, and model are required": "",
"Native": "أصلي",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "دردشة جديدة",
"New File": "",
@@ -1319,9 +1344,11 @@
"New Webhook": "",
"new-channel": "قناة جديدة",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1332,6 +1359,7 @@
"No data": "",
"No data found": "",
"No distance available": "لا توجد مسافة متاحة",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "لم يتم تحديد ملف",
@@ -1378,6 +1406,7 @@
"Not factually correct": "ليس صحيحا من حيث الواقع",
"Not helpful": "غير مفيد",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ملاحظة: إذا قمت بتعيين الحد الأدنى من النقاط، فلن يؤدي البحث إلا إلى إرجاع المستندات التي لها نقاط أكبر من أو تساوي الحد الأدنى من النقاط.",
@@ -1451,6 +1480,7 @@
"or": "أو",
"Ordered List": "",
"Other": "آخر",
"out of": "",
"Output": "",
"OUTPUT": "الإخراج",
"Output format": "تنسيق الإخراج",
@@ -1466,6 +1496,7 @@
"Password": "الباسورد",
"Passwords do not match.": "",
"Paste Large Text as File": "الصق نصًا كبيرًا كملف",
"Paused": "",
"PDF document (.pdf)": "PDF ملف (.pdf)",
"PDF Extract Images (OCR)": "PDF أستخرج الصور (OCR)",
"PDF Loader Mode": "",
@@ -1570,6 +1601,7 @@
"Reason": "",
"Reasoning Effort": "جهد الاستدلال",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "سجل صوت",
"Redirecting you to Open WebUI Community": "OpenWebUI إعادة توجيهك إلى مجتمع ",
@@ -1605,6 +1637,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "إعادة ترتيب النماذج",
"Repeats": "",
"Reply": "",
"Reply in Thread": "الرد داخل سلسلة الرسائل",
"Reply to thread...": "",
@@ -1641,6 +1674,8 @@
"RTL": "من اليمين إلى اليسار",
"Run": "تنفيذ",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "جارٍ التنفيذ",
"Running...": "جارٍ التنفيذ...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1651,12 +1686,15 @@
"Save Chat": "",
"Saved": "تم الحفظ",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "لم يعد حفظ سجلات الدردشة مباشرة في مساحة تخزين متصفحك مدعومًا. يرجى تخصيص بعض الوقت لتنزيل وحذف سجلات الدردشة الخاصة بك عن طريق النقر على الزر أدناه. لا تقلق، يمكنك بسهولة إعادة استيراد سجلات الدردشة الخاصة بك إلى الواجهة الخلفية من خلاله",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "البحث",
"Search a model": "البحث عن موديل",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "قاعدة البحث",
"Search channels and channel messages": "",
"Search Chats": "البحث في الدردشات",
@@ -1726,6 +1764,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "اختر المعرفة",
"Select Method": "",
"Select model": "",
"Select only one model to call": "اختر نموذجًا واحدًا فقط للاستدعاء",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1835,6 +1874,7 @@
"Start of the channel": "بداية القناة",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1885,8 +1925,10 @@
"Talk to Model": "",
"Tap to interrupt": "اضغط للمقاطعة",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "المهام",
"tasks completed": "",
"Tavily API Key": "مفتاح API لـ Tavily",
"Tavily Extract Depth": "",
"Tell us more:": "أخبرنا المزيد:",
@@ -1953,6 +1995,7 @@
"Tika": "Tika",
"Tika Server URL required.": "عنوان خادم Tika مطلوب.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "العنوان",
@@ -1970,6 +2013,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "لاختيار الأدوات هنا، أضفها أولاً إلى مساحة العمل \"الأدوات\".",
"Toast notifications for new updates": "إشعارات منبثقة للتحديثات الجديدة",
"Today": "اليوم",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2108,6 +2152,7 @@
"Waiting for upload...": "",
"Warning": "تحذير",
"Warning:": "تحذير:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "تحذير: تفعيل هذا الخيار سيسمح للمستخدمين برفع كود عشوائي على الخادم.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "تحذير: تنفيذ كود Jupyter يتيح تنفيذ كود عشوائي مما يشكل مخاطر أمنية جسيمة—تابع بحذر شديد.",
"Web": "Web",
@@ -2142,6 +2187,7 @@
"Width": "",
"Wikipedia": "",
"Won": "فاز",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "يعمل جنبًا إلى جنب مع top-k. القيمة الأعلى (مثلاً 0.95) تنتج نصًا أكثر تنوعًا، بينما القيمة الأقل (مثلاً 0.5) تنتج نصًا أكثر تركيزًا وتحفظًا.",
"Workspace": "مساحة العمل",
"Workspace Permissions": "صلاحيات مساحة العمل",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "Bütün çatları arxivləşdirmək istədiyinizə əminsiniz? Bu əməliyyat geri qaytarıla bilməz.",
"Are you sure you want to clear all memories? This action cannot be undone.": "Bütün yaddaşı təmizləmək istədiyinizə əminsiniz? Bu əməliyyat geri qaytarıla bilməz.",
"Are you sure you want to delete \"{{NAME}}\"?": "\"{{NAME}}\" elementini silmək istədiyinizə əminsiniz?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "Bütün çatları silmək istədiyinizə əminsiniz? Bu əməliyyat geri qaytarıla bilməz.",
"Are you sure you want to delete this channel?": "Bu kanalı silmək istədiyinizə əminsiniz?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "Köməkçi",
"Async Embedding Processing": "Asinxron Yerləşdirmə (Embedding) Emalı",
"Attach File From Knowledge": "Bilik bazasından fayl əlavə et",
"Attach Files": "",
"Attach Knowledge": "Bilik əlavə et",
"Attach Notes": "Qeydlər əlavə et",
"Attach Webpage": "Veb səhifə əlavə et",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Baza URL-i",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Baza URL-i tələb olunur.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "Sistem alətlərini yerli funksiya çağırma rejimində avtomatik daxil et (məsələn: vaxt möhürləri, yaddaş, çat tarixçəsi, qeydlər və s.)",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Mövcud siyahı",
"Available models": "Mövcud modellər",
"Available Tools": "Mövcud alətlər",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Məhdudlaşdırılmış cavablar üçün müəyyən tokenlərin stimullaşdırılması və ya cəzalandırılması. Meyillilik (bias) dəyərləri -100 ilə 100 arasında (daxil olmaqla) məhdudlaşdırılacaq. (Standart: yoxdur)",
"Brave": "Brave",
"Brave Search API Key": "Brave Search API Açarı",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "Bilik bazalarına baxın və sorğu göndərin",
"Builtin Tools": "Daxili Alətlər",
"Bullet List": "Markerli Siyahı",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Eyni vaxtda olan sorğular",
"Config": "Konfiqurasiya",
"Config imported successfully": "Konfiqurasiya uğurla idxal edildi",
"Configuration": "",
"Configure": "Konfiqurasiya et",
"Confirm": "Təsdiqlə",
"Confirm Password": "Şifrəni təsdiqlə",
@@ -452,6 +463,7 @@
"Create new secret key": "Yeni gizli açar yarat",
"Create note": "Qeyd yarat",
"Create Note": "Qeyd Yarat",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Aşağıdakı 'plus' düyməsinə klikləyərək ilk qeydinizi yaradın.",
"Created at": "Yaradılma vaxtı",
"Created At": "Yaradılma Tarixi",
@@ -473,6 +485,7 @@
"Data Controls": "Məlumat idarəetmələri",
"Database": "Verilənlər bazası",
"Datalab Marker API": "Datalab Marker API",
"Day": "",
"DD/MM/YYYY": "GG/AA/İİİİ",
"DDGS Backend": "DDGS Backend",
"December": "Dekabr",
@@ -503,6 +516,7 @@
"Delete All": "Hamısını sil",
"Delete All Chats": "Bütün çatları sil",
"Delete all contents inside this folder": "Bu qovluğun daxilindəki bütün məzmunu sil",
"Delete automation?": "",
"Delete Chat": "Çatı sil",
"Delete chat?": "Çat silinsin?",
"Delete File": "Faylı sil",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "Eyni vaxtda olan yerləşdirmə sorğuları",
"Embedding Model": "Yerləşdirmə modeli",
"Embedding Model Engine": "Yerləşdirmə modeli mühərriki",
"Emojis": "",
"Empty message": "Boş mesaj",
"Enable All": "Hamısını aktiv et",
"Enable API Keys": "API açarlarını aktiv et",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "Perplexity axtarış API URL-ini daxil edin",
"Enter Playwright Timeout": "Playwright vaxt aşımını daxil edin",
"Enter Playwright WebSocket URL": "Playwright WebSocket URL-ini daxil edin",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Proksi URL-ini daxil edin (məs. https://istifadəçi:şifrə@host:port)",
"Enter reasoning effort": "Mühakimə səyini (reasoning effort) daxil edin",
"Enter Score": "Bal daxil edin",
@@ -762,6 +778,7 @@
"Enter system prompt here": "Sistem göstərişini bura daxil edin",
"Enter Tavily API Key": "Tavily API açarını daxil edin",
"Enter Tavily Extract Depth": "Tavily çıxarış dərinliyini daxil edin",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "WebUI-nizin ictimai URL-ini daxil edin. Bu URL bildirişlərdəki linkləri yaratmaq üçün istifadə olunacaq.",
"Enter the URL of the function to import": "İdxal ediləcək funksiyanın URL-ini daxil edin",
"Enter the URL to import": "İdxal ediləcək URL-i daxil edin",
@@ -801,6 +818,7 @@
"Error accessing directory": "Kataloqa giriş xətası",
"Error accessing Google Drive: {{error}}": "Google Drive-a giriş xətası: {{error}}",
"Error accessing media devices.": "Media cihazlarına giriş xətası.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Yazılışa başlama xətası.",
"Error unloading model: {{error}}": "Modeli yaddaşdan çıxarma xətası: {{error}}",
"Error uploading file: {{error}}": "Fayl yükləmə xətası: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "Kodu icra et",
"Execute code for analysis": "Analiz üçün kodu icra et",
"Executing **{{NAME}}**...": "**{{NAME}}** icra edilir...",
"Execution Logs": "",
"Expand": "Genişləndir",
"Experimental": "Eksperimental",
"Explain": "İzah et",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "Təklif göstərişini girişə daxil et",
"Install from Github URL": "Github URL-dən quraşdır",
"Instant Auto-Send After Voice Transcription": "Səs yazıldıqdan sonra anında avtomatik göndər",
"Instructions": "",
"Integration": "İnteqrasiya",
"Integrations": "İnteqrasiyalar",
"Interface": "İnterfeys",
@@ -1140,6 +1160,7 @@
"Last 90 days": "Son 90 gün",
"Last Active": "Son fəallıq",
"Last Modified": "Son dəyişiklik",
"Last ran": "",
"Last reply": "Son cavab",
"LDAP": "LDAP",
"LDAP server updated": "LDAP serveri yeniləndi",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' modeli uğurla yükləndi.",
"Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' modeli artıq yükləmə növbəsindədir.",
"Model {{modelId}} not found": "{{modelId}} modeli tapılmadı",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "{{modelName}} modeli görüntünü tanıma (vision) qabiliyyətinə malik deyil",
"Model {{name}} is now {{status}}": "{{name}} modeli indi {{status}} statusundadır",
"Model {{name}} is now hidden": "{{name}} modeli artıq gizlidir",
@@ -1295,8 +1317,11 @@
"Name": "Ad",
"Name and ID are required, please fill them out": "Ad və ID tələb olunur, zəhmət olmasa doldurun",
"Name your knowledge base": "Bilik bazanızı adlandırın",
"Name, prompt, and model are required": "",
"Native": "Yerli (Native)",
"Never": "",
"New": "Yeni",
"New Automation": "",
"New Button": "Yeni Düymə",
"New Chat": "Yeni Çat",
"New File": "Yeni Fayl",
@@ -1315,9 +1340,11 @@
"New Webhook": "Yeni Webhook",
"new-channel": "yeni-kanal",
"Next message": "Növbəti mesaj",
"Next run": "",
"No access grants. Private to you.": "Giriş icazəsi yoxdur. Sizin üçün özəldir.",
"No activity data": "Fəaliyyət məlumatı yoxdur",
"No authentication": "Autentifikasiya yoxdur",
"No automations found": "",
"No chats found": "Heç bir çat tapılmadı",
"No chats found for this user.": "Bu istifadəçi üçün çat tapılmadı.",
"No chats found.": "Çat tapılmadı.",
@@ -1328,6 +1355,7 @@
"No data": "Məlumat yoxdur",
"No data found": "Məlumat tapılmadı",
"No distance available": "Məsafə məlumatı yoxdur",
"No execution logs available yet": "",
"No expiration can pose security risks.": "Müddətin bitməməsi təhlükəsizlik riski yarada bilər.",
"No feedback found": "Rəy tapılmadı",
"No file selected": "Fayl seçilməyib",
@@ -1374,6 +1402,7 @@
"Not factually correct": "Faktiki olaraq doğru deyil",
"Not helpful": "Faydalı deyil",
"Not Registered": "Qeydiyyatdan keçməyib",
"Not scheduled": "",
"Note": "Qeyd",
"Note deleted successfully": "Qeyd uğurla silindi",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Qeyd: Əgər minimum bal təyin etsəniz, axtarış yalnız balı həmin minimuma bərabər və ya ondan böyük olan sənədləri qaytaracaq.",
@@ -1447,6 +1476,7 @@
"or": "və ya",
"Ordered List": "Sıralanmış siyahı",
"Other": "Digər",
"out of": "",
"Output": "Çıxış",
"OUTPUT": "ÇIXIŞ",
"Output format": "Çıxış formatı",
@@ -1462,6 +1492,7 @@
"Password": "Şifrə",
"Passwords do not match.": "Şifrələr uyğun gəlmir.",
"Paste Large Text as File": "Böyük mətni fayl kimi yapışdır",
"Paused": "",
"PDF document (.pdf)": "PDF sənədi (.pdf)",
"PDF Extract Images (OCR)": "PDF-dən şəkillərin çıxarılması (OCR)",
"PDF Loader Mode": "PDF yükləyici rejimi",
@@ -1566,6 +1597,7 @@
"Reason": "Səbəb",
"Reasoning Effort": "Mühakimə səyi",
"Reasoning Tags": "Mühakimə etiketləri",
"Recently Used": "",
"Record": "Yaz (səs)",
"Record voice": "Səsi yaz",
"Redirecting you to Open WebUI Community": "Open WebUI İcmasına yönləndirilirsiniz",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "Önizləmələrdə Markdown-u emal et",
"Reorder Models": "Modelləri yenidən sırala",
"Repeats": "",
"Reply": "Cavabla",
"Reply in Thread": "Mövzu daxilində cavabla",
"Reply to thread...": "Mövzuya cavab yaz...",
@@ -1633,6 +1666,8 @@
"RTL": "Sağdan sola (RTL)",
"Run": "İcra et",
"Run All": "Hamısını icra et",
"Run now": "",
"Run Now": "",
"Running": "İcra edilir",
"Running...": "İcra edilir...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Emalı sürətləndirmək üçün yerləşdirmə (embedding) tapşırıqlarını eyni vaxtda icra edir. Əgər sorğu limiti problemi yaranarsa, bunu söndürün.",
@@ -1643,12 +1678,15 @@
"Save Chat": "Çatı saxla",
"Saved": "Yadda saxlanıldı",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Çat tarixçəsinin birbaşa brauzer yaddaşına saxlanılması artıq dəstəklənmir. Zəhmət olmasa, aşağıdakı düyməyə klikləyərək çat jurnalını yükləyin və silin. Narahat olmayın, çat jurnalınızı arxa plana (backend) asanlıqla yenidən idxal edə bilərsiniz:",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Şaxə dəyişdikdə sürüşdür",
"Search": "Axtar",
"Search a model": "Model axtar",
"Search all emojis": "Bütün emojilərdə axtar",
"Search and manage user memories": "İstifadəçi yaddaşını axtarın və idarə edin",
"Search and view user chat history": "İstifadəçi çat tarixçəsini axtarın və baxın",
"Search Automations": "",
"Search Base": "Axtarış bazası",
"Search channels and channel messages": "Kanalları və kanal mesajlarını axtar",
"Search Chats": "Çatları axtar",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "TTS sorğuları üçün mesaj mətninin necə bölünəcəyini seçin",
"Select Knowledge": "Bilik seçin",
"Select Method": "Üsul seçin",
"Select model": "",
"Select only one model to call": "Çağırmaq üçün yalnız bir model seçin",
"Select view": "Görünüşü seçin",
"Selected model: {{modelName}}": "Seçilmiş model: {{modelName}}",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Kanalın başlanğıcı",
"Start Tag": "Start Tag",
"Starting kernel...": "Starting kernel...",
"State": "",
"Status": "Status",
"Status cleared successfully": "Status uğurla təmizləndi",
"Status updated successfully": "Status uğurla yeniləndi",
@@ -1877,8 +1917,10 @@
"Talk to Model": "Modellə danış",
"Tap to interrupt": "Durdurmaq üçün toxun",
"Task List": "Tapşırıq siyahısı",
"Task Management": "",
"Task Model": "Tapşırıq modeli",
"Tasks": "Tapşırıqlar",
"tasks completed": "",
"Tavily API Key": "Tavily API key",
"Tavily Extract Depth": "Tavily çıxarış dərinliyi",
"Tell us more:": "Bizə daha çox məlumat verin:",
@@ -1945,6 +1987,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Tika Server URL-i tələb olunur.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "Vaxt və Hesablama",
"Timeout": "Vaxt aşımı",
"Title": "Başlıq",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Bura alət dəstləri seçmək üçün əvvəlcə onları \"Alətlər\" (Tools) iş sahəsinə əlavə edin.",
"Toast notifications for new updates": "Yeni yeniləmələr üçün bildirişlər",
"Today": "Bu gün",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "Bu gün saat {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "{{COUNT}} mənbəni göstər/gizlə",
"Toggle 1 source": "1 mənbəni göstər/gizlə",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "Yüklənmə gözlənilir...",
"Warning": "Xəbərdarlıq",
"Warning:": "Xəbərdarlıq:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Xəbərdarlıq: Bunun aktiv edilməsi istifadəçilərə serverə ixtiyari kod yükləməyə icazə verəcək.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Xəbərdarlıq: Jupyter icrası ixtiyari kodun işlədilməsinə imkan verir və ciddi təhlükəsizlik riskləri yaradır — son dərəcə ehtiyatlı olun.",
"Web": "Veb",
@@ -2134,6 +2179,7 @@
"Width": "En",
"Wikipedia": "Vikipediya",
"Won": "Qazandı",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Top-k ilə birlikdə işləyir. Daha yüksək dəyər (məs. 0.95) daha müxtəlif mətnlərə, daha aşağı dəyər isə (məs. 0.5) daha fokuslanmış və mühafizəkar mətnlərin yaranmasına səbəb olacaq.",
"Workspace": "İş sahəsi",
"Workspace Permissions": "İş sahəsi icazələri",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "Сигурни ли сте, че исткате да изчистите всички спомени? Това е необратимо.",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Сигурни ли сте, че искате да изтриете този канал?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "Асистент",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Базов URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Базов URL е задължителен.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Наличен списък",
"Available models": "",
"Available Tools": "Налични инструменти",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "API ключ за Brave Search",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Едновременни заявки",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "Конфигуриране",
"Confirm": "Потвърди",
"Confirm Password": "Потвърди Парола",
@@ -452,6 +463,7 @@
"Create new secret key": "Създаване на нов секретен ключ",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Създадено на",
"Created At": "Създадено на",
@@ -473,6 +485,7 @@
"Data Controls": "",
"Database": "База данни",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "Декември",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "Изтриване на всички чатове",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Изтриване на Чат",
"Delete chat?": "Изтриване на чата?",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Модел за вграждане",
"Embedding Model Engine": "Двигател на модела за вграждане",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Въведете URL адрес на прокси (напр. https://user:password@host:port)",
"Enter reasoning effort": "Въведете усилие за разсъждение",
"Enter Score": "Въведете оценка",
@@ -762,6 +778,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "Въведете API ключ за Tavily",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Въведете публичния URL адрес на вашия WebUI. Този URL адрес ще бъде използван за генериране на връзки в известията.",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Грешка при достъп до Google Drive: {{error}}",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "Грешка при качване на файла: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "Изпълнете кода за анализ",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "Експериментално",
"Explain": "",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Инсталиране от URL адреса на Github",
"Instant Auto-Send After Voice Transcription": "Незабавно автоматично изпращане след гласова транскрипция",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "Интерфейс",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "Последни активни",
"Last Modified": "Последно модифицирано",
"Last ran": "",
"Last reply": "Последен отговор",
"LDAP": "LDAP",
"LDAP server updated": "LDAP сървърът е актуализиран",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Моделът '{{modelName}}' беше успешно свален.",
"Model '{{modelTag}}' is already in queue for downloading.": "Моделът '{{modelTag}}' е вече в очакване за сваляне.",
"Model {{modelId}} not found": "Моделът {{modelId}} не е намерен",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Моделът {{modelName}} не поддържа визуални възможности",
"Model {{name}} is now {{status}}": "Моделът {{name}} сега е {{status}}",
"Model {{name}} is now hidden": "",
@@ -1295,8 +1317,11 @@
"Name": "Име",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Именувайте вашата база от знания",
"Name, prompt, and model are required": "",
"Native": "Нативен",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Нов чат",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "нов-канал",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "Няма налично разстояние",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Не е избран файл",
@@ -1374,6 +1402,7 @@
"Not factually correct": "Не е фактологически правилно",
"Not helpful": "Не е полезно",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Забележка: Ако зададете минимален резултат, търсенето ще върне само документи с резултат, по-голям или равен на минималния резултат.",
@@ -1447,6 +1476,7 @@
"or": "или",
"Ordered List": "",
"Other": "Друго",
"out of": "",
"Output": "",
"OUTPUT": "ИЗХОД",
"Output format": "Изходен формат",
@@ -1462,6 +1492,7 @@
"Password": "Парола",
"Passwords do not match.": "",
"Paste Large Text as File": "Поставете голям текст като файл",
"Paused": "",
"PDF document (.pdf)": "PDF документ (.pdf)",
"PDF Extract Images (OCR)": "Извличане на изображения от PDF (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "Усилие за разсъждение",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "Запиши",
"Record voice": "Записване на глас",
"Redirecting you to Open WebUI Community": "Пренасочване към OpenWebUI общността",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Преорганизиране на моделите",
"Repeats": "",
"Reply": "",
"Reply in Thread": "Отговори в тред",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "Изпълни",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Изпълнява се",
"Running...": "Изпълнява се...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "",
"Saved": "Запазено",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Запазването на чат логове директно в хранилището на вашия браузър вече не се поддържа. Моля, отделете малко време, за да изтеглите и изтриете чат логовете си, като щракнете върху бутона по-долу. Не се притеснявайте, можете лесно да импортирате отново чат логовете си в бекенда чрез",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Търси",
"Search a model": "Търси модел",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "База за търсене",
"Search channels and channel messages": "",
"Search Chats": "Търсене на чатове",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Изберете знание",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Изберете само един модел за извикване",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Начало на канала",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "Докоснете за прекъсване",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "Задачи",
"tasks completed": "",
"Tavily API Key": "Tavily API Ключ",
"Tavily Extract Depth": "",
"Tell us more:": "Повече информация:",
@@ -1945,6 +1987,7 @@
"Tika": "Тика",
"Tika Server URL required.": "Изисква се URL адрес на Тика сървъра.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Заглавие",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "За да изберете инструменти тук, първо ги добавете към работното пространство \"Инструменти\".",
"Toast notifications for new updates": "Изскачащи известия за нови актуализации",
"Today": "Днес",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "Предупреждение",
"Warning:": "Предупреждение:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Предупреждение: Активирането на това ще позволи на потребителите да качват произволен код на сървъра.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Предупреждение: Изпълнението на Jupyter позволява произволно изпълнение на код, което представлява сериозни рискове за сигурността-продължете с изключително внимание.",
"Web": "Уеб",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "Спечелено",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Работно пространство",
"Workspace Permissions": "Разрешения за работното пространство",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 বেজ ইউআরএল",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 বেজ ইউআরএল আবশ্যক",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "",
"Available models": "",
"Available Tools": "",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "সাহসী অনুসন্ধান API কী",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "সমকালীন অনুরোধ",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "",
"Confirm": "",
"Confirm Password": "পাসওয়ার্ড নিশ্চিত করুন",
@@ -452,6 +463,7 @@
"Create new secret key": "একটি নতুন সিক্রেট কী তৈরি করুন",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "নির্মানকাল",
"Created At": "নির্মানকাল",
@@ -473,6 +485,7 @@
"Data Controls": "",
"Database": "ডেটাবেজ",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "ডেসেম্বর",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "সব চ্যাট মুছে ফেলুন",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "চ্যাট মুছে ফেলুন",
"Delete chat?": "",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "ইমেজ ইমেবডিং মডেল",
"Embedding Model Engine": "ইমেজ ইমেবডিং মডেল ইঞ্জিন",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "স্কোর দিন",
@@ -762,6 +778,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "পরিক্ষামূলক",
"Explain": "",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Github URL থেকে ইনস্টল করুন",
"Instant Auto-Send After Voice Transcription": "",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "ইন্টারফেস",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "সর্বশেষ সক্রিয়",
"Last Modified": "",
"Last ran": "",
"Last reply": "",
"LDAP": "",
"LDAP server updated": "",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' মডেল সফলভাবে ডাউনলোড হয়েছে।",
"Model '{{modelTag}}' is already in queue for downloading.": "{{modelTag}} ডাউনলোডের জন্য আগে থেকেই অপেক্ষমান আছে।",
"Model {{modelId}} not found": "{{modelId}} মডেল পাওয়া যায়নি",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "মডেল {{modelName}} দৃষ্টি সক্ষম নয়",
"Model {{name}} is now {{status}}": "মডেল {{name}} এখন {{status}}",
"Model {{name}} is now hidden": "",
@@ -1295,8 +1317,11 @@
"Name": "নাম",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "নতুন চ্যাট",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "",
@@ -1374,6 +1402,7 @@
"Not factually correct": "তথ্যগত দিক থেকে সঠিক নয়",
"Not helpful": "",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "দ্রষ্টব্য: আপনি যদি ন্যূনতম স্কোর সেট করেন তবে অনুসন্ধানটি কেবলমাত্র ন্যূনতম স্কোরের চেয়ে বেশি বা সমান স্কোর সহ নথিগুলি ফেরত দেবে।",
@@ -1447,6 +1476,7 @@
"or": "অথবা",
"Ordered List": "",
"Other": "অন্যান্য",
"out of": "",
"Output": "",
"OUTPUT": "",
"Output format": "",
@@ -1462,6 +1492,7 @@
"Password": "পাসওয়ার্ড",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Paused": "",
"PDF document (.pdf)": "PDF ডকুমেন্ট (.pdf)",
"PDF Extract Images (OCR)": "পিডিএফ এর ছবি থেকে লেখা বের করুন (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "ভয়েস রেকর্ড করুন",
"Redirecting you to Open WebUI Community": "আপনাকে OpenWebUI কমিউনিটিতে পাঠানো হচ্ছে",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "",
"Running...": "চলমান...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "",
"Saved": "",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "মাধ্যমে",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "অনুসন্ধান",
"Search a model": "মডেল অনুসন্ধান করুন",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "",
"Search channels and channel messages": "",
"Search Chats": "চ্যাট অনুসন্ধান করুন",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "চ্যানেলের শুরু",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "",
"Tavily Extract Depth": "",
"Tell us more:": "আরও বলুন:",
@@ -1945,6 +1987,7 @@
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "শিরোনাম",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "",
"Toast notifications for new updates": "",
"Today": "আজ",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "সতর্কীকরণ",
"Warning:": "সতর্কতা:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "ওয়েব",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "ওয়ার্কস্পেস",
"Workspace Permissions": "",
@@ -181,6 +181,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "དྲན་ཤེས་ཡོངས་རྫོགས་བསུབ་འདོད་ཡོད་དམ། བྱ་སྤྱོད་འདི་ཕྱིར་ལྡོག་བྱེད་མི་ཐུབ།",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "ཁྱེད་ཀྱིས་བགྲོ་གླེང་འདི་བསུབ་འདོད་ངེས་ཡིན་ནམ།",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -197,6 +198,7 @@
"Assistant": "ལག་རོགས་པ།",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -219,6 +221,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 གཞི་རྩའི་ URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 གཞི་རྩའི་ URL ངེས་པར་དུ་དགོས།",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "ཡོད་པའི་ཐོ་གཞུང་།",
"Available models": "",
"Available Tools": "",
@@ -249,6 +258,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "ཚད་བཀག་ལན་གྱི་ཆེད་དུ་ཊོཀ་ཀེན་ངེས་ཅན་ལ་ཤུགས་སྣོན་ནམ་ཉེས་ཆད་གཏོང་བ། ཕྱོགས་ཞེན་གྱི་རིན་ཐང་ -100 ནས་ 100 བར་བཙིར་ངེས། (ཚུད་པ།) (སྔོན་སྒྲིག་མེད།)",
"Brave": "",
"Brave Search API Key": "Brave Search API ལྡེ་མིག",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -382,6 +392,7 @@
"Concurrent Requests": "མཉམ་ལས་རེ་ཞུ།",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "སྒྲིག་འགོད།",
"Confirm": "གཏན་འཁེལ།",
"Confirm Password": "གསང་གྲངས་གཏན་འཁེལ།",
@@ -451,6 +462,7 @@
"Create new secret key": "གསང་བའི་ལྡེ་མིག་གསར་པ་བཟོ་བ།",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "གསར་བཟོ་བྱེད་དུས།",
"Created At": "གསར་བཟོ་བྱེད་དུས།",
@@ -472,6 +484,7 @@
"Data Controls": "",
"Database": "གནས་ཚུལ་མཛོད།",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "ཟླ་བ་བཅུ་གཉིས་པ།",
@@ -502,6 +515,7 @@
"Delete All": "",
"Delete All Chats": "ཁ་བརྡ་ཡོངས་རྫོགས་བསུབ་པ།",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "ཁ་བརྡ་བསུབ་པ།",
"Delete chat?": "ཁ་བརྡ་བསུབ་པ།?",
"Delete File": "",
@@ -646,6 +660,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "ཚུད་འཇུག་དཔེ་དབྱིབས།",
"Embedding Model Engine": "ཚུད་འཇུག་དཔེ་དབྱིབས་འཕྲུལ་འཁོར།",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -737,6 +752,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Proxy URL འཇུག་པ། (དཔེར་ན། https://user:password@host:port)",
"Enter reasoning effort": "རྒྱུ་མཚན་འདྲེན་པའི་འབད་བརྩོན་འཇུག་པ།",
"Enter Score": "སྐར་མ་འཇུག་པ།",
@@ -761,6 +777,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "Tavily API ལྡེ་མིག་འཇུག་པ།",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "ཁྱེད་ཀྱི་ WebUI ཡི་སྤྱི་སྤྱོད་ URL འཇུག་པ། URL འདི་བརྡ་ཁྱབ་ནང་སྦྲེལ་ཐག་བཟོ་བར་བེད་སྤྱོད་བྱེད་ངེས།",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -800,6 +817,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Google Drive འཛུལ་སྤྱོད་སྐབས་ནོར་འཁྲུལ།: {{error}}",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "ཡིག་ཆ་སྤར་སྐབས་ནོར་འཁྲུལ།: {{error}}",
@@ -817,6 +835,7 @@
"Execute code": "",
"Execute code for analysis": "དབྱེ་ཞིབ་ཆེད་དུ་ཀོཌ་ལག་བསྟར་བྱེད་པ།",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "རྒྱ་བསྐྱེད་པ།",
"Experimental": "ཚོད་ལྟའི་རང་བཞིན།",
"Explain": "འགྲེལ་བཤད།",
@@ -1080,6 +1099,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Github URL ནས་སྒྲིག་སྦྱོར་བྱེད་པ།",
"Instant Auto-Send After Voice Transcription": "སྐད་ཆ་ཡིག་འབེབས་བྱས་རྗེས་ལམ་སང་རང་འགུལ་གཏོང་བ།",
"Instructions": "",
"Integration": "མཉམ་འདྲེས།",
"Integrations": "",
"Interface": "ངོས་འཛིན།",
@@ -1139,6 +1159,7 @@
"Last 90 days": "",
"Last Active": "མཐའ་མའི་ལས་བྱེད།",
"Last Modified": "མཐའ་མའི་བཟོ་བཅོས།",
"Last ran": "",
"Last reply": "ལན་མཐའ་མ།",
"LDAP": "LDAP",
"LDAP server updated": "LDAP སར་བར་གསར་སྒྱུར་བྱས།",
@@ -1245,6 +1266,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "དཔེ་དབྱིབས། '{{modelName}}' ལེགས་པར་ཕབ་ལེན་བྱས་ཟིན།",
"Model '{{modelTag}}' is already in queue for downloading.": "དཔེ་དབྱིབས། '{{modelTag}}' ཕབ་ལེན་གྱི་སྒུག་ཐོ་ནང་ཡོད་ཟིན།",
"Model {{modelId}} not found": "དཔེ་དབྱིབས། {{modelId}} མ་རྙེད།",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "དཔེ་དབྱིབས། {{modelName}} ལ་མཐོང་ནུས་མེད།",
"Model {{name}} is now {{status}}": "དཔེ་དབྱིབས། {{name}} ད་ལྟ་ {{status}} ཡིན།",
"Model {{name}} is now hidden": "དཔེ་དབྱིབས། {{name}} ད་ལྟ་སྦས་ཡོད།",
@@ -1294,8 +1316,11 @@
"Name": "མིང་།",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "ཁྱེད་ཀྱི་ཤེས་བྱའི་རྟེན་གཞི་ལ་མིང་ཐོགས།",
"Name, prompt, and model are required": "",
"Native": "ས་སྐྱེས།",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "ཁ་བརྡ་གསར་པ།",
"New File": "",
@@ -1314,9 +1339,11 @@
"New Webhook": "",
"new-channel": "བགྲོ་གླེང་གསར་པ།",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1327,6 +1354,7 @@
"No data": "",
"No data found": "",
"No distance available": "ཐག་རིང་ཚད་མེད།",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "ཡིག་ཆ་གདམ་ག་མ་བྱས།",
@@ -1373,6 +1401,7 @@
"Not factually correct": "དོན་དངོས་དང་མི་མཐུན།",
"Not helpful": "ཕན་ཐོགས་མེད།",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "དོ་སྣང་།: གལ་ཏེ་ཁྱེད་ཀྱིས་སྐར་མ་ཉུང་ཤོས་ཤིག་བཀོད་སྒྲིག་བྱས་ན། འཚོལ་བཤེར་གྱིས་སྐར་མ་ཉུང་ཤོས་དེ་དང་མཉམ་པའམ་དེ་ལས་ཆེ་བའི་ཡིག་ཆ་ཁོ་ན་ཕྱིར་སློག་བྱེད་ངེས།",
@@ -1446,6 +1475,7 @@
"or": "ཡང་ན།",
"Ordered List": "",
"Other": "གཞན།",
"out of": "",
"Output": "",
"OUTPUT": "ཐོན་འབྲས།",
"Output format": "ཐོན་འབྲས་ཀྱི་བཀོད་པ།",
@@ -1461,6 +1491,7 @@
"Password": "གསང་གྲངས།",
"Passwords do not match.": "",
"Paste Large Text as File": "ཡིག་རྐྱང་ཆེན་པོ་ཡིག་ཆ་ལྟར་སྦྱོར་བ།",
"Paused": "",
"PDF document (.pdf)": "PDF ཡིག་ཆ། (.pdf)",
"PDF Extract Images (OCR)": "PDF པར་འདོན་སྤེལ། (OCR)",
"PDF Loader Mode": "",
@@ -1565,6 +1596,7 @@
"Reason": "",
"Reasoning Effort": "རྒྱུ་མཚན་འདྲེན་པའི་འབད་བརྩོན།",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "སྐད་སྒྲ་ཕབ་པ།",
"Redirecting you to Open WebUI Community": "ཁྱེད་ Open WebUI སྤྱི་ཚོགས་ལ་ཁ་ཕྱོགས་སྒྱུར་བཞིན་པ།",
@@ -1600,6 +1632,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "དཔེ་དབྱིབས་བསྐྱར་སྒྲིག",
"Repeats": "",
"Reply": "",
"Reply in Thread": "བརྗོད་གཞིའི་ནང་ལན་འདེབས།",
"Reply to thread...": "",
@@ -1631,6 +1664,8 @@
"RTL": "RTL",
"Run": "ལག་བསྟར།",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "ལག་བསྟར་བྱེད་བཞིན་པ།",
"Running...": "ལག་བསྟར་བྱེད་བཞིན་པ།...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1641,12 +1676,15 @@
"Save Chat": "",
"Saved": "ཉར་ཚགས་བྱས།",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "ཁ་བརྡའི་ཟིན་ཐོ་ཐད་ཀར་ཁྱེད་ཀྱི་བརྡ་འཚོལ་ཆས་ཀྱི་གསོག་ཆས་སུ་ཉར་ཚགས་བྱེད་པར་ད་ནས་བཟུང་རྒྱབ་སྐྱོར་མེད། གཤམ་གྱི་མཐེབ་གནོན་མནན་ནས་ཁྱེད་ཀྱི་ཁ་བརྡའི་ཟིན་ཐོ་ཕབ་ལེན་དང་བསུབ་པར་དུས་ཚོད་ཅུང་ཟད་བླང་རོགས། སེམས་ཁྲལ་མེད། ཁྱེད་ཀྱིས་སྟབས་བདེ་པོར་ཁྱེད་ཀྱི་ཁ་བརྡའི་ཟིན་ཐོ་རྒྱབ་སྣེ་ལ་བསྐྱར་དུ་ནང་འདྲེན་བྱེད་ཐུབ།",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "འཚོལ་བཤེར།",
"Search a model": "དཔེ་དབྱིབས་ཤིག་འཚོལ་བ།",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "འཚོལ་བཤེར་གཞི་རྩ།",
"Search channels and channel messages": "",
"Search Chats": "ཁ་བརྡ་འཚོལ་བཤེར།",
@@ -1716,6 +1754,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "ཤེས་བྱ་གདམ་པ།",
"Select Method": "",
"Select model": "",
"Select only one model to call": "འབོད་པར་དཔེ་དབྱིབས་གཅིག་ཁོ་ན་གདམ་པ།",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1825,6 +1864,7 @@
"Start of the channel": "རྒྱས་ལམ་འགོ་རིམ་",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1875,8 +1915,10 @@
"Talk to Model": "",
"Tap to interrupt": "བར་ཆད་བྱེད་པར་མནན་པ།",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "ལས་འགན།",
"tasks completed": "",
"Tavily API Key": "Tavily API ལྡེ་མིག",
"Tavily Extract Depth": "",
"Tell us more:": "ང་ཚོ་ལ་མང་ཙམ་ཤོད།:",
@@ -1943,6 +1985,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Tika Server URL དགོས་ངེས།",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "ཁ་བྱང་།",
@@ -1960,6 +2003,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "ལག་ཆའི་ཚོགས་སྡེ་འདིར་གདམ་ག་བྱེད་པར། ཐོག་མར་དེ་དག་ \"ལག་ཆའི་\" ལས་ཡུལ་དུ་སྣོན་པ།",
"Toast notifications for new updates": "གསར་སྒྱུར་གསར་པའི་ཆེད་དུ་ Toast བརྡ་ཁྱབ།",
"Today": "དེ་རིང་།",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2098,6 +2142,7 @@
"Waiting for upload...": "",
"Warning": "ཉེན་བརྡ།",
"Warning:": "ཉེན་བརྡ།:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "ཉེན་བརྡ།: འདི་སྒུལ་བསྐྱོད་བྱས་ན་བེད་སྤྱོད་མཁན་ཚོས་སར་བར་སྟེང་གང་འདོད་ཀྱི་ཀོཌ་སྤར་བར་གནང་བ་སྤྲོད་ངེས།",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "ཉེན་བརྡ།: Jupyter ལག་བསྟར་གྱིས་གང་འདོད་ཀྱི་ཀོཌ་ལག་བསྟར་སྒུལ་བསྐྱོད་བྱས་ནས། བདེ་འཇགས་ཀྱི་ཉེན་ཁ་ཚབས་ཆེན་བཟོ་གི་ཡོད།—ཧ་ཅང་གཟབ་ནན་གྱིས་སྔོན་སྐྱོད་བྱེད་རོགས།",
"Web": "དྲ་བ།",
@@ -2132,6 +2177,7 @@
"Width": "",
"Wikipedia": "",
"Won": "ཐོབ།",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "top-k དང་མཉམ་ལས་བྱེད། རིན་ཐང་མཐོ་བ་ (དཔེར་ན། 0.95) ཡིས་ཡིག་རྐྱང་སྣ་ཚོགས་ཆེ་བ་ཡོང་ངེས། དེ་བཞིན་དུ་རིན་ཐང་དམའ་བ་ (དཔེར་ན། 0.5) ཡིས་ཡིག་རྐྱང་དམིགས་ཚད་དང་སྲུང་འཛིན་ཆེ་བ་བཟོ་ངེས།",
"Workspace": "ལས་ཡུལ།",
"Workspace Permissions": "ལས་ཡུལ་གྱི་དབང་ཚད།",
@@ -183,6 +183,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -199,6 +200,7 @@
"Assistant": "Asistent",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "Prikazi znanje",
"Attach Notes": "Prikazi zapise",
"Attach Webpage": "",
@@ -221,6 +223,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 osnovni URL",
"AUTOMATIC1111 Base URL is required.": "Potreban je AUTOMATIC1111 osnovni URL.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "",
"Available models": "",
"Available Tools": "",
@@ -251,6 +260,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "Brave tražilica - API ključ",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -384,6 +394,7 @@
"Concurrent Requests": "Istodobni zahtjevi",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "Promijeni",
"Confirm": "Potvrdi",
"Confirm Password": "Potvrdite lozinku",
@@ -453,6 +464,7 @@
"Create new secret key": "Stvori novi tajni ključ",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Stvoreno",
"Created At": "Stvoreno",
@@ -474,6 +486,7 @@
"Data Controls": "",
"Database": "Baza podataka",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "Decembar",
@@ -504,6 +517,7 @@
"Delete All": "",
"Delete All Chats": "Izbriši sve razgovore",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Izbriši razgovor",
"Delete chat?": "",
"Delete File": "",
@@ -648,6 +662,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Embedding model",
"Embedding Model Engine": "Embedding model pogon",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -739,6 +754,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "Unesite ocjenu",
@@ -763,6 +779,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -802,6 +819,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -819,6 +837,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "Eksperimentalno",
"Explain": "",
@@ -1082,6 +1101,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Instaliraj s Github URL-a",
"Instant Auto-Send After Voice Transcription": "Trenutačno automatsko slanje nakon glasovne transkripcije",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "Sučelje",
@@ -1141,6 +1161,7 @@
"Last 90 days": "",
"Last Active": "Zadnja aktivnost",
"Last Modified": "",
"Last ran": "",
"Last reply": "",
"LDAP": "",
"LDAP server updated": "",
@@ -1247,6 +1268,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' je uspješno preuzet.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je već u redu za preuzimanje.",
"Model {{modelId}} not found": "Model {{modelId}} nije pronađen",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} ne čita vizualne impute",
"Model {{name}} is now {{status}}": "Model {{name}} sada je {{status}}",
"Model {{name}} is now hidden": "",
@@ -1296,8 +1318,11 @@
"Name": "Ime",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Novi razgovor",
"New File": "",
@@ -1316,9 +1341,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1329,6 +1356,7 @@
"No data": "",
"No data found": "",
"No distance available": "",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "",
@@ -1375,6 +1403,7 @@
"Not factually correct": "Nije činjenično točno",
"Not helpful": "",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Napomena: Ako postavite minimalnu ocjenu, pretraga će vratiti samo dokumente s ocjenom većom ili jednakom minimalnoj ocjeni.",
@@ -1448,6 +1477,7 @@
"or": "ili",
"Ordered List": "",
"Other": "Ostalo",
"out of": "",
"Output": "",
"OUTPUT": "",
"Output format": "",
@@ -1463,6 +1493,7 @@
"Password": "Lozinka",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Paused": "",
"PDF document (.pdf)": "PDF dokument (.pdf)",
"PDF Extract Images (OCR)": "PDF izdvajanje slika (OCR)",
"PDF Loader Mode": "",
@@ -1567,6 +1598,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "Snimanje glasa",
"Redirecting you to Open WebUI Community": "Preusmjeravanje na OpenWebUI zajednicu",
@@ -1602,6 +1634,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1635,6 +1668,8 @@
"RTL": "RTL",
"Run": "",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Pokrenuto",
"Running...": "Pokrenuto...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1645,12 +1680,15 @@
"Save Chat": "",
"Saved": "",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Spremanje zapisnika razgovora izravno u pohranu vašeg preglednika više nije podržano. Molimo vas da odvojite trenutak za preuzimanje i brisanje zapisnika razgovora klikom na gumb ispod. Ne brinite, možete lako ponovno uvesti zapisnike razgovora u backend putem",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Pretraga",
"Search a model": "Pretraži model",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "",
"Search channels and channel messages": "",
"Search Chats": "Pretraži razgovore",
@@ -1720,6 +1758,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Odaberite samo jedan model za poziv",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1829,6 +1868,7 @@
"Start of the channel": "Početak kanala",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1879,8 +1919,10 @@
"Talk to Model": "",
"Tap to interrupt": "",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "",
"Tavily Extract Depth": "",
"Tell us more:": "Recite nam više:",
@@ -1947,6 +1989,7 @@
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Naslov",
@@ -1964,6 +2007,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "",
"Toast notifications for new updates": "",
"Today": "Danas",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2102,6 +2146,7 @@
"Waiting for upload...": "",
"Warning": "Upozorenje",
"Warning:": "Upozorenje:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "Web",
@@ -2136,6 +2181,7 @@
"Width": "",
"Wikipedia": "",
"Won": "",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Radna ploča",
"Workspace Permissions": "",
@@ -183,6 +183,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "Estàs segur que vols arxivar tots els xats? Aquesta acció no es pot desfer.",
"Are you sure you want to clear all memories? This action cannot be undone.": "Estàs segur que vols netejar totes les memòries? Aquesta acció no es pot desfer.",
"Are you sure you want to delete \"{{NAME}}\"?": "Estàs segur que vols eliminar \"{{NAME}}\"?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "Estàs segur que vols suprimir tots els xats? Aquesta acció no es pot desfer.",
"Are you sure you want to delete this channel?": "Estàs segur que vols eliminar aquest canal?",
"Are you sure you want to delete this connection? This action cannot be undone.": "Estàs segur que vols suprimir aquesta connexió? Aquesta acció no es pot desfer.",
@@ -199,6 +200,7 @@
"Assistant": "Assistent",
"Async Embedding Processing": "Procés d'incrustat asíncron",
"Attach File From Knowledge": "Adjuntar arxiu del coneixement",
"Attach Files": "",
"Attach Knowledge": "Adjuntar coneixement",
"Attach Notes": "Adjuntar notes",
"Attach Webpage": "Adjuntar pàgina web",
@@ -221,6 +223,13 @@
"AUTOMATIC1111 Base URL": "URL Base d'AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "Es requereix la URL Base d'AUTOMATIC1111.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "Injecta automàticament les eines del sistema en el mode de crida de funcions natives (per exemple, marques de temps, memòria, historial de xat, notes, etc.)",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Llista de disponibles",
"Available models": "Models disponibles",
"Available Tools": "Eines disponibles",
@@ -251,6 +260,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Potenciar o penalitzar tokens específics per a respostes limitades. Els valors de biaix es fixaran entre -100 i 100 (inclosos). (Per defecte: cap)",
"Brave": "Brave",
"Brave Search API Key": "Clau API de Brave Search",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "Cerca i fes preguntes a una base de coneixement",
"Builtin Tools": "Eines integrades",
"Bullet List": "Llista indexada",
@@ -384,6 +394,7 @@
"Concurrent Requests": "Peticions simultànies",
"Config": "Configuració",
"Config imported successfully": "Configuració importada correctament",
"Configuration": "",
"Configure": "Configurar",
"Confirm": "Confirmar",
"Confirm Password": "Confirmar la contrasenya",
@@ -453,6 +464,7 @@
"Create new secret key": "Crear una nova clau secreta",
"Create note": "Crear una nota",
"Create Note": "Crea nota",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Crea la teva primera nota prement sobre el botó 'més' inferior",
"Created at": "Creat el",
"Created At": "Creat el",
@@ -474,6 +486,7 @@
"Data Controls": "Controls de dades",
"Database": "Base de dades",
"Datalab Marker API": "API de Datalab Marker",
"Day": "",
"DD/MM/YYYY": "DD/MM/YYYY",
"DDGS Backend": "Backend DDGS",
"December": "Desembre",
@@ -504,6 +517,7 @@
"Delete All": "Eliminar tot",
"Delete All Chats": "Eliminar tots els xats",
"Delete all contents inside this folder": "Eliminar tot el contingut d'aquesta carpeta",
"Delete automation?": "",
"Delete Chat": "Eliminar xat",
"Delete chat?": "Eliminar el xat?",
"Delete File": "Eliminar el fitxer",
@@ -648,6 +662,7 @@
"Embedding Concurrent Requests": "Peticions concurrents d'incrustació",
"Embedding Model": "Model d'incrustació",
"Embedding Model Engine": "Motor de model d'incrustació",
"Emojis": "",
"Empty message": "Missatge buit",
"Enable All": "Habilitar tot",
"Enable API Keys": "Permetre claus API",
@@ -739,6 +754,7 @@
"Enter Perplexity Search API URL": "Introduïu l'URL de l'API de cerca de Perplexity",
"Enter Playwright Timeout": "Introdueix el temps d'espera de Playwright",
"Enter Playwright WebSocket URL": "Introdueix la URL de Playwright WebSocket",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Entra la URL (p. ex. https://user:password@host:port)",
"Enter reasoning effort": "Introdueix l'esforç de raonament",
"Enter Score": "Introdueix la puntuació",
@@ -763,6 +779,7 @@
"Enter system prompt here": "Entra la indicació de sistema aquí",
"Enter Tavily API Key": "Introdueix la clau API de Tavily",
"Enter Tavily Extract Depth": "Introdueix la profunditat d'extracció de Tavily",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Entra la URL pública de WebUI. Aquesta URL s'utilitzarà per generar els enllaços en les notificacions.",
"Enter the URL of the function to import": "Introdueix la URL de la funció a importar",
"Enter the URL to import": "Introdueix la URL a importar",
@@ -802,6 +819,7 @@
"Error accessing directory": "Error en accedir al directori",
"Error accessing Google Drive: {{error}}": "Error en accedir a Google Drive: {{error}}",
"Error accessing media devices.": "Error en accedir als dispositius multimèdia",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Error en començar a enregistrar",
"Error unloading model: {{error}}": "Error en descarregar el model: {{error}}",
"Error uploading file: {{error}}": "Error en pujar l'arxiu: {{error}}",
@@ -819,6 +837,7 @@
"Execute code": "Executa el codi",
"Execute code for analysis": "Executar el codi per analitzar-lo",
"Executing **{{NAME}}**...": "Executant **{{NAME}}**...",
"Execution Logs": "",
"Expand": "Expandir",
"Experimental": "Experimental",
"Explain": "Explicar",
@@ -1082,6 +1101,7 @@
"Insert Suggestion Prompt to Input": "Insereix un suggeriment per introduir",
"Install from Github URL": "Instal·lar des de la URL de Github",
"Instant Auto-Send After Voice Transcription": "Enviament automàtic després de la transcripció de veu",
"Instructions": "",
"Integration": "Integració",
"Integrations": "Integracions",
"Interface": "Interfície",
@@ -1141,6 +1161,7 @@
"Last 90 days": "Darrers 90 dies",
"Last Active": "Activitat recent",
"Last Modified": "Modificació",
"Last ran": "",
"Last reply": "Darrera resposta",
"LDAP": "LDAP",
"LDAP server updated": "Servidor LDAP actualitzat",
@@ -1247,6 +1268,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "El model '{{modelName}}' s'ha descarregat correctament.",
"Model '{{modelTag}}' is already in queue for downloading.": "El model '{{modelTag}}' ja està en cua per ser descarregat.",
"Model {{modelId}} not found": "No s'ha trobat el model {{modelId}}",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "El model {{modelName}} no és capaç de visió",
"Model {{name}} is now {{status}}": "El model {{name}} ara és {{status}}",
"Model {{name}} is now hidden": "El model {{name}} està ara amagat",
@@ -1296,8 +1318,11 @@
"Name": "Nom",
"Name and ID are required, please fill them out": "El nom i l'ID són necessaris, emplena'ls, si us plau",
"Name your knowledge base": "Anomena la teva base de coneixement",
"Name, prompt, and model are required": "",
"Native": "Natiu",
"Never": "",
"New": "Nou",
"New Automation": "",
"New Button": "Botó nou",
"New Chat": "Nou xat",
"New File": "Nou arxiu",
@@ -1316,9 +1341,11 @@
"New Webhook": "Nou webhook",
"new-channel": "nou-canal",
"Next message": "Missatge següent",
"Next run": "",
"No access grants. Private to you.": "Sense permisos d'accés. Privat per a tu.",
"No activity data": "No hi ha dades d'activitat",
"No authentication": "Sense autenticació",
"No automations found": "",
"No chats found": "No s'han trobat xats",
"No chats found for this user.": "No s'han trobat xats per a aquest usuari.",
"No chats found.": "No s'ha trobat xats.",
@@ -1329,6 +1356,7 @@
"No data": "No hi ha dades",
"No data found": "No s'han trobat dades",
"No distance available": "No hi ha distància disponible",
"No execution logs available yet": "",
"No expiration can pose security risks.": "No posar expiració pot suposar problemes de seguretat.",
"No feedback found": "No s'ha trobat cap retorn",
"No file selected": "No s'ha escollit cap fitxer",
@@ -1375,6 +1403,7 @@
"Not factually correct": "No és clarament correcte",
"Not helpful": "No ajuda",
"Not Registered": "No registrat",
"Not scheduled": "",
"Note": "Nota",
"Note deleted successfully": "La nota s'ha eliminat correctament",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Si s'estableix una puntuació mínima, la cerca només retornarà documents amb una puntuació major o igual a la puntuació mínima.",
@@ -1448,6 +1477,7 @@
"or": "o",
"Ordered List": "Llista ordenada",
"Other": "Altres",
"out of": "",
"Output": "Sortida",
"OUTPUT": "SORTIDA",
"Output format": "Format de sortida",
@@ -1463,6 +1493,7 @@
"Password": "Contrasenya",
"Passwords do not match.": "Les contrasenyes no coincideixen",
"Paste Large Text as File": "Enganxa un text llarg com a fitxer",
"Paused": "",
"PDF document (.pdf)": "Document PDF (.pdf)",
"PDF Extract Images (OCR)": "Extreu imatges del PDF (OCR)",
"PDF Loader Mode": "Mode de càrrega de PDF",
@@ -1567,6 +1598,7 @@
"Reason": "Raó",
"Reasoning Effort": "Esforç de raonament",
"Reasoning Tags": "Etiqueta de raonament",
"Recently Used": "",
"Record": "Enregistrar",
"Record voice": "Enregistrar la veu",
"Redirecting you to Open WebUI Community": "Redirigint-te a la comunitat OpenWebUI",
@@ -1602,6 +1634,7 @@
"Renamed to {{name}}": "S'ha renombrat a {{name}}",
"Render Markdown in Previews": "Compila el Markdown a les previsualitzacions",
"Reorder Models": "Reordenar els models",
"Repeats": "",
"Reply": "Respondre",
"Reply in Thread": "Respondre al fil",
"Reply to thread...": "Respondra al fil...",
@@ -1635,6 +1668,8 @@
"RTL": "RTL",
"Run": "Executar",
"Run All": "Executar tot",
"Run now": "",
"Run Now": "",
"Running": "S'està executant",
"Running...": "S'està executant...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Executa tasques d'incrustació simultàniament per accelerar el processament. Desactiva-ho si els límits de velocitat es converteixen en un problema.",
@@ -1645,12 +1680,15 @@
"Save Chat": "Dear el xat",
"Saved": "Desat",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Desar els registres de xat directament a l'emmagatzematge del teu navegador ja no està suportat. Si us plau, descarregr i elimina els registres de xat fent clic al botó de sota. No et preocupis, pots tornar a importar fàcilment els teus registres de xat al backend a través de",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Fer scroll en canviar de branca",
"Search": "Cercar",
"Search a model": "Cercar un model",
"Search all emojis": "Cercar tots els emojis",
"Search and manage user memories": "Cerca i gestiona les memòries d'usuari",
"Search and view user chat history": "Cerca i mostra l'historial de xats",
"Search Automations": "",
"Search Base": "Base de cerca",
"Search channels and channel messages": "Cerca els canals i els missatges als canals",
"Search Chats": "Cercar xats",
@@ -1720,6 +1758,7 @@
"Select how to split message text for TTS requests": "Seleccionar com separar un missatge per a peticions TTS",
"Select Knowledge": "Seleccionar coneixement",
"Select Method": "Escollir el mètode",
"Select model": "",
"Select only one model to call": "Seleccionar només un model per trucar",
"Select view": "Seleccionar una vista",
"Selected model: {{modelName}}": "Model seleccionat: {{modelName}}",
@@ -1829,6 +1868,7 @@
"Start of the channel": "Inici del canal",
"Start Tag": "Etiqueta d'inici",
"Starting kernel...": "Iniciant el kernel...",
"State": "",
"Status": "Estat",
"Status cleared successfully": "S'ha eliminat correctament el teu estat",
"Status updated successfully": "S'ha actualitzat correctament el teu estat",
@@ -1879,8 +1919,10 @@
"Talk to Model": "Parlar amb el model",
"Tap to interrupt": "Prem per interrompre",
"Task List": "Llista de tasques",
"Task Management": "",
"Task Model": "Model de tasques",
"Tasks": "Tasques",
"tasks completed": "",
"Tavily API Key": "Clau API de Tavily",
"Tavily Extract Depth": "Profunditat d'extracció de Tavily",
"Tell us more:": "Dona'ns més informació:",
@@ -1947,6 +1989,7 @@
"Tika": "Tika",
"Tika Server URL required.": "La URL del servidor Tika és obligatòria.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "Temps i càlculs",
"Timeout": "Temps d'espera",
"Title": "Títol",
@@ -1964,6 +2007,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Per seleccionar kits d'eines aquí, afegeix-los primer a l'espai de treball \"Eines\".",
"Toast notifications for new updates": "Notificacions Toast de noves actualitzacions",
"Today": "Avui",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "Avui a les {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "Activa/Desactiva {{COUNT}} fonts",
"Toggle 1 source": "Activa/Desactiva 1 font",
@@ -2102,6 +2146,7 @@
"Waiting for upload...": "Esperant per pujar...",
"Warning": "Avís",
"Warning:": "Avís:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Avís: Habilitar això permetrà als usuaris penjar codi arbitrari al servidor.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Avís: l'execució de Jupyter permet l'execució de codi arbitrari, la qual cosa comporta greus riscos de seguretat; procediu amb extrema precaució.",
"Web": "Web",
@@ -2136,6 +2181,7 @@
"Width": "amplada",
"Wikipedia": "Wikipedia",
"Won": "Ha guanyat",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Funciona juntament amb top-k. Un valor més alt (p. ex., 0,95) donarà lloc a un text més divers, mentre que un valor més baix (p. ex., 0,5) generarà un text més concentrat i conservador.",
"Workspace": "Espai de treball",
"Workspace Permissions": "Permisos de l'espai de treball",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "Base URL AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "Ang AUTOMATIC1111 base URL gikinahanglan.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "",
"Available models": "",
"Available Tools": "",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "",
"Confirm": "",
"Confirm Password": "Kumpirma ang password",
@@ -452,6 +463,7 @@
"Create new secret key": "",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Gihimo ang",
"Created At": "",
@@ -473,6 +485,7 @@
"Data Controls": "",
"Database": "Database",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "",
"Delete chat?": "",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "",
"Embedding Model Engine": "",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "",
@@ -762,6 +778,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "Eksperimento",
"Explain": "",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "",
"Instant Auto-Send After Voice Transcription": "",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "Interface",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "",
"Last Modified": "",
"Last ran": "",
"Last reply": "",
"LDAP": "",
"LDAP server updated": "",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Ang modelo'{{modelName}}' malampuson nga na-download.",
"Model '{{modelTag}}' is already in queue for downloading.": "Ang modelo'{{modelTag}}' naa na sa pila para ma-download.",
"Model {{modelId}} not found": "Modelo {{modelId}} wala makit-an",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "",
"Model {{name}} is now {{status}}": "",
"Model {{name}} is now hidden": "",
@@ -1295,8 +1317,11 @@
"Name": "Ngalan",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Bag-ong diskusyon",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "",
@@ -1374,6 +1402,7 @@
"Not factually correct": "",
"Not helpful": "",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "",
@@ -1447,6 +1476,7 @@
"or": "O",
"Ordered List": "",
"Other": "",
"out of": "",
"Output": "",
"OUTPUT": "",
"Output format": "",
@@ -1462,6 +1492,7 @@
"Password": "Password",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Paused": "",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "PDF Image Extraction (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "Irekord ang tingog",
"Redirecting you to Open WebUI Community": "Gi-redirect ka sa komunidad sa OpenWebUI",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "",
"Run": "",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "",
"Running...": "Nagdagan...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "",
"Saved": "",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Ang pag-save sa mga chat log direkta sa imong browser storage dili na suportado. ",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Pagpanukiduki",
"Search a model": "",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "",
"Search channels and channel messages": "",
"Search Chats": "",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Sinugdan sa channel",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "",
"Tavily Extract Depth": "",
"Tell us more:": "",
@@ -1945,6 +1987,7 @@
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Titulo",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "",
"Toast notifications for new updates": "",
"Today": "",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "",
"Warning:": "Pahimangno:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "Web",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "",
"Workspace Permissions": "",
@@ -184,6 +184,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "Opravdu si přejete vymazat všechny vzpomínky? Tuto akci nelze vrátit zpět.",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Opravdu chcete smazat tento kanál?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -200,6 +201,7 @@
"Assistant": "Asistent",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "Připojit znalosti",
"Attach Notes": "Přiojit poznámky",
"Attach Webpage": "Připojit web",
@@ -222,6 +224,13 @@
"AUTOMATIC1111 Base URL": "Základní URL pro AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "Je vyžadována základní URL pro AUTOMATIC1111.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Seznam dostupných",
"Available models": "",
"Available Tools": "Dostupné nástroje",
@@ -252,6 +261,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Zvýhodňování nebo penalizace specifických tokenů pro omezené odpovědi. Hodnoty odchylky budou omezeny v rozmezí -100 až 100 (včetně). (Výchozí: žádné)",
"Brave": "",
"Brave Search API Key": "Klíč API pro Brave Search",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "Seznam s odrážkami",
@@ -385,6 +395,7 @@
"Concurrent Requests": "Souběžné požadavky",
"Config": "",
"Config imported successfully": "Konfigurace byla úspěšně importována",
"Configuration": "",
"Configure": "Konfigurovat",
"Confirm": "Potvrdit",
"Confirm Password": "Potvrdit heslo",
@@ -454,6 +465,7 @@
"Create new secret key": "Vytvořit nový tajný klíč",
"Create note": "",
"Create Note": "Vytvořit poznámku",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Vytvořte svou první poznámku kliknutím na tlačítko plus níže.",
"Created at": "Vytvořeno",
"Created At": "Vytvořeno",
@@ -475,6 +487,7 @@
"Data Controls": "Správa dat",
"Database": "Databáze",
"Datalab Marker API": "Datalab Marker API",
"Day": "",
"DD/MM/YYYY": "DD.MM.RRRR",
"DDGS Backend": "",
"December": "Prosinec",
@@ -505,6 +518,7 @@
"Delete All": "",
"Delete All Chats": "Smazat všechny konverzace",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Smazat konverzaci",
"Delete chat?": "Smazat konverzaci?",
"Delete File": "",
@@ -649,6 +663,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Model pro vektorizaci",
"Embedding Model Engine": "Jádro modelu pro vektorizaci",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -740,6 +755,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "Zadejte časový limit pro Playwright",
"Enter Playwright WebSocket URL": "Zadejte WebSocket URL pro Playwright",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Zadejte URL proxy (např. https://uzivatel:heslo@hostitel:port)",
"Enter reasoning effort": "Zadejte úsilí pro uvažování",
"Enter Score": "Zadejte skóre",
@@ -764,6 +780,7 @@
"Enter system prompt here": "Zde zadejte systémové instrukce",
"Enter Tavily API Key": "Zadejte API klíč pro Tavily",
"Enter Tavily Extract Depth": "Zadejte hloubku extrakce pro Tavily",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Zadejte veřejnou URL adresu vašeho WebUI. Tato URL bude použita k generování odkazů v oznámeních.",
"Enter the URL of the function to import": "Zadejte URL funkce k importu",
"Enter the URL to import": "Zadejte URL pro import",
@@ -803,6 +820,7 @@
"Error accessing directory": "Chyba při přístupu k adresáři",
"Error accessing Google Drive: {{error}}": "Chyba při přístupu ke Google Drive: {{error}}",
"Error accessing media devices.": "Chyba při přístupu k mediálním zařízením.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Chyba při spuštění nahrávání.",
"Error unloading model: {{error}}": "Chyba při uvolňování modelu: {{error}}",
"Error uploading file: {{error}}": "Chyba při nahrávání souboru: {{error}}",
@@ -820,6 +838,7 @@
"Execute code": "",
"Execute code for analysis": "Spustit kód pro analýzu",
"Executing **{{NAME}}**...": "Spouštím **{{NAME}}**...",
"Execution Logs": "",
"Expand": "Rozbalit",
"Experimental": "Experimentální",
"Explain": "Vysvětlit",
@@ -1083,6 +1102,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Instalovat z URL na Githubu",
"Instant Auto-Send After Voice Transcription": "Okamžité automatické odeslání po přepisu hlasu",
"Instructions": "",
"Integration": "Integrace",
"Integrations": "Integrace",
"Interface": "Rozhraní",
@@ -1142,6 +1162,7 @@
"Last 90 days": "",
"Last Active": "Naposledy aktivní",
"Last Modified": "Poslední úprava",
"Last ran": "",
"Last reply": "Poslední odpověď",
"LDAP": "LDAP",
"LDAP server updated": "LDAP server byl aktualizován",
@@ -1248,6 +1269,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' byl úspěšně stažen.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je již ve frontě na stažení.",
"Model {{modelId}} not found": "Model {{modelId}} nenalezen",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} nemá schopnost zpracování obrazu.",
"Model {{name}} is now {{status}}": "Model {{name}} je nyní {{status}}.",
"Model {{name}} is now hidden": "Model {{name}} je nyní skrytý",
@@ -1297,8 +1319,11 @@
"Name": "Jméno",
"Name and ID are required, please fill them out": "Jméno a ID jsou povinné, prosím vyplňte je",
"Name your knowledge base": "Pojmenujte svou znalostní bázi",
"Name, prompt, and model are required": "",
"Native": "Nativní",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "Nové tlačítko",
"New Chat": "Nová konverzace",
"New File": "",
@@ -1317,9 +1342,11 @@
"New Webhook": "",
"new-channel": "novy-kanal",
"Next message": "Další zpráva",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "Nebyly nalezeny žádné konverzace",
"No chats found for this user.": "Pro tohoto uživatele nebyly nalezeny žádné konverzace.",
"No chats found.": "Nebyly nalezeny žádné konverzace.",
@@ -1330,6 +1357,7 @@
"No data": "",
"No data found": "",
"No distance available": "Vzdálenost není k dispozici",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Nebyl vybrán žádný soubor",
@@ -1376,6 +1404,7 @@
"Not factually correct": "Fakticky nesprávné",
"Not helpful": "Nepomohlo",
"Not Registered": "",
"Not scheduled": "",
"Note": "Poznámka",
"Note deleted successfully": "Poznámka byla úspěšně smazána",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Poznámka: Pokud nastavíte minimální skóre, vyhledávání vrátí pouze dokumenty se skóre vyšším nebo rovným minimálnímu skóre.",
@@ -1449,6 +1478,7 @@
"or": "nebo",
"Ordered List": "Číslovaný seznam",
"Other": "Jiné",
"out of": "",
"Output": "",
"OUTPUT": "VÝSTUP",
"Output format": "Formát výstupu",
@@ -1464,6 +1494,7 @@
"Password": "Heslo",
"Passwords do not match.": "Hesla se neshodují.",
"Paste Large Text as File": "Vložit velký text jako soubor",
"Paused": "",
"PDF document (.pdf)": "Dokument PDF (.pdf)",
"PDF Extract Images (OCR)": "Extrahovat obrázky z PDF (OCR)",
"PDF Loader Mode": "",
@@ -1568,6 +1599,7 @@
"Reason": "Důvod",
"Reasoning Effort": "reasoning effort",
"Reasoning Tags": "reasoning tags",
"Recently Used": "",
"Record": "Nahrát",
"Record voice": "Nahrát hlas",
"Redirecting you to Open WebUI Community": "Přesměrovávám vás do komunity Open WebUI",
@@ -1603,6 +1635,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Změnit pořadí modelů",
"Repeats": "",
"Reply": "",
"Reply in Thread": "Odpovědět ve vlákně",
"Reply to thread...": "",
@@ -1637,6 +1670,8 @@
"RTL": "RTL",
"Run": "Spustit",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Běží",
"Running...": "Běží...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1647,12 +1682,15 @@
"Save Chat": "",
"Saved": "Uloženo",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Ukládání záznamů konverzací přímo do úložiště vašeho prohlížeče již není podporováno. Věnujte prosím chvíli stažení a smazání svých záznamů konverzací kliknutím na tlačítko níže. Nemějte obavy, své záznamy konverzací můžete snadno znovu importovat do backendu prostřednictvím",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Posouvat při změně větve",
"Search": "Hledat",
"Search a model": "Hledat model",
"Search all emojis": "Hledat všechny emoji",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "Základ pro vyhledávání",
"Search channels and channel messages": "",
"Search Chats": "Hledat v konverzacích",
@@ -1722,6 +1760,7 @@
"Select how to split message text for TTS requests": "Vyberte, jak dělit text zprávy pro požadavky TTS",
"Select Knowledge": "Vybrat znalosti",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Vyberte pouze jeden model k volání",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1831,6 +1870,7 @@
"Start of the channel": "Začátek kanálu",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1881,8 +1921,10 @@
"Talk to Model": "",
"Tap to interrupt": "Klepnutím přerušíte",
"Task List": "Seznam úkolů",
"Task Management": "",
"Task Model": "Model pro úkoly",
"Tasks": "Úkoly",
"tasks completed": "",
"Tavily API Key": "API klíč pro Tavily",
"Tavily Extract Depth": "Hloubka extrakce Tavily",
"Tell us more:": "Řekněte nám více:",
@@ -1949,6 +1991,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Je vyžadována URL serveru Tika.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Název",
@@ -1966,6 +2009,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Pro výběr sad nástrojů zde je nejprve přidejte do pracovního prostoru \"Nástroje\".",
"Toast notifications for new updates": "Vyskakovací oznámení o nových aktualizacích",
"Today": "Dnes",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2104,6 +2148,7 @@
"Waiting for upload...": "",
"Warning": "Varování",
"Warning:": "Varování:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Varování: Povolení této volby umožní uživatelům nahrávat na server libovolný kód.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Varování: Spouštění Jupyteru umožňuje provádění libovolného kódu, což představuje vážná bezpečnostní rizika – postupujte s maximální opatrností.",
"Web": "Web",
@@ -2138,6 +2183,7 @@
"Width": "Šířka",
"Wikipedia": "",
"Won": "Vyhrál",
"Working Directory": "",
"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.": "Funguje společně s top-k. Vyšší hodnota (např. 0,95) povede k rozmanitějšímu textu, zatímco nižší hodnota (např. 0,5) vygeneruje soustředěnější a konzervativnější text.",
"Workspace": "Pracovní prostor",
"Workspace Permissions": "Oprávnění pracovního prostoru",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "Er du sikker på du vil rydde hele hukommelsen? Dette kan ikke gøres om.",
"Are you sure you want to delete \"{{NAME}}\"?": "Er du sikker på at du vil slette \"{{NAME}}\"?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Er du sikker på du vil slette denne kanal?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "Assistent",
"Async Embedding Processing": "Asynkron embedding processering",
"Attach File From Knowledge": "Vedhæft fil fra viden",
"Attach Files": "",
"Attach Knowledge": "Vedhæft viden",
"Attach Notes": "Vedhæft noter",
"Attach Webpage": "Vedhæft webside",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 base URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 base URL er påkrævet.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Tilgængelige lister",
"Available models": "",
"Available Tools": "Tilgængelige værktøj",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Forøg eller reducer specifikke tokens for begrænsede svar. Bias-værdier vil blive begrænset til mellem -100 og 100 (inklusiv). (Standard: ingen)",
"Brave": "",
"Brave Search API Key": "Brave Search API nøgle",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "Punktliste",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Concurrent requests",
"Config": "",
"Config imported successfully": "Konfiguration importeret",
"Configuration": "",
"Configure": "Konfigurer",
"Confirm": "Bekræft",
"Confirm Password": "Bekræft password",
@@ -452,6 +463,7 @@
"Create new secret key": "Opret en ny hemmelig nøgle",
"Create note": "",
"Create Note": "Opret note",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Opret din første note ved at klikke på plus knappen nedenfor.",
"Created at": "Oprettet",
"Created At": "Oprettet",
@@ -473,6 +485,7 @@
"Data Controls": "Datakontrol",
"Database": "Database",
"Datalab Marker API": "Datalab Marker API",
"Day": "",
"DD/MM/YYYY": "DD/MM/ÅÅÅÅ",
"DDGS Backend": "",
"December": "december",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "Slet alle chats",
"Delete all contents inside this folder": "Slet alt indhold i denne mappe",
"Delete automation?": "",
"Delete Chat": "Slet chat",
"Delete chat?": "Slet chat?",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Embedding Model",
"Embedding Model Engine": "Embedding Model engine",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "Aktiver API nøgler",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "Indtast Perplexity Search API URL",
"Enter Playwright Timeout": "Indtast Playwright timeout",
"Enter Playwright WebSocket URL": "Indtast Playwright WebSocket URL",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Indtast proxy URL (f.eks. https://bruger:adgangskode@host:port)",
"Enter reasoning effort": "Indtast ræsonneringsindsats",
"Enter Score": "Indtast score",
@@ -762,6 +778,7 @@
"Enter system prompt here": "Indtast systemprompt her",
"Enter Tavily API Key": "Indtast Tavily API-nøgle",
"Enter Tavily Extract Depth": "Indtast Tavily Extract Depth",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Indtast den offentlige URL til dit WebUI. Denne URL vil blive brugt til at generere links i notifikationerne.",
"Enter the URL of the function to import": "Indtast URL'en for funktionen der skal importeres",
"Enter the URL to import": "Indtast URL'en der skal importeres",
@@ -801,6 +818,7 @@
"Error accessing directory": "Fejl ved adgang til mappe",
"Error accessing Google Drive: {{error}}": "Fejl ved adgang til Google Drive: {{error}}",
"Error accessing media devices.": "Fejl ved adgang til medieenheder.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Fejl ved start af optagelse.",
"Error unloading model: {{error}}": "Fejl ved aflæsning af model: {{error}}",
"Error uploading file: {{error}}": "Fejl ved upload af fil: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "Kør kode til analyse",
"Executing **{{NAME}}**...": "Kører **{{NAME}}**...",
"Execution Logs": "",
"Expand": "Udvid",
"Experimental": "Eksperimentel",
"Explain": "Forklar",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "Indsæt prompt foreslag til input",
"Install from Github URL": "Installer fra Github URL",
"Instant Auto-Send After Voice Transcription": "Øjeblikkelig automatisk afsendelse efter stemmetransskription",
"Instructions": "",
"Integration": "Integration",
"Integrations": "Integrationer",
"Interface": "Grænseflade",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "Sidst aktiv",
"Last Modified": "Sidst ændret",
"Last ran": "",
"Last reply": "Sidste svar",
"LDAP": "LDAP",
"LDAP server updated": "LDAP server opdateret",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' er blevet downloadet.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' er allerede i kø til download.",
"Model {{modelId}} not found": "Model {{modelId}} ikke fundet",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} understøtter ikke billeder",
"Model {{name}} is now {{status}}": "Model {{name}} er nu {{status}}",
"Model {{name}} is now hidden": "Model {{name}} er nu skjult",
@@ -1295,8 +1317,11 @@
"Name": "Navn",
"Name and ID are required, please fill them out": "Navn og ID er påkrævet, venligst udfyld dem",
"Name your knowledge base": "Navngiv din vidensbase",
"Name, prompt, and model are required": "",
"Native": "Indbygget",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "Ny knap",
"New Chat": "Ny chat",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "ny-kanal",
"Next message": "Næste besked",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "Ingen autentificering",
"No automations found": "",
"No chats found": "Ingen chats fundet",
"No chats found for this user.": "Ingen besked-tråde fundet for denne bruger.",
"No chats found.": "Ingen besked-tråde fundet.",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "Ingen afstand tilgængelig",
"No execution logs available yet": "",
"No expiration can pose security risks.": "Ingen udløbsdato kan udgøre en sikkerhedsrisiko.",
"No feedback found": "",
"No file selected": "Ingen fil valgt",
@@ -1374,6 +1402,7 @@
"Not factually correct": "Ikke faktuelt korrekt",
"Not helpful": "Ikke hjælpsom",
"Not Registered": "Ikke registreret",
"Not scheduled": "",
"Note": "Note",
"Note deleted successfully": "Note slettet",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Bemærk: Hvis du angiver en minimumscore, returnerer søgningen kun dokumenter med en score, der er større end eller lig med minimumscoren.",
@@ -1447,6 +1476,7 @@
"or": "eller",
"Ordered List": "Nummereret liste",
"Other": "Andet",
"out of": "",
"Output": "",
"OUTPUT": "OUTPUT",
"Output format": "Outputformat",
@@ -1462,6 +1492,7 @@
"Password": "Adgangskode",
"Passwords do not match.": "Passwords stemmer ikke overens.",
"Paste Large Text as File": "Indsæt store tekster som fil",
"Paused": "",
"PDF document (.pdf)": "PDF-dokument (.pdf)",
"PDF Extract Images (OCR)": "Udtræk billeder fra PDF (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "Årsag",
"Reasoning Effort": "Ræsonnements indsats",
"Reasoning Tags": "Ræsonneringstags",
"Recently Used": "",
"Record": "Optag",
"Record voice": "Optag stemme",
"Redirecting you to Open WebUI Community": "Omdirigerer dig til OpenWebUI Community",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Omarranger modeller",
"Repeats": "",
"Reply": "Svar",
"Reply in Thread": "Svar i tråd",
"Reply to thread...": "Svar på tråd...",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "Kør",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Kører",
"Running...": "Kører...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Kører embedding-opgaver sideløbende for at fremskynde behandlingen. Slå fra hvis hastighedsbegrænsninger bliver et problem.",
@@ -1643,12 +1678,15 @@
"Save Chat": "Gem chat",
"Saved": "Gemt",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Lagring af chatlogs direkte i din browsers lager understøttes ikke længere. Download og slet dine chatlogs ved at klikke på knappen nedenfor. Du kan nemt importere dine chatlogs til backend igennem",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Scroll ved gren ændring",
"Search": "Søg",
"Search a model": "Søg efter en model",
"Search all emojis": "Søg i alle emojis",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "Søgebase",
"Search channels and channel messages": "",
"Search Chats": "Søg i chats",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "Vælg hvordan beskedtekst skal opdeles til TTS requests",
"Select Knowledge": "Vælg viden",
"Select Method": "Vælg metode",
"Select model": "",
"Select only one model to call": "Vælg kun én model at kalde",
"Select view": "Vælg visning",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Kanalens start",
"Start Tag": "Start tag",
"Starting kernel...": "",
"State": "",
"Status": "Status",
"Status cleared successfully": "Status slettet",
"Status updated successfully": "Status opdateret",
@@ -1877,8 +1917,10 @@
"Talk to Model": "Tal med model",
"Tap to interrupt": "Tryk for at afbryde",
"Task List": "Opgaveliste",
"Task Management": "",
"Task Model": "Opgavemodel",
"Tasks": "Opgaver",
"tasks completed": "",
"Tavily API Key": "Tavily API-nøgle",
"Tavily Extract Depth": "Tavily udtræk dybde",
"Tell us more:": "Fortæl os mere:",
@@ -1945,6 +1987,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Tika-server-URL påkrævet.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Titel",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "For at vælge værktøjssæt her skal du først tilføje dem til \"Værktøjer\"-arbejdsområdet.",
"Toast notifications for new updates": "Toast-notifikationer for nye opdateringer",
"Today": "I dag",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "I dag {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "Advarsel",
"Warning:": "Advarsel:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Advarsel: Hvis du aktiverer dette, vil brugerne kunne uploade vilkårlig kode på serveren.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Advarsel: Jupyter-udførelse gør det muligt at udføre vilkårlig kode, hvilket udfordrer alvorlige sikkerhedsrisici - fortsæt med ekstremt omhyggelighed.",
"Web": "Web",
@@ -2134,6 +2179,7 @@
"Width": "Bredde",
"Wikipedia": "",
"Won": "Vandt",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Fungerer sammen med top-k. En højere værdi (f.eks. 0,95) vil føre til mere forskelligartet tekst, mens en lavere værdi (f.eks. 0,5) vil generere mere fokuseret og konservativ tekst.",
"Workspace": "Arbejdsområde",
"Workspace Permissions": "Arbejdsområde rettigheder",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "Sind Sie sicher, dass Sie alle Chats archivieren wollen? Dieser Vorgang kann nicht rückgängig gemacht werden.",
"Are you sure you want to clear all memories? This action cannot be undone.": "Sind Sie sicher, dass Sie alle Erinnerungen löschen möchten? Dieser Vorgang kann nicht rückgängig gemacht werden.",
"Are you sure you want to delete \"{{NAME}}\"?": "Sind Sie sicher, dass Sie \"{{NAME}}\" löschen möchten?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "Sind Sie sicher, dass Sie alle Chats löschen wollen? Dieser Vorgang kann nicht rückgängig gemacht werden.",
"Are you sure you want to delete this channel?": "Sind Sie sicher, dass Sie diesen Kanal löschen möchten?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "Assistent",
"Async Embedding Processing": "Asynchrone Embedding-Verarbeitung",
"Attach File From Knowledge": "Datei aus Wissensspeicher anhängen",
"Attach Files": "",
"Attach Knowledge": "Wissen anhängen",
"Attach Notes": "Notizen anhängen",
"Attach Webpage": "Webseite anhängen",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Basis-URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Basis-URL ist erforderlich.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "Automatische Injektion von System-Werkzeugen bei nativen Funktionsaufrufen (z. B. Zeitstempel, Erinnerungen, Chatverlauf, Notizen etc.)",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Verfügbare Liste",
"Available models": "Verfügbare Modelle",
"Available Tools": "Verfügbare Werkzeuge",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Bevorzugung oder Benachteiligung spezifischer Token für die Antwortsteuerung. Bias-Werte werden zwischen -100 und 100 (inklusive) begrenzt. (Standard: keine)",
"Brave": "Brave",
"Brave Search API Key": "Brave Search API-Schlüssel",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "Wissensbasen durchsuchen und abfragen",
"Builtin Tools": "Eingebaute Werkzeuge",
"Bullet List": "Aufzählungsliste",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Gleichzeitige Anfragen",
"Config": "Konfiguration",
"Config imported successfully": "Konfiguration erfolgreich importiert",
"Configuration": "",
"Configure": "Konfigurieren",
"Confirm": "Bestätigen",
"Confirm Password": "Passwort bestätigen",
@@ -452,6 +463,7 @@
"Create new secret key": "Neuen Geheimschlüssel erstellen",
"Create note": "Notiz erstellen",
"Create Note": "Notiz erstellen",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Erstellen Sie Ihre erste Notiz durch Klick auf das Plus-Symbol unten.",
"Created at": "Erstellt am",
"Created At": "Erstellt am",
@@ -473,6 +485,7 @@
"Data Controls": "Datenkontrolle",
"Database": "Datenbank",
"Datalab Marker API": "Datalab Marker API",
"Day": "",
"DD/MM/YYYY": "TT.MM.JJJJ",
"DDGS Backend": "DDGS Backend",
"December": "Dezember",
@@ -503,6 +516,7 @@
"Delete All": "Alle löschen",
"Delete All Chats": "Alle Chats löschen",
"Delete all contents inside this folder": "Alle Inhalte in diesem Ordner löschen",
"Delete automation?": "",
"Delete Chat": "Chat löschen",
"Delete chat?": "Chat löschen?",
"Delete File": "Datei löschen",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "Gleichzeitige Embedding Anfragen",
"Embedding Model": "Embedding-Modell",
"Embedding Model Engine": "Embedding-Modell-Engine",
"Emojis": "",
"Empty message": "Leere Nachricht",
"Enable All": "Alle aktivieren",
"Enable API Keys": "API-Schlüssel aktivieren",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "Perplexity Search API-URL eingeben",
"Enter Playwright Timeout": "Playwright-Timeout eingeben",
"Enter Playwright WebSocket URL": "Playwright WebSocket-URL eingeben",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Proxy-URL eingeben (z. B. https://user:password@host:port)",
"Enter reasoning effort": "Reasoning Effort eingeben",
"Enter Score": "Wertung eingeben",
@@ -762,6 +778,7 @@
"Enter system prompt here": "System-Prompt hier eingeben",
"Enter Tavily API Key": "Tavily API-Schlüssel eingeben",
"Enter Tavily Extract Depth": "Tavily Extraktionstiefe eingeben",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Öffentliche URL Ihrer WebUI eingeben. Diese wird für Links in Benachrichtigungen verwendet.",
"Enter the URL of the function to import": "URL der zu importierenden Funktion eingeben",
"Enter the URL to import": "URL zum Importieren eingeben",
@@ -801,6 +818,7 @@
"Error accessing directory": "Fehler beim Zugriff auf das Verzeichnis",
"Error accessing Google Drive: {{error}}": "Fehler beim Zugriff auf Google Drive: {{error}}",
"Error accessing media devices.": "Fehler beim Zugriff auf Mediengeräte.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Fehler beim Starten der Aufnahme.",
"Error unloading model: {{error}}": "Fehler beim Entladen des Modells: {{error}}",
"Error uploading file: {{error}}": "Fehler beim Hochladen der Datei: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "Code ausführen",
"Execute code for analysis": "Code zur Analyse ausführen",
"Executing **{{NAME}}**...": "Führe **{{NAME}}** aus...",
"Execution Logs": "",
"Expand": "Ausklappen",
"Experimental": "Experimentell",
"Explain": "Erklären",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "Vorschlags-Prompt in Eingabe einfügen",
"Install from Github URL": "Von GitHub-URL installieren",
"Instant Auto-Send After Voice Transcription": "Nach Sprachtranskription sofort senden",
"Instructions": "",
"Integration": "Integration",
"Integrations": "Integrationen",
"Interface": "Benutzeroberfläche",
@@ -1140,6 +1160,7 @@
"Last 90 days": "Letzte 90 Tage",
"Last Active": "Zuletzt aktiv",
"Last Modified": "Zuletzt geändert",
"Last ran": "",
"Last reply": "Letzte Antwort",
"LDAP": "LDAP",
"LDAP server updated": "LDAP-Server aktualisiert",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Modell '{{modelName}}' wurde erfolgreich heruntergeladen.",
"Model '{{modelTag}}' is already in queue for downloading.": "Modell '{{modelTag}}' befindet sich bereits in der Warteschlange.",
"Model {{modelId}} not found": "Modell {{modelId}} nicht gefunden",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Das Modell {{modelName}} unterstützt keine Bilderkennung",
"Model {{name}} is now {{status}}": "Modell {{name}} ist jetzt {{status}}",
"Model {{name}} is now hidden": "Modell {{name}} ist jetzt ausgeblendet",
@@ -1295,8 +1317,11 @@
"Name": "Name",
"Name and ID are required, please fill them out": "Name und ID sind erforderlich, bitte füllen Sie diese aus",
"Name your knowledge base": "Benennen Sie Ihren Wissensspeicher",
"Name, prompt, and model are required": "",
"Native": "Nativ",
"Never": "",
"New": "Neu",
"New Automation": "",
"New Button": "Neuer Button",
"New Chat": "Neuer Chat",
"New File": "Neue Datei",
@@ -1315,9 +1340,11 @@
"New Webhook": "Neuer Webhook",
"new-channel": "neuer-kanal",
"Next message": "Nächste Nachricht",
"Next run": "",
"No access grants. Private to you.": "Keine Freigaben konfiguriert. Nur für Sie zugänglich.",
"No activity data": "Keine Aktivitätsdaten",
"No authentication": "Keine Authentifizierung",
"No automations found": "",
"No chats found": "Keine Chats gefunden",
"No chats found for this user.": "Keine Chats für diesen Benutzer gefunden.",
"No chats found.": "Keine Chats gefunden.",
@@ -1328,6 +1355,7 @@
"No data": "Keine Daten",
"No data found": "Keine Daten gefunden",
"No distance available": "Keine Distanz verfügbar",
"No execution logs available yet": "",
"No expiration can pose security risks.": "Ein fehlendes Ablaufdatum kann Sicherheitsrisiken bergen.",
"No feedback found": "Kein Feedback gefunden",
"No file selected": "Keine Datei ausgewählt",
@@ -1374,6 +1402,7 @@
"Not factually correct": "Inhaltlich nicht korrekt",
"Not helpful": "Nicht hilfreich",
"Not Registered": "Nicht registriert",
"Not scheduled": "",
"Note": "Notiz",
"Note deleted successfully": "Notiz erfolgreich gelöscht",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Hinweis: Wenn Sie eine Mindestpunktzahl festlegen, liefert die Suche nur Dokumente zurück, deren Punktzahl größer oder gleich diesem Wert ist.",
@@ -1447,6 +1476,7 @@
"or": "oder",
"Ordered List": "Nummerierte Liste",
"Other": "Andere",
"out of": "",
"Output": "Ausgabe",
"OUTPUT": "AUSGABE",
"Output format": "Ausgabeformat",
@@ -1462,6 +1492,7 @@
"Password": "Passwort",
"Passwords do not match.": "Die Passwörter stimmen nicht überein.",
"Paste Large Text as File": "Großen Text als Datei einfügen",
"Paused": "",
"PDF document (.pdf)": "PDF-Dokument (.pdf)",
"PDF Extract Images (OCR)": "Bilder aus PDFs extrahieren (OCR)",
"PDF Loader Mode": "PDF Loader Modus",
@@ -1566,6 +1597,7 @@
"Reason": "Nachdenken",
"Reasoning Effort": "Reasoning Effort",
"Reasoning Tags": "Reasoning Tags",
"Recently Used": "",
"Record": "Aufnehmen",
"Record voice": "Stimme aufnehmen",
"Redirecting you to Open WebUI Community": "Sie werden zur Open WebUI Community weitergeleitet",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "Markdown in der Vorschau rendern",
"Reorder Models": "Modelle neu anordnen",
"Repeats": "",
"Reply": "Antworten",
"Reply in Thread": "Im Thread antworten",
"Reply to thread...": "Im Thread antworten...",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "Ausführen",
"Run All": "Alle starten",
"Run now": "",
"Run Now": "",
"Running": "Läuft",
"Running...": "Läuft...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Führt Embedding-Aufgaben parallel aus, um die Verarbeitung zu beschleunigen. Deaktivieren Sie dies, falls Rate-Limits oder Ressourcenprobleme auftreten.",
@@ -1643,12 +1678,15 @@
"Save Chat": "Chat speichern",
"Saved": "Gespeichert",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Das direkte Speichern von Chat-Protokollen im Browserspeicher wird nicht mehr unterstützt. Bitte nehmen Sie sich einen Moment Zeit, um Ihre Chat-Protokolle herunterzuladen und zu löschen, indem Sie auf die Schaltfläche unten klicken. Sie können Ihre Chat-Protokolle später problemlos über das Backend wieder importieren.",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Bei Zweigwechsel scrollen",
"Search": "Suchen",
"Search a model": "Ein Modell suchen",
"Search all emojis": "Alle Emojis durchsuchen",
"Search and manage user memories": "Suche und manage Benutzer Erinnerungen",
"Search and view user chat history": "Suche und sehe die Chat History des Benutzers ein",
"Search Automations": "",
"Search Base": "Suchbasis",
"Search channels and channel messages": "Suche Kanäle und Kanalnachrichten",
"Search Chats": "Chats durchsuchen...",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "Wählen Sie, wie der Nachrichtentext für TTS-Anfragen aufgeteilt werden soll",
"Select Knowledge": "Wissensspeicher auswählen",
"Select Method": "Methode auswählen",
"Select model": "",
"Select only one model to call": "Wählen Sie nur ein Modell zum Aufrufen aus",
"Select view": "Ansicht wählen",
"Selected model: {{modelName}}": "Ausgewähltes Modell: {{modelName}}",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Beginn des Kanals",
"Start Tag": "Start-Tag",
"Starting kernel...": "Kernel starten...",
"State": "",
"Status": "Status",
"Status cleared successfully": "Status erfolgreich gelöscht",
"Status updated successfully": "Status erfolgreich aktualisiert",
@@ -1877,8 +1917,10 @@
"Talk to Model": "Mit dem Modell sprechen",
"Tap to interrupt": "Zum Unterbrechen tippen",
"Task List": "Aufgabenliste",
"Task Management": "",
"Task Model": "Aufgabenmodell",
"Tasks": "Aufgaben",
"tasks completed": "",
"Tavily API Key": "Tavily-API-Schlüssel",
"Tavily Extract Depth": "Tavily Extraktionstiefe",
"Tell us more:": "Erzählen Sie uns mehr:",
@@ -1945,6 +1987,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Tika-Server-URL erforderlich.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "Zeit & Berechnung",
"Timeout": "Timeout",
"Title": "Titel",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Um Toolkits auszuwählen, fügen Sie sie zuerst dem Arbeitsbereich \"Werkzeuge\" hinzu.",
"Toast notifications for new updates": "Toast-Benachrichtigungen für neue Updates",
"Today": "Heute",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "Heute um {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "{{COUNT}} Quellen umschalten",
"Toggle 1 source": "Eine Quelle umschalten",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "Warte auf Datei upload...",
"Warning": "Warnung",
"Warning:": "Warnung:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Warnung: Wenn Sie dies aktivieren, können Benutzer beliebigen Code auf den Server hochladen.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Warnung: Die Jupyter-Ausführung ermöglicht beliebige Codeausführung und birgt erhebliche Sicherheitsrisiken – gehen Sie mit äußerster Vorsicht vor.",
"Web": "Web",
@@ -2134,6 +2179,7 @@
"Width": "Breite",
"Wikipedia": "Wikipedia",
"Won": "Gewonnen",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Funktioniert zusammen mit Top-K. Ein höherer Wert (z. B. 0.95) führt zu vielfältigerem Text, während ein niedrigerer Wert (z. B. 0.5) fokussierteren und konservativeren Text erzeugt.",
"Workspace": "Arbeitsbereich",
"Workspace Permissions": "Arbeitsbereichsberechtigungen",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Base URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Base URL is required.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "",
"Available models": "",
"Available Tools": "",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "",
"Confirm": "",
"Confirm Password": "Confirm Password",
@@ -452,6 +463,7 @@
"Create new secret key": "",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Created at",
"Created At": "",
@@ -473,6 +485,7 @@
"Data Controls": "",
"Database": "Database",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "",
"Delete chat?": "",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "",
"Embedding Model Engine": "",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "",
@@ -762,6 +778,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "Much Experiment",
"Explain": "",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "",
"Instant Auto-Send After Voice Transcription": "",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "Interface",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "",
"Last Modified": "",
"Last ran": "",
"Last reply": "",
"LDAP": "",
"LDAP server updated": "",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' has been successfully downloaded.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' is already in queue for downloading.",
"Model {{modelId}} not found": "Model {{modelId}} not found",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "",
"Model {{name}} is now {{status}}": "",
"Model {{name}} is now hidden": "",
@@ -1295,8 +1317,11 @@
"Name": "Name",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "New Bark",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "",
@@ -1374,6 +1402,7 @@
"Not factually correct": "",
"Not helpful": "",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "",
@@ -1447,6 +1476,7 @@
"or": "or",
"Ordered List": "",
"Other": "",
"out of": "",
"Output": "",
"OUTPUT": "",
"Output format": "",
@@ -1462,6 +1492,7 @@
"Password": "Barkword",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Paused": "",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "PDF Extract Wowmages (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "Record Bark",
"Redirecting you to Open WebUI Community": "Redirecting you to Open WebUI Community",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "",
"Run": "",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "",
"Running...": "Running... wow",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "",
"Saved": "",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Saving chat logs in browser storage not support anymore. Pls download and delete your chat logs by click button below. Much easy re-import to backend through",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Search very search",
"Search a model": "",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "",
"Search channels and channel messages": "",
"Search Chats": "",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Start of channel",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "",
"Tavily Extract Depth": "",
"Tell us more:": "",
@@ -1945,6 +1987,7 @@
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Title very title",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "",
"Toast notifications for new updates": "",
"Today": "",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "",
"Warning:": "Much warning:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "Web very web",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "",
"Workspace Permissions": "",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "Είστε σίγουροι ότι θέλετε να διαγράψετε όλες τις μνήμες; Αυτή η ενέργεια δεν μπορεί να αναιρεθεί.",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το κανάλι;",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "Βοηθός",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "Προσθήκη Knowledge",
"Attach Notes": "Προσθήκη Σημειώσεων",
"Attach Webpage": "Προσθήκη ιστότοπου",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "Βασικό URL AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "Απαιτείται το Βασικό URL AUTOMATIC1111.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Διαθέσιμη λίστα",
"Available models": "",
"Available Tools": "Διαθέσιμα Εργαλεία",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "Κλειδί API Brave Search",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Ταυτόχρονες Αιτήσεις",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "Διαμόρφωση",
"Confirm": "Επιβεβαίωση",
"Confirm Password": "Επιβεβαίωση Κωδικού",
@@ -452,6 +463,7 @@
"Create new secret key": "Δημιουργία νέου μυστικού κλειδιού",
"Create note": "",
"Create Note": "Δημιουργία Σημείωσης",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Δημιουργήθηκε στις",
"Created At": "Δημιουργήθηκε στις",
@@ -473,6 +485,7 @@
"Data Controls": "Έλεγχοι Δεδομένων",
"Database": "Βάση Δεδομένων",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "ΗΗ/ΜΜ/ΕΕΕΕ",
"DDGS Backend": "",
"December": "Δεκέμβριος",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "Διαγραφή Όλων των Συνομιλιών",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Διαγραφή Συνομιλίας",
"Delete chat?": "Διαγραφή συνομιλίας;",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Μοντέλο Ενσωμάτωσης",
"Embedding Model Engine": "Μηχανή Μοντέλου Ενσωμάτωσης",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "Εισάγετε το χρονικό όριο του Playwright",
"Enter Playwright WebSocket URL": "Εισάγετε το URL WebSocket του Playwright",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Εισάγετε URL διακομιστή μεσολάβησης (π.χ. https://user:password@host:port)",
"Enter reasoning effort": "",
"Enter Score": "Εισάγετε το Score",
@@ -762,6 +778,7 @@
"Enter system prompt here": "Εισάγετε την προτροπή συστήματος εδώ",
"Enter Tavily API Key": "Εισάγετε το Κλειδί API Tavily",
"Enter Tavily Extract Depth": "Εισάγετε το βάθος εξαγωγής του Tavily",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Εισάγετε το δημόσιο URL του WebUI σας. Αυτό το URL θα χρησιμοποιηθεί για να παράξει συνδέσμους στις ειδοποιήσεις.",
"Enter the URL of the function to import": "Εισάγετε το URL της συνάρτησης για εισαγωγή",
"Enter the URL to import": "Εισάγετε το URL για εισαγωγή",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "Εκτελέστε κώδικα για ανάλυση",
"Executing **{{NAME}}**...": "Εκτέλεση του **{{NAME}}**...",
"Execution Logs": "",
"Expand": "Επέκταση",
"Experimental": "Πειραματικό",
"Explain": "Επεξήγηση",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Εγκατάσταση από URL Github",
"Instant Auto-Send After Voice Transcription": "Άμεση Αυτόματη Αποστολή μετά τη μεταγραφή φωνής",
"Instructions": "",
"Integration": "Ενσωμάτωση",
"Integrations": "Ενσωματώσεις",
"Interface": "Διεπαφή Χρήστη",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "Τελευταία Ενεργή",
"Last Modified": "Τελευταία Τροποποίηση",
"Last ran": "",
"Last reply": "Τελευταία απάντηση",
"LDAP": "LDAP",
"LDAP server updated": "Ο διακομιστής LDAP ενημερώθηκε",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Το μοντέλο '{{modelName}}' κατεβάστηκε με επιτυχία.",
"Model '{{modelTag}}' is already in queue for downloading.": "Το μοντέλο '{{modelTag}}' βρίσκεται ήδη στην ουρά για λήψη.",
"Model {{modelId}} not found": "Το μοντέλο {{modelId}} δεν βρέθηκε",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Το μοντέλο {{modelName}} δεν έχει δυνατότητα όρασης",
"Model {{name}} is now {{status}}": "Το μοντέλο {{name}} είναι τώρα {{status}}",
"Model {{name}} is now hidden": "",
@@ -1295,8 +1317,11 @@
"Name": "Όνομα",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Ονομάστε τη βάση γνώσης σας",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Νέα Συνομιλία",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "Επόμενο μήνυμα",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "Δεν υπάρχει διαθέσιμη απόσταση",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Δεν έχει επιλεγεί αρχείο",
@@ -1374,6 +1402,7 @@
"Not factually correct": "Δεν είναι γεγονότα",
"Not helpful": "Δεν είναι χρήσιμο",
"Not Registered": "",
"Not scheduled": "",
"Note": "Σημείωση",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Σημείωση: Αν ορίσετε ένα ελάχιστο score, η αναζήτηση θα επιστρέψει μόνο έγγραφα με score μεγαλύτερο ή ίσο με το ελάχιστο score.",
@@ -1447,6 +1476,7 @@
"or": "ή",
"Ordered List": "",
"Other": "Άλλο",
"out of": "",
"Output": "",
"OUTPUT": "ΕΞΟΔΟΣ",
"Output format": "Μορφή εξόδου",
@@ -1462,6 +1492,7 @@
"Password": "Κωδικός",
"Passwords do not match.": "Οι κωδικοί δεν ταιριάζουν",
"Paste Large Text as File": "Επικόλληση Μεγάλου Κειμένου ως Αρχείο",
"Paused": "",
"PDF document (.pdf)": "Έγγραφο PDF (.pdf)",
"PDF Extract Images (OCR)": "Εξαγωγή Εικόνων PDF (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "Εγγραφή φωνής",
"Redirecting you to Open WebUI Community": "Μετακατεύθυνση στην Κοινότητα OpenWebUI",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Επαναταξινόμηση Μοντέλων",
"Repeats": "",
"Reply": "Απάντηση",
"Reply in Thread": "Απάντηση στο Νήμα Συζήτησης",
"Reply to thread...": "Απάντηση στο νήμα συζήτησης...",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "Εκτέλεση",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Εκτέλεση",
"Running...": "Εκτέλεση...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "Αποθήκευση Συνομιλίας",
"Saved": "Αποθηκευμένο",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Η αποθήκευση των αρχείων συνομιλίας απευθείας στη μνήμη αποθήκευσης του προγράμματος περιήγησής σας δεν υποστηρίζεται πλέον. Παρακαλώ αφιερώστε λίγο χρόνο να κατεβάσετε και να διαγράψετε τα αρχεία συνομιλίας σας κάνοντας κλικ στο κουμπί παρακάτω. Μην ανησυχείτε, μπορείτε εύκολα να επαναφέρετε τα αρχεία συνομιλιών σας στο backend μέσω",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Αναζήτηση",
"Search a model": "Αναζήτηση μοντέλου",
"Search all emojis": "Αναζήτησε όλα τα emojis",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "Βάση Αναζήτησης",
"Search channels and channel messages": "",
"Search Chats": "Αναζήτηση Συνομιλιών",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Επιλέξτε Knowledge",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Επιλέξτε μόνο ένα μοντέλο για κλήση",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Αρχή του καναλιού",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "Πατήστε για παύση",
"Task List": "Λίστα Εργασιών",
"Task Management": "",
"Task Model": "Μοντέλο Εργασίας",
"Tasks": "Εργασίες",
"tasks completed": "",
"Tavily API Key": "Κλειδί API Tavily",
"Tavily Extract Depth": "",
"Tell us more:": "Πείτε μας περισσότερα:",
@@ -1945,6 +1987,7 @@
"Tika": "",
"Tika Server URL required.": "Απαιτείται το URL διακομιστή Tika.",
"Tiktoken": "",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Τίτλος",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Για να επιλέξετε toolkits εδώ, προσθέστε τα πρώτα στον χώρο εργασίας \"Εργαλεία\".",
"Toast notifications for new updates": "Ειδοποιήσεις Toast για νέες ενημερώσεις",
"Today": "Σήμερα",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "Σήμερα στις {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "Προειδοποίηση",
"Warning:": "Προειδοποίηση:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Προειδοποίηση: Η ενεργοποίηση αυτού θα επιτρέψει στους χρήστες να ανεβάσουν αυθαίρετο κώδικα στον διακομιστή.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Προειδοποίηση: Η εκτέλεση του Jupyter επιτρέπει την εκτέλεση αυθαίρετου κώδικα, γεγονός που θέτει σοβαρούς κινδύνους ασφαλεία - προχωρήστε με εξαιρετική προσοχή.",
"Web": "Διαδίκτυο",
@@ -2134,6 +2179,7 @@
"Width": "Πλάτος",
"Wikipedia": "",
"Won": "Κέρδισε",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Χώρος Εργασίας",
"Workspace Permissions": "Δικαιώματα Χώρου Εργασίας",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "",
"AUTOMATIC1111 Base URL is required.": "",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "",
"Available models": "",
"Available Tools": "",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Boosting or penalising specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)",
"Brave": "",
"Brave Search API Key": "",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "",
"Confirm": "",
"Confirm Password": "",
@@ -452,6 +463,7 @@
"Create new secret key": "",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "",
"Created At": "",
@@ -473,6 +485,7 @@
"Data Controls": "",
"Database": "",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "",
"Delete chat?": "",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "",
"Embedding Model Engine": "",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "",
@@ -762,6 +778,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "",
"Explain": "",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "",
"Instant Auto-Send After Voice Transcription": "",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "",
"Last Modified": "",
"Last ran": "",
"Last reply": "",
"LDAP": "",
"LDAP server updated": "",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "",
"Model '{{modelTag}}' is already in queue for downloading.": "",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "",
"Model {{name}} is now {{status}}": "",
"Model {{name}} is now hidden": "",
@@ -1295,8 +1317,11 @@
"Name": "",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "",
@@ -1374,6 +1402,7 @@
"Not factually correct": "",
"Not helpful": "",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "",
@@ -1447,6 +1476,7 @@
"or": "",
"Ordered List": "",
"Other": "",
"out of": "",
"Output": "",
"OUTPUT": "",
"Output format": "",
@@ -1462,6 +1492,7 @@
"Password": "",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Paused": "",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "",
"Redirecting you to Open WebUI Community": "",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "",
"Run": "",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "",
"Running...": "",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "",
"Saved": "",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "",
"Search a model": "",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "",
"Search channels and channel messages": "",
"Search Chats": "",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "",
"Tavily Extract Depth": "",
"Tell us more:": "",
@@ -1945,6 +1987,7 @@
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "",
"Toast notifications for new updates": "",
"Today": "",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "",
"Warning:": "",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "",
"Workspace Permissions": "",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "",
"AUTOMATIC1111 Base URL is required.": "",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "",
"Available models": "",
"Available Tools": "",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "",
"Confirm": "",
"Confirm Password": "",
@@ -452,6 +463,7 @@
"Create new secret key": "",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "",
"Created At": "",
@@ -473,6 +485,7 @@
"Data Controls": "",
"Database": "",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "",
"Delete chat?": "",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "",
"Embedding Model Engine": "",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "",
@@ -762,6 +778,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "",
"Explain": "",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "",
"Instant Auto-Send After Voice Transcription": "",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "",
"Last Modified": "",
"Last ran": "",
"Last reply": "",
"LDAP": "",
"LDAP server updated": "",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "",
"Model '{{modelTag}}' is already in queue for downloading.": "",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "",
"Model {{name}} is now {{status}}": "",
"Model {{name}} is now hidden": "",
@@ -1295,8 +1317,11 @@
"Name": "",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "Next message",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "",
@@ -1374,6 +1402,7 @@
"Not factually correct": "",
"Not helpful": "",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "",
@@ -1447,6 +1476,7 @@
"or": "",
"Ordered List": "",
"Other": "",
"out of": "",
"Output": "",
"OUTPUT": "",
"Output format": "",
@@ -1462,6 +1492,7 @@
"Password": "",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Paused": "",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "",
"Redirecting you to Open WebUI Community": "",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "",
"Run": "",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "",
"Running...": "",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "",
"Saved": "",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "",
"Search a model": "",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "",
"Search channels and channel messages": "",
"Search Chats": "",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "",
"Tavily Extract Depth": "",
"Tell us more:": "",
@@ -1945,6 +1987,7 @@
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "",
"Toast notifications for new updates": "",
"Today": "",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "",
"Warning:": "",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "",
"Workspace Permissions": "",
@@ -183,6 +183,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "¿Seguro que quieres archivar todos los chats? Esta acción no se puede deshacer.",
"Are you sure you want to clear all memories? This action cannot be undone.": "¿Seguro de que quieres borrar todas las memorias? (¡esta acción NO se puede deshacer!)",
"Are you sure you want to delete \"{{NAME}}\"?": "¿Seguro de que quieres eliminar \"{{NAME}}\"?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "¿Seguro que quieres borrar todos los chats? Esta acción no se puede deshacer.",
"Are you sure you want to delete this channel?": "¿Seguro de que quieres eliminar este canal?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -199,6 +200,7 @@
"Assistant": "Asistente",
"Async Embedding Processing": "Procesado Asíncrono al Incrustrar",
"Attach File From Knowledge": "Adjuntar Archivo desde Conocimiento",
"Attach Files": "",
"Attach Knowledge": "Adjuntar Conocimiento",
"Attach Notes": "Adjuntar Notas",
"Attach Webpage": "Adjuntar Página Web",
@@ -221,6 +223,13 @@
"AUTOMATIC1111 Base URL": "URL Base de AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "la URL Base de AUTOMATIC1111 es necesaria.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "Inyectar automáticamente herramientas del sistema en el modo de llamada de función nativa (ej.: marcas de tiempo, memoria, historial de chat, notas, etc.)",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Lista disponible",
"Available models": "Modelos disponibles",
"Available Tools": "Herramientas Disponibles",
@@ -251,6 +260,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Impulsando o penalizando tokens específicos para respuestas restringidas. Los valores de sesgo se limitarán entre -100 y 100 (inclusive). (Por defecto: ninguno)",
"Brave": "Brave",
"Brave Search API Key": "Clave API de Brave Search",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "Explorar y consultar bases de conocimiento",
"Builtin Tools": "Herramientas Integradas",
"Bullet List": "Lista de Viñetas",
@@ -384,6 +394,7 @@
"Concurrent Requests": "Número de Solicitudes Concurrentes",
"Config": "Config",
"Config imported successfully": "Configuración importada correctamente",
"Configuration": "",
"Configure": "Configurar",
"Confirm": "Confirmar",
"Confirm Password": "Confirma Contraseña",
@@ -453,6 +464,7 @@
"Create new secret key": "Crear Nueva Clave Secreta",
"Create note": "Crear Nota",
"Create Note": "Crear Nota",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Crea tu primera nota pulsando el botón + de abajo",
"Created at": "Creado en",
"Created At": "Creado En",
@@ -474,6 +486,7 @@
"Data Controls": "Controles de Datos",
"Database": "Base de datos",
"Datalab Marker API": "API de Datalab Marker",
"Day": "",
"DD/MM/YYYY": "DD/MM/YYYY",
"DDGS Backend": "DDGS Backend",
"December": "Diciembre",
@@ -504,6 +517,7 @@
"Delete All": "Borrar Todo",
"Delete All Chats": "Borrar todos los chats",
"Delete all contents inside this folder": "Borrar todo el contenido de esta carpeta",
"Delete automation?": "",
"Delete Chat": "Borrar Chat",
"Delete chat?": "¿Borrar el chat?",
"Delete File": "Borrar Fichero",
@@ -648,6 +662,7 @@
"Embedding Concurrent Requests": "Número de Peticiones Concurrentes en Incrustración",
"Embedding Model": "Modelo de Incrustación",
"Embedding Model Engine": "Motor del Modelo de Incrustación",
"Emojis": "",
"Empty message": "",
"Enable All": "Habilitar Todo",
"Enable API Keys": "Habilitar Claves API",
@@ -739,6 +754,7 @@
"Enter Perplexity Search API URL": "Ingresar URL API para la Búsqueda de Perplexity",
"Enter Playwright Timeout": "Ingresar límite de tiempo de espera de Playwright",
"Enter Playwright WebSocket URL": "Ingresar URL de WebSocket de Playwright",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Ingresar URL del proxy (p.ej. https://user:password@host:port)",
"Enter reasoning effort": "Ingresar esfuerzo de razonamiento",
"Enter Score": "Ingresar Puntuación",
@@ -763,6 +779,7 @@
"Enter system prompt here": "Ingresa aquí el indicador del sistema",
"Enter Tavily API Key": "Ingresar Clave API de Tavily",
"Enter Tavily Extract Depth": "Ingresar parámetro de Extract Depth de Taviliy",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Ingresar URL pública de WebUI. Esta URL se usará para generar enlaces en las notificaciones.",
"Enter the URL of the function to import": "Ingresar la URL de la función a importar",
"Enter the URL to import": "Ingresar la URL a importar",
@@ -802,6 +819,7 @@
"Error accessing directory": "Error accediendo al directorio",
"Error accessing Google Drive: {{error}}": "Error accediendo a Google Drive: {{error}}",
"Error accessing media devices.": "Error accediendo a dispositivos de medios.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Error al comenzar la grabación.",
"Error unloading model: {{error}}": "Error subiendo el modelo: {{error}}",
"Error uploading file: {{error}}": "Error subiendo el archivo: {{error}}",
@@ -819,6 +837,7 @@
"Execute code": "Ejecuar código",
"Execute code for analysis": "Ejecutar código para análisis",
"Executing **{{NAME}}**...": "Ejecutando **{{NAME}}**...",
"Execution Logs": "",
"Expand": "Expandir",
"Experimental": "Experimental",
"Explain": "Explicar",
@@ -1082,6 +1101,7 @@
"Insert Suggestion Prompt to Input": "Insertar Indicador Sugerido a la Entrada",
"Install from Github URL": "Instalar desde la URL de Github",
"Instant Auto-Send After Voice Transcription": "AutoEnvio Instantaneo tras la Transcripción de Voz",
"Instructions": "",
"Integration": "Integración",
"Integrations": "Integraciones",
"Interface": "Interfaz",
@@ -1141,6 +1161,7 @@
"Last 90 days": "",
"Last Active": "Última Actividad",
"Last Modified": "Último Modificación",
"Last ran": "",
"Last reply": "Última Respuesta",
"LDAP": "LDAP",
"LDAP server updated": "Servidor LDAP actualizado",
@@ -1247,6 +1268,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Modelo '{{modelName}}' se ha descargado correctamente.",
"Model '{{modelTag}}' is already in queue for downloading.": "Modelo '{{modelTag}}' ya está en cola para descargar.",
"Model {{modelId}} not found": "Modelo {{modelId}} no encontrado",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Modelo {{modelName}} no esta capacitado para visión",
"Model {{name}} is now {{status}}": "Modelo {{name}} está ahora {{status}}",
"Model {{name}} is now hidden": "Modelo {{name}} está ahora oculto",
@@ -1296,8 +1318,11 @@
"Name": "Nombre",
"Name and ID are required, please fill them out": "Nombre e ID requeridos, por favor introducelos",
"Name your knowledge base": "Nombra tu base de conocimientos",
"Name, prompt, and model are required": "",
"Native": "Nativo",
"Never": "",
"New": "Nuevo",
"New Automation": "",
"New Button": "Nuevo Botón",
"New Chat": "Nuevo Chat",
"New File": "",
@@ -1316,9 +1341,11 @@
"New Webhook": "Nuevo Webhook",
"new-channel": "nuevo-canal",
"Next message": "Siguiente mensaje",
"Next run": "",
"No access grants. Private to you.": "Sin acceso concedido. Privado para tí.",
"No activity data": "Sin datos de actividad",
"No authentication": "Sin Autentificación",
"No automations found": "",
"No chats found": "No se encontró ningún chat",
"No chats found for this user.": "No se encontró ningún chat de este usuario",
"No chats found.": "No se encontró ningún chat",
@@ -1329,6 +1356,7 @@
"No data": "Sin datos",
"No data found": "No se encontró ningún dato",
"No distance available": "No hay distancia disponible",
"No execution logs available yet": "",
"No expiration can pose security risks.": "No expiración puede poner la seguridad en riesgo.",
"No feedback found": "No se encontró ninguna opinión",
"No file selected": "No se seleccionó archivo",
@@ -1375,6 +1403,7 @@
"Not factually correct": "No es correcto en todos los aspectos",
"Not helpful": "No aprovechable",
"Not Registered": "No Registrado",
"Not scheduled": "",
"Note": "Nota",
"Note deleted successfully": "Nota eliminada correctamente",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Si estableces una puntuación mínima, la búsqueda sólo devolverá documentos con una puntuación mayor o igual a la puntuación mínima establecida.",
@@ -1448,6 +1477,7 @@
"or": "o",
"Ordered List": "Lista Ordenada",
"Other": "Otro",
"out of": "",
"Output": "Salida",
"OUTPUT": "SALIDA",
"Output format": "Formato de salida",
@@ -1463,6 +1493,7 @@
"Password": "Contraseña",
"Passwords do not match.": "Las contraseñas no coinciden",
"Paste Large Text as File": "Pegar el Texto Largo como Archivo",
"Paused": "",
"PDF document (.pdf)": "Documento PDF (.pdf)",
"PDF Extract Images (OCR)": "Extraer imágenes del PDF (OCR)",
"PDF Loader Mode": "Modo de Carga del PDF",
@@ -1567,6 +1598,7 @@
"Reason": "Razonamiento",
"Reasoning Effort": "Esfuerzo del Razonamiento",
"Reasoning Tags": "Etiquetas de Razonamiento",
"Recently Used": "",
"Record": "Grabar",
"Record voice": "Grabar voz",
"Redirecting you to Open WebUI Community": "Redireccionando a la Comunidad Open-WebUI",
@@ -1602,6 +1634,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "Renderizar Markdown en Vista Previa",
"Reorder Models": "Reordenar Modelos",
"Repeats": "",
"Reply": "Responder",
"Reply in Thread": "Responder en Hilo",
"Reply to thread...": "Responder al hilo...",
@@ -1635,6 +1668,8 @@
"RTL": "RTL",
"Run": "Ejecutar",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Ejecutando",
"Running...": "Ejecutando...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Ejecuta tareas de incrustración concurrentes para acelerar el procesado. Desactivar si se generan problemas (por limitaciones de los motores de incrustracción en uso)",
@@ -1645,12 +1680,15 @@
"Save Chat": "Guardar Chat",
"Saved": "Guardado",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Ya no está soportado guardar registros de chat directamente en el almacenamiento del navegador. Por favor, dedica un momento a descargar y eliminar tus registros de chat pulsando en el botón de abajo. No te preocupes, puedes re-importar fácilmente tus registros desde las opciones de configuración",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Desplazamiento al Cambiar Rama",
"Search": "Buscar",
"Search a model": "Buscar un Modelo",
"Search all emojis": "Buscar todos los emojis",
"Search and manage user memories": "Buscar y gestionar memorias del usuario",
"Search and view user chat history": "Buscr y ver historial de los chat del usuario",
"Search Automations": "",
"Search Base": "Busqueda Base",
"Search channels and channel messages": "Buscar canales y mensajes del canal",
"Search Chats": "Buscar Chats",
@@ -1720,6 +1758,7 @@
"Select how to split message text for TTS requests": "Seleccionar como dividir los mensajes de texto para las peticiones TTS",
"Select Knowledge": "Seleccionar Conocimiento",
"Select Method": "Seleccionar Método",
"Select model": "",
"Select only one model to call": "Seleccionar sólo un modelo a llamar",
"Select view": "Seleccionar vista",
"Selected model: {{modelName}}": "Modelo seleccinado: {{modelName}}",
@@ -1829,6 +1868,7 @@
"Start of the channel": "Inicio del canal",
"Start Tag": "Etiqueta de Inicio",
"Starting kernel...": "",
"State": "",
"Status": "Estado",
"Status cleared successfully": "Estado limpiado correctamente",
"Status updated successfully": "Estado actualizado correctamente",
@@ -1879,8 +1919,10 @@
"Talk to Model": "Hablar al Modelo",
"Tap to interrupt": "Toca para interrumpir",
"Task List": "Lista de Tareas",
"Task Management": "",
"Task Model": "Modelo de Tarea",
"Tasks": "Tareas",
"tasks completed": "",
"Tavily API Key": "Clave API de Tavily",
"Tavily Extract Depth": "Parámetro Extract Depth de Taviliy",
"Tell us more:": "Dinos algo más:",
@@ -1947,6 +1989,7 @@
"Tika": "Tika",
"Tika Server URL required.": "URL del Servidor Tika necesaria",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "Tiempo y Cálculo",
"Timeout": "TimeOut",
"Title": "Título",
@@ -1964,6 +2007,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Para seleccionar herramientas aquí, primero añadelas a \"Herramientas\" en el área de trabajo.",
"Toast notifications for new updates": "Notificaciones emergentes para nuevas actualizaciones",
"Today": "Hoy",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "Hoy a las {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "Des/Plegar {{COUNT}} fuentes",
"Toggle 1 source": "Des/Plegar 1 fuente",
@@ -2102,6 +2146,7 @@
"Waiting for upload...": "",
"Warning": "Aviso",
"Warning:": "Aviso:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Aviso: Habilitar esto permitirá a los usuarios subir código arbitrario al servidor.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Aviso: La ejecución Jupyter habilita la ejecución de código arbitrario, planteando graves riesgos de seguridad; Proceder con extrema precaución.",
"Web": "Web",
@@ -2136,6 +2181,7 @@
"Width": "Ancho",
"Wikipedia": "Wikipedia",
"Won": "Ganó",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Trabaja conjuntamente con top-k. Un valor más alto (p.ej. 0.95) dará lugar a un texto más diverso, mientras que un valor más bajo (p.ej. 0.5) generará un texto más centrado y conservador.",
"Workspace": "Espacio de Trabajo",
"Workspace Permissions": "Permisos del Espacio de Trabajo",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "Kas olete kindel, et soovite arhiveerida kõik vestlused? Seda toimingut ei saa tagasi võtta.",
"Are you sure you want to clear all memories? This action cannot be undone.": "Kas olete kindel, et soovite kustutada kõik mälestused? Seda toimingut ei saa tagasi võtta.",
"Are you sure you want to delete \"{{NAME}}\"?": "Kas olete kindel, et soovite kustutada \"{{NAME}}\"?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "Kas olete kindel, et soovite kustutada kõik vestlused? Seda toimingut ei saa tagasi võtta.",
"Are you sure you want to delete this channel?": "Kas olete kindel, et soovite selle kanali kustutada?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "Assistent",
"Async Embedding Processing": "Asünkroonne manustamise töötlemine",
"Attach File From Knowledge": "Lisa fail teadmistest",
"Attach Files": "",
"Attach Knowledge": "Lisa teadmised",
"Attach Notes": "Lisa märkmed",
"Attach Webpage": "Lisa veebileht",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 baas-URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 baas-URL on nõutav.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "Sisesta automaatselt süsteemitööriistad omases funktsioonide kutsumise režiimis (nt ajatemplid, mälu, vestluse ajalugu, märkmed jne)",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Saadaolevate nimekiri",
"Available models": "Saadaolevad mudelid",
"Available Tools": "Saadaolevad tööriistad",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Konkreetsete tokenite võimendamine või karistamine piiratud vastuste jaoks. Kallutatuse väärtused piiratakse vahemikku -100 kuni 100 (kaasa arvatud). (Vaikimisi: puudub)",
"Brave": "Brave",
"Brave Search API Key": "Brave Search API võti",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "Sirvi ja päri teadmiste baase",
"Builtin Tools": "Sisseehitatud tööriistad",
"Bullet List": "Täpiline loend",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Samaaegsed päringud",
"Config": "Seadistus",
"Config imported successfully": "Seadistus edukalt imporditud",
"Configuration": "",
"Configure": "Konfigureeri",
"Confirm": "Kinnita",
"Confirm Password": "Kinnita parool",
@@ -452,6 +463,7 @@
"Create new secret key": "Loo uus salavõti",
"Create note": "Loo märge",
"Create Note": "Loo märge",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Loo oma esimene märge, klõpsates all olevat plussnuppu.",
"Created at": "Loomise aeg",
"Created At": "Loomise aeg",
@@ -473,6 +485,7 @@
"Data Controls": "Andmete juhtimine",
"Database": "Andmebaas",
"Datalab Marker API": "Datalab Marker API",
"Day": "",
"DD/MM/YYYY": "PP/KK/AAAA",
"DDGS Backend": "DDGS taustaserver",
"December": "Detsember",
@@ -503,6 +516,7 @@
"Delete All": "Kustuta kõik",
"Delete All Chats": "Kustuta kõik vestlused",
"Delete all contents inside this folder": "Kustuta kogu selle kausta sisu",
"Delete automation?": "",
"Delete Chat": "Kustuta vestlus",
"Delete chat?": "Kustutada vestlus?",
"Delete File": "Kustuta fail",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "Manustamise samaaegsed päringud",
"Embedding Model": "Manustamise mudel",
"Embedding Model Engine": "Manustamise mudeli mootor",
"Emojis": "",
"Empty message": "Tühi sõnum",
"Enable All": "Luba kõik",
"Enable API Keys": "Luba API võtmed",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "Sisestage Perplexity Search API URL",
"Enter Playwright Timeout": "Sisestage Playwright aegumine",
"Enter Playwright WebSocket URL": "Sisestage Playwright WebSocket URL",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Sisestage puhverserveri URL (nt https://kasutaja:parool@host:port)",
"Enter reasoning effort": "Sisestage arutluspingutus",
"Enter Score": "Sisestage skoor",
@@ -762,6 +778,7 @@
"Enter system prompt here": "Sisestage siia süsteemi sisend",
"Enter Tavily API Key": "Sisestage Tavily API võti",
"Enter Tavily Extract Depth": "Sisestage Tavily eraldamise sügavus",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Sisestage oma WebUI avalik URL. Seda URL-i kasutatakse teadaannetes linkide genereerimiseks.",
"Enter the URL of the function to import": "Sisestage imporditava funktsiooni URL",
"Enter the URL to import": "Sisestage imporditav URL",
@@ -801,6 +818,7 @@
"Error accessing directory": "Viga kataloogi juurdepääsul",
"Error accessing Google Drive: {{error}}": "Viga Google Drive'i juurdepääsul: {{error}}",
"Error accessing media devices.": "Viga meediumiseadmete juurdepääsul.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Viga salvestamise alustamisel.",
"Error unloading model: {{error}}": "Viga mudeli mahalaadimisel: {{error}}",
"Error uploading file: {{error}}": "Viga faili üleslaadimisel: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "Käivita kood",
"Execute code for analysis": "Käivita kood analüüsimiseks",
"Executing **{{NAME}}**...": "Käivitatakse **{{NAME}}**...",
"Execution Logs": "",
"Expand": "Laienda",
"Experimental": "Katsetuslik",
"Explain": "Selgita",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "Sisesta soovitussisend sisendisse",
"Install from Github URL": "Installige Github URL-ilt",
"Instant Auto-Send After Voice Transcription": "Kohene automaatne saatmine pärast hääle transkriptsiooni",
"Instructions": "",
"Integration": "Integratsioon",
"Integrations": "Integratsioonid",
"Interface": "Kasutajaliides",
@@ -1140,6 +1160,7 @@
"Last 90 days": "Viimased 90 päeva",
"Last Active": "Viimati aktiivne",
"Last Modified": "Viimati muudetud",
"Last ran": "",
"Last reply": "Viimane vastus",
"LDAP": "LDAP",
"LDAP server updated": "LDAP server uuendatud",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Mudel '{{modelName}}' on edukalt alla laaditud.",
"Model '{{modelTag}}' is already in queue for downloading.": "Mudel '{{modelTag}}' on juba allalaadimise järjekorras.",
"Model {{modelId}} not found": "Mudelit {{modelId}} ei leitud",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Mudel {{modelName}} ei ole võimeline visuaalseid sisendeid töötlema",
"Model {{name}} is now {{status}}": "Mudel {{name}} on nüüd {{status}}",
"Model {{name}} is now hidden": "Mudel {{name}} on nüüd peidetud",
@@ -1295,8 +1317,11 @@
"Name": "Nimi",
"Name and ID are required, please fill them out": "Nimi ja ID on nõutavad, palun täida need",
"Name your knowledge base": "Nimetage oma teadmiste baas",
"Name, prompt, and model are required": "",
"Native": "Omane",
"Never": "",
"New": "Uus",
"New Automation": "",
"New Button": "Uus nupp",
"New Chat": "Uus vestlus",
"New File": "Uus fail",
@@ -1315,9 +1340,11 @@
"New Webhook": "Uus webhook",
"new-channel": "uus-kanal",
"Next message": "Järgmine sõnum",
"Next run": "",
"No access grants. Private to you.": "Pole juurdepääsuõigusi. Privaatne teile.",
"No activity data": "Tegevusandmed puuduvad",
"No authentication": "Autentimist pole",
"No automations found": "",
"No chats found": "Vestlusi ei leitud",
"No chats found for this user.": "Sellel kasutajal vestlusi ei leitud.",
"No chats found.": "Vestlusi ei leitud.",
@@ -1328,6 +1355,7 @@
"No data": "Andmed puuduvad",
"No data found": "Andmeid ei leitud",
"No distance available": "Kaugus pole saadaval",
"No execution logs available yet": "",
"No expiration can pose security risks.": "Aegumise puudumine võib kujutada turvariske.",
"No feedback found": "Tagasisidet ei leitud",
"No file selected": "Faili pole valitud",
@@ -1374,6 +1402,7 @@
"Not factually correct": "Faktiliselt ebakorrektne",
"Not helpful": "Ei ole kasulik",
"Not Registered": "Pole registreeritud",
"Not scheduled": "",
"Note": "Märge",
"Note deleted successfully": "Märge edukalt kustutatud",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Märkus: kui määrate minimaalse skoori, tagastab otsing ainult dokumendid, mille skoor on suurem või võrdne minimaalse skooriga.",
@@ -1447,6 +1476,7 @@
"or": "või",
"Ordered List": "Nummerdatud loend",
"Other": "Muu",
"out of": "",
"Output": "Väljund",
"OUTPUT": "VÄLJUND",
"Output format": "Väljundformaat",
@@ -1462,6 +1492,7 @@
"Password": "Parool",
"Passwords do not match.": "Paroolid ei ühti.",
"Paste Large Text as File": "Kleebi suur tekst failina",
"Paused": "",
"PDF document (.pdf)": "PDF dokument (.pdf)",
"PDF Extract Images (OCR)": "PDF-ist piltide väljavõtmine (OCR)",
"PDF Loader Mode": "PDF laadija režiim",
@@ -1566,6 +1597,7 @@
"Reason": "Põhjus",
"Reasoning Effort": "Arutluspingutus",
"Reasoning Tags": "Arutlussildid",
"Recently Used": "",
"Record": "Salvesta",
"Record voice": "Salvesta hääl",
"Redirecting you to Open WebUI Community": "Suunamine Open WebUI kogukonda",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "Renderda Markdown eelvaadetes",
"Reorder Models": "Muuda mudelite järjekorda",
"Repeats": "",
"Reply": "Vasta",
"Reply in Thread": "Vasta lõimes",
"Reply to thread...": "Vasta lõimele...",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "Käivita",
"Run All": "Käivita kõik",
"Run now": "",
"Run Now": "",
"Running": "Töötab",
"Running...": "Töötab...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Käitab manustamisülesandeid samaaegselt töötlemise kiirendamiseks. Lülitage välja, kui piirangud muutuvad probleemiks.",
@@ -1643,12 +1678,15 @@
"Save Chat": "Salvesta vestlus",
"Saved": "Salvestatud",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Vestluslogi salvestamine otse teie brauseri mällu pole enam toetatud. Palun võtke hetk, et alla laadida ja kustutada oma vestluslogi, klõpsates allpool olevat nuppu. Ärge muretsege, saate hõlpsasti oma vestluslogi tagarakendusse uuesti importida, kasutades",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Keri haru muutmisel",
"Search": "Otsing",
"Search a model": "Otsi mudelit",
"Search all emojis": "Otsi kõigist emotikonidest",
"Search and manage user memories": "Otsi ja halda kasutaja mälestusi",
"Search and view user chat history": "Otsi ja vaata kasutaja vestluste ajalugu",
"Search Automations": "",
"Search Base": "Otsingu baas",
"Search channels and channel messages": "Otsi kanaleid ja kanalite sõnumeid",
"Search Chats": "Otsi vestlusi",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "Valige, kuidas jagada sõnumiteksti TTS-päringute jaoks",
"Select Knowledge": "Valige teadmised",
"Select Method": "Valige meetod",
"Select model": "",
"Select only one model to call": "Valige ainult üks mudel kutsumiseks",
"Select view": "Vali vaade",
"Selected model: {{modelName}}": "Valitud mudel: {{modelName}}",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Kanali algus",
"Start Tag": "Algussilt",
"Starting kernel...": "Kerneli käivitamine...",
"State": "",
"Status": "Olek",
"Status cleared successfully": "Olek edukalt tühjendatud",
"Status updated successfully": "Olek edukalt uuendatud",
@@ -1877,8 +1917,10 @@
"Talk to Model": "Räägi mudeliga",
"Tap to interrupt": "Puuduta katkestamiseks",
"Task List": "Ülesannete nimekiri",
"Task Management": "",
"Task Model": "Ülesannete mudel",
"Tasks": "Ülesanded",
"tasks completed": "",
"Tavily API Key": "Tavily API võti",
"Tavily Extract Depth": "Tavily eraldamise sügavus",
"Tell us more:": "Räägi meile lähemalt:",
@@ -1945,6 +1987,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Tika serveri URL on nõutav.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "Aeg ja arvutamine",
"Timeout": "Aegumine",
"Title": "Pealkiri",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Tööriistakomplektide siit valimiseks lisage need esmalt \"Tööriistade\" tööalale.",
"Toast notifications for new updates": "Hüpikmärguanded uuenduste kohta",
"Today": "Täna",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "Täna kell {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "Lülita {{COUNT}} allikat",
"Toggle 1 source": "Lülita 1 allikas",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "Üleslaadimise ootamine...",
"Warning": "Hoiatus",
"Warning:": "Hoiatus:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Hoiatus: Selle lubamine võimaldab kasutajatel üles laadida suvalist koodi serverisse.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Hoiatus: Jupyter täitmine võimaldab suvalise koodi käivitamist, mis kujutab endast tõsist turvariski - jätkake äärmise ettevaatusega.",
"Web": "Veeb",
@@ -2134,6 +2179,7 @@
"Width": "Laius",
"Wikipedia": "Vikipeedia",
"Won": "Võitis",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Töötab koos top-k-ga. Kõrgem väärtus (nt 0,95) annab tulemuseks mitmekesisema teksti, samas kui madalam väärtus (nt 0,5) genereerib keskendunuma ja konservatiivsema teksti.",
"Workspace": "Tööala",
"Workspace Permissions": "Tööala õigused",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "Laguntzailea",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Oinarri URLa",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Oinarri URLa beharrezkoa da.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Zerrenda erabilgarria",
"Available models": "",
"Available Tools": "",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "Brave Bilaketa API Gakoa",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Eskari Konkurrenteak",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "Konfiguratu",
"Confirm": "Berretsi",
"Confirm Password": "Berretsi Pasahitza",
@@ -452,6 +463,7 @@
"Create new secret key": "Sortu gako sekretu berria",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Sortze data",
"Created At": "Sortze Data",
@@ -473,6 +485,7 @@
"Data Controls": "",
"Database": "Datu-basea",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "Abendua",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "Ezabatu Txat Guztiak",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Ezabatu Txata",
"Delete chat?": "Ezabatu txata?",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Embedding Eredua",
"Embedding Model Engine": "Embedding Eredu Motorea",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "Sartu Puntuazioa",
@@ -762,6 +778,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "Sartu Tavily API Gakoa",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "Esperimentala",
"Explain": "",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Instalatu Github URLtik",
"Instant Auto-Send After Voice Transcription": "Bidalketa Automatiko Berehalakoa Ahots Transkripzioaren Ondoren",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "Interfazea",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "Azken Aktibitatea",
"Last Modified": "Azken Aldaketa",
"Last ran": "",
"Last reply": "",
"LDAP": "LDAP",
"LDAP server updated": "LDAP zerbitzaria eguneratu da",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' modeloa ongi deskargatu da.",
"Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' modeloa dagoeneko deskarga ilaran dago.",
"Model {{modelId}} not found": "{{modelId}} modeloa ez da aurkitu",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "{{modelName}} modeloak ez du ikusmen gaitasunik",
"Model {{name}} is now {{status}}": "{{name}} modeloa orain {{status}} dago",
"Model {{name}} is now hidden": "",
@@ -1295,8 +1317,11 @@
"Name": "Izena",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Izendatu zure ezagutza-basea",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Txat berria",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "Ez dago distantziarik eskuragarri",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Ez da fitxategirik hautatu",
@@ -1374,6 +1402,7 @@
"Not factually correct": "Ez da faktikoki zuzena",
"Not helpful": "Ez da lagungarria",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Oharra: Gutxieneko puntuazio bat ezartzen baduzu, bilaketak gutxieneko puntuazioa baino handiagoa edo berdina duten dokumentuak soilik itzuliko ditu.",
@@ -1447,6 +1476,7 @@
"or": "edo",
"Ordered List": "",
"Other": "Bestelakoa",
"out of": "",
"Output": "",
"OUTPUT": "IRTEERA",
"Output format": "Irteera formatua",
@@ -1462,6 +1492,7 @@
"Password": "Pasahitza",
"Passwords do not match.": "",
"Paste Large Text as File": "Itsatsi testu luzea fitxategi gisa",
"Paused": "",
"PDF document (.pdf)": "PDF dokumentua (.pdf)",
"PDF Extract Images (OCR)": "PDF irudiak erauzi (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "Grabatu ahotsa",
"Redirecting you to Open WebUI Community": "OpenWebUI Komunitatera berbideratzen",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Berrantolatu modeloak",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "Exekutatu",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Exekutatzen",
"Running...": "Exekutatzen...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "",
"Saved": "Gordeta",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Txat erregistroak zuzenean zure nabigatzailearen biltegian gordetzea ez da jadanik onartzen. Mesedez, hartu une bat zure txat erregistroak deskargatu eta ezabatzeko beheko botoia sakatuz. Ez kezkatu, zure txat erregistroak erraz inportatu ditzakezu berriro backendera honen bidez",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Bilatu",
"Search a model": "Bilatu modelo bat",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "Bilaketa oinarria",
"Search channels and channel messages": "",
"Search Chats": "Bilatu txatak",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Hautatu ezagutza",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Hautatu modelo bakarra deitzeko",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Kanalaren hasiera",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "Ukitu eteteko",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "Tavily API gakoa",
"Tavily Extract Depth": "",
"Tell us more:": "Kontatu gehiago:",
@@ -1945,6 +1987,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Tika zerbitzariaren URLa beharrezkoa da.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Izenburua",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Tresna-multzoak hemen hautatzeko, gehitu itzazu lehenik \"Tresnak\" lan-eremura.",
"Toast notifications for new updates": "Toast jakinarazpenak eguneraketa berrientzat",
"Today": "Gaur",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "Abisua",
"Warning:": "Abisua:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Abisua: Hau gaitzeak erabiltzaileei zerbitzarian kode arbitrarioa kargatzea ahalbidetuko die.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "Weba",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "Irabazi du",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Lan-eremua",
"Workspace Permissions": "Lan-eremuaren baimenak",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "آیا مطمئن هستید که می\u200cخواهید تمام حافظه\u200cها را پاک کنید؟ این عمل قابل بازگشت نیست.",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "آیا مطمئن هستید که می\u200cخواهید این کانال را حذف کنید؟",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "دستیار",
"Async Embedding Processing": "",
"Attach File From Knowledge": "پیوست فایل از دانش",
"Attach Files": "",
"Attach Knowledge": "پیوست دانش",
"Attach Notes": "پیوست یادداشت\u200cها",
"Attach Webpage": "پیوست صفحه وب",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "پایه URL AUTOMATIC1111 ",
"AUTOMATIC1111 Base URL is required.": "به URL پایه AUTOMATIC1111 مورد نیاز است.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "فهرست دردسترس",
"Available models": "",
"Available Tools": "ابزارهای موجود",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "تقویت یا جریمه توکن\u200cهای خاص برای پاسخ\u200cهای محدود. مقادیر بایاس بین -100 و 100 (شامل) محدود خواهند شد. (پیش\u200cفرض: هیچ)",
"Brave": "",
"Brave Search API Key": "کلید API جستجوی شجاع",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "لیست گلوله\u200cای",
@@ -383,6 +393,7 @@
"Concurrent Requests": "درخواست های همزمان",
"Config": "",
"Config imported successfully": "پیکربندی با موفقیت وارد شد",
"Configuration": "",
"Configure": "پیکربندی",
"Confirm": "تایید",
"Confirm Password": "تایید رمز عبور",
@@ -452,6 +463,7 @@
"Create new secret key": "ساخت کلید مخفی جدید",
"Create note": "",
"Create Note": "ایجاد یادداشت",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "با کلیک روی دکمه به\u200cعلاوه در زیر، اولین یادداشت خود را ایجاد کنید.",
"Created at": "ایجاد شده در",
"Created At": "ایجاد شده در",
@@ -473,6 +485,7 @@
"Data Controls": "کنترل\u200cهای داده",
"Database": "پایگاه داده",
"Datalab Marker API": "API مارکر دیتا\u200cلب",
"Day": "",
"DD/MM/YYYY": "روز/ماه/سال",
"DDGS Backend": "",
"December": "دسامبر",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "حذف همه گفتگوها",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "حذف گپ",
"Delete chat?": "گفتگو حذف شود؟",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "مدل پیدائش",
"Embedding Model Engine": "محرک مدل پیدائش",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "مهلت پلی\u200cرایت را وارد کنید",
"Enter Playwright WebSocket URL": "آدرس وب\u200cسوکت پلی\u200cرایت را وارد کنید",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "آدرس پراکسی را وارد کنید (مثال: https://user:password@host:port)",
"Enter reasoning effort": "تلاش استدلال را وارد کنید",
"Enter Score": "امتیاز را وارد کنید",
@@ -762,6 +778,7 @@
"Enter system prompt here": "پرامپت سیستم را اینجا وارد کنید",
"Enter Tavily API Key": "کلید API تاویلی را وارد کنید",
"Enter Tavily Extract Depth": "عمق استخراج تاویلی را وارد کنید",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "آدرس عمومی رابط کاربری وب خود را وارد کنید. این آدرس برای تولید پیوندها در اعلان\u200cها استفاده خواهد شد.",
"Enter the URL of the function to import": "آدرس URL تابع برای وارد کردن را وارد کنید",
"Enter the URL to import": "آدرس URL برای وارد کردن را وارد کنید",
@@ -801,6 +818,7 @@
"Error accessing directory": "خطا در دسترسی به دایرکتوری",
"Error accessing Google Drive: {{error}}": "خطا در دسترسی به گوگل درایو: {{error}}",
"Error accessing media devices.": "خطا در دسترسی به دستگاه\u200cهای رسانه\u200cای.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "خطا در شروع ضبط.",
"Error unloading model: {{error}}": "خطا در خارج کردن مدل: {{error}}",
"Error uploading file: {{error}}": "خطا در بارگذاری فایل: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "اجرای کد برای تحلیل",
"Executing **{{NAME}}**...": "در حال اجرای **{{NAME}}**...",
"Execution Logs": "",
"Expand": "گسترش",
"Experimental": "آزمایشی",
"Explain": "توضیح",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "درج پرامپت پیشنهادی در ورودی",
"Install from Github URL": "نصب از ادرس Github",
"Instant Auto-Send After Voice Transcription": "ارسال خودکار فوری پس از رونویسی صوتی",
"Instructions": "",
"Integration": "یکپارچه\u200cسازی",
"Integrations": "یکپارچه\u200cسازی\u200cها",
"Interface": "رابط",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "آخرین فعال",
"Last Modified": "آخرین تغییر",
"Last ran": "",
"Last reply": "آخرین پاسخ",
"LDAP": "LDAP",
"LDAP server updated": "سرور LDAP به\u200cروز شد",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "مدل '{{modelName}}' با موفقیت دانلود شد.",
"Model '{{modelTag}}' is already in queue for downloading.": "مدل '{{modelTag}}' در حال حاضر در صف برای دانلود است.",
"Model {{modelId}} not found": "مدل {{modelId}} یافت نشد",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "مدل {{modelName}} قادر به بینایی نیست",
"Model {{name}} is now {{status}}": "مدل {{name}} در حال حاضر {{status}}",
"Model {{name}} is now hidden": "مدل {{name}} اکنون مخفی است",
@@ -1295,8 +1317,11 @@
"Name": "نام",
"Name and ID are required, please fill them out": "نام و شناسه مورد نیاز هستند، لطفاً آنها را پر کنید",
"Name your knowledge base": "پایگاه دانش خود را نام\u200cگذاری کنید",
"Name, prompt, and model are required": "",
"Native": "بومی",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "دکمه جدید",
"New Chat": "گپ جدید",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "کانال-جدید",
"Next message": "پیام بعدی",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "بدون احراز هویت",
"No automations found": "",
"No chats found": "هیچ چتی یافت نشد",
"No chats found for this user.": "هیچ چتی برای این کاربر یافت نشد.",
"No chats found.": "هیچ چتی یافت نشد.",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "فاصله\u200cای در دسترس نیست",
"No execution logs available yet": "",
"No expiration can pose security risks.": "عدم انقضا می\u200cتواند خطرات امنیتی ایجاد کند.",
"No feedback found": "",
"No file selected": "فایلی انتخاب نشده است",
@@ -1374,6 +1402,7 @@
"Not factually correct": "اشتباهی فکری نیست",
"Not helpful": "مفید نیست",
"Not Registered": "ثبت نشده",
"Not scheduled": "",
"Note": "یادداشت",
"Note deleted successfully": "یادداشت با موفقیت حذف شد",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "توجه: اگر حداقل نمره را تعیین کنید، جستجو تنها اسنادی را با نمره بیشتر یا برابر با حداقل نمره باز می گرداند.",
@@ -1447,6 +1476,7 @@
"or": "یا",
"Ordered List": "لیست شماره\u200cگذاری شده",
"Other": "دیگر",
"out of": "",
"Output": "",
"OUTPUT": "خروجی",
"Output format": "قالب خروجی",
@@ -1462,6 +1492,7 @@
"Password": "رمز عبور",
"Passwords do not match.": "رمزهای عبور مطابقت ندارند.",
"Paste Large Text as File": "چسباندن متن بزرگ به عنوان فایل",
"Paused": "",
"PDF document (.pdf)": "PDF سند (.pdf)",
"PDF Extract Images (OCR)": "استخراج تصاویر از PDF (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "دلیل",
"Reasoning Effort": "تلاش استدلال",
"Reasoning Tags": "تگ\u200cهای استدلال",
"Recently Used": "",
"Record": "ضبط",
"Record voice": "ضبط صدا",
"Redirecting you to Open WebUI Community": "در حال هدایت به OpenWebUI Community",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "ترتیب مجدد مدل\u200cها",
"Repeats": "",
"Reply": "پاسخ",
"Reply in Thread": "پاسخ در رشته",
"Reply to thread...": "پاسخ به رشته...",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "اجرا",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "در حال اجرا",
"Running...": "در حال اجرا...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "ذخیره چت",
"Saved": "ذخیره شد",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "ذخیره گزارش\u200cهای چت مستقیماً در حافظه مرورگر شما دیگر پشتیبانی نمی\u200cشود. لطفاً با کلیک بر روی دکمه زیر، چند لحظه برای دانلود و حذف گزارش های چت خود وقت بگذارید. نگران نباشید، شما به راحتی می توانید گزارش های چت خود را از طریق بکند دوباره وارد کنید",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "اسکرول هنگام تغییر شاخه",
"Search": "جستجو",
"Search a model": "جستجوی یک مدل",
"Search all emojis": "جستجوی همه ایموجی\u200cها",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "پایه جستجو",
"Search channels and channel messages": "",
"Search Chats": "جستجو گفتگوها",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "نحوه تقسیم متن پیام برای درخواست\u200cهای TTS را انتخاب کنید",
"Select Knowledge": "انتخاب دانش",
"Select Method": "انتخاب روش",
"Select model": "",
"Select only one model to call": "تنها یک مدل را برای صدا زدن انتخاب کنید",
"Select view": "انتخاب نما",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "آغاز کانال",
"Start Tag": "تگ شروع",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "صحبت با مدل",
"Tap to interrupt": "برای وقفه ضربه بزنید",
"Task List": "لیست وظایف",
"Task Management": "",
"Task Model": "مدل وظیفه",
"Tasks": "وظایف",
"tasks completed": "",
"Tavily API Key": "کلید API تاویلی",
"Tavily Extract Depth": "عمق استخراج تاویلی",
"Tell us more:": "بیشتر بگویید:",
@@ -1945,6 +1987,7 @@
"Tika": "تیکا",
"Tika Server URL required.": "آدرس سرور تیکا مورد نیاز است.",
"Tiktoken": "تیک توکن",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "عنوان",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "برای انتخاب ابزارها در اینجا، ابتدا آنها را به فضای کاری \"ابزارها\" اضافه کنید.",
"Toast notifications for new updates": "اعلان\u200cهای پاپ\u200cآپ برای به\u200cروزرسانی\u200cهای جدید",
"Today": "امروز",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "امروز در {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "هشدار",
"Warning:": "هشدار",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "هشدار: فعال کردن این گزینه به کاربران اجازه می\u200cدهد کد دلخواه را روی سرور آپلود کنند.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "هشدار: اجرای ژوپیتر امکان اجرای کد دلخواه را فراهم می\u200cکند که خطرات امنیتی جدی به همراه دارد - با احتیاط زیاد ادامه دهید.",
"Web": "وب",
@@ -2134,6 +2179,7 @@
"Width": "عرض",
"Wikipedia": "",
"Won": "برنده شد",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "با top-k همکاری می\u200cکند. مقدار بالاتر (مثلاً 0.95) منجر به متن متنوع\u200cتر می\u200cشود، در حالی که مقدار پایین\u200cتر (مثلاً 0.5) متن متمرکزتر و محافظه\u200cکارانه\u200cتری تولید می\u200cکند.",
"Workspace": "محیط کار",
"Workspace Permissions": "مجوزهای محیط کار",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "Haluatko varmasti arkistoida kaikki keskustelut? Tätä toimintoa ei voi peruuttaa.",
"Are you sure you want to clear all memories? This action cannot be undone.": "Haluatko varmasti tyhjentää kaikki muistot? Tätä toimintoa ei voi peruuttaa.",
"Are you sure you want to delete \"{{NAME}}\"?": "Haluatko varmasti poistaa \"{{NAME}}\"?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "Haluatko varmasti poistaa kaikki keskustelut? Tätä toimintoa ei voi peruuttaa.",
"Are you sure you want to delete this channel?": "Haluatko varmasti poistaa tämän kanavan?",
"Are you sure you want to delete this connection? This action cannot be undone.": "Haluatko varmasti poistaa yhteyden? Tätä toimintoa ei voi peruuttaa.",
@@ -198,6 +199,7 @@
"Assistant": "Avustaja",
"Async Embedding Processing": "Asynkroninen upotus prosessointi",
"Attach File From Knowledge": "Liitä tiedosto tietämyksestä",
"Attach Files": "",
"Attach Knowledge": "Liitä tietoa",
"Attach Notes": "Liitä muistiinpanoja",
"Attach Webpage": "Liitä verkkosivu",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 verkko-osoite",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 verkko-osoite vaaditaan.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "Lisää järjestelmätyökaluja automaattisesti natiivissa toimintokutsutilassa (esim. aikaleimat, muisti, keskusteluhistoria, muistiinpanot jne.)",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Käytettävissä oleva luettelo",
"Available models": "Käytettävissä olevat mallit",
"Available Tools": "Käytettävissä olevat työkalut",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Tiettyjen tokeneiden tehostaminen tai rankaiseminen rajoitetuista vastauksista. Poikkeaman arvot rajoitetaan välille -100 ja 100 (mukaan lukien). (Oletus: ei mitään)",
"Brave": "",
"Brave Search API Key": "Brave Search API -avain",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "Selaa ja hae tietokannoista",
"Builtin Tools": "Sisäänrakennetut työkalut",
"Bullet List": "Luettelo",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Samanaikaiset pyynnöt",
"Config": "Määritykset",
"Config imported successfully": "Määritysten tuonti onnistui",
"Configuration": "",
"Configure": "Määritä",
"Confirm": "Vahvista",
"Confirm Password": "Vahvista salasana",
@@ -452,6 +463,7 @@
"Create new secret key": "Luo uusi salainen avain",
"Create note": "Luo muistiinpano",
"Create Note": "Luo muistiinpano",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Luo ensimmäinen muistiinpanosi painamalla alla olevaa plus painiketta.",
"Created at": "Luotu",
"Created At": "Luotu",
@@ -473,6 +485,7 @@
"Data Controls": "Datan hallinta",
"Database": "Tietokanta",
"Datalab Marker API": "Datalab Marker API",
"Day": "",
"DD/MM/YYYY": "DD/MM/YYYY",
"DDGS Backend": "DDGS-taustajärjestelmä",
"December": "joulukuu",
@@ -503,6 +516,7 @@
"Delete All": "Poista kaikki",
"Delete All Chats": "Poista kaikki keskustelut",
"Delete all contents inside this folder": "Poista kaikki sisällöt tästä kansiosta",
"Delete automation?": "",
"Delete Chat": "Poista keskustelu",
"Delete chat?": "Haluatko varmasti poistaa tämän keskustelun?",
"Delete File": "Poista tiedosto",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "Samanaikaiset upotuspyynnöt",
"Embedding Model": "Upotusmalli",
"Embedding Model Engine": "Upotusmallin moottori",
"Emojis": "",
"Empty message": "Tyhjä viesti",
"Enable All": "Ota kaikki käyttöön",
"Enable API Keys": "Ota API-avaimet käyttöön",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "Aseta Perplexity Search API verkko-osoite",
"Enter Playwright Timeout": "Aseta Playwright aikakatkaisu",
"Enter Playwright WebSocket URL": "Aseta Playwright WebSocket-aikakatkaisu",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Kirjoita välityspalvelimen verkko-osoite (esim. https://käyttäjä:salasana@host:portti)",
"Enter reasoning effort": "Kirjoita päättelyn määrä",
"Enter Score": "Kirjoita pistemäärä",
@@ -762,6 +778,7 @@
"Enter system prompt here": "Kirjoita järjestelmäkehote tähän",
"Enter Tavily API Key": "Kirjoita Tavily API -avain",
"Enter Tavily Extract Depth": "Kirjoita Tavily pominta syvyys",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Kirjoita julkinen WebUI verkko-osoitteesi. Verkko-osoitetta käytetään osoitteiden luontiin ilmoituksissa.",
"Enter the URL of the function to import": "Kirjoita tuotavan toiminnon verkko-osoite",
"Enter the URL to import": "Kirjoita tuotavan verkko-osoite",
@@ -801,6 +818,7 @@
"Error accessing directory": "Virhe hakemistoa avattaessa",
"Error accessing Google Drive: {{error}}": "Virhe yhdistäessä Google Drive: {{error}}",
"Error accessing media devices.": "Virhe medialaitteita käytettäessä.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Virhe nauhoitusta aloittaessa.",
"Error unloading model: {{error}}": "Virhe mallia ladattaessa: {{error}}",
"Error uploading file: {{error}}": "Virhe ladattaessa tiedostoa: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "Suorita koodi",
"Execute code for analysis": "Suorita koodi analysointia varten",
"Executing **{{NAME}}**...": "Suoritetaan **{{NAME}}**...",
"Execution Logs": "",
"Expand": "Laajenna",
"Experimental": "Kokeellinen",
"Explain": "Selitä",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "Lisää kehote ehdotus syötteeseen",
"Install from Github URL": "Asenna Github-URL:stä",
"Instant Auto-Send After Voice Transcription": "Heti automaattinen lähetys äänitunnistuksen jälkeen",
"Instructions": "",
"Integration": "Integrointi",
"Integrations": "Integraatiot",
"Interface": "Käyttöliittymä",
@@ -1140,6 +1160,7 @@
"Last 90 days": "Viimeiset 90 päivää",
"Last Active": "Viimeksi aktiivinen",
"Last Modified": "Viimeksi muokattu",
"Last ran": "",
"Last reply": "Viimeksi vastattu",
"LDAP": "LDAP",
"LDAP server updated": "LDAP-palvelin päivitetty",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Malli '{{modelName}}' ladattiin onnistuneesti.",
"Model '{{modelTag}}' is already in queue for downloading.": "Malli '{{modelTag}}' on jo jonossa ladattavaksi.",
"Model {{modelId}} not found": "Mallia {{modelId}} ei löytynyt",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Malli {{modelName}} ei kykene näkökykyyn",
"Model {{name}} is now {{status}}": "Malli {{name}} on nyt {{status}}",
"Model {{name}} is now hidden": "Malli {{name}} on nyt piilotettu",
@@ -1295,8 +1317,11 @@
"Name": "Nimi",
"Name and ID are required, please fill them out": "Nimi ja ID vaaditaan, täytä puuttuvat kentät",
"Name your knowledge base": "Anna tietokannalle nimi",
"Name, prompt, and model are required": "",
"Native": "Natiivi",
"Never": "",
"New": "Uusi",
"New Automation": "",
"New Button": "Uusi painike",
"New Chat": "Uusi keskustelu",
"New File": "Uusi tiedosto",
@@ -1315,9 +1340,11 @@
"New Webhook": "Uusi Webhook",
"new-channel": "uusi-kanava",
"Next message": "Seuraava viesti",
"Next run": "",
"No access grants. Private to you.": "Ei käyttöoikeuksia. Yksityinen sinulle.",
"No activity data": "Ei aktiivisuustietoja",
"No authentication": "Ei todennusta",
"No automations found": "",
"No chats found": "Keskuteluja ei löytynyt",
"No chats found for this user.": "Käyttäjän keskusteluja ei löytynyt.",
"No chats found.": "Keskusteluja ei löytynyt",
@@ -1328,6 +1355,7 @@
"No data": "Ei dataa",
"No data found": "Dataa ei löytynyt",
"No distance available": "Etäisyyttä ei saatavilla",
"No execution logs available yet": "",
"No expiration can pose security risks.": "Vanhenemisen laittamatta jättäminen voi altistaa tietoturvariskeille.",
"No feedback found": "Ei palautetta",
"No file selected": "Tiedostoa ei ole valittu",
@@ -1374,6 +1402,7 @@
"Not factually correct": "Ei faktuaalisesti oikein",
"Not helpful": "Ei hyödyllinen",
"Not Registered": "Ei kirjautunut",
"Not scheduled": "",
"Note": "Muistiinpano",
"Note deleted successfully": "Muistiinpano poistettiin onnistuneesti",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Huomautus: Jos asetat vähimmäispistemäärän, haku palauttaa vain sellaiset asiakirjat, joiden pistemäärä on vähintään vähimmäismäärä.",
@@ -1447,6 +1476,7 @@
"or": "tai",
"Ordered List": "Järjestetty lista",
"Other": "Muu",
"out of": "",
"Output": "Tuloste",
"OUTPUT": "TULOSTE",
"Output format": "Tulosteen muoto",
@@ -1462,6 +1492,7 @@
"Password": "Salasana",
"Passwords do not match.": "Salasanat eivät täsmää",
"Paste Large Text as File": "Liitä suuri teksti tiedostona",
"Paused": "",
"PDF document (.pdf)": "PDF-asiakirja (.pdf)",
"PDF Extract Images (OCR)": "Poimi kuvat PDF:stä (OCR)",
"PDF Loader Mode": "PDF latausmoodi",
@@ -1566,6 +1597,7 @@
"Reason": "Päättely",
"Reasoning Effort": "Päättelyn määrä",
"Reasoning Tags": "Päättely tagit",
"Recently Used": "",
"Record": "Nauhoita",
"Record voice": "Nauhoita ääntä",
"Redirecting you to Open WebUI Community": "Ohjataan sinut OpenWebUI-yhteisöön",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "Nimetty uudelleen {{name}}",
"Render Markdown in Previews": "Renderöi Markdown esikatseluissa",
"Reorder Models": "Uudelleenjärjestä malleja",
"Repeats": "",
"Reply": "Vastaa",
"Reply in Thread": "Vastaa ketjussa",
"Reply to thread...": "Vastaa ketjussa...",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "Suorita",
"Run All": "Suorita kaikki",
"Run now": "",
"Run Now": "",
"Running": "Käynnissä",
"Running...": "Käynnissä...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Suorittaa upotustehtäviä samanaikaisesti käsittelyn nopeuttamiseksi. Poista käytöstä, jos kutsurajoituksesta tulee ongelma.",
@@ -1643,12 +1678,15 @@
"Save Chat": "Tallenna keskustelu",
"Saved": "Tallennettu",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Keskustelulokien tallentaminen suoraan selaimen tallennustilaan ei ole enää tuettu. Lataa ja poista keskustelulokit napsauttamalla alla olevaa painiketta. Älä huoli, voit helposti tuoda keskustelulokit takaisin backendiin",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Vieritä haaran vaihtoon",
"Search": "Haku",
"Search a model": "Hae mallia",
"Search all emojis": "Hae emojeista",
"Search and manage user memories": "Hae ja hallinnoi käyttäjien muistoja",
"Search and view user chat history": "Hae ja tarkastele käyttäjän keskusteluhistoriaa",
"Search Automations": "",
"Search Base": "Hakupohja",
"Search channels and channel messages": "Hae kanavia ja kanavaviestejä",
"Search Chats": "Hae keskusteluja",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "Valitse, miten viestit jaetaan TTS-pyyntöjä varten",
"Select Knowledge": "Valitse tietämys",
"Select Method": "Valitse metodi",
"Select model": "",
"Select only one model to call": "Valitse vain yksi malli kutsuttavaksi",
"Select view": "Valitse näkymä",
"Selected model: {{modelName}}": "Valittu malli: {{modelName}}",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Kanavan alku",
"Start Tag": "Aloitus tagi",
"Starting kernel...": "Käynnistetään kerneliä...",
"State": "",
"Status": "Tila",
"Status cleared successfully": "Tila poistettu onnistuneesti",
"Status updated successfully": "Tila päivitetty onnistuneesti",
@@ -1877,8 +1917,10 @@
"Talk to Model": "Puhu mallille",
"Tap to interrupt": "Napauta keskeyttääksesi",
"Task List": "Tehtävälista",
"Task Management": "",
"Task Model": "Työmalli",
"Tasks": "Tehtävät",
"tasks completed": "",
"Tavily API Key": "Tavily API -avain",
"Tavily Extract Depth": "Tavily poiminta syvyys",
"Tell us more:": "Kerro lisää:",
@@ -1945,6 +1987,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Tika palvelimen verkko-osoite vaaditaan.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "Aika ja laskenta",
"Timeout": "Aikakatkaisu",
"Title": "Otsikko",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Valitaksesi työkalusettejä tässä, lisää ne ensin \"Työkalut\"-työtilaan.",
"Toast notifications for new updates": "Ilmoituspopuppien näyttäminen uusista päivityksistä",
"Today": "Tänään",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "Tänään {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "Näytä/piilota {{COUNT}} lähdettä",
"Toggle 1 source": "Näytä/piilota 1 lähde",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "Odottaa latausta...",
"Warning": "Varoitus",
"Warning:": "Varoitus:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Varoitus: Tämän käyttöönotto sallii käyttäjien ladata mielivaltaista koodia palvelimelle.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Varoitus: Jupyter käyttö voi mahdollistaa mielivaltaiseen koodin suorittamiseen, mikä voi aiheuttaa tietoturvariskejä - käytä äärimmäisen varoen.",
"Web": "Web",
@@ -2134,6 +2179,7 @@
"Width": "Leveys",
"Wikipedia": "",
"Won": "Voitti",
"Working Directory": "",
"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.": "Toimii top-k:n kanssa. Korkeampi arvo (esim. 0.95) johtaa monipuolisempaan tekstiin, kun taas matalampi arvo (esim. 0.5) tuottaa kohdennetumpaa ja konservatiivisempaa teksti.",
"Workspace": "Työtila",
"Workspace Permissions": "Työtilan käyttöoikeudet",
@@ -183,6 +183,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "Êtes-vous certain de vouloir supprimer toutes les mémoires ? Cette action est définitive.",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Êtes-vous sûr de vouloir supprimer ce canal ?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -199,6 +200,7 @@
"Assistant": "Assistant",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -221,6 +223,13 @@
"AUTOMATIC1111 Base URL": "URL de base AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "L'URL de base {AUTOMATIC1111} est requise.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Liste disponible",
"Available models": "",
"Available Tools": "Outils disponibles",
@@ -251,6 +260,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Renforcer ou pénaliser des éléments spécifiques pour les réponses contraintes. Les valeurs du biais seront comprises entre -100 et 100 (inclus). (Par défaut : aucun)",
"Brave": "",
"Brave Search API Key": "Clé API Brave Search",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -384,6 +394,7 @@
"Concurrent Requests": "Demandes concurrentes",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "Configurer",
"Confirm": "Confirmer",
"Confirm Password": "Confirmer le mot de passe",
@@ -453,6 +464,7 @@
"Create new secret key": "Créer une nouvelle clé secrète",
"Create note": "",
"Create Note": "Créer une note",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Créer votre première note en cliquant sur le boutton ci-dessous",
"Created at": "Créé le",
"Created At": "Créé le",
@@ -474,6 +486,7 @@
"Data Controls": "",
"Database": "Base de données",
"Datalab Marker API": "API Datalab Marker",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "Décembre",
@@ -504,6 +517,7 @@
"Delete All": "",
"Delete All Chats": "Supprimer toutes les conversations",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Supprimer la Conversation",
"Delete chat?": "Supprimer la conversation ?",
"Delete File": "",
@@ -648,6 +662,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Modèle d'embedding",
"Embedding Model Engine": "Moteur de modèle d'embedding",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -739,6 +754,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "Entrez le délai d'expiration Playwright",
"Enter Playwright WebSocket URL": "Entrez l'irl du websocket Playwright",
"Enter prompt here.": "",
"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": "Entrez l'effort de raisonnement",
"Enter Score": "Entrez votre score",
@@ -763,6 +779,7 @@
"Enter system prompt here": "Entrez le prompt système ici",
"Enter Tavily API Key": "Entrez la clé API Tavily",
"Enter Tavily Extract Depth": "Entrez la profondeur d'extraction de Tavily",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Entrez l'URL publique de votre WebUI. Cette URL sera utilisée pour générer des liens dans les notifications.",
"Enter the URL of the function to import": "Entrez l'url de la fonction à importer",
"Enter the URL to import": "Entrer l'url à importer",
@@ -802,6 +819,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Erreur d'accès à Google Drive : {{error}}",
"Error accessing media devices.": "Erreur lors de l'accès aux dispositifs medias",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Erreur lors du démarrage de l'enregistrement",
"Error unloading model: {{error}}": "Erreur lors du déchargement du modèle : {{error}}",
"Error uploading file: {{error}}": "Erreur de téléversement du fichier : {{error}}",
@@ -819,6 +837,7 @@
"Execute code": "",
"Execute code for analysis": "Executer le code pour l'analyse",
"Executing **{{NAME}}**...": "Execution **{{NAME}}**...",
"Execution Logs": "",
"Expand": "Développer",
"Experimental": "Expérimental",
"Explain": "Explique",
@@ -1082,6 +1101,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Installer depuis une URL GitHub",
"Instant Auto-Send After Voice Transcription": "Envoi automatique après la transcription",
"Instructions": "",
"Integration": "Intégration",
"Integrations": "",
"Interface": "Interface utilisateur",
@@ -1141,6 +1161,7 @@
"Last 90 days": "",
"Last Active": "Dernière activité",
"Last Modified": "Dernière modification",
"Last ran": "",
"Last reply": "Déernière réponse",
"LDAP": "LDAP",
"LDAP server updated": "Serveur LDAP mis à jour",
@@ -1247,6 +1268,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Le modèle '{{modelName}}' a été téléchargé avec succès.",
"Model '{{modelTag}}' is already in queue for downloading.": "Le modèle '{{modelTag}}' est déjà dans la file d'attente pour le téléchargement.",
"Model {{modelId}} not found": "Modèle {{modelId}} introuvable",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Le modèle {{modelName}} n'a pas de capacités visuelles",
"Model {{name}} is now {{status}}": "Le modèle {{name}} est désormais {{status}}.",
"Model {{name}} is now hidden": "Le modèle {{name}} est maintenant masqué",
@@ -1296,8 +1318,11 @@
"Name": "Nom d'utilisateur",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nommez votre base de connaissances",
"Name, prompt, and model are required": "",
"Native": "Natif",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Nouvelle conversation",
"New File": "",
@@ -1316,9 +1341,11 @@
"New Webhook": "",
"new-channel": "nouveau-canal",
"Next message": "Message suivant",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "Pas de conversation trouvée pour cet utilisateur.",
"No chats found.": "Pas de conversation trouvée.",
@@ -1329,6 +1356,7 @@
"No data": "",
"No data found": "",
"No distance available": "Aucune distance disponible",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Aucun fichier sélectionné",
@@ -1375,6 +1403,7 @@
"Not factually correct": "Non factuellement correct",
"Not helpful": "Pas utile",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "Suppression de la note effective",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Note : Si vous définissez un score minimum, seuls les documents ayant un score supérieur ou égal à ce score minimum seront retournés par la recherche.",
@@ -1448,6 +1477,7 @@
"or": "ou",
"Ordered List": "",
"Other": "Autre",
"out of": "",
"Output": "",
"OUTPUT": "SORTIE",
"Output format": "Format de sortie",
@@ -1463,6 +1493,7 @@
"Password": "Mot de passe",
"Passwords do not match.": "",
"Paste Large Text as File": "Coller un texte volumineux comme fichier",
"Paused": "",
"PDF document (.pdf)": "Document au format PDF (.pdf)",
"PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)",
"PDF Loader Mode": "",
@@ -1567,6 +1598,7 @@
"Reason": "Raisonne",
"Reasoning Effort": "Effort de raisonnement",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "Enregistrement",
"Record voice": "Enregistrer la voix",
"Redirecting you to Open WebUI Community": "Redirection vers la communauté OpenWebUI",
@@ -1602,6 +1634,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Réorganiser les modèles",
"Repeats": "",
"Reply": "",
"Reply in Thread": "Répondre dans le fil de discussion",
"Reply to thread...": "",
@@ -1635,6 +1668,8 @@
"RTL": "RTL",
"Run": "Exécuter",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Exécution",
"Running...": "Exécution...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1645,12 +1680,15 @@
"Save Chat": "",
"Saved": "Enregistré",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "La sauvegarde des journaux de conversation directement dans le stockage de votre navigateur n'est plus prise en charge. Veuillez prendre un instant pour télécharger et supprimer vos journaux de conversation en cliquant sur le bouton ci-dessous. Ne vous inquiétez pas, vous pouvez facilement réimporter vos journaux de conversation dans le backend via",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Défilement lors du changement de branche",
"Search": "Recherche",
"Search a model": "Rechercher un modèle",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "Base de recherche",
"Search channels and channel messages": "",
"Search Chats": "Rechercher des conversations",
@@ -1720,6 +1758,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Sélectionnez une connaissance",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Sélectionnez seulement un modèle pour appeler",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1829,6 +1868,7 @@
"Start of the channel": "Début du canal",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1879,8 +1919,10 @@
"Talk to Model": "",
"Tap to interrupt": "Appuyez pour interrompre",
"Task List": "",
"Task Management": "",
"Task Model": "Modèle pour les tâches",
"Tasks": "Tâches",
"tasks completed": "",
"Tavily API Key": "Clé API Tavily",
"Tavily Extract Depth": "Profondeur d'extraction Tavily",
"Tell us more:": "Dites-nous en plus à ce sujet : ",
@@ -1947,6 +1989,7 @@
"Tika": "Tika",
"Tika Server URL required.": "URL du serveur Tika requise.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Titre",
@@ -1964,6 +2007,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Pour sélectionner des outils ici, ajoutez-les d'abord à l'espace de travail « Outils ». ",
"Toast notifications for new updates": "Notifications toast pour les nouvelles mises à jour",
"Today": "Aujourd'hui",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2102,6 +2146,7 @@
"Waiting for upload...": "",
"Warning": "Avertissement",
"Warning:": "Avertissement :",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Avertissement : Activer cette option permettra aux utilisateurs de télécharger du code arbitraire sur le serveur.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Avertissement : L'exécution Jupyter permet l'exécution de code arbitraire, ce qui présente des risques de sécurité importants. Procédez avec une extrême prudence.",
"Web": "Web",
@@ -2136,6 +2181,7 @@
"Width": "",
"Wikipedia": "",
"Won": "Victoires",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Fonctionne avec top-k. Une valeur élevée (par exemple, 0,95) conduira à un texte plus diversifié, tandis qu'une valeur plus faible (par exemple, 0,5) générera un texte plus ciblé et conservateur.",
"Workspace": "Espace de travail",
"Workspace Permissions": "Autorisations de l'espace de travail",
@@ -183,6 +183,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "Êtes-vous sûr de vouloir archiver toutes les conversations ? Cette action est irréversible.",
"Are you sure you want to clear all memories? This action cannot be undone.": "Êtes-vous certain de vouloir supprimer toutes les mémoires ? Cette action est irréversible.",
"Are you sure you want to delete \"{{NAME}}\"?": "Êtes-vous sûr de vouloir supprimer \"{{NAME}}\" ?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "Êtes-vous sûr de vouloir supprimer toutes les conversations ? Cette action est irréversible.",
"Are you sure you want to delete this channel?": "Êtes-vous sûr de vouloir supprimer ce canal ?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -199,6 +200,7 @@
"Assistant": "Assistant",
"Async Embedding Processing": "Traitement asynchrone des embeddings",
"Attach File From Knowledge": "Joindre un fichier depuis les connaissances",
"Attach Files": "",
"Attach Knowledge": "Joindre une connaissance",
"Attach Notes": "Joindre une note",
"Attach Webpage": "Joindre une page web",
@@ -221,6 +223,13 @@
"AUTOMATIC1111 Base URL": "URL de base AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "L'URL de base {AUTOMATIC1111} est requise.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "Injecte automatiquement les outils système en mode d'appel de fonctions natif (par ex. horodatage, mémoire, historique des conversations, notes, etc.)",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Liste disponible",
"Available models": "Modèles disponibles",
"Available Tools": "Outils disponibles",
@@ -251,6 +260,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Renforcer ou pénaliser des éléments spécifiques pour les réponses contraintes. Les valeurs du biais seront comprises entre -100 et 100 (inclus). (Par défaut : aucun)",
"Brave": "Brave",
"Brave Search API Key": "Clé API Brave Search",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "Parcourir et interroger les bases de connaissances",
"Builtin Tools": "Outils intégrés",
"Bullet List": "Liste à puces",
@@ -384,6 +394,7 @@
"Concurrent Requests": "Demandes concurrentes",
"Config": "Configuration",
"Config imported successfully": "Configuration importée avec succès",
"Configuration": "",
"Configure": "Configurer",
"Confirm": "Confirmer",
"Confirm Password": "Confirmer le mot de passe",
@@ -453,6 +464,7 @@
"Create new secret key": "Créer une nouvelle clé secrète",
"Create note": "Créer une note",
"Create Note": "Créer une note",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Créer votre première note en cliquant sur le boutton ci-dessous",
"Created at": "Créé le",
"Created At": "Créé le",
@@ -474,6 +486,7 @@
"Data Controls": "Contrôles des données",
"Database": "Base de données",
"Datalab Marker API": "API Datalab Marker",
"Day": "",
"DD/MM/YYYY": "DD/MM/YYYY",
"DDGS Backend": "DDGS Backend",
"December": "Décembre",
@@ -504,6 +517,7 @@
"Delete All": "Tout supprimer",
"Delete All Chats": "Supprimer toutes les conversations",
"Delete all contents inside this folder": "Supprimer tout le contenu de ce dossier",
"Delete automation?": "",
"Delete Chat": "Supprimer la Conversation",
"Delete chat?": "Supprimer la conversation ?",
"Delete File": "Supprimer le fichier",
@@ -648,6 +662,7 @@
"Embedding Concurrent Requests": "Requêtes d'embedding simultanées",
"Embedding Model": "Modèle d'embedding",
"Embedding Model Engine": "Moteur de modèle d'embedding",
"Emojis": "",
"Empty message": "Message vide",
"Enable All": "Activer tout",
"Enable API Keys": "Autoriser les clés API",
@@ -739,6 +754,7 @@
"Enter Perplexity Search API URL": "Entrez l'URL de l'API Perplexity",
"Enter Playwright Timeout": "Entrez le délai d'expiration Playwright",
"Enter Playwright WebSocket URL": "Entrez l'URL du websocket Playwright",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Entrez l'URL du proxy (par ex. https://user:password@host:port)",
"Enter reasoning effort": "Entrez l'effort de raisonnement",
"Enter Score": "Entrez votre score",
@@ -763,6 +779,7 @@
"Enter system prompt here": "Entrez le prompt système ici",
"Enter Tavily API Key": "Entrez la clé API Tavily",
"Enter Tavily Extract Depth": "Entrez la profondeur d'extraction de Tavily",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Entrez l'URL publique de votre WebUI. Cette URL sera utilisée pour générer des liens dans les notifications.",
"Enter the URL of the function to import": "Entrez l'URL de la fonction à importer",
"Enter the URL to import": "Entrez l'URL à importer",
@@ -802,6 +819,7 @@
"Error accessing directory": "Erreur d'accès au répertoire",
"Error accessing Google Drive: {{error}}": "Erreur d'accès à Google Drive : {{error}}",
"Error accessing media devices.": "Erreur lors de l'accès aux dispositifs medias",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Erreur lors du démarrage de l'enregistrement",
"Error unloading model: {{error}}": "Erreur lors du déchargement du modèle : {{error}}",
"Error uploading file: {{error}}": "Erreur de téléversement du fichier : {{error}}",
@@ -819,6 +837,7 @@
"Execute code": "Exécuter du code",
"Execute code for analysis": "Exécuter le code pour l'analyse",
"Executing **{{NAME}}**...": "Exécution de **{{NAME}}**...",
"Execution Logs": "",
"Expand": "Développer",
"Experimental": "Expérimental",
"Explain": "Explique",
@@ -1082,6 +1101,7 @@
"Insert Suggestion Prompt to Input": "Insérer le prompt suggéré dans la zone de saisie",
"Install from Github URL": "Installer depuis une URL GitHub",
"Instant Auto-Send After Voice Transcription": "Envoi automatique après la transcription",
"Instructions": "",
"Integration": "Intégration",
"Integrations": "Intégrations",
"Interface": "Interface utilisateur",
@@ -1141,6 +1161,7 @@
"Last 90 days": "90 derniers jours",
"Last Active": "Dernière activité",
"Last Modified": "Dernière modification",
"Last ran": "",
"Last reply": "Dernière réponse",
"LDAP": "LDAP",
"LDAP server updated": "Serveur LDAP mis à jour",
@@ -1247,6 +1268,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Le modèle '{{modelName}}' a été téléchargé avec succès.",
"Model '{{modelTag}}' is already in queue for downloading.": "Le modèle '{{modelTag}}' est déjà dans la file d'attente pour le téléchargement.",
"Model {{modelId}} not found": "Modèle {{modelId}} introuvable",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Le modèle {{modelName}} n'a pas de fonctionnalité de vision",
"Model {{name}} is now {{status}}": "Le modèle {{name}} est désormais {{status}}.",
"Model {{name}} is now hidden": "Le modèle {{name}} est maintenant masqué",
@@ -1296,8 +1318,11 @@
"Name": "Nom d'utilisateur",
"Name and ID are required, please fill them out": "Le nom et l'ID sont obligatoires, veuillez les remplir",
"Name your knowledge base": "Nommez votre base de connaissances",
"Name, prompt, and model are required": "",
"Native": "Natif",
"Never": "",
"New": "Nouveaux",
"New Automation": "",
"New Button": "Nouveau bouton",
"New Chat": "Nouvelle conversation",
"New File": "Nouveau fichier",
@@ -1316,9 +1341,11 @@
"New Webhook": "Nouveau webhook",
"new-channel": "nouveau-canal",
"Next message": "Message suivant",
"Next run": "",
"No access grants. Private to you.": "Aucun partage. Visible uniquement par vous.",
"No activity data": "Aucune activité",
"No authentication": "Aucune authentification",
"No automations found": "",
"No chats found": "Aucune discussion trouvée",
"No chats found for this user.": "Pas de conversation trouvée pour cet utilisateur.",
"No chats found.": "Pas de conversation trouvée.",
@@ -1329,6 +1356,7 @@
"No data": "Aucune donnée",
"No data found": "Aucune donnée trouvée",
"No distance available": "Aucune distance disponible",
"No execution logs available yet": "",
"No expiration can pose security risks.": "L'absence d'expiration peut présenter des risques de sécurité.",
"No feedback found": "Aucun avis trouvé",
"No file selected": "Aucun fichier sélectionné",
@@ -1375,6 +1403,7 @@
"Not factually correct": "Non factuellement correct",
"Not helpful": "Pas utile",
"Not Registered": "Non enregistré",
"Not scheduled": "",
"Note": "Note",
"Note deleted successfully": "Note supprimée avec succès",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Note : Si vous définissez un score minimum, seuls les documents ayant un score supérieur ou égal à ce score minimum seront retournés par la recherche.",
@@ -1448,6 +1477,7 @@
"or": "ou",
"Ordered List": "Liste ordonnée",
"Other": "Autre",
"out of": "",
"Output": "Sortie",
"OUTPUT": "SORTIE",
"Output format": "Format de sortie",
@@ -1463,6 +1493,7 @@
"Password": "Mot de passe",
"Passwords do not match.": "Les mots de passe ne correspondent pas.",
"Paste Large Text as File": "Coller un texte volumineux comme fichier",
"Paused": "",
"PDF document (.pdf)": "Document au format PDF (.pdf)",
"PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)",
"PDF Loader Mode": "Mode de chargement des PDF",
@@ -1567,6 +1598,7 @@
"Reason": "Raisonne",
"Reasoning Effort": "Effort de raisonnement",
"Reasoning Tags": "Balises de raisonnement",
"Recently Used": "",
"Record": "Enregistrement",
"Record voice": "Enregistrer la voix",
"Redirecting you to Open WebUI Community": "Redirection vers la communauté OpenWebUI",
@@ -1602,6 +1634,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "Afficher le Markdown dans les aperçus",
"Reorder Models": "Réorganiser les modèles",
"Repeats": "",
"Reply": "Répondre",
"Reply in Thread": "Répondre dans le fil de discussion",
"Reply to thread...": "Répondre au fil de discussion...",
@@ -1635,6 +1668,8 @@
"RTL": "RTL",
"Run": "Exécuter",
"Run All": "Tout exécuter",
"Run now": "",
"Run Now": "",
"Running": "Exécution",
"Running...": "Exécution...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Exécute les tâches d'embedding en parallèle pour accélérer le traitement. Désactivez si les limites de débit posent problème.",
@@ -1645,12 +1680,15 @@
"Save Chat": "Enregistrer la conversation",
"Saved": "Enregistré",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "La sauvegarde des journaux de conversation directement dans le stockage de votre navigateur n'est plus prise en charge. Veuillez prendre un instant pour télécharger et supprimer vos journaux de conversation en cliquant sur le bouton ci-dessous. Ne vous inquiétez pas, vous pouvez facilement réimporter vos journaux de conversation dans le backend via",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Défilement lors du changement de branche",
"Search": "Recherche",
"Search a model": "Rechercher un modèle",
"Search all emojis": "Rechercher tous les emojis",
"Search and manage user memories": "Rechercher et gérer les éléments mémorisés de l'utilisateur",
"Search and view user chat history": "Rechercher et afficher l'historique des conversations de l'utilisateur",
"Search Automations": "",
"Search Base": "Base de recherche",
"Search channels and channel messages": "Rechercher des canaux et des messages dans ces canaux",
"Search Chats": "Rechercher des conversations",
@@ -1720,6 +1758,7 @@
"Select how to split message text for TTS requests": "Sélectionnez comment diviser le texte du message pour les requêtes TTS",
"Select Knowledge": "Sélectionnez une connaissance",
"Select Method": "Sélectionner une méthode",
"Select model": "",
"Select only one model to call": "Sélectionnez seulement un modèle pour appeler",
"Select view": "Sélectionner la vue",
"Selected model: {{modelName}}": "Modèle sélectionné : {{modelName}}",
@@ -1829,6 +1868,7 @@
"Start of the channel": "Début du canal",
"Start Tag": "Balise de départ",
"Starting kernel...": "Démarrage du noyau...",
"State": "",
"Status": "Statut",
"Status cleared successfully": "Statut effacé avec succès",
"Status updated successfully": "Statut mis à jour avec succès",
@@ -1879,8 +1919,10 @@
"Talk to Model": "Parler au modèle",
"Tap to interrupt": "Appuyez pour interrompre",
"Task List": "Liste pour les tâches",
"Task Management": "",
"Task Model": "Modèle pour les tâches",
"Tasks": "Tâches",
"tasks completed": "",
"Tavily API Key": "Clé API Tavily",
"Tavily Extract Depth": "Profondeur d'extraction Tavily",
"Tell us more:": "Dites-nous en plus à ce sujet : ",
@@ -1947,6 +1989,7 @@
"Tika": "Tika",
"Tika Server URL required.": "URL du serveur Tika requise.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "Horodatage",
"Timeout": "Délai d'expiration",
"Title": "Titre",
@@ -1964,6 +2007,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Pour sélectionner des outils ici, ajoutez-les d'abord à l'espace de travail « Outils ». ",
"Toast notifications for new updates": "Notifications toast pour les nouvelles mises à jour",
"Today": "Aujourd'hui",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "Aujourd'hui à {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "Afficher/masquer {{COUNT}} sources",
"Toggle 1 source": "Afficher/masquer 1 source",
@@ -2102,6 +2146,7 @@
"Waiting for upload...": "En attente du téléversement...",
"Warning": "Avertissement",
"Warning:": "Avertissement :",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Avertissement : Activer cette option permettra aux utilisateurs de télécharger du code arbitraire sur le serveur.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Avertissement : L'exécution Jupyter permet l'exécution de code arbitraire, ce qui présente des risques de sécurité importants. Procédez avec une extrême prudence.",
"Web": "Web",
@@ -2136,6 +2181,7 @@
"Width": "Largeur",
"Wikipedia": "Wikipedia",
"Won": "Victoires",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Fonctionne avec top-k. Une valeur élevée (par exemple, 0,95) conduira à un texte plus diversifié, tandis qu'une valeur plus faible (par exemple, 0,5) générera un texte plus ciblé et conservateur.",
"Workspace": "Espace de travail",
"Workspace Permissions": "Autorisations de l'espace de travail",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "¿Seguro que queres eliminar este canal?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "Asistente",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "Dirección URL de AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "A dirección URL de AUTOMATIC1111 e requerida.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Lista dispoñible",
"Available models": "",
"Available Tools": "",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "Chave de API da busqueda Brave",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Solicitudes simultáneas",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "Configurar",
"Confirm": "Confirmar",
"Confirm Password": "Confirmar Contrasinal ",
@@ -452,6 +463,7 @@
"Create new secret key": "Xerar unha nova chave secreta",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Creado en",
"Created At": "Creado en",
@@ -473,6 +485,7 @@
"Data Controls": "",
"Database": "Base de datos",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "Decembro",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "Eliminar todos os chats",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Borrar Chat",
"Delete chat?": "Borrar o chat?",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Modelo de Embedding",
"Embedding Model Engine": "Motor de Modelo de Embedding",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Ingrese a URL do proxy (p.ej. https://user:password@host:port)",
"Enter reasoning effort": "Ingrese o esfuerzo de razonamiento",
"Enter Score": "Ingrese a puntuación",
@@ -762,6 +778,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "Ingrese a chave API de Tavily",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Ingrese a URL pública da sua WebUI. Esta URL utilizaráse para generar enlaces en as notificacions.",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Error o acceder a Google Drive: {{error}}",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "Error o subir o Arquivo: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "Ejecutar código para análisis",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "expandir",
"Experimental": "Experimental",
"Explain": "Explicar",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Instalar desde a URL de Github",
"Instant Auto-Send After Voice Transcription": "Auto-Enviar despois da Transcripción de Voz",
"Instructions": "",
"Integration": "Integración",
"Integrations": "",
"Interface": "Interfaz",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "Última Actividad",
"Last Modified": "Modificado por última vez",
"Last ran": "",
"Last reply": "Última respuesta",
"LDAP": "LDAP",
"LDAP server updated": "Servidor LDAP actualizado",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "0 modelo '{{modelName}}' se ha descargado correctamente.",
"Model '{{modelTag}}' is already in queue for downloading.": "0 modelo '{{modelTag}}' ya está en cola para descargar.",
"Model {{modelId}} not found": "0 modelo {{modelId}} no fue encontrado",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "O modelo {{modelName}} no es capaz de ver",
"Model {{name}} is now {{status}}": "O modelo {{name}} ahora es {{status}}",
"Model {{name}} is now hidden": "",
@@ -1295,8 +1317,11 @@
"Name": "Nombre",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nombra a tua base de coñecementos",
"Name, prompt, and model are required": "",
"Native": "Nativo",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Novo Chat",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "novo-canal",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "Non ten distancia disponible",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Ningún arquivo fué seleccionado",
@@ -1374,6 +1402,7 @@
"Not factually correct": "No es correcto en todos os aspectos",
"Not helpful": "No útil",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Se estableces unha puntuación mínima, a búsqueda sólo devolverá documentos con unha puntuación mayor o igual a a puntuación mínima.",
@@ -1447,6 +1476,7 @@
"or": "ou",
"Ordered List": "",
"Other": "Outro",
"out of": "",
"Output": "",
"OUTPUT": "SAIDA",
"Output format": "Formato de saida",
@@ -1462,6 +1492,7 @@
"Password": "Contrasinal ",
"Passwords do not match.": "",
"Paste Large Text as File": "Pegar texto grande como arquivo",
"Paused": "",
"PDF document (.pdf)": "Documento PDF (.pdf)",
"PDF Extract Images (OCR)": "Extraer imaxes de PDF (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "Esfuerzo de razonamiento",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "Grabar voz",
"Redirecting you to Open WebUI Community": "Redireccionándote a a comunidad OpenWebUI",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Reordenar modelos",
"Repeats": "",
"Reply": "",
"Reply in Thread": "Responder no hilo",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "Executar",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Executando",
"Running...": "Executando...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "",
"Saved": "Gardado",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Xa non se admite gardar registros de chat directamente no almacenamiento da sua navegador. Tómese un momento para descargar y eliminar sus registros de chat haciendo clic no botón a continuación. No te preocupes, puedes volver a importar fácilmente tus registros de chat al backend a través de",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Buscar",
"Search a model": "Buscar un modelo",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "Base de búsqueda",
"Search channels and channel messages": "",
"Search Chats": "Chats de búsqueda",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Selecciona coñecemento",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Selecciona sólo un modelo para llamar",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Inicio da canle",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "Toca para interrumpir",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "Tareas",
"tasks completed": "",
"Tavily API Key": "chave API de Tavily",
"Tavily Extract Depth": "",
"Tell us more:": "Dinos mais:",
@@ -1945,6 +1987,7 @@
"Tika": "Tika",
"Tika Server URL required.": "URL do servidor de Tika",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Título",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Para seleccionar ferramentas aquí, agreguelas al área de trabajo \"Ferramentas\" primeiro.",
"Toast notifications for new updates": "Notificacions emergentes para novas actualizacions",
"Today": "Hoxe",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "Advertencia",
"Warning:": "Advertencia:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Advertencia: Habilitar esto permitirá a os usuarios subir código arbitrario no servidor.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Aviso: A execución de Jupyter permite a execución de código arbitrario, o que supón riscos de seguridade graves - procede con extrema precaución.",
"Web": "Web",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "Ganado",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Funciona xunto con top-k. Un valor máis alto (por exemplo, 0,95) dará lugar a un texto máis diverso, mentres que un valor máis baixo (por exemplo, 0,5) xerará un texto máis centrado e conservador.",
"Workspace": "Espacio de traballo",
"Workspace Permissions": "Permisos do espacio de traballo",
@@ -183,6 +183,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -199,6 +200,7 @@
"Assistant": "",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -221,6 +223,13 @@
"AUTOMATIC1111 Base URL": "כתובת URL בסיסית של AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "נדרשת כתובת URL בסיסית של AUTOMATIC1111",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "",
"Available models": "",
"Available Tools": "כלים זמינים",
@@ -251,6 +260,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "מפתח API של חיפוש אמיץ",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -384,6 +394,7 @@
"Concurrent Requests": "בקשות בו-זמניות",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "",
"Confirm": "",
"Confirm Password": "אשר סיסמה",
@@ -453,6 +464,7 @@
"Create new secret key": "צור מפתח סודי חדש",
"Create note": "",
"Create Note": "יצירת פתק",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "נוצר ב",
"Created At": "נוצר ב",
@@ -474,6 +486,7 @@
"Data Controls": "",
"Database": "מסד נתונים",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "דצמבר",
@@ -504,6 +517,7 @@
"Delete All": "",
"Delete All Chats": "מחק את כל הצ'אטים",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "מחק צ'אט",
"Delete chat?": "",
"Delete File": "",
@@ -648,6 +662,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "מודל הטמעה",
"Embedding Model Engine": "מנוע מודל הטמעה",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -739,6 +754,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "הזן ציון",
@@ -763,6 +779,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -802,6 +819,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -819,6 +837,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "ניסיוני",
"Explain": "",
@@ -1082,6 +1101,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "התקן מכתובת URL של Github",
"Instant Auto-Send After Voice Transcription": "",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "ממשק",
@@ -1141,6 +1161,7 @@
"Last 90 days": "",
"Last Active": "פעיל לאחרונה",
"Last Modified": "",
"Last ran": "",
"Last reply": "",
"LDAP": "",
"LDAP server updated": "",
@@ -1247,6 +1268,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "המודל '{{modelName}}' הורד בהצלחה.",
"Model '{{modelTag}}' is already in queue for downloading.": "המודל '{{modelTag}}' כבר בתור להורדה.",
"Model {{modelId}} not found": "המודל {{modelId}} לא נמצא",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "דגם {{modelName}} אינו בעל יכולת ראייה",
"Model {{name}} is now {{status}}": "דגם {{name}} הוא כעת {{status}}",
"Model {{name}} is now hidden": "",
@@ -1296,8 +1318,11 @@
"Name": "שם",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "צ'אט חדש",
"New File": "",
@@ -1316,9 +1341,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "לא נמצאו צ'אטים ליוזר הזה.",
"No chats found.": "לא נמצאו צ'אטים",
@@ -1329,6 +1356,7 @@
"No data": "",
"No data found": "",
"No distance available": "",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "",
@@ -1375,6 +1403,7 @@
"Not factually correct": "לא נכון מבחינה עובדתית",
"Not helpful": "",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "פתק נמחק בהצלחה",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "הערה: אם תקבע ציון מינימלי, החיפוש יחזיר רק מסמכים עם ציון שגבוה או שווה לציון המינימלי.",
@@ -1448,6 +1477,7 @@
"or": "או",
"Ordered List": "",
"Other": "אחר",
"out of": "",
"Output": "",
"OUTPUT": "",
"Output format": "",
@@ -1463,6 +1493,7 @@
"Password": "סיסמה",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Paused": "",
"PDF document (.pdf)": "מסמך PDF (.pdf)",
"PDF Extract Images (OCR)": "חילוץ תמונות מ-PDF (OCR)",
"PDF Loader Mode": "",
@@ -1567,6 +1598,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "הקלט קול",
"Redirecting you to Open WebUI Community": "מפנה אותך לקהילת OpenWebUI",
@@ -1602,6 +1634,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1635,6 +1668,8 @@
"RTL": "RTL",
"Run": "",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "",
"Running...": "פועל...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1645,12 +1680,15 @@
"Save Chat": "",
"Saved": "",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "שמירת יומני צ'אט ישירות באחסון הדפדפן שלך אינה נתמכת יותר. אנא הקדש רגע להוריד ולמחוק את יומני הצ'אט שלך על ידי לחיצה על הכפתור למטה. אל דאגה, באפשרותך לייבא מחדש בקלות את יומני הצ'אט שלך לשרת האחורי דרך",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "חפש",
"Search a model": "חפש מודל",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "",
"Search channels and channel messages": "",
"Search Chats": "חיפוש צ'אטים",
@@ -1720,6 +1758,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1829,6 +1868,7 @@
"Start of the channel": "תחילת הערוץ",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1879,8 +1919,10 @@
"Talk to Model": "",
"Tap to interrupt": "",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "",
"Tavily Extract Depth": "",
"Tell us more:": "תרשמו יותר:",
@@ -1947,6 +1989,7 @@
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "שם",
@@ -1964,6 +2007,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "",
"Toast notifications for new updates": "",
"Today": "היום",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2102,6 +2146,7 @@
"Waiting for upload...": "",
"Warning": "אזהרה",
"Warning:": "אזהרה:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "רשת",
@@ -2136,6 +2181,7 @@
"Width": "",
"Wikipedia": "",
"Won": "",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "סביבה",
"Workspace Permissions": "",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 बेस यूआरएल",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 का बेस यूआरएल आवश्यक है।",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "",
"Available models": "",
"Available Tools": "",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "Brave सर्च एपीआई कुंजी",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "समवर्ती अनुरोध",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "",
"Confirm": "",
"Confirm Password": "पासवर्ड की पुष्टि कीजिये",
@@ -452,6 +463,7 @@
"Create new secret key": "नया क्रिप्टोग्राफिक क्षेत्र बनाएं",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "किस समय बनाया गया",
"Created At": "किस समय बनाया गया",
@@ -473,6 +485,7 @@
"Data Controls": "",
"Database": "डेटाबेस",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "डिसेंबर",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "सभी चैट हटाएं",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "चैट हटाएं",
"Delete chat?": "",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "मॉडेल अनुकूलन",
"Embedding Model Engine": "एंबेडिंग मॉडल इंजन",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "स्कोर दर्ज करें",
@@ -762,6 +778,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "प्रयोगात्मक",
"Explain": "",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Github URL से इंस्टॉल करें",
"Instant Auto-Send After Voice Transcription": "",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "इंटरफेस",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "पिछली बार सक्रिय",
"Last Modified": "",
"Last ran": "",
"Last reply": "",
"LDAP": "",
"LDAP server updated": "",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "मॉडल '{{modelName}}' सफलतापूर्वक डाउनलोड हो गया है।",
"Model '{{modelTag}}' is already in queue for downloading.": "मॉडल '{{modelTag}}' पहले से ही डाउनलोड करने के लिए कतार में है।",
"Model {{modelId}} not found": "मॉडल {{modelId}} नहीं मिला",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "मॉडल {{modelName}} दृष्टि सक्षम नहीं है",
"Model {{name}} is now {{status}}": "मॉडल {{name}} अब {{status}} है",
"Model {{name}} is now hidden": "",
@@ -1295,8 +1317,11 @@
"Name": "नाम",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "नई चैट",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "",
@@ -1374,6 +1402,7 @@
"Not factually correct": "तथ्यात्मक रूप से सही नहीं है",
"Not helpful": "",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ध्यान दें: यदि आप न्यूनतम स्कोर निर्धारित करते हैं, तो खोज केवल न्यूनतम स्कोर से अधिक या उसके बराबर स्कोर वाले दस्तावेज़ वापस लाएगी।",
@@ -1447,6 +1476,7 @@
"or": "या",
"Ordered List": "",
"Other": "अन्य",
"out of": "",
"Output": "",
"OUTPUT": "",
"Output format": "",
@@ -1462,6 +1492,7 @@
"Password": "पासवर्ड",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Paused": "",
"PDF document (.pdf)": "PDF दस्तावेज़ (.pdf)",
"PDF Extract Images (OCR)": "PDF छवियाँ निकालें (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "आवाज रिकॉर्ड करना",
"Redirecting you to Open WebUI Community": "आपको OpenWebUI समुदाय पर पुनर्निर्देशित किया जा रहा है",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "",
"Running...": "चल रहा है...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "",
"Saved": "",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "चैट लॉग को सीधे आपके ब्राउज़र के स्टोरेज में सहेजना अब समर्थित नहीं है। कृपया नीचे दिए गए बटन पर क्लिक करके डाउनलोड करने और अपने चैट लॉग को हटाने के लिए कुछ समय दें। चिंता न करें, आप आसानी से अपने चैट लॉग को बैकएंड पर पुनः आयात कर सकते हैं",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "खोजें",
"Search a model": "एक मॉडल खोजें",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "",
"Search channels and channel messages": "",
"Search Chats": "चैट खोजें",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "चैनल की शुरुआत",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "",
"Tavily Extract Depth": "",
"Tell us more:": "हमें और अधिक बताएँ:",
@@ -1945,6 +1987,7 @@
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "शीर्षक",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "",
"Toast notifications for new updates": "",
"Today": "आज",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "चेतावनी",
"Warning:": "चेतावनी:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "वेब",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "वर्कस्पेस",
"Workspace Permissions": "",
@@ -183,6 +183,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -199,6 +200,7 @@
"Assistant": "",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -221,6 +223,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 osnovni URL",
"AUTOMATIC1111 Base URL is required.": "Potreban je AUTOMATIC1111 osnovni URL.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "",
"Available models": "",
"Available Tools": "",
@@ -251,6 +260,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "Brave tražilica - API ključ",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -384,6 +394,7 @@
"Concurrent Requests": "Istodobni zahtjevi",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "",
"Confirm": "",
"Confirm Password": "Potvrdite lozinku",
@@ -453,6 +464,7 @@
"Create new secret key": "Stvori novi tajni ključ",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Stvoreno",
"Created At": "Stvoreno",
@@ -474,6 +486,7 @@
"Data Controls": "",
"Database": "Baza podataka",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "Prosinac",
@@ -504,6 +517,7 @@
"Delete All": "",
"Delete All Chats": "Izbriši sve razgovore",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Izbriši razgovor",
"Delete chat?": "",
"Delete File": "",
@@ -648,6 +662,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Embedding model",
"Embedding Model Engine": "Embedding model pogon",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -739,6 +754,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "Unesite ocjenu",
@@ -763,6 +779,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -802,6 +819,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -819,6 +837,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "Eksperimentalno",
"Explain": "",
@@ -1082,6 +1101,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Instaliraj s Github URL-a",
"Instant Auto-Send After Voice Transcription": "Trenutačno automatsko slanje nakon glasovne transkripcije",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "Sučelje",
@@ -1141,6 +1161,7 @@
"Last 90 days": "",
"Last Active": "Zadnja aktivnost",
"Last Modified": "",
"Last ran": "",
"Last reply": "",
"LDAP": "",
"LDAP server updated": "",
@@ -1247,6 +1268,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' je uspješno preuzet.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je već u redu za preuzimanje.",
"Model {{modelId}} not found": "Model {{modelId}} nije pronađen",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} ne čita vizualne impute",
"Model {{name}} is now {{status}}": "Model {{name}} sada je {{status}}",
"Model {{name}} is now hidden": "",
@@ -1296,8 +1318,11 @@
"Name": "Ime",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Novi razgovor",
"New File": "",
@@ -1316,9 +1341,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1329,6 +1356,7 @@
"No data": "",
"No data found": "",
"No distance available": "",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "",
@@ -1375,6 +1403,7 @@
"Not factually correct": "Nije činjenično točno",
"Not helpful": "",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Napomena: Ako postavite minimalnu ocjenu, pretraga će vratiti samo dokumente s ocjenom većom ili jednakom minimalnoj ocjeni.",
@@ -1448,6 +1477,7 @@
"or": "ili",
"Ordered List": "",
"Other": "Ostalo",
"out of": "",
"Output": "",
"OUTPUT": "",
"Output format": "",
@@ -1463,6 +1493,7 @@
"Password": "Lozinka",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Paused": "",
"PDF document (.pdf)": "PDF dokument (.pdf)",
"PDF Extract Images (OCR)": "PDF izdvajanje slika (OCR)",
"PDF Loader Mode": "",
@@ -1567,6 +1598,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "Snimanje glasa",
"Redirecting you to Open WebUI Community": "Preusmjeravanje na OpenWebUI zajednicu",
@@ -1602,6 +1634,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1635,6 +1668,8 @@
"RTL": "RTL",
"Run": "",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Pokrenuto",
"Running...": "Pokrenuto...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1645,12 +1680,15 @@
"Save Chat": "",
"Saved": "",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Spremanje zapisnika razgovora izravno u pohranu vašeg preglednika više nije podržano. Molimo vas da odvojite trenutak za preuzimanje i brisanje zapisnika razgovora klikom na gumb ispod. Ne brinite, možete lako ponovno uvesti zapisnike razgovora u backend putem",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Pretraga",
"Search a model": "Pretraži model",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "",
"Search channels and channel messages": "",
"Search Chats": "Pretraži razgovore",
@@ -1720,6 +1758,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Odaberite samo jedan model za poziv",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1829,6 +1868,7 @@
"Start of the channel": "Početak kanala",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1879,8 +1919,10 @@
"Talk to Model": "",
"Tap to interrupt": "",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "",
"Tavily Extract Depth": "",
"Tell us more:": "Recite nam više:",
@@ -1947,6 +1989,7 @@
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Naslov",
@@ -1964,6 +2007,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "",
"Toast notifications for new updates": "",
"Today": "Danas",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2102,6 +2146,7 @@
"Waiting for upload...": "",
"Warning": "Upozorenje",
"Warning:": "Upozorenje:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "Web",
@@ -2136,6 +2181,7 @@
"Width": "",
"Wikipedia": "",
"Won": "",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Radna ploča",
"Workspace Permissions": "",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "Biztosan törölni szeretnéd az összes memóriát? Ez a művelet nem vonható vissza.",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Biztosan törölni szeretnéd ezt a csatornát?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "Asszisztens",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 alap URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 alap URL szükséges.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Elérhető lista",
"Available models": "",
"Available Tools": "Elérhető eszközök",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Specifikus tokenek növelése vagy büntetése korlátozott válaszokhoz. Az elfogultság értékei -100 és 100 között lesznek rögzítve (beleértve). (Alapértelmezett: nincs)",
"Brave": "",
"Brave Search API Key": "Brave Search API kulcs",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Párhuzamos kérések",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "Konfigurálás",
"Confirm": "Megerősítés",
"Confirm Password": "Jelszó megerősítése",
@@ -452,6 +463,7 @@
"Create new secret key": "Új titkos kulcs létrehozása",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Létrehozva",
"Created At": "Létrehozva",
@@ -473,6 +485,7 @@
"Data Controls": "",
"Database": "Adatbázis",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "December",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "Minden beszélgetés törlése",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Beszélgetés törlése",
"Delete chat?": "Törli a beszélgetést?",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Beágyazási modell",
"Embedding Model Engine": "Beágyazási modell motor",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Add meg a proxy URL-t (pl. https://user:password@host:port)",
"Enter reasoning effort": "Add meg az érvelési erőfeszítést",
"Enter Score": "Add meg a pontszámot",
@@ -762,6 +778,7 @@
"Enter system prompt here": "Írd ide a rendszer promptot",
"Enter Tavily API Key": "Add meg a Tavily API kulcsot",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Add meg a WebUI nyilvános URL-jét. Ez az URL lesz használva az értesítésekben lévő linkek generálásához.",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Hiba a Google Drive elérése során: {{error}}",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "Hiba a fájl feltöltése során: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "Kód végrehajtása elemzéshez",
"Executing **{{NAME}}**...": "**{{NAME}}** végrehajtása...",
"Execution Logs": "",
"Expand": "Kibontás",
"Experimental": "Kísérleti",
"Explain": "Magyarázat",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Telepítés Github URL-ről",
"Instant Auto-Send After Voice Transcription": "Azonnali automatikus küldés hangfelismerés után",
"Instructions": "",
"Integration": "Integráció",
"Integrations": "",
"Interface": "Felület",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "Utoljára aktív",
"Last Modified": "Utoljára módosítva",
"Last ran": "",
"Last reply": "Utolsó válasz",
"LDAP": "LDAP",
"LDAP server updated": "LDAP szerver frissítve",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "A '{{modelName}}' modell sikeresen letöltve.",
"Model '{{modelTag}}' is already in queue for downloading.": "A '{{modelTag}}' modell már a letöltési sorban van.",
"Model {{modelId}} not found": "A {{modelId}} modell nem található",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "A {{modelName}} modell nem képes képfeldolgozásra",
"Model {{name}} is now {{status}}": "A {{name}} modell most {{status}} állapotban van",
"Model {{name}} is now hidden": "A {{name}} modell most elrejtve",
@@ -1295,8 +1317,11 @@
"Name": "Név",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Nevezd el a tudásbázisodat",
"Name, prompt, and model are required": "",
"Native": "Natív",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Új beszélgetés",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "új csatorna",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "Nincs elérhető távolság",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Nincs kiválasztva fájl",
@@ -1374,6 +1402,7 @@
"Not factually correct": "Tényszerűen nem helyes",
"Not helpful": "Nem segítőkész",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Megjegyzés: Ha minimum pontszámot állít be, a keresés csak olyan dokumentumokat ad vissza, amelyek pontszáma nagyobb vagy egyenlő a minimum pontszámmal.",
@@ -1447,6 +1476,7 @@
"or": "vagy",
"Ordered List": "",
"Other": "Egyéb",
"out of": "",
"Output": "",
"OUTPUT": "KIMENET",
"Output format": "Kimeneti formátum",
@@ -1462,6 +1492,7 @@
"Password": "Jelszó",
"Passwords do not match.": "",
"Paste Large Text as File": "Nagy szöveg beillesztése fájlként",
"Paused": "",
"PDF document (.pdf)": "PDF dokumentum (.pdf)",
"PDF Extract Images (OCR)": "PDF képek kinyerése (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "Érvelési erőfeszítés",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "Hang rögzítése",
"Redirecting you to Open WebUI Community": "Átirányítás az OpenWebUI közösséghez",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Modellek átrendezése",
"Repeats": "",
"Reply": "",
"Reply in Thread": "Válasz szálban",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "Futtatás",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Fut",
"Running...": "Fut...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "",
"Saved": "Mentve",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "A csevegési naplók közvetlen mentése a böngésző tárolójába már nem támogatott. Kérjük, szánjon egy percet a csevegési naplók letöltésére és törlésére az alábbi gomb megnyomásával. Ne aggódjon, könnyen újra importálhatja a csevegési naplókat a backend-be",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Keresés",
"Search a model": "Modell keresése",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "Keresési alap",
"Search channels and channel messages": "",
"Search Chats": "Beszélgetések keresése",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Tudásbázis kiválasztása",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Csak egy modellt válasszon ki hívásra",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "A csatorna eleje",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "Koppintson a megszakításhoz",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "Feladatok",
"tasks completed": "",
"Tavily API Key": "Tavily API kulcs",
"Tavily Extract Depth": "",
"Tell us more:": "Mondjon többet:",
@@ -1945,6 +1987,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Tika szerver URL szükséges.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Cím",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Az eszközkészletek kiválasztásához először adja hozzá őket a \"Tools\" munkaterülethez.",
"Toast notifications for new updates": "Felugró értesítések az új frissítésekről",
"Today": "Ma",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "Figyelmeztetés",
"Warning:": "Figyelmeztetés:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Figyelmeztetés: Ennek engedélyezése lehetővé teszi a felhasználók számára, hogy tetszőleges kódot töltsenek fel a szerverre.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Figyelmeztetés: A Jupyter végrehajtás lehetővé teszi a tetszőleges kód végrehajtását, ami súlyos biztonsági kockázatot jelent – óvatosan folytassa.",
"Web": "Web",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "Nyert",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "A top-k-val együtt működik. Magasabb érték (pl. 0,95) változatosabb szöveget eredményez, alacsonyabb érték (pl. 0,5) fókuszáltabb és konzervatívabb szöveget generál.",
"Workspace": "Munkaterület",
"Workspace Permissions": "Munkaterület engedélyek",
@@ -181,6 +181,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -197,6 +198,7 @@
"Assistant": "",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -219,6 +221,13 @@
"AUTOMATIC1111 Base URL": "URL Dasar AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 URL Dasar diperlukan.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "",
"Available models": "",
"Available Tools": "",
@@ -249,6 +258,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "Kunci API Pencarian Berani",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -382,6 +392,7 @@
"Concurrent Requests": "Permintaan Bersamaan",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "",
"Confirm": "Konfirmasi",
"Confirm Password": "Konfirmasi Kata Sandi",
@@ -451,6 +462,7 @@
"Create new secret key": "Buat kunci rahasia baru",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Dibuat di",
"Created At": "Dibuat di",
@@ -472,6 +484,7 @@
"Data Controls": "",
"Database": "Basis data",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "Desember",
@@ -502,6 +515,7 @@
"Delete All": "",
"Delete All Chats": "Menghapus Semua Obrolan",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Menghapus Obrolan",
"Delete chat?": "Menghapus obrolan?",
"Delete File": "",
@@ -646,6 +660,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Model Penyematan",
"Embedding Model Engine": "Mesin Model Penyematan",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -737,6 +752,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "Masukkan Skor",
@@ -761,6 +777,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "Masukkan Kunci API Tavily",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -800,6 +817,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -817,6 +835,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "Percobaan",
"Explain": "",
@@ -1080,6 +1099,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Instal dari URL Github",
"Instant Auto-Send After Voice Transcription": "Kirim Otomatis Instan Setelah Transkripsi Suara",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "Antarmuka",
@@ -1139,6 +1159,7 @@
"Last 90 days": "",
"Last Active": "Terakhir Aktif",
"Last Modified": "Terakhir Dimodifikasi",
"Last ran": "",
"Last reply": "",
"LDAP": "",
"LDAP server updated": "",
@@ -1245,6 +1266,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' telah berhasil diunduh.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' sudah berada dalam antrean untuk diunduh.",
"Model {{modelId}} not found": "Model {{modelId}} tidak ditemukan",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} tidak dapat dilihat",
"Model {{name}} is now {{status}}": "Model {{name}} sekarang menjadi {{status}}",
"Model {{name}} is now hidden": "",
@@ -1294,8 +1316,11 @@
"Name": "Nama",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Obrolan Baru",
"New File": "",
@@ -1314,9 +1339,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1327,6 +1354,7 @@
"No data": "",
"No data found": "",
"No distance available": "",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Tidak ada file yang dipilih",
@@ -1373,6 +1401,7 @@
"Not factually correct": "Tidak benar secara faktual",
"Not helpful": "",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Catatan: Jika Anda menetapkan skor minimum, pencarian hanya akan mengembalikan dokumen dengan skor yang lebih besar atau sama dengan skor minimum.",
@@ -1446,6 +1475,7 @@
"or": "atau",
"Ordered List": "",
"Other": "Lainnya",
"out of": "",
"Output": "",
"OUTPUT": "",
"Output format": "",
@@ -1461,6 +1491,7 @@
"Password": "Kata sandi",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Paused": "",
"PDF document (.pdf)": "Dokumen PDF (.pdf)",
"PDF Extract Images (OCR)": "Ekstrak Gambar PDF (OCR)",
"PDF Loader Mode": "",
@@ -1565,6 +1596,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "Rekam suara",
"Redirecting you to Open WebUI Community": "Mengarahkan Anda ke Komunitas OpenWebUI",
@@ -1600,6 +1632,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1631,6 +1664,8 @@
"RTL": "RTL",
"Run": "",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Berjalan",
"Running...": "Berjalan...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1641,12 +1676,15 @@
"Save Chat": "",
"Saved": "",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Menyimpan log obrolan secara langsung ke penyimpanan browser Anda tidak lagi didukung. Mohon luangkan waktu sejenak untuk mengunduh dan menghapus log obrolan Anda dengan mengeklik tombol di bawah ini. Jangan khawatir, Anda dapat dengan mudah mengimpor kembali log obrolan Anda ke backend melalui",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Cari",
"Search a model": "Mencari model",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "",
"Search channels and channel messages": "",
"Search Chats": "Cari Obrolan",
@@ -1716,6 +1754,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Pilih hanya satu model untuk dipanggil",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1825,6 +1864,7 @@
"Start of the channel": "Awal saluran",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1875,8 +1915,10 @@
"Talk to Model": "",
"Tap to interrupt": "Ketuk untuk menyela",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "Kunci API Tavily",
"Tavily Extract Depth": "",
"Tell us more:": "Beri tahu kami lebih lanjut:",
@@ -1943,6 +1985,7 @@
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Judul",
@@ -1960,6 +2003,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Untuk memilih perangkat di sini, tambahkan ke ruang kerja \"Alat\" terlebih dahulu.",
"Toast notifications for new updates": "",
"Today": "Hari ini",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2098,6 +2142,7 @@
"Waiting for upload...": "",
"Warning": "Peringatan",
"Warning:": "Peringatan:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "Web",
@@ -2132,6 +2177,7 @@
"Width": "",
"Wikipedia": "",
"Won": "",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Ruang Kerja",
"Workspace Permissions": "",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "An bhfuil tú cinnte gur mian leat na comhráite go léir a chartlannú? Ní féidir an gníomh seo a chealú.",
"Are you sure you want to clear all memories? This action cannot be undone.": "An bhfuil tú cinnte gur mhaith leat na cuimhní go léir a ghlanadh? Ní féidir an gníomh seo a chealú.",
"Are you sure you want to delete \"{{NAME}}\"?": "An bhfuil tú cinnte gur mian leat \"{{NAME}}\" a scriosadh?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "An bhfuil tú cinnte gur mian leat na comhráite go léir a scriosadh? Ní féidir an gníomh seo a chealú.",
"Are you sure you want to delete this channel?": "An bhfuil tú cinnte gur mhaith leat an cainéal seo a scriosadh?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "Cúntóir",
"Async Embedding Processing": "Próiseáil Leabaithe Asyncrónach",
"Attach File From Knowledge": "Ceangail Comhad ó Eolas",
"Attach Files": "",
"Attach Knowledge": "Ceangail Eolas",
"Attach Notes": "Ceangail Nótaí",
"Attach Webpage": "Ceangail Leathanach Gréasáin",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "UATHOIBRÍOCH1111 Bun URL",
"AUTOMATIC1111 Base URL is required.": "Tá URL bonn UATHOIBRÍOCH1111 ag teastáil.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "Uirlisí córais a instealladh go huathoibríoch i mód glaonna feidhme dúchais (m.sh., stampaí ama, cuimhne, stair comhrá, nótaí, srl.)",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Liosta atá ar fáil",
"Available models": "Samhlacha atá ar fáil",
"Available Tools": "Uirlisí ar Fáil",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Treisiú nó pionós a ghearradh ar chomharthaí sonracha as freagraí srianta. Déanfar luachanna laofachta a chlampáil idir -100 agus 100 (san áireamh). (Réamhshocrú: ceann ar bith)",
"Brave": "Brave",
"Brave Search API Key": "Eochair API Cuardaigh Brave",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "Brabhsáil agus fiosraigh bunachair eolais",
"Builtin Tools": "Uirlisí Tógtha",
"Bullet List": "Liosta Urchair",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Iarrataí Comhthéime",
"Config": "Cumraíocht",
"Config imported successfully": "Cumraíocht allmhairithe go rathúil",
"Configuration": "",
"Configure": "Cumraigh",
"Confirm": "Deimhnigh",
"Confirm Password": "Deimhnigh Pasfhocal",
@@ -452,6 +463,7 @@
"Create new secret key": "Cruthaigh eochair rúnda nua",
"Create note": "Cruthaigh nóta",
"Create Note": "Cruthaigh Nóta",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Cruthaigh do chéad nóta trí chliceáil ar an gcnaipe móide thíos.",
"Created at": "Cruthaithe ag",
"Created At": "Cruthaithe Ag",
@@ -473,6 +485,7 @@
"Data Controls": "Rialuithe Sonraí",
"Database": "Bunachar Sonraí",
"Datalab Marker API": "API Marcóra Datalab",
"Day": "",
"DD/MM/YYYY": "DD/MM/YYYY",
"DDGS Backend": "Cúltaca DDGS",
"December": "Nollaig",
@@ -503,6 +516,7 @@
"Delete All": "Scrios Gach Rud",
"Delete All Chats": "Scrios Gach Comhrá",
"Delete all contents inside this folder": "Scrios an t-ábhar go léir atá sa fhillteán seo",
"Delete automation?": "",
"Delete Chat": "Scrios Comhrá",
"Delete chat?": "Scrios comhrá?",
"Delete File": "Scrios Comhad",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "Iarratais Chomhuaineacha a Leabú",
"Embedding Model": "Samhail Leabháilte",
"Embedding Model Engine": "Inneall Samhail Leabaithe",
"Emojis": "",
"Empty message": "",
"Enable All": "Cumasaigh Gach Rud",
"Enable API Keys": "Cumasaigh Eochracha API",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "Cuir isteach URL API Cuardaigh na Measctha",
"Enter Playwright Timeout": "Iontráil Teorainn Ama na nDrámadóir",
"Enter Playwright WebSocket URL": "Cuir isteach URL WebSocket Seinmeora",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Cuir isteach URL seachfhreastalaí (m.sh. https://user:password@host:port)",
"Enter reasoning effort": "Cuir isteach iarracht réasúnaíochta",
"Enter Score": "Iontráil Scór",
@@ -762,6 +778,7 @@
"Enter system prompt here": "Cuir leid córais isteach anseo",
"Enter Tavily API Key": "Cuir isteach eochair API Tavily",
"Enter Tavily Extract Depth": "Cuir isteach Doimhneacht Sliocht Tavily",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Cuir isteach URL poiblí do WebUI. Bainfear úsáid as an URL seo chun naisc a ghiniúint sna fógraí.",
"Enter the URL of the function to import": "Cuir isteach URL na feidhme atá le hallmhairiú",
"Enter the URL to import": "Cuir isteach an URL le hallmhairiú",
@@ -801,6 +818,7 @@
"Error accessing directory": "Earráid ag rochtain eolaire",
"Error accessing Google Drive: {{error}}": "Earráid agus tú ag rochtain Google Drive: {{error}}",
"Error accessing media devices.": "Earráid ag rochtain gléasanna meán.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Earráid ag tosú taifeadta.",
"Error unloading model: {{error}}": "Earráid ag díluchtú samhail: {{error}}",
"Error uploading file: {{error}}": "Earráid agus comhad á uaslódáil: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "Cód a fhorghníomhú",
"Execute code for analysis": "Íosluchtaigh cód le haghaidh anailíse",
"Executing **{{NAME}}**...": "**{{NAME}}** á rith...",
"Execution Logs": "",
"Expand": "Leathnaigh",
"Experimental": "Turgnamhach",
"Explain": "Mínigh",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "Cuir isteach Moladh Leid chun Ionchur",
"Install from Github URL": "Suiteáil ó Github URL",
"Instant Auto-Send After Voice Transcription": "Seoladh Uathoibríoch Láithreach Tar éis",
"Instructions": "",
"Integration": "Comhtháthú",
"Integrations": "Comhtháthúcháin",
"Interface": "Comhéadan",
@@ -1140,6 +1160,7 @@
"Last 90 days": "90 lá seo caite",
"Last Active": "Gníomhach Deiridh",
"Last Modified": "Athraithe Deiridh",
"Last ran": "",
"Last reply": "Freagra deiridh",
"LDAP": "LDAP",
"LDAP server updated": "Nuashonraíodh freastalaí LDAP",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Rinneadh an tsamhail '{{modelName}}' a íoslódáil go rathúil.",
"Model '{{modelTag}}' is already in queue for downloading.": "Tá samhail '{{modelTag}}' sa scuaine cheana féin le híoslódáil.",
"Model {{modelId}} not found": "Níor aimsíodh an tsamhail {{modelId}}",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Níl samhail {{modelName}} in ann amharc",
"Model {{name}} is now {{status}}": "Tá samhail {{name}} {{status}} anois",
"Model {{name}} is now hidden": "Tá an tsamhail {{name}} i bhfolach anois",
@@ -1295,8 +1317,11 @@
"Name": "Ainm",
"Name and ID are required, please fill them out": "Tá ainm agus aitheantas ag teastáil, líon isteach iad le do thoil",
"Name your knowledge base": "Cuir ainm ar do bhunachar eolais",
"Name, prompt, and model are required": "",
"Native": "Dúchasach",
"Never": "",
"New": "Nua",
"New Automation": "",
"New Button": "Cnaipe Nua",
"New Chat": "Comhrá Nua",
"New File": "Comhad Nua",
@@ -1315,9 +1340,11 @@
"New Webhook": "Gréasáin Nua",
"new-channel": "nua-chainéil",
"Next message": "An chéad teachtaireacht eile",
"Next run": "",
"No access grants. Private to you.": "Gan aon deontais rochtana. Príobháideach duitse.",
"No activity data": "Gan aon sonraí gníomhaíochta",
"No authentication": "Gan fíordheimhniú",
"No automations found": "",
"No chats found": "Ní bhfuarthas aon chomhráite",
"No chats found for this user.": "Ní bhfuarthas aon chomhráite don úsáideoir seo.",
"No chats found.": "Ní bhfuarthas aon chomhráite.",
@@ -1328,6 +1355,7 @@
"No data": "Gan aon sonraí",
"No data found": "Níor aimsíodh aon sonraí",
"No distance available": "Níl achar ar fáil",
"No execution logs available yet": "",
"No expiration can pose security risks.": "Ní féidir le haon dáta éaga rioscaí slándála a chruthú.",
"No feedback found": "Níor aimsíodh aon aiseolas",
"No file selected": "Níl aon chomhad roghnaithe",
@@ -1374,6 +1402,7 @@
"Not factually correct": "Níl sé ceart go fírineach",
"Not helpful": "Gan a bheith cabhrach",
"Not Registered": "Gan Clárú",
"Not scheduled": "",
"Note": "Nóta",
"Note deleted successfully": "Scriosadh an nóta go rathúil",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nóta: Má shocraíonn tú íosscór, ní thabharfaidh an cuardach ach doiciméid a bhfuil scór níos mó ná nó cothrom leis an scór íosta ar ais.",
@@ -1447,6 +1476,7 @@
"or": "nó",
"Ordered List": "Liosta Ordaithe",
"Other": "Eile",
"out of": "",
"Output": "Aschur",
"OUTPUT": "ASCHUR",
"Output format": "Formáid aschuir",
@@ -1462,6 +1492,7 @@
"Password": "Pasfhocal",
"Passwords do not match.": "Ní hionann na pasfhocail.",
"Paste Large Text as File": "Greamaigh Téacs Mór mar Chomhad",
"Paused": "",
"PDF document (.pdf)": "Doiciméad PDF (.pdf)",
"PDF Extract Images (OCR)": "Íomhánna Sliocht PDF (OCR)",
"PDF Loader Mode": "Mód Luchtaithe PDF",
@@ -1566,6 +1597,7 @@
"Reason": "Cúis",
"Reasoning Effort": "Iarracht Réasúnúcháin",
"Reasoning Tags": "Clibeanna Réasúnaíochta",
"Recently Used": "",
"Record": "Taifead",
"Record voice": "Taifead guth",
"Redirecting you to Open WebUI Community": "Tú a atreorú chuig OpenWebUI Community",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "Rindreáil Markdown i Réamhamhairc",
"Reorder Models": "Athordú na Samhlacha",
"Repeats": "",
"Reply": "Freagra",
"Reply in Thread": "Freagra i Snáithe",
"Reply to thread...": "Freagra ar an snáithe...",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "Rith",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Ag rith",
"Running...": "Ag rith...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Ritheann sé tascanna leabaithe ag an am céanna chun luas a chur leis an bpróiseáil. Múch é má bhíonn teorainneacha ráta ina bhfadhb.",
@@ -1643,12 +1678,15 @@
"Save Chat": "Sábháil Comhrá",
"Saved": "Shábháil",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Ní thacaítear le logaí comhrá a shábháil go díreach chuig stóráil do bhrabhsálaí Tóg nóiméad chun do logaí comhrá a íoslódáil agus a scriosadh trí chliceáil an cnaipe thíos. Ná bíodh imní ort, is féidir leat do logaí comhrá a athiompórtáil go héasca chuig an gcúltaca trí",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Scrollaigh ar Athrú Brainse",
"Search": "Cuardaigh",
"Search a model": "Cuardaigh samhail",
"Search all emojis": "Cuardaigh gach emoji",
"Search and manage user memories": "Cuardaigh agus bainistigh cuimhní úsáideora",
"Search and view user chat history": "Cuardaigh agus féach ar stair comhrá úsáideora",
"Search Automations": "",
"Search Base": "Bonn Cuardaigh",
"Search channels and channel messages": "Cuardaigh bealaí agus teachtaireachtaí bealaí",
"Search Chats": "Cuardaigh Comhráite",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "Roghnaigh conas téacs teachtaireachta a roinnt le haghaidh iarratais TTS",
"Select Knowledge": "Roghnaigh Eolais",
"Select Method": "Roghnaigh Modh",
"Select model": "",
"Select only one model to call": "Roghnaigh samhail amháin le glaoch",
"Select view": "Roghnaigh radharc",
"Selected model: {{modelName}}": "Samhail roghnaithe: {{modelName}}",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Tús an chainéil",
"Start Tag": "Clib Tosaigh",
"Starting kernel...": "",
"State": "",
"Status": "Stádas",
"Status cleared successfully": "Glanadh an stádais go rathúil",
"Status updated successfully": "Nuashonraíodh an stádas go rathúil",
@@ -1877,8 +1917,10 @@
"Talk to Model": "Labhair leis an tSamhail",
"Tap to interrupt": "Tapáil chun cur isteach",
"Task List": "Liosta Tascanna",
"Task Management": "",
"Task Model": "Samhail Thasc",
"Tasks": "Tascanna",
"tasks completed": "",
"Tavily API Key": "Eochair API Tavily",
"Tavily Extract Depth": "Doimhneacht Sliocht Tavily",
"Tell us more:": "Inis dúinn níos mó:",
@@ -1945,6 +1987,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Teastaíonn URL Freastalaí Tika.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "Am & Ríomh",
"Timeout": "Am istigh",
"Title": "Teideal",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Chun trealamh uirlisí a roghnú anseo, cuir iad leis an spás oibre \"Uirlisí\" ar dtús.",
"Toast notifications for new updates": "Fógraí tósta le haghaidh nuashonruithe nua",
"Today": "Inniu",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "Inniu ag {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "Athraigh {{COUNT}} foinsí",
"Toggle 1 source": "Athraigh foinse amháin",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "Ag fanacht le huaslódáil...",
"Warning": "Rabhadh",
"Warning:": "Rabhadh:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Rabhadh: Cuirfidh sé seo ar chumas úsáideoirí cód treallach a uaslódáil ar an bhfreastalaí.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Rabhadh: Trí fhorghníomhú Jupyter is féidir cód a fhorghníomhú go treallach, rud a chruthaíonn mór-rioscaí slándála - bí fíorchúramach.",
"Web": "Gréasán",
@@ -2134,6 +2179,7 @@
"Width": "Leithead",
"Wikipedia": "Vicipéid",
"Won": "Bhuaigh",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Oibríonn sé le barr-k. Beidh téacs níos éagsúla mar thoradh ar luach níos airde (m.sh., 0.95), agus ginfidh luach níos ísle (m.sh., 0.5) téacs níos dírithe agus níos coimeádaí.",
"Workspace": "Spás oibre",
"Workspace Permissions": "Ceadanna Spás Oibre",
@@ -183,6 +183,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "Sei sicuro di voler cancellare tutte le memorie? Questa operazione non può essere annullata.",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Sei sicuro di voler eliminare questo canale?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -199,6 +200,7 @@
"Assistant": "Assistente",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -221,6 +223,13 @@
"AUTOMATIC1111 Base URL": "URL base AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "L'URL base AUTOMATIC1111 è obbligatorio.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Elenco disponibile",
"Available models": "",
"Available Tools": "Strumenti disponibili",
@@ -251,6 +260,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Potenziare o penalizzare token specifici per risposte vincolate. I valori di bias saranno limitati tra -100 e 100 (incluso). (Predefinito: nessuno)",
"Brave": "",
"Brave Search API Key": "Chiave API di ricerca Brave",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -384,6 +394,7 @@
"Concurrent Requests": "Richieste simultanee",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "Configura",
"Confirm": "Conferma",
"Confirm Password": "Conferma password",
@@ -453,6 +464,7 @@
"Create new secret key": "Crea nuova chiave segreta",
"Create note": "",
"Create Note": "Crea nota",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Crea la tua prima nota cliccando sul pulsante + sotto.",
"Created at": "Creato il",
"Created At": "Creato il",
@@ -474,6 +486,7 @@
"Data Controls": "",
"Database": "Database",
"Datalab Marker API": "Datalab Marker API",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "Dicembre",
@@ -504,6 +517,7 @@
"Delete All": "",
"Delete All Chats": "Elimina tutte le chat",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Elimina chat",
"Delete chat?": "Elimina chat?",
"Delete File": "",
@@ -648,6 +662,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Modello Embedding",
"Embedding Model Engine": "Motore Modello di Embedding",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -739,6 +754,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "Inserisci Timeout di Playwright",
"Enter Playwright WebSocket URL": "Inserisci l'URL WebSocket di Playwright",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Inserisci l'URL del proxy (ad es. https://user:password@host:port)",
"Enter reasoning effort": "Inserisci lo sforzo di ragionamento",
"Enter Score": "Inserisci Punteggio",
@@ -763,6 +779,7 @@
"Enter system prompt here": "Inserisci il prompt di sistema qui",
"Enter Tavily API Key": "Inserisci Chiave API Tavily",
"Enter Tavily Extract Depth": "Inserisci la Profondità di Estrazione Tavily",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Inserisci l'URL pubblico del tuo WebUI. Questo URL verrà utilizzato per generare collegamenti nelle notifiche.",
"Enter the URL of the function to import": "Inserisci la URL della funzione di importazione",
"Enter the URL to import": "Inserisci la URL della importazione",
@@ -802,6 +819,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Errore durante l'accesso a Google Drive: {{error}}",
"Error accessing media devices.": "Errore durante l'accesso ai dispositivi multimediali.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Errore durante l'avvio della registrazione.",
"Error unloading model: {{error}}": "Errore durante lo scaricamento della memoria del modello: {{error}}",
"Error uploading file: {{error}}": "Errore durante il caricamento del file: {{error}}",
@@ -819,6 +837,7 @@
"Execute code": "",
"Execute code for analysis": "Esegui codice per analisi",
"Executing **{{NAME}}**...": "Esecuzione **{{NAME}}**...",
"Execution Logs": "",
"Expand": "Espandi",
"Experimental": "Sperimentale",
"Explain": "Spiega",
@@ -1082,6 +1101,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Eseguire l'installazione dall'URL di Github",
"Instant Auto-Send After Voice Transcription": "Invio automatico istantaneo dopo la trascrizione vocale",
"Instructions": "",
"Integration": "Integrazione",
"Integrations": "",
"Interface": "Interfaccia",
@@ -1141,6 +1161,7 @@
"Last 90 days": "",
"Last Active": "Ultima attività",
"Last Modified": "Ultima modifica",
"Last ran": "",
"Last reply": "Ultima risposta",
"LDAP": "LDAP",
"LDAP server updated": "Server LDAP aggiornato",
@@ -1247,6 +1268,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Il modello '{{modelName}}' è stato scaricato con successo.",
"Model '{{modelTag}}' is already in queue for downloading.": "Il modello '{{modelTag}}' è già in coda per il download.",
"Model {{modelId}} not found": "Modello {{modelId}} non trovato",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Il modello {{modelName}} non è in grado di vedere",
"Model {{name}} is now {{status}}": "Il modello {{name}} è ora {{status}}",
"Model {{name}} is now hidden": "Il modello {{name}} è ora nascosto",
@@ -1296,8 +1318,11 @@
"Name": "Nome",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Dai un nome alla tua base di conoscenza",
"Name, prompt, and model are required": "",
"Native": "Nativo",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Nuova chat",
"New File": "",
@@ -1316,9 +1341,11 @@
"New Webhook": "",
"new-channel": "nuovo-canale",
"Next message": "Messaggio successivo",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "Nessuna chat trovata per questo utente.",
"No chats found.": "Nessuna chat trovata.",
@@ -1329,6 +1356,7 @@
"No data": "",
"No data found": "",
"No distance available": "Nessuna distanza disponibile",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Nessun file selezionato",
@@ -1375,6 +1403,7 @@
"Not factually correct": "Non corretto dal punto di vista fattuale",
"Not helpful": "Non utile",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "Nota eliminata con successo",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: se imposti un punteggio minimo, la ricerca restituirà solo i documenti con un punteggio maggiore o uguale al punteggio minimo.",
@@ -1448,6 +1477,7 @@
"or": "o",
"Ordered List": "",
"Other": "Altro",
"out of": "",
"Output": "",
"OUTPUT": "OUTPUT",
"Output format": "Formato di output",
@@ -1463,6 +1493,7 @@
"Password": "Password",
"Passwords do not match.": "",
"Paste Large Text as File": "Incolla Molto Testo come File",
"Paused": "",
"PDF document (.pdf)": "Documento PDF (.pdf)",
"PDF Extract Images (OCR)": "Estrazione Immagini PDF (OCR)",
"PDF Loader Mode": "",
@@ -1567,6 +1598,7 @@
"Reason": "",
"Reasoning Effort": "Sforzo di ragionamento",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "Registra",
"Record voice": "Registra voce",
"Redirecting you to Open WebUI Community": "Reindirizzamento alla comunità OpenWebUI",
@@ -1602,6 +1634,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Riordina Modelli",
"Repeats": "",
"Reply": "",
"Reply in Thread": "Rispondi nel thread",
"Reply to thread...": "",
@@ -1635,6 +1668,8 @@
"RTL": "RTL",
"Run": "Esegui",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "In esecuzione",
"Running...": "In esecuzione...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1645,12 +1680,15 @@
"Save Chat": "",
"Saved": "Salvato",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Il salvataggio dei registri della chat direttamente nell'archivio del browser non è più supportato. Si prega di dedicare un momento per scaricare ed eliminare i registri della chat facendo clic sul pulsante in basso. Non preoccuparti, puoi facilmente reimportare i registri della chat nel backend tramite",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Scorri al cambio di branch",
"Search": "Cerca",
"Search a model": "Cerca un modello",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "Cerca base",
"Search channels and channel messages": "",
"Search Chats": "Cerca nelle chat",
@@ -1720,6 +1758,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Seleziona conoscenza",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Seleziona solo un modello da chiamare",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1829,6 +1868,7 @@
"Start of the channel": "Inizio del canale",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1879,8 +1919,10 @@
"Talk to Model": "",
"Tap to interrupt": "Tocca per interrompere",
"Task List": "",
"Task Management": "",
"Task Model": "Modello Task",
"Tasks": "Attività",
"tasks completed": "",
"Tavily API Key": "Chiave API Tavily",
"Tavily Extract Depth": "Profondita' di estrazione Tavily",
"Tell us more:": "Raccontaci di più:",
@@ -1947,6 +1989,7 @@
"Tika": "Tika",
"Tika Server URL required.": "L'URL del server Tika è obbligatorio.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Titolo",
@@ -1964,6 +2007,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Per selezionare i toolkit qui, aggiungili prima allo spazio di lavoro \"Strumenti\".",
"Toast notifications for new updates": "Notifiche toast per nuovi aggiornamenti",
"Today": "Oggi",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2102,6 +2146,7 @@
"Waiting for upload...": "",
"Warning": "Attenzione",
"Warning:": "Attenzione:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Attenzione: abilitando questo, gli utenti potranno caricare codice arbitrario sul server.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Attenzione: l'esecuzione di Jupyter consente l'esecuzione di codice arbitrario, comportando gravi rischi per la sicurezza: procedere con estrema cautela.",
"Web": "Web",
@@ -2136,6 +2181,7 @@
"Width": "",
"Wikipedia": "",
"Won": "Vinto",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Lavora insieme a top-k. Un valore più alto (ad esempio, 0,95) porterà a un testo più vario, mentre un valore più basso (ad esempio, 0,5) genererà un testo più focalizzato e conservativo.",
"Workspace": "Spazio di lavoro",
"Workspace Permissions": "Permessi dello spazio di lavoro",
@@ -181,6 +181,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "すべてのチャットをアーカイブしますか? この操作は元に戻すことができません。",
"Are you sure you want to clear all memories? This action cannot be undone.": "すべてのメモリをクリアしますか? この操作は元に戻すことができません。",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "すべてのチャットを削除しますか? この操作は元に戻すことができません。",
"Are you sure you want to delete this channel?": "このチャンネルを削除しますか?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -197,6 +198,7 @@
"Assistant": "アシスタント",
"Async Embedding Processing": "",
"Attach File From Knowledge": "ナレッジからファイルを添付",
"Attach Files": "",
"Attach Knowledge": "ナレッジを追加",
"Attach Notes": "ノートを追加",
"Attach Webpage": "ウェブページを追加",
@@ -219,6 +221,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 ベース URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ベース URL が必要です。",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "ネイティブの関数呼び出しモードにおいて、システムツール(例: タイムスタンプ、メモリー、チャット履歴、ノートなど)を自動的に注入します",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "利用可能リスト",
"Available models": "",
"Available Tools": "利用可能ツール",
@@ -249,6 +258,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "特定のトークンの強調またはペナルティを適用します。バイアス値は-100から100(包括的)にクランプされます。(デフォルト:なし)",
"Brave": "",
"Brave Search API Key": "Brave Search APIキー",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "組み込みツール",
"Bullet List": "箇条書きリスト",
@@ -382,6 +392,7 @@
"Concurrent Requests": "同時リクエスト",
"Config": "",
"Config imported successfully": "設定のインポートに成功しました",
"Configuration": "",
"Configure": "設定",
"Confirm": "確認",
"Confirm Password": "パスワードの確認",
@@ -451,6 +462,7 @@
"Create new secret key": "新しいシークレットキーを作成",
"Create note": "ノートを作成",
"Create Note": "ノートを作成",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "プラスボタンをクリックして最初のノートを作成します。",
"Created at": "作成日時",
"Created At": "作成日時",
@@ -472,6 +484,7 @@
"Data Controls": "データコントロール",
"Database": "データベース",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "YYYY/MM/DD",
"DDGS Backend": "",
"December": "12月",
@@ -502,6 +515,7 @@
"Delete All": "すべて削除する",
"Delete All Chats": "すべてのチャットを削除",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "チャットを削除",
"Delete chat?": "チャットを削除しますか?",
"Delete File": "",
@@ -646,6 +660,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "埋め込みモデル",
"Embedding Model Engine": "埋め込みモデルエンジン",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "API キーを有効にする",
@@ -737,6 +752,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "Playwrightタイムアウトを入力",
"Enter Playwright WebSocket URL": "Playwright WebSocket URLを入力",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "プロキシURLを入力 (例: https://user:password@host:port)",
"Enter reasoning effort": "推論の努力を入力",
"Enter Score": "スコアを入力",
@@ -761,6 +777,7 @@
"Enter system prompt here": "システムプロンプトをここに入力",
"Enter Tavily API Key": "Tavily API Keyを入力",
"Enter Tavily Extract Depth": "Tavily Extract Depthを入力",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "WebUIの公開URLを入力してください。このURLは通知でリンクを生成するために使用されます。",
"Enter the URL of the function to import": "インポートするFunctionのURLを入力",
"Enter the URL to import": "インポートするURLを入力",
@@ -800,6 +817,7 @@
"Error accessing directory": "ディレクトリへのアクセスに失敗しました",
"Error accessing Google Drive: {{error}}": "Google Driveへのアクセスに失敗しました: {{error}}",
"Error accessing media devices.": "メディアデバイスへのアクセスに失敗しました。",
"Error deleting model: {{error}}": "",
"Error starting recording.": "録音を開始できませんでした。",
"Error unloading model: {{error}}": "モデルのアンロードに失敗しました: {{error}}",
"Error uploading file: {{error}}": "ファイルアップロードに失敗しました: {{error}}",
@@ -817,6 +835,7 @@
"Execute code": "",
"Execute code for analysis": "コードの分析に実行",
"Executing **{{NAME}}**...": "**{{NAME}}**を実行中...",
"Execution Logs": "",
"Expand": "展開",
"Experimental": "実験的",
"Explain": "説明",
@@ -1080,6 +1099,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Github URLからインストール",
"Instant Auto-Send After Voice Transcription": "音声文字変換後に自動送信",
"Instructions": "",
"Integration": "連携",
"Integrations": "連携",
"Interface": "インターフェース",
@@ -1139,6 +1159,7 @@
"Last 90 days": "",
"Last Active": "最終アクティブ",
"Last Modified": "最終変更",
"Last ran": "",
"Last reply": "最終応答",
"LDAP": "LDAP",
"LDAP server updated": "LDAPサーバーの更新に成功しました",
@@ -1245,6 +1266,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "モデル '{{modelName}}' が正常にダウンロードされました。",
"Model '{{modelTag}}' is already in queue for downloading.": "モデル '{{modelTag}}' はすでにダウンロード待機中です。",
"Model {{modelId}} not found": "モデル {{modelId}} が見つかりません",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "モデル {{modelName}} は視覚に対応していません",
"Model {{name}} is now {{status}}": "モデル {{name}} は {{status}} になりました。",
"Model {{name}} is now hidden": "モデル {{name}} は非表示になりました。",
@@ -1294,8 +1316,11 @@
"Name": "名前",
"Name and ID are required, please fill them out": "名前とIDは必須です。項目を入力してください。",
"Name your knowledge base": "ナレッジベースに名前を付ける",
"Name, prompt, and model are required": "",
"Native": "ネイティブ",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "新しいボタン",
"New Chat": "新しいチャット",
"New File": "",
@@ -1314,9 +1339,11 @@
"New Webhook": "",
"new-channel": "新しいチャンネル",
"Next message": "次のメッセージ",
"Next run": "",
"No access grants. Private to you.": "アクセス権は付与されていません。あなただけが利用できます。",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "チャットが見つかりません。",
"No chats found for this user.": "このユーザーのチャットが見つかりません。",
"No chats found.": "チャットが見つかりません。",
@@ -1327,6 +1354,7 @@
"No data": "",
"No data found": "",
"No distance available": "距離が利用できません",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "ファイルが選択されていません",
@@ -1373,6 +1401,7 @@
"Not factually correct": "事実と異なる",
"Not helpful": "役に立たない",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "ノートが正常に削除されました",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "注意:最小スコアを設定した場合、検索は最小スコア以上のスコアを持つドキュメントのみを返します。",
@@ -1446,6 +1475,7 @@
"or": "または",
"Ordered List": "順序つきリスト",
"Other": "その他",
"out of": "",
"Output": "",
"OUTPUT": "出力",
"Output format": "出力形式",
@@ -1461,6 +1491,7 @@
"Password": "パスワード",
"Passwords do not match.": "パスワードが一致しません。",
"Paste Large Text as File": "大きなテキストをファイルとして貼り付ける",
"Paused": "",
"PDF document (.pdf)": "PDF ドキュメント (.pdf)",
"PDF Extract Images (OCR)": "PDF 画像抽出 (OCR)",
"PDF Loader Mode": "",
@@ -1565,6 +1596,7 @@
"Reason": "理由",
"Reasoning Effort": "推理の努力",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "録音",
"Record voice": "音声を録音",
"Redirecting you to Open WebUI Community": "OpenWebUI コミュニティにリダイレクトしています",
@@ -1600,6 +1632,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "モデルを並べ替え",
"Repeats": "",
"Reply": "",
"Reply in Thread": "スレッドで返信",
"Reply to thread...": "",
@@ -1631,6 +1664,8 @@
"RTL": "RTL",
"Run": "実行",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "実行中",
"Running...": "実行中...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1641,12 +1676,15 @@
"Save Chat": "チャットを保存",
"Saved": "保存しました。",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "チャットログをブラウザのストレージに直接保存する機能はサポートされなくなりました。下のボタンをクリックして、チャットログをダウンロードして削除してください。ご心配なく。チャットログは、次の方法でバックエンドに簡単に再インポートできます。",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "ブランチ変更時にスクロール",
"Search": "検索",
"Search a model": "モデルを検索",
"Search all emojis": "絵文字を検索",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "ベースを検索",
"Search channels and channel messages": "",
"Search Chats": "チャットの検索",
@@ -1716,6 +1754,7 @@
"Select how to split message text for TTS requests": "TTSリクエストのテキスト分割方法を選択",
"Select Knowledge": "ナレッジベースの選択",
"Select Method": "",
"Select model": "",
"Select only one model to call": "1つのモデルを呼び出すには、1つのモデルを選択してください。",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1825,6 +1864,7 @@
"Start of the channel": "チャンネルの開始",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "ステータス",
"Status cleared successfully": "正常にステータスをクリアしました",
"Status updated successfully": "正常にステータスを更新しました",
@@ -1875,8 +1915,10 @@
"Talk to Model": "モデルに話しかける",
"Tap to interrupt": "タップして中断",
"Task List": "タスクリスト",
"Task Management": "",
"Task Model": "タスクモデル",
"Tasks": "タスク",
"tasks completed": "",
"Tavily API Key": "Tavily APIキー",
"Tavily Extract Depth": "Tavily抽出深度",
"Tell us more:": "もっと話してください:",
@@ -1943,6 +1985,7 @@
"Tika": "",
"Tika Server URL required.": "Tika Server URLが必要です。",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "タイトル",
@@ -1960,6 +2003,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "ここでツールキットを選択するには、まず \"Tools\" ワークスペースに追加してください。",
"Toast notifications for new updates": "新しい更新のトースト通知",
"Today": "今日",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "今日 {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2098,6 +2142,7 @@
"Waiting for upload...": "",
"Warning": "警告",
"Warning:": "警告:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "警告: これを有効にすると、ユーザーがサーバー上で任意のコードをアップロードできるようになります。",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "警告: Jupyter 実行は任意のコード実行を可能にし、重大なセキュリティリスクを伴います。極めて慎重に進めてください。",
"Web": "ウェブ",
@@ -2132,6 +2177,7 @@
"Width": "幅",
"Wikipedia": "",
"Won": "勝ち",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "top-k と併用されます。値が高い(例:0.95)ほど多様なテキストが生成され、低い値(例:0.5)ではより集中した保守的なテキストが生成されます。",
"Workspace": "ワークスペース",
"Workspace Permissions": "ワークスペースの権限",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "მართლა გნებავთ ამ არხის წაშლა?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "დამხმარე",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "ცოდნის მიმაგრება",
"Attach Notes": "შენიშვნების მიმაგრება",
"Attach Webpage": "ვებგვერდის მიმაგრება",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 საბაზისო მისამართი",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 საბაზისო მისამართი აუცილებელია.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "ხელმისაწვდომი სია",
"Available models": "",
"Available Tools": "ხელმისაწვდომი ხელსაწყოები",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "Brave Search API-ის გასაღები",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "დაუნომრავი სია",
@@ -383,6 +393,7 @@
"Concurrent Requests": "ერთდროული მოთხოვნები",
"Config": "",
"Config imported successfully": "კონფიგურაცია წარმატებით იქნა შემოტანილი",
"Configuration": "",
"Configure": "მორგება",
"Confirm": "დადასტურება",
"Confirm Password": "გაიმეორეთ პაროლი",
@@ -452,6 +463,7 @@
"Create new secret key": "ახალი საიდუმლო გასაღების შექმნა",
"Create note": "",
"Create Note": "შენიშვნის შექმნა",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "შექმნის დრო",
"Created At": "შექმნის დრო",
@@ -473,6 +485,7 @@
"Data Controls": "მონაცემთა კონტროლი",
"Database": "მონაცემთა ბაზა",
"Datalab Marker API": "Datalab Marker-ის API",
"Day": "",
"DD/MM/YYYY": "დდ/თთ/წწწწ",
"DDGS Backend": "",
"December": "დეკემბერი",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "ყველა ჩატის წაშლა",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "საუბრის წაშლა",
"Delete chat?": "წავშალო ჩატი?",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "მოდელის ჩაშენება",
"Embedding Model Engine": "ჩაშენებული მოდელის ძრავა",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "შეიყვანეთ პროქსის URL (მაგ: https://user:password@host:port)",
"Enter reasoning effort": "შეიყვანეთ მსჯელობის ძალისხმევა",
"Enter Score": "შეიყვანეთ ქულა",
@@ -762,6 +778,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "შეიყვანეთ URL შემოსატანად",
@@ -801,6 +818,7 @@
"Error accessing directory": "საქაღალდესთან წვდომის შეცდომა",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "ჩაწერის დაწყების შეცდომა.",
"Error unloading model: {{error}}": "მოდელის ატვირთვის სეცდომა: {{error}}",
"Error uploading file: {{error}}": "ფაილის ატვირთვის შეცდომა: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "ვასრულებ **{{NAME}}**-ს...",
"Execution Logs": "",
"Expand": "გაფართოება",
"Experimental": "ექსპერიმენტული",
"Explain": "ახსნა",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "დაყენება Github-ის ბმულიდან",
"Instant Auto-Send After Voice Transcription": "",
"Instructions": "",
"Integration": "ინტეგრაცია",
"Integrations": "ინტეგრაციები",
"Interface": "ინტერფეისი",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "ბოლოს აქტიური",
"Last Modified": "ბოლო ცვლილება",
"Last ran": "",
"Last reply": "ბოლო პასუხი",
"LDAP": "LDAP",
"LDAP server updated": "LDAP სერვერი განახლდა",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "მოდელის „{{modelName}}“ გადმოწერა წარმატებით დასრულდა.",
"Model '{{modelTag}}' is already in queue for downloading.": "მოდელი „{{modelTag}}“ უკვე გადმოწერის რიგშია.",
"Model {{modelId}} not found": "მოდელი {{modelId}} აღმოჩენილი არაა",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} is not vision capable",
"Model {{name}} is now {{status}}": "Model {{name}} is now {{status}}",
"Model {{name}} is now hidden": "მოდელი {{name}} ახლა დამალულია",
@@ -1295,8 +1317,11 @@
"Name": "სახელი",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Name, prompt, and model are required": "",
"Native": "საკუთარი",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "ახალი ღილაკი",
"New Chat": "ახალი მიმოწერა",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "new-channel",
"Next message": "შემდეგი შეტყობინება",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "ავთენტიკაციის გარეშე",
"No automations found": "",
"No chats found": "ჩატების გარეშე",
"No chats found for this user.": "ამ მომხმარებლისთვის ჩატები აღმოჩენილი არაა.",
"No chats found.": "ჩატების გარეშე.",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "მანძილი ხელმისაწვდომი არაა",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "ფაილი არჩეული არაა",
@@ -1374,6 +1402,7 @@
"Not factually correct": "მთლად სწორი არაა",
"Not helpful": "სასარგებლო არაა",
"Not Registered": "არაა რეგისტრირებული",
"Not scheduled": "",
"Note": "შენიშვნა",
"Note deleted successfully": "შენიშვნა წარმატებით წაიშალა",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "შენიშვნა: თუ თქვენ დააყენებთ მინიმალურ ქულას, ძებნა დააბრუნებს მხოლოდ დოკუმენტებს მინიმალური ქულის მეტი ან ტოლი ქულით.",
@@ -1447,6 +1476,7 @@
"or": "ან",
"Ordered List": "დალაგებული სია",
"Other": "სხვა",
"out of": "",
"Output": "",
"OUTPUT": "გამოტანა",
"Output format": "გამოტანის ფორმატი",
@@ -1462,6 +1492,7 @@
"Password": "პაროლი",
"Passwords do not match.": "პაროლები არ ემთხვევა.",
"Paste Large Text as File": "დიდი ტექსტის ჩასმა ფაილის სახით",
"Paused": "",
"PDF document (.pdf)": "PDF დოკუმენტი (.pdf)",
"PDF Extract Images (OCR)": "PDF იდან ამოღებული სურათები (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "მიზეზი",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "ჩაწერა",
"Record voice": "ხმის ჩაწერა",
"Redirecting you to Open WebUI Community": "მიმდინარეობს გადამისამართება OpenWebUI-ის საზოგადოების საიტზე",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "მოდელების გადალაგება",
"Repeats": "",
"Reply": "პასუხი",
"Reply in Thread": "ნაკადში პასუხი",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "გაშვება",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "გაშვებულია",
"Running...": "გაშვებულია...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "ჩატის შენახვა",
"Saved": "შენახულია",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "ჩეთის ისტორიის შენახვა პირდაპირ თქვენი ბრაუზერის საცავში აღარ არის მხარდაჭერილი. გთხოვთ, დაუთმოთ და წაშალოთ თქვენი ჩატის ჟურნალები ქვემოთ მოცემულ ღილაკზე დაწკაპუნებით. არ ინერვიულოთ, თქვენ შეგიძლიათ მარტივად ხელახლა შემოიტანოთ თქვენი ჩეთის ისტორია ბექენდში",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "ძებნა",
"Search a model": "მოდელის ძებნა",
"Search all emojis": "ძებნა ყველა ემოჯიში",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "ბაზის ძებნა",
"Search channels and channel messages": "",
"Search Chats": "ძებნა ჩატებში",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "აირჩიეთ ცოდნა",
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select view": "აირჩიეთ ხედი",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "არხის დასაწყისი",
"Start Tag": "დაწყების ჭდე",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "დაატყაპუნეთ შესაწყვეტად",
"Task List": "ამოცანების სია",
"Task Management": "",
"Task Model": "დავალების მოდელი",
"Tasks": "ამოცანები",
"tasks completed": "",
"Tavily API Key": "",
"Tavily Extract Depth": "",
"Tell us more:": "გვითხარით მეტი:",
@@ -1945,6 +1987,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Tika-ის სერვერის URL აუცილებელია.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "სათაური",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "",
"Toast notifications for new updates": "",
"Today": "დღეს",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "დღეს, {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "გაფრთხილება",
"Warning:": "გაფრთხილება:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "ვები",
@@ -2134,6 +2179,7 @@
"Width": "სიგანე",
"Wikipedia": "",
"Won": "ვონი",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "სამუშაო სივრცე",
"Workspace Permissions": "სამუშაო სივრცის წვდომები",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "Tetḥeqqeḍ tebɣiḍ ad tekkseḍ akk aktayen? Tigawt-a ur tettwakkes ara.",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Tetḥeqqeḍ tebɣiḍ ad tekkseḍ targa-a?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "Amallal",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "Qqen-as tamessunt",
"Attach Notes": "Qqen-as tizmilin",
"Attach Webpage": "Qqen-as asebter web",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "URL n taffa i AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "L'URL n uzadur {AUTOMATIC1111} yettwasra.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Tabdart i yellan",
"Available models": "",
"Available Tools": "Ifecka i yellan",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Aserkem neɣ angal n yiqenṭaren ulmisen i tririt yettwaḥeṛsen. Azalen ibirusanen ad ttwakecfen gar 100 d 100 (asekcam). Lmut: ala",
"Brave": "",
"Brave Search API Key": "Tasarut API n Brave Search",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "Tabdart s tlilac",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Tuttriwin timiranin",
"Config": "",
"Config imported successfully": "Tawila tettwakekter-d akken iwata",
"Configuration": "",
"Configure": "Swel",
"Confirm": "Sentem",
"Confirm Password": "Sentem awal n uɛeddi",
@@ -452,6 +463,7 @@
"Create new secret key": "Snulfu-d tasarut tuffirt tamaynut",
"Create note": "",
"Create Note": "Snulfu-d tazmilt",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Rnu tazmilt-ik⋅im tamezwarut s usiti ɣef tqeffalt ddaw.",
"Created at": "Yettwarna di",
"Created At": "Yettwarna di",
@@ -473,6 +485,7 @@
"Data Controls": "Isenqaden n isefka",
"Database": "Taffa n isefka",
"Datalab Marker API": "API n Datalab Marker",
"Day": "",
"DD/MM/YYYY": "JJ/MM/AAAA",
"DDGS Backend": "",
"December": "Duǧambeṛ",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "Kkes akk idiwenniyen",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Kkes asqerdec",
"Delete chat?": "Tebɣiḍ ad tekkseḍ adiwenni?",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Tamudemt n ujmak",
"Embedding Model Engine": "Amsedday n tmudemt n ujmak",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "Sekcem-d URL n Playwright WebSocket",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Sekcem URL apṛuksi (amedya. https://user:password@host:port)",
"Enter reasoning effort": "Sekcem ussis n uẓeɣẓen",
"Enter Score": "Sekcem agmuḍ-ik⋅im",
@@ -762,6 +778,7 @@
"Enter system prompt here": "Sekcem-d aneftaɣ n unagraw da",
"Enter Tavily API Key": "Sekcem API Tavilyant Tasarut",
"Enter Tavily Extract Depth": "Kcem ɣer Tavilya",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Sekcem tansa URL tazayezt n WebUI-inek. Tansa-a URL ad tettwaseqdec i usuffeɣ n iseɣwan deg ilɣa.",
"Enter the URL of the function to import": "Sekcem-d tansa URL n tesɣent akken ad tketreḍ",
"Enter the URL to import": "Sekcem tansa URL akken ad tketreḍ",
@@ -801,6 +818,7 @@
"Error accessing directory": "Tuccḍa deg unekcum ɣer ukaram",
"Error accessing Google Drive: {{error}}": "Tuccḍa Google Drive: {{error}}",
"Error accessing media devices.": "Tuccḍa deg unekcum ɣer yibenkan n yiẓeḍwa.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Tuccḍa deg beddu n usekles.",
"Error unloading model: {{error}}": "Tuccḍa deg usali n tmudemt: {{error}}",
"Error uploading file: {{error}}": "Tuccḍa deg usali n ufaylu: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "Selkem tangalt i uslaḍ",
"Executing **{{NAME}}**...": "Aselkem n **{{NAME}}**…",
"Execution Logs": "",
"Expand": "Simɣur",
"Experimental": "Armitan",
"Explain": "Segzi",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Sebded seg tansa URL n Github",
"Instant Auto-Send After Voice Transcription": "Arfiq awurman ticki Voice Transcription",
"Instructions": "",
"Integration": "Tamsideft",
"Integrations": "Timsidaf",
"Interface": "Agrudem",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "Armud aneggaru",
"Last Modified": "Asnifel angaru",
"Last ran": "",
"Last reply": "Tiririt taneggarut",
"LDAP": "LDAP",
"LDAP server updated": "Aqeddac LDAP, yettwaleqqem",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Tettwasider-d tmudemt '{{modelName}}' akken iwata.",
"Model '{{modelTag}}' is already in queue for downloading.": "Tamudemt '{{modelTag}}' ha-t-an yakan deg tebdart n usader.",
"Model {{modelId}} not found": "Tamudemt {{modelId}} ulac-itt",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Mudel Isem}} mačči d tamuɣli izemren ad tili",
"Model {{name}} is now {{status}}": "Tamudemt {{name}} tura {{status}}",
"Model {{name}} is now hidden": "Tamudemt {{name}} tettwaffer tura",
@@ -1295,8 +1317,11 @@
"Name": "Isem",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Mudd isem i taffa-k⋅m n tmussniwin",
"Name, prompt, and model are required": "",
"Native": "Asrew",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "Taqeffalt tamaynut",
"New Chat": "Asqerdec amaynut",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "abadu amaynut",
"Next message": "Izen uḍfir",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "Ulac asesteb",
"No automations found": "",
"No chats found": "Ulac idiwenniyen",
"No chats found for this user.": "Ulac adiwenni i useqdac-a.",
"No chats found.": "Ulac kra n usqerdec.",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "Ulac ameccaq yettwafen",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Ulac afaylu i yettwafernen",
@@ -1374,6 +1402,7 @@
"Not factually correct": "",
"Not helpful": "Ur infiɛ ara",
"Not Registered": "",
"Not scheduled": "",
"Note": "Tazmilt",
"Note deleted successfully": "Tazmilt tettwakkes akken iwata",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "",
@@ -1447,6 +1476,7 @@
"or": "neɣ",
"Ordered List": "Tabdart n usmizwer",
"Other": "Wayeḍ",
"out of": "",
"Output": "",
"OUTPUT": "TUFFƔA",
"Output format": "Amasal n tuffɣa",
@@ -1462,6 +1492,7 @@
"Password": "Awal n uɛeddi",
"Passwords do not match.": "Awalen n uɛeddi ur mṣadan ara.",
"Paste Large Text as File": "Senteḍ aḍris meqqren am ufaylu",
"Paused": "",
"PDF document (.pdf)": "Isemli PDF (.pdf)",
"PDF Extract Images (OCR)": "Tugniwin n ugemmay PDF",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "Ssebba",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "Aklas",
"Record voice": "Sekles taɣect",
"Redirecting you to Open WebUI Community": "Aseḍfeṛ ar Temɣiwant n Open WebUI",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Ales n umizwer n tmudmiwin",
"Repeats": "",
"Reply": "Tiririt",
"Reply in Thread": "Err deg udiwenni",
"Reply to thread...": "Err i udiwenni…",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "Selkem",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Aselkem",
"Running...": "Aselkem...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "Sekles asqerdec",
"Saved": "Yettwasekles",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Abeddel n Branch",
"Search": "Anadi",
"Search a model": "Nadi tamudemt",
"Search all emojis": "Nadi akk imujiten",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "Taffa n unadi",
"Search channels and channel messages": "",
"Search Chats": "Nadi idiwenniyen",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "Fren amek ara tebḍuḍ aḍris n yiznan i usuter n TTS",
"Select Knowledge": "Fren tamusni",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Fren yiwet kan n tmudemt i wara d-siwleḍ",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Tazwara n ubadu",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "Sit i unegzum",
"Task List": "Tabdart n temsekra",
"Task Management": "",
"Task Model": "Tamudemt n temsekra",
"Tasks": "Timsekra",
"tasks completed": "",
"Tavily API Key": "Tasarut API n Tavily",
"Tavily Extract Depth": "Talqayt n usefruri Tavily",
"Tell us more:": "Ini-aɣ-d ugar:",
@@ -1945,6 +1987,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Tansa URL n Tika Server tettwasra.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Azwel",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Akken ad tferneḍ ifecka da, rnu-ten, di tazwara, ɣer tallunt n umahil \"Ifecka\".",
"Toast notifications for new updates": "Ssurfet ilɣa i yileqman imaynuten",
"Today": "Ass-a",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "Ass-a, ɣef {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "Ɣur-k",
"Warning:": "Alɣu:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Ɣur-k: Asewḥel n waya ad yeǧǧ iseqdacen ad d-salin tangalt tazurant ɣef uqeddac.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Ɣur-k: Asselkem n Jupyter yettaǧǧa asselkem n tengalt tazurant, d tukksa n tmijwin n tɣellist qessiḥen — s leḥder meqqren.",
"Web": "Web",
@@ -2134,6 +2179,7 @@
"Width": "Tehri",
"Wikipedia": "",
"Won": "Yerbaḥ",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Tamnaḍṭ n umahil",
"Workspace Permissions": "Tisirag n temnaḍṭ n umahil",
@@ -181,6 +181,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "정말 모든 메모리를 지우시겠습니까? 이 작업은 되돌릴 수 없습니다.",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "정말 이 채널을 삭제하시겠습니까?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -197,6 +198,7 @@
"Assistant": "어시스턴트",
"Async Embedding Processing": "",
"Attach File From Knowledge": "지식 기반에서 파일 첨부",
"Attach Files": "",
"Attach Knowledge": "지식 기반 첨부",
"Attach Notes": "노트 첨부",
"Attach Webpage": "웹페이지 첨부",
@@ -219,6 +221,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 기본 URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 기본 URL 설정이 필요합니다.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "가능한 목록",
"Available models": "",
"Available Tools": "사용 가능한 도구",
@@ -249,6 +258,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "특정 토큰을 가중 상향/하향하여 응답을 제약합니다. 값은 -100 ~ 100(기본값: 없음)",
"Brave": "",
"Brave Search API Key": "Brave Search API 키",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "글머리 기호 목록",
@@ -382,6 +392,7 @@
"Concurrent Requests": "동시 요청 수",
"Config": "",
"Config imported successfully": "구성을 성공적으로 가져왔습니다",
"Configuration": "",
"Configure": "구성",
"Confirm": "확인",
"Confirm Password": "비밀번호 확인",
@@ -451,6 +462,7 @@
"Create new secret key": "새로운 비밀 키 생성",
"Create note": "",
"Create Note": "노트 생성",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "아래의 플러스 버튼을 클릭하여 첫 번째 노트를 생성하세요.",
"Created at": "생성일",
"Created At": "생성일",
@@ -472,6 +484,7 @@
"Data Controls": "데이터 제어",
"Database": "데이터베이스",
"Datalab Marker API": "Datalab Marker API",
"Day": "",
"DD/MM/YYYY": "YYYY/MM/DD",
"DDGS Backend": "",
"December": "12월",
@@ -502,6 +515,7 @@
"Delete All": "",
"Delete All Chats": "모든 채팅 삭제",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "채팅 삭제",
"Delete chat?": "채팅을 삭제하시겠습니까?",
"Delete File": "",
@@ -646,6 +660,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "임베딩 모델",
"Embedding Model Engine": "임베딩 모델 엔진",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -737,6 +752,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "Playwright 시간 초과 입력",
"Enter Playwright WebSocket URL": "Playwright WebSocket URL 입력",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "프록시 URL 입력(예: https://user:password@host:port)",
"Enter reasoning effort": "추론 난이도",
"Enter Score": "점수 입력",
@@ -761,6 +777,7 @@
"Enter system prompt here": "여기에 시스템 프롬프트 입력",
"Enter Tavily API Key": "Tavily API 키 입력",
"Enter Tavily Extract Depth": "Tavily 추출 깊이 입력",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "WebUI의 공개 URL을 입력해 주세요. 이 URL은 알림에서 링크를 생성하는 데 사용합니다.",
"Enter the URL of the function to import": "가져올 함수의 URL 입력",
"Enter the URL to import": "가져올 URL 입력",
@@ -800,6 +817,7 @@
"Error accessing directory": "디렉토리 액세스 오류",
"Error accessing Google Drive: {{error}}": "Google Drive 액세스 오류: {{error}}",
"Error accessing media devices.": "미디어 장치 액세스 오류",
"Error deleting model: {{error}}": "",
"Error starting recording.": "녹화 시작 오류",
"Error unloading model: {{error}}": "모델 언로드 오류: {{error}}",
"Error uploading file: {{error}}": "파일 업로드 오류: {{error}}",
@@ -817,6 +835,7 @@
"Execute code": "",
"Execute code for analysis": "분석을 위한 코드 실행",
"Executing **{{NAME}}**...": "**{{NAME}}** 실행 중...",
"Execution Logs": "",
"Expand": "확장",
"Experimental": "실험적",
"Explain": "설명",
@@ -1080,6 +1099,7 @@
"Insert Suggestion Prompt to Input": "입력할 제안 프롬프트 삽입",
"Install from Github URL": "Github URL에서 설치",
"Instant Auto-Send After Voice Transcription": "음성 변환 후 즉시 자동 전송",
"Instructions": "",
"Integration": "통합",
"Integrations": "통합",
"Interface": "인터페이스",
@@ -1139,6 +1159,7 @@
"Last 90 days": "",
"Last Active": "최근 활동",
"Last Modified": "마지막 수정",
"Last ran": "",
"Last reply": "마지막 답글",
"LDAP": "",
"LDAP server updated": "LDAP 서버가 업데이트되었습니다",
@@ -1245,6 +1266,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "모델 '{{modelName}}'이/가 성공적으로 다운로드되었습니다.",
"Model '{{modelTag}}' is already in queue for downloading.": "모델 '{{modelTag}}'은/는 이미 다운로드 대기열에 있습니다.",
"Model {{modelId}} not found": "모델 {{modelId}}을/를 찾을 수 없습니다.",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "모델 {{modelName}}은/는 비전을 사용할 수 없습니다.",
"Model {{name}} is now {{status}}": "모델 {{name}}은/는 이제 {{status}} 상태입니다.",
"Model {{name}} is now hidden": "모델 {{name}}은/는 이제 숨겨졌습니다.",
@@ -1294,8 +1316,11 @@
"Name": "이름",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "지식 기반 이름을 지정하세요",
"Name, prompt, and model are required": "",
"Native": "네이티브",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "새 버튼",
"New Chat": "새 채팅",
"New File": "",
@@ -1314,9 +1339,11 @@
"New Webhook": "",
"new-channel": "새 채널",
"Next message": "다음 메시지",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "채팅을 찾을 수 없습니다",
"No chats found for this user.": "이 사용자에 대한 채팅을 찾을 수 없습니다.",
"No chats found.": "채팅을 찾을 수 없습니다.",
@@ -1327,6 +1354,7 @@
"No data": "",
"No data found": "",
"No distance available": "거리 불가능",
"No execution logs available yet": "",
"No expiration can pose security risks.": "만료 기한이 없으면 보안 위험이 발생할 수 있습니다.",
"No feedback found": "",
"No file selected": "파일이 선택되지 않았습니다",
@@ -1373,6 +1401,7 @@
"Not factually correct": "사실상 맞지 않습니다",
"Not helpful": "도움이 되지않습니다",
"Not Registered": "등록되지 않았습니다",
"Not scheduled": "",
"Note": "노트",
"Note deleted successfully": "노트가 성공적으로 삭제되었습니다",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "참고: 최소 점수를 설정하면, 검색 결과로 최소 점수 이상의 점수를 가진 문서만 반환합니다.",
@@ -1446,6 +1475,7 @@
"or": "또는",
"Ordered List": "번호 목록",
"Other": "기타",
"out of": "",
"Output": "",
"OUTPUT": "출력",
"Output format": "출력 형식",
@@ -1461,6 +1491,7 @@
"Password": "비밀번호",
"Passwords do not match.": "비밀번호가 일치하지 않습니다.",
"Paste Large Text as File": "큰 텍스트를 파일로 붙여넣기",
"Paused": "",
"PDF document (.pdf)": "PDF 문서(.pdf)",
"PDF Extract Images (OCR)": "PDF 이미지 추출(OCR)",
"PDF Loader Mode": "",
@@ -1565,6 +1596,7 @@
"Reason": "근거",
"Reasoning Effort": "추론 난이도",
"Reasoning Tags": "추론 태그",
"Recently Used": "",
"Record": "녹음",
"Record voice": "음성 녹음",
"Redirecting you to Open WebUI Community": "OpenWebUI 커뮤니티로 리디렉션 중",
@@ -1600,6 +1632,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "모델 재정렬",
"Repeats": "",
"Reply": "답장",
"Reply in Thread": "스레드로 답장하기",
"Reply to thread...": "스레드로 답장하기...",
@@ -1631,6 +1664,8 @@
"RTL": "RTL",
"Run": "실행",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "실행 중",
"Running...": "실행 중...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1641,12 +1676,15 @@
"Save Chat": "채팅 저장",
"Saved": "저장됨",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "브라우저의 저장소에 채팅 로그를 직접 저장하는 것은 더 이상 지원되지 않습니다. 아래 버튼을 클릭하여 채팅 로그를 다운로드하고 삭제하세요. 걱정 마세요. 백엔드를 통해 채팅 로그를 쉽게 다시 가져올 수 있습니다.",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "브랜치 변경 시 스크롤",
"Search": "검색",
"Search a model": "모델 검색",
"Search all emojis": "모든 이모지 검색",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "검색 기반",
"Search channels and channel messages": "",
"Search Chats": "채팅 검색",
@@ -1716,6 +1754,7 @@
"Select how to split message text for TTS requests": "TTS 요청에 대한 메시지 텍스트 분할 방법 선택",
"Select Knowledge": "지식 기반 선택",
"Select Method": "",
"Select model": "",
"Select only one model to call": "음성 기능을 위해서는 모델을 하나만 선택해야 합니다.",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1825,6 +1864,7 @@
"Start of the channel": "채널 시작",
"Start Tag": "시작 태그",
"Starting kernel...": "",
"State": "",
"Status": "상태",
"Status cleared successfully": "상태 초기화에 성공했습니다",
"Status updated successfully": "상태 업데이트에 성공했습니다",
@@ -1875,8 +1915,10 @@
"Talk to Model": "",
"Tap to interrupt": "탭하여 중단",
"Task List": "작업 목록",
"Task Management": "",
"Task Model": "작업 모델",
"Tasks": "작업",
"tasks completed": "",
"Tavily API Key": "Tavily API 키",
"Tavily Extract Depth": "Tabily 깊이 추출",
"Tell us more:": "더 알려주세요:",
@@ -1943,6 +1985,7 @@
"Tika": "",
"Tika Server URL required.": "Tika 서버 URL이 필요합니다.",
"Tiktoken": "틱토큰 (Tiktoken)",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "제목",
@@ -1960,6 +2003,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "여기서 도구를 선택하려면, \"도구\" 워크스페이스에 먼저 추가하세요.",
"Toast notifications for new updates": "새 업데이트 알림",
"Today": "오늘",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "오늘 {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2098,6 +2142,7 @@
"Waiting for upload...": "",
"Warning": "경고",
"Warning:": "주의:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "주의: 이 기능을 활성화하면 사용자가 서버에 임의 코드를 업로드할 수 있습니다.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "경고: Jupyter 실행은 임의의 코드 실행을 가능하게 하여 심각한 보안 위험을 초래합니다. — 매우 신중하게 진행하세요.",
"Web": "웹",
@@ -2132,6 +2177,7 @@
"Width": "",
"Wikipedia": "",
"Won": "승리",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "top-k와 함께 작동합니다. 값이 높을수록(예: 0.95) 더 다양한 텍스트가 생성되고, 값이 낮을수록(예: 0.5) 더 집중적이고 보수적인 텍스트가 생성됩니다.",
"Workspace": "워크스페이스",
"Workspace Permissions": "워크스페이스 권한",
@@ -184,6 +184,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -200,6 +201,7 @@
"Assistant": "",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -222,6 +224,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 bazės nuoroda",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 bazės nuoroda reikalinga.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "",
"Available models": "",
"Available Tools": "",
@@ -252,6 +261,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "Brave Search API raktas",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -385,6 +395,7 @@
"Concurrent Requests": "Kelios užklausos vienu metu",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "",
"Confirm": "Patvrtinti",
"Confirm Password": "Patvirtinkite slaptažodį",
@@ -454,6 +465,7 @@
"Create new secret key": "Sukurti naują slaptą raktą",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Sukurta",
"Created At": "Sukurta",
@@ -475,6 +487,7 @@
"Data Controls": "",
"Database": "Duomenų bazė",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "Gruodis",
@@ -505,6 +518,7 @@
"Delete All": "",
"Delete All Chats": "Ištrinti visus pokalbius",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Ištrinti pokalbį",
"Delete chat?": "Ištrinti pokalbį?",
"Delete File": "",
@@ -649,6 +663,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Embedding modelis",
"Embedding Model Engine": "Embedding modelio variklis",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -740,6 +755,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "Įveskite rezultatą",
@@ -764,6 +780,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "Įveskite Tavily API raktą",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -803,6 +820,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -820,6 +838,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "Eksperimentinis",
"Explain": "",
@@ -1083,6 +1102,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Instaliuoti Github nuorodą",
"Instant Auto-Send After Voice Transcription": "Siųsti iškart po balso transkripcijos",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "Sąsaja",
@@ -1142,6 +1162,7 @@
"Last 90 days": "",
"Last Active": "Paskutinį kartą aktyvus",
"Last Modified": "Paskutinis pakeitimas",
"Last ran": "",
"Last reply": "",
"LDAP": "",
"LDAP server updated": "",
@@ -1248,6 +1269,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' modelis sėkmingai atsisiųstas.",
"Model '{{modelTag}}' is already in queue for downloading.": "Modelis '{{modelTag}}' jau atsisiuntimų eilėje.",
"Model {{modelId}} not found": "Modelis {{modelId}} nerastas",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Modelis {{modelName}} neturi vaizdo gebėjimų",
"Model {{name}} is now {{status}}": "Modelis {{name}} dabar {{status}}",
"Model {{name}} is now hidden": "",
@@ -1297,8 +1319,11 @@
"Name": "Pavadinimas",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Naujas pokalbis",
"New File": "",
@@ -1317,9 +1342,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1330,6 +1357,7 @@
"No data": "",
"No data found": "",
"No distance available": "",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Nėra pasirinktų dokumentų",
@@ -1376,6 +1404,7 @@
"Not factually correct": "Faktiškai netikslu",
"Not helpful": "",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Jei turite minimalų įvertį, paieška gražins tik tą informaciją, kuri viršyje šį įvertį",
@@ -1449,6 +1478,7 @@
"or": "arba",
"Ordered List": "",
"Other": "Kita",
"out of": "",
"Output": "",
"OUTPUT": "",
"Output format": "",
@@ -1464,6 +1494,7 @@
"Password": "Slaptažodis",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Paused": "",
"PDF document (.pdf)": "PDF dokumentas (.pdf)",
"PDF Extract Images (OCR)": "PDF paveikslėlių skaitymas (OCR)",
"PDF Loader Mode": "",
@@ -1568,6 +1599,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "Įrašyti balsą",
"Redirecting you to Open WebUI Community": "Perkeliam Jus į OpenWebUI bendruomenę",
@@ -1603,6 +1635,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1637,6 +1670,8 @@
"RTL": "RTL",
"Run": "",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Veikia",
"Running...": "Veikia...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1647,12 +1682,15 @@
"Save Chat": "",
"Saved": "",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Pokalbių saugojimas naršyklėje nebegalimas.",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Ieškoti",
"Search a model": "Ieškoti modelio",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "",
"Search channels and channel messages": "",
"Search Chats": "Ieškoti pokalbiuose",
@@ -1722,6 +1760,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Pasirinkite vieną modelį",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1831,6 +1870,7 @@
"Start of the channel": "Kanalo pradžia",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1881,8 +1921,10 @@
"Talk to Model": "",
"Tap to interrupt": "Paspauskite norėdami pertraukti",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "Tavily API raktas",
"Tavily Extract Depth": "",
"Tell us more:": "Papasakokite daugiau",
@@ -1949,6 +1991,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Reiklainga Tika serverio nuorodą",
"Tiktoken": "",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Pavadinimas",
@@ -1966,6 +2009,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Norėdami pasirinkti įrankius, pirmiausia pridėkite juos prie įrankių nuostatuose",
"Toast notifications for new updates": "",
"Today": "Šiandien",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2104,6 +2148,7 @@
"Waiting for upload...": "",
"Warning": "Perspėjimas",
"Warning:": "Perspėjimas",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "Web",
@@ -2138,6 +2183,7 @@
"Width": "",
"Wikipedia": "",
"Won": "",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Nuostatos",
"Workspace Permissions": "",
@@ -183,6 +183,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "Vai tiešām vēlaties dzēst visas atmiņas? Šo darbību nevar atsaukt.",
"Are you sure you want to delete \"{{NAME}}\"?": "Vai tiešām vēlaties dzēst \"{{NAME}}\"?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Vai tiešām vēlaties dzēst šo kanālu?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -199,6 +200,7 @@
"Assistant": "Asistents",
"Async Embedding Processing": "Asinhronā iegulšanas apstrāde",
"Attach File From Knowledge": "Pievienot failu no zināšanām",
"Attach Files": "",
"Attach Knowledge": "Pievienot zināšanau bāzi",
"Attach Notes": "Pievienot piezīmes",
"Attach Webpage": "Pievienot tīmekļa lapu",
@@ -221,6 +223,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 bāzes URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 bāzes URL ir nepieciešams.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "Automātiski ievietot sistēmas rīkus vietējā funkciju izsaukšanas režīmā (piem., laika zīmogi, atmiņa, tērzēšanas vēsture, piezīmes utt.)",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Pieejamo saraksts",
"Available models": "",
"Available Tools": "Pieejamie rīki",
@@ -251,6 +260,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Konkrētu tokenu pastiprinājums vai sodīšana ierobežotām atbildēm. Novirzes vērtības tiks ierobežotas starp -100 un 100 (ieskaitot). (Noklusējums: nav)",
"Brave": "Brave",
"Brave Search API Key": "Brave Search API atslēga",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "Iebūvētie rīki",
"Bullet List": "Aizzīmju saraksts",
@@ -384,6 +394,7 @@
"Concurrent Requests": "Vienlaicīgie pieprasījumi",
"Config": "",
"Config imported successfully": "Konfigurācija veiksmīgi importēta",
"Configuration": "",
"Configure": "Konfigurēt",
"Confirm": "Apstiprināt",
"Confirm Password": "Apstiprināt paroli",
@@ -453,6 +464,7 @@
"Create new secret key": "Izveidot jaunu slepeno atslēgu",
"Create note": "Izveidot piezīmi",
"Create Note": "Izveidot piezīmi",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Izveidojiet savu pirmo piezīmi, noklikšķinot uz pluszīmes pogas zemāk.",
"Created at": "Izveidots",
"Created At": "Izveidots",
@@ -474,6 +486,7 @@
"Data Controls": "Datu vadības",
"Database": "Datubāze",
"Datalab Marker API": "Datalab Marker API",
"Day": "",
"DD/MM/YYYY": "DD/MM/GGGG",
"DDGS Backend": "DDGS aizmugursistēma",
"December": "Decembris",
@@ -504,6 +517,7 @@
"Delete All": "",
"Delete All Chats": "Dzēst visas tērzēšanas",
"Delete all contents inside this folder": "Dzēst visu saturu šajā mapē",
"Delete automation?": "",
"Delete Chat": "Dzēst tērzēšanu",
"Delete chat?": "Dzēst tērzēšanu?",
"Delete File": "",
@@ -648,6 +662,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Iegulšanas modelis",
"Embedding Model Engine": "Iegulšanas modeļa dzinējs",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "Iespējot API atslēgas",
@@ -739,6 +754,7 @@
"Enter Perplexity Search API URL": "Ievadiet Perplexity Search API URL",
"Enter Playwright Timeout": "Ievadiet Playwright taimautu",
"Enter Playwright WebSocket URL": "Ievadiet Playwright WebSocket URL",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Ievadiet starpniekservera URL (piem., https://lietotājs:parole@host:ports)",
"Enter reasoning effort": "Ievadiet spriedumu pūles",
"Enter Score": "Ievadiet rezultātu",
@@ -763,6 +779,7 @@
"Enter system prompt here": "Ievadiet sistēmas uzvedni šeit",
"Enter Tavily API Key": "Ievadiet Tavily API atslēgu",
"Enter Tavily Extract Depth": "Ievadiet Tavily ekstrakcijas dziļumu",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Ievadiet sava WebUI publisko URL. Šis URL tiks izmantots saišu ģenerēšanai paziņojumos.",
"Enter the URL of the function to import": "Ievadiet importējamās funkcijas URL",
"Enter the URL to import": "Ievadiet importējamo URL",
@@ -802,6 +819,7 @@
"Error accessing directory": "Kļūda, piekļūstot direktorijai",
"Error accessing Google Drive: {{error}}": "Kļūda, piekļūstot Google Drive: {{error}}",
"Error accessing media devices.": "Kļūda, piekļūstot multivides ierīcēm.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Kļūda, sākot ierakstīšanu.",
"Error unloading model: {{error}}": "Kļūda, izlādējot modeli: {{error}}",
"Error uploading file: {{error}}": "Kļūda, augšupielādējot failu: {{error}}",
@@ -819,6 +837,7 @@
"Execute code": "",
"Execute code for analysis": "Izpildīt kodu analīzei",
"Executing **{{NAME}}**...": "Izpilda **{{NAME}}**...",
"Execution Logs": "",
"Expand": "Izvērst",
"Experimental": "Eksperimentāls",
"Explain": "Paskaidrot",
@@ -1082,6 +1101,7 @@
"Insert Suggestion Prompt to Input": "Ievietot ieteikuma uzvedni ievadē",
"Install from Github URL": "Instalēt no Github URL",
"Instant Auto-Send After Voice Transcription": "Tūlītēja automātiska nosūtīšana pēc balss transkripcijas",
"Instructions": "",
"Integration": "Integrācija",
"Integrations": "Integrācijas",
"Interface": "Saskarne",
@@ -1141,6 +1161,7 @@
"Last 90 days": "",
"Last Active": "Pēdējo reizi aktīvs",
"Last Modified": "Pēdējoreiz modificēts",
"Last ran": "",
"Last reply": "Pēdējā atbilde",
"LDAP": "LDAP",
"LDAP server updated": "LDAP serveris atjaunināts",
@@ -1247,6 +1268,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Modelis '{{modelName}}' ir veiksmīgi lejupielādēts.",
"Model '{{modelTag}}' is already in queue for downloading.": "Modelis '{{modelTag}}' jau ir lejupielādes rindā.",
"Model {{modelId}} not found": "Modelis {{modelId}} nav atrasts",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Modelis {{modelName}} neatbalsta redzi",
"Model {{name}} is now {{status}}": "Modelis {{name}} tagad ir {{status}}",
"Model {{name}} is now hidden": "Modelis {{name}} tagad ir slēpts",
@@ -1296,8 +1318,11 @@
"Name": "Nosaukums",
"Name and ID are required, please fill them out": "Nosaukums un ID ir nepieciešami, lūdzu, aizpildiet tos",
"Name your knowledge base": "Nosauciet savu zināšanu bāzi",
"Name, prompt, and model are required": "",
"Native": "Vietējais",
"Never": "",
"New": "Jauns",
"New Automation": "",
"New Button": "Jauna poga",
"New Chat": "Jauna tērzēšana",
"New File": "",
@@ -1316,9 +1341,11 @@
"New Webhook": "Jauns webhook",
"new-channel": "jauns-kanāls",
"Next message": "Nākamais ziņojums",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "Nav aktivitātes datu",
"No authentication": "Nav autentifikācijas",
"No automations found": "",
"No chats found": "Tērzēšanas nav atrastas",
"No chats found for this user.": "Šim lietotājam nav atrasta neviena tērzēšana.",
"No chats found.": "Tērzēšanas nav atrastas.",
@@ -1329,6 +1356,7 @@
"No data": "",
"No data found": "",
"No distance available": "Attālums nav pieejams",
"No execution logs available yet": "",
"No expiration can pose security risks.": "Bez derīguma termiņa var rasties drošības riski.",
"No feedback found": "Atsauksmes nav atrastas",
"No file selected": "Fails nav izvēlēts",
@@ -1375,6 +1403,7 @@
"Not factually correct": "Faktiski nepareizi",
"Not helpful": "Nav noderīgs",
"Not Registered": "Nav reģistrēts",
"Not scheduled": "",
"Note": "Piezīme",
"Note deleted successfully": "Piezīme veiksmīgi dzēsta",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Piezīme: Ja iestatāt minimālo punktu skaitu, meklēšana atgriezīs tikai dokumentus ar punktu skaitu, kas lielāks vai vienāds ar minimālo punktu skaitu.",
@@ -1448,6 +1477,7 @@
"or": "vai",
"Ordered List": "Numurēts saraksts",
"Other": "Cits",
"out of": "",
"Output": "",
"OUTPUT": "IZVADE",
"Output format": "Izvades formāts",
@@ -1463,6 +1493,7 @@
"Password": "Parole",
"Passwords do not match.": "Paroles nesakrīt.",
"Paste Large Text as File": "Ielīmēt lielu tekstu kā failu",
"Paused": "",
"PDF document (.pdf)": "PDF dokuments (.pdf)",
"PDF Extract Images (OCR)": "PDF attēlu ekstrakcija (OCR)",
"PDF Loader Mode": "",
@@ -1567,6 +1598,7 @@
"Reason": "Iemesls",
"Reasoning Effort": "Spriedumu pūles",
"Reasoning Tags": "Spriedumu tagi",
"Recently Used": "",
"Record": "Ierakstīt",
"Record voice": "Ierakstīt balsi",
"Redirecting you to Open WebUI Community": "Novirza jūs uz Open WebUI kopienu",
@@ -1602,6 +1634,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Pārkārtot modeļus",
"Repeats": "",
"Reply": "Atbildēt",
"Reply in Thread": "Atbildēt pavedienā",
"Reply to thread...": "Atbildēt pavedienā...",
@@ -1635,6 +1668,8 @@
"RTL": "RTL",
"Run": "Palaist",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Darbojas",
"Running...": "Darbojas...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Palaiž iegulšanas uzdevumus vienlaicīgi, lai paātrinātu apstrādi. Izslēdziet, ja rodas ātruma ierobežojumu problēmas.",
@@ -1645,12 +1680,15 @@
"Save Chat": "Saglabāt tērzēšanu",
"Saved": "Saglabāts",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Tērzēšanas žurnālu saglabāšana tieši pārlūka krātuvē vairs netiek atbalstīta. Lūdzu, veltiet brīdi, lai lejupielādētu un dzēstu tērzēšanas žurnālus, noklikšķinot uz pogas zemāk. Neuztraucieties, jūs varat viegli atkārtoti importēt tērzēšanas žurnālus aizmugursistēmā caur",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Ritināt pie zara maiņas",
"Search": "Meklēt",
"Search a model": "Meklēt modeli",
"Search all emojis": "Meklēt visas emocijzīmes",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "Meklēšanas bāze",
"Search channels and channel messages": "",
"Search Chats": "Meklēt tērzēšanas",
@@ -1720,6 +1758,7 @@
"Select how to split message text for TTS requests": "Izvēlieties, kā sadalīt ziņojuma tekstu TTS pieprasījumiem",
"Select Knowledge": "Izvēlieties zināšanas",
"Select Method": "Izvēlieties metodi",
"Select model": "",
"Select only one model to call": "Izvēlieties tikai vienu modeli izsaukšanai",
"Select view": "Izvēlieties skatu",
"Selected model: {{modelName}}": "",
@@ -1829,6 +1868,7 @@
"Start of the channel": "Kanāla sākums",
"Start Tag": "Sākuma tags",
"Starting kernel...": "",
"State": "",
"Status": "Statuss",
"Status cleared successfully": "Statuss veiksmīgi notīrīts",
"Status updated successfully": "Statuss veiksmīgi atjaunināts",
@@ -1879,8 +1919,10 @@
"Talk to Model": "Runāt ar modeli",
"Tap to interrupt": "Pieskarieties, lai pārtrauktu",
"Task List": "Uzdevumu saraksts",
"Task Management": "",
"Task Model": "Uzdevumu modelis",
"Tasks": "Uzdevumi",
"tasks completed": "",
"Tavily API Key": "Tavily API atslēga",
"Tavily Extract Depth": "Tavily ekstrakcijas dziļums",
"Tell us more:": "Pastāstiet vairāk:",
@@ -1947,6 +1989,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Nepieciešams Tika servera URL.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "Taimauts",
"Title": "Virsraksts",
@@ -1964,6 +2007,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Lai izvēlētos rīku komplektus šeit, vispirms pievienojiet tos \"Rīku\" darba videi.",
"Toast notifications for new updates": "Uznirstošie paziņojumi par jauniem atjauninājumiem",
"Today": "Šodien",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "Šodien plkst. {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2102,6 +2146,7 @@
"Waiting for upload...": "",
"Warning": "Brīdinājums",
"Warning:": "Brīdinājums:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Brīdinājums: Šīs opcijas iespējošana ļaus lietotājiem augšupielādēt patvaļīgu kodu serverī.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Brīdinājums: Jupyter izpilde ļauj patvaļīgu koda izpildi, radot nopietnus drošības riskus — rīkojieties ar ārkārtēju piesardzību.",
"Web": "Tīmeklis",
@@ -2136,6 +2181,7 @@
"Width": "Platums",
"Wikipedia": "Wikipedia",
"Won": "Uzvarēja",
"Working Directory": "",
"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.": "Darbojas kopā ar top-k. Augstāka vērtība (piem., 0.95) radīs daudzveidīgāku tekstu, bet zemāka vērtība (piem., 0.5) ģenerēs fokusētāku un konservatīvāku tekstu.",
"Workspace": "Darba vide",
"Workspace Permissions": "Darba vides atļaujas",
@@ -181,6 +181,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "Adakah anda pasti ingin mengarkibkan semua obrolan? Tindakan ini tidak boleh dibatalkan.",
"Are you sure you want to clear all memories? This action cannot be undone.": "Adakah anda pasti ingin menghapus semua ingatan? Tindakan ini tidak boleh dibatalkan.",
"Are you sure you want to delete \"{{NAME}}\"?": "Adakah anda pasti ingin menghapus \"{{NAME}}\"?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "Adakah anda pasti ingin menghapus semua obrolan? Tindakan ini tidak boleh dibatalkan.",
"Are you sure you want to delete this channel?": "Adakah anda pasti ingin menghapus saluran ini?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -197,6 +198,7 @@
"Assistant": "Pembantu",
"Async Embedding Processing": "Pemprosesan Embedding Tak Segerak",
"Attach File From Knowledge": "Lampirkan Fail Daripada Pengetahuan",
"Attach Files": "",
"Attach Knowledge": "Lampirkan Pengetahuan",
"Attach Notes": "Lampirkan Nota",
"Attach Webpage": "Lampirkan Halaman Web",
@@ -219,6 +221,13 @@
"AUTOMATIC1111 Base URL": "URL Asas AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "URL Asas AUTOMATIC1111 diperlukan.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "Secara automatik suntikkan alat sistem dalam mod panggilan fungsi asli (cth., setem masa, memori, sejarah sembang, nota, dll)",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Senarai tersedia",
"Available models": "Model tersedia",
"Available Tools": "Alat Tersedia",
@@ -249,6 +258,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Meningkatkan atau mengurangkan token tertentu untuk respons terbatas. Nilai bias akan dihadkan antara -100 dan 100 (termasuk). (Lalai: tiada)",
"Brave": "Brave",
"Brave Search API Key": "Kunci API Carian Brave",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "Semak imbas dan pertanyaan pangkalan pengetahuan",
"Builtin Tools": "Alat Terbina",
"Bullet List": "Senarai Tanda Pleura",
@@ -382,6 +392,7 @@
"Concurrent Requests": "Permintaan Serentak",
"Config": "Konfigurasi",
"Config imported successfully": "Konfigurasi diimport dengan berjaya",
"Configuration": "",
"Configure": "Konfigurasikan",
"Confirm": "Sahkan",
"Confirm Password": "Sahkan kata laluan",
@@ -451,6 +462,7 @@
"Create new secret key": "Cipta kekunci rahsia baharu",
"Create note": "Buat nota",
"Create Note": "Buat Nota",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Buat nota pertama anda dengan mengklik butang tambah di bawah.",
"Created at": "Dicipta di",
"Created At": "Dicipta Pada",
@@ -472,6 +484,7 @@
"Data Controls": "Kawalan Data",
"Database": "Pangkalan Data",
"Datalab Marker API": "API Penanda Datalab",
"Day": "",
"DD/MM/YYYY": "DD/MM/YYYY",
"DDGS Backend": "Bahagian Belakang DDGS",
"December": "Disember",
@@ -502,6 +515,7 @@
"Delete All": "Padam Semua",
"Delete All Chats": "Padam Semua Perbualan",
"Delete all contents inside this folder": "Padam semua kandungan dalam folder ini",
"Delete automation?": "",
"Delete Chat": "Padam Perbualan",
"Delete chat?": "Padam perbualan?",
"Delete File": "Padam Fail",
@@ -646,6 +660,7 @@
"Embedding Concurrent Requests": "Permintaan Serentak Pembenaman",
"Embedding Model": "Model Benamkan",
"Embedding Model Engine": "Enjin Model Benamkan",
"Emojis": "",
"Empty message": "",
"Enable All": "Dayakan Semua",
"Enable API Keys": "Dayakan Kunci API",
@@ -737,6 +752,7 @@
"Enter Perplexity Search API URL": "Masukkan URL API Pencarian Perplexity",
"Enter Playwright Timeout": "Masukkan Masa Tamat Playwright",
"Enter Playwright WebSocket URL": "Masukkan URL WebSocket Playwright",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Masukkan URL proksi (contoh: https://user:password@host:port)",
"Enter reasoning effort": "Masukkan usaha penaakulan",
"Enter Score": "Masukkan Skor",
@@ -761,6 +777,7 @@
"Enter system prompt here": "Masukkan gesaran sistem di sini",
"Enter Tavily API Key": "Masukkan Kunci API Tavily",
"Enter Tavily Extract Depth": "Masukkan Kedalaman Ekstrak Tavily",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Masukkan URL awam WebUI anda. URL ini akan digunakan untuk menjana pautan dalam pemberitahuan.",
"Enter the URL of the function to import": "Masukkan URL fungsi untuk diimport",
"Enter the URL to import": "Masukkan URL untuk diimport",
@@ -800,6 +817,7 @@
"Error accessing directory": "Ralat mengakses direktori",
"Error accessing Google Drive: {{error}}": "Ralat mengakses Google Drive: {{error}}",
"Error accessing media devices.": "Ralat mengakses peranti media.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Ralat memulai rakaman.",
"Error unloading model: {{error}}": "Ralat memunggah model: {{error}}",
"Error uploading file: {{error}}": "Ralat memuat naik fail: {{error}}",
@@ -817,6 +835,7 @@
"Execute code": "Laksanakan kod",
"Execute code for analysis": "Laksanakan kod untuk analisis",
"Executing **{{NAME}}**...": "Melaksanakan **{{NAME}}**...",
"Execution Logs": "",
"Expand": "Kembangkan",
"Experimental": "Percubaan",
"Explain": "Jelaskan",
@@ -1080,6 +1099,7 @@
"Insert Suggestion Prompt to Input": "Sisipkan Arahan Cadangan ke Input",
"Install from Github URL": "Pasang daripada URL Github",
"Instant Auto-Send After Voice Transcription": "Hantar Secara Automatik Dengan Segera Selepas Transkripsi Suara",
"Instructions": "",
"Integration": "Integrasi",
"Integrations": "Integrasi",
"Interface": "Antaramuka",
@@ -1139,6 +1159,7 @@
"Last 90 days": "90 hari lepas",
"Last Active": "Dilihat aktif terakhir pada",
"Last Modified": "Kemaskini terakhir pada",
"Last ran": "",
"Last reply": "Balasan terakhir",
"LDAP": "LDAP",
"LDAP server updated": "Pelayan LDAP dikemas kini",
@@ -1245,6 +1266,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{ modelName }}' telah berjaya dimuat turun.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{ modelTag }}' sudah dalam baris gilir untuk dimuat turun.",
"Model {{modelId}} not found": "Model {{ modelId }} tidak dijumpai",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{ modelName }} tidak mempunyai keupayaan penglihatan",
"Model {{name}} is now {{status}}": "Model {{name}} kini {{status}}",
"Model {{name}} is now hidden": "Model {{name}} kini tersembunyi",
@@ -1294,8 +1316,11 @@
"Name": "Nama",
"Name and ID are required, please fill them out": "Nama dan ID diperlukan, sila isi semuanya",
"Name your knowledge base": "Namakan pangkalan pengetahuan anda",
"Name, prompt, and model are required": "",
"Native": "Asli",
"Never": "",
"New": "Baru",
"New Automation": "",
"New Button": "Butang Baru",
"New Chat": "Perbualan Baru",
"New File": "Fail Baru",
@@ -1314,9 +1339,11 @@
"New Webhook": "Webhook Baru",
"new-channel": "saluran-baru",
"Next message": "Mesej Seterusnya",
"Next run": "",
"No access grants. Private to you.": "Tiada geran akses. Peribadi untuk anda.",
"No activity data": "Tiada data aktiviti",
"No authentication": "Tiada pengesahan",
"No automations found": "",
"No chats found": "Tiada sembang ditemui",
"No chats found for this user.": "Tiada sembang ditemui untuk pengguna ini.",
"No chats found.": "Tiada sembang ditemui.",
@@ -1327,6 +1354,7 @@
"No data": "Tiada data",
"No data found": "Tiada data ditemui",
"No distance available": "Tiada jarak tersedia",
"No execution logs available yet": "",
"No expiration can pose security risks.": "Tiada tamat tempoh boleh menimbulkan risiko keselamatan.",
"No feedback found": "Tiada maklum balas ditemui",
"No file selected": "Tiada fail dipilih",
@@ -1373,6 +1401,7 @@
"Not factually correct": "Tidak tepat secara fakta",
"Not helpful": "Tidak berguna",
"Not Registered": "Tidak Didaftar",
"Not scheduled": "",
"Note": "Nota",
"Note deleted successfully": "Nota telah dipadamkan dengan berjaya",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Jika anda menetapkan skor minimum, carian hanya akan mengembalikan dokumen dengan skor lebih besar daripada atau sama dengan skor minimum.",
@@ -1446,6 +1475,7 @@
"or": "atau",
"Ordered List": "Senarai Tertib",
"Other": "Lain-lain",
"out of": "",
"Output": "Output",
"OUTPUT": "OUTPUT",
"Output format": "Format output",
@@ -1461,6 +1491,7 @@
"Password": "Kata Laluan",
"Passwords do not match.": "Kata laluan tidak sepadan.",
"Paste Large Text as File": "Tampal Teks Besar sebagai Fail",
"Paused": "",
"PDF document (.pdf)": "Dokumen PDF (.pdf)",
"PDF Extract Images (OCR)": "Imej Ekstrak PDF (OCR)",
"PDF Loader Mode": "Mode Pemuat PDF",
@@ -1565,6 +1596,7 @@
"Reason": "Sebab",
"Reasoning Effort": "Usaha Penaakulan",
"Reasoning Tags": "Tag Penaakulan",
"Recently Used": "",
"Record": "Rakaman",
"Record voice": "Rakam suara",
"Redirecting you to Open WebUI Community": "Membawa anda ke Komuniti OpenWebUI",
@@ -1600,6 +1632,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "Render Markdown dalam Pratonton",
"Reorder Models": "Susun Semula Model",
"Repeats": "",
"Reply": "Balas",
"Reply in Thread": "Balas dalam Benang",
"Reply to thread...": "Balas ke benang...",
@@ -1631,6 +1664,8 @@
"RTL": "RTL",
"Run": "Jalankan",
"Run All": "Jalankan Semua",
"Run now": "",
"Run Now": "",
"Running": "Sedang dijalankan",
"Running...": "Sedang dijalankan...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Menjalankan tugas penyisipan secara serentak untuk mempercepatkan pemprosesan. Matikan jika had kadar menjadi isu.",
@@ -1641,12 +1676,15 @@
"Save Chat": "Simpan Obrolan",
"Saved": "Tersimpan",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Penyimpanan log perbualan terus ke storan pelayan web anda tidak lagi disokong. Sila luangkan sedikit masa untuk memuat turun dan memadam log perbualan anda dengan mengklik butang di bawah. Jangan risau, anda boleh mengimport semula log perbualan anda dengan mudah melalui 'backend'",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Skrol Semasa Pertukaran Cabang",
"Search": "Carian",
"Search a model": "Cari Model",
"Search all emojis": "Cari semua emoji",
"Search and manage user memories": "Cari dan urus ingatan pengguna",
"Search and view user chat history": "Cari dan lihat sejarah obrolan pengguna",
"Search Automations": "",
"Search Base": "Cari Pangkalan",
"Search channels and channel messages": "Cari saluran dan mesej saluran",
"Search Chats": "Cari Perbualan",
@@ -1716,6 +1754,7 @@
"Select how to split message text for TTS requests": "Pilih cara untuk membahagikan teks mesej untuk permintaan TTS",
"Select Knowledge": "Pilih Pengetahuan",
"Select Method": "Pilih Kaedah",
"Select model": "",
"Select only one model to call": "Pilih hanya satu model untuk dipanggil",
"Select view": "Pilih paparan",
"Selected model: {{modelName}}": "Model terpilih: {{modelName}}",
@@ -1825,6 +1864,7 @@
"Start of the channel": "Permulaan saluran",
"Start Tag": "Tag Permulaan",
"Starting kernel...": "Kernel sedang dimulakan...",
"State": "",
"Status": "Status",
"Status cleared successfully": "Status telah dihapus dengan berjaya",
"Status updated successfully": "Status telah dikemas kini dengan berjaya",
@@ -1875,8 +1915,10 @@
"Talk to Model": "Bual dengan Model",
"Tap to interrupt": "Sentuh untuk mengganggu",
"Task List": "Senarai Tugas",
"Task Management": "",
"Task Model": "Model Tugas",
"Tasks": "Tugas",
"tasks completed": "",
"Tavily API Key": "Kunci API Tavily",
"Tavily Extract Depth": "Kedalaman Ekstrak Tavily",
"Tell us more:": "Beritahu kami lebih lanjut",
@@ -1943,6 +1985,7 @@
"Tika": "Tika",
"Tika Server URL required.": "URL Pelayan Tika diperlukan.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "Masa & Pengiraan",
"Timeout": "Tamat Masa",
"Title": "Tajuk",
@@ -1960,6 +2003,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Untuk memilih kit alatan di sini, tambahkannya pada ruang kerja \"Tools\" dahulu.",
"Toast notifications for new updates": "Pemberitahuan Toast untuk kemas kini baharu",
"Today": "Hari Ini",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "Hari ini pada {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "Togol {{COUNT}} sumber",
"Toggle 1 source": "Togol 1 sumber",
@@ -2098,6 +2142,7 @@
"Waiting for upload...": "Menunggu pemuat...",
"Warning": "Amaran",
"Warning:": "Amaran:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Amaran: Mengaktifkan ini akan membenarkan pengguna memuat naik kod arbitrari pada pelayan.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Amaran: Pelaksanaan Jupyter membolehkan pelaksanaan kod arbitrari, menimbulkan risiko keselamatan yang teruk—teruskan dengan berhati-hati.",
"Web": "Web",
@@ -2132,6 +2177,7 @@
"Width": "Lebar",
"Wikipedia": "Wikipedia",
"Won": "Menang",
"Working Directory": "",
"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.": "Berfungsi bersama dengan top-k. Nilai yang lebih tinggi (contohnya, 0.95) akan menghasilkan teks yang lebih pelbagai, manakala nilai yang lebih rendah (contohnya, 0.5) akan menghasilkan teks yang lebih fokus dan konservatif.",
"Workspace": "Ruangan Kerja",
"Workspace Permissions": "Kebenaran Ruang Kerja",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Er du sikker på at du vil slette denne kanalen?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "Assistent",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "Absolutt URL for AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "Absolutt URL for AUTOMATIC1111 kreves.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Tilgjengelig liste",
"Available models": "",
"Available Tools": "",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "API-nøkkel for Brave Search",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Samtidige forespørsler",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "Konfigurer",
"Confirm": "Bekreft",
"Confirm Password": "Bekreft passordet",
@@ -452,6 +463,7 @@
"Create new secret key": "Lag ny hemmelig nøkkel",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Opprettet",
"Created At": "Opprettet",
@@ -473,6 +485,7 @@
"Data Controls": "",
"Database": "Database",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "desember",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "Slett alle chatter",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Slett chat",
"Delete chat?": "Slette chat?",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Innbyggingsmodell",
"Embedding Model Engine": "Motor for innbygging av modeller",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Angi proxy-URL (f.eks. https://bruker:passord@host:port)",
"Enter reasoning effort": "Angi hvor mye resonneringsinnsats som skal til",
"Enter Score": "Angi poengsum",
@@ -762,6 +778,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "Angi API-nøkkel for Tavily",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Angi den offentlige URL-adressen til WebUI. Denne URL-adressen vil bli brukt til å generere koblinger i varslene.",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Feil under tilgang til Google Disk: {{error}}",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "Feil under opplasting av fil: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "Kjør kode for analyse",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "Eksperimentell",
"Explain": "",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Installer fra GitHub-URL",
"Instant Auto-Send After Voice Transcription": "Øyeblikkelig automatisk sending etter taletranskripsjon",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "Grensesnitt",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "Sist aktiv",
"Last Modified": "Sist endret",
"Last ran": "",
"Last reply": "Siste svar",
"LDAP": "LDAP",
"LDAP server updated": "LDAP-server oppdatert",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Modellen {{modelName}} er lastet ned.",
"Model '{{modelTag}}' is already in queue for downloading.": "Modellen {{modelTag}} er allerede i nedlastingskøen.",
"Model {{modelId}} not found": "Finner ikke modellen {{modelId}}",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Modellen {{modelName}} er ikke egnet til visuelle data",
"Model {{name}} is now {{status}}": "Modellen {{name}} er nå {{status}}",
"Model {{name}} is now hidden": "",
@@ -1295,8 +1317,11 @@
"Name": "Navn",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Gi kunnskapsbasen et navn",
"Name, prompt, and model are required": "",
"Native": "Opprinnelig",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Ny chat",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "ny-kanal",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "Ingen avstand tilgjengelig",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Ingen fil valgt",
@@ -1374,6 +1402,7 @@
"Not factually correct": "Uriktig informasjon",
"Not helpful": "Ikke nyttig",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Merk: Hvis du setter en minimumspoengsum, returnerer søket kun dokumenter med en poengsum som er større enn eller lik minimumspoengsummen.",
@@ -1447,6 +1476,7 @@
"or": "eller",
"Ordered List": "",
"Other": "Annet",
"out of": "",
"Output": "",
"OUTPUT": "UTDATA",
"Output format": "Format på utdata",
@@ -1462,6 +1492,7 @@
"Password": "Passord",
"Passwords do not match.": "",
"Paste Large Text as File": "Lim inn mye tekst som fil",
"Paused": "",
"PDF document (.pdf)": "PDF-dokument (.pdf)",
"PDF Extract Images (OCR)": "Uthenting av PDF-bilder (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "Resonneringsinnsats",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "Ta opp tale",
"Redirecting you to Open WebUI Community": "Omdirigerer deg til OpenWebUI-fellesskapet",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Sorter modeller på nytt",
"Repeats": "",
"Reply": "",
"Reply in Thread": "Svar i tråd",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "Kjør",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Kjører",
"Running...": "Kjører...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "",
"Saved": "Lagret",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Lagring av chattelogger direkte til nettleserens lagringsområde støttes ikke lenger. Ta et øyeblikk til å laste ned og slette chatteloggende dine ved å klikke på knappen nedenfor. Ikke bekymre deg, du kan enkelt importere chatteloggene dine til backend på nytt via",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Søk",
"Search a model": "Søk etter en modell",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "Søke etter base",
"Search channels and channel messages": "",
"Search Chats": "Søk etter chatter",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Velg kunnskap",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Velg bare én modell som skal kalles",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Starten av kanalen",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "Trykk for å avbryte",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "Oppgaver",
"tasks completed": "",
"Tavily API Key": "API-nøkkel for Tavily",
"Tavily Extract Depth": "",
"Tell us more:": "Fortell oss mer:",
@@ -1945,6 +1987,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Server-URL for Tika kreves.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Tittel",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Hvis du vil velge verktøysett her, må du først legge dem til i arbeidsområdet \"Verktøy\".",
"Toast notifications for new updates": "Hurtigmelding-notifikasjon for nye oppdateringer",
"Today": "I dag",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "Advarsel",
"Warning:": "Advarsel!",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Advarsel: Hvis du aktiverer denne funksjonen, kan brukere laste opp vilkårlig kode på serveren.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Advarsel! Jupyter gjør det mulig å kjøre vilkårlig kode, noe som utgjør en alvorlig sikkerhetsrisiko. Utvis ekstrem forsiktighet.",
"Web": "Web",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "Vant",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Arbeidsområde",
"Workspace Permissions": "Tillatelser for arbeidsområde",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "Weet je zeker dat je alle herinneringen wil verwijderen? Deze actie kan niet ongedaan worden gemaakt.",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Weet je zeker dat je dit kanaal wil verwijderen?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "Assistent",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Basis-URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Basis-URL is verplicht",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Beschikbare lijst",
"Available models": "",
"Available Tools": "",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Versterken of bestraffen van specifieke tokens voor beperkte reacties. Biaswaarden worden geklemd tussen -100 en 100 (inclusief). (Standaard: none)",
"Brave": "",
"Brave Search API Key": "Brave Search API-sleutel",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Gelijktijdige verzoeken",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "Configureer",
"Confirm": "Bevestigen",
"Confirm Password": "Bevestig wachtwoord",
@@ -452,6 +463,7 @@
"Create new secret key": "Maak nieuwe geheime sleutel",
"Create note": "",
"Create Note": "Maak notitie",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Gemaakt op",
"Created At": "Gemaakt op",
@@ -473,6 +485,7 @@
"Data Controls": "",
"Database": "Database",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "December",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "Verwijder alle chats",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Verwijder chat",
"Delete chat?": "Verwijder chat?",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Embedding Model",
"Embedding Model Engine": "Embedding Model Engine",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Voer proxy-URL in (bijv. https://gebruiker:wachtwoord@host:port)",
"Enter reasoning effort": "Voer redeneerinspanning in",
"Enter Score": "Voeg score toe",
@@ -762,6 +778,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "Voer Tavily API-sleutel in",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Voer de publieke URL van je WebUI in. Deze URL wordt gebruikt om links in de notificaties te maken.",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Fout bij het benaderen van Google Drive: {{error}}",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "Error bij het uploaden van bestand: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "Voer code uit voor analyse",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "Uitbreiden",
"Experimental": "Experimenteel",
"Explain": "Leg uit",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Installeren vanaf Github-URL",
"Instant Auto-Send After Voice Transcription": "Direct automatisch verzenden na spraaktranscriptie",
"Instructions": "",
"Integration": "Integratie",
"Integrations": "",
"Interface": "Interface",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "Laatst Actief",
"Last Modified": "Laatst aangepast",
"Last ran": "",
"Last reply": "Laatste antwoord",
"LDAP": "LDAP",
"LDAP server updated": "LDAP-server bijgewerkt",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' is succesvol gedownload.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' staat al in de wachtrij voor downloaden.",
"Model {{modelId}} not found": "Model {{modelId}} niet gevonden",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} is niet geschikt voor visie",
"Model {{name}} is now {{status}}": "Model {{name}} is nu {{status}}",
"Model {{name}} is now hidden": "Model {{naam}} is nu verborgen",
@@ -1295,8 +1317,11 @@
"Name": "Naam",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Geef je kennisbasis een naam",
"Name, prompt, and model are required": "",
"Native": "Native",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Nieuwe Chat",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "nieuw-kanaal",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "Geen afstand beschikbaar",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Geen bestand geselecteerd",
@@ -1374,6 +1402,7 @@
"Not factually correct": "Niet feitelijk juist",
"Not helpful": "Niet nuttig",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Opmerking: Als je een minimumscore instelt, levert de zoekopdracht alleen documenten op met een score groter dan of gelijk aan de minimumscore.",
@@ -1447,6 +1476,7 @@
"or": "of",
"Ordered List": "",
"Other": "Andere",
"out of": "",
"Output": "",
"OUTPUT": "UITVOER",
"Output format": "Uitvoerformaat",
@@ -1462,6 +1492,7 @@
"Password": "Wachtwoord",
"Passwords do not match.": "",
"Paste Large Text as File": "Plak grote tekst als bestand",
"Paused": "",
"PDF document (.pdf)": "PDF document (.pdf)",
"PDF Extract Images (OCR)": "PDF extraheer afbeeldingen (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "Redeneerinspanning",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "Neem stem op",
"Redirecting you to Open WebUI Community": "Je wordt doorgestuurd naar OpenWebUI Community",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Herschik modellen",
"Repeats": "",
"Reply": "",
"Reply in Thread": "Antwoord in draad",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "RNL",
"Run": "Uitvoeren",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Aan het uitvoeren",
"Running...": "Aan het uitvoeren...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "",
"Saved": "Opgeslagen",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Chat logs direct opslaan in de opslag van je browser wordt niet langer ondersteund. Neem even de tijd om je chat logs te downloaden en te verwijderen door op de knop hieronder te klikken. Maak je geen zorgen, je kunt je chat logs eenvoudig opnieuw importeren naar de backend via",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Zoeken",
"Search a model": "Zoek een model",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "Zoeken naar basis",
"Search channels and channel messages": "",
"Search Chats": "Chats zoeken",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Selecteer kennis",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Selecteer maar één model om aan te roepen",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Begin van het kanaal",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "Tik om te onderbreken",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "Taken",
"tasks completed": "",
"Tavily API Key": "Tavily API-sleutel",
"Tavily Extract Depth": "",
"Tell us more:": "Vertel ons meer:",
@@ -1945,6 +1987,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Tika Server-URL vereist",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Titel",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Om hier gereedschapssets te selecteren, voeg ze eerst aan de \"Gereedschappen\" Werkplaats toe.",
"Toast notifications for new updates": "Toon notificaties voor nieuwe updates",
"Today": "Vandaag",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "Waarschuwing",
"Warning:": "Waarschuwing",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Waarschuwing: Door dit in te schakelen kunnen gebruikers willekeurige code uploaden naar de server.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Waarschuwing: Jupyter kan willekeurige code uitvoeren, wat ernstige veiligheidsrisico's met zich meebrengt - ga uiterst voorzichtig te werk. ",
"Web": "Web",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "Gewonnen",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Werkt samen met top-k. Een hogere waarde (bijv. 0,95) leidt tot meer diverse tekst, terwijl een lagere waarde (bijv. 0,5) meer gerichte en conservatieve tekst genereert.",
"Workspace": "Werkruimte",
"Workspace Permissions": "Werkruimtemachtigingen",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 ਬੇਸ URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ਬੇਸ URL ਦੀ ਲੋੜ ਹੈ।",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "",
"Available models": "",
"Available Tools": "",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "ਬਹਾਦਰ ਖੋਜ API ਕੁੰਜੀ",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "ਸਮਕਾਲੀ ਬੇਨਤੀਆਂ",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "",
"Confirm": "",
"Confirm Password": "ਪਾਸਵਰਡ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ",
@@ -452,6 +463,7 @@
"Create new secret key": "ਨਵੀਂ ਗੁਪਤ ਕੁੰਜੀ ਬਣਾਓ",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "ਤੇ ਬਣਾਇਆ ਗਿਆ",
"Created At": "ਤੇ ਬਣਾਇਆ ਗਿਆ",
@@ -473,6 +485,7 @@
"Data Controls": "",
"Database": "ਡਾਟਾਬੇਸ",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "ਦਸੰਬਰ",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "ਸਾਰੀਆਂ ਚੈਟਾਂ ਨੂੰ ਮਿਟਾਓ",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "ਗੱਲਬਾਤ ਮਿਟਾਓ",
"Delete chat?": "",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ",
"Embedding Model Engine": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਇੰਜਣ",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "ਸਕੋਰ ਦਰਜ ਕਰੋ",
@@ -762,6 +778,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "ਪਰਮਾਣੂਕ੍ਰਿਤ",
"Explain": "",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Github URL ਤੋਂ ਇੰਸਟਾਲ ਕਰੋ",
"Instant Auto-Send After Voice Transcription": "",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "ਇੰਟਰਫੇਸ",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "ਆਖਰੀ ਸਰਗਰਮ",
"Last Modified": "",
"Last ran": "",
"Last reply": "",
"LDAP": "",
"LDAP server updated": "",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "ਮਾਡਲ '{{modelName}}' ਸਫਲਤਾਪੂਰਵਕ ਡਾਊਨਲੋਡ ਕੀਤਾ ਗਿਆ ਹੈ।",
"Model '{{modelTag}}' is already in queue for downloading.": "ਮਾਡਲ '{{modelTag}}' ਪਹਿਲਾਂ ਹੀ ਡਾਊਨਲੋਡ ਲਈ ਕਤਾਰ ਵਿੱਚ ਹੈ।",
"Model {{modelId}} not found": "ਮਾਡਲ {{modelId}} ਨਹੀਂ ਮਿਲਿਆ",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "ਮਾਡਲ {{modelName}} ਦ੍ਰਿਸ਼ਟੀ ਸਮਰੱਥ ਨਹੀਂ ਹੈ",
"Model {{name}} is now {{status}}": "ਮਾਡਲ {{name}} ਹੁਣ {{status}} ਹੈ",
"Model {{name}} is now hidden": "",
@@ -1295,8 +1317,11 @@
"Name": "ਨਾਮ",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "ਨਵੀਂ ਗੱਲਬਾਤ",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "",
@@ -1374,6 +1402,7 @@
"Not factually correct": "ਤੱਥਕ ਰੂਪ ਵਿੱਚ ਸਹੀ ਨਹੀਂ",
"Not helpful": "",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ਨੋਟ: ਜੇ ਤੁਸੀਂ ਘੱਟੋ-ਘੱਟ ਸਕੋਰ ਸੈੱਟ ਕਰਦੇ ਹੋ, ਤਾਂ ਖੋਜ ਸਿਰਫ਼ ਉਹੀ ਡਾਕੂਮੈਂਟ ਵਾਪਸ ਕਰੇਗੀ ਜਿਨ੍ਹਾਂ ਦਾ ਸਕੋਰ ਘੱਟੋ-ਘੱਟ ਸਕੋਰ ਦੇ ਬਰਾਬਰ ਜਾਂ ਵੱਧ ਹੋਵੇ।",
@@ -1447,6 +1476,7 @@
"or": "ਜਾਂ",
"Ordered List": "",
"Other": "ਹੋਰ",
"out of": "",
"Output": "",
"OUTPUT": "",
"Output format": "",
@@ -1462,6 +1492,7 @@
"Password": "ਪਾਸਵਰਡ",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Paused": "",
"PDF document (.pdf)": "PDF ਡਾਕੂਮੈਂਟ (.pdf)",
"PDF Extract Images (OCR)": "PDF ਚਿੱਤਰ ਕੱਢੋ (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "ਆਵਾਜ਼ ਰਿਕਾਰਡ ਕਰੋ",
"Redirecting you to Open WebUI Community": "ਤੁਹਾਨੂੰ ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਵੱਲ ਰੀਡਾਇਰੈਕਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "",
"Running...": "ਚੱਲ ਰਿਹਾ ਹੈ...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "",
"Saved": "",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "ਤੁਹਾਡੇ ਬ੍ਰਾਊਜ਼ਰ ਦੇ ਸਟੋਰੇਜ ਵਿੱਚ ਸਿੱਧੇ ਗੱਲਬਾਤ ਲੌਗ ਸੰਭਾਲਣਾ ਹੁਣ ਸਮਰਥਿਤ ਨਹੀਂ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਹੇਠਾਂ ਦਿੱਤੇ ਬਟਨ 'ਤੇ ਕਲਿੱਕ ਕਰਕੇ ਆਪਣੇ ਗੱਲਬਾਤ ਲੌਗ ਡਾਊਨਲੋਡ ਅਤੇ ਮਿਟਾਉਣ ਲਈ ਕੁਝ ਸਮਾਂ ਲਓ। ਚਿੰਤਾ ਨਾ ਕਰੋ, ਤੁਸੀਂ ਆਪਣੇ ਗੱਲਬਾਤ ਲੌਗ ਨੂੰ ਬੈਕਐਂਡ ਵਿੱਚ ਆਸਾਨੀ ਨਾਲ ਮੁੜ ਆਯਾਤ ਕਰ ਸਕਦੇ ਹੋ",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "ਖੋਜ",
"Search a model": "ਇੱਕ ਮਾਡਲ ਖੋਜੋ",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "",
"Search channels and channel messages": "",
"Search Chats": "ਖੋਜ ਚੈਟਾਂ",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "ਚੈਨਲ ਦੀ ਸ਼ੁਰੂਆਤ",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "",
"Tavily Extract Depth": "",
"Tell us more:": "ਸਾਨੂੰ ਹੋਰ ਦੱਸੋ:",
@@ -1945,6 +1987,7 @@
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "ਸਿਰਲੇਖ",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "",
"Toast notifications for new updates": "",
"Today": "ਅੱਜ",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "ਚੇਤਾਵਨੀ",
"Warning:": "ਚੇਤਾਵਨੀ:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "ਵੈਬ",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "ਕਾਰਜਸਥਲ",
"Workspace Permissions": "",
@@ -184,6 +184,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "Czy na pewno chcesz wyczyścić całą pamięć? Tej operacji nie można cofnąć.",
"Are you sure you want to delete \"{{NAME}}\"?": "Czy na pewno chcesz usunąć \"{{NAME}}\"?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Czy na pewno chcesz usunąć ten kanał?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -200,6 +201,7 @@
"Assistant": "Asystent",
"Async Embedding Processing": "Asynchroniczne przetwarzanie embeddingów",
"Attach File From Knowledge": "Dołącz plik z bazy wiedzy",
"Attach Files": "",
"Attach Knowledge": "Dołącz bazę wiedzy",
"Attach Notes": "Dołącz notatki",
"Attach Webpage": "Dołącz stronę www",
@@ -222,6 +224,13 @@
"AUTOMATIC1111 Base URL": "Bazowy adres URL AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "Bazowy adres URL AUTOMATIC1111 jest wymagany.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "Automatycznie wstrzykuj narzędzia systemowe w trybie natywnego wywoływania funkcji (np. znaczniki czasu, pamięć, historia, notatki).",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Dostępna lista",
"Available models": "",
"Available Tools": "Dostępne narzędzia",
@@ -252,6 +261,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Wzmacnianie lub karanie tokenów. Wartości bias (obciążenia) są ograniczone do zakresu -100 do 100. (Domyślnie: brak)",
"Brave": "Brave",
"Brave Search API Key": "Klucz API Brave Search",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "Wbudowane narzędzia",
"Bullet List": "Lista punktowana",
@@ -385,6 +395,7 @@
"Concurrent Requests": "Jednoczesne żądania",
"Config": "",
"Config imported successfully": "Konfiguracja zaimportowana pomyślnie",
"Configuration": "",
"Configure": "Konfiguruj",
"Confirm": "Potwierdź",
"Confirm Password": "Potwierdź hasło",
@@ -454,6 +465,7 @@
"Create new secret key": "Utwórz nowy tajny klucz",
"Create note": "Utwórz notatkę",
"Create Note": "Utwórz notatkę",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Utwórz pierwszą notatkę klikając plus poniżej.",
"Created at": "Utworzono",
"Created At": "Data utworzenia",
@@ -475,6 +487,7 @@
"Data Controls": "Zarządzanie danymi",
"Database": "Baza danych",
"Datalab Marker API": "API Datalab Marker",
"Day": "",
"DD/MM/YYYY": "DD/MM/YYYY",
"DDGS Backend": "DDGS Backend",
"December": "Grudzień",
@@ -505,6 +518,7 @@
"Delete All": "",
"Delete All Chats": "Usuń wszystkie czaty",
"Delete all contents inside this folder": "Usuń całą zawartość tego folderu",
"Delete automation?": "",
"Delete Chat": "Usuń czat",
"Delete chat?": "Usunąć czat?",
"Delete File": "",
@@ -649,6 +663,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Model embeddingów",
"Embedding Model Engine": "Silnik modelu embeddingów",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "Włącz klucze API",
@@ -740,6 +755,7 @@
"Enter Perplexity Search API URL": "Wprowadź URL API Perplexity Search",
"Enter Playwright Timeout": "Wprowadź timeout Playwright",
"Enter Playwright WebSocket URL": "Wprowadź URL WebSocket Playwright",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Wprowadź URL proxy (np. https://user:pass@host:port)",
"Enter reasoning effort": "Wprowadź Reasoning Effort",
"Enter Score": "Wprowadź wynik (Score)",
@@ -764,6 +780,7 @@
"Enter system prompt here": "Wprowadź prompt systemowy tutaj",
"Enter Tavily API Key": "Wprowadź klucz API Tavily",
"Enter Tavily Extract Depth": "Wprowadź Tavily Extract Depth",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Wprowadź publiczny URL Twojego WebUI. Używany w powiadomieniach.",
"Enter the URL of the function to import": "Wprowadź URL funkcji do zaimportowania",
"Enter the URL to import": "Wprowadź URL do zaimportowania",
@@ -803,6 +820,7 @@
"Error accessing directory": "Błąd dostępu do katalogu",
"Error accessing Google Drive: {{error}}": "Błąd dostępu do Google Drive: {{error}}",
"Error accessing media devices.": "Błąd dostępu do urządzeń medialnych.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Błąd podczas rozpoczynania nagrywania.",
"Error unloading model: {{error}}": "Błąd odładowywania modelu: {{error}}",
"Error uploading file: {{error}}": "Błąd przesyłania pliku: {{error}}",
@@ -820,6 +838,7 @@
"Execute code": "",
"Execute code for analysis": "Wykonaj kod do analizy",
"Executing **{{NAME}}**...": "Wykonywanie **{{NAME}}**...",
"Execution Logs": "",
"Expand": "Rozwiń",
"Experimental": "Eksperymentalne",
"Explain": "Wyjaśnij",
@@ -1083,6 +1102,7 @@
"Insert Suggestion Prompt to Input": "Wstaw sugerowany prompt do wejścia",
"Install from Github URL": "Zainstaluj z URL Githuba",
"Instant Auto-Send After Voice Transcription": "Wyślij natychmiast po transkrypcji głosu",
"Instructions": "",
"Integration": "Integracja",
"Integrations": "Integracje",
"Interface": "Interfejs",
@@ -1142,6 +1162,7 @@
"Last 90 days": "",
"Last Active": "Ostatnio aktywny",
"Last Modified": "Ostatnia modyfikacja",
"Last ran": "",
"Last reply": "Ostatnia odpowiedź",
"LDAP": "LDAP",
"LDAP server updated": "Serwer LDAP zaktualizowany",
@@ -1248,6 +1269,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' został pomyślnie pobrany.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' jest już w kolejce pobierania.",
"Model {{modelId}} not found": "Nie znaleziono modelu {{modelId}}",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} nie obsługuje widzenia (Vision)",
"Model {{name}} is now {{status}}": "Model {{name}} jest teraz {{status}}",
"Model {{name}} is now hidden": "Model {{name}} jest teraz ukryty",
@@ -1297,8 +1319,11 @@
"Name": "Nazwa",
"Name and ID are required, please fill them out": "Nazwa i ID są wymagane",
"Name your knowledge base": "Nazwij bazę wiedzy",
"Name, prompt, and model are required": "",
"Native": "Natywny",
"Never": "",
"New": "Nowy",
"New Automation": "",
"New Button": "Nowy przycisk",
"New Chat": "Nowy czat",
"New File": "",
@@ -1317,9 +1342,11 @@
"New Webhook": "Nowy webhook",
"new-channel": "nowy-kanal",
"Next message": "Następna wiadomość",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "Brak danych aktywności",
"No authentication": "Brak autoryzacji",
"No automations found": "",
"No chats found": "Nie znaleziono czatów",
"No chats found for this user.": "Nie znaleziono czatów dla tego użytkownika.",
"No chats found.": "Nie znaleziono czatów.",
@@ -1330,6 +1357,7 @@
"No data": "",
"No data found": "",
"No distance available": "Brak wyniku dopasowania",
"No execution logs available yet": "",
"No expiration can pose security risks.": "Brak wygasania może stanowić ryzyko bezpieczeństwa.",
"No feedback found": "Nie znaleziono informacji zwrotnej",
"No file selected": "Nie wybrano pliku",
@@ -1376,6 +1404,7 @@
"Not factually correct": "Merytorycznie niepoprawne",
"Not helpful": "Niepomocne",
"Not Registered": "Niezarejestrowany",
"Not scheduled": "",
"Note": "Notatka",
"Note deleted successfully": "Notatka usunięta pomyślnie",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Uwaga: Jeśli ustawisz minimalny wynik, wyszukiwanie zwróci tylko dokumenty powyżej tego progu.",
@@ -1449,6 +1478,7 @@
"or": "lub",
"Ordered List": "Lista numerowana",
"Other": "Inne",
"out of": "",
"Output": "",
"OUTPUT": "WYNIK",
"Output format": "Format wyjściowy",
@@ -1464,6 +1494,7 @@
"Password": "Hasło",
"Passwords do not match.": "Hasła nie pasują do siebie.",
"Paste Large Text as File": "Wklej duży tekst jako plik",
"Paused": "",
"PDF document (.pdf)": "Dokument PDF (.pdf)",
"PDF Extract Images (OCR)": "Wyodrębnij obrazy z PDF (OCR)",
"PDF Loader Mode": "",
@@ -1568,6 +1599,7 @@
"Reason": "Powód",
"Reasoning Effort": "Reasoning Effort",
"Reasoning Tags": "Reasoning Tags",
"Recently Used": "",
"Record": "Nagraj",
"Record voice": "Nagraj głos",
"Redirecting you to Open WebUI Community": "Przekierowanie do społeczności Open WebUI",
@@ -1603,6 +1635,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Zmień kolejność modeli",
"Repeats": "",
"Reply": "Odpowiedz",
"Reply in Thread": "Odpowiedz w wątku",
"Reply to thread...": "Odpowiedz w wątku...",
@@ -1637,6 +1670,8 @@
"RTL": "RTL (Od prawej)",
"Run": "Uruchom",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Działa",
"Running...": "Działa...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Uruchamia zadania embeddingu współbieżnie. Wyłącz, jeśli masz limity API.",
@@ -1647,12 +1682,15 @@
"Save Chat": "Zapisz czat",
"Saved": "Zapisano",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Zapisywanie historii w przeglądarce nie jest już wspierane. Pobierz i usuń logi poniżej. Możesz je potem zaimportować do backendu przez",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Przewiń przy zmianie gałęzi",
"Search": "Szukaj",
"Search a model": "Szukaj modelu",
"Search all emojis": "Szukaj emoji",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "Baza wyszukiwania",
"Search channels and channel messages": "",
"Search Chats": "Szukaj czatów",
@@ -1722,6 +1760,7 @@
"Select how to split message text for TTS requests": "Wybierz sposób podziału tekstu dla TTS",
"Select Knowledge": "Wybierz bazę wiedzy",
"Select Method": "Wybierz metodę",
"Select model": "",
"Select only one model to call": "Wybierz tylko jeden model do wywołania",
"Select view": "Wybierz widok",
"Selected model: {{modelName}}": "",
@@ -1831,6 +1870,7 @@
"Start of the channel": "Początek kanału",
"Start Tag": "Tag startowy",
"Starting kernel...": "",
"State": "",
"Status": "Status",
"Status cleared successfully": "Status wyczyszczony pomyślnie",
"Status updated successfully": "Status zaktualizowany pomyślnie",
@@ -1881,8 +1921,10 @@
"Talk to Model": "Rozmawiaj z modelem",
"Tap to interrupt": "Dotknij by przerwać",
"Task List": "Lista zadań",
"Task Management": "",
"Task Model": "Model zadaniowy",
"Tasks": "Zadania",
"tasks completed": "",
"Tavily API Key": "Klucz API Tavily",
"Tavily Extract Depth": "Tavily Extract Depth",
"Tell us more:": "Powiedz nam więcej:",
@@ -1949,6 +1991,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Wymagany URL serwera Tika.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "Limit czasu (Timeout)",
"Title": "Tytuł",
@@ -1966,6 +2009,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Aby wybrać narzędzia, dodaj je najpierw w obszarze \"Narzędzia\".",
"Toast notifications for new updates": "Powiadomienia o aktualizacjach",
"Today": "Dzisiaj",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "Dzisiaj o {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2104,6 +2148,7 @@
"Waiting for upload...": "",
"Warning": "Uwaga",
"Warning:": "Uwaga:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Uwaga: Włączenie tego pozwoli użytkownikom na przesyłanie dowolnego kodu na serwer.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Uwaga: Jupyter umożliwia wykonanie dowolnego kodu (ryzyko bezpieczeństwa) – zachowaj szczególną ostrożność.",
"Web": "Web",
@@ -2138,6 +2183,7 @@
"Width": "Szerokość",
"Wikipedia": "Wikipedia",
"Won": "Wygrano",
"Working Directory": "",
"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.": "Działa razem z top-k. Wyższa wartość (np. 0.95) = większa różnorodność, niższa = tekst bardziej spójny i zachowawczy.",
"Workspace": "Obszar roboczy",
"Workspace Permissions": "Uprawnienia obszaru roboczego",
@@ -183,6 +183,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "Tem certeza de que deseja arquivar todos os chats? Esta ação não pode ser desfeita.",
"Are you sure you want to clear all memories? This action cannot be undone.": "Tem certeza de que deseja apagar todas as memórias? Esta ação não pode ser desfeita.",
"Are you sure you want to delete \"{{NAME}}\"?": "Tem certeza de que deseja excluir \"{{NAME}}\"?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "Tem certeza de que deseja excluir todas as conversas? Esta ação não pode ser desfeita.",
"Are you sure you want to delete this channel?": "Tem certeza de que deseja excluir este canal?",
"Are you sure you want to delete this connection? This action cannot be undone.": "Tem certeza de que deseja excluir esta conexão? Esta ação não pode ser desfeita.",
@@ -199,6 +200,7 @@
"Assistant": "Assistente",
"Async Embedding Processing": "Processamento de Embedding assíncrono",
"Attach File From Knowledge": "Anexar arquivo da base de conhecimento",
"Attach Files": "",
"Attach Knowledge": "Anexar Base de Conhecimento",
"Attach Notes": "Anexar Notas",
"Attach Webpage": "Anexar Página Web",
@@ -221,6 +223,13 @@
"AUTOMATIC1111 Base URL": "URL Base AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "URL Base AUTOMATIC1111 é necessária.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "Injetar automaticamente ferramentas do sistema no modo de chamada de função nativa (por exemplo, carimbos de data/hora, memória, histórico de chat, notas, etc.)",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Lista disponível",
"Available models": "Modelos disponíveis",
"Available Tools": "Ferramentas disponíveis",
@@ -251,6 +260,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Aumentar ou penalizar tokens específicos para respostas restritas. Os valores de viés serão fixados entre -100 e 100 (inclusive). (Padrão: nenhum)",
"Brave": "Brave",
"Brave Search API Key": "Chave API do Brave Search",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "Navegue e consulte bases de conhecimento.",
"Builtin Tools": "Ferramentas integradas",
"Bullet List": "Lista com marcadores",
@@ -384,6 +394,7 @@
"Concurrent Requests": "Solicitações simultâneas",
"Config": "Configuração",
"Config imported successfully": "Configuração importada com sucesso",
"Configuration": "",
"Configure": "Configurar",
"Confirm": "Confirmar",
"Confirm Password": "Confirmar Senha",
@@ -453,6 +464,7 @@
"Create new secret key": "Criar nova chave secreta",
"Create note": "Criar nota",
"Create Note": "Criar Nota",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Crie sua primeira nota clicando no botão de adição abaixo.",
"Created at": "Criado em",
"Created At": "Criado Em",
@@ -474,6 +486,7 @@
"Data Controls": "Controle de Dados",
"Database": "Banco de Dados",
"Datalab Marker API": "API do Marcador do Datalab",
"Day": "",
"DD/MM/YYYY": "DD/MM/AAAA",
"DDGS Backend": "Backend DDGS",
"December": "Dezembro",
@@ -504,6 +517,7 @@
"Delete All": "Excluir tudo",
"Delete All Chats": "Excluir Todos os Chats",
"Delete all contents inside this folder": "Apague todo o conteúdo desta pasta.",
"Delete automation?": "",
"Delete Chat": "Excluir Chat",
"Delete chat?": "Excluir chat?",
"Delete File": "Excluir arquivo",
@@ -648,6 +662,7 @@
"Embedding Concurrent Requests": "Solicitações Simultâneas de Embedding",
"Embedding Model": "Modelo de Embedding",
"Embedding Model Engine": "Motor do Modelo de Embedding",
"Emojis": "",
"Empty message": "Mensagem vazia",
"Enable All": "Ativar tudo",
"Enable API Keys": "Habilitar Chaves de API",
@@ -739,6 +754,7 @@
"Enter Perplexity Search API URL": "Insira a URL da API de pesquisa Perplexity",
"Enter Playwright Timeout": "Insira o tempo limite do Playwright",
"Enter Playwright WebSocket URL": "Insira a URL do WebSocket do Playwright",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Insira a URL do proxy (por exemplo, https://usuário:senha@host:porta)",
"Enter reasoning effort": "Insira o esforço de raciocínio",
"Enter Score": "Digite a Pontuação",
@@ -763,6 +779,7 @@
"Enter system prompt here": "Insira o prompt do sistema aqui",
"Enter Tavily API Key": "Digite a Chave API do Tavily",
"Enter Tavily Extract Depth": "Insira a profundidade de extração do Tavily",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Insira a URL pública da sua WebUI. Esta URL será usada para gerar links nas notificações.",
"Enter the URL of the function to import": "Digite a URL da função a ser importada",
"Enter the URL to import": "Digite a URL para importar",
@@ -802,6 +819,7 @@
"Error accessing directory": "Erro ao acessar o diretório",
"Error accessing Google Drive: {{error}}": "Erro ao acessar o Google Drive: {{error}}",
"Error accessing media devices.": "Erro ao acessar dispositivos de mídia.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Erro ao iniciar a gravação.",
"Error unloading model: {{error}}": "Erro ao descarregar modelo: {{error}}",
"Error uploading file: {{error}}": "Erro ao carregar o arquivo: {{error}}",
@@ -819,6 +837,7 @@
"Execute code": "Executar código",
"Execute code for analysis": "Executar código para análise",
"Executing **{{NAME}}**...": "Executando **{{NAME}}**...",
"Execution Logs": "",
"Expand": "Expandir",
"Experimental": "Experimental",
"Explain": "Explicar",
@@ -1082,6 +1101,7 @@
"Insert Suggestion Prompt to Input": "Inserir prompt de sugestão para entrada",
"Install from Github URL": "Instalar da URL do Github",
"Instant Auto-Send After Voice Transcription": "Envio Automático Instantâneo Após Transcrição de Voz",
"Instructions": "",
"Integration": "Integração",
"Integrations": "Integrações",
"Interface": "Interface",
@@ -1141,6 +1161,7 @@
"Last 90 days": "Últimos 90 dias",
"Last Active": "Última Atividade",
"Last Modified": "Última Modificação",
"Last ran": "",
"Last reply": "Última resposta",
"LDAP": "LDAP",
"LDAP server updated": "Servidor LDAP atualizado",
@@ -1247,6 +1268,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Modelo '{{modelName}}' foi baixado com sucesso.",
"Model '{{modelTag}}' is already in queue for downloading.": "Modelo '{{modelTag}}' já está na fila para download.",
"Model {{modelId}} not found": "Modelo {{modelId}} não encontrado",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Modelo {{modelName}} não é capaz de visão",
"Model {{name}} is now {{status}}": "Modelo {{name}} está agora {{status}}",
"Model {{name}} is now hidden": "O modelo {{name}} agora está oculto",
@@ -1296,8 +1318,11 @@
"Name": "Nome",
"Name and ID are required, please fill them out": "Nome e ID são obrigatórios, por favor preencha-os",
"Name your knowledge base": "Nome da sua base de conhecimento",
"Name, prompt, and model are required": "",
"Native": "Nativo",
"Never": "",
"New": "Novo",
"New Automation": "",
"New Button": "Novo Botão",
"New Chat": "Novo Chat",
"New File": "Novo Arquivo",
@@ -1316,9 +1341,11 @@
"New Webhook": "Novo Webhook",
"new-channel": "novo-canal",
"Next message": "Próxima mensagem",
"Next run": "",
"No access grants. Private to you.": "Sem permissões de acesso. Privacidade exclusiva para você.",
"No activity data": "Sem dados de atividade",
"No authentication": "Sem autenticação",
"No automations found": "",
"No chats found": "Nenhum chat encontrado",
"No chats found for this user.": "Nenhum chat encontrado para este usuário.",
"No chats found.": "Nenhum chat encontrado.",
@@ -1329,6 +1356,7 @@
"No data": "Sem dados",
"No data found": "Nenhum dado encontrado",
"No distance available": "Sem distância disponível",
"No execution logs available yet": "",
"No expiration can pose security risks.": "A ausência de expiração pode representar riscos de segurança.",
"No feedback found": "Nenhum feedback encontrado",
"No file selected": "Nenhum arquivo selecionado",
@@ -1375,6 +1403,7 @@
"Not factually correct": "Não está factualmente correto",
"Not helpful": "Não é útil",
"Not Registered": "Não registrado",
"Not scheduled": "",
"Note": "Nota",
"Note deleted successfully": "Nota excluída com sucesso",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Se você definir uma pontuação mínima, a pesquisa retornará apenas documentos com pontuação igual ou superior à pontuação mínima.",
@@ -1448,6 +1477,7 @@
"or": "ou",
"Ordered List": "Lista ordenada",
"Other": "Outro",
"out of": "",
"Output": "Saída",
"OUTPUT": "SAÍDA",
"Output format": "Formato de saída",
@@ -1463,6 +1493,7 @@
"Password": "Senha",
"Passwords do not match.": "As senhas não coincidem.",
"Paste Large Text as File": "Cole Textos Longos como Arquivo",
"Paused": "",
"PDF document (.pdf)": "Documento PDF (.pdf)",
"PDF Extract Images (OCR)": "Extrair Imagens do PDF (OCR)",
"PDF Loader Mode": "Modo de carregamento de PDF",
@@ -1567,6 +1598,7 @@
"Reason": "Razão",
"Reasoning Effort": "Esforço de raciocínio",
"Reasoning Tags": "Tags de raciocínio",
"Recently Used": "",
"Record": "Gravar",
"Record voice": "Gravar voz",
"Redirecting you to Open WebUI Community": "Redirecionando você para a Comunidade OpenWebUI",
@@ -1602,6 +1634,7 @@
"Renamed to {{name}}": "Renomeado para {{name}}",
"Render Markdown in Previews": "Renderizar Markdown nas Pré-visualizações",
"Reorder Models": "Reordenar modelos",
"Repeats": "",
"Reply": "Responder",
"Reply in Thread": "Responder no tópico",
"Reply to thread...": "Responder ao tópico...",
@@ -1635,6 +1668,8 @@
"RTL": "Direita para Esquerda",
"Run": "Executar",
"Run All": "Executar Tudo",
"Run now": "",
"Run Now": "",
"Running": "Executando",
"Running...": "Executando...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Executa tarefas de incorporação simultaneamente para acelerar o processamento. Desative se os limites de taxa se tornarem um problema.",
@@ -1645,12 +1680,15 @@
"Save Chat": "Salvar Chat",
"Saved": "Armazenado",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Salvar registros de chat diretamente no armazenamento do seu navegador não é mais suportado. Por favor, reserve um momento para baixar e excluir seus registros de chat clicando no botão abaixo. Não se preocupe, você pode facilmente reimportar seus registros de chat para o backend através de",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Rolar na mudança de ramo",
"Search": "Pesquisar",
"Search a model": "Pesquisar um modelo",
"Search all emojis": "Pesquisar todos os emojis",
"Search and manage user memories": "Pesquisar e gerenciar memórias de usuários",
"Search and view user chat history": "Pesquise e visualize o histórico de chat do usuário",
"Search Automations": "",
"Search Base": "Pesquisar Base",
"Search channels and channel messages": "Pesquisar canais e mensagens de canais",
"Search Chats": "Pesquisar Chats",
@@ -1720,6 +1758,7 @@
"Select how to split message text for TTS requests": "Selecione como dividir o texto da mensagem para solicitações TTS",
"Select Knowledge": "Selecionar Conhecimento",
"Select Method": "Selecione o método",
"Select model": "",
"Select only one model to call": "Selecione apenas um modelo para chamar",
"Select view": "Selecionar visualização",
"Selected model: {{modelName}}": "Modelo selecionado: {{modelName}}",
@@ -1829,6 +1868,7 @@
"Start of the channel": "Início do canal",
"Start Tag": "Tag inicial",
"Starting kernel...": "Iniciando kernel...",
"State": "",
"Status": "Status",
"Status cleared successfully": "Status liberado com sucesso",
"Status updated successfully": "Status atualizado com sucesso",
@@ -1879,8 +1919,10 @@
"Talk to Model": "Fale com o modelo",
"Tap to interrupt": "Toque para interromper",
"Task List": "Lista de tarefas",
"Task Management": "",
"Task Model": "Modelo de Tarefa",
"Tasks": "Tarefas",
"tasks completed": "",
"Tavily API Key": "Chave da API Tavily",
"Tavily Extract Depth": "Profundidade de extração do Tavily",
"Tell us more:": "Conte-nos mais:",
@@ -1947,6 +1989,7 @@
"Tika": "Tika",
"Tika Server URL required.": "URL do servidor Tika necessária.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "Tempo e Cálculo",
"Timeout": "Tempo limite",
"Title": "Título",
@@ -1964,6 +2007,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Para selecionar kits de ferramentas aqui, adicione-os ao espaço de trabalho \"Ferramentas\" primeiro.",
"Toast notifications for new updates": "Notificações de alerta para novas atualizações",
"Today": "Hoje",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "Hoje às {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "Alternar {{COUNT}} origens",
"Toggle 1 source": "Alternar 1 origem",
@@ -2102,6 +2146,7 @@
"Waiting for upload...": "Aguardando upload...",
"Warning": "Aviso",
"Warning:": "Aviso:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Aviso: Habilitar isso permitirá que os usuários façam upload de código arbitrário no servidor.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Aviso: a execução do Jupyter permite a execução de código arbitrário, o que representa sérios riscos de segurança. Prossiga com extremo cuidado.",
"Web": "Web",
@@ -2136,6 +2181,7 @@
"Width": "Largura",
"Wikipedia": "Wikipédia",
"Won": "Ganhou",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Funciona em conjunto com o top-k. Um valor mais alto (por exemplo, 0,95) resultará em um texto mais diverso, enquanto um valor mais baixo (por exemplo, 0,5) gerará um texto mais focado e conservador.",
"Workspace": "Espaço de Trabalho",
"Workspace Permissions": "Permissões do espaço de trabalho",
@@ -183,6 +183,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "Tem a certeza de que deseja arquivar todas as conversas? Esta ação não pode ser desfeita.",
"Are you sure you want to clear all memories? This action cannot be undone.": "Tem a certeza de que deseja limpar todas as memórias? Esta ação não pode ser desfeita.",
"Are you sure you want to delete \"{{NAME}}\"?": "Tem a certeza de que deseja eliminar \"{{NAME}}\"?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "Tem a certeza de que deseja eliminar todas as conversas? Esta ação não pode ser desfeita.",
"Are you sure you want to delete this channel?": "Tem a certeza de que deseja eliminar este canal?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -199,6 +200,7 @@
"Assistant": "Assistente",
"Async Embedding Processing": "Incorporação de Processamento Assíncrono",
"Attach File From Knowledge": "Anexar Ficheiro do Conhecimento",
"Attach Files": "",
"Attach Knowledge": "Anexar Conhecimento",
"Attach Notes": "Anexar Notas",
"Attach Webpage": "Anexar Página Web",
@@ -221,6 +223,13 @@
"AUTOMATIC1111 Base URL": "URL Base do AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "O URL Base do AUTOMATIC1111 é obrigatório.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "Injetar automaticamente ferramentas do sistema no modo de chamada de função nativa (por exemplo, carimbos de data/hora, memória, histórico de conversas, notas, etc.)",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Lista disponível",
"Available models": "Modelos disponíveis",
"Available Tools": "Ferramentas disponíveis",
@@ -251,6 +260,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Aumentar ou penalizar tokens específicos para respostas restritas. Os valores de BIAS serão limitados entre -100 e 100 (inclusive). (Padrão: nenhum)",
"Brave": "Brave",
"Brave Search API Key": "Chave da API de Pesquisa Brave",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "Pesquisar e consultar bases de conhecimento",
"Builtin Tools": "Ferramentas Integradas",
"Bullet List": "Lista com Marcadores",
@@ -384,6 +394,7 @@
"Concurrent Requests": "Solicitações simultâneas",
"Config": "Configuração",
"Config imported successfully": "Configuração importada com sucesso",
"Configuration": "",
"Configure": "Configurar",
"Confirm": "Confirmar",
"Confirm Password": "Confirmar Senha",
@@ -453,6 +464,7 @@
"Create new secret key": "Criar nova chave secreta",
"Create note": "Criar nota",
"Create Note": "Criar Nota",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Cria a tua primeira nota ao clicar no botão + abaixo.",
"Created at": "Criado em",
"Created At": "Criado em",
@@ -474,6 +486,7 @@
"Data Controls": "Controlos de Dados",
"Database": "Base de dados",
"Datalab Marker API": "API do Datalab Marker",
"Day": "",
"DD/MM/YYYY": "DD/MM/YYYY",
"DDGS Backend": "Backend DDGS",
"December": "Dezembro",
@@ -504,6 +517,7 @@
"Delete All": "Apagar Todos",
"Delete All Chats": "Apagar todas as conversas",
"Delete all contents inside this folder": "Apagar todo o conteúdo dentro desta pasta",
"Delete automation?": "",
"Delete Chat": "Apagar Conversa",
"Delete chat?": "Apagar conversa?",
"Delete File": "Apagar ficheiro",
@@ -648,6 +662,7 @@
"Embedding Concurrent Requests": "Pedidos Concorrentes de Incorporação",
"Embedding Model": "Modelo de Incorporação",
"Embedding Model Engine": "Motor de Modelo de Incorporação",
"Emojis": "",
"Empty message": "Mensagem vazia",
"Enable All": "Ativar Todos",
"Enable API Keys": "Ativar Chaves API",
@@ -739,6 +754,7 @@
"Enter Perplexity Search API URL": "Introduzir URL da Chave API do Perplexity Search",
"Enter Playwright Timeout": "Introduzir Tempo Limite do Playwright",
"Enter Playwright WebSocket URL": "Introduzir URL do Websocket do Playwright",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Introduzir URL da proxy (por exemplo, https://user:password@host.port)",
"Enter reasoning effort": "Introduzir esforço do raciocínio",
"Enter Score": "Introduzir a Pontuação",
@@ -763,6 +779,7 @@
"Enter system prompt here": "Introduzir prompt do sistema aqui",
"Enter Tavily API Key": "Introduzir a chave da API do Tavily",
"Enter Tavily Extract Depth": "Introduzir a Profundidade de Extração do Tavily",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Introduzir o URL público do teu WebUI. Este URL será utilizado para gerar links nas notificações.",
"Enter the URL of the function to import": "Introduzir URL da função de importação",
"Enter the URL to import": "Introduzir o URL para importação",
@@ -802,6 +819,7 @@
"Error accessing directory": "Erro ao aceder ao diretório",
"Error accessing Google Drive: {{error}}": "Erro ao aceder ao Google Drive: {{error}}",
"Error accessing media devices.": "Erro ao aceder aos dispositivos de mídia",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Erro ao começar a gravação.",
"Error unloading model: {{error}}": "Erro ao descarregar o modelo: {{error}}",
"Error uploading file: {{error}}": "Erro ao carregador o ficheiro: {{error}}",
@@ -819,6 +837,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "Experimental",
"Explain": "Explicar",
@@ -1082,6 +1101,7 @@
"Insert Suggestion Prompt to Input": "Inserir Prompt de Sugestão na Entrada",
"Install from Github URL": "Instalar a partir do URL do Github",
"Instant Auto-Send After Voice Transcription": "Enviar automaticamente depois da transcrição da voz",
"Instructions": "",
"Integration": "Integração",
"Integrations": "Integrações",
"Interface": "Interface",
@@ -1141,6 +1161,7 @@
"Last 90 days": "Últimos 90 dias",
"Last Active": "Último Ativo",
"Last Modified": "Última Modificação",
"Last ran": "",
"Last reply": "Última resposta",
"LDAP": "LDAP",
"LDAP server updated": "Servidor LDAP atualizado",
@@ -1247,6 +1268,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "O modelo '{{modelName}}' foi descarregado com sucesso.",
"Model '{{modelTag}}' is already in queue for downloading.": "O modelo '{{modelTag}}' já está na fila para descarregar.",
"Model {{modelId}} not found": "Modelo {{modelId}} não foi encontrado",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "O modelo {{modelName}} não é capaz de visão",
"Model {{name}} is now {{status}}": "Modelo {{name}} agora é {{status}}",
"Model {{name}} is now hidden": "Modelo {{name}} agora está oculto",
@@ -1296,8 +1318,11 @@
"Name": "Nome",
"Name and ID are required, please fill them out": "Nome e ID são obrigatórios, por favor preencha-os",
"Name your knowledge base": "Nomeie sua base de conhecimento",
"Name, prompt, and model are required": "",
"Native": "Nativo",
"Never": "",
"New": "Novo",
"New Automation": "",
"New Button": "Novo Botão",
"New Chat": "Nova Conversa",
"New File": "Novo Ficheiro",
@@ -1316,9 +1341,11 @@
"New Webhook": "Novo Webhook",
"new-channel": "novo-canal",
"Next message": "Próxima mensagem",
"Next run": "",
"No access grants. Private to you.": "Sem concessões de acesso. Privado para você.",
"No activity data": "Sem dados de atividade",
"No authentication": "Sem autenticação",
"No automations found": "",
"No chats found": "Nenhuma conversa encontrada",
"No chats found for this user.": "Nenhuma conversa encontrada para este utilizador.",
"No chats found.": "Nenhuma conversa encontrada.",
@@ -1329,6 +1356,7 @@
"No data": "Sem dados",
"No data found": "Nenhum dado encontrado",
"No distance available": "Nenhuma distância disponível",
"No execution logs available yet": "",
"No expiration can pose security risks.": "A ausência de expiração pode representar riscos de segurança.",
"No feedback found": "Nenhum feedback encontrado",
"No file selected": "Nenhum ficheiro selecionado",
@@ -1375,6 +1403,7 @@
"Not factually correct": "Não é correto em termos factuais",
"Not helpful": "Não é útil",
"Not Registered": "Não registrado",
"Not scheduled": "",
"Note": "Nota",
"Note deleted successfully": "Nota excluída com sucesso",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Se você definir uma pontuação mínima, a pesquisa só retornará documentos com uma pontuação maior ou igual à pontuação mínima.",
@@ -1448,6 +1477,7 @@
"or": "ou",
"Ordered List": "Lista Ordenada",
"Other": "Outro",
"out of": "",
"Output": "Saída",
"OUTPUT": "SAÍDA",
"Output format": "Formato de Saída",
@@ -1463,6 +1493,7 @@
"Password": "Senha",
"Passwords do not match.": "As palavras-passe não coincidem.",
"Paste Large Text as File": "Colar Texto Grande como Arquivo",
"Paused": "",
"PDF document (.pdf)": "Documento PDF (.pdf)",
"PDF Extract Images (OCR)": "Extrair Imagens de PDF (OCR)",
"PDF Loader Mode": "Modo de Carregador de PDF",
@@ -1567,6 +1598,7 @@
"Reason": "Razão",
"Reasoning Effort": "Esforço de Raciocínio",
"Reasoning Tags": "Etiquetas de Raciocínio",
"Recently Used": "",
"Record": "Gravar",
"Record voice": "Gravar voz",
"Redirecting you to Open WebUI Community": "Redirecionando-o para a Comunidade OpenWebUI",
@@ -1602,6 +1634,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "Renderizar Markdown em Pré-visualizações",
"Reorder Models": "Reordenar Modelos",
"Repeats": "",
"Reply": "Responder",
"Reply in Thread": "Responder no Tópico",
"Reply to thread...": "Responder ao tópico...",
@@ -1635,6 +1668,8 @@
"RTL": "RTL",
"Run": "Executar",
"Run All": "Executar Tudo",
"Run now": "",
"Run Now": "",
"Running": "A correr",
"Running...": "A correr...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Corre tarefas de vetorização simultaneamente para acelerar o processamento. Desative se os limites de taxa se tornarem um problema.",
@@ -1645,12 +1680,15 @@
"Save Chat": "Guardar Conversa",
"Saved": "Guardado",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Guardar o registo das conversas diretamente no armazenamento do seu navegador já não é suportado. Reserve um momento para descarregar e eliminar os seus registos de conversas clicando no botão abaixo. Não se preocupe, você pode facilmente reimportar os seus registos de conversas para o backend através de",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Scroll na Mudança de Ramo",
"Search": "Pesquisar",
"Search a model": "Pesquisar um modelo",
"Search all emojis": "Pesquisar todos os emojis",
"Search and manage user memories": "Pesquisar e gerir memórias do utilizador",
"Search and view user chat history": "Pesquisar e visualizar o histórico de conversas do utilizador",
"Search Automations": "",
"Search Base": "Base de Pesquisa",
"Search channels and channel messages": "Pesquisar canais e mensagens de canal",
"Search Chats": "Pesquisar Conversas",
@@ -1720,6 +1758,7 @@
"Select how to split message text for TTS requests": "Selecione como dividir o texto da mensagem para solicitações TTS",
"Select Knowledge": "Selecione Conhecimento",
"Select Method": "Selecione o Método",
"Select model": "",
"Select only one model to call": "Selecione apenas um modelo para a chamada",
"Select view": "Selecione a visualização",
"Selected model: {{modelName}}": "Modelo selecionado: {{modelName}}",
@@ -1829,6 +1868,7 @@
"Start of the channel": "Início do canal",
"Start Tag": "Início da Tag",
"Starting kernel...": "Iniciando kernel...",
"State": "",
"Status": "Estado",
"Status cleared successfully": "Estado limpo com sucesso",
"Status updated successfully": "Estado atualizado com sucesso",
@@ -1879,8 +1919,10 @@
"Talk to Model": "Falar com o Modelo",
"Tap to interrupt": "Toque para interromper",
"Task List": "Lista de Tarefas",
"Task Management": "",
"Task Model": "Modelo de Tarefa",
"Tasks": "Tarefas",
"tasks completed": "",
"Tavily API Key": "Chave API do Tavily",
"Tavily Extract Depth": "Profundidade de Extração do Tavily",
"Tell us more:": "Diga-nos mais:",
@@ -1947,6 +1989,7 @@
"Tika": "Tika",
"Tika Server URL required.": "URL do Servidor Tika é necessário.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "Tempo & Cálculo",
"Timeout": "Tempo Limite",
"Title": "Título",
@@ -1964,6 +2007,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Para selecionar conjuntos de ferramentas aqui, adicione-os primeiro ao espaço de trabalho \"Ferramentas\".",
"Toast notifications for new updates": "Notificações de toast para novas atualizações",
"Today": "Hoje",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "Hoje às {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "Alternar {{COUNT}} fontes",
"Toggle 1 source": "Alternar 1 fonte",
@@ -2102,6 +2146,7 @@
"Waiting for upload...": "A aguardar carregamento...",
"Warning": "Aviso",
"Warning:": "Aviso:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Aviso: Ativar isso permitirá que os utilizadores carreguem código arbitrário no servidor.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Aviso: A execução do Jupyter permite a execução de código arbitrário, representando riscos de segurança graves - prossiga com extrema cautela.",
"Web": "Web",
@@ -2136,6 +2181,7 @@
"Width": "Largura",
"Wikipedia": "Wikipedia",
"Won": "",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Funciona junto com top-k. Um valor mais alto (por exemplo, 0,95) levará a um texto mais diversificado, enquanto um valor mais baixo (por exemplo, 0,5) gerará um texto mais focado e conservador.",
"Workspace": "Espaço de Trabalho",
"Workspace Permissions": "Permissões do Espaço de Trabalho",
@@ -183,6 +183,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Ești sigur că vrei să ștergi acest canal?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -199,6 +200,7 @@
"Assistant": "Asistent",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -221,6 +223,13 @@
"AUTOMATIC1111 Base URL": "URL Bază AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "Este necesar URL-ul Bază AUTOMATIC1111.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Listă disponibilă",
"Available models": "",
"Available Tools": "Instrumente disponibile",
@@ -251,6 +260,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "Cheie API Brave Search",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -384,6 +394,7 @@
"Concurrent Requests": "Cereri Concurente",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "Configurează",
"Confirm": "Confirmă",
"Confirm Password": "Confirmă Parola",
@@ -453,6 +464,7 @@
"Create new secret key": "Creează cheie secretă nouă",
"Create note": "",
"Create Note": "Creează notiță",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Creat la",
"Created At": "Creat La",
@@ -474,6 +486,7 @@
"Data Controls": "",
"Database": "Bază de Date",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "Decembrie",
@@ -504,6 +517,7 @@
"Delete All": "",
"Delete All Chats": "Șterge Toate Conversațiile",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Șterge Conversația",
"Delete chat?": "Șterge conversația?",
"Delete File": "",
@@ -648,6 +662,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Model de Încapsulare",
"Embedding Model Engine": "Motor de Model de Încapsulare",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -739,6 +754,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "Introduceți Scorul",
@@ -763,6 +779,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "Introduceți Cheia API Tavily",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -802,6 +819,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -819,6 +837,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "Experimental",
"Explain": "",
@@ -1082,6 +1101,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Instalează de la URL-ul Github",
"Instant Auto-Send After Voice Transcription": "Trimitere Automată Instantanee După Transcrierea Vocii",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "Interfață",
@@ -1141,6 +1161,7 @@
"Last 90 days": "",
"Last Active": "Ultima Activitate",
"Last Modified": "Ultima Modificare",
"Last ran": "",
"Last reply": "",
"LDAP": "",
"LDAP server updated": "",
@@ -1247,6 +1268,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Modelul '{{modelName}}' a fost descărcat cu succes.",
"Model '{{modelTag}}' is already in queue for downloading.": "Modelul '{{modelTag}}' este deja în coada de descărcare.",
"Model {{modelId}} not found": "Modelul {{modelId}} nu a fost găsit",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Modelul {{modelName}} nu are capacități de viziune",
"Model {{name}} is now {{status}}": "Modelul {{name}} este acum {{status}}",
"Model {{name}} is now hidden": "",
@@ -1296,8 +1318,11 @@
"Name": "Nume",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Conversație Nouă",
"New File": "",
@@ -1316,9 +1341,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1329,6 +1356,7 @@
"No data": "",
"No data found": "",
"No distance available": "Nicio distanță disponibilă",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Nu a fost selectat niciun fișier",
@@ -1375,6 +1403,7 @@
"Not factually correct": "Nu este corect din punct de vedere factual",
"Not helpful": "Nu este de ajutor",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Notă: Dacă setați un scor minim, căutarea va returna doar documente cu un scor mai mare sau egal cu scorul minim.",
@@ -1448,6 +1477,7 @@
"or": "sau",
"Ordered List": "",
"Other": "Altele",
"out of": "",
"Output": "",
"OUTPUT": "Output rezultatat",
"Output format": "Formatul de ieșire",
@@ -1463,6 +1493,7 @@
"Password": "Parolă",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Paused": "",
"PDF document (.pdf)": "Document PDF (.pdf)",
"PDF Extract Images (OCR)": "Extrage Imagini PDF (OCR)",
"PDF Loader Mode": "",
@@ -1567,6 +1598,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "Înregistrează vocea",
"Redirecting you to Open WebUI Community": "Vă redirecționăm către Comunitatea OpenWebUI",
@@ -1602,6 +1634,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1635,6 +1668,8 @@
"RTL": "RTL",
"Run": "Execută",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Rulează",
"Running...": "Rulează...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1645,12 +1680,15 @@
"Save Chat": "",
"Saved": "Salvat",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Salvarea jurnalelor de conversație direct în stocarea browserului dvs. nu mai este suportată. Vă rugăm să luați un moment pentru a descărca și a șterge jurnalele de conversație făcând clic pe butonul de mai jos. Nu vă faceți griji, puteți reimporta ușor jurnalele de conversație în backend prin",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Caută",
"Search a model": "Caută un model",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "",
"Search channels and channel messages": "",
"Search Chats": "Caută în Conversații",
@@ -1720,6 +1758,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Selectarea cunoștințelor (Knowledge Selection) este un proces esențial în multiple domenii, incluzând inteligența artificială și învățarea automată. Aceasta presupune alegerea corectă a informațiilor sau datelor relevante dintr-un set mai mare pentru a le utiliza în analize, modele sau sisteme specifice. De exemplu, în învățarea automată, selectarea caracteristicilor este un aspect al selectării cunoștințelor și implică alegerea celor mai relevante date de intrare care contribuie la îmbunătățirea preciziei modelului.",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Selectează doar un singur model pentru apel",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1829,6 +1868,7 @@
"Start of the channel": "Începutul canalului",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1879,8 +1919,10 @@
"Talk to Model": "",
"Tap to interrupt": "Apasă pentru a întrerupe",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "Cheie API Tavily",
"Tavily Extract Depth": "",
"Tell us more:": "Spune-ne mai multe:",
@@ -1947,6 +1989,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Este necesar URL-ul serverului Tika.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Titlu",
@@ -1964,6 +2007,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Pentru a selecta kiturile de instrumente aici, adăugați-le mai întâi în spațiul de lucru \"Instrumente\".",
"Toast notifications for new updates": "Notificări toast pentru actualizări noi",
"Today": "Astăzi",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2102,6 +2146,7 @@
"Waiting for upload...": "",
"Warning": "Avertisment",
"Warning:": "Avertisment:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "Web",
@@ -2136,6 +2181,7 @@
"Width": "",
"Wikipedia": "",
"Won": "Câștigat",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Spațiu de Lucru",
"Workspace Permissions": "",
@@ -184,6 +184,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "Вы уверены, что хотите архивировать все чаты? Это действие нельзя отменить.",
"Are you sure you want to clear all memories? This action cannot be undone.": "Вы уверены, что хотите удалить все воспоминания? Это действие нельзя отменить.",
"Are you sure you want to delete \"{{NAME}}\"?": "Вы уверены, что хотите удалить \"{{NAME}}\"?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "Вы уверены, что хотите удалить все чаты? Это действие нельзя отменить.",
"Are you sure you want to delete this channel?": "Вы уверены, что хотите удалить этот канал?",
"Are you sure you want to delete this connection? This action cannot be undone.": "Вы уверены, что хотите удалить это подключение? Это действие нельзя отменить.",
@@ -200,6 +201,7 @@
"Assistant": "Ассистент",
"Async Embedding Processing": "Асинхронная обработка эмбеддингов",
"Attach File From Knowledge": "Прикрепить файл из знаний",
"Attach Files": "",
"Attach Knowledge": "Прикрепить знания",
"Attach Notes": "Прикрепить заметки",
"Attach Webpage": "Прикрепить веб-страницу",
@@ -222,6 +224,13 @@
"AUTOMATIC1111 Base URL": "Базовый URL адрес AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "Необходим базовый адрес URL AUTOMATIC1111.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "Автоматически подключать системные инструменты в режиме вызова функций (временные метки, воспоминания, история чата, заметки и т.д.)",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Список доступных",
"Available models": "Доступные модели",
"Available Tools": "Доступные инструменты",
@@ -252,6 +261,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Увеличение или отмена определенных токенов за ограниченные ответы. Значения смещения будут находиться в диапазоне от -100 до 100 (включительно). (По умолчанию: ничего)",
"Brave": "Brave",
"Brave Search API Key": "Ключ API поиска Brave",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "Обзор и запрос баз знаний",
"Builtin Tools": "Встроенные инструменты",
"Bullet List": "Маркированный список",
@@ -385,6 +395,7 @@
"Concurrent Requests": "Одновременные запросы",
"Config": "Конфигурация",
"Config imported successfully": "Конфигурация успешно импортирована",
"Configuration": "",
"Configure": "Настроить",
"Confirm": "Подтвердить",
"Confirm Password": "Подтвердите пароль",
@@ -454,6 +465,7 @@
"Create new secret key": "Создать новый секретный ключ",
"Create note": "Создать заметку",
"Create Note": "Создать заметку",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Создайте свою первую заметку, нажав на кнопку плюс ниже.",
"Created at": "Создан(а)",
"Created At": "Создано",
@@ -475,6 +487,7 @@
"Data Controls": "Управление данными",
"Database": "База данных",
"Datalab Marker API": "Datalab Marker API",
"Day": "",
"DD/MM/YYYY": "ДД/ММ/ГГГГ",
"DDGS Backend": "Бэкенд DDGS",
"December": "Декабрь",
@@ -505,6 +518,7 @@
"Delete All": "Удалить ВСЕ",
"Delete All Chats": "Удалить ВСЕ Чаты",
"Delete all contents inside this folder": "Удалить все содержимое внутри этой папки",
"Delete automation?": "",
"Delete Chat": "Удалить Чат",
"Delete chat?": "Удалить чат?",
"Delete File": "Удалить файл",
@@ -649,6 +663,7 @@
"Embedding Concurrent Requests": "Параллельные запросы эмбеддингов",
"Embedding Model": "Модель встраивания",
"Embedding Model Engine": "Движок модели встраивания",
"Emojis": "",
"Empty message": "Пустое сообщение",
"Enable All": "Включить Все",
"Enable API Keys": "Включить API-ключи",
@@ -740,6 +755,7 @@
"Enter Perplexity Search API URL": "Введите URL Perplexity Search API",
"Enter Playwright Timeout": "Введите таймаут для Playwright",
"Enter Playwright WebSocket URL": "Введите URL-адрес Playwright WebSocket",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Введите URL прокси-сервера (например, https://user:password@host:port)",
"Enter reasoning effort": "Введите причинность рассудения",
"Enter Score": "Введите оценку",
@@ -764,6 +780,7 @@
"Enter system prompt here": "Введите системный промпт здесь",
"Enter Tavily API Key": "Введите ключ API Tavily",
"Enter Tavily Extract Depth": "Укажите глубину извлечения Tavily",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Введите общедоступный URL вашего WebUI. Этот URL будет использоваться для создания ссылок в уведомлениях.",
"Enter the URL of the function to import": "Введите URL-адрес функции для импорта",
"Enter the URL to import": "Введите URL-адрес для импорта",
@@ -803,6 +820,7 @@
"Error accessing directory": "Ошибка доступа к директории",
"Error accessing Google Drive: {{error}}": "Ошибка доступа к Google Drive: {{error}}",
"Error accessing media devices.": "Ошибка доступа к мультимедийным устройствам.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Ошибка при запуске записи.",
"Error unloading model: {{error}}": "Ошибка загрузки модели: {{error}}",
"Error uploading file: {{error}}": "Ошибка загрузки файла: {{error}}",
@@ -820,6 +838,7 @@
"Execute code": "Выполнить код",
"Execute code for analysis": "Выполнить код для анализа",
"Executing **{{NAME}}**...": "Выполняю **{{NAME}}**...",
"Execution Logs": "",
"Expand": "Расширить",
"Experimental": "Экспериментальное",
"Explain": "Объяснить",
@@ -1083,6 +1102,7 @@
"Insert Suggestion Prompt to Input": "Вставить промпт-предложение в ввод",
"Install from Github URL": "Установка с URL-адреса Github",
"Instant Auto-Send After Voice Transcription": "Мгновенная автоматическая отправка после расшифровки голоса",
"Instructions": "",
"Integration": "Интеграция",
"Integrations": "Интеграции",
"Interface": "Интерфейс",
@@ -1142,6 +1162,7 @@
"Last 90 days": "Последние 90 дней",
"Last Active": "Последняя активность",
"Last Modified": "Последнее изменение",
"Last ran": "",
"Last reply": "Последний ответ",
"LDAP": "LDAP",
"LDAP server updated": "LDAP сервер обновлен",
@@ -1248,6 +1269,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Модель '{{modelName}}' успешно загружена.",
"Model '{{modelTag}}' is already in queue for downloading.": "Модель '{{modelTag}}' уже находится в очереди на загрузку.",
"Model {{modelId}} not found": "Модель {{modelId}} не найдена",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Модель {{modelName}} не поддерживает зрение",
"Model {{name}} is now {{status}}": "Модель {{name}} теперь {{status}}",
"Model {{name}} is now hidden": "Модель {{name}} теперь скрыта",
@@ -1297,8 +1319,11 @@
"Name": "Имя",
"Name and ID are required, please fill them out": "Имя и ID обязательны, пожалуйста, заполните их",
"Name your knowledge base": "Назовите свою базу знаний",
"Name, prompt, and model are required": "",
"Native": "Нативно",
"Never": "",
"New": "Новый",
"New Automation": "",
"New Button": "Новая кнопка",
"New Chat": "Новый чат",
"New File": "Новый файл",
@@ -1317,9 +1342,11 @@
"New Webhook": "Новый вебхук",
"new-channel": "new-channel",
"Next message": "Следующее сообщение",
"Next run": "",
"No access grants. Private to you.": "Нет прав доступа. Доступно только вам.",
"No activity data": "Нет данных об активности",
"No authentication": "Без аутентификации",
"No automations found": "",
"No chats found": "Чаты не найдены",
"No chats found for this user.": "Для этого пользователя не найдено ни одного чата.",
"No chats found.": "Не найдено ни одного чата",
@@ -1330,6 +1357,7 @@
"No data": "Нет данных",
"No data found": "Данные не найдены",
"No distance available": "Никаких доступных растояний",
"No execution logs available yet": "",
"No expiration can pose security risks.": "Отсутствие срока действия может представлять угрозу безопасности.",
"No feedback found": "Отзывы не найдены",
"No file selected": "Файлы не выбраны",
@@ -1376,6 +1404,7 @@
"Not factually correct": "Не соответствует действительности",
"Not helpful": "Бесполезно",
"Not Registered": "Не зарегистрирован",
"Not scheduled": "",
"Note": "Заметка",
"Note deleted successfully": "Заметка успешно удалена",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Обратите внимание: Если вы установите минимальный балл, поиск будет возвращать только документы с баллом больше или равным минимальному баллу.",
@@ -1449,6 +1478,7 @@
"or": "или",
"Ordered List": "Нумерованный список",
"Other": "Прочее",
"out of": "",
"Output": "Вывод",
"OUTPUT": "ВЫВОД",
"Output format": "Формат вывода",
@@ -1464,6 +1494,7 @@
"Password": "Пароль",
"Passwords do not match.": "Пароли не совпадают.",
"Paste Large Text as File": "Вставить большой текст как файл",
"Paused": "",
"PDF document (.pdf)": "PDF-документ (.pdf)",
"PDF Extract Images (OCR)": "Извлечение изображений из PDF (OCR)",
"PDF Loader Mode": "Режим загрузки PDF",
@@ -1568,6 +1599,7 @@
"Reason": "Причина",
"Reasoning Effort": "Усилия для рассуждения",
"Reasoning Tags": "Теги рассуждения",
"Recently Used": "",
"Record": "Запись",
"Record voice": "Записать голос",
"Redirecting you to Open WebUI Community": "Перенаправляем вас в сообщество OpenWebUI",
@@ -1603,6 +1635,7 @@
"Renamed to {{name}}": "Переименовано в {{name}}",
"Render Markdown in Previews": "Отображать Markdown в предпросмотре",
"Reorder Models": "Изменение порядка моделей",
"Repeats": "",
"Reply": "Ответить",
"Reply in Thread": "Ответить в обсуждении",
"Reply to thread...": "Ответить в обсуждении...",
@@ -1637,6 +1670,8 @@
"RTL": "RTL",
"Run": "Запустить",
"Run All": "Запустить все",
"Run now": "",
"Run Now": "",
"Running": "Выполняется",
"Running...": "Выполняется...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "Параллельное выполнение задач эмбеддингов для ускорения. Отключите при проблемах с лимитами запросов.",
@@ -1647,12 +1682,15 @@
"Save Chat": "Сохранить чат",
"Saved": "Сохранено",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Прямое сохранение журналов чата в хранилище вашего браузера больше не поддерживается. Пожалуйста, потратьте минуту, чтобы скачать и удалить ваши журналы чата, нажав на кнопку ниже. Не волнуйтесь, вы легко сможете повторно импортировать свои журналы чата в бэкенд через",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Прокручивать при изменении ветки",
"Search": "Поиск",
"Search a model": "Поиск по моделям",
"Search all emojis": "Поиск по всем эмодзи",
"Search and manage user memories": "Поиск и управление воспоминаниями пользователя",
"Search and view user chat history": "Поиск и просмотр истории чатов пользователя",
"Search Automations": "",
"Search Base": "Поиск в базе",
"Search channels and channel messages": "Поиск каналов и сообщений в каналах",
"Search Chats": "Поиск в чатах",
@@ -1722,6 +1760,7 @@
"Select how to split message text for TTS requests": "Выберите, как разделять текст сообщения для TTS запросов",
"Select Knowledge": "Выбрать знание",
"Select Method": "Выберите метод",
"Select model": "",
"Select only one model to call": "Выберите только одну модель для вызова",
"Select view": "Выберите вид",
"Selected model: {{modelName}}": "Выбранная модель: {{modelName}}",
@@ -1831,6 +1870,7 @@
"Start of the channel": "Начало канала",
"Start Tag": "Начальный тег",
"Starting kernel...": "Запуск ядра...",
"State": "",
"Status": "Статус",
"Status cleared successfully": "Статус успешно очищен",
"Status updated successfully": "Статус успешно обновлён",
@@ -1881,8 +1921,10 @@
"Talk to Model": "Говорить с моделью",
"Tap to interrupt": "Нажмите, чтобы прервать",
"Task List": "Список задач",
"Task Management": "",
"Task Model": "Модель задачи",
"Tasks": "Задачи",
"tasks completed": "",
"Tavily API Key": "Ключ API Tavily",
"Tavily Extract Depth": "Глубина извлечения Tavily",
"Tell us more:": "Пожалуйста, расскажите нам больше:",
@@ -1949,6 +1991,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Требуется URL-адрес сервера Tika.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "Время и вычисления",
"Timeout": "Тайм-аут",
"Title": "Заголовок",
@@ -1966,6 +2009,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Чтобы выбрать инструменты, сначала добавьте их в \"Инструменты\" рабочего пространства.",
"Toast notifications for new updates": "Уведомления о обновлениях",
"Today": "Сегодня",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "Сегодня в {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "Показать/скрыть {{COUNT}} источников",
"Toggle 1 source": "Показать/скрыть 1 источник",
@@ -2104,6 +2148,7 @@
"Waiting for upload...": "Ожидание загрузки...",
"Warning": "Предупреждение",
"Warning:": "Предупреждение:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Предупреждение. Включение этого параметра позволит пользователям загружать произвольный код на сервер.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Предупреждение: Выполнение Jupyter позволяет выполнять произвольный код, что создает серьезные угрозы безопасности — действуйте с особой осторожностью.",
"Web": "Веб",
@@ -2138,6 +2183,7 @@
"Width": "Ширина",
"Wikipedia": "Википедия",
"Won": "Победа",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Работает совместно с top-k. Более высокое значение (например, 0,95) приведет к более разнообразному тексту, в то время как более низкое значение (например, 0,5) приведет к созданию более сфокусированного и консервативного текста.",
"Workspace": "Рабочее пространство",
"Workspace Permissions": "Разрешения для Рабочего пространства",
@@ -184,6 +184,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -200,6 +201,7 @@
"Assistant": "Asistent",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "Pripojiť znalosti",
"Attach Notes": "Pripojiť poznámky",
"Attach Webpage": "Pripojiť webovú stránku",
@@ -222,6 +224,13 @@
"AUTOMATIC1111 Base URL": "Základná URL pre AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "Vyžaduje sa základná URL pre AUTOMATIC1111.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Dostupný zoznam",
"Available models": "",
"Available Tools": "",
@@ -252,6 +261,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "API kľúč pre Brave Search",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -385,6 +395,7 @@
"Concurrent Requests": "Súčasné požiadavky",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "Konfigurovať",
"Confirm": "Potvrdiť",
"Confirm Password": "Potvrdenie hesla",
@@ -454,6 +465,7 @@
"Create new secret key": "Vytvoriť nový tajný kľúč",
"Create note": "Vytvoriť poznámku",
"Create Note": "Vytvoriť Poznámku",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Vytvorené dňa",
"Created At": "Vytvorené dňa",
@@ -475,6 +487,7 @@
"Data Controls": "Správa údajov",
"Database": "Databáza",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "December",
@@ -505,6 +518,7 @@
"Delete All": "",
"Delete All Chats": "Odstrániť všetky konverzácie",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Odstrániť chat",
"Delete chat?": "Odstrániť konverzáciu?",
"Delete File": "",
@@ -649,6 +663,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Vkladací model (Embedding Model)",
"Embedding Model Engine": "",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -740,6 +755,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "Zadajte skóre",
@@ -764,6 +780,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "Zadajte API kľúč Tavily",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -803,6 +820,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -820,6 +838,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "Experimentálne",
"Explain": "",
@@ -1083,6 +1102,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Inštalácia z URL adresy Githubu",
"Instant Auto-Send After Voice Transcription": "Okamžité automatické odoslanie po prepisu hlasu",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "Rozhranie",
@@ -1142,6 +1162,7 @@
"Last 90 days": "",
"Last Active": "Naposledy aktívny",
"Last Modified": "Posledná zmena",
"Last ran": "",
"Last reply": "",
"LDAP": "",
"LDAP server updated": "",
@@ -1248,6 +1269,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Model „{{modelName}}“ bol úspešne stiahnutý.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je už zaradený do fronty na sťahovanie.",
"Model {{modelId}} not found": "Model {{modelId}} nebol nájdený",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} nie je schopný spracovávať vizuálne údaje.",
"Model {{name}} is now {{status}}": "Model {{name}} je teraz {{status}}.",
"Model {{name}} is now hidden": "",
@@ -1297,8 +1319,11 @@
"Name": "Meno",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Pomenujte svoju databázu znalostí",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "Nový",
"New Automation": "",
"New Button": "",
"New Chat": "Nový chat",
"New File": "",
@@ -1317,9 +1342,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "Žiadne konverzácie neboli nájdené",
"No chats found for this user.": "",
"No chats found.": "Žiadne konverzácie neboli nájdené.",
@@ -1330,6 +1357,7 @@
"No data": "",
"No data found": "",
"No distance available": "Nie je dostupná žiadna vzdialenosť",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Nebola vybratá žiadna súbor",
@@ -1376,6 +1404,7 @@
"Not factually correct": "Nie je fakticky správne",
"Not helpful": "Nepomocné",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Poznámka: Ak nastavíte minimálne skóre, vyhľadávanie vráti iba dokumenty s hodnotením, ktoré je väčšie alebo rovné zadanému minimálnemu skóre.",
@@ -1449,6 +1478,7 @@
"or": "alebo",
"Ordered List": "",
"Other": "Iné",
"out of": "",
"Output": "",
"OUTPUT": "VÝSTUP",
"Output format": "Formát výstupu",
@@ -1464,6 +1494,7 @@
"Password": "Heslo",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Paused": "",
"PDF document (.pdf)": "PDF dokument (.pdf)",
"PDF Extract Images (OCR)": "Extrahovanie obrázkov z PDF (OCR)",
"PDF Loader Mode": "",
@@ -1568,6 +1599,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "Nahrať hlas",
"Redirecting you to Open WebUI Community": "Presmerovanie na komunitu OpenWebUI",
@@ -1603,6 +1635,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1637,6 +1670,8 @@
"RTL": "RTL",
"Run": "Spustiť",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Spúšťanie",
"Running...": "Spúšťanie...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1647,12 +1682,15 @@
"Save Chat": "",
"Saved": "Uložené",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Ukladanie záznamov chatu priamo do úložiska vášho prehliadača už nie je podporované. Venujte prosím chvíľu stiahnutiu a vymazaniu svojich záznamov chatu kliknutím na tlačidlo nižšie. Nemajte obavy, môžete ľahko znovu importovať svoje záznamy chatu na backend prostredníctvom",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Vyhľadávanie",
"Search a model": "Vyhľadať model",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "",
"Search channels and channel messages": "",
"Search Chats": "Vyhľadávanie v chate",
@@ -1722,6 +1760,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Vybrať znalosti",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Vyberte iba jeden model, ktorý chcete použiť",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1831,6 +1870,7 @@
"Start of the channel": "Začiatok kanála",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1881,8 +1921,10 @@
"Talk to Model": "",
"Tap to interrupt": "Klepnite na prerušenie",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "Kľúč API pre Tavily",
"Tavily Extract Depth": "",
"Tell us more:": "Povedzte nám viac.",
@@ -1949,6 +1991,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Je vyžadovaná URL adresa servera Tika.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Názov",
@@ -1966,6 +2009,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Ak chcete tu vybrať nástroje, pridajte ich najprv do pracovného priestoru \"Tools\".",
"Toast notifications for new updates": "Oznámenia vo forme toastov pre nové aktualizácie",
"Today": "Dnes",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2104,6 +2148,7 @@
"Waiting for upload...": "",
"Warning": "Varovanie",
"Warning:": "Upozornenie:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "Web",
@@ -2138,6 +2183,7 @@
"Width": "",
"Wikipedia": "",
"Won": "Vyhral",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "",
"Workspace Permissions": "",
@@ -183,6 +183,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Да ли сигурно желите обрисати овај канал?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -199,6 +200,7 @@
"Assistant": "Помоћник",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -221,6 +223,13 @@
"AUTOMATIC1111 Base URL": "Основна адреса за AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "Потребна је основна адреса за AUTOMATIC1111.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Списак доступног",
"Available models": "",
"Available Tools": "",
@@ -251,6 +260,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "Апи кључ за храбру претрагу",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -384,6 +394,7 @@
"Concurrent Requests": "Упоредни захтеви",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "Подеси",
"Confirm": "Потврди",
"Confirm Password": "Потврди лозинку",
@@ -453,6 +464,7 @@
"Create new secret key": "Направи нови тајни кључ",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Направљено у",
"Created At": "Направљено у",
@@ -474,6 +486,7 @@
"Data Controls": "",
"Database": "База података",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "Децембар",
@@ -504,6 +517,7 @@
"Delete All": "",
"Delete All Chats": "Обриши сва ћаскања",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Обриши ћаскање",
"Delete chat?": "Обрисати ћаскање?",
"Delete File": "",
@@ -648,6 +662,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Модел уградње",
"Embedding Model Engine": "Мотор модела уградње",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -739,6 +754,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "Унесите резултат",
@@ -763,6 +779,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -802,6 +819,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -819,6 +837,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "Експериментално",
"Explain": "",
@@ -1082,6 +1101,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Инсталирај из Гитхуб УРЛ адресе",
"Instant Auto-Send After Voice Transcription": "",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "Изглед",
@@ -1141,6 +1161,7 @@
"Last 90 days": "",
"Last Active": "Последња активност",
"Last Modified": "Последња измена",
"Last ran": "",
"Last reply": "Последњи одговор",
"LDAP": "ЛДАП",
"LDAP server updated": "ЛДАП сервер измењен",
@@ -1247,6 +1268,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Модел „{{modelName}}“ је успешно преузет.",
"Model '{{modelTag}}' is already in queue for downloading.": "Модел „{{modelTag}}“ је већ у реду за преузимање.",
"Model {{modelId}} not found": "Модел {{modelId}} није пронађен",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Модел {{моделНаме}} није способан за вид",
"Model {{name}} is now {{status}}": "Модел {{наме}} је сада {{статус}}",
"Model {{name}} is now hidden": "",
@@ -1296,8 +1318,11 @@
"Name": "Име",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Ново ћаскање",
"New File": "",
@@ -1316,9 +1341,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1329,6 +1356,7 @@
"No data": "",
"No data found": "",
"No distance available": "",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "",
@@ -1375,6 +1403,7 @@
"Not factually correct": "Није чињенично тачно",
"Not helpful": "Није од помоћи",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Напомена: ако подесите најмањи резултат, претрага ће вратити само документе са резултатом већим или једнаким најмањем резултату.",
@@ -1448,6 +1477,7 @@
"or": "или",
"Ordered List": "",
"Other": "Остало",
"out of": "",
"Output": "",
"OUTPUT": "ИЗЛАЗ",
"Output format": "Формат излаза",
@@ -1463,6 +1493,7 @@
"Password": "Лозинка",
"Passwords do not match.": "",
"Paste Large Text as File": "Убаци велики текст као датотеку",
"Paused": "",
"PDF document (.pdf)": "PDF документ (.pdf)",
"PDF Extract Images (OCR)": "Извлачење PDF слика (OCR)",
"PDF Loader Mode": "",
@@ -1567,6 +1598,7 @@
"Reason": "",
"Reasoning Effort": "Јачина размишљања",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "Сними глас",
"Redirecting you to Open WebUI Community": "Преусмеравање на OpenWebUI заједницу",
@@ -1602,6 +1634,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1635,6 +1668,8 @@
"RTL": "ДНЛ",
"Run": "Покрени",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Покрећем",
"Running...": "Покрећем...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1645,12 +1680,15 @@
"Save Chat": "",
"Saved": "Сачувано",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Чување ћаскања директно у складиште вашег прегледача више није подржано. Одвојите тренутак да преузмете и избришете ваша ћаскања кликом на дугме испод. Не брините, можете лако поново увезти ваша ћаскања у бекенд кроз",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Претражи",
"Search a model": "Претражи модел",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "Претражи базу",
"Search channels and channel messages": "",
"Search Chats": "Претражи ћаскања",
@@ -1720,6 +1758,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Изабери знање",
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1829,6 +1868,7 @@
"Start of the channel": "Почетак канала",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1879,8 +1919,10 @@
"Talk to Model": "",
"Tap to interrupt": "",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "",
"Tavily Extract Depth": "",
"Tell us more:": "Реците нам више:",
@@ -1947,6 +1989,7 @@
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Наслов",
@@ -1964,6 +2007,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "",
"Toast notifications for new updates": "Тост-обавештења за нове исправке",
"Today": "Данас",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2102,6 +2146,7 @@
"Waiting for upload...": "",
"Warning": "Упозорење",
"Warning:": "Упозорење:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "Веб",
@@ -2136,6 +2181,7 @@
"Width": "",
"Wikipedia": "",
"Won": "Победа",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Радни простор",
"Workspace Permissions": "",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "Är du säker på att du vill rensa alla minnen? Denna åtgärd kan inte ångras.",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Är du säker på att du vill radera denna kanal?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "Assistent",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "Bifoga kunskap",
"Attach Notes": "Bifoga anteckningar",
"Attach Webpage": "Bifoga webbsida",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 bas-URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 bas-URL krävs.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Tillgänglig lista",
"Available models": "",
"Available Tools": "Tillgängliga verktyg",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Öka eller straffa specifika tokens för begränsade svar. Biasvärden kommer att klämmas fast mellan -100 och 100 (inklusive). (Standard: ingen)",
"Brave": "",
"Brave Search API Key": "API-nyckel för Brave Search",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "Punktlista",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Parallella anrop",
"Config": "",
"Config imported successfully": "Konfigurationen importerad framgångsrikt",
"Configuration": "",
"Configure": "Konfigurera",
"Confirm": "Bekräfta",
"Confirm Password": "Bekräfta lösenord",
@@ -452,6 +463,7 @@
"Create new secret key": "Skapa ny hemlig nyckel",
"Create note": "",
"Create Note": "Skapa anteckning",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Skapa din första anteckning genom att klicka på plusknappen nedan.",
"Created at": "Skapad",
"Created At": "Skapad",
@@ -473,6 +485,7 @@
"Data Controls": "Datakontroller",
"Database": "Databas",
"Datalab Marker API": "Datalab Marker API",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "december",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "Ta bort alla chattar",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Radera chatt",
"Delete chat?": "Radera chatt?",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Inbäddningsmodell",
"Embedding Model Engine": "Motor för inbäddningsmodell",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "Ange Playwright-timeout",
"Enter Playwright WebSocket URL": "Ange Playwright WebSocket URL",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Ange proxy-URL (t.ex. https://user:password@host:port)",
"Enter reasoning effort": "Ange resonemangsinsats",
"Enter Score": "Ange betyg",
@@ -762,6 +778,7 @@
"Enter system prompt here": "Ange systemprompt här",
"Enter Tavily API Key": "Ange Tavily API-nyckel",
"Enter Tavily Extract Depth": "Ange Tavily Extract Depth",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Ange den offentliga URL:en för din WebUI. Denna URL kommer att användas för att generera länkar i notifikationerna.",
"Enter the URL of the function to import": "Ange URL:en för funktionen att importera",
"Enter the URL to import": "Ange URL:en att importera",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Fel vid åtkomst till Google Drive: {{error}}",
"Error accessing media devices.": "Fel vid åtkomst till mediaenheter.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Fel vid start av inspelning.",
"Error unloading model: {{error}}": "Fel vid avlastning av modell: {{error}}",
"Error uploading file: {{error}}": "Fel vid uppladdning av fil: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "Kör kod för analys",
"Executing **{{NAME}}**...": "Kör **{{NAME}}**...",
"Execution Logs": "",
"Expand": "Expandera",
"Experimental": "Experimentell",
"Explain": "Förklara",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "Infoga förslagsprompt till chattrutan",
"Install from Github URL": "Installera från Github-URL",
"Instant Auto-Send After Voice Transcription": "Skicka automatiskt efter rösttranskribering",
"Instructions": "",
"Integration": "Integration",
"Integrations": "Integrationer",
"Interface": "Gränssnitt",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "Senast aktiv",
"Last Modified": "Senast ändrad",
"Last ran": "",
"Last reply": "Senaste svar",
"LDAP": "LDAP",
"LDAP server updated": "LDAP-servern har uppdaterats",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Modellen '{{modelName}}' har laddats ner.",
"Model '{{modelTag}}' is already in queue for downloading.": "Modellen '{{modelTag}}' är redan i kö för nedladdning.",
"Model {{modelId}} not found": "Modell {{modelId}} hittades inte",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Modellen {{modelName}} har inte stöd för vision/syn",
"Model {{name}} is now {{status}}": "Modellen {{name}} är nu {{status}}",
"Model {{name}} is now hidden": "Modellen {{name}} är nu dold",
@@ -1295,8 +1317,11 @@
"Name": "Namn",
"Name and ID are required, please fill them out": "Namn och ID krävs, fyll i dem",
"Name your knowledge base": "Namnge din kunskapsbas",
"Name, prompt, and model are required": "",
"Native": "Inbyggd",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "Ny knapp",
"New Chat": "Ny chatt",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "ny-kanal",
"Next message": "Nästa meddelande",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "Ingen autentisering",
"No automations found": "",
"No chats found": "Inga konversationer hittades",
"No chats found for this user.": "Inga konversationer hittades för den här användaren.",
"No chats found.": "Inga konversationer hittades.",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "Inget avstånd tillgängligt",
"No execution logs available yet": "",
"No expiration can pose security risks.": "Ingen utgångstid kan orsaka säkerhetsrisker.",
"No feedback found": "",
"No file selected": "Ingen fil vald",
@@ -1374,6 +1402,7 @@
"Not factually correct": "Inte faktiskt korrekt",
"Not helpful": "Inte hjälpsam",
"Not Registered": "Inte registrerad",
"Not scheduled": "",
"Note": "Anteckning",
"Note deleted successfully": "Anteckningen raderades",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Obs: Om du anger en tröskel kommer sökningen endast att returnera dokument med ett betyg som är större än eller lika med tröskeln.",
@@ -1447,6 +1476,7 @@
"or": "eller",
"Ordered List": "Numrerad lista",
"Other": "Andra",
"out of": "",
"Output": "",
"OUTPUT": "UTDATA",
"Output format": "Utdataformat",
@@ -1462,6 +1492,7 @@
"Password": "Lösenord",
"Passwords do not match.": "Lösenorden matchar inte.",
"Paste Large Text as File": "Klistra in stor text som fil",
"Paused": "",
"PDF document (.pdf)": "PDF-dokument (.pdf)",
"PDF Extract Images (OCR)": "PDF Extrahera bilder (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "Anledning",
"Reasoning Effort": "Resonemangsinsats",
"Reasoning Tags": "Resonemangs-taggar (tags)",
"Recently Used": "",
"Record": "Spela in",
"Record voice": "Spela in röst",
"Redirecting you to Open WebUI Community": "Omdirigerar dig till OpenWebUI Community",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Omordna modeller",
"Repeats": "",
"Reply": "Svara",
"Reply in Thread": "Svara i tråd",
"Reply to thread...": "Svara i tråd...",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "Kör",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Kör",
"Running...": "Kör...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "Spara konversation",
"Saved": "Sparad",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Att spara chatloggar direkt till din webbläsares lagring stöds inte längre. Ta en stund och ladda ner och radera dina chattloggar genom att klicka på knappen nedan. Oroa dig inte, du kan enkelt importera dina chattloggar till backend genom",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Scrolla vid grenbyte",
"Search": "Sök",
"Search a model": "Sök efter en modell",
"Search all emojis": "Sök alla emojis",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "Sökbas",
"Search channels and channel messages": "",
"Search Chats": "Sök i chattar",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "Välj hur du ska dela upp meddelandetexten för TTS-förfrågningar",
"Select Knowledge": "Välj kunskap",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Välj endast en modell att ringa",
"Select view": "Välj vy",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Början av kanalen",
"Start Tag": "Starta en tagg",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "Tryck för att avbryta",
"Task List": "Uppgiftslista",
"Task Management": "",
"Task Model": "Uppgiftsmodell",
"Tasks": "Uppgifter",
"tasks completed": "",
"Tavily API Key": "Tavily API-nyckel",
"Tavily Extract Depth": "Tavily Extraheringsdjup",
"Tell us more:": "Berätta mer:",
@@ -1945,6 +1987,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Tika Server URL krävs.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Titel",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Om du vill välja verktygslådor här måste du först lägga till dem i arbetsytan \"Verktyg\".",
"Toast notifications for new updates": "Toast-aviseringar för nya uppdateringar",
"Today": "Idag",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "Idag kl {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "Varning",
"Warning:": "Varning:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Varning för detta: Om du aktiverar detta kan användare ladda upp godtycklig kod på servern.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Varning: Jupyter-exekvering möjliggör godtycklig kodkörning, vilket innebär allvarliga säkerhetsrisker - fortsätt med extrem försiktighet",
"Web": "Webb",
@@ -2134,6 +2179,7 @@
"Width": "Bredd",
"Wikipedia": "",
"Won": "Vann",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Fungerar tillsammans med top-k. Ett högre värde (t.ex. 0,95) leder till mer varierande text, medan ett lägre värde (t.ex. 0,5) genererar mer fokuserad och konservativ text.",
"Workspace": "Arbetsyta",
"Workspace Permissions": "Arbetsytebehörigheter",
+47 -1
View File
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "எல்லா அரட்டைகளையும் காப்பகப்படுத்த விரும்புகிறீர்களா? இந்தச் செயலைச் செயல்தவிர்க்க முடியாது.",
"Are you sure you want to clear all memories? This action cannot be undone.": "எல்லா நினைவுகளையும் அழிக்க விரும்புகிறீர்களா? இந்தச் செயலைச் செயல்தவிர்க்க முடியாது.",
"Are you sure you want to delete \"{{NAME}}\"?": "\"{{NAME}}\" ஐ நிச்சயமாக நீக்க விரும்புகிறீர்களா?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "எல்லா அரட்டைகளையும் நிச்சயமாக நீக்க விரும்புகிறீர்களா? இந்தச் செயலைச் செயல்தவிர்க்க முடியாது.",
"Are you sure you want to delete this channel?": "இந்த சேனலை நிச்சயமாக நீக்க விரும்புகிறீர்களா?",
"Are you sure you want to delete this connection? This action cannot be undone.": "இந்த இணைப்பை நிச்சயமாக நீக்க விரும்புகிறீர்களா? இந்தச் செயலைச் செயல்தவிர்க்க முடியாது.",
@@ -198,6 +199,7 @@
"Assistant": "உதவியாளர்",
"Async Embedding Processing": "ஒத்திசைவு உட்பொதித்தல் செயலாக்கம்",
"Attach File From Knowledge": "அறிவிலிருந்து கோப்பை இணைக்கவும்",
"Attach Files": "",
"Attach Knowledge": "அறிவை இணைக்கவும்",
"Attach Notes": "குறிப்புகளை இணைக்கவும்",
"Attach Webpage": "இணையப் பக்கத்தை இணைக்கவும்",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 அடிப்படை URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 அடிப்படை URL தேவை.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "சொந்த செயல்பாட்டு அழைப்பு பயன்முறையில் கணினி கருவிகளைத் தானாகச் செலுத்தவும் (எ.கா., நேர முத்திரைகள், நினைவகம், அரட்டை வரலாறு, குறிப்புகள் போன்றவை)",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "கிடைக்கும் பட்டியல்",
"Available models": "கிடைக்கும் மாதிரிகள்",
"Available Tools": "கிடைக்கும் கருவிகள்",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "கட்டுப்படுத்தப்பட்ட பதில்களுக்கு குறிப்பிட்ட டோக்கன்களை உயர்த்துதல் அல்லது அபராதம் விதித்தல். சார்பு மதிப்புகள் -100 மற்றும் 100 (உள்ளடக்கம்) இடையே பிணைக்கப்படும். (இயல்பு: எதுவுமில்லை)",
"Brave": "துணிச்சலான",
"Brave Search API Key": "துணிச்சலான தேடல் API விசை",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "அறிவுத் தளங்களை உலாவவும் மற்றும் வினவவும்",
"Builtin Tools": "உள்ளமைக்கப்பட்ட கருவிகள்",
"Bullet List": "புல்லட் பட்டியல்",
@@ -383,6 +393,7 @@
"Concurrent Requests": "ஒரே நேரத்தில் கோரிக்கைகள்",
"Config": "கட்டமைப்பு",
"Config imported successfully": "கட்டமைப்பு வெற்றிகரமாக இறக்குமதி செய்யப்பட்டது",
"Configuration": "",
"Configure": "கட்டமைக்கவும்",
"Confirm": "உறுதிப்படுத்து",
"Confirm Password": "கடவுச்சொல்லை உறுதிப்படுத்துங்கள்",
@@ -452,6 +463,7 @@
"Create new secret key": "புதிய ரகசிய விசையை உருவாக்கவும்",
"Create note": "குறிப்பை உருவாக்கவும்",
"Create Note": "குறிப்பை உருவாக்கவும்",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "கீழே உள்ள பிளஸ் பொத்தானைக் கிளிக் செய்வதன் மூலம் உங்கள் முதல் குறிப்பை உருவாக்கவும்.",
"Created at": "இல் உருவாக்கப்பட்டது",
"Created At": "இல் உருவாக்கப்பட்டது",
@@ -473,6 +485,7 @@
"Data Controls": "தரவு கட்டுப்பாடுகள்",
"Database": "தரவுத்தளம்",
"Datalab Marker API": "Datalab மார்க்கர் API",
"Day": "",
"DD/MM/YYYY": "DD/MM/YYYY",
"DDGS Backend": "DDGS பின்தளம்",
"December": "டிசம்பர்",
@@ -503,6 +516,7 @@
"Delete All": "அனைத்தையும் நீக்கு",
"Delete All Chats": "அனைத்து அரட்டைகளையும் நீக்கு",
"Delete all contents inside this folder": "இந்தக் கோப்புறையில் உள்ள அனைத்து உள்ளடக்கங்களையும் நீக்கவும்",
"Delete automation?": "",
"Delete Chat": "அரட்டையை நீக்கு",
"Delete chat?": "அரட்டையை நீக்கவா?",
"Delete File": "கோப்பை நீக்கு",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "ஒரே நேரத்தில் கோரிக்கைகளை உட்பொதித்தல்",
"Embedding Model": "உட்பொதித்தல் மாதிரி",
"Embedding Model Engine": "எம்பெடிங் மாடல் எஞ்சின்",
"Emojis": "",
"Empty message": "வெற்று செய்தி",
"Enable All": "அனைத்தையும் இயக்கு",
"Enable API Keys": "API விசைகளை இயக்கவும்",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "குழப்பமான தேடலை உள்ளிடவும் API URL",
"Enter Playwright Timeout": "பிளேரைட் டைம்அவுட்டை உள்ளிடவும்",
"Enter Playwright WebSocket URL": "Playwright WebSocket URL ஐ உள்ளிடவும்",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "ப்ராக்ஸியை உள்ளிடவும் URL (எ.கா. https://user:password@host:port)",
"Enter reasoning effort": "பகுத்தறிவு முயற்சியை உள்ளிடவும்",
"Enter Score": "மதிப்பெண்ணை உள்ளிடவும்",
@@ -762,6 +778,7 @@
"Enter system prompt here": "கணினி வரியில் இங்கே உள்ளிடவும்",
"Enter Tavily API Key": "Tavily API விசையை உள்ளிடவும்",
"Enter Tavily Extract Depth": "Tavily பிரித்தெடுக்கும் ஆழத்தை உள்ளிடவும்",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "உங்கள் WebUI இன் பொது URL ஐ உள்ளிடவும். அறிவிப்புகளில் இணைப்புகளை உருவாக்க இந்த URL பயன்படுத்தப்படும்.",
"Enter the URL of the function to import": "இறக்குமதி செய்ய செயல்பாட்டின் URL ஐ உள்ளிடவும்",
"Enter the URL to import": "இறக்குமதி செய்ய URL ஐ உள்ளிடவும்",
@@ -801,6 +818,7 @@
"Error accessing directory": "கோப்பகத்தை அணுகுவதில் பிழை",
"Error accessing Google Drive: {{error}}": "Google இயக்ககத்தை அணுகுவதில் பிழை: {{error}}",
"Error accessing media devices.": "மீடியா சாதனங்களை அணுகுவதில் பிழை.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "பதிவைத் தொடங்குவதில் பிழை.",
"Error unloading model: {{error}}": "மாதிரியை இறக்குவதில் பிழை: {{error}}",
"Error uploading file: {{error}}": "கோப்பை பதிவேற்றுவதில் பிழை: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "குறியீட்டை இயக்கவும்",
"Execute code for analysis": "பகுப்பாய்வுக்கான குறியீட்டை இயக்கவும்",
"Executing **{{NAME}}**...": "**{{NAME}}** செயல்படுத்துகிறது...",
"Execution Logs": "",
"Expand": "விரிவாக்கு",
"Experimental": "பரிசோதனை",
"Explain": "விளக்கவும்",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "உள்ளீடு செய்ய பரிந்துரை வரியில் செருகவும்",
"Install from Github URL": "Github URL இலிருந்து நிறுவவும்",
"Instant Auto-Send After Voice Transcription": "குரல் டிரான்ஸ்கிரிப்ஷனுக்குப் பிறகு உடனடி தானாக அனுப்பவும்",
"Instructions": "",
"Integration": "ஒருங்கிணைப்பு",
"Integrations": "ஒருங்கிணைப்புகள்",
"Interface": "இடைமுகம்",
@@ -1140,6 +1160,7 @@
"Last 90 days": "கடந்த 90 நாட்கள்",
"Last Active": "கடைசியாக செயல்பட்டது",
"Last Modified": "கடைசியாக மாற்றப்பட்டது",
"Last ran": "",
"Last reply": "கடைசி பதில்",
"LDAP": "LDAP",
"LDAP server updated": "LDAP சேவையகம் புதுப்பிக்கப்பட்டது",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "மாடல் '{{modelName}}' வெற்றிகரமாகப் பதிவிறக்கப்பட்டது.",
"Model '{{modelTag}}' is already in queue for downloading.": "மாடல் '{{modelTag}}' ஏற்கனவே பதிவிறக்குவதற்கு வரிசையில் உள்ளது.",
"Model {{modelId}} not found": "மாதிரி {{modelId}} கிடைக்கவில்லை",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "மாதிரி {{modelName}} பார்வை திறன் இல்லை",
"Model {{name}} is now {{status}}": "மாடல் {{name}} இப்போது {{status}}",
"Model {{name}} is now hidden": "மாடல் {{name}} இப்போது மறைக்கப்பட்டுள்ளது",
@@ -1295,8 +1317,11 @@
"Name": "பெயர்",
"Name and ID are required, please fill them out": "பெயர் மற்றும் ID தேவை, தயவுசெய்து அவற்றை நிரப்பவும்",
"Name your knowledge base": "உங்கள் அறிவுத் தளத்தை பெயரிடுங்கள்",
"Name, prompt, and model are required": "",
"Native": "பூர்வீகம்",
"Never": "",
"New": "புதியது",
"New Automation": "",
"New Button": "புதிய பொத்தான்",
"New Chat": "புதிய அரட்டை",
"New File": "புதிய கோப்பு",
@@ -1315,9 +1340,11 @@
"New Webhook": "புதிய Webhook",
"new-channel": "புதிய சேனல்",
"Next message": "அடுத்த செய்தி",
"Next run": "",
"No access grants. Private to you.": "அணுகல் மானியங்கள் இல்லை. உங்களுக்கு தனிப்பட்டது.",
"No activity data": "செயல்பாட்டுத் தரவு இல்லை",
"No authentication": "அங்கீகாரம் இல்லை",
"No automations found": "",
"No chats found": "அரட்டைகள் எதுவும் இல்லை",
"No chats found for this user.": "இந்தப் பயனருக்கு அரட்டைகள் எதுவும் இல்லை.",
"No chats found.": "அரட்டைகள் எதுவும் இல்லை.",
@@ -1328,6 +1355,7 @@
"No data": "தரவு இல்லை",
"No data found": "தரவு எதுவும் கிடைக்கவில்லை",
"No distance available": "தூரம் இல்லை",
"No execution logs available yet": "",
"No expiration can pose security risks.": "எந்த காலாவதியும் பாதுகாப்பு அபாயங்களை ஏற்படுத்தாது.",
"No feedback found": "கருத்து எதுவும் இல்லை",
"No file selected": "கோப்பு எதுவும் தேர்ந்தெடுக்கப்படவில்லை",
@@ -1374,6 +1402,7 @@
"Not factually correct": "உண்மையில் சரியாக இல்லை",
"Not helpful": "உதவியாக இல்லை",
"Not Registered": "பதிவு செய்யப்படவில்லை",
"Not scheduled": "",
"Note": "குறிப்பு",
"Note deleted successfully": "குறிப்பு வெற்றிகரமாக நீக்கப்பட்டது",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "குறிப்பு: நீங்கள் குறைந்தபட்ச மதிப்பெண்ணை அமைத்தால், தேடல் குறைந்தபட்ச மதிப்பெண்ணுக்கு அதிகமான அல்லது அதற்கு சமமான மதிப்பெண் கொண்ட ஆவணங்களை மட்டுமே வழங்கும்.",
@@ -1447,6 +1476,7 @@
"or": "அல்லது",
"Ordered List": "வரிசைப்படுத்தப்பட்ட பட்டியல்",
"Other": "மற்றவை",
"out of": "",
"Output": "வெளியீடு",
"OUTPUT": "வெளியீடு",
"Output format": "வெளியீட்டு வடிவம்",
@@ -1462,6 +1492,7 @@
"Password": "கடவுச்சொல்",
"Passwords do not match.": "கடவுச்சொற்கள் பொருந்தவில்லை.",
"Paste Large Text as File": "பெரிய உரையை கோப்பாக ஒட்டவும்",
"Paused": "",
"PDF document (.pdf)": "PDF ஆவணம் (.pdf)",
"PDF Extract Images (OCR)": "PDF படங்களை பிரித்தெடுக்கவும் (OCR)",
"PDF Loader Mode": "PDF ஏற்றி பயன்முறை",
@@ -1566,6 +1597,7 @@
"Reason": "காரணம்",
"Reasoning Effort": "பகுத்தறிவு முயற்சி",
"Reasoning Tags": "பகுத்தறிவு குறிச்சொற்கள்",
"Recently Used": "",
"Record": "பதிவு",
"Record voice": "குரல் பதிவு",
"Redirecting you to Open WebUI Community": "உங்களை Open WebUI சமூகத்திற்கு திருப்பி விடுகிறோம்",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "{{name}} என மறுபெயரிடப்பட்டது",
"Render Markdown in Previews": "முன்னோட்டங்களில் ரெண்டர் மார்க் டவுன்",
"Reorder Models": "மாதிரிகளை மறுவரிசைப்படுத்தவும்",
"Repeats": "",
"Reply": "பதில்",
"Reply in Thread": "த்ரெட்டில் பதிலளிக்கவும்",
"Reply to thread...": "திரிக்கு பதில்...",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "ஓடவும்",
"Run All": "அனைத்தையும் இயக்கவும்",
"Run now": "",
"Run Now": "",
"Running": "ஓடுகிறது",
"Running...": "இயங்குகிறது...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "செயலாக்கத்தை விரைவுபடுத்த ஒரே நேரத்தில் உட்பொதிக்கும் பணிகளை இயக்குகிறது. கட்டண வரம்புகள் சிக்கலாக இருந்தால் அணைக்கவும்.",
@@ -1643,12 +1678,15 @@
"Save Chat": "அரட்டையைச் சேமிக்கவும்",
"Saved": "சேமிக்கப்பட்டது",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "உங்கள் உலாவியின் சேமிப்பகத்தில் நேரடியாக அரட்டைப் பதிவுகளைச் சேமிப்பது இனி ஆதரிக்கப்படாது. கீழே உள்ள பொத்தானைக் கிளிக் செய்வதன் மூலம் உங்கள் அரட்டை பதிவுகளை பதிவிறக்கம் செய்து நீக்க சிறிது நேரம் ஒதுக்குங்கள். கவலைப்பட வேண்டாம், உங்கள் அரட்டை பதிவுகளை பின்தளத்தில் எளிதாக மீண்டும் இறக்குமதி செய்யலாம்",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "கிளை மாற்றத்தில் உருட்டவும்",
"Search": "தேடு",
"Search a model": "ஒரு மாதிரியைத் தேடுங்கள்",
"Search all emojis": "எல்லா எமோஜிகளையும் தேடுங்கள்",
"Search and manage user memories": "பயனர் நினைவுகளைத் தேடி நிர்வகிக்கவும்",
"Search and view user chat history": "பயனர் அரட்டை வரலாற்றைத் தேடிப் பார்க்கலாம்",
"Search Automations": "",
"Search Base": "தேடல் தளம்",
"Search channels and channel messages": "சேனல்கள் மற்றும் சேனல் செய்திகளைத் தேடுங்கள்",
"Search Chats": "அரட்டைகளைத் தேடுங்கள்",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "TTS கோரிக்கைகளுக்கான செய்தி உரையை எவ்வாறு பிரிப்பது என்பதைத் தேர்ந்தெடுக்கவும்",
"Select Knowledge": "அறிவைத் தேர்ந்தெடுக்கவும்",
"Select Method": "முறையைத் தேர்ந்தெடுக்கவும்",
"Select model": "",
"Select only one model to call": "அழைக்க ஒரே ஒரு மாதிரியைத் தேர்ந்தெடுக்கவும்",
"Select view": "பார்வையைத் தேர்ந்தெடுக்கவும்",
"Selected model: {{modelName}}": "தேர்ந்தெடுக்கப்பட்ட மாதிரி: {{modelName}}",
@@ -1755,7 +1794,7 @@
"Sets how far back for the model to look back to prevent repetition.": "திரும்பத் திரும்ப வருவதைத் தடுக்க, மாடல் எவ்வளவு பின்னோக்கிப் பார்க்க வேண்டும் என்பதை அமைக்கிறது.",
"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt.": "தலைமுறைக்கு பயன்படுத்த சீரற்ற எண் விதையை அமைக்கிறது. இதை ஒரு குறிப்பிட்ட எண்ணுக்கு அமைப்பது மாதிரியானது அதே உரையில் அதே உரையை உருவாக்கும்.",
"Sets the size of the context window used to generate the next token.": "அடுத்த டோக்கனை உருவாக்கப் பயன்படுத்தப்படும் சூழல் சாளரத்தின் அளவை அமைக்கிறது.",
"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "பயன்படுத்த நிறுத்த வரிசைகளை அமைக்கிறது. இந்த வடிவத்தை எதிர்கொள்ளும்போது, ​​LLM உரையை உருவாக்குவதை நிறுத்திவிட்டு திரும்பும். ஒரு மாதிரிக்கோப்பில் பல தனித்தனி நிறுத்த அளவுருக்களைக் குறிப்பிடுவதன் மூலம் பல நிறுத்த வடிவங்கள் அமைக்கப்படலாம்.",
"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "பயன்படுத்த நிறுத்த வரிசைகளை அமைக்கிறது. இந்த வடிவத்தை எதிர்கொள்ளும்போது, \u200b\u200bLLM உரையை உருவாக்குவதை நிறுத்திவிட்டு திரும்பும். ஒரு மாதிரிக்கோப்பில் பல தனித்தனி நிறுத்த அளவுருக்களைக் குறிப்பிடுவதன் மூலம் பல நிறுத்த வடிவங்கள் அமைக்கப்படலாம்.",
"Setting": "அமைத்தல்",
"Settings": "அமைப்புகள்",
"Settings Permissions": "அமைப்புகள் அனுமதிகள்",
@@ -1827,6 +1866,7 @@
"Start of the channel": "சேனலின் ஆரம்பம்",
"Start Tag": "தொடக்க குறிச்சொல்",
"Starting kernel...": "கர்னலைத் தொடங்குகிறது...",
"State": "",
"Status": "நிலை",
"Status cleared successfully": "நிலை வெற்றிகரமாக அழிக்கப்பட்டது",
"Status updated successfully": "நிலை வெற்றிகரமாக புதுப்பிக்கப்பட்டது",
@@ -1877,8 +1917,10 @@
"Talk to Model": "மாதிரியுடன் பேசுங்கள்",
"Tap to interrupt": "குறுக்கிட தட்டவும்",
"Task List": "பணி பட்டியல்",
"Task Management": "",
"Task Model": "பணி மாதிரி",
"Tasks": "பணிகள்",
"tasks completed": "",
"Tavily API Key": "Tavily API கீ",
"Tavily Extract Depth": "Tavily பிரித்தெடுக்கும் ஆழம்",
"Tell us more:": "மேலும் எங்களிடம் கூறுங்கள்:",
@@ -1945,6 +1987,7 @@
"Tika": "டிகா",
"Tika Server URL required.": "டிகா சர்வர் URL தேவை.",
"Tiktoken": "டிக்டோக்கன்",
"Time": "",
"Time & Calculation": "நேரம் & கணக்கீடு",
"Timeout": "நேரம் முடிந்தது",
"Title": "தலைப்பு",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "இங்கே கருவித்தொகுப்புகளைத் தேர்ந்தெடுக்க, முதலில் அவற்றை \"கருவிகள்\" பணியிடத்தில் சேர்க்கவும்.",
"Toast notifications for new updates": "புதிய புதுப்பிப்புகளுக்கான டோஸ்ட் அறிவிப்புகள்",
"Today": "இன்று",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "இன்று {{LOCALIZED_TIME}} இல்",
"Toggle {{COUNT}} sources": "{{COUNT}} ஆதாரங்களை நிலைமாற்று",
"Toggle 1 source": "1 மூலத்தை நிலைமாற்று",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "பதிவேற்றத்திற்காக காத்திருக்கிறது...",
"Warning": "எச்சரிக்கை",
"Warning:": "எச்சரிக்கை:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "எச்சரிக்கை: இதை இயக்குவது பயனர்கள் சர்வரில் தன்னிச்சையான குறியீட்டைப் பதிவேற்ற அனுமதிக்கும்.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "எச்சரிக்கை: வியாழன் இயக்கமானது தன்னிச்சையான குறியீடு செயல்படுத்தலை செயல்படுத்துகிறது, இது கடுமையான பாதுகாப்பு அபாயங்களை ஏற்படுத்துகிறது-அதிக எச்சரிக்கையுடன் தொடரவும்.",
"Web": "வலை",
@@ -2134,6 +2179,7 @@
"Width": "அகலம்",
"Wikipedia": "விக்கிபீடியா",
"Won": "வெற்றி பெற்றது",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "top-k உடன் இணைந்து செயல்படுகிறது. அதிக மதிப்பு (எ.கா., 0.95) மிகவும் மாறுபட்ட உரைக்கு வழிவகுக்கும், அதே சமயம் குறைந்த மதிப்பு (எ.கா., 0.5) அதிக கவனம் மற்றும் பழமைவாத உரையை உருவாக்கும்.",
"Workspace": "பணியிடம்",
"Workspace Permissions": "பணியிட அனுமதிகள்",
@@ -181,6 +181,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "คุณแน่ใจหรือว่าต้องการล้างความจำทั้งหมด? การดำเนินการนี้ไม่สามารถยกเลิกได้",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "คุณแน่ใจหรือว่าต้องการลบช่องนี้?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -197,6 +198,7 @@
"Assistant": "ผู้ช่วย",
"Async Embedding Processing": "",
"Attach File From Knowledge": "แนบไฟล์จากฐานความรู้",
"Attach Files": "",
"Attach Knowledge": "แนบฐานความรู้",
"Attach Notes": "แนบบันทึก",
"Attach Webpage": "แนบหน้าเว็บ",
@@ -219,6 +221,13 @@
"AUTOMATIC1111 Base URL": "URL พื้นฐานของ AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "จำเป็นต้องระบุ Base URL ของ AUTOMATIC1111",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "รายการที่มีอยู่",
"Available models": "",
"Available Tools": "เครื่องมือที่มีให้ใช้",
@@ -249,6 +258,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "เพิ่มหรือลดน้ำหนักโทเค็นเฉพาะสำหรับการตอบกลับที่มีข้อจำกัด ค่าไบแอสจะถูกจำกัดระหว่าง -100 ถึง 100 (รวม) (ค่าเริ่มต้น: ไม่มี)",
"Brave": "",
"Brave Search API Key": "คีย์ API ของ Brave Search",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "รายการหัวข้อย่อย",
@@ -382,6 +392,7 @@
"Concurrent Requests": "คำขอพร้อมกัน",
"Config": "",
"Config imported successfully": "นำเข้าไฟล์กำหนดค่าสำเร็จแล้ว",
"Configuration": "",
"Configure": "กำหนดค่า",
"Confirm": "ยืนยัน",
"Confirm Password": "ยืนยันรหัสผ่าน",
@@ -451,6 +462,7 @@
"Create new secret key": "สร้างคีย์ลับใหม่",
"Create note": "",
"Create Note": "สร้างบันทึก",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "สร้างบันทึกแรกของคุณโดยคลิกที่ปุ่มบวกด้านล่าง",
"Created at": "สร้างเมื่อ",
"Created At": "สร้างเมื่อ",
@@ -472,6 +484,7 @@
"Data Controls": "การควบคุมข้อมูล",
"Database": "ฐานข้อมูล",
"Datalab Marker API": "Datalab Marker API",
"Day": "",
"DD/MM/YYYY": "DD/MM/YYYY",
"DDGS Backend": "",
"December": "ธันวาคม",
@@ -502,6 +515,7 @@
"Delete All": "",
"Delete All Chats": "ลบการแชททั้งหมด",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "ลบแชท",
"Delete chat?": "ลบแชท?",
"Delete File": "",
@@ -646,6 +660,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "โมเดล Embedding",
"Embedding Model Engine": "เอ็นจินโมเดล Embedding",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -737,6 +752,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "ป้อนเวลา Timeout ของ Playwright",
"Enter Playwright WebSocket URL": "ใส่ URL WebSocket ของ Playwright",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "ป้อน URL พร็อกซี (เช่น https://user:password@host:port)",
"Enter reasoning effort": "ป้อนระดับการใช้เหตุผล",
"Enter Score": "ใส่คะแนน",
@@ -761,6 +777,7 @@
"Enter system prompt here": "ป้อน System Prompt ที่นี่",
"Enter Tavily API Key": "ใส่ API Key ของ Tavily",
"Enter Tavily Extract Depth": "ป้อนระดับความลึกของ Tavily Extract",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "ป้อน URL สาธารณะของ WebUI ของคุณ URL นี้จะใช้ในการสร้างลิงก์ในการแจ้งเตือน",
"Enter the URL of the function to import": "ป้อน URL ของฟังก์ชันที่จะนำเข้า",
"Enter the URL to import": "ป้อน URL ที่ต้องการนำเข้า",
@@ -800,6 +817,7 @@
"Error accessing directory": "ข้อผิดพลาดในการเข้าถึงไดเรกทอรี",
"Error accessing Google Drive: {{error}}": "เกิดข้อผิดพลาดขณะเข้าถึง Google Drive: {{error}}",
"Error accessing media devices.": "เกิดข้อผิดพลาดขณะเข้าถึงอุปกรณ์สื่อ",
"Error deleting model: {{error}}": "",
"Error starting recording.": "เกิดข้อผิดพลาดขณะเริ่มการบันทึก",
"Error unloading model: {{error}}": "ข้อผิดพลาดขณะยกเลิกโหลดโมเดล: {{error}}",
"Error uploading file: {{error}}": "เกิดข้อผิดพลาดระหว่างอัปโหลดไฟล์: {{error}}",
@@ -817,6 +835,7 @@
"Execute code": "",
"Execute code for analysis": "รันโค้ดเพื่อการวิเคราะห์",
"Executing **{{NAME}}**...": "กำลังรัน **{{NAME}}**...",
"Execution Logs": "",
"Expand": "ขยาย",
"Experimental": "การทดลอง",
"Explain": "อธิบาย",
@@ -1080,6 +1099,7 @@
"Insert Suggestion Prompt to Input": "แทรกพรอมต์คำแนะนำไปยังช่องป้อนข้อมูล",
"Install from Github URL": "ติดตั้งจาก URL ของ GitHub",
"Instant Auto-Send After Voice Transcription": "ส่งอัตโนมัติทันทีหลังถอดเสียง",
"Instructions": "",
"Integration": "การเชื่อมต่อระบบ",
"Integrations": "การเชื่อมต่อระบบ",
"Interface": "อินเทอร์เฟซ",
@@ -1139,6 +1159,7 @@
"Last 90 days": "",
"Last Active": "ใช้งานล่าสุด",
"Last Modified": "แก้ไขล่าสุด",
"Last ran": "",
"Last reply": "คำตอบล่าสุด",
"LDAP": "LDAP",
"LDAP server updated": "อัปเดตเซิร์ฟเวอร์ LDAP แล้ว",
@@ -1245,6 +1266,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "โมเดล '{{modelName}}' ถูกดาวน์โหลดเรียบร้อยแล้ว",
"Model '{{modelTag}}' is already in queue for downloading.": "โมเดล '{{modelTag}}' อยู่ในคิวสำหรับการดาวน์โหลดแล้ว",
"Model {{modelId}} not found": "ไม่พบโมเดล {{modelId}}",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "โมเดล {{modelName}} ไม่รองรับฟีเจอร์ Vision",
"Model {{name}} is now {{status}}": "โมเดล {{name}} ขณะนี้ {{status}}",
"Model {{name}} is now hidden": "โมเดล {{name}} ถูกซ่อนแล้ว",
@@ -1294,8 +1316,11 @@
"Name": "ชื่อ",
"Name and ID are required, please fill them out": "จำเป็นต้องกรอกชื่อและ ID โปรดกรอกข้อมูลให้ครบ",
"Name your knowledge base": "ตั้งชื่อฐานความรู้ของคุณ",
"Name, prompt, and model are required": "",
"Native": "Native",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "ปุ่มใหม่",
"New Chat": "แชทใหม่",
"New File": "",
@@ -1314,9 +1339,11 @@
"New Webhook": "",
"new-channel": "ช่องใหม่",
"Next message": "ข้อความถัดไป",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "ไม่ต้องยืนยันตัวตน",
"No automations found": "",
"No chats found": "ไม่พบแชท",
"No chats found for this user.": "ไม่พบการแชทสำหรับผู้ใช้นี้",
"No chats found.": "ไม่พบแชท",
@@ -1327,6 +1354,7 @@
"No data": "",
"No data found": "",
"No distance available": "ไม่มีข้อมูลระยะทาง",
"No execution logs available yet": "",
"No expiration can pose security risks.": "ไม่มีวันหมดอายุอาจทำให้เกิดความเสี่ยงด้านความปลอดภัย",
"No feedback found": "",
"No file selected": "ไม่ได้เลือกไฟล์",
@@ -1373,6 +1401,7 @@
"Not factually correct": "ไม่ถูกต้องตามข้อเท็จจริง",
"Not helpful": "ไม่เป็นประโยชน์",
"Not Registered": "ยังไม่ได้ลงทะเบียน",
"Not scheduled": "",
"Note": "บันทึก",
"Note deleted successfully": "ลบบันทึกสำเร็จแล้ว",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "หมายเหตุ: หากคุณตั้งค่าคะแนนขั้นต่ำ การค้นหาจะคืนเฉพาะเอกสารที่มีคะแนนมากกว่าหรือเท่ากับคะแนนขั้นต่ำ",
@@ -1446,6 +1475,7 @@
"or": "หรือ",
"Ordered List": "รายการมีลำดับ",
"Other": "อื่น ๆ",
"out of": "",
"Output": "",
"OUTPUT": "เอาต์พุต",
"Output format": "รูปแบบผลลัพธ์",
@@ -1461,6 +1491,7 @@
"Password": "รหัสผ่าน",
"Passwords do not match.": "รหัสผ่านไม่ตรงกัน",
"Paste Large Text as File": "วางข้อความขนาดใหญ่เป็นไฟล์",
"Paused": "",
"PDF document (.pdf)": "เอกสาร PDF (.pdf)",
"PDF Extract Images (OCR)": "การดึงรูปภาพจาก PDF (OCR)",
"PDF Loader Mode": "",
@@ -1565,6 +1596,7 @@
"Reason": "เหตุผล",
"Reasoning Effort": "ระดับการใช้เหตุผล",
"Reasoning Tags": "ป้ายกำกับการให้เหตุผล",
"Recently Used": "",
"Record": "บันทึก",
"Record voice": "บันทึกเสียง",
"Redirecting you to Open WebUI Community": "กำลังเปลี่ยนเส้นทางคุณไปยังชุมชน Open WebUI",
@@ -1600,6 +1632,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "จัดลำดับโมเดลใหม่",
"Repeats": "",
"Reply": "ตอบกลับ",
"Reply in Thread": "ตอบกลับในเธรด",
"Reply to thread...": "ตอบกลับเธรด...",
@@ -1631,6 +1664,8 @@
"RTL": "ขวาไปซ้าย",
"Run": "เรียกใช้",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "กำลังทำงาน",
"Running...": "กำลังทำงาน...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1641,12 +1676,15 @@
"Save Chat": "บันทึกการแชท",
"Saved": "บันทึกแล้ว",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "การบันทึก Log การแชทโดยตรงไปยังที่จัดเก็บของเบราว์เซอร์ไม่รองรับอีกต่อไป โปรดสละเวลาสักครู่เพื่อดาวน์โหลดและลบบันทึกการแชทของคุณโดยคลิกปุ่มด้านล่าง ไม่ต้องกังวล คุณสามารถนำเข้าบันทึกการแชทของคุณกลับไปยัง Backend ได้อย่างง่ายดายผ่าน",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "เลื่อนเมื่อเปลี่ยนสาขา",
"Search": "ค้นหา",
"Search a model": "ค้นหาโมเดล",
"Search all emojis": "ค้นหาอีโมจิทั้งหมด",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "ฐานการค้นหา",
"Search channels and channel messages": "",
"Search Chats": "ค้นหาแชท",
@@ -1716,6 +1754,7 @@
"Select how to split message text for TTS requests": "เลือกวิธีแบ่งข้อความสำหรับคำขอ TTS",
"Select Knowledge": "เลือกฐานความรู้",
"Select Method": "เลือกวิธี",
"Select model": "",
"Select only one model to call": "เลือกเพียงโมเดลเดียวที่จะเรียกใช้",
"Select view": "เลือกมุมมอง",
"Selected model: {{modelName}}": "",
@@ -1825,6 +1864,7 @@
"Start of the channel": "จุดเริ่มต้นของช่อง",
"Start Tag": "แท็กเริ่มต้น",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1875,8 +1915,10 @@
"Talk to Model": "คุยกับโมเดล",
"Tap to interrupt": "แตะเพื่อขัดจังหวะ",
"Task List": "รายการงาน",
"Task Management": "",
"Task Model": "Task Model",
"Tasks": "งาน",
"tasks completed": "",
"Tavily API Key": "คีย์ API ของ Tavily",
"Tavily Extract Depth": "ความลึกการดึงข้อมูล Tavily",
"Tell us more:": "เล่าให้เราฟังเพิ่มเติม:",
@@ -1943,6 +1985,7 @@
"Tika": "Tika",
"Tika Server URL required.": "จำเป็นต้องมี URL ของเซิร์ฟเวอร์ Tika",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "ชื่อเรื่อง",
@@ -1960,6 +2003,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "ในการเลือกชุดเครื่องมือที่นี่ ให้เพิ่มไปยังพื้นที่ทำงาน \"Tools\" ก่อน",
"Toast notifications for new updates": "การแจ้งเตือนแบบ Toast สำหรับอัปเดตใหม่",
"Today": "วันนี้",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "วันนี้เวลา {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2098,6 +2142,7 @@
"Waiting for upload...": "",
"Warning": "คำเตือน",
"Warning:": "คำเตือน:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "คำเตือน: การเปิดใช้งานตัวเลือกนี้จะอนุญาตให้ผู้ใช้อัปโหลดโค้ดใดๆ บนเซิร์ฟเวอร์",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "คำเตือน: การรัน Jupyter อนุญาตให้รันโค้ดใดๆ ก็ได้ ซึ่งก่อให้เกิดความเสี่ยงด้านความปลอดภัยอย่างร้ายแรง—โปรดดำเนินการด้วยความระมัดระวังอย่างยิ่ง",
"Web": "เว็บ",
@@ -2132,6 +2177,7 @@
"Width": "ความกว้าง",
"Wikipedia": "",
"Won": "ชนะ",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "ทำงานร่วมกับ Top K ค่าที่สูงขึ้น (เช่น 0.95) จะนำไปสู่ข้อความที่หลากหลายมากขึ้น ในขณะที่ค่าที่ต่ำลง (เช่น 0.5) จะสร้างข้อความที่มุ่งเน้นและระมัดระวังมากขึ้น",
"Workspace": "พื้นที่ทำงาน",
"Workspace Permissions": "สิทธิ์ของพื้นที่ทำงาน",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Esasy URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Esasy URL zerur.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "",
"Available models": "",
"Available Tools": "",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "Brave Gözleg API Açar",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Meňzeş Haýyşlar",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "",
"Confirm": "",
"Confirm Password": "Paroly Tassyklap",
@@ -452,6 +463,7 @@
"Create new secret key": "Täze gizlin açar döret",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Döredilen wagty",
"Created At": "Döredilen wagty",
@@ -473,6 +485,7 @@
"Data Controls": "",
"Database": "Mazada",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "Dekabr",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "Ähli Çatlary Öçür",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "",
"Delete chat?": "",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "",
"Embedding Model Engine": "",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "",
@@ -762,6 +778,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "",
"Explain": "",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "",
"Instant Auto-Send After Voice Transcription": "",
"Instructions": "",
"Integration": "Integrasiýa",
"Integrations": "",
"Interface": "",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "",
"Last Modified": "Soňky üýtgedilen",
"Last ran": "",
"Last reply": "",
"LDAP": "",
"LDAP server updated": "",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "",
"Model '{{modelTag}}' is already in queue for downloading.": "",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "",
"Model {{name}} is now {{status}}": "",
"Model {{name}} is now hidden": "",
@@ -1295,8 +1317,11 @@
"Name": "Ady",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "",
@@ -1374,6 +1402,7 @@
"Not factually correct": "",
"Not helpful": "",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "",
@@ -1447,6 +1476,7 @@
"or": "",
"Ordered List": "",
"Other": "Başga",
"out of": "",
"Output": "",
"OUTPUT": "",
"Output format": "",
@@ -1462,6 +1492,7 @@
"Password": "Parol",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Paused": "",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "",
"Redirecting you to Open WebUI Community": "",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "",
"Run": "",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "",
"Running...": "Işleýär...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "",
"Saved": "Saklanan",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Gözleg",
"Search a model": "",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "",
"Search channels and channel messages": "",
"Search Chats": "",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "",
"Select Method": "",
"Select model": "",
"Select only one model to call": "",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Kanal başy",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "",
"Tavily Extract Depth": "",
"Tell us more:": "",
@@ -1945,6 +1987,7 @@
"Tika": "",
"Tika Server URL required.": "",
"Tiktoken": "",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Ady",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "",
"Toast notifications for new updates": "",
"Today": "Şu gün",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "Duýduryş",
"Warning:": "Duýduryş:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "",
"Workspace Permissions": "",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "Tüm sohbetleri arşivlemek istediğinizden emin misiniz? Bu işlem geri alınamaz.",
"Are you sure you want to clear all memories? This action cannot be undone.": "Tüm bellekleri temizlemek istediğinizden emin misiniz? Bu işlem geri alınamaz.",
"Are you sure you want to delete \"{{NAME}}\"?": "\"{{NAME}}\" öğesini silmek istediğinizden emin misiniz?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "Tüm sohbetleri silmek istediğinizden emin misiniz? Bu işlem geri alınamaz.",
"Are you sure you want to delete this channel?": "Bu kanalı silmek istediğinizden emin misiniz?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "Asistan",
"Async Embedding Processing": "",
"Attach File From Knowledge": "Bilgi Tabanından Dosya Ekle",
"Attach Files": "",
"Attach Knowledge": "Bilgi Tabanı Ekle",
"Attach Notes": "Not Ekle",
"Attach Webpage": "Web sayfası ekle",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 Temel URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Temel URL gereklidir.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Mevcut liste",
"Available models": "Mevcut modeller",
"Available Tools": "Mevcut Araçlar",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "Brave",
"Brave Search API Key": "Brave Search API Anahtarı",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "Bilgi tabanlarına göz at ve sorgula",
"Builtin Tools": "Yerleşik Araçlar",
"Bullet List": "Madde İşaretli Liste",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Eşzamanlı İstekler",
"Config": "Yapılandırma",
"Config imported successfully": "Yapılandırma başarıyla içe aktarıldı",
"Configuration": "",
"Configure": "Yapılandırma",
"Confirm": "Onayla",
"Confirm Password": "Parolayı Onayla",
@@ -452,6 +463,7 @@
"Create new secret key": "Yeni gizli anahtar oluştur",
"Create note": "Not oluştur",
"Create Note": "Not Oluştur",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "İlk notunuzu aşağıdaki artı düğmesine basarak oluşturun.",
"Created at": "Oluşturulma tarihi",
"Created At": "Şu Tarihte Oluşturuldu:",
@@ -473,6 +485,7 @@
"Data Controls": "Veri Kontrolleri",
"Database": "Veritabanı",
"Datalab Marker API": "Datalab Marker API",
"Day": "",
"DD/MM/YYYY": "GG/AA/YYYY",
"DDGS Backend": "DDGS Backend",
"December": "Aralık",
@@ -503,6 +516,7 @@
"Delete All": "Tümünü Sil",
"Delete All Chats": "Tüm Sohbetleri Sil",
"Delete all contents inside this folder": "Bu klasördeki tüm içerikleri sil",
"Delete automation?": "",
"Delete Chat": "Sohbeti Sil",
"Delete chat?": "Sohbeti sil?",
"Delete File": "Dosyayı Sil",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Gömme Modeli",
"Embedding Model Engine": "Gömme Modeli Motoru",
"Emojis": "",
"Empty message": "Boş mesaj",
"Enable All": "Tümünü Etkinleştir",
"Enable API Keys": "API Anahtarlarını Etkinleştir",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "Perplexity Search API URL'sini Girin",
"Enter Playwright Timeout": "Playwright Zaman Aşımını Girin",
"Enter Playwright WebSocket URL": "Playwright WebSocket URL'sini Girin",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Vekil sunucu URL'sini girin (örn. https://user:password@host:port)",
"Enter reasoning effort": "Muhakeme çabasını girin",
"Enter Score": "Skoru Girin",
@@ -762,6 +778,7 @@
"Enter system prompt here": "Sistem promptunu buraya girin.",
"Enter Tavily API Key": "Tavily API Anahtarını Girin",
"Enter Tavily Extract Depth": "Tavily Çıkarma Derinliğini Girin",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "WebUI'nizin herkese açık URL'sini girin. Bu URL, bildirimlerdeki bağlantıları oluşturmak için kullanılacaktır.",
"Enter the URL of the function to import": "İçe aktarılacak fonksiyonun URL'sini girin",
"Enter the URL to import": "İçe aktarılacak URL'yi girin",
@@ -801,6 +818,7 @@
"Error accessing directory": "Dizine erişilirken hata oluştu",
"Error accessing Google Drive: {{error}}": "Google Drive'a erişim hatası: {{error}}",
"Error accessing media devices.": "Medya cihazlarına erişirken hata oluştu.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Kayıt başlatılırken hata oluştu.",
"Error unloading model: {{error}}": "Model bellekten boşaltılırken hata: {{error}}",
"Error uploading file: {{error}}": "Dosya yüklenirken hata oluştu: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "Kodu çalıştır",
"Execute code for analysis": "Kodu analiz için çalıştır",
"Executing **{{NAME}}**...": "**{{NAME}}** yürütülüyor...",
"Execution Logs": "",
"Expand": "Genişlet",
"Experimental": "Deneysel",
"Explain": "Açıkla",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "Öneri Prompt'unu Girdiye Ekle",
"Install from Github URL": "Github URL'sinden yükleyin",
"Instant Auto-Send After Voice Transcription": "Ses Transkripsiyonundan Sonra Anında Otomatik Gönder",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "Arayüz",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "Son Aktivite",
"Last Modified": "Son Düzenleme",
"Last ran": "",
"Last reply": "Son yanıt",
"LDAP": "LDAP",
"LDAP server updated": "LDAP sunucusu güncellendi",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' başarıyla indirildi.",
"Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' zaten indirme sırasında.",
"Model {{modelId}} not found": "{{modelId}} bulunamadı",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} görüntü yeteneğine sahip değil",
"Model {{name}} is now {{status}}": "{{name}} modeli artık {{status}}",
"Model {{name}} is now hidden": "Model {{name}} artık gizli",
@@ -1295,8 +1317,11 @@
"Name": "Ad",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Bilgi tabanınıza bir ad verin",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "Yeni",
"New Automation": "",
"New Button": "",
"New Chat": "Yeni Sohbet",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "yeni-kanal",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "Erişim izni yok. Size özel.",
"No activity data": "Aktivite verisi yok",
"No authentication": "Kimlik doğrulama yok",
"No automations found": "",
"No chats found": "Sohbet bulunamadı",
"No chats found for this user.": "Bu kullanıcı için sohbet bulunamadı.",
"No chats found.": "Sohbet bulunamadı.",
@@ -1328,6 +1355,7 @@
"No data": "Veri yok",
"No data found": "Veri bulunamadı",
"No distance available": "Mesafe mevcut değil",
"No execution logs available yet": "",
"No expiration can pose security risks.": "Son kullanma tarihi olmaması güvenlik riskleri oluşturabilir.",
"No feedback found": "Geri bildirim bulunamadı",
"No file selected": "Hiçbir dosya seçilmedi",
@@ -1374,6 +1402,7 @@
"Not factually correct": "Gerçeklere göre doğru değil",
"Not helpful": "Yardımcı olmadı",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "Not başarıyla silindi",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Not: Minimum bir skor belirlerseniz, arama yalnızca minimum skora eşit veya daha yüksek bir skora sahip belgeleri getirecektir.",
@@ -1447,6 +1476,7 @@
"or": "veya",
"Ordered List": "",
"Other": "Diğer",
"out of": "",
"Output": "",
"OUTPUT": "ÇIKTI",
"Output format": "Çıktı formatı",
@@ -1462,6 +1492,7 @@
"Password": "Parola",
"Passwords do not match.": "Parolalar eşleşmiyor.",
"Paste Large Text as File": "Büyük Metni Dosya Olarak Yapıştır",
"Paused": "",
"PDF document (.pdf)": "PDF belgesi (.pdf)",
"PDF Extract Images (OCR)": "PDF Görüntülerini Çıkart (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "Kaydet",
"Record voice": "Ses kaydı yap",
"Redirecting you to Open WebUI Community": "OpenWebUI Topluluğuna yönlendiriliyorsunuz",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "Önizlemelerde Markdown'u İşle",
"Reorder Models": "Modelleri Yeniden Sırala",
"Repeats": "",
"Reply": "",
"Reply in Thread": "Konuya Yanıtla",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "Sağdan Sola",
"Run": "Çalıştır",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Çalışıyor",
"Running...": "Çalışıyor...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "Sohbeti Kaydet",
"Saved": "Kaydedildi",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Sohbet kayıtlarının doğrudan tarayıcınızın depolama alanına kaydedilmesi artık desteklenmemektedir. Lütfen aşağıdaki butona tıklayarak sohbet kayıtlarınızı indirmek ve silmek için bir dakikanızı ayırın. Endişelenmeyin, sohbet günlüklerinizi arkayüze kolayca yeniden aktarabilirsiniz:",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Dal Değişiminde Kaydır",
"Search": "Ara",
"Search a model": "Bir model ara",
"Search all emojis": "Tüm emojileri ara",
"Search and manage user memories": "Kullanıcı anılarını ara ve yönet",
"Search and view user chat history": "Kullanıcı sohbet geçmişini ara ve görüntüle",
"Search Automations": "",
"Search Base": "Temel Ara",
"Search channels and channel messages": "Kanalları ve kanal mesajlarını ara",
"Search Chats": "Sohbetleri Ara",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "TTS istekleri için mesaj metninin nasıl bölüneceğini seçin",
"Select Knowledge": "Bilgi Seç",
"Select Method": "Yöntem Seçin",
"Select model": "",
"Select only one model to call": "Arama için sadece bir model seç",
"Select view": "Görünüm seçin",
"Selected model: {{modelName}}": "Seçilen model: {{modelName}}",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Kanalın başlangıcı",
"Start Tag": "Başlangıç Etiketi",
"Starting kernel...": "Kernel başlatılıyor...",
"State": "",
"Status": "Durum",
"Status cleared successfully": "Durum başarıyla temizlendi",
"Status updated successfully": "Durum başarıyla güncellendi",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "Durdurmak için dokunun",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "Görevler",
"tasks completed": "",
"Tavily API Key": "Tavily API Anahtarı",
"Tavily Extract Depth": "Tavily Çıkarma Derinliği",
"Tell us more:": "Bize daha fazlasını anlat:",
@@ -1945,6 +1987,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Tika Sunucu URL'si gereklidir.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Başlık",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Araçları burada seçmek için öncelikle bunları \"Araçlar\" çalışma alanına ekleyin.",
"Toast notifications for new updates": "",
"Today": "Bugün",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "Bugün saat {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "{{COUNT}} kaynağı aç/kapat",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "Uyarı",
"Warning:": "Uyarı:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Uyarı: Bu etkinleştirildiğinde, kullanıcıların sunucuya rastgele kod yüklemesine izin verilecektir.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "Web",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "kazandı",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "Çalışma Alanı",
"Workspace Permissions": "Çalışma Alanı İzinleri",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "بارلىق ئەسلەتمىلەرنى تازىلامسىز؟ بۇ ھەرىكەتنى ئەمدى ئەسلىگە كەلتۈرگىلى بولمايدۇ.",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "بۇ قانالنى ئۆچۈرەمسىز؟",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "ياردەمچى",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 ئاساسىي URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ئاساسىي URL زۆرۈر.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "بار تىزىملىك",
"Available models": "",
"Available Tools": "بار قوراللار",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "چەكلەنگەن ئىنكاسلار ئۈچۈن بەلگىلىك سۆزلەرگە ئالاھىدە ئۈنۈم قوشۇش ياكى جازالاش. ئېغىش قىممىتى 100- دىن 100 گىچە بولىدۇ (كۆرسىتىلگەن قىممەت). (كۆڭۈلدىكى: يوق)",
"Brave": "",
"Brave Search API Key": "Brave ئىزدەش API ئاچقۇچى",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "پاراللىل تەلەپلەر",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "تەڭشەك",
"Confirm": "جەزملەش",
"Confirm Password": "پارولنى جەزملەش",
@@ -452,6 +463,7 @@
"Create new secret key": "يېڭى مەخپىي ئاچقۇچ قۇرۇش",
"Create note": "",
"Create Note": "خاتىرە قۇرۇش",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "تۆۋەندىكى قوشۇش كۇنۇپكىسىنى چېكىپ بىرىنچى خاتىرىڭىزنى قۇرۇڭ.",
"Created at": "قۇرۇلغان ۋاقتى",
"Created At": "قۇرۇلغان ۋاقتى",
@@ -473,6 +485,7 @@
"Data Controls": "",
"Database": "ساندان",
"Datalab Marker API": "Datalab Marker API",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "دېكابىر",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "بارلىق سۆھبەتلەرنى ئۆچۈرۈش",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "سۆھبەت ئۆچۈرۈش",
"Delete chat?": "سۆھبەت ئۆچۈرەمسىز؟",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "سىڭدۈرۈش مودېلى",
"Embedding Model Engine": "سىڭدۈرۈش مودېل ماتورى",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "Playwright ۋاقىت چەكلىمىسى كىرگۈزۈڭ",
"Enter Playwright WebSocket URL": "Playwright WebSocket URL كىرگۈزۈڭ",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "ۋاكالەتچى URL كىرگۈزۈڭ (مەسىلەن: https://user:password@host:port)",
"Enter reasoning effort": "چۈشەندۈرۈش كۈچى كىرگۈزۈڭ",
"Enter Score": "باھا كىرگۈزۈڭ",
@@ -762,6 +778,7 @@
"Enter system prompt here": "سىستېما تۈرتكەسىنى بۇ يەرگە كىرگۈزۈڭ",
"Enter Tavily API Key": "Tavily API ئاچقۇچى كىرگۈزۈڭ",
"Enter Tavily Extract Depth": "Tavily چىقىرىش چوڭقۇرلۇقى كىرگۈزۈڭ",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "WebUI نىڭ ئاممىۋى URL نى كىرگۈزۈڭ. بۇ URL ئۇقتۇرۇشتىكى ئۇلانما قۇرۇشقا ئىشلىتىلىدۇ.",
"Enter the URL of the function to import": "ئىمپورت قىلىدىغان فۇنكسىيەنىڭ URL كىرگۈزۈڭ",
"Enter the URL to import": "ئىمپورت قىلىدىغان URL كىرگۈزۈڭ",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Google Drive زىيارىتىدە خاتالىق: {{error}}",
"Error accessing media devices.": "كۆپ-ۋاستە ئۈسكۈنىلىرىگە زىيارەت خاتالىقى.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "خاتىرىلەش باشلاش خاتالىقى.",
"Error unloading model: {{error}}": "مودېل چىقىرىشتا خاتالىق: {{error}}",
"Error uploading file: {{error}}": "ھۆججەت چىقىرىشتا خاتالىق: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "تەھلىل ئۈچۈن كود ئىجرا قىلىش",
"Executing **{{NAME}}**...": "**{{NAME}}** ئىجرا قىلىنىۋاتىدۇ...",
"Execution Logs": "",
"Expand": "كېڭەيتىش",
"Experimental": "تەجىربىلىك",
"Explain": "چۈشەندۈرۈش",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Github URL دىن ئورنىتىش",
"Instant Auto-Send After Voice Transcription": "ئاۋازنى تېكستكە ئايلاندۇرغاندىن كېيىن ئۆزلۈكىدىن يوللاش",
"Instructions": "",
"Integration": "بىرىكتۈرۈش",
"Integrations": "",
"Interface": "يۈز",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "ئاخىرقى ئاكتىپ ۋاقتى",
"Last Modified": "ئاخىرقى يېڭىلانغان",
"Last ran": "",
"Last reply": "ئاخىرقى ئىنكاس",
"LDAP": "LDAP",
"LDAP server updated": "LDAP مۇلازىمېتىر يېڭىلاندى",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "مودېل '{{modelName}}' مۇۋەپپەقىيەتلىك چۈشۈرۈلدى.",
"Model '{{modelTag}}' is already in queue for downloading.": "مودېل '{{modelTag}}' ئاللىقاچان چۈشۈرۈش قاتارىغا قوشۇلغان.",
"Model {{modelId}} not found": "مودېل {{modelId}} تېپىلمىدى",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "مودېل {{modelName}} كۆرۈنۈش ئىقتىدارى يوق",
"Model {{name}} is now {{status}}": "مودېل {{name}} ھازىر {{status}}",
"Model {{name}} is now hidden": "مودېل {{name}} ھازىر يوشۇرۇلدى",
@@ -1295,8 +1317,11 @@
"Name": "ئات",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "بىلىم ئاساسى نامىنى كىرگۈزۈڭ",
"Name, prompt, and model are required": "",
"Native": "يەرلىك",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "يېڭى سۆھبەت",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "يېڭى-قانال",
"Next message": "كېيىنكى ئۇچۇر",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "بۇ ئىشلەتكۈچىدە سۆھبەت تېپىلمىدى.",
"No chats found.": "سۆھبەت تېپىلمىدى.",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "ئارىلىق ئۇچۇرى يوق",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "ھۆججەت تاللانمىدى",
@@ -1374,6 +1402,7 @@
"Not factually correct": "ھەقىقى بولمىغان",
"Not helpful": "پايدىسى يوق",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "خاتىرە مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ئەسكەرتىش: ئەگەر ئەڭ تۆۋەن نومۇر بەلگىلىسىڭىز ، ئىزدەش پەقەت ئەڭ تۆۋەن نومۇردىن چوڭ ياكى تەڭ بولغان ھۆججەتلەرنى قايتۇرىدۇ.",
@@ -1447,6 +1476,7 @@
"or": "ياكى",
"Ordered List": "",
"Other": "باشقا",
"out of": "",
"Output": "",
"OUTPUT": "چىقىرىش",
"Output format": "چىقىرىش قېلىپى",
@@ -1462,6 +1492,7 @@
"Password": "پارول",
"Passwords do not match.": "",
"Paste Large Text as File": "چوڭ تېكستنى ھۆججەت قىلىپ چاپلا",
"Paused": "",
"PDF document (.pdf)": "PDF ھۆججىتى (.pdf)",
"PDF Extract Images (OCR)": "PDF رەسىم چىقىرىش (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "سەۋەب",
"Reasoning Effort": "چۈشەندۈرۈش كۈچى",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "خاتىرىلەش",
"Record voice": "ئاۋاز خاتىرىلەش",
"Redirecting you to Open WebUI Community": "Open WebUI جەمئىيىتىگە يوللاندى",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "مودېللارنى قايتا تەرتىپلەش",
"Repeats": "",
"Reply": "",
"Reply in Thread": "تارماقتا ئىنكاس قايتۇرۇش",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "RTL (ئوڭدىن سولغا)",
"Run": "ئىجرا قىلىش",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "ئىجرا قىلىنىۋاتىدۇ",
"Running...": "ئىجرا قىلىنىۋاتىدۇ...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "",
"Saved": "ساقلاندى",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "پاراڭ خاتىرىسىنى بىۋاسىتە توركۆرگۈڭىزنىڭ ساقلىشىغا ساقلىغىلى بولمايدۇ. بىر ئاز ۋاقىت چىقىرىپ ئاستىدىكى كۇنۇپكىنى بېسىپ پاراڭ خاتىرىڭىزنى چۈشۈرۈڭ ۋە ئۆچۈرۈڭ. ئەنسىرىمەڭ ، پاراڭ خاتىرىڭىزنى ئارقا سۇپىغا قايتا ئەكىرىسىز",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "تارماق ئۆزگەرسە ئېكران يۆتكىلىدۇ",
"Search": "ئىزدەش",
"Search a model": "مودېل ئىزدەش",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "ئىزدەش ئاساسى",
"Search channels and channel messages": "",
"Search Chats": "سۆھبەت ئىزدەش",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "بىلىم تاللاڭ",
"Select Method": "",
"Select model": "",
"Select only one model to call": "پەقەت بىر مودېل چاقىرالايسىز",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "قانالنىڭ باشلانغىنى",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "توختاتماقچى بولسىڭىز چېكىڭ",
"Task List": "",
"Task Management": "",
"Task Model": "ۋەزىپە مودېلى",
"Tasks": "ۋەزىپىلەر",
"tasks completed": "",
"Tavily API Key": "Tavily API ئاچقۇچى",
"Tavily Extract Depth": "Tavily چىقىرىش چوڭقۇرلۇقى",
"Tell us more:": "تېخىمۇ كۆپ ئۇچۇر بېرىڭ:",
@@ -1945,6 +1987,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Tika مۇلازىمېتىر URL زۆرۈر.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "تېما",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "بۇ يەردىن قورال تاللاش ئۈچۈن ئالدى بىلەن \"قورال\" ئىشخانىغا قوشۇڭ.",
"Toast notifications for new updates": "يېڭىلىق ئۇقتۇرۇشى (toast)",
"Today": "بۈگۈن",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "ئاگاھلاندۇرۇش",
"Warning:": "ئاگاھلاندۇرۇش:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "ئاگاھلاندۇرۇش: بۇ قوزغىتىلسا، ئىشلەتكۈچىلەر خالىغان كودنى مۇلازىمېتىرغا چىقىرىدۇ.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "ئاگاھلاندۇرۇش: Jupyter ئىجرا قىلىش خالىغان كود ئىجرا قىلىشقا يول قويىدۇ، بىخەتەرلىك خەۋپى يۇقىرى — ئىنتايىن دىققەت قىلىڭ.",
"Web": "تور",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "ئۇتتى",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "top-k بىلەن بىرلىكتە ئىشلىتىلىدۇ. چوڭ قىممەت (مەسىلەن: 0.95) كۆپ خىل تېكست، كىچىك قىممەت (مەسىلەن: 0.5) تېخىمۇ مۇقىم تېكست چىقىرىدۇ.",
"Workspace": "ئىشخانا",
"Workspace Permissions": "ئىشخانا ھوقۇقى",
@@ -184,6 +184,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "Ви впевнені, що хочете очистити усі спогади? Цю дію неможливо скасувати.",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Ви впевнені, що хочете видалити цей канал?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -200,6 +201,7 @@
"Assistant": "Асистент",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -222,6 +224,13 @@
"AUTOMATIC1111 Base URL": "URL-адреса AUTOMATIC1111",
"AUTOMATIC1111 Base URL is required.": "Необхідна URL-адреса AUTOMATIC1111.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Список доступності",
"Available models": "",
"Available Tools": "",
@@ -252,6 +261,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Підсилення або штрафування конкретних токенів для обмежених відповідей. Значення зміщення будуть обмежені між -100 і 100 (включно). (За замовчуванням: відсутнє)",
"Brave": "",
"Brave Search API Key": "Ключ API пошуку Brave",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -385,6 +395,7 @@
"Concurrent Requests": "Одночасні запити",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "Налаштувати",
"Confirm": "Підтвердити",
"Confirm Password": "Підтвердіть пароль",
@@ -454,6 +465,7 @@
"Create new secret key": "Створити новий секретний ключ",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Створено у",
"Created At": "Створено у",
@@ -475,6 +487,7 @@
"Data Controls": "",
"Database": "База даних",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "Грудень",
@@ -505,6 +518,7 @@
"Delete All": "",
"Delete All Chats": "Видалити усі чати",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Видалити чат",
"Delete chat?": "Видалити чат?",
"Delete File": "",
@@ -649,6 +663,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Модель вбудовування",
"Embedding Model Engine": "Рушій моделі вбудовування ",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -740,6 +755,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Введіть URL проксі (напр., https://user:password@host:port)",
"Enter reasoning effort": "Введіть зусилля на міркування",
"Enter Score": "Введіть бал",
@@ -764,6 +780,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "Введіть ключ API Tavily",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Введіть публічний URL вашого WebUI. Цей URL буде використовуватися для генерування посилань у сповіщеннях.",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -803,6 +820,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Помилка доступу до Google Drive: {{error}}",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "Помилка завантаження файлу: {{error}}",
@@ -820,6 +838,7 @@
"Execute code": "",
"Execute code for analysis": "Виконати код для аналізу",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "Розгорнути",
"Experimental": "Експериментальне",
"Explain": "Пояснити",
@@ -1083,6 +1102,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Встановіть з URL-адреси Github",
"Instant Auto-Send After Voice Transcription": "Миттєва автоматична відправка після транскрипції голосу",
"Instructions": "",
"Integration": "Інтеграція",
"Integrations": "",
"Interface": "Інтерфейс",
@@ -1142,6 +1162,7 @@
"Last 90 days": "",
"Last Active": "Остання активність",
"Last Modified": "Востаннє змінено",
"Last ran": "",
"Last reply": "Остання відповідь",
"LDAP": "LDAP",
"LDAP server updated": "Сервер LDAP оновлено",
@@ -1248,6 +1269,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Модель '{{modelName}}' успішно завантажено.",
"Model '{{modelTag}}' is already in queue for downloading.": "Модель '{{modelTag}}' вже знаходиться в черзі на завантаження.",
"Model {{modelId}} not found": "Модель {{modelId}} не знайдено",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Модель {{modelName}} не здатна бачити",
"Model {{name}} is now {{status}}": "Модель {{name}} тепер має {{status}}",
"Model {{name}} is now hidden": "Модель {{name}} тепер схована",
@@ -1297,8 +1319,11 @@
"Name": "Ім'я",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Назвіть вашу базу знань",
"Name, prompt, and model are required": "",
"Native": "Рідний",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Новий чат",
"New File": "",
@@ -1317,9 +1342,11 @@
"New Webhook": "",
"new-channel": "новий-канал",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1330,6 +1357,7 @@
"No data": "",
"No data found": "",
"No distance available": "Відстань недоступна",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Файл не обрано",
@@ -1376,6 +1404,7 @@
"Not factually correct": "Не відповідає дійсності",
"Not helpful": "Не корисно",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Примітка: Якщо ви встановите мінімальну кількість балів, пошук поверне лише документи з кількістю балів, більшою або рівною мінімальній кількості балів.",
@@ -1449,6 +1478,7 @@
"or": "або",
"Ordered List": "",
"Other": "Інше",
"out of": "",
"Output": "",
"OUTPUT": "ВИХІД",
"Output format": "Формат відповіді",
@@ -1464,6 +1494,7 @@
"Password": "Пароль",
"Passwords do not match.": "",
"Paste Large Text as File": "Вставити великий текст як файл",
"Paused": "",
"PDF document (.pdf)": "PDF документ (.pdf)",
"PDF Extract Images (OCR)": "Розпізнавання зображень з PDF (OCR)",
"PDF Loader Mode": "",
@@ -1568,6 +1599,7 @@
"Reason": "",
"Reasoning Effort": "Зусилля на міркування",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "Записати голос",
"Redirecting you to Open WebUI Community": "Перенаправляємо вас до спільноти OpenWebUI",
@@ -1603,6 +1635,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Переставити моделі",
"Repeats": "",
"Reply": "",
"Reply in Thread": "Відповісти в потоці",
"Reply to thread...": "",
@@ -1637,6 +1670,8 @@
"RTL": "RTL",
"Run": "Запустити",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Виконується",
"Running...": "Виконується...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1647,12 +1682,15 @@
"Save Chat": "",
"Saved": "Збережено",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Збереження журналів чату безпосередньо в сховище вашого браузера більше не підтримується. Будь ласка, завантажте та видаліть журнали чату, натиснувши кнопку нижче. Не хвилюйтеся, ви можете легко повторно імпортувати журнали чату до бекенду через",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Пошук",
"Search a model": "Шукати модель",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "База пошуку",
"Search channels and channel messages": "",
"Search Chats": "Пошук в чатах",
@@ -1722,6 +1760,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Вибрати знання",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Оберіть лише одну модель для виклику",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1831,6 +1870,7 @@
"Start of the channel": "Початок каналу",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1881,8 +1921,10 @@
"Talk to Model": "",
"Tap to interrupt": "Натисніть, щоб перервати",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "Завдання",
"tasks completed": "",
"Tavily API Key": "Ключ API Tavily",
"Tavily Extract Depth": "",
"Tell us more:": "Розкажи нам більше:",
@@ -1949,6 +1991,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Потрібна URL-адреса сервера Tika.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Заголовок",
@@ -1966,6 +2009,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Щоб обрати тут набори інструментів, спочатку додайте їх до робочої області \"Інструменти\".",
"Toast notifications for new updates": "Сповіщення Toast про нові оновлення",
"Today": "Сьогодні",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2104,6 +2148,7 @@
"Waiting for upload...": "",
"Warning": "Увага!",
"Warning:": "Увага:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Попередження: Увімкнення цього дозволить користувачам завантажувати довільний код на сервер.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Попередження: Виконання коду в Jupyter дозволяє виконувати任 будь-який код, що становить серйозні ризики для безпеки — дійте з крайньою обережністю.",
"Web": "Веб",
@@ -2138,6 +2183,7 @@
"Width": "",
"Wikipedia": "",
"Won": "Переможець",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Працює разом із top-k. Вищий показник (напр., 0.95) призведе до більш різноманітного тексту, тоді як нижчий показник (напр., 0.5) згенерує більш сфокусований та консервативний текст.",
"Workspace": "Робочий простір",
"Workspace Permissions": "Дозволи робочого простору.",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "اسسٹنٹ",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 بنیادی URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 بنیادی URL درکار ہے",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "دستیاب فہرست",
"Available models": "",
"Available Tools": "",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
"Brave": "",
"Brave Search API Key": "بریو سرچ API کلید",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "ہم وقت درخواستیں",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "",
"Confirm": "تصدیق کریں",
"Confirm Password": "پاس ورڈ کی توثیق کریں",
@@ -452,6 +463,7 @@
"Create new secret key": "نیا خفیہ کلید بنائیں",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "پر بنایا گیا",
"Created At": "بنایا گیا:",
@@ -473,6 +485,7 @@
"Data Controls": "",
"Database": "ڈیٹا بیس",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "دسمبر",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "تمام چیٹس حذف کریں",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "چیٹ حذف کریں",
"Delete chat?": "چیٹ حذف کریں؟",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "ایمبیڈنگ ماڈل",
"Embedding Model Engine": "ایمبیڈنگ ماڈل انجن",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "",
"Enter reasoning effort": "",
"Enter Score": "درجہ درج کریں",
@@ -762,6 +778,7 @@
"Enter system prompt here": "",
"Enter Tavily API Key": "Tavily API کلید درج کریں",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "",
"Executing **{{NAME}}**...": "",
"Execution Logs": "",
"Expand": "",
"Experimental": "تجرباتی",
"Explain": "",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "گِٹ حب یو آر ایل سے انسٹال کریں",
"Instant Auto-Send After Voice Transcription": "آواز کی نقل کے بعد فوری خودکار بھیجنا",
"Instructions": "",
"Integration": "",
"Integrations": "",
"Interface": "انٹرفیس",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "آخری سرگرمی",
"Last Modified": "آخری ترمیم",
"Last ran": "",
"Last reply": "",
"LDAP": "",
"LDAP server updated": "",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "ماڈل '{{modelName}}' کامیابی سے ڈاؤن لوڈ ہو گیا ہے",
"Model '{{modelTag}}' is already in queue for downloading.": "ماڈل '{{modelTag}}' پہلے ہی ڈاؤن لوڈ کے لیے قطار میں ہے",
"Model {{modelId}} not found": "ماڈل {{modelId}} نہیں ملا",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "ماڈل {{modelName}} بصری صلاحیت نہیں رکھتا",
"Model {{name}} is now {{status}}": "ماڈل {{name}} اب {{status}} ہے",
"Model {{name}} is now hidden": "",
@@ -1295,8 +1317,11 @@
"Name": "نام",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "",
"Name, prompt, and model are required": "",
"Native": "",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "نئی بات چیت",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "فاصلہ دستیاب نہیں ہے",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "کوئی فائل منتخب نہیں کی گئی",
@@ -1374,6 +1402,7 @@
"Not factually correct": "حقیقت کے مطابق نہیں ہے",
"Not helpful": "مددگار نہیں ہے",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "نوٹ: اگر آپ کم از کم سکور سیٹ کرتے ہیں، تو تلاش صرف ان دستاویزات کو واپس کرے گی جن کا سکور کم از کم سکور کے برابر یا اس سے زیادہ ہوگا",
@@ -1447,6 +1476,7 @@
"or": "یا",
"Ordered List": "",
"Other": "دیگر",
"out of": "",
"Output": "",
"OUTPUT": "آؤٹ پٹ",
"Output format": "آؤٹ پٹ فارمیٹ",
@@ -1462,6 +1492,7 @@
"Password": "پاس ورڈ",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Paused": "",
"PDF document (.pdf)": "پی ڈی ایف دستاویز (.pdf)",
"PDF Extract Images (OCR)": "پی ڈی ایف سے تصاویر نکالیں (او سی آر)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "صوت ریکارڈ کریں",
"Redirecting you to Open WebUI Community": "آپ کو اوپن ویب یو آئی کمیونٹی کی طرف ری ڈائریکٹ کیا جا رہا ہے",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "",
"Repeats": "",
"Reply": "",
"Reply in Thread": "",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "آر ٹی ایل",
"Run": "چلائیں",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "چل رہا ہے",
"Running...": "چل رہا ہے...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "",
"Saved": "محفوظ شدہ",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "براہ کرم اپنے براؤزر کے اسٹوریج میں چیٹ لاگز کو محفوظ کرنا اب تعاون یافتہ نہیں ہے براہ کرم نیچے دیئے گئے بٹن پر کلک کرکے اپنے چیٹ لاگز کو ڈاؤن لوڈ اور حذف کریں فکر نہ کریں، آپ اپنے چیٹ لاگز کو بیک اینڈ میں دوبارہ آسانی سے درآمد کر سکتے ہیں",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "تلاش کریں",
"Search a model": "ماڈل تلاش کریں",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "",
"Search channels and channel messages": "",
"Search Chats": "چیٹس تلاش کریں",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "علم منتخب کریں",
"Select Method": "",
"Select model": "",
"Select only one model to call": "صرف ایک ماڈل کو کال کرنے کے لئے منتخب کریں",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "چینل کی شروعات",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "رکنے کے لئے ٹچ کریں",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "",
"tasks completed": "",
"Tavily API Key": "ٹاویلی API کلید",
"Tavily Extract Depth": "",
"Tell us more:": "ہمیں مزید بتائیں:",
@@ -1945,6 +1987,7 @@
"Tika": "ٹیکہ",
"Tika Server URL required.": "ٹکا سرور یو آر ایل درکار ہے",
"Tiktoken": "ٹک ٹوکن",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "عنوان",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "یہاں ٹول کٹس منتخب کرنے کے لیے، پہلے انہیں \"ٹولز\" ورک اسپیس میں شامل کریں",
"Toast notifications for new updates": "نئے اپڈیٹس کے لئے ٹوسٹ نوٹیفیکیشنز",
"Today": "آج",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "انتباہ",
"Warning:": "انتباہ:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "",
"Web": "ویب",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "جیتا",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
"Workspace": "ورک اسپیس",
"Workspace Permissions": "",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "Ҳақиқатан ҳам барча хотираларни тозаламоқчимисиз? Бу амални ортга қайтариб бўлмайди.",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Ҳақиқатан ҳам бу канални ўчириб ташламоқчимисиз?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "Ёрдамчи",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 базавий манзил",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 базавий манзил талаб қилинади.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Мавжуд рўйхат",
"Available models": "",
"Available Tools": "Мавжуд асбоблар",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Чекланган жавоблар учун махсус токенларни кучайтириш ёки жазолаш. Йўналтирилган қийматлар -100 ва 100 (шу жумладан) оралиғида маҳкамланади. (Бирламчи: йўқ)",
"Brave": "",
"Brave Search API Key": "Brave Search API Key",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Бир вақтнинг ўзида сўровлар",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "Созланг",
"Confirm": "Тасдиқланг",
"Confirm Password": "Паролни тасдиқланг",
@@ -452,6 +463,7 @@
"Create new secret key": "Янги махфий калит яратинг",
"Create note": "",
"Create Note": "Эслатма яратиш",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Қуйидаги ортиқча тугмасини босиш орқали биринчи қайдингизни яратинг.",
"Created at": "Яратилган",
"Created At": "Яратилган",
@@ -473,6 +485,7 @@
"Data Controls": "",
"Database": "Маълумотлар базаси",
"Datalab Marker API": "Datalab Marker API",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "декабр",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "Барча суҳбатларни ўчириш",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Чатни ўчириш",
"Delete chat?": "Чат ўчирилсинми?",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Ўрнатиш модели",
"Embedding Model Engine": "Двигател моделини ўрнатиш",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "Perplexity WebSocket УРЛ манзилини киритинг",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Прокси-сервернинг УРЛ манзилини киритинг (масалан, ҳттпс://усер:пассwорд@ҳост:порт)",
"Enter reasoning effort": "Фикрлаш ҳаракатини киритинг",
"Enter Score": "Бални киритинг",
@@ -762,6 +778,7 @@
"Enter system prompt here": "Бу эрда тизим сўровини киритинг",
"Enter Tavily API Key": "Тавилй АПИ калитини киритинг",
"Enter Tavily Extract Depth": "Тавилй экстракти чуқурлигини киритинг",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "WебУИ нинг умумий УРЛ манзилини киритинг. Бу УРЛ билдиришномаларда ҳаволалар яратиш учун ишлатилади.",
"Enter the URL of the function to import": "Импорт қилинадиган функсиянинг УРЛ манзилини киритинг",
"Enter the URL to import": "Импорт қилиш учун УРЛ манзилини киритинг",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Гоогле Дриве-га киришда хатолик юз берди: {{error}}",
"Error accessing media devices.": "Медиа қурилмаларига киришда хатолик юз берди.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Ёзишни бошлашда хатолик юз берди.",
"Error unloading model: {{error}}": "Моделни юклашда хатолик юз берди: {{error}}",
"Error uploading file: {{error}}": "Файлни юклашда хатолик юз берди: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "Таҳлил қилиш учун кодни бажаринг",
"Executing **{{NAME}}**...": "**{{NAME}}** бажарилмоқда...",
"Execution Logs": "",
"Expand": "Кенгайтириш",
"Experimental": "Экспериментал",
"Explain": "Тушунтириш",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Гитҳуб УРЛ манзилидан ўрнатинг",
"Instant Auto-Send After Voice Transcription": "Овозли транскрипсиядан кейин дарҳол автоматик юбориш",
"Instructions": "",
"Integration": "Интеграция",
"Integrations": "",
"Interface": "Интерфейс",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "Охирги фаол",
"Last Modified": "Охирги таҳрирланган",
"Last ran": "",
"Last reply": "Охирги жавоб",
"LDAP": "LDAP",
"LDAP server updated": "LDAP сервери янгиланди",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "“{{modelName}}” модели юклаб олинди.",
"Model '{{modelTag}}' is already in queue for downloading.": "“{{modelTag}}” модели аллақачон юклаб олиш учун навбатда турибди.",
"Model {{modelId}} not found": "{{modelId}} модели топилмади",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "{{modelName}} модели кўриш қобилиятига эга эмас",
"Model {{name}} is now {{status}}": "{{name}} модели энди {{status}}",
"Model {{name}} is now hidden": "{{name}} модели энди яширин",
@@ -1295,8 +1317,11 @@
"Name": "Исм",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Билимлар базасини номланг",
"Name, prompt, and model are required": "",
"Native": "Маҳаллий",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Янги чат",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "янги канал",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "Бу фойдаланувчи учун ҳеч қандай чат топилмади.",
"No chats found.": "Ҳеч қандай чат топилмади.",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "Масофа мавжуд эмас",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Ҳеч қандай файл танланмаган",
@@ -1374,6 +1402,7 @@
"Not factually correct": "Аслида тўғри эмас",
"Not helpful": "Фойдали эмас",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "Эслатма муваффақиятли ўчирилди",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Эслатма: Агар сиз минимал балл қўйсангиз, қидирув фақат минимал баллдан каттароқ ёки унга тенг баллга эга ҳужжатларни қайтаради.",
@@ -1447,6 +1476,7 @@
"or": "ёки",
"Ordered List": "",
"Other": "Бошқа",
"out of": "",
"Output": "",
"OUTPUT": "Чиқиш",
"Output format": "Чиқиш формати",
@@ -1462,6 +1492,7 @@
"Password": "Парол",
"Passwords do not match.": "",
"Paste Large Text as File": "Катта матнни файл сифатида жойлаштиринг",
"Paused": "",
"PDF document (.pdf)": "ПДФ ҳужжат (.pdf)",
"PDF Extract Images (OCR)": "ПДФ экстракти расмлари (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "Мулоҳаза юритиш ҳаракатлари",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "Ёзиб олиш",
"Record voice": "Овозни ёзиб олинг",
"Redirecting you to Open WebUI Community": "Сизни Опен WебУИ ҳамжамиятига йўналтирмоқда",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Моделларни қайта тартиблаш",
"Repeats": "",
"Reply": "",
"Reply in Thread": "Мавзуда жавоб беринг",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "Ишга тушириш",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Ишлаётган",
"Running...": "Ишлаётган...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "",
"Saved": "Сақланган",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Чат журналларини бевосита браузерингиз хотирасига сақлаш энди қўллаб-қувватланмайди. Қуйидаги тугмани босиш орқали суҳбат журналларингизни юклаб олинг ва ўчиринг. Хавотир олманг, сиз чат журналларини баcкенд орқали осонгина қайта импорт қилишингиз мумкин",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Филиални ўзгартириш бўйича айлантиринг",
"Search": "Қидирув",
"Search a model": "Моделни қидиринг",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "Қидирув базаси",
"Search channels and channel messages": "",
"Search Chats": "Чатларни қидириш",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Билим-ни танланг",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Қўнғироқ қилиш учун фақат битта моделни танланг",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Канал боши",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "Тўхтатиш учун босинг",
"Task List": "",
"Task Management": "",
"Task Model": "Вазифа модели",
"Tasks": "Вазифалар",
"tasks completed": "",
"Tavily API Key": "Tavily АПИ калити",
"Tavily Extract Depth": "Tavily экстракти чуқурлиги",
"Tell us more:": "Бизга кўпроқ маълумот беринг:",
@@ -1945,6 +1987,7 @@
"Tika": "Тика",
"Tika Server URL required.": "Тика Сервер УРЛ манзили талаб қилинади.",
"Tiktoken": "Тиктокен",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Сарлавҳа",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Бу ерда асбоблар тўпламини танлаш учун аввал уларни “Асбоблар” иш майдонига қўшинг.",
"Toast notifications for new updates": "Янги янгиланишлар ҳақида билдиришномалар",
"Today": "Бугун",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "Огоҳлантириш",
"Warning:": "Огоҳлантириш:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Огоҳлантириш: Буни ёқиш фойдаланувчиларга серверга ихтиёрий кодни юклаш имконини беради.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Огоҳлантириш: Жупйтер ижроси ўзбошимчалик билан код бажарилишини таъминлайди, бу хавфсизликка жиддий хавф туғдиради - жуда эҳтиёткорлик билан давом этинг.",
"Web": "Веб",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "Ғалаба қозонди",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "top-k билан бирга ишлайди. Юқори қиймат (масалан, 0,95) матннинг хилма-хиллигига олиб келади, пастроқ қиймат эса (масалан, 0,5) кўпроқ диққатли ва консерватив матнни яратади.",
"Workspace": "Иш майдони",
"Workspace Permissions": "Иш майдони рухсатномалари",
@@ -182,6 +182,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "Haqiqatan ham barcha xotiralarni tozalamoqchimisiz? Bu amalni ortga qaytarib bo‘lmaydi.",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Haqiqatan ham bu kanalni oʻchirib tashlamoqchimisiz?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -198,6 +199,7 @@
"Assistant": "Yordamchi",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -220,6 +222,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 asosiy URL",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 asosiy URL manzili talab qilinadi.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Mavjud ro'yxat",
"Available models": "",
"Available Tools": "Mavjud asboblar",
@@ -250,6 +259,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Cheklangan javoblar uchun maxsus tokenlarni kuchaytirish yoki jazolash. Yo'naltirilgan qiymatlar -100 va 100 (shu jumladan) oralig'ida mahkamlanadi. (Birlamchi: yo‘q)",
"Brave": "",
"Brave Search API Key": "Brave Search API kaliti",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -383,6 +393,7 @@
"Concurrent Requests": "Bir vaqtning o'zida so'rovlar",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "Sozlang",
"Confirm": "Tasdiqlang",
"Confirm Password": "Parolni tasdiqlang",
@@ -452,6 +463,7 @@
"Create new secret key": "Yangi maxfiy kalit yarating",
"Create note": "",
"Create Note": "Eslatma yaratish",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "Quyidagi ortiqcha tugmasini bosish orqali birinchi qaydingizni yarating.",
"Created at": "Yaratilgan",
"Created At": "Yaratilgan",
@@ -473,6 +485,7 @@
"Data Controls": "",
"Database": "Ma'lumotlar bazasi",
"Datalab Marker API": "Datalab Marker API",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "dekabr",
@@ -503,6 +516,7 @@
"Delete All": "",
"Delete All Chats": "Barcha suhbatlarni o'chirish",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Chatni oʻchirish",
"Delete chat?": "Chat oʻchirilsinmi?",
"Delete File": "",
@@ -647,6 +661,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "O'rnatish modeli",
"Embedding Model Engine": "Dvigatel modelini o'rnatish",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -738,6 +753,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "Dramaturg vaqtini kiriting",
"Enter Playwright WebSocket URL": "Playwright WebSocket URL manzilini kiriting",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Proksi-serverning URL manzilini kiriting (masalan, https://user:password@host:port)",
"Enter reasoning effort": "Fikrlash harakatini kiriting",
"Enter Score": "Balni kiriting",
@@ -762,6 +778,7 @@
"Enter system prompt here": "Bu erda tizim so'rovini kiriting",
"Enter Tavily API Key": "Tavily API kalitini kiriting",
"Enter Tavily Extract Depth": "Tavily ekstrakti chuqurligini kiriting",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "WebUI ning umumiy URL manzilini kiriting. Bu URL bildirishnomalarda havolalar yaratish uchun ishlatiladi.",
"Enter the URL of the function to import": "Import qilinadigan funksiyaning URL manzilini kiriting",
"Enter the URL to import": "Import qilish uchun URL manzilini kiriting",
@@ -801,6 +818,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Google Drive-ga kirishda xatolik yuz berdi: {{error}}",
"Error accessing media devices.": "Media qurilmalariga kirishda xatolik yuz berdi.",
"Error deleting model: {{error}}": "",
"Error starting recording.": "Yozishni boshlashda xatolik yuz berdi.",
"Error unloading model: {{error}}": "Modelni yuklashda xatolik yuz berdi: {{error}}",
"Error uploading file: {{error}}": "Faylni yuklashda xatolik yuz berdi: {{error}}",
@@ -818,6 +836,7 @@
"Execute code": "",
"Execute code for analysis": "Tahlil qilish uchun kodni bajaring",
"Executing **{{NAME}}**...": "**{{NAME}}** bajarilmoqda...",
"Execution Logs": "",
"Expand": "Kengaytirish",
"Experimental": "Eksperimental",
"Explain": "Tushuntirish",
@@ -1081,6 +1100,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Github URL manzilidan oʻrnating",
"Instant Auto-Send After Voice Transcription": "Ovozli transkripsiyadan keyin darhol avtomatik yuborish",
"Instructions": "",
"Integration": "Integratsiya",
"Integrations": "",
"Interface": "Interfeys",
@@ -1140,6 +1160,7 @@
"Last 90 days": "",
"Last Active": "Oxirgi faol",
"Last Modified": "Oxirgi tahrirlangan",
"Last ran": "",
"Last reply": "Oxirgi javob",
"LDAP": "LDAP",
"LDAP server updated": "LDAP serveri yangilandi",
@@ -1246,6 +1267,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "“{{modelName}}” modeli yuklab olindi.",
"Model '{{modelTag}}' is already in queue for downloading.": "“{{modelTag}}” modeli allaqachon yuklab olish uchun navbatda turibdi.",
"Model {{modelId}} not found": "{{modelId}} modeli topilmadi",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "{{modelName}} modeli ko'rish qobiliyatiga ega emas",
"Model {{name}} is now {{status}}": "{{name}} modeli endi {{status}}",
"Model {{name}} is now hidden": "{{name}} modeli endi yashirin",
@@ -1295,8 +1317,11 @@
"Name": "Ism",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Bilimlar bazasini nomlang",
"Name, prompt, and model are required": "",
"Native": "Mahalliy",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Yangi chat",
"New File": "",
@@ -1315,9 +1340,11 @@
"New Webhook": "",
"new-channel": "yangi kanal",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "Bu foydalanuvchi uchun hech qanday chat topilmadi.",
"No chats found.": "Hech qanday chat topilmadi.",
@@ -1328,6 +1355,7 @@
"No data": "",
"No data found": "",
"No distance available": "Masofa mavjud emas",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Hech qanday fayl tanlanmagan",
@@ -1374,6 +1402,7 @@
"Not factually correct": "Aslida to'g'ri emas",
"Not helpful": "Foydali emas",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "Eslatma muvaffaqiyatli oʻchirildi",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Eslatma: Agar siz minimal ball qo'ysangiz, qidiruv faqat minimal balldan kattaroq yoki unga teng ballga ega hujjatlarni qaytaradi.",
@@ -1447,6 +1476,7 @@
"or": "yoki",
"Ordered List": "",
"Other": "Boshqa",
"out of": "",
"Output": "",
"OUTPUT": "Chiqish",
"Output format": "Chiqish formati",
@@ -1462,6 +1492,7 @@
"Password": "Parol",
"Passwords do not match.": "",
"Paste Large Text as File": "Katta matnni fayl sifatida joylashtiring",
"Paused": "",
"PDF document (.pdf)": "PDF hujjat (.pdf)",
"PDF Extract Images (OCR)": "PDF ekstrakti rasmlari (OCR)",
"PDF Loader Mode": "",
@@ -1566,6 +1597,7 @@
"Reason": "",
"Reasoning Effort": "Mulohaza yuritish harakatlari",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "Yozib olish",
"Record voice": "Ovozni yozib oling",
"Redirecting you to Open WebUI Community": "Sizni Open WebUI hamjamiyatiga yoʻnaltirmoqda",
@@ -1601,6 +1633,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Modellarni qayta tartiblash",
"Repeats": "",
"Reply": "",
"Reply in Thread": "Mavzuda javob bering",
"Reply to thread...": "",
@@ -1633,6 +1666,8 @@
"RTL": "RTL",
"Run": "Yugurish",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Yugurish",
"Running...": "Yugurish...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1643,12 +1678,15 @@
"Save Chat": "",
"Saved": "Saqlangan",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Chat jurnallarini bevosita brauzeringiz xotirasiga saqlash endi qo‘llab-quvvatlanmaydi. Quyidagi tugmani bosish orqali suhbat jurnallaringizni yuklab oling va oʻchiring. Xavotir olmang, siz chat jurnallarini backend orqali osongina qayta import qilishingiz mumkin",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "Filialni o'zgartirish bo'yicha aylantiring",
"Search": "Qidiruv",
"Search a model": "Modelni qidiring",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "Qidiruv bazasi",
"Search channels and channel messages": "",
"Search Chats": "Chatlarni qidirish",
@@ -1718,6 +1756,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Bilim-ni tanlang",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Qo'ng'iroq qilish uchun faqat bitta modelni tanlang",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1827,6 +1866,7 @@
"Start of the channel": "Kanal boshlanishi",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1877,8 +1917,10 @@
"Talk to Model": "",
"Tap to interrupt": "To‘xtatish uchun bosing",
"Task List": "",
"Task Management": "",
"Task Model": "Vazifa modeli",
"Tasks": "Vazifalar",
"tasks completed": "",
"Tavily API Key": "Tavily API kaliti",
"Tavily Extract Depth": "Tavily ekstrakti chuqurligi",
"Tell us more:": "Bizga ko'proq ma'lumot bering:",
@@ -1945,6 +1987,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Tika Server URL manzili talab qilinadi.",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Sarlavha",
@@ -1962,6 +2005,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Bu yerda asboblar to‘plamini tanlash uchun avval ularni “Asboblar” ish maydoniga qo‘shing.",
"Toast notifications for new updates": "Yangi yangilanishlar haqida bildirishnomalar",
"Today": "Bugun",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2100,6 +2144,7 @@
"Waiting for upload...": "",
"Warning": "Ogohlantirish",
"Warning:": "Ogohlantirish:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Ogohlantirish: Buni yoqish foydalanuvchilarga serverga ixtiyoriy kodni yuklash imkonini beradi.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Ogohlantirish: Jupyter ijrosi o'zboshimchalik bilan kod bajarilishini ta'minlaydi, bu xavfsizlikka jiddiy xavf tug'diradi - juda ehtiyotkorlik bilan davom eting.",
"Web": "Veb",
@@ -2134,6 +2179,7 @@
"Width": "",
"Wikipedia": "",
"Won": "G'alaba qozondi",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Top-k bilan birga ishlaydi. Yuqori qiymat (masalan, 0,95) matnning xilma-xilligiga olib keladi, pastroq qiymat esa (masalan, 0,5) ko'proq diqqatli va konservativ matnni yaratadi.",
"Workspace": "Ish maydoni",
"Workspace Permissions": "Ish maydoni ruxsatnomalari",
@@ -181,6 +181,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "",
"Are you sure you want to clear all memories? This action cannot be undone.": "Bạn có chắc chắn muốn xóa tất cả bộ nhớ không? Hành động này không thể hoàn tác.",
"Are you sure you want to delete \"{{NAME}}\"?": "",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "",
"Are you sure you want to delete this channel?": "Bạn có chắc chắn muốn xóa kênh này không?",
"Are you sure you want to delete this connection? This action cannot be undone.": "",
@@ -197,6 +198,7 @@
"Assistant": "Trợ lý",
"Async Embedding Processing": "",
"Attach File From Knowledge": "",
"Attach Files": "",
"Attach Knowledge": "",
"Attach Notes": "",
"Attach Webpage": "",
@@ -219,6 +221,13 @@
"AUTOMATIC1111 Base URL": "Đường dẫn kết nối tới AUTOMATIC1111 (Base URL)",
"AUTOMATIC1111 Base URL is required.": "Base URL của AUTOMATIC1111 là bắt buộc.",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "Danh sách có sẵn",
"Available models": "",
"Available Tools": "Công cụ có sẵn",
@@ -249,6 +258,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Tăng cường hoặc phạt các token cụ thể cho các phản hồi bị ràng buộc. Giá trị bias sẽ được giới hạn trong khoảng từ -100 đến 100 (bao gồm). (Mặc định: không có)",
"Brave": "",
"Brave Search API Key": "Khóa API tìm kiếm dũng cảm",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "",
"Builtin Tools": "",
"Bullet List": "",
@@ -382,6 +392,7 @@
"Concurrent Requests": "Các truy vấn đồng thời",
"Config": "",
"Config imported successfully": "",
"Configuration": "",
"Configure": "Cấu hình",
"Confirm": "Xác nhận",
"Confirm Password": "Xác nhận Mật khẩu",
@@ -451,6 +462,7 @@
"Create new secret key": "Tạo key bí mật mới",
"Create note": "",
"Create Note": "",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "",
"Created at": "Được tạo vào lúc",
"Created At": "Tạo lúc",
@@ -472,6 +484,7 @@
"Data Controls": "",
"Database": "Cơ sở dữ liệu",
"Datalab Marker API": "",
"Day": "",
"DD/MM/YYYY": "",
"DDGS Backend": "",
"December": "Tháng 12",
@@ -502,6 +515,7 @@
"Delete All": "",
"Delete All Chats": "Xóa mọi cuộc Chat",
"Delete all contents inside this folder": "",
"Delete automation?": "",
"Delete Chat": "Xóa chat",
"Delete chat?": "Xóa chat?",
"Delete File": "",
@@ -646,6 +660,7 @@
"Embedding Concurrent Requests": "",
"Embedding Model": "Mô hình embedding",
"Embedding Model Engine": "Trình xử lý embedding",
"Emojis": "",
"Empty message": "",
"Enable All": "",
"Enable API Keys": "",
@@ -737,6 +752,7 @@
"Enter Perplexity Search API URL": "",
"Enter Playwright Timeout": "",
"Enter Playwright WebSocket URL": "",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "Nhập URL proxy (vd: https://user:password@host:port)",
"Enter reasoning effort": "Nhập nỗ lực suy luận",
"Enter Score": "Nhập Score",
@@ -761,6 +777,7 @@
"Enter system prompt here": "Nhập system prompt tại đây",
"Enter Tavily API Key": "Nhập Tavily API Key",
"Enter Tavily Extract Depth": "",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "Nhập URL công khai của WebUI của bạn. URL này sẽ được sử dụng để tạo liên kết trong các thông báo.",
"Enter the URL of the function to import": "",
"Enter the URL to import": "",
@@ -800,6 +817,7 @@
"Error accessing directory": "",
"Error accessing Google Drive: {{error}}": "Lỗi truy cập Google Drive: {{error}}",
"Error accessing media devices.": "",
"Error deleting model: {{error}}": "",
"Error starting recording.": "",
"Error unloading model: {{error}}": "",
"Error uploading file: {{error}}": "Lỗi tải lên tệp: {{error}}",
@@ -817,6 +835,7 @@
"Execute code": "",
"Execute code for analysis": "Thực thi mã để phân tích",
"Executing **{{NAME}}**...": "Đang thực thi **{{NAME}}**...",
"Execution Logs": "",
"Expand": "Mở rộng",
"Experimental": "Thử nghiệm",
"Explain": "Giải thích",
@@ -1080,6 +1099,7 @@
"Insert Suggestion Prompt to Input": "",
"Install from Github URL": "Cài đặt từ URL Github",
"Instant Auto-Send After Voice Transcription": "Tự động gửi ngay lập tức sau khi phiên dịch giọng nói",
"Instructions": "",
"Integration": "Tích hợp",
"Integrations": "",
"Interface": "Giao diện",
@@ -1139,6 +1159,7 @@
"Last 90 days": "",
"Last Active": "Truy cập gần nhất",
"Last Modified": "Lần sửa gần nhất",
"Last ran": "",
"Last reply": "Trả lời cuối",
"LDAP": "LDAP",
"LDAP server updated": "Đã cập nhật máy chủ LDAP",
@@ -1245,6 +1266,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "Mô hình '{{modelName}}' đã được tải xuống thành công.",
"Model '{{modelTag}}' is already in queue for downloading.": "Mô hình '{{modelTag}}' đã có trong hàng đợi để tải xuống.",
"Model {{modelId}} not found": "Không tìm thấy Mô hình {{modelId}}",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} không có khả năng nhìn",
"Model {{name}} is now {{status}}": "Model {{name}} bây giờ là {{status}}",
"Model {{name}} is now hidden": "Mô hình {{name}} hiện đã bị ẩn",
@@ -1294,8 +1316,11 @@
"Name": "Tên",
"Name and ID are required, please fill them out": "",
"Name your knowledge base": "Đặt tên cho cơ sở kiến thức của bạn",
"Name, prompt, and model are required": "",
"Native": "Gốc",
"Never": "",
"New": "",
"New Automation": "",
"New Button": "",
"New Chat": "Tạo chat mới",
"New File": "",
@@ -1314,9 +1339,11 @@
"New Webhook": "",
"new-channel": "kênh-mới",
"Next message": "",
"Next run": "",
"No access grants. Private to you.": "",
"No activity data": "",
"No authentication": "",
"No automations found": "",
"No chats found": "",
"No chats found for this user.": "",
"No chats found.": "",
@@ -1327,6 +1354,7 @@
"No data": "",
"No data found": "",
"No distance available": "Không có khoảng cách khả dụng",
"No execution logs available yet": "",
"No expiration can pose security risks.": "",
"No feedback found": "",
"No file selected": "Chưa có tệp nào được chọn",
@@ -1373,6 +1401,7 @@
"Not factually correct": "Không chính xác so với thực tế",
"Not helpful": "Không hữu ích",
"Not Registered": "",
"Not scheduled": "",
"Note": "",
"Note deleted successfully": "",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Lưu ý: Nếu bạn đặt điểm (Score) tối thiểu thì tìm kiếm sẽ chỉ trả về những tài liệu có điểm lớn hơn hoặc bằng điểm tối thiểu.",
@@ -1446,6 +1475,7 @@
"or": "hoặc",
"Ordered List": "",
"Other": "Khác",
"out of": "",
"Output": "",
"OUTPUT": "ĐẦU RA",
"Output format": "Định dạng đầu ra",
@@ -1461,6 +1491,7 @@
"Password": "Mật khẩu",
"Passwords do not match.": "",
"Paste Large Text as File": "Dán Văn bản Lớn dưới dạng Tệp",
"Paused": "",
"PDF document (.pdf)": "Tập tin PDF (.pdf)",
"PDF Extract Images (OCR)": "Trích xuất ảnh từ PDF (OCR)",
"PDF Loader Mode": "",
@@ -1565,6 +1596,7 @@
"Reason": "",
"Reasoning Effort": "Nỗ lực Suy luận",
"Reasoning Tags": "",
"Recently Used": "",
"Record": "",
"Record voice": "Ghi âm",
"Redirecting you to Open WebUI Community": "Đang chuyển hướng bạn đến Cộng đồng OpenWebUI",
@@ -1600,6 +1632,7 @@
"Renamed to {{name}}": "",
"Render Markdown in Previews": "",
"Reorder Models": "Sắp xếp lại Mô hình",
"Repeats": "",
"Reply": "",
"Reply in Thread": "Trả lời trong Luồng",
"Reply to thread...": "",
@@ -1631,6 +1664,8 @@
"RTL": "RTL",
"Run": "Thực hiện",
"Run All": "",
"Run now": "",
"Run Now": "",
"Running": "Đang chạy",
"Running...": "Đang chạy...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "",
@@ -1641,12 +1676,15 @@
"Save Chat": "",
"Saved": "Đã lưu",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Không còn hỗ trợ lưu trữ lịch sử chat trực tiếp vào bộ nhớ trình duyệt của bạn. Vui lòng dành thời gian để tải xuống và xóa lịch sử chat của bạn bằng cách nhấp vào nút bên dưới. Đừng lo lắng, bạn có thể dễ dàng nhập lại lịch sử chat của mình vào backend thông qua",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "",
"Search": "Tìm kiếm",
"Search a model": "Tìm model",
"Search all emojis": "",
"Search and manage user memories": "",
"Search and view user chat history": "",
"Search Automations": "",
"Search Base": "Cơ sở Tìm kiếm",
"Search channels and channel messages": "",
"Search Chats": "Tìm kiếm các cuộc Chat",
@@ -1716,6 +1754,7 @@
"Select how to split message text for TTS requests": "",
"Select Knowledge": "Chọn Kiến thức",
"Select Method": "",
"Select model": "",
"Select only one model to call": "Chọn model để gọi",
"Select view": "",
"Selected model: {{modelName}}": "",
@@ -1825,6 +1864,7 @@
"Start of the channel": "Đầu kênh",
"Start Tag": "",
"Starting kernel...": "",
"State": "",
"Status": "",
"Status cleared successfully": "",
"Status updated successfully": "",
@@ -1875,8 +1915,10 @@
"Talk to Model": "",
"Tap to interrupt": "Chạm để ngừng",
"Task List": "",
"Task Management": "",
"Task Model": "",
"Tasks": "Tác vụ",
"tasks completed": "",
"Tavily API Key": "Khóa API Tavily",
"Tavily Extract Depth": "",
"Tell us more:": "Hãy cho chúng tôi hiểu thêm về chất lượng của câu trả lời:",
@@ -1943,6 +1985,7 @@
"Tika": "Tika",
"Tika Server URL required.": "Bắt buộc phải nhập URL cho Tika Server ",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "",
"Timeout": "",
"Title": "Tiêu đề",
@@ -1960,6 +2003,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "Để chọn các tookits, bạn phải thêm chúng vào workspace \"Tools\" trước.",
"Toast notifications for new updates": "Thông báo nhanh cho các cập nhật mới",
"Today": "Hôm nay",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "",
"Toggle {{COUNT}} sources": "",
"Toggle 1 source": "",
@@ -2098,6 +2142,7 @@
"Waiting for upload...": "",
"Warning": "Cảnh báo",
"Warning:": "Cảnh báo:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Cảnh báo: Bật tính năng này sẽ cho phép người dùng tải lên mã tùy ý trên máy chủ.",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "Cảnh báo: Thực thi Jupyter cho phép thực thi mã tùy ý, gây ra rủi ro bảo mật nghiêm trọng—hãy tiến hành hết sức thận trọng.",
"Web": "Web",
@@ -2132,6 +2177,7 @@
"Width": "",
"Wikipedia": "",
"Won": "Thắng",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Hoạt động cùng với top-k. Giá trị cao hơn (ví dụ: 0.95) sẽ dẫn đến văn bản đa dạng hơn, trong khi giá trị thấp hơn (ví dụ: 0.5) sẽ tạo ra văn bản tập trung và thận trọng hơn.",
"Workspace": "Không gian làm việc",
"Workspace Permissions": "Quyền Không gian làm việc",
@@ -181,6 +181,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "您确认要归档所有对话吗?此操作无法撤销。",
"Are you sure you want to clear all memories? This action cannot be undone.": "您确认要清除所有记忆吗?清除后无法还原。",
"Are you sure you want to delete \"{{NAME}}\"?": "您确认要删除“{{NAME}}”吗?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "您确认要删除所有对话吗?此操作无法撤销。",
"Are you sure you want to delete this channel?": "您确认要删除此频道吗?",
"Are you sure you want to delete this connection? This action cannot be undone.": "确定要删除此连接吗?此操作无法撤销。",
@@ -197,6 +198,7 @@
"Assistant": "助手",
"Async Embedding Processing": "异步嵌入处理",
"Attach File From Knowledge": "引用知识库中的文件",
"Attach Files": "",
"Attach Knowledge": "引用知识库",
"Attach Notes": "引用笔记",
"Attach Webpage": "引用网页",
@@ -219,6 +221,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 接口地址",
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 接口地址是必填项。",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "在原生函数调用模式下自动注入系统工具(例如时间戳、记忆、对话历史、笔记等)。",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "可用列表",
"Available models": "可用模型",
"Available Tools": "可用工具",
@@ -249,6 +258,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "为受限响应提升或惩罚特定标记。偏置值将被限制在 -100 到 100(包括两端)之间。(默认:无)",
"Brave": "Brave",
"Brave Search API Key": "Brave Search 接口密钥",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "浏览和查询知识库",
"Builtin Tools": "内置工具",
"Bullet List": "无序列表",
@@ -382,6 +392,7 @@
"Concurrent Requests": "并发请求",
"Config": "配置",
"Config imported successfully": "配置导入成功",
"Configuration": "",
"Configure": "配置",
"Confirm": "确认",
"Confirm Password": "确认密码",
@@ -451,6 +462,7 @@
"Create new secret key": "创建新安全密钥",
"Create note": "创建笔记",
"Create Note": "创建笔记",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "点击下面的加号按钮创建您的第一个笔记",
"Created at": "创建于",
"Created At": "创建于",
@@ -472,6 +484,7 @@
"Data Controls": "数据",
"Database": "数据库",
"Datalab Marker API": "Datalab Marker API",
"Day": "",
"DD/MM/YYYY": "DD/MM/YYYY",
"DDGS Backend": "DDGS 后端",
"December": "十二月",
@@ -502,6 +515,7 @@
"Delete All": "全部删除",
"Delete All Chats": "删除所有对话记录",
"Delete all contents inside this folder": "删除此分组内的所有内容",
"Delete automation?": "",
"Delete Chat": "删除对话记录",
"Delete chat?": "要删除此对话记录吗?",
"Delete File": "删除文件",
@@ -646,6 +660,7 @@
"Embedding Concurrent Requests": "嵌入并发请求数",
"Embedding Model": "嵌入模型",
"Embedding Model Engine": "嵌入模型引擎",
"Emojis": "",
"Empty message": "(空消息)",
"Enable All": "全部启用",
"Enable API Keys": "启用接口密钥",
@@ -737,6 +752,7 @@
"Enter Perplexity Search API URL": "输入 Perplexity Search 接口地址",
"Enter Playwright Timeout": "输入 Playwright 超时时间",
"Enter Playwright WebSocket URL": "输入 Playwright WebSocket 地址",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "输入代理地址(例如:https://用户名:密码@主机名:端口)",
"Enter reasoning effort": "输入推理努力",
"Enter Score": "输入评分",
@@ -761,6 +777,7 @@
"Enter system prompt here": "在这里输入系统提示词",
"Enter Tavily API Key": "输入 Tavily 接口密钥",
"Enter Tavily Extract Depth": "输入 Tavily 提取深度",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "输入 WebUI 的公共链接。此链接将用于在通知中生成链接",
"Enter the URL of the function to import": "输入要导入函数的链接",
"Enter the URL to import": "输入要导入的链接",
@@ -800,6 +817,7 @@
"Error accessing directory": "访问目录时出错",
"Error accessing Google Drive: {{error}}": "访问 Google 云端硬盘时出错:{{error}}",
"Error accessing media devices.": "访问媒体设备时出错。",
"Error deleting model: {{error}}": "",
"Error starting recording.": "开始录制时出错。",
"Error unloading model: {{error}}": "卸载模型时出错:{{error}}",
"Error uploading file: {{error}}": "上传文件时出错:{{error}}",
@@ -817,6 +835,7 @@
"Execute code": "执行代码",
"Execute code for analysis": "执行代码进行分析",
"Executing **{{NAME}}**...": "正在执行 **{{NAME}}**...",
"Execution Logs": "",
"Expand": "展开",
"Experimental": "实验性",
"Explain": "解释",
@@ -1080,6 +1099,7 @@
"Insert Suggestion Prompt to Input": "回填推荐提示词到输入框",
"Install from Github URL": "从 Github 链接安装",
"Instant Auto-Send After Voice Transcription": "语音转录文字后即时自动发送",
"Instructions": "",
"Integration": "集成",
"Integrations": "扩展功能",
"Interface": "界面",
@@ -1139,6 +1159,7 @@
"Last 90 days": "最近 90 天",
"Last Active": "最后在线时间",
"Last Modified": "最后修改时间",
"Last ran": "",
"Last reply": "最后回复",
"LDAP": "LDAP",
"LDAP server updated": "LDAP 服务器已更新",
@@ -1245,6 +1266,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "模型“{{modelName}}”已成功下载",
"Model '{{modelTag}}' is already in queue for downloading.": "模型“{{modelTag}}”已在下载队列中",
"Model {{modelId}} not found": "未找到模型 {{modelId}}",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "模型 {{modelName}} 不支持视觉能力",
"Model {{name}} is now {{status}}": "模型 {{name}} 现在是 {{status}}",
"Model {{name}} is now hidden": "模型 {{name}} 已隐藏",
@@ -1294,8 +1316,11 @@
"Name": "名称",
"Name and ID are required, please fill them out": "名称和 ID 是必填项,请填写。",
"Name your knowledge base": "为您的知识库命名",
"Name, prompt, and model are required": "",
"Native": "原生",
"Never": "",
"New": "最新",
"New Automation": "",
"New Button": "新按钮",
"New Chat": "新对话",
"New File": "新建文件",
@@ -1314,9 +1339,11 @@
"New Webhook": "新建 Webhook",
"new-channel": "新频道",
"Next message": "下一条消息",
"Next run": "",
"No access grants. Private to you.": "未共享给他人,仅你可访问。",
"No activity data": "没有活动数据",
"No authentication": "无身份验证",
"No automations found": "",
"No chats found": "未找到对话记录",
"No chats found for this user.": "未找到此用户的对话记录",
"No chats found.": "未找到对话记录",
@@ -1327,6 +1354,7 @@
"No data": "暂无数据",
"No data found": "未找到数据",
"No distance available": "没有可用距离",
"No execution logs available yet": "",
"No expiration can pose security risks.": "未设置 JWT 过期时间会导致安全风险。",
"No feedback found": "未找到反馈",
"No file selected": "未选中文件",
@@ -1373,6 +1401,7 @@
"Not factually correct": "与事实不符",
"Not helpful": "没有任何帮助",
"Not Registered": "未注册",
"Not scheduled": "",
"Note": "笔记",
"Note deleted successfully": "笔记删除成功",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "注意:如果设置了最低分数,搜索结果只会返回分数大于或等于最低分数的文档。",
@@ -1446,6 +1475,7 @@
"or": "或",
"Ordered List": "有序列表",
"Other": "其他",
"out of": "",
"Output": "输出",
"OUTPUT": "输出",
"Output format": "输出格式",
@@ -1461,6 +1491,7 @@
"Password": "密码",
"Passwords do not match.": "两次输入的密码不一致。",
"Paste Large Text as File": "粘贴大文本为文件",
"Paused": "",
"PDF document (.pdf)": "PDF 文档 (.pdf)",
"PDF Extract Images (OCR)": "PDF 图像提取(使用文字识别)",
"PDF Loader Mode": "PDF 加载模式",
@@ -1565,6 +1596,7 @@
"Reason": "推理",
"Reasoning Effort": "推理努力 (Reasoning Effort)",
"Reasoning Tags": "推理过程标签",
"Recently Used": "",
"Record": "录制",
"Record voice": "录音",
"Redirecting you to Open WebUI Community": "正在将您重定向到 Open WebUI 社区",
@@ -1600,6 +1632,7 @@
"Renamed to {{name}}": "已重命名为 {{name}}",
"Render Markdown in Previews": "在文件和引用预览中渲染 Markdown",
"Reorder Models": "重新排序模型",
"Repeats": "",
"Reply": "回复",
"Reply in Thread": "回复主题",
"Reply to thread...": "回复主题...",
@@ -1631,6 +1664,8 @@
"RTL": "从右至左",
"Run": "运行",
"Run All": "运行全部",
"Run now": "",
"Run Now": "",
"Running": "运行中",
"Running...": "运行中...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "并行运行嵌入任务以加快处理速度。如果遇到限速问题,请关闭此选项。",
@@ -1641,12 +1676,15 @@
"Save Chat": "保存对话",
"Saved": "已保存",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "我们不再支持将对话记录直接保存到浏览器的存储空间。请点击下面的按钮下载并删除您的对话记录。别担心,您可以轻松将对话记录重新导入到后台。",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "切换对话分支时滚动到最新回答",
"Search": "搜索",
"Search a model": "搜索模型",
"Search all emojis": "搜索 Emoji",
"Search and manage user memories": "搜索和管理用户记忆",
"Search and view user chat history": "搜索和查看用户对话历史",
"Search Automations": "",
"Search Base": "搜索库",
"Search channels and channel messages": "搜索频道和频道消息",
"Search Chats": "搜索对话",
@@ -1716,6 +1754,7 @@
"Select how to split message text for TTS requests": "选择消息文本拆分方法,用于 TTS 请求。",
"Select Knowledge": "选择知识",
"Select Method": "选择方法",
"Select model": "",
"Select only one model to call": "只允许选择一个模型进行语音通话",
"Select view": "选择视图",
"Selected model: {{modelName}}": "已选择:{{modelName}}",
@@ -1825,6 +1864,7 @@
"Start of the channel": "频道起点",
"Start Tag": "起始标签",
"Starting kernel...": "正在启动内核...",
"State": "",
"Status": "状态",
"Status cleared successfully": "状态已清除",
"Status updated successfully": "状态已更新",
@@ -1875,8 +1915,10 @@
"Talk to Model": "与模型对话",
"Tap to interrupt": "点击以中断",
"Task List": "任务列表",
"Task Management": "",
"Task Model": "任务模型",
"Tasks": "任务",
"tasks completed": "",
"Tavily API Key": "Tavily 接口密钥",
"Tavily Extract Depth": "Tavily 提取深度",
"Tell us more:": "请告诉我们更多细节",
@@ -1943,6 +1985,7 @@
"Tika": "Tika",
"Tika Server URL required.": "请输入 Tika 服务器接口地址",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "时间和计算",
"Timeout": "超时时间",
"Title": "标题",
@@ -1960,6 +2003,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "如需在这里选择工具包,请先将其添加到工作空间中的“工具”",
"Toast notifications for new updates": "检测到新版本时显示更新通知",
"Today": "今天",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "今天 {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "展开/收起 {{COUNT}} 个来源",
"Toggle 1 source": "展开/收起 1 个来源",
@@ -2098,6 +2142,7 @@
"Waiting for upload...": "正在等待上传…",
"Warning": "警告",
"Warning:": "警告:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "警告:启用此功能将允许用户在服务器上上传任意代码",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "警告:启用 Jupyter 执行将允许运行任意代码,存在严重安全风险——务必谨慎操作",
"Web": "网页",
@@ -2132,6 +2177,7 @@
"Width": "宽度",
"Wikipedia": "维基百科",
"Won": "更好",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "与 top-k 配合使用。较高的值(例如 0.95)将产生更加多样化的文本,而较低的值(例如 0.5)将产生更加聚焦和保守的文本。",
"Workspace": "工作空间",
"Workspace Permissions": "工作空间权限",
@@ -181,6 +181,7 @@
"Are you sure you want to archive all chats? This action cannot be undone.": "您確定要封存所有對話嗎?此操作無法復原。",
"Are you sure you want to clear all memories? This action cannot be undone.": "您確定要清除所有記憶嗎?此操作無法復原。",
"Are you sure you want to delete \"{{NAME}}\"?": "您確定要刪除「{{NAME}}」嗎?",
"Are you sure you want to delete **{{modelName}}**?": "",
"Are you sure you want to delete all chats? This action cannot be undone.": "您確定要刪除所有對話嗎?此操作無法復原。",
"Are you sure you want to delete this channel?": "您確定要刪除此頻道嗎?",
"Are you sure you want to delete this connection? This action cannot be undone.": "確定要刪除此連線嗎?此操作無法復原。",
@@ -197,6 +198,7 @@
"Assistant": "助理",
"Async Embedding Processing": "非同步嵌入處理",
"Attach File From Knowledge": "從知識庫附加檔案",
"Attach Files": "",
"Attach Knowledge": "附加知識庫",
"Attach Notes": "附加筆記",
"Attach Webpage": "附加網頁",
@@ -219,6 +221,13 @@
"AUTOMATIC1111 Base URL": "AUTOMATIC1111 基礎 URL",
"AUTOMATIC1111 Base URL is required.": "需要提供 AUTOMATIC1111 基礎 URL。",
"Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "在原生函式呼叫模式下自動加入系統工具(例如時間戳、記憶、對話歷史、筆記等)。",
"Automation": "",
"Automation created": "",
"Automation Name": "",
"Automation title": "",
"Automation triggered": "",
"Automation updated": "",
"Automations": "",
"Available list": "可用清單",
"Available models": "可用模型",
"Available Tools": "可用工具",
@@ -249,6 +258,7 @@
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "針對受限的回應,增強或懲罰特定 Token。偏差值將限制在 -100 到 100 (含)。 (預設:none)",
"Brave": "Brave",
"Brave Search API Key": "Brave 搜尋 API 金鑰",
"Break down complex requests into trackable steps": "",
"Browse and query knowledge bases": "瀏覽和查詢知識庫",
"Builtin Tools": "內建工具",
"Bullet List": "無序清單",
@@ -382,6 +392,7 @@
"Concurrent Requests": "平行請求",
"Config": "設定",
"Config imported successfully": "成功匯入設定",
"Configuration": "",
"Configure": "設定",
"Confirm": "確認",
"Confirm Password": "確認密碼",
@@ -451,6 +462,7 @@
"Create new secret key": "建立新的金鑰",
"Create note": "建立筆記",
"Create Note": "建立筆記",
"Create scheduled prompts that run automatically on a recurring basis.": "",
"Create your first note by clicking on the plus button below.": "點選下方加號按鈕建立您的第一則筆記。",
"Created at": "建立於",
"Created At": "建立於",
@@ -472,6 +484,7 @@
"Data Controls": "資料",
"Database": "資料庫",
"Datalab Marker API": "Datalab Marker API",
"Day": "",
"DD/MM/YYYY": "DD/MM/YYYY",
"DDGS Backend": "DDGS 後端",
"December": "12 月",
@@ -502,6 +515,7 @@
"Delete All": "全部刪除",
"Delete All Chats": "刪除所有對話紀錄",
"Delete all contents inside this folder": "刪除此資料夾內的所有內容",
"Delete automation?": "",
"Delete Chat": "刪除對話紀錄",
"Delete chat?": "刪除對話紀錄?",
"Delete File": "刪除檔案",
@@ -646,6 +660,7 @@
"Embedding Concurrent Requests": "嵌入並發請求數",
"Embedding Model": "嵌入模型",
"Embedding Model Engine": "嵌入模型引擎",
"Emojis": "",
"Empty message": "(空消息)",
"Enable All": "全部啟用",
"Enable API Keys": "啟用 API 金鑰",
@@ -737,6 +752,7 @@
"Enter Perplexity Search API URL": "輸入 Perplexity 搜尋 API URL",
"Enter Playwright Timeout": "輸入 Playwright 逾時時間(毫秒)",
"Enter Playwright WebSocket URL": "輸入 Playwright WebSocket URL",
"Enter prompt here.": "",
"Enter proxy URL (e.g. https://user:password@host:port)": "輸入代理程式 URL(例如:https://user:password@host:port)",
"Enter reasoning effort": "輸入推理程度",
"Enter Score": "輸入分數",
@@ -761,6 +777,7 @@
"Enter system prompt here": "在此輸入系統提示詞",
"Enter Tavily API Key": "輸入 Tavily API 金鑰",
"Enter Tavily Extract Depth": "輸入 Tavily 提取深度",
"Enter the prompt instructions for this automation...": "",
"Enter the public URL of your WebUI. This URL will be used to generate links in the notifications.": "請輸入您 WebUI 的公開 URL。此 URL 將用於在通知中產生連結。",
"Enter the URL of the function to import": "請輸入要匯入函式的 URL",
"Enter the URL to import": "輸入欲匯入的 URL",
@@ -800,6 +817,7 @@
"Error accessing directory": "存取目錄時發生錯誤",
"Error accessing Google Drive: {{error}}": "存取 Google Drive 時發生錯誤:{{error}}",
"Error accessing media devices.": "存取媒體裝置時發生錯誤。",
"Error deleting model: {{error}}": "",
"Error starting recording.": "啟動錄製時發生錯誤。",
"Error unloading model: {{error}}": "解除載入模型錯誤:{{error}}",
"Error uploading file: {{error}}": "上傳檔案時發生錯誤:{{error}}",
@@ -817,6 +835,7 @@
"Execute code": "執行程式碼",
"Execute code for analysis": "執行程式碼以進行分析",
"Executing **{{NAME}}**...": "正在執行 **{{NAME}}** ...",
"Execution Logs": "",
"Expand": "展開",
"Experimental": "實驗性功能",
"Explain": "解釋",
@@ -1080,6 +1099,7 @@
"Insert Suggestion Prompt to Input": "回填推薦提示詞內容到輸入框",
"Install from Github URL": "從 GitHub URL 安裝",
"Instant Auto-Send After Voice Transcription": "語音轉錄後立即自動傳送",
"Instructions": "",
"Integration": "整合",
"Integrations": "外掛功能",
"Interface": "介面",
@@ -1139,6 +1159,7 @@
"Last 90 days": "最近 90 天",
"Last Active": "最近活動時間",
"Last Modified": "上次修改時間",
"Last ran": "",
"Last reply": "上次回覆",
"LDAP": "LDAP",
"LDAP server updated": "LDAP 伺服器已更新",
@@ -1245,6 +1266,7 @@
"Model '{{modelName}}' has been successfully downloaded.": "模型「{{modelName}}」已成功下載。",
"Model '{{modelTag}}' is already in queue for downloading.": "模型「{{modelTag}}」已在下載佇列中。",
"Model {{modelId}} not found": "未找到模型 {{modelId}}",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "模型 {{modelName}} 不具備視覺能力",
"Model {{name}} is now {{status}}": "模型 {{name}} 現在狀態為 {{status}}",
"Model {{name}} is now hidden": "模型 {{name}} 已隱藏",
@@ -1294,8 +1316,11 @@
"Name": "名稱",
"Name and ID are required, please fill them out": "名稱和 ID 為必填項目,請填寫",
"Name your knowledge base": "命名您的知識庫",
"Name, prompt, and model are required": "",
"Native": "原生",
"Never": "",
"New": "最新",
"New Automation": "",
"New Button": "新按鈕",
"New Chat": "新增對話",
"New File": "新增檔案",
@@ -1314,9 +1339,11 @@
"New Webhook": "新增 Webhook",
"new-channel": "新頻道",
"Next message": "下一條訊息",
"Next run": "",
"No access grants. Private to you.": "未分享給他人,僅你可存取。",
"No activity data": "沒有活動資料",
"No authentication": "無身份驗證",
"No automations found": "",
"No chats found": "未找到對話記錄",
"No chats found for this user.": "未找到此使用者的對話記錄。",
"No chats found.": "未找到對話記錄。",
@@ -1327,6 +1354,7 @@
"No data": "暫無資料",
"No data found": "找不到資料",
"No distance available": "無可用距離",
"No execution logs available yet": "",
"No expiration can pose security risks.": "未設定 JWT 到期時間可能造成安全風險。",
"No feedback found": "未找到回饋",
"No file selected": "未選取檔案",
@@ -1373,6 +1401,7 @@
"Not factually correct": "與事實不符",
"Not helpful": "沒有幫助",
"Not Registered": "未註冊",
"Not scheduled": "",
"Note": "筆記",
"Note deleted successfully": "已成功刪除筆記",
"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "注意:如果您設定了最低分數,則搜尋只會回傳分數大於或等於最低分數的檔案。",
@@ -1446,6 +1475,7 @@
"or": "或",
"Ordered List": "有序清單",
"Other": "其他",
"out of": "",
"Output": "輸出",
"OUTPUT": "輸出",
"Output format": "輸出格式",
@@ -1461,6 +1491,7 @@
"Password": "密碼",
"Passwords do not match.": "兩次輸入的密碼不一致。",
"Paste Large Text as File": "將大型文字以檔案貼上",
"Paused": "",
"PDF document (.pdf)": "PDF 檔案 (.pdf)",
"PDF Extract Images (OCR)": "PDF 影像擷取(OCR 光學文字辨識)",
"PDF Loader Mode": "PDF 加載模式",
@@ -1565,6 +1596,7 @@
"Reason": "原因",
"Reasoning Effort": "推理程度",
"Reasoning Tags": "推理標籤",
"Recently Used": "",
"Record": "錄製",
"Record voice": "錄音",
"Redirecting you to Open WebUI Community": "正在將您重導向至 Open WebUI 社群",
@@ -1600,6 +1632,7 @@
"Renamed to {{name}}": "已重新命名為 {{name}}",
"Render Markdown in Previews": "在檔案與引用預覽中轉譯 Markdown",
"Reorder Models": "重新排序模型",
"Repeats": "",
"Reply": "回覆",
"Reply in Thread": "在討論串中回覆",
"Reply to thread...": "回覆討論串...",
@@ -1631,6 +1664,8 @@
"RTL": "從右到左",
"Run": "執行",
"Run All": "全部執行",
"Run now": "",
"Run Now": "",
"Running": "正在執行",
"Running...": "正在執行...",
"Runs embedding tasks concurrently to speed up processing. Turn off if rate limits become an issue.": "同時執行嵌入任務以加快處理速度。如果遇到速率限制問題,請關閉此功能。",
@@ -1641,12 +1676,15 @@
"Save Chat": "儲存對話",
"Saved": "已儲存",
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "不再支援直接將對話紀錄儲存到您的瀏覽器儲存空間。請點選下方按鈕來下載並刪除您的對話紀錄。別擔心,您可以透過以下方式輕鬆地將對話紀錄重新匯入後端",
"Schedule": "",
"Scheduled time must be in the future": "",
"Scroll On Branch Change": "切換分支時自動捲動",
"Search": "搜尋",
"Search a model": "搜尋模型",
"Search all emojis": "搜尋 Emoji 表情符號",
"Search and manage user memories": "搜尋和管理用戶記憶",
"Search and view user chat history": "搜尋和查看用戶對話歷史",
"Search Automations": "",
"Search Base": "搜尋基礎",
"Search channels and channel messages": "搜尋頻道和頻道消息",
"Search Chats": "搜尋對話",
@@ -1716,6 +1754,7 @@
"Select how to split message text for TTS requests": "選擇如何拆分訊息文字以用於 TTS 請求",
"Select Knowledge": "選擇知識庫",
"Select Method": "選擇方法",
"Select model": "",
"Select only one model to call": "僅選擇一個模型來呼叫",
"Select view": "選擇檢視",
"Selected model: {{modelName}}": "已選擇:{{modelName}}",
@@ -1825,6 +1864,7 @@
"Start of the channel": "頻道起點",
"Start Tag": "起始標籤",
"Starting kernel...": "正在啟動核心…",
"State": "",
"Status": "狀態",
"Status cleared successfully": "狀態已清除",
"Status updated successfully": "狀態已更新",
@@ -1875,8 +1915,10 @@
"Talk to Model": "與模型對話",
"Tap to interrupt": "點選以中斷",
"Task List": "工作清單",
"Task Management": "",
"Task Model": "任務模型",
"Tasks": "任務",
"tasks completed": "",
"Tavily API Key": "Tavily API 金鑰",
"Tavily Extract Depth": "Tavily 提取深度",
"Tell us more:": "告訴我們更多:",
@@ -1943,6 +1985,7 @@
"Tika": "Tika",
"Tika Server URL required.": "需要提供 Tika 伺服器 URL。",
"Tiktoken": "Tiktoken",
"Time": "",
"Time & Calculation": "時間和計算",
"Timeout": "逾時時間",
"Title": "標題",
@@ -1960,6 +2003,7 @@
"To select toolkits here, add them to the \"Tools\" workspace first.": "若要在此選擇工具包,請先將它們新增到「工具」工作區。",
"Toast notifications for new updates": "快顯通知新的更新",
"Today": "今天",
"Today at": "",
"Today at {{LOCALIZED_TIME}}": "今天 {{LOCALIZED_TIME}}",
"Toggle {{COUNT}} sources": "展開/收合 {{COUNT}} 個來源",
"Toggle 1 source": "展開/收合 1 個來源",
@@ -2098,6 +2142,7 @@
"Waiting for upload...": "等待上傳中…",
"Warning": "警告",
"Warning:": "警告:",
"Warning: Enabling this will allow users to run scheduled prompts automatically.": "",
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "警告:啟用此功能將允許使用者在伺服器上上傳任意程式碼。",
"Warning: Jupyter execution enables arbitrary code execution, posing severe security risks—proceed with extreme caution.": "警告:Jupyter 執行允許任意程式碼執行,構成嚴重安全風險 —— 請務必極度謹慎。",
"Web": "網頁",
@@ -2132,6 +2177,7 @@
"Width": "寬度",
"Wikipedia": "維基百科",
"Won": "獲勝",
"Working Directory": "",
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "與 top-k 一起使用。較高的值(例如:0.95)將產生更多樣化的文字,而較低的值(例如:0.5)將產生更集中且保守的文字。",
"Workspace": "工作區",
"Workspace Permissions": "工作區權限",
+1 -4
View File
@@ -165,10 +165,7 @@
};
onMount(async () => {
if (
$user?.role !== 'admin' &&
!($user?.permissions?.features?.automations ?? false)
) {
if ($user?.role !== 'admin' && !($user?.permissions?.features?.automations ?? false)) {
goto('/');
return;
}
@@ -18,10 +18,7 @@
$: automationId = $page.params.id;
onMount(async () => {
if (
$user?.role !== 'admin' &&
!($user?.permissions?.features?.automations ?? false)
) {
if ($user?.role !== 'admin' && !($user?.permissions?.features?.automations ?? false)) {
goto('/');
return;
}