mirror of
https://github.com/open-webui/open-webui.git
synced 2026-06-13 19:20:05 +00:00
chore: format
This commit is contained in:
@@ -125,9 +125,9 @@ def upgrade() -> None:
|
||||
# - yield_per: fetches rows in chunks via cursor.fetchmany() (all backends)
|
||||
# - stream_results: enables server-side cursors on PostgreSQL (no-op on SQLite)
|
||||
result = conn.execute(
|
||||
sa.select(chat_table.c.id, chat_table.c.user_id, chat_table.c.chat).where(
|
||||
~chat_table.c.user_id.like("shared-%")
|
||||
).execution_options(yield_per=1000, stream_results=True)
|
||||
sa.select(chat_table.c.id, chat_table.c.user_id, chat_table.c.chat)
|
||||
.where(~chat_table.c.user_id.like("shared-%"))
|
||||
.execution_options(yield_per=1000, stream_results=True)
|
||||
)
|
||||
|
||||
now = int(time.time())
|
||||
@@ -175,33 +175,39 @@ def upgrade() -> None:
|
||||
if timestamp < 1577836800 or timestamp > now + 86400:
|
||||
timestamp = now
|
||||
|
||||
messages_batch.append({
|
||||
"id": f"{chat_id}-{message_id}",
|
||||
"chat_id": chat_id,
|
||||
"user_id": user_id,
|
||||
"role": role,
|
||||
"parent_id": message.get("parentId"),
|
||||
"content": message.get("content"),
|
||||
"output": message.get("output"),
|
||||
"model_id": message.get("model"),
|
||||
"files": message.get("files"),
|
||||
"sources": message.get("sources"),
|
||||
"embeds": message.get("embeds"),
|
||||
"done": message.get("done", True),
|
||||
"status_history": message.get("statusHistory"),
|
||||
"error": message.get("error"),
|
||||
"usage": message.get("usage"),
|
||||
"created_at": timestamp,
|
||||
"updated_at": timestamp,
|
||||
})
|
||||
messages_batch.append(
|
||||
{
|
||||
"id": f"{chat_id}-{message_id}",
|
||||
"chat_id": chat_id,
|
||||
"user_id": user_id,
|
||||
"role": role,
|
||||
"parent_id": message.get("parentId"),
|
||||
"content": message.get("content"),
|
||||
"output": message.get("output"),
|
||||
"model_id": message.get("model"),
|
||||
"files": message.get("files"),
|
||||
"sources": message.get("sources"),
|
||||
"embeds": message.get("embeds"),
|
||||
"done": message.get("done", True),
|
||||
"status_history": message.get("statusHistory"),
|
||||
"error": message.get("error"),
|
||||
"usage": message.get("usage"),
|
||||
"created_at": timestamp,
|
||||
"updated_at": timestamp,
|
||||
}
|
||||
)
|
||||
|
||||
# Flush batch when full
|
||||
if len(messages_batch) >= BATCH_SIZE:
|
||||
inserted, failed = _flush_batch(conn, chat_message_table, messages_batch)
|
||||
inserted, failed = _flush_batch(
|
||||
conn, chat_message_table, messages_batch
|
||||
)
|
||||
total_inserted += inserted
|
||||
total_failed += failed
|
||||
if total_inserted % 50000 < BATCH_SIZE:
|
||||
log.info(f"Migration progress: {total_inserted} messages inserted...")
|
||||
log.info(
|
||||
f"Migration progress: {total_inserted} messages inserted..."
|
||||
)
|
||||
messages_batch.clear()
|
||||
|
||||
# Flush remaining messages
|
||||
|
||||
@@ -296,9 +296,7 @@ class ChatMessageTable:
|
||||
# (prevents duplicates across pages when timestamps tie)
|
||||
chat_ids = (
|
||||
query.group_by(ChatMessage.chat_id)
|
||||
.order_by(
|
||||
func.max(ChatMessage.created_at).desc(), ChatMessage.chat_id
|
||||
)
|
||||
.order_by(func.max(ChatMessage.created_at).desc(), ChatMessage.chat_id)
|
||||
.offset(skip)
|
||||
.limit(limit)
|
||||
.all()
|
||||
|
||||
@@ -129,7 +129,9 @@ def create_folder(
|
||||
)
|
||||
|
||||
try:
|
||||
folder = Folders.insert_new_folder(user.id, form_data, form_data.parent_id, db=db)
|
||||
folder = Folders.insert_new_folder(
|
||||
user.id, form_data, form_data.parent_id, db=db
|
||||
)
|
||||
return folder
|
||||
except Exception as e:
|
||||
log.exception(e)
|
||||
@@ -317,7 +319,9 @@ async def delete_folder_by_id(
|
||||
folder = folders.pop()
|
||||
if folder:
|
||||
try:
|
||||
folder_ids = Folders.delete_folder_by_id_and_user_id(folder.id, user.id, db=db)
|
||||
folder_ids = Folders.delete_folder_by_id_and_user_id(
|
||||
folder.id, user.id, db=db
|
||||
)
|
||||
|
||||
for folder_id in folder_ids:
|
||||
if delete_contents:
|
||||
|
||||
@@ -2248,10 +2248,7 @@ async def process_chat_payload(request, form_data, user, metadata, model):
|
||||
folder.data["system_prompt"], form_data, metadata, user
|
||||
)
|
||||
if "files" in folder.data:
|
||||
if (
|
||||
metadata.get("params", {}).get("function_calling")
|
||||
!= "native"
|
||||
):
|
||||
if metadata.get("params", {}).get("function_calling") != "native":
|
||||
form_data["files"] = [
|
||||
*folder.data["files"],
|
||||
*form_data.get("files", []),
|
||||
@@ -2378,8 +2375,7 @@ async def process_chat_payload(request, form_data, user, metadata, model):
|
||||
if metadata.get("params", {}).get("function_calling") != "native":
|
||||
prompt = (
|
||||
request.app.state.config.CODE_INTERPRETER_PROMPT_TEMPLATE
|
||||
if request.app.state.config.CODE_INTERPRETER_PROMPT_TEMPLATE
|
||||
!= ""
|
||||
if request.app.state.config.CODE_INTERPRETER_PROMPT_TEMPLATE != ""
|
||||
else DEFAULT_CODE_INTERPRETER_PROMPT
|
||||
)
|
||||
|
||||
@@ -2755,9 +2751,7 @@ async def process_chat_payload(request, form_data, user, metadata, model):
|
||||
metadata["system_prompt"] = (
|
||||
get_content_from_message(system_message) if system_message else None
|
||||
)
|
||||
metadata["user_prompt"] = get_last_user_message(
|
||||
form_data["messages"]
|
||||
)
|
||||
metadata["user_prompt"] = get_last_user_message(form_data["messages"])
|
||||
metadata["sources"] = sources[:] if sources else []
|
||||
|
||||
# If context is not empty, insert it into the messages
|
||||
@@ -4200,11 +4194,7 @@ async def streaming_chat_response_handler(response, ctx):
|
||||
reasoning_item["status"] = "completed"
|
||||
|
||||
if response_tool_calls:
|
||||
tool_calls.append(
|
||||
_split_tool_calls(
|
||||
response_tool_calls
|
||||
)
|
||||
)
|
||||
tool_calls.append(_split_tool_calls(response_tool_calls))
|
||||
|
||||
if response.background:
|
||||
await response.background()
|
||||
@@ -4224,13 +4214,9 @@ async def streaming_chat_response_handler(response, ctx):
|
||||
# Use the pre-RAG system content captured before the
|
||||
# initial file-source injection in process_chat_payload.
|
||||
# This ensures restore truly undoes the RAG template.
|
||||
original_system_content = metadata.get(
|
||||
"system_prompt"
|
||||
)
|
||||
original_system_content = metadata.get("system_prompt")
|
||||
if original_system_content is None:
|
||||
original_system_message = get_system_message(
|
||||
form_data["messages"]
|
||||
)
|
||||
original_system_message = get_system_message(form_data["messages"])
|
||||
original_system_content = (
|
||||
get_content_from_message(original_system_message)
|
||||
if original_system_message
|
||||
@@ -4495,9 +4481,9 @@ async def streaming_chat_response_handler(response, ctx):
|
||||
if all_tool_call_sources and user_message:
|
||||
# Restore pre-RAG message state before re-applying
|
||||
# to prevent RAG template duplication.
|
||||
original_user_message = metadata.get(
|
||||
"user_prompt"
|
||||
) or user_message
|
||||
original_user_message = (
|
||||
metadata.get("user_prompt") or user_message
|
||||
)
|
||||
set_last_user_message_content(
|
||||
original_user_message,
|
||||
form_data["messages"],
|
||||
@@ -4509,14 +4495,11 @@ async def streaming_chat_response_handler(response, ctx):
|
||||
|
||||
# Combine file and tool sources into one RAG
|
||||
# template application.
|
||||
form_data["messages"] = (
|
||||
apply_source_context_to_messages(
|
||||
request,
|
||||
form_data["messages"],
|
||||
metadata.get("sources", [])
|
||||
+ all_tool_call_sources,
|
||||
user_message,
|
||||
)
|
||||
form_data["messages"] = apply_source_context_to_messages(
|
||||
request,
|
||||
form_data["messages"],
|
||||
metadata.get("sources", []) + all_tool_call_sources,
|
||||
user_message,
|
||||
)
|
||||
tool_call_sources.clear()
|
||||
|
||||
@@ -4588,8 +4571,7 @@ async def streaming_chat_response_handler(response, ctx):
|
||||
code = sanitize_code(code)
|
||||
|
||||
if CODE_INTERPRETER_BLOCKED_MODULES:
|
||||
blocking_code = textwrap.dedent(
|
||||
f"""
|
||||
blocking_code = textwrap.dedent(f"""
|
||||
import builtins
|
||||
|
||||
BLOCKED_MODULES = {CODE_INTERPRETER_BLOCKED_MODULES}
|
||||
@@ -4605,8 +4587,7 @@ async def streaming_chat_response_handler(response, ctx):
|
||||
return _real_import(name, globals, locals, fromlist, level)
|
||||
|
||||
builtins.__import__ = restricted_import
|
||||
"""
|
||||
)
|
||||
""")
|
||||
code = blocking_code + "\n" + code
|
||||
|
||||
if (
|
||||
|
||||
@@ -199,7 +199,9 @@ async def get_all_models(request, refresh: bool = False, user: UserModel = None)
|
||||
|
||||
base_model = base_model_lookup.get(custom_model.base_model_id)
|
||||
if base_model is None:
|
||||
base_model = base_model_lookup.get(custom_model.base_model_id.split(":")[0])
|
||||
base_model = base_model_lookup.get(
|
||||
custom_model.base_model_id.split(":")[0]
|
||||
)
|
||||
if base_model:
|
||||
owned_by = base_model.get("owned_by", "unknown")
|
||||
if "pipe" in base_model:
|
||||
|
||||
Generated
+2
-2
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "open-webui",
|
||||
"version": "0.8.8",
|
||||
"version": "0.8.9",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "open-webui",
|
||||
"version": "0.8.8",
|
||||
"version": "0.8.9",
|
||||
"dependencies": {
|
||||
"@azure/msal-browser": "^4.5.0",
|
||||
"@codemirror/lang-javascript": "^6.2.2",
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "open-webui",
|
||||
"version": "0.8.8",
|
||||
"version": "0.8.9",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "npm run pyodide:fetch && vite dev --host",
|
||||
@@ -158,4 +158,4 @@
|
||||
"node": ">=18.13.0 <=22.x.x",
|
||||
"npm": ">=6.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -67,7 +67,8 @@
|
||||
>
|
||||
<option disabled selected value="">{$i18n.t('Select a engine')}</option>
|
||||
{#each engines as engine}
|
||||
<option value={engine}>{engine}{engine === 'jupyter' ? ' (Legacy)' : ''}</option>
|
||||
<option value={engine}>{engine}{engine === 'jupyter' ? ' (Legacy)' : ''}</option
|
||||
>
|
||||
{/each}
|
||||
</select>
|
||||
</div>
|
||||
@@ -193,7 +194,9 @@
|
||||
>
|
||||
<option disabled selected value="">{$i18n.t('Select a engine')}</option>
|
||||
{#each engines as engine}
|
||||
<option value={engine}>{engine}{engine === 'jupyter' ? ' (Legacy)' : ''}</option>
|
||||
<option value={engine}
|
||||
>{engine}{engine === 'jupyter' ? ' (Legacy)' : ''}</option
|
||||
>
|
||||
{/each}
|
||||
</select>
|
||||
</div>
|
||||
|
||||
@@ -148,8 +148,6 @@
|
||||
let webSearchEnabled = false;
|
||||
let codeInterpreterEnabled = false;
|
||||
|
||||
|
||||
|
||||
let showCommands = false;
|
||||
|
||||
let generating = false;
|
||||
|
||||
@@ -71,7 +71,9 @@
|
||||
$: hasMessages = history?.messages && Object.keys(history.messages).length > 0;
|
||||
|
||||
$: showControlsTab = $user?.role === 'admin' || ($user?.permissions?.chat?.controls ?? true);
|
||||
$: showFilesTab = !!$selectedTerminalId || (codeInterpreterEnabled && $config?.code?.interpreter_engine !== 'jupyter');
|
||||
$: showFilesTab =
|
||||
!!$selectedTerminalId ||
|
||||
(codeInterpreterEnabled && $config?.code?.interpreter_engine !== 'jupyter');
|
||||
$: showOverviewTab = hasMessages;
|
||||
|
||||
// Tab fallback: if active tab becomes hidden, switch to next available
|
||||
|
||||
@@ -108,7 +108,10 @@
|
||||
savedPyodidePath = currentPath;
|
||||
|
||||
try {
|
||||
const res = await sendWorkerMessage({ type: 'fs:list', path: currentPath.replace(/\/$/, '') || '/' });
|
||||
const res = await sendWorkerMessage({
|
||||
type: 'fs:list',
|
||||
path: currentPath.replace(/\/$/, '') || '/'
|
||||
});
|
||||
entries = (res.entries || []).sort((a: FileEntry, b: FileEntry) => {
|
||||
if (a.type !== b.type) return a.type === 'directory' ? -1 : 1;
|
||||
return a.name.localeCompare(b.name);
|
||||
@@ -247,7 +250,11 @@
|
||||
payloads.push({ name: file.name, data: await file.arrayBuffer() });
|
||||
}
|
||||
try {
|
||||
await sendWorkerMessage({ type: 'fs:upload', files: payloads, dir: currentPath.replace(/\/$/, '') || '/' });
|
||||
await sendWorkerMessage({
|
||||
type: 'fs:upload',
|
||||
files: payloads,
|
||||
dir: currentPath.replace(/\/$/, '') || '/'
|
||||
});
|
||||
} catch (e) {
|
||||
console.error('Upload failed:', e);
|
||||
}
|
||||
@@ -347,9 +354,18 @@
|
||||
on:click={() => selectedFile && downloadFile(selectedFile)}
|
||||
aria-label={$i18n.t('Download')}
|
||||
>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="size-3.5">
|
||||
<path d="M10.75 2.75a.75.75 0 0 0-1.5 0v8.614L6.295 8.235a.75.75 0 1 0-1.09 1.03l4.25 4.5a.75.75 0 0 0 1.09 0l4.25-4.5a.75.75 0 0 0-1.09-1.03l-2.955 3.129V2.75Z" />
|
||||
<path d="M3.5 12.75a.75.75 0 0 0-1.5 0v2.5A2.75 2.75 0 0 0 4.75 18h10.5A2.75 2.75 0 0 0 18 15.25v-2.5a.75.75 0 0 0-1.5 0v2.5c0 .69-.56 1.25-1.25 1.25H4.75c-.69 0-1.25-.56-1.25-1.25v-2.5Z" />
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 20 20"
|
||||
fill="currentColor"
|
||||
class="size-3.5"
|
||||
>
|
||||
<path
|
||||
d="M10.75 2.75a.75.75 0 0 0-1.5 0v8.614L6.295 8.235a.75.75 0 1 0-1.09 1.03l4.25 4.5a.75.75 0 0 0 1.09 0l4.25-4.5a.75.75 0 0 0-1.09-1.03l-2.955 3.129V2.75Z"
|
||||
/>
|
||||
<path
|
||||
d="M3.5 12.75a.75.75 0 0 0-1.5 0v2.5A2.75 2.75 0 0 0 4.75 18h10.5A2.75 2.75 0 0 0 18 15.25v-2.5a.75.75 0 0 0-1.5 0v2.5c0 .69-.56 1.25-1.25 1.25H4.75c-.69 0-1.25-.56-1.25-1.25v-2.5Z"
|
||||
/>
|
||||
</svg>
|
||||
</button>
|
||||
<button
|
||||
@@ -361,8 +377,17 @@
|
||||
}}
|
||||
aria-label={$i18n.t('Delete')}
|
||||
>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="size-3.5">
|
||||
<path fill-rule="evenodd" d="M8.75 1A2.75 2.75 0 0 0 6 3.75v.443c-.795.077-1.584.176-2.365.298a.75.75 0 1 0 .23 1.482l.149-.022 1.005 11.36A2.75 2.75 0 0 0 7.764 20h4.472a2.75 2.75 0 0 0 2.745-2.689l1.005-11.36.149.022a.75.75 0 0 0 .23-1.482A41.03 41.03 0 0 0 14 4.193V3.75A2.75 2.75 0 0 0 11.25 1h-2.5ZM10 4c.84 0 1.673.025 2.5.075V3.75c0-.69-.56-1.25-1.25-1.25h-2.5c-.69 0-1.25.56-1.25 1.25v.325C8.327 4.025 9.16 4 10 4ZM8.58 7.72a.75.75 0 0 1 .7.8l-.3 6a.75.75 0 0 1-1.5-.075l.3-6a.75.75 0 0 1 .8-.725ZM12.2 8.52a.75.75 0 0 0-1.5.075l-.3 6a.75.75 0 0 0 1.5-.075l.3-6Z" clip-rule="evenodd" />
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
viewBox="0 0 20 20"
|
||||
fill="currentColor"
|
||||
class="size-3.5"
|
||||
>
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
d="M8.75 1A2.75 2.75 0 0 0 6 3.75v.443c-.795.077-1.584.176-2.365.298a.75.75 0 1 0 .23 1.482l.149-.022 1.005 11.36A2.75 2.75 0 0 0 7.764 20h4.472a2.75 2.75 0 0 0 2.745-2.689l1.005-11.36.149.022a.75.75 0 0 0 .23-1.482A41.03 41.03 0 0 0 14 4.193V3.75A2.75 2.75 0 0 0 11.25 1h-2.5ZM10 4c.84 0 1.673.025 2.5.075V3.75c0-.69-.56-1.25-1.25-1.25h-2.5c-.69 0-1.25.56-1.25 1.25v.325C8.327 4.025 9.16 4 10 4ZM8.58 7.72a.75.75 0 0 1 .7.8l-.3 6a.75.75 0 0 1-1.5-.075l.3-6a.75.75 0 0 1 .8-.725ZM12.2 8.52a.75.75 0 0 0-1.5.075l-.3 6a.75.75 0 0 0 1.5-.075l.3-6Z"
|
||||
clip-rule="evenodd"
|
||||
/>
|
||||
</svg>
|
||||
</button>
|
||||
</FileNavToolbar>
|
||||
@@ -370,13 +395,7 @@
|
||||
<!-- Content area -->
|
||||
<div class="flex-1 min-h-0 flex flex-col">
|
||||
{#if selectedFile}
|
||||
<FilePreview
|
||||
{selectedFile}
|
||||
{fileLoading}
|
||||
{fileImageUrl}
|
||||
{fileContent}
|
||||
{overlay}
|
||||
/>
|
||||
<FilePreview {selectedFile} {fileLoading} {fileImageUrl} {fileContent} {overlay} />
|
||||
{:else if loading}
|
||||
<div class="flex items-center justify-center flex-1 p-6">
|
||||
<Spinner className="size-4" />
|
||||
@@ -435,17 +454,17 @@
|
||||
{/if}
|
||||
|
||||
{#if entries.length > 0 || creatingFolder || creatingFile}
|
||||
<ul class="overflow-y-auto flex-1 min-h-0">
|
||||
{#each entries as entry (entry.name)}
|
||||
<FileEntryRow
|
||||
{entry}
|
||||
{currentPath}
|
||||
onOpen={openEntry}
|
||||
onDownload={downloadFile}
|
||||
onDelete={confirmDelete}
|
||||
/>
|
||||
{/each}
|
||||
</ul>
|
||||
<ul class="overflow-y-auto flex-1 min-h-0">
|
||||
{#each entries as entry (entry.name)}
|
||||
<FileEntryRow
|
||||
{entry}
|
||||
{currentPath}
|
||||
onOpen={openEntry}
|
||||
onDownload={downloadFile}
|
||||
onDelete={confirmDelete}
|
||||
/>
|
||||
{/each}
|
||||
</ul>
|
||||
{/if}
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
@@ -150,16 +150,12 @@
|
||||
}
|
||||
|
||||
// Check for duplicate names in the same parent
|
||||
const siblings = Object.values(folders).filter(
|
||||
(folder) => folder.parent_id === parent_id
|
||||
);
|
||||
const siblings = Object.values(folders).filter((folder) => folder.parent_id === parent_id);
|
||||
if (siblings.find((folder) => folder.name.toLowerCase() === name.toLowerCase())) {
|
||||
// If a folder with the same name already exists, append a number to the name
|
||||
let i = 1;
|
||||
while (
|
||||
siblings.find(
|
||||
(folder) => folder.name.toLowerCase() === `${name} ${i}`.toLowerCase()
|
||||
)
|
||||
siblings.find((folder) => folder.name.toLowerCase() === `${name} ${i}`.toLowerCase())
|
||||
) {
|
||||
i++;
|
||||
}
|
||||
|
||||
@@ -219,8 +219,8 @@
|
||||
|
||||
info.params.system = system.trim() === '' ? null : system;
|
||||
info.params.stop = params.stop
|
||||
? (typeof params.stop === 'string' ? params.stop.split(',') : params.stop).filter(
|
||||
(s) => s.trim()
|
||||
? (typeof params.stop === 'string' ? params.stop.split(',') : params.stop).filter((s) =>
|
||||
s.trim()
|
||||
)
|
||||
: null;
|
||||
Object.keys(info.params).forEach((key) => {
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "",
|
||||
"Artifacts": "",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "الإفتراضي صلاحيات المستخدم",
|
||||
"Defaults": "",
|
||||
"Delete": "حذف",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "حذف الموديل",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "حذف جميع الدردشات",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. الوحدات الزمنية الصالحة هي 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com \"{{searchValue}}\" أسحب من ",
|
||||
"Pull a model from Ollama.com": "Ollama.com سحب الموديل من ",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "هل أنت متأكد من رغبتك في حذف هذه القناة؟",
|
||||
"Are you sure you want to delete this message?": "هل أنت متأكد من رغبتك في حذف هذه الرسالة؟",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "هل أنت متأكد من رغبتك في إلغاء أرشفة جميع المحادثات المؤرشفة؟",
|
||||
"Arena Models": "نماذج الساحة",
|
||||
"Artifacts": "القطع الأثرية",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "الإفتراضي صلاحيات المستخدم",
|
||||
"Defaults": "",
|
||||
"Delete": "حذف",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "حذف الموديل",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "حذف جميع الدردشات",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "ارسم",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. الوحدات الزمنية الصالحة هي 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "تم حذف المجلد بنجاح",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "لم يتم تحديد ملف",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com \"{{searchValue}}\" أسحب من ",
|
||||
"Pull a model from Ollama.com": "Ollama.com سحب الموديل من ",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "توجيه إنشاء الاستعلام",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "Сигурни ли сте, че искате да изтриете този канал?",
|
||||
"Are you sure you want to delete this message?": "Сигурни ли сте, че искате да изтриете това съобщение?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Сигурни ли сте, че искате да разархивирате всички архивирани чатове?",
|
||||
"Arena Models": "Арена Модели",
|
||||
"Artifacts": "Артефакти",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Ролята на потребителя по подразбиране",
|
||||
"Defaults": "",
|
||||
"Delete": "Изтриване",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Изтриване на модела",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Изтриване на всички чатове",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Рисуване",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр. '30с','10м'. Валидни единици са 'с', 'м', 'ч'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Папката е изтрита успешно",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Не е избран файл",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Извади \"{{searchValue}}\" от Ollama.com",
|
||||
"Pull a model from Ollama.com": "Издърпайте модела от Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Промпт за генериране на запитвания",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "",
|
||||
"Artifacts": "",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "ইউজারের ডিফল্ট পদবি",
|
||||
"Defaults": "",
|
||||
"Delete": "মুছে ফেলুন",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "একটি মডেল মুছে ফেলুন",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "সব চ্যাট মুছে ফেলুন",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "যেমন '30s','10m'. সময়ের অনুমোদিত অনুমোদিত এককগুলি হচ্ছে 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com থেকে \"{{searchValue}}\" টানুন",
|
||||
"Pull a model from Ollama.com": "Ollama.com থেকে একটি টেনে আনুন আনুন",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "ཁྱེད་ཀྱིས་བགྲོ་གླེང་འདི་བསུབ་འདོད་ངེས་ཡིན་ནམ།",
|
||||
"Are you sure you want to delete this message?": "འཕྲིན་འདི་བསུབ་འདོད་ངེས་ཡིན་ནམ།",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "ཁྱེད་ཀྱིས་ཡིག་མཛོད་དུ་བཞག་པའི་ཁ་བརྡ་ཡོངས་རྫོགས་ཕྱིར་འདོན་འདོད་ངེས་ཡིན་ནམ།",
|
||||
"Arena Models": "Arena དཔེ་དབྱིབས།",
|
||||
"Artifacts": "རྫས་རྟེན།",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "སྔོན་སྒྲིག་བེད་སྤྱོད་མཁན་གྱི་གནས་ཚད།",
|
||||
"Defaults": "",
|
||||
"Delete": "བསུབ་པ།",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "དཔེ་དབྱིབས་ཤིག་བསུབ་པ།",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "ཁ་བརྡ་ཡོངས་རྫོགས་བསུབ་པ།",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "རི་མོ་འབྲི་བ།",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "དཔེར་ན། '30s','10m'. ནུས་ལྡན་དུས་ཚོད་ཀྱི་ཚན་པ་ནི། 's', 'm', 'h' ཡིན།",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "ཡིག་སྣོད་ལེགས་པར་བསུབས་ཟིན།",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "ཡིག་ཆ་གདམ་ག་མ་བྱས།",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com ནས་ \"{{searchValue}}\" འཐེན་པ།",
|
||||
"Pull a model from Ollama.com": "Ollama.com ནས་དཔེ་དབྱིབས་ཤིག་འཐེན་པ།",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "འདྲི་བ་བཟོ་སྐྲུན་གྱི་འགུལ་སློང་།",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "",
|
||||
"Artifacts": "",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Zadana korisnička uloga",
|
||||
"Defaults": "",
|
||||
"Delete": "Izbriši",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Izbriši model",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Izbriši sve razgovore",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "npr. '30s','10m'. Važeće vremenske jedinice su 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Povucite \"{{searchValue}}\" s Ollama.com",
|
||||
"Pull a model from Ollama.com": "Povucite model s Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"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 message?": "Estàs segur que vols eliminar aquest missatge?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "Estàs segur que vols suprimir aquesta versió? Les versions filles es tornaran a enllaçar amb la versió principal d'aquesta versió.",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Estàs segur que vols desarxivar tots els xats arxivats?",
|
||||
"Arena Models": "Models de l'Arena",
|
||||
"Artifacts": "Artefactes",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Rol d'usuari per defecte",
|
||||
"Defaults": "Valors per defecte",
|
||||
"Delete": "Eliminar",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Eliminar un model",
|
||||
"Delete All": "Eliminar tot",
|
||||
"Delete All Chats": "Eliminar tots els xats",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "Descarregant estadístiques...",
|
||||
"Draw": "Dibuixar",
|
||||
"Drop any files here to upload": "Arrossega aquí qualsevol fitxer per pujar-lo",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "Deixa anar els arxius aquí per pujar-los",
|
||||
"DuckDuckGo": "DuckDuckGo",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ex. '30s','10m'. Les unitats de temps vàlides són 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "Posa el focus en l'entrada del xat",
|
||||
"Folder": "Carpeta",
|
||||
"Folder Background Image": "Imatge del fons de la carpeta",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Carpeta eliminada correctament",
|
||||
"Folder Max File Count": "Nombre màxim d'arxius per carpeta",
|
||||
"Folder name": "Nom de carpeta",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "No s'ha escollit cap fitxer",
|
||||
"No files found": "No s'han trobat arxius",
|
||||
"No files in this knowledge base.": "No hi ha arxius a la base de coneixement.",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "No s'han trobat funcions",
|
||||
"No groups found": "No s'han trobat grups",
|
||||
"No history available": "No hi ha historial disponible",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Obtenir \"{{searchValue}}\" de Ollama.com",
|
||||
"Pull a model from Ollama.com": "Obtenir un model d'Ollama.com",
|
||||
"Pull Model": "Obtenir un model",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Indicació per a generació de consulta",
|
||||
"Querying": "Consultes",
|
||||
"Quick Actions": "Accions ràpides",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "",
|
||||
"Artifacts": "",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Default nga Papel sa Gumagamit",
|
||||
"Defaults": "",
|
||||
"Delete": "",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Pagtangtang sa usa ka template",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "",
|
||||
"Pull a model from Ollama.com": "Pagkuha ug template gikan sa Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "Opravdu chcete smazat tento kanál?",
|
||||
"Are you sure you want to delete this message?": "Opravdu chcete smazat tuto zprávu?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Opravdu chcete zrušit archivaci všech archivovaných konverzací?",
|
||||
"Arena Models": "Modely pro arénu",
|
||||
"Artifacts": "Artefakty",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Výchozí role uživatele",
|
||||
"Defaults": "",
|
||||
"Delete": "Smazat",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Smazat model",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Smazat všechny konverzace",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Kreslit",
|
||||
"Drop any files here to upload": "Přetáhněte sem soubory pro nahrání",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "např. '30s','10m'. Platné časové jednotky jsou 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "Složka",
|
||||
"Folder Background Image": "Obrázek na pozadí složky",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Složka byla úspěšně smazána",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Nebyl vybrán žádný soubor",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "Žádné funkce nenalezeny",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Stáhnout \"{{searchValue}}\" z Ollama.com",
|
||||
"Pull a model from Ollama.com": "Stáhnout model z Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Instrukce pro generování dotazu",
|
||||
"Querying": "",
|
||||
"Quick Actions": "Rychlé akce",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"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 message?": "Er du sikker på du vil slette denne besked?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Er du sikker på du vil fjerne alle arkiverede chats?",
|
||||
"Arena Models": "Arena Modeller",
|
||||
"Artifacts": "Artifakter",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Brugers rolle som standard",
|
||||
"Defaults": "",
|
||||
"Delete": "Slet",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Slet en model",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Slet alle chats",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Tegn",
|
||||
"Drop any files here to upload": "Drop nogen filer her for at uploade",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "f.eks. '30s', '10m'. Tilladte værdier er 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "Fokus chat-input",
|
||||
"Folder": "Mappe",
|
||||
"Folder Background Image": "Mappe baggrundsbillede",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Mappe fjernet.",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Ingen fil valgt",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "Ingen funktioner fundet",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Hent \"{{searchValue}}\" fra Ollama.com",
|
||||
"Pull a model from Ollama.com": "Hent en model fra Ollama.com",
|
||||
"Pull Model": "Hent model",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Forespørgsel genererings prompt",
|
||||
"Querying": "Undersøger",
|
||||
"Quick Actions": "Hurtig-handlinger",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"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 message?": "Sind Sie sicher, dass Sie diese Nachricht löschen möchten?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "Sind Sie sicher, dass Sie diese Version löschen wollen? Child-Versionen werden zu dem Parent dieser Version verlinkt.",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Sind Sie sicher, dass Sie alle archivierten Chats wiederherstellen möchten?",
|
||||
"Arena Models": "Arena-Modelle",
|
||||
"Artifacts": "Artefakte",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Standard-Benutzerrolle",
|
||||
"Defaults": "Standardwerte",
|
||||
"Delete": "Löschen",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Ein Modell löschen",
|
||||
"Delete All": "Alle löschen",
|
||||
"Delete All Chats": "Alle Chats löschen",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "Statistik wird heruntergeladen...",
|
||||
"Draw": "Zeichnen",
|
||||
"Drop any files here to upload": "Dateien zum Hochladen hier ablegen",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "Dateien zum Hochladen hier fallen lassen",
|
||||
"DuckDuckGo": "DuckDuckGo",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "z. B. '30s', '10m'. Gültig: 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "Chat-Eingabe fokussieren",
|
||||
"Folder": "Ordner",
|
||||
"Folder Background Image": "Ordner-Hintergrundbild",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Ordner erfolgreich gelöscht",
|
||||
"Folder Max File Count": "Maximale Dateianzahl pro Ordner",
|
||||
"Folder name": "Ordnername",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Keine Datei ausgewählt",
|
||||
"No files found": "Keine Dateien gefunden",
|
||||
"No files in this knowledge base.": "Keine Dateien in diesem Wissensspeicher",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "Keine Funktionen gefunden",
|
||||
"No groups found": "Keine Gruppen gefunden",
|
||||
"No history available": "Keine History verfügbar",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" von Ollama.com laden",
|
||||
"Pull a model from Ollama.com": "Ein Modell von Ollama.com laden",
|
||||
"Pull Model": "Modell laden",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Abfrage-Generierungs-Prompt",
|
||||
"Querying": "Frage ab...",
|
||||
"Quick Actions": "Schnellaktionen",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "",
|
||||
"Artifacts": "",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Default User Role",
|
||||
"Defaults": "",
|
||||
"Delete": "",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Delete a model",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. Much time units are 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "",
|
||||
"Pull a model from Ollama.com": "Pull a wowdel from Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το κανάλι;",
|
||||
"Are you sure you want to delete this message?": "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το μήνυμα;",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Είστε σίγουροι ότι θέλετε να απο-αρχειοθετήσετε όλες τις αρχειοθετημένες συνομιλίες;",
|
||||
"Arena Models": "Μοντέλα Arena",
|
||||
"Artifacts": "Αρχεία",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Προεπιλεγμένος Ρόλος Χρήστη",
|
||||
"Defaults": "",
|
||||
"Delete": "Διαγραφή",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Διαγραφή ενός μοντέλου",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Διαγραφή Όλων των Συνομιλιών",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Σχεδίαση",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "π.χ. '30s','10m'. Οι έγκυρες μονάδες χρόνου είναι 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "Φάκελος",
|
||||
"Folder Background Image": "Εικόνα Φόντου Φακέλου",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Ο φάκελος διαγράφηκε με επιτυχία",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Δεν έχει επιλεγεί αρχείο",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "Δεν βρέθηκαν λειτουργίες",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Τραβήξτε \"{{searchValue}}\" από το Ollama.com",
|
||||
"Pull a model from Ollama.com": "Τραβήξτε ένα μοντέλο από το Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Προτροπή Δημιουργίας Ερωτήσεων",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "",
|
||||
"Artifacts": "",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "",
|
||||
"Defaults": "",
|
||||
"Delete": "",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "",
|
||||
"Pull a model from Ollama.com": "",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "",
|
||||
"Artifacts": "",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "",
|
||||
"Defaults": "",
|
||||
"Delete": "",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
|
||||
@@ -1305,6 +1308,7 @@
|
||||
"No file selected": "",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1512,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "",
|
||||
"Pull a model from Ollama.com": "",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
@@ -2136,4 +2141,4 @@
|
||||
"YouTube": "",
|
||||
"Youtube Language": "",
|
||||
"Youtube Proxy URL": ""
|
||||
}
|
||||
}
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "¿Seguro de que quieres eliminar este canal?",
|
||||
"Are you sure you want to delete this message?": "¿Seguro de que quieres eliminar este mensaje? ",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "¿Seguro que desea eliminar esta versión? Las versiones secundarias se vincularán a la versión principal de esta.",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "¿Seguro de que quieres desarchivar todos los chats archivados?",
|
||||
"Arena Models": "Arena de Modelos",
|
||||
"Artifacts": "Artefactos",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Rol predeterminado de los nuevos usuarios",
|
||||
"Defaults": "Predeterminados",
|
||||
"Delete": "Borrar",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Borrar un modelo",
|
||||
"Delete All": "Borrar Todo",
|
||||
"Delete All Chats": "Borrar todos los chats",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "Descargando estadísticas...",
|
||||
"Draw": "Dibujar",
|
||||
"Drop any files here to upload": "Arrastra aquí los archivos a subir.",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "DuckDuckGo",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p.ej. '30s','10m'. Unidades de tiempo válidas son 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "Enfocar a la Entrada del Chat",
|
||||
"Folder": "Carpeta",
|
||||
"Folder Background Image": "Imagen de Fondo de la Carpeta",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Carpeta eliminada correctamente",
|
||||
"Folder Max File Count": "Máximo Número de Ficheros en Carpeta",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "No se seleccionó archivo",
|
||||
"No files found": "No se encontraron archivos",
|
||||
"No files in this knowledge base.": "Ningún archivo en esta base de conocimiento.",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "No se encontraron funciones",
|
||||
"No groups found": "No se encontraron grupos",
|
||||
"No history available": "No hay historial disponible",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Extraer \"{{searchValue}}\" desde Ollama.com",
|
||||
"Pull a model from Ollama.com": "Extraer un modelo desde Ollama.com",
|
||||
"Pull Model": "Extraer Modelo",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Indicador para la Consulta de Generación",
|
||||
"Querying": "Consultando",
|
||||
"Quick Actions": "Acciones Rápida",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"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 message?": "Kas olete kindel, et soovite selle sõnumi kustutada?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Kas olete kindel, et soovite kõik arhiveeritud vestlused arhiivist eemaldada?",
|
||||
"Arena Models": "Areena mudelid",
|
||||
"Artifacts": "Tekkinud objektid",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Vaikimisi kasutaja roll",
|
||||
"Defaults": "",
|
||||
"Delete": "Kustuta",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Kustuta mudel",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Kustuta kõik vestlused",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Joonista",
|
||||
"Drop any files here to upload": "Lohistage siia failid üleslaadimiseks",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "nt '30s', '10m'. Kehtivad ajaühikud on 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "Kaust",
|
||||
"Folder Background Image": "Kausta taustpilt",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Kaust edukalt kustutatud",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Faili pole valitud",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "No functions found",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Tõmba \"{{searchValue}}\" Ollama.com-ist",
|
||||
"Pull a model from Ollama.com": "Tõmba mudel Ollama.com-ist",
|
||||
"Pull Model": "Pull Mudel",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Päringu genereerimise vihje",
|
||||
"Querying": "Querying",
|
||||
"Quick Actions": "Quick Actions",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Ziur zaude artxibatutako txat guztiak desartxibatu nahi dituzula?",
|
||||
"Arena Models": "Arena Ereduak",
|
||||
"Artifacts": "Artefaktuak",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Erabiltzaile Rol Lehenetsia",
|
||||
"Defaults": "",
|
||||
"Delete": "Ezabatu",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Ezabatu eredu bat",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Ezabatu Txat Guztiak",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Marraztu",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "adib. '30s','10m'. Denbora unitate baliodunak dira 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Karpeta ongi ezabatu da",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Ez da fitxategirik hautatu",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Ekarri \"{{searchValue}}\" Ollama.com-etik",
|
||||
"Pull a model from Ollama.com": "Ekarri modelo bat Ollama.com-etik",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Kontsulta sortzeko prompt-a",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "آیا مطمئن هستید که می\u200cخواهید این کانال را حذف کنید؟",
|
||||
"Are you sure you want to delete this message?": "آیا مطمئن هستید که می\u200cخواهید این پیام را حذف کنید؟",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "آیا مطمئن هستید که می\u200cخواهید همه گفتگوهای بایگانی شده را از بایگانی خارج کنید؟",
|
||||
"Arena Models": "مدل\u200cهای آرنا",
|
||||
"Artifacts": "مصنوعات",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "نقش کاربر پیش فرض",
|
||||
"Defaults": "",
|
||||
"Delete": "حذف",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "حذف یک مدل",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "حذف همه گفتگوها",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "رسم کردن",
|
||||
"Drop any files here to upload": "فایل\u200cها را برای آپلود به اینجا بکشید و رها کنید",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "به طور مثال '30s','10m'. واحد\u200cهای زمانی معتبر 's', 'm', 'h' هستند.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "فوکوس روی ورودی چت",
|
||||
"Folder": "پوشه",
|
||||
"Folder Background Image": "تصویر پس\u200cزمینه پوشه",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "پوشه با موفقیت حذف شد",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "فایلی انتخاب نشده است",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "هیچ تابعی یافت نشد",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "بازگرداندن \"{{searchValue}}\" از Ollama.com",
|
||||
"Pull a model from Ollama.com": "دریافت یک مدل از Ollama.com",
|
||||
"Pull Model": "کشیدن مدل",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "پرامپت تولید کوئری",
|
||||
"Querying": "در حال پرس\u200cوجو",
|
||||
"Quick Actions": "اقدامات سریع",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "Haluatko varmasti poistaa tämän kanavan?",
|
||||
"Are you sure you want to delete this message?": "Haluatko varmasti poistaa tämän viestin?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "Haluatko varamsti poistaa tämän version? Alaversiot linkitetään uudelleen tämän version ylätason versioon.",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Haluatko varmasti purkaa kaikkien arkistoitujen keskustelujen arkistoinnin?",
|
||||
"Arena Models": "Arena-mallit",
|
||||
"Artifacts": "Artefaktit",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Oletuskäyttäjärooli",
|
||||
"Defaults": "Oletukset",
|
||||
"Delete": "Poista",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Poista malli",
|
||||
"Delete All": "Poista kaikki",
|
||||
"Delete All Chats": "Poista kaikki keskustelut",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "Ladataa tilastoja...",
|
||||
"Draw": "Piirros",
|
||||
"Drop any files here to upload": "Pudota tähän ladattavat tiedostot",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "Pudota tiedostot tähän ladataksesi",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "esim. '30s', '10m'. Kelpoiset aikayksiköt ovat 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "Kohdista keskustelu tekstikenttään",
|
||||
"Folder": "Kansio",
|
||||
"Folder Background Image": "Kansion taustakuva",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Kansio poistettu onnistuneesti",
|
||||
"Folder Max File Count": "Kansion tiedostojen enimmäismäärä",
|
||||
"Folder name": "Kansion nimi",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Tiedostoa ei ole valittu",
|
||||
"No files found": "Tiedostoja ei löytynyt",
|
||||
"No files in this knowledge base.": "Tässä tietokannassa ei ole tiedostoja.",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "Funktioita ei löytynyt",
|
||||
"No groups found": "Ryhmiä ei löytynyt",
|
||||
"No history available": "Historiaa ei saatavilla",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Lataa \"{{searchValue}}\" Ollama.comista",
|
||||
"Pull a model from Ollama.com": "Lataa malli Ollama.comista",
|
||||
"Pull Model": "Lataa malli",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Kyselytulosten luontikehote",
|
||||
"Querying": "Kysely",
|
||||
"Quick Actions": "Pikatoiminnot",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"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 message?": "Êtes-vous sûr de vouloir supprimer ce message ?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Êtes-vous sûr de vouloir désarchiver toutes les conversations archivées?",
|
||||
"Arena Models": "Modèles d'arène",
|
||||
"Artifacts": "Artéfacts",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Rôle utilisateur par défaut",
|
||||
"Defaults": "",
|
||||
"Delete": "Supprimer",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Supprimer un modèle",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Supprimer toutes les conversations",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Match nul",
|
||||
"Drop any files here to upload": "Déposez des fichiers ici pour les téléverser",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10 min'. Les unités de temps valides sont 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Dossier supprimé avec succès",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Aucun fichier sélectionné",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Récupérer « {{searchValue}} » depuis Ollama.com",
|
||||
"Pull a model from Ollama.com": "Télécharger un modèle depuis Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Prompt de génération de requête",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"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 message?": "Êtes-vous sûr de vouloir supprimer ce message ?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Êtes-vous sûr de vouloir désarchiver toutes les conversations ?",
|
||||
"Arena Models": "Modèles d'arène",
|
||||
"Artifacts": "Artéfacts",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Rôle utilisateur par défaut",
|
||||
"Defaults": "",
|
||||
"Delete": "Supprimer",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Supprimer un modèle",
|
||||
"Delete All": "Tout supprimer",
|
||||
"Delete All Chats": "Supprimer toutes les conversations",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "Téléchargement des statistiques...",
|
||||
"Draw": "Match nul",
|
||||
"Drop any files here to upload": "Déposez des fichiers ici pour les téléverser",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "Déposez des fichiers ici pour les téléverser",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10 min'. Les unités de temps valides sont 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "Activer la zone de saisie",
|
||||
"Folder": "Dossier",
|
||||
"Folder Background Image": "Image d'arrière-plan du dossier",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Dossier supprimé avec succès",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Aucun fichier sélectionné",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "Aucun fichier dans cette base de connaissances.",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "Aucun historique disponible",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Récupérer « {{searchValue}} » depuis Ollama.com",
|
||||
"Pull a model from Ollama.com": "Télécharger un modèle depuis Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Prompt de génération de requête",
|
||||
"Querying": "Requête en cours",
|
||||
"Quick Actions": "Actions rapide",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "¿Seguro que queres eliminar este canal?",
|
||||
"Are you sure you want to delete this message?": "¿Seguro que queres eliminar este mensaxe? ",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "¿Estás seguro de que quieres desArquivar todos os chats arquivados?",
|
||||
"Arena Models": "Area de Modelos",
|
||||
"Artifacts": "Artefactos",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Rol por defecto para os usuarios",
|
||||
"Defaults": "",
|
||||
"Delete": "Borrar",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Borra un modelo",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Eliminar todos os chats",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Dibujar",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p.ej. '30s','10m'. Unidades válidas detempo son 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Carpeta eliminada correctamente",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Ningún arquivo fué seleccionado",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Extraer \"{{searchValue}}\" de Ollama.com",
|
||||
"Pull a model from Ollama.com": "Obter un modelo de Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Prompt de xeneración de consulta",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "",
|
||||
"Artifacts": "",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "תפקיד משתמש ברירת מחדל",
|
||||
"Defaults": "",
|
||||
"Delete": "מחק",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "מחק מודל",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "מחק את כל הצ'אטים",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "למשל '30s', '10m'. יחידות זמן חוקיות הן 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "משוך \"{{searchValue}}\" מ-Ollama.com",
|
||||
"Pull a model from Ollama.com": "משוך מודל מ-Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "",
|
||||
"Artifacts": "",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "डिफ़ॉल्ट उपयोगकर्ता भूमिका",
|
||||
"Defaults": "",
|
||||
"Delete": "डिलीट",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "एक मॉडल हटाएँ",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "सभी चैट हटाएं",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "जैसे '30s', '10m', मान्य समय इकाइयाँ 's', 'm', 'h' हैं।",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" को Ollama.com से खींचें",
|
||||
"Pull a model from Ollama.com": "Ollama.com से एक मॉडल खींचें",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "",
|
||||
"Artifacts": "",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Zadana korisnička uloga",
|
||||
"Defaults": "",
|
||||
"Delete": "Izbriši",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Izbriši model",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Izbriši sve razgovore",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "npr. '30s','10m'. Važeće vremenske jedinice su 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Povucite \"{{searchValue}}\" s Ollama.com",
|
||||
"Pull a model from Ollama.com": "Povucite model s Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"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 message?": "Biztosan törölni szeretnéd ezt az üzenetet?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Biztosan vissza szeretnéd állítani az összes archivált csevegést?",
|
||||
"Arena Models": "Arena modellek",
|
||||
"Artifacts": "Műtermékek",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Alapértelmezett felhasználói szerep",
|
||||
"Defaults": "",
|
||||
"Delete": "Törlés",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Modell törlése",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Minden beszélgetés törlése",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Rajzolás",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "pl. '30s','10m'. Érvényes időegységek: 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Mappa sikeresen törölve",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Nincs kiválasztva fájl",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\" letöltése az Ollama.com-ról",
|
||||
"Pull a model from Ollama.com": "Modell letöltése az Ollama.com-ról",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Lekérdezés generálási prompt",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "",
|
||||
"Artifacts": "",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Peran Pengguna Default",
|
||||
"Defaults": "",
|
||||
"Delete": "Menghapus",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Menghapus model",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Menghapus Semua Obrolan",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "misalnya '30-an', '10m'. Satuan waktu yang valid adalah 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Tidak ada file yang dipilih",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Tarik \"{{searchValue}}\" dari Ollama.com",
|
||||
"Pull a model from Ollama.com": "Tarik model dari Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"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 message?": "An bhfuil tú cinnte gur mhaith leat an teachtaireacht seo a scriosadh?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "An bhfuil tú cinnte gur mian leat an leagan seo a scriosadh? Déanfar leaganacha linbh a athnascadh le tuismitheoir an leagain seo.",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "An bhfuil tú cinnte gur mhaith leat gach comhrá cartlainne a dhíchartlannú?",
|
||||
"Arena Models": "Samhlacha Réimse",
|
||||
"Artifacts": "Déantáin",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Ról Úsáideora Réamhshocraithe",
|
||||
"Defaults": "Réamhshocruithe",
|
||||
"Delete": "Scrios",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Scrios samhail",
|
||||
"Delete All": "Scrios Gach Rud",
|
||||
"Delete All Chats": "Scrios Gach Comhrá",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "Ag íoslódáil staitisticí...",
|
||||
"Draw": "Tarraing",
|
||||
"Drop any files here to upload": "Scaoil aon chomhaid anseo le huaslódáil",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "Scaoil comhaid anseo le huaslódáil",
|
||||
"DuckDuckGo": "DuckDuckGo",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "m.sh. '30s', '10m'. Is iad aonaid ama bailí ná 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "Dírigh ar Ionchur Comhrá",
|
||||
"Folder": "Fillteán",
|
||||
"Folder Background Image": "Íomhá Chúlra Fillteáin",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Scriosadh an fillteán go rathúil",
|
||||
"Folder Max File Count": "Uasmhéid Líon Comhad Fillteán",
|
||||
"Folder name": "Ainm fillteáin",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Níl aon chomhad roghnaithe",
|
||||
"No files found": "Níor aimsíodh aon chomhaid",
|
||||
"No files in this knowledge base.": "Níl aon chomhaid sa bhunachar eolais seo.",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "Níor aimsíodh aon fheidhmeanna",
|
||||
"No groups found": "Níor aimsíodh aon ghrúpaí",
|
||||
"No history available": "Níl aon stair ar fáil",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Tarraing \"{{searchValue}}\" ó Ollama.com",
|
||||
"Pull a model from Ollama.com": "Tarraing samhail ó Ollama.com",
|
||||
"Pull Model": "Samhail Tarraingthe",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Cuirí Ginearáil Ceisteanna",
|
||||
"Querying": "Ag fiosrú",
|
||||
"Quick Actions": "Gníomhartha Tapa",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "Sei sicuro di voler eliminare questo canale?",
|
||||
"Are you sure you want to delete this message?": "Sei sicuro di voler eliminare questo messaggio?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Sei sicuro di voler disarchiviare tutte le chat archiviate?",
|
||||
"Arena Models": "Modelli Arena",
|
||||
"Artifacts": "Artefatti",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Ruolo utente predefinito",
|
||||
"Defaults": "",
|
||||
"Delete": "Elimina",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Elimina un modello",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Elimina tutte le chat",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Disegna",
|
||||
"Drop any files here to upload": "Rilascia qui i file per caricarli",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ad esempio '30s','10m'. Le unità di tempo valide sono 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Cartella rimossa con successo",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Nessun file selezionato",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Estrai \"{{searchValue}}\" da Ollama.com",
|
||||
"Pull a model from Ollama.com": "Estrai un modello da Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Prompt di Generazione Query",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "このチャンネルを削除しますか?",
|
||||
"Are you sure you want to delete this message?": "このメッセージを削除しますか?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "すべてのアーカイブされたチャットをアンアーカイブしますか?",
|
||||
"Arena Models": "Arenaモデル",
|
||||
"Artifacts": "アーティファクト",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "デフォルトのユーザー役割",
|
||||
"Defaults": "",
|
||||
"Delete": "削除",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "モデルを削除",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "すべてのチャットを削除",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "引き分け",
|
||||
"Drop any files here to upload": "ここにファイルをドロップしてアップロード",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例: '30s'、'10m'。有効な時間単位は 's'、'm'、'h' です。",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "チャット入力欄にフォーカス",
|
||||
"Folder": "フォルダー",
|
||||
"Folder Background Image": "フォルダーの背景画像",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "フォルダー削除が成功しました。",
|
||||
"Folder Max File Count": "フォルダー内の最大ファイル数",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "ファイルが選択されていません",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "functionsが見つかりません",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com から \"{{searchValue}}\" をプル",
|
||||
"Pull a model from Ollama.com": "Ollama.com からモデルをプル",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "クエリ生成プロンプト",
|
||||
"Querying": "照会中",
|
||||
"Quick Actions": "クイックアクション",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "მართლა გნებავთ ამ არხის წაშლა?",
|
||||
"Are you sure you want to delete this message?": "მართლა გნებავთ ამ შეტყობინების წასლა?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "არენის მოდელები",
|
||||
"Artifacts": "არტეფაქტები",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "მომხმარებლის ნაგულისხმევი როლი",
|
||||
"Defaults": "",
|
||||
"Delete": "წაშლა",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "მოდელის წაშლა",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "ყველა ჩატის წაშლა",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "ხატვა",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "მაგ: '30წ', '10მ'. მოქმედი დროის ერთეულები: 'წ', 'წთ', 'სთ'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "საქაღალდე",
|
||||
"Folder Background Image": "საქაღალდის ფონის სურათი",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "საქაღალდე წარმატებით წაიშალა",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "ფაილი არჩეული არაა",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "ფუნქციები აღმოჩენილი არაა",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "\"{{searchValue}}\"-ის გადმოწერა Ollama.com-იდან",
|
||||
"Pull a model from Ollama.com": "მოდელის გადმოწერა Ollama.com-დან",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "მოთხოვნა",
|
||||
"Quick Actions": "სწრაფი მოქმედებები",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"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 message?": "Tetḥeqqeḍ tebɣiḍ ad tekkseḍ izen-a?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Tetḥeqqemt tebɣamt ad d-tekksemt akk iqecwalen iarkasen?",
|
||||
"Arena Models": "Timudmiwin n Arena",
|
||||
"Artifacts": "Tarkisant",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Tamlilt n useqdac amezwar",
|
||||
"Defaults": "",
|
||||
"Delete": "Kkes",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Kkes tamudemt",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Kkes akk idiwenniyen",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Suneɣ",
|
||||
"Drop any files here to upload": "Ssers-d ifuyla da akken ad ten-tessaliḍ",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. Tiyunin n wakud ameɣtu d 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "Akaram",
|
||||
"Folder Background Image": "Tugna n ugilal n ukaram",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Akaram-nni yettwakkes akken iwata",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Ulac afaylu i yettwafernen",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Awway n \"{{searchValue}}\" seg Ollama.com",
|
||||
"Pull a model from Ollama.com": "Zdem-d tamudemt seg Ollama.com",
|
||||
"Pull Model": "Zdem-d tamudemt",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Aneftaɣ n usirew n tuttra",
|
||||
"Querying": "",
|
||||
"Quick Actions": "Tigawin tiruradin",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "정말 이 채널을 삭제하시겠습니까?",
|
||||
"Are you sure you want to delete this message?": "정말 이 메시지를 삭제하시겠습니까?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "정말 보관된 모든 채팅을 보관 해제하시겠습니까?",
|
||||
"Arena Models": "Arena 모델",
|
||||
"Artifacts": "아티팩트",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "기본 사용자 역할",
|
||||
"Defaults": "",
|
||||
"Delete": "삭제",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "모델 삭제",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "모든 채팅 삭제",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "그리기",
|
||||
"Drop any files here to upload": "여기에 파일을 끌어다 놓아 업로드하세요",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "예: '30초','10분'. 올바른 시간 단위는 '초', '분', '시'입니다.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "채팅 입력창에 포커스",
|
||||
"Folder": "폴더",
|
||||
"Folder Background Image": "폴더 배경 이미지",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "성공적으로 폴더가 삭제되었습니다",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "파일이 선택되지 않았습니다",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "함수를 찾을 수 없습니다",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com에서 \"{{searchValue}}\" 가져오기",
|
||||
"Pull a model from Ollama.com": "Ollama.com에서 모델 가져오기(pull)",
|
||||
"Pull Model": "모델 pull",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "쿼리 생성 프롬프트",
|
||||
"Querying": "쿼리 진행중",
|
||||
"Quick Actions": "빠른 작업",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "",
|
||||
"Artifacts": "",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Numatytoji naudotojo rolė",
|
||||
"Defaults": "",
|
||||
"Delete": "ištrinti",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Ištrinti modėlį",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Ištrinti visus pokalbius",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "pvz. '30s', '10m'. Laiko vienetai yra 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Nėra pasirinktų dokumentų",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Rasti \"{{searchValue}}\" iš Ollama.com",
|
||||
"Pull a model from Ollama.com": "Gauti modelį iš Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"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 message?": "Vai tiešām vēlaties dzēst šo ziņojumu?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Vai tiešām vēlaties atarhivēt visas arhivētās tērzēšanas?",
|
||||
"Arena Models": "Arēnas modeļi",
|
||||
"Artifacts": "Artefakti",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Noklusējuma lietotāja loma",
|
||||
"Defaults": "",
|
||||
"Delete": "Dzēst",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Dzēst modeli",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Dzēst visas tērzēšanas",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "Lejupielādē statistiku...",
|
||||
"Draw": "Zīmēt",
|
||||
"Drop any files here to upload": "Nometiet jebkurus failus šeit, lai augšupielādētu",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "DuckDuckGo",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "piem., '30s','10m'. Derīgas laika vienības ir 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "Fokusēt tērzēšanas ievadi",
|
||||
"Folder": "Mape",
|
||||
"Folder Background Image": "Mapes fona attēls",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Mape veiksmīgi dzēsta",
|
||||
"Folder Max File Count": "Mapes maksimālais failu skaits",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Fails nav izvēlēts",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "Šajā zināšanu bāzē nav failu.",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "Funkcijas nav atrastas",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Lejupielādēt \"{{searchValue}}\" no Ollama.com",
|
||||
"Pull a model from Ollama.com": "Lejupielādēt modeli no Ollama.com",
|
||||
"Pull Model": "Lejupielādēt modeli",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Vaicājuma ģenerēšanas uzvedne",
|
||||
"Querying": "Vaicā",
|
||||
"Quick Actions": "Ātrās darbības",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "",
|
||||
"Artifacts": "",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Peranan Pengguna Lalai",
|
||||
"Defaults": "",
|
||||
"Delete": "Padam",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Padam Model",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Padam Semua Perbualan",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "cth '30s','10m'. Unit masa yang sah ialah 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Tiada fail dipilih",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Tarik \"{{ searchValue }}\" daripada Ollama.com",
|
||||
"Pull a model from Ollama.com": "Tarik model dari Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"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 message?": "Er du sikker på at du vil slette denne meldingen?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Er du sikker på at du vil oppheve arkiveringen av alle arkiverte chatter?",
|
||||
"Arena Models": "Arena-modeller",
|
||||
"Artifacts": "Artifakter",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Standard brukerrolle",
|
||||
"Defaults": "",
|
||||
"Delete": "Slett",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Slett en modell",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Slett alle chatter",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Tegne",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "f.eks. '30s','10m'. Gyldige tidsenheter er 's', 'm', 't'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Mappe slettet",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Ingen fil valgt",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Hent {{searchValue}} fra Ollama.com",
|
||||
"Pull a model from Ollama.com": "Hent en modell fra Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Ledetekst for genering av spørringer",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"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 message?": "Weet je zeker dat je dit bericht wil verwijderen?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Weet je zeker dat je alle gearchiveerde chats wil onarchiveren?",
|
||||
"Arena Models": "Arenamodellen",
|
||||
"Artifacts": "Artefacten",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Standaard gebruikersrol",
|
||||
"Defaults": "",
|
||||
"Delete": "Verwijderen",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Verwijder een model",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Verwijder alle chats",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Teken",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "bijv. '30s', '10m'. Geldige tijdseenheden zijn 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Map succesvol verwijderd",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Geen bestand geselecteerd",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Haal \"{{searchValue}}\" uit Ollama.com",
|
||||
"Pull a model from Ollama.com": "Haal een model van Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Vraaggeneratieprompt",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "",
|
||||
"Artifacts": "",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "ਮੂਲ ਉਪਭੋਗਤਾ ਭੂਮਿਕਾ",
|
||||
"Defaults": "",
|
||||
"Delete": "ਮਿਟਾਓ",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "ਇੱਕ ਮਾਡਲ ਮਿਟਾਓ",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "ਸਾਰੀਆਂ ਚੈਟਾਂ ਨੂੰ ਮਿਟਾਓ",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ਉਦਾਹਰਣ ਲਈ '30ਸ','10ਮਿ'. ਸਹੀ ਸਮਾਂ ਇਕਾਈਆਂ ਹਨ 'ਸ', 'ਮ', 'ਘੰ'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "ਓਲਾਮਾ.ਕਾਮ ਤੋਂ \"{{searchValue}}\" ਖਿੱਚੋ",
|
||||
"Pull a model from Ollama.com": "ਓਲਾਮਾ.ਕਾਮ ਤੋਂ ਇੱਕ ਮਾਡਲ ਖਿੱਚੋ",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "Czy na pewno chcesz usunąć ten kanał?",
|
||||
"Are you sure you want to delete this message?": "Czy na pewno chcesz usunąć tę wiadomość?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Czy na pewno chcesz przywrócić wszystkie czaty?",
|
||||
"Arena Models": "Modele Arena",
|
||||
"Artifacts": "Artefakty",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Domyślna rola użytkownika",
|
||||
"Defaults": "",
|
||||
"Delete": "Usuń",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Usuń model",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Usuń wszystkie czaty",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "Pobieranie statystyk...",
|
||||
"Draw": "Remis",
|
||||
"Drop any files here to upload": "Upuść pliki tutaj, aby przesłać",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "DuckDuckGo",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "np. '30s','10m'. Jednostki: 's' (sek), 'm' (min), 'h' (godz).",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "Skupienie na polu czatu",
|
||||
"Folder": "Folder",
|
||||
"Folder Background Image": "Tło folderu",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Folder usunięty pomyślnie",
|
||||
"Folder Max File Count": "Maks. liczba plików w folderze",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Nie wybrano pliku",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "Brak plików w tej bazie wiedzy.",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "Nie znaleziono funkcji",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Pobierz \"{{searchValue}}\" z Ollama.com",
|
||||
"Pull a model from Ollama.com": "Pobierz model z Ollama.com",
|
||||
"Pull Model": "Pobierz Model",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Prompt generowania zapytania",
|
||||
"Querying": "Odpytywanie",
|
||||
"Quick Actions": "Szybkie akcje",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"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 message?": "Tem certeza de que deseja excluir esta mensagem?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "Tem certeza de que deseja excluir esta versão? As versões filhas serão vinculadas novamente à versão pai.",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Você tem certeza que deseja desarquivar todos os chats arquivados?",
|
||||
"Arena Models": "Arena de Modelos",
|
||||
"Artifacts": "Artefatos",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Padrão para novos usuários",
|
||||
"Defaults": "Padrões",
|
||||
"Delete": "Excluir",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Excluir um modelo",
|
||||
"Delete All": "Excluir tudo",
|
||||
"Delete All Chats": "Excluir Todos os Chats",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "Baixando estatísticas...",
|
||||
"Draw": "Empate",
|
||||
"Drop any files here to upload": "Solte qualquer arquivo aqui para fazer upload",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "Solte os arquivos aqui para fazer upload",
|
||||
"DuckDuckGo": "DuckDuckGo",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "Foco na janela do Chat",
|
||||
"Folder": "Pasta",
|
||||
"Folder Background Image": "Imagem de fundo da pasta",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Pasta excluída com sucesso",
|
||||
"Folder Max File Count": "Contagem máxima de arquivos por pasta",
|
||||
"Folder name": "Nome da pasta",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Nenhum arquivo selecionado",
|
||||
"No files found": "Nenhum arquivo encontrado",
|
||||
"No files in this knowledge base.": "Não existem arquivos nesta base de conhecimento.",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "Nenhuma função encontrada",
|
||||
"No groups found": "Nenhum grupo encontrado",
|
||||
"No history available": "Não há histórico disponível.",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Obter \"{{searchValue}}\" de Ollama.com",
|
||||
"Pull a model from Ollama.com": "Obter um modelo de Ollama.com",
|
||||
"Pull Model": "Obter Modelo",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Prompt de Geração de Consulta",
|
||||
"Querying": "Consultando",
|
||||
"Quick Actions": "Ações rápidas",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "",
|
||||
"Artifacts": "",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Função de Utilizador Padrão",
|
||||
"Defaults": "",
|
||||
"Delete": "Apagar",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Apagar um modelo",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Apagar todas as conversas",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Puxar \"{{searchValue}}\" do Ollama.com",
|
||||
"Pull a model from Ollama.com": "Puxar um modelo do Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"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 message?": "Ești sigur că vrei să ștergi acest mesaj?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Ești sigur că vrei să dezarhivezi toate conversațiile arhivate?",
|
||||
"Arena Models": "Arena Models",
|
||||
"Artifacts": "Artefacte",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Rolul Implicit al Utilizatorului",
|
||||
"Defaults": "",
|
||||
"Delete": "Șterge",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Șterge un model",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Șterge Toate Conversațiile",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Desenează",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "de ex. '30s', '10m'. Unitățile de timp valide sunt 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Folder șters cu succes",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Nu a fost selectat niciun fișier",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Extrage \"{{searchValue}}\" de pe Ollama.com",
|
||||
"Pull a model from Ollama.com": "Extrage un model de pe Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "Вы уверены, что хотите удалить этот канал?",
|
||||
"Are you sure you want to delete this message?": "Вы уверены, что хотите удалить это сообщение?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Вы уверены, что хотите разархивировать все заархивированные чаты?",
|
||||
"Arena Models": "Арена моделей",
|
||||
"Artifacts": "Артефакты",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Роль пользователя по умолчанию",
|
||||
"Defaults": "",
|
||||
"Delete": "Удалить",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Удалить модель",
|
||||
"Delete All": "Удалить ВСЕ",
|
||||
"Delete All Chats": "Удалить ВСЕ Чаты",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Рисовать",
|
||||
"Drop any files here to upload": "Переместите сюда любые файлы для загрузки",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "например, '30s','10m'. Допустимые единицы времени: 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "Фоновое изображение папки",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Папка успешно удалена",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Файлы не выбраны",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Загрузить \"{{searchValue}}\" с Ollama.com",
|
||||
"Pull a model from Ollama.com": "Загрузить модель с Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Запрос на генерацию промпта",
|
||||
"Querying": "Запрос",
|
||||
"Quick Actions": "Быстрые действия",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "Arena modely",
|
||||
"Artifacts": "Artefakty",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Predvolená rola užívateľa",
|
||||
"Defaults": "",
|
||||
"Delete": "Odstrániť",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Odstrániť model.",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Odstrániť všetky konverzácie",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Nakresliť",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "napr. '30s','10m'. Platné časové jednotky sú 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "Priečinok",
|
||||
"Folder Background Image": "Obrázok pozadia priečinku",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Priečinok bol úspešne vymazaný",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Nebola vybratá žiadna súbor",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Stiahnite \"{{searchValue}}\" z Ollama.com",
|
||||
"Pull a model from Ollama.com": "Stiahnite model z Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "Да ли сигурно желите обрисати овај канал?",
|
||||
"Are you sure you want to delete this message?": "Да ли сигурно желите обрисати ову поруку?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Да ли сигурно желите деархивирати све архиве?",
|
||||
"Arena Models": "Модели са Арене",
|
||||
"Artifacts": "Артефакти",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Подразумевана улога корисника",
|
||||
"Defaults": "",
|
||||
"Delete": "Обриши",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Обриши модел",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Обриши сва ћаскања",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Нацртај",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "нпр. '30s', '10m'. Важеће временске јединице су 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Повуците \"{{searchValue}}\" са Ollama.com",
|
||||
"Pull a model from Ollama.com": "Повуците модел са Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"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 message?": "Är du säker på att du vill radera detta meddelande?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Är du säker på att du vill avarkivera alla arkiverade chattar?",
|
||||
"Arena Models": "Arenamodeller",
|
||||
"Artifacts": "Artefakter",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Standardanvändarroll",
|
||||
"Defaults": "",
|
||||
"Delete": "Radera",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Ta bort en modell",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Ta bort alla chattar",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Rita",
|
||||
"Drop any files here to upload": "Släpp alla filer här för att ladda upp",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "t.ex. '30s', '10m'. Giltiga tidsenheter är 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "Mapp",
|
||||
"Folder Background Image": "Bakgrundsbild till mappen",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Mappen har tagits bort",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Ingen fil vald",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "Inga funktioner hittades",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Ladda ner \"{{searchValue}}\" från Ollama.com",
|
||||
"Pull a model from Ollama.com": "Ladda ner en modell från Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Prompt för frågegenerering",
|
||||
"Querying": "Frågar",
|
||||
"Quick Actions": "Snabbåtgärder",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "คุณแน่ใจหรือว่าต้องการลบช่องนี้?",
|
||||
"Are you sure you want to delete this message?": "คุณแน่ใจหรือว่าต้องการลบข้อความนี้?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "คุณแน่ใจหรือว่าต้องการยกเลิกการเก็บถาวรแชททั้งหมด?",
|
||||
"Arena Models": "โมเดลใน Arena",
|
||||
"Artifacts": "Artifacts",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "บทบาทผู้ใช้เริ่มต้น",
|
||||
"Defaults": "",
|
||||
"Delete": "ลบ",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "ลบโมเดล",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "ลบการแชททั้งหมด",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "วาด",
|
||||
"Drop any files here to upload": "วางไฟล์ที่นี่เพื่ออัปโหลด",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "เช่น '30s', '10m' หน่วยเวลาที่ใช้ได้คือ 's', 'm', 'h'",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "โฟกัสช่องป้อนแชท",
|
||||
"Folder": "โฟลเดอร์",
|
||||
"Folder Background Image": "รูปภาพพื้นหลังโฟลเดอร์",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "ลบโฟลเดอร์สำเร็จแล้ว",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "ไม่ได้เลือกไฟล์",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "ไม่พบฟังก์ชัน",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "ดึง \"{{searchValue}}\" จาก Ollama.com",
|
||||
"Pull a model from Ollama.com": "ดึงโมเดลจาก Ollama.com",
|
||||
"Pull Model": "ดึงโมเดล",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "พรอมต์สร้างคิวรี",
|
||||
"Querying": "กำลังค้นหา",
|
||||
"Quick Actions": "การกระทำด่วน",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "",
|
||||
"Artifacts": "",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "",
|
||||
"Defaults": "",
|
||||
"Delete": "Öçür",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Ähli Çatlary Öçür",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "",
|
||||
"Pull a model from Ollama.com": "",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "Bu kanalı silmek istediğinizden emin misiniz?",
|
||||
"Are you sure you want to delete this message?": "Bu mesajı silmek istediğinizden emin misiniz?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "Bu sürümü silmek istediğinizden emin misiniz? Alt sürümler bu sürümün üst sürümüne yeniden bağlanacaktır.",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Arşivlenmiş tüm sohbetlerin arşivini kaldırmak istediğinizden emin misiniz?",
|
||||
"Arena Models": "Arena Modelleri",
|
||||
"Artifacts": "Eserler",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Varsayılan Kullanıcı Rolü",
|
||||
"Defaults": "Varsayılanlar",
|
||||
"Delete": "Sil",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Bir modeli sil",
|
||||
"Delete All": "Tümünü Sil",
|
||||
"Delete All Chats": "Tüm Sohbetleri Sil",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "İstatistikler indiriliyor...",
|
||||
"Draw": "Çiz",
|
||||
"Drop any files here to upload": "Yüklemek için dosyaları buraya bırakın",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "Yüklemek için dosyaları buraya bırakın",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "örn. '30s', '10m'. Geçerli zaman birimleri 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "Klasör",
|
||||
"Folder Background Image": "Klasör Arka Plan Resmi",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Klasör başarıyla silindi",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Hiçbir dosya seçilmedi",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com'dan \"{{searchValue}}\" çekin",
|
||||
"Pull a model from Ollama.com": "Ollama.com'dan bir model çekin",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Sorgu Oluşturma Promptu",
|
||||
"Querying": "",
|
||||
"Quick Actions": "Hızlı Eylemler",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "بۇ قانالنى ئۆچۈرەمسىز؟",
|
||||
"Are you sure you want to delete this message?": "بۇ ئۇچۇرنى ئۆچۈرەمسىز؟",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "بارلىق ئارخىپلانغان سۆھبەتلەرنى قايتا ئەسلىگە كەلتۈرەمسىز؟",
|
||||
"Arena Models": "Arena مودېللىرى",
|
||||
"Artifacts": "ئۇزۇقلار",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "كۆڭۈلدىكى ئىشلەتكۈچى رولى",
|
||||
"Defaults": "",
|
||||
"Delete": "ئۆچۈرۈش",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "مودېل ئۆچۈرۈش",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "بارلىق سۆھبەتلەرنى ئۆچۈرۈش",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "سىزىش",
|
||||
"Drop any files here to upload": "ھەر قانداق ھۆججەتنى بۇ يەرگە قويۇپ يۈكلەڭ",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "مەسىلەن: '30s', '10m'. توغرا ۋاقىت بىرلىكى: 's' (سېكۇنت), 'm' (مىنۇت), 'h' (سائەت).",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "قىسقۇچ مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "ھۆججەت تاللانمىدى",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com دىن \"{{searchValue}}\" نى تارتىش",
|
||||
"Pull a model from Ollama.com": "Ollama.com دىن مودېل تارتىش",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "ئىزدەش سۇئالى تۈرتكەسى",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "Ви впевнені, що хочете видалити цей канал?",
|
||||
"Are you sure you want to delete this message?": "Ви впевнені, що хочете видалити це повідомлення?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Ви впевнені, що хочете розархівувати усі архівовані чати?",
|
||||
"Arena Models": "Моделі Arena",
|
||||
"Artifacts": "Артефакти",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Роль користувача за замовчуванням",
|
||||
"Defaults": "",
|
||||
"Delete": "Видалити",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Видалити модель",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Видалити усі чати",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Малювати",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр., '30s','10m'. Дійсні одиниці часу: 'с', 'хв', 'г'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Папку успішно видалено",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Файл не обрано",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Завантажити \"{{searchValue}}\" з Ollama.com",
|
||||
"Pull a model from Ollama.com": "Завантажити модель з Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Підказка для генерації запиту",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "",
|
||||
"Are you sure you want to delete this message?": "",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "",
|
||||
"Arena Models": "ارینا ماڈلز",
|
||||
"Artifacts": "نوادرات",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "ڈیفالٹ صارف کا کردار",
|
||||
"Defaults": "",
|
||||
"Delete": "حذف کریں",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "ایک ماڈل حذف کریں",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "تمام چیٹس حذف کریں",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "ڈرائنگ کریں",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "مثلاً '30s'، '10m' درست وقت کی اکائیاں ہیں 's'، 'm'، 'h'",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "پوشہ کامیابی سے حذف ہو گیا",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "کوئی فائل منتخب نہیں کی گئی",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com سے \"{{searchValue}}\" کو کھینچیں",
|
||||
"Pull a model from Ollama.com": "Ollama.com سے ماڈل حاصل کریں",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "Ҳақиқатан ҳам бу канални ўчириб ташламоқчимисиз?",
|
||||
"Are you sure you want to delete this message?": "Ҳақиқатан ҳам бу хабарни ўчириб ташламоқчимисиз?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Ҳақиқатан ҳам барча архивланган чатларни архивдан чиқармоқчимисиз?",
|
||||
"Arena Models": "Арена моделлари",
|
||||
"Artifacts": "Артефактлар",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Стандарт фойдаланувчи роли",
|
||||
"Defaults": "",
|
||||
"Delete": "Ўчириш",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Моделни ўчириш",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Барча суҳбатларни ўчириш",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Чизиш",
|
||||
"Drop any files here to upload": "Юклаш учун исталган файлни шу ерга ташланг",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "масалан. 30s, 10m. Яроқли вақт бирликлари 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Жилд муваффақиятли ўчирилди",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Ҳеч қандай файл танланмаган",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.cом сайтидан “{{сеарчВалуе}}”ни тортинг",
|
||||
"Pull a model from Ollama.com": "Ollama.cом дан моделни тортинг",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Сўровни яратиш таклифи",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "Haqiqatan ham bu kanalni oʻchirib tashlamoqchimisiz?",
|
||||
"Are you sure you want to delete this message?": "Haqiqatan ham bu xabarni oʻchirib tashlamoqchimisiz?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Haqiqatan ham barcha arxivlangan chatlarni arxivdan chiqarmoqchimisiz?",
|
||||
"Arena Models": "Arena modellari",
|
||||
"Artifacts": "Artefaktlar",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Odatiy foydalanuvchi roli",
|
||||
"Defaults": "",
|
||||
"Delete": "Oʻchirish",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Modelni o'chirish",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Barcha suhbatlarni o'chirish",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Chizish",
|
||||
"Drop any files here to upload": "Yuklash uchun istalgan faylni shu yerga tashlang",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "masalan. '30s', '10m'. Yaroqli vaqt birliklari 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Jild muvaffaqiyatli oʻchirildi",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Hech qanday fayl tanlanmagan",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Ollama.com saytidan “{{searchValue}}”ni torting",
|
||||
"Pull a model from Ollama.com": "Ollama.com dan modelni torting",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "So'rovni yaratish taklifi",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"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 message?": "Bạn có chắc chắn muốn xóa tin nhắn này không?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "Bạn có chắc chắn muốn bỏ lưu trữ tất cả các cuộc trò chuyện đã lưu trữ không?",
|
||||
"Arena Models": "Các Mô hình Arena",
|
||||
"Artifacts": "Kết quả tạo ra",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "Vai trò mặc định",
|
||||
"Defaults": "",
|
||||
"Delete": "Xóa",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "Xóa mô hình",
|
||||
"Delete All": "",
|
||||
"Delete All Chats": "Xóa mọi cuộc Chat",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "",
|
||||
"Draw": "Vẽ",
|
||||
"Drop any files here to upload": "",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "",
|
||||
"DuckDuckGo": "",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "vd: '30s','10m'. Đơn vị thời gian hợp lệ là 's', 'm', 'h'.",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "",
|
||||
"Folder": "",
|
||||
"Folder Background Image": "",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "Xóa thư mục thành công",
|
||||
"Folder Max File Count": "",
|
||||
"Folder name": "",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "Chưa có tệp nào được chọn",
|
||||
"No files found": "",
|
||||
"No files in this knowledge base.": "",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "",
|
||||
"No groups found": "",
|
||||
"No history available": "",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "Tải \"{{searchValue}}\" từ Ollama.com",
|
||||
"Pull a model from Ollama.com": "Tải mô hình từ Ollama.com",
|
||||
"Pull Model": "",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "Prompt Tạo Truy vấn",
|
||||
"Querying": "",
|
||||
"Quick Actions": "",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "您确认要删除此频道吗?",
|
||||
"Are you sure you want to delete this message?": "您确认要删除此消息吗?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "您确认要删除此版本吗?其子版本将重新链接到该版本的上一级。",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "您确认要取消所有已归档的对话吗?",
|
||||
"Arena Models": "启用竞技场匿名评价模型",
|
||||
"Artifacts": "产物",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "默认用户角色",
|
||||
"Defaults": "默认值",
|
||||
"Delete": "删除",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "删除模型",
|
||||
"Delete All": "全部删除",
|
||||
"Delete All Chats": "删除所有对话记录",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "正在下载统计数据...",
|
||||
"Draw": "平局",
|
||||
"Drop any files here to upload": "拖拽文件至此上传",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "将文件拖到此处即可上传",
|
||||
"DuckDuckGo": "DuckDuckGo",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例如:“30s”,“10m”。有效的时间单位包括:“s”(秒), “m”(分), “h”(时)",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "聚焦对话框",
|
||||
"Folder": "分组",
|
||||
"Folder Background Image": "分组背景图",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "分组删除成功",
|
||||
"Folder Max File Count": "分组最大文件数量",
|
||||
"Folder name": "文件夹名称",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "未选中文件",
|
||||
"No files found": "未找到文件",
|
||||
"No files in this knowledge base.": "此知识库中没有文件。",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "未找到函数",
|
||||
"No groups found": "暂无权限组",
|
||||
"No history available": "暂无历史记录",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "从 Ollama.com 下载 “{{searchValue}}”",
|
||||
"Pull a model from Ollama.com": "从 Ollama.com 下载模型",
|
||||
"Pull Model": "下载模型",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "查询生成提示词",
|
||||
"Querying": "查询中",
|
||||
"Quick Actions": "快捷操作",
|
||||
|
||||
@@ -183,6 +183,7 @@
|
||||
"Are you sure you want to delete this channel?": "您確定要刪除此頻道嗎?",
|
||||
"Are you sure you want to delete this message?": "您確定要刪除此訊息嗎?",
|
||||
"Are you sure you want to delete this version? Child versions will be relinked to this version's parent.": "您確定要刪除此版本嗎?子版本將重新連結至上一層版本。",
|
||||
"Are you sure you want to delete this?": "",
|
||||
"Are you sure you want to unarchive all archived chats?": "您確定要解除封存所有封存的對話記錄嗎?",
|
||||
"Arena Models": "競技場模型",
|
||||
"Artifacts": "產物",
|
||||
@@ -486,6 +487,7 @@
|
||||
"Default User Role": "預設使用者角色",
|
||||
"Defaults": "預設值",
|
||||
"Delete": "刪除",
|
||||
"Delete {{name}}": "",
|
||||
"Delete a model": "刪除模型",
|
||||
"Delete All": "全部刪除",
|
||||
"Delete All Chats": "刪除所有對話紀錄",
|
||||
@@ -578,6 +580,7 @@
|
||||
"Downloading stats...": "正在下載統計資料...",
|
||||
"Draw": "平手",
|
||||
"Drop any files here to upload": "拖曳檔案至此處進行上傳",
|
||||
"Drop files here": "",
|
||||
"Drop files here to upload": "將檔案拖曳至此即可上傳",
|
||||
"DuckDuckGo": "DuckDuckGo",
|
||||
"e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例如:'30s'、'10m'。有效的時間單位為 's'、'm'、'h'。",
|
||||
@@ -897,6 +900,7 @@
|
||||
"Focus Chat Input": "聚焦對話輸入框",
|
||||
"Folder": "分組",
|
||||
"Folder Background Image": "分組背景圖",
|
||||
"Folder created successfully": "",
|
||||
"Folder deleted successfully": "成功刪除分組",
|
||||
"Folder Max File Count": "分組最大檔案數量",
|
||||
"Folder name": "資料夾名稱",
|
||||
@@ -1304,6 +1308,7 @@
|
||||
"No file selected": "未選取檔案",
|
||||
"No files found": "找不到檔案",
|
||||
"No files in this knowledge base.": "此知識庫中沒有檔案。",
|
||||
"No files yet. Upload files or run Python code to create them.": "",
|
||||
"No functions found": "未找到函式",
|
||||
"No groups found": "暫無權限群組",
|
||||
"No history available": "暫無歷史紀錄",
|
||||
@@ -1511,6 +1516,7 @@
|
||||
"Pull \"{{searchValue}}\" from Ollama.com": "從 Ollama.com 下載「{{searchValue}}」",
|
||||
"Pull a model from Ollama.com": "從 Ollama.com 下載模型",
|
||||
"Pull Model": "下載模型",
|
||||
"Pyodide file browser": "",
|
||||
"Query Generation Prompt": "查詢生成提示詞",
|
||||
"Querying": "查詢中",
|
||||
"Quick Actions": "快速操作",
|
||||
|
||||
@@ -123,9 +123,7 @@ function fsUploadFiles(files: { name: string; data: ArrayBuffer }[], dir = '/mnt
|
||||
function fsList(path: string) {
|
||||
const entries: { name: string; type: 'file' | 'directory'; size: number }[] = [];
|
||||
try {
|
||||
const items = self.pyodide.FS.readdir(path).filter(
|
||||
(n: string) => n !== '.' && n !== '..'
|
||||
);
|
||||
const items = self.pyodide.FS.readdir(path).filter((n: string) => n !== '.' && n !== '..');
|
||||
for (const name of items) {
|
||||
try {
|
||||
const stat = self.pyodide.FS.stat(`${path}/${name}`);
|
||||
@@ -155,9 +153,7 @@ function fsDelete(path: string) {
|
||||
const stat = self.pyodide.FS.stat(path);
|
||||
if (self.pyodide.FS.isDir(stat.mode)) {
|
||||
// Recursively delete directory contents
|
||||
const items = self.pyodide.FS.readdir(path).filter(
|
||||
(n: string) => n !== '.' && n !== '..'
|
||||
);
|
||||
const items = self.pyodide.FS.readdir(path).filter((n: string) => n !== '.' && n !== '..');
|
||||
for (const item of items) {
|
||||
fsDelete(`${path}/${item}`);
|
||||
}
|
||||
@@ -178,7 +174,11 @@ function fsMkdir(path: string) {
|
||||
// Code execution
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
async function executeCode(id: string, code: string, files?: { name: string; data: ArrayBuffer }[]) {
|
||||
async function executeCode(
|
||||
id: string,
|
||||
code: string,
|
||||
files?: { name: string; data: ArrayBuffer }[]
|
||||
) {
|
||||
self.stdout = null;
|
||||
self.stderr = null;
|
||||
self.result = null;
|
||||
@@ -282,7 +282,11 @@ self.onmessage = async (event) => {
|
||||
const buffer = fsRead(data.path);
|
||||
self.postMessage({ id, type: 'fs:read', data: buffer }, { transfer: [buffer] });
|
||||
} catch (err: unknown) {
|
||||
self.postMessage({ id, type: 'fs:read', error: err instanceof Error ? err.message : String(err) });
|
||||
self.postMessage({
|
||||
id,
|
||||
type: 'fs:read',
|
||||
error: err instanceof Error ? err.message : String(err)
|
||||
});
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user