chore: format

This commit is contained in:
Timothy Jaeryang Baek
2026-04-17 14:28:18 +09:00
parent e8e655d0de
commit 4113b15a60
79 changed files with 501 additions and 117 deletions
-1
View File
@@ -16,7 +16,6 @@ This is to ensure large feature PRs are discussed with the community first, befo
The most impactful way to contribute to Open WebUI is through well-written bug reports, detailed feature discussions, and thoughtful ideas. These directly shape the project. If you do open a pull request, please know that Open WebUI is held to the highest standard of code quality, consistency, and architectural coherence, and every line merged becomes something the core team must own, maintain, and support indefinitely. Submitted code may be refactored, rewritten, or used as inspiration for a different implementation. This is not a reflection of your work's quality. It is how we ensure that a small team can deeply understand and evolve every part of the codebase.
-->
**Before submitting, make sure you've checked the following:**
- [ ] **Target branch:** Verify that the pull request targets the `dev` branch. **PRs targeting `main` will be immediately closed.**
@@ -91,41 +91,41 @@ def upgrade():
original_chat_id = row.user_id.replace('shared-', '', 1)
# Verify original chat still exists
original = conn.execute(
sa.select(chat_t.c.user_id).where(chat_t.c.id == original_chat_id)
).fetchone()
original = conn.execute(sa.select(chat_t.c.user_id).where(chat_t.c.id == original_chat_id)).fetchone()
if not original:
continue
# Insert snapshot into shared_chat
conn.execute(shared_chat_t.insert().values(
id=share_token,
chat_id=original_chat_id,
user_id=original.user_id,
title=row.title,
chat=row.chat,
created_at=row.created_at,
updated_at=row.updated_at,
))
conn.execute(
shared_chat_t.insert().values(
id=share_token,
chat_id=original_chat_id,
user_id=original.user_id,
title=row.title,
chat=row.chat,
created_at=row.created_at,
updated_at=row.updated_at,
)
)
# Create user:*:read grant for backward compat
conn.execute(access_grant_t.insert().values(
id=str(uuid.uuid4()),
resource_type='shared_chat',
resource_id=original_chat_id,
principal_type='user',
principal_id='*',
permission='read',
created_at=row.created_at or int(time.time()),
))
conn.execute(
access_grant_t.insert().values(
id=str(uuid.uuid4()),
resource_type='shared_chat',
resource_id=original_chat_id,
principal_type='user',
principal_id='*',
permission='read',
created_at=row.created_at or int(time.time()),
)
)
# 3. Clean up old phantom rows
conn.execute(
chat_message_t.delete().where(
chat_message_t.c.chat_id.in_(
sa.select(chat_t.c.id).where(chat_t.c.user_id.like('shared-%'))
)
chat_message_t.c.chat_id.in_(sa.select(chat_t.c.id).where(chat_t.c.user_id.like('shared-%')))
)
)
conn.execute(chat_t.delete().where(chat_t.c.user_id.like('shared-%')))
@@ -147,18 +147,18 @@ def downgrade():
).fetchall()
for row in shared_rows:
conn.execute(chat_t.insert().values(
id=row.id,
user_id=f'shared-{row.chat_id}',
title=row.title,
chat=row.chat,
created_at=row.created_at,
updated_at=row.updated_at,
archived=False,
meta={},
))
conn.execute(
chat_t.insert().values(
id=row.id,
user_id=f'shared-{row.chat_id}',
title=row.title,
chat=row.chat,
created_at=row.created_at,
updated_at=row.updated_at,
archived=False,
meta={},
)
)
conn.execute(
access_grant_t.delete().where(access_grant_t.c.resource_type == 'shared_chat')
)
conn.execute(access_grant_t.delete().where(access_grant_t.c.resource_type == 'shared_chat'))
op.drop_table('shared_chat')
+1 -3
View File
@@ -723,9 +723,7 @@ class ChatTable:
"""Delegate to SharedChats for listing shared chats by user."""
from open_webui.models.shared_chats import SharedChats
return await SharedChats.get_by_user_id(
user_id, filter=filter, skip=skip, limit=limit, db=db
)
return await SharedChats.get_by_user_id(user_id, filter=filter, skip=skip, limit=limit, db=db)
async def get_chat_list_by_user_id(
self,
+5 -3
View File
@@ -299,15 +299,17 @@ class PromptsTable:
if dialect_name == 'sqlite':
tag_clause = text(
"EXISTS (SELECT 1 FROM json_each(prompt.tags) t WHERE LOWER(t.value) = :tag_val)"
'EXISTS (SELECT 1 FROM json_each(prompt.tags) t WHERE LOWER(t.value) = :tag_val)'
)
elif dialect_name == 'postgresql':
tag_clause = text(
"EXISTS (SELECT 1 FROM json_array_elements_text(prompt.tags) t WHERE LOWER(t) = :tag_val)"
'EXISTS (SELECT 1 FROM json_array_elements_text(prompt.tags) t WHERE LOWER(t) = :tag_val)'
)
else:
# Fallback: LIKE on serialised JSON text (ASCII-safe only)
tag_clause = func.lower(cast(Prompt.tags, String)).like(f'%{json.dumps(tag_lower, ensure_ascii=False)}%')
tag_clause = func.lower(cast(Prompt.tags, String)).like(
f'%{json.dumps(tag_lower, ensure_ascii=False)}%'
)
tag_lower = None
if tag_lower is not None:
+7 -22
View File
@@ -60,9 +60,7 @@ class SharedChatResponse(BaseModel):
class SharedChatsTable:
async def create(
self, chat_id: str, user_id: str, db: Optional[AsyncSession] = None
) -> Optional[SharedChatModel]:
async def create(self, chat_id: str, user_id: str, db: Optional[AsyncSession] = None) -> Optional[SharedChatModel]:
"""
Create a snapshot of the chat for link sharing.
Returns the SharedChatModel with the share token as its id.
@@ -92,9 +90,7 @@ class SharedChatsTable:
return SharedChatModel.model_validate(shared_chat)
async def update(
self, share_id: str, db: Optional[AsyncSession] = None
) -> Optional[SharedChatModel]:
async def update(self, share_id: str, db: Optional[AsyncSession] = None) -> Optional[SharedChatModel]:
"""
Re-snapshot: update the shared chat with the current state of the original chat.
"""
@@ -117,9 +113,7 @@ class SharedChatsTable:
await db.refresh(shared_chat)
return SharedChatModel.model_validate(shared_chat)
async def get_by_id(
self, share_id: str, db: Optional[AsyncSession] = None
) -> Optional[SharedChatModel]:
async def get_by_id(self, share_id: str, db: Optional[AsyncSession] = None) -> Optional[SharedChatModel]:
"""Get a shared chat by its share token."""
async with get_async_db_context(db) as db:
shared_chat = await db.get(SharedChat, share_id)
@@ -127,16 +121,11 @@ class SharedChatsTable:
return SharedChatModel.model_validate(shared_chat)
return None
async def get_by_chat_id(
self, chat_id: str, db: Optional[AsyncSession] = None
) -> Optional[SharedChatModel]:
async def get_by_chat_id(self, chat_id: str, db: Optional[AsyncSession] = None) -> Optional[SharedChatModel]:
"""Get the shared chat for a given original chat. Returns the most recent one."""
async with get_async_db_context(db) as db:
result = await db.execute(
select(SharedChat)
.filter_by(chat_id=chat_id)
.order_by(SharedChat.updated_at.desc())
.limit(1)
select(SharedChat).filter_by(chat_id=chat_id).order_by(SharedChat.updated_at.desc()).limit(1)
)
shared_chat = result.scalars().first()
if shared_chat:
@@ -194,9 +183,7 @@ class SharedChatsTable:
for sc in result.scalars().all()
]
async def delete_by_id(
self, share_id: str, db: Optional[AsyncSession] = None
) -> bool:
async def delete_by_id(self, share_id: str, db: Optional[AsyncSession] = None) -> bool:
"""Delete a shared chat by its share token."""
try:
async with get_async_db_context(db) as db:
@@ -206,9 +193,7 @@ class SharedChatsTable:
except Exception:
return False
async def delete_by_chat_id(
self, chat_id: str, db: Optional[AsyncSession] = None
) -> bool:
async def delete_by_chat_id(self, chat_id: str, db: Optional[AsyncSession] = None) -> bool:
"""Delete all shared chats for a given original chat."""
try:
async with get_async_db_context(db) as db:
+1 -1
View File
@@ -959,7 +959,7 @@ async def filter_accessible_collections(
# System meta-collection — never exposed to non-admins.
continue
elif name.startswith('file-'):
file_id = name[len('file-'):]
file_id = name[len('file-') :]
if await has_access_to_file(file_id=file_id, access_type=access_type, user=user):
validated.add(name)
elif name.startswith('user-memory-'):
+2 -9
View File
@@ -150,15 +150,8 @@ async def query_memory(
# same RELEVANCE_THRESHOLD used by RAG ensures only genuinely matching
# memories are surfaced (distances are normalised to 0→1, higher is
# better).
relevance_threshold = getattr(
request.app.state.config, 'RELEVANCE_THRESHOLD', 0.0
)
if (
results
and relevance_threshold > 0.0
and results.distances
and results.distances[0]
):
relevance_threshold = getattr(request.app.state.config, 'RELEVANCE_THRESHOLD', 0.0)
if results and relevance_threshold > 0.0 and results.distances and results.distances[0]:
from open_webui.retrieval.vector.main import SearchResult
filtered_ids = []
-1
View File
@@ -2365,7 +2365,6 @@ async def _validate_collection_access(collection_names: list[str], user, access_
)
class QueryDocForm(BaseModel):
collection_name: str
query: str
@@ -339,11 +339,8 @@ async def check_model_access(
raise HTTPException(status_code=403, detail='Model not found')
# Enforce access on chained base models
if not await has_base_model_access(
user.id, model_info, user_group_ids=user_group_ids
):
if not await has_base_model_access(user.id, model_info, user_group_ids=user_group_ids):
raise HTTPException(status_code=403, detail='Model not found')
else:
if user.role != 'admin':
raise HTTPException(status_code=403, detail='Model not found')
+52 -9
View File
@@ -452,6 +452,50 @@ def serialize_output(output: list) -> str:
# Already handled inline with function_call above
pass
elif item_type in ('web_search_call', 'file_search_call', 'computer_call'):
# OpenAI Responses API built-in server-side tool output items.
# These are emitted when the model uses native tools (web_search,
# file_search, computer_use) through the Responses API. Render as
# collapsible tool call blocks matching the function_call pattern.
if content and not content.endswith('\n'):
content += '\n'
call_id = item.get('id', '')
status = item.get('status', 'in_progress')
# Derive a human-readable display name
display_names = {
'web_search_call': 'Web Search',
'file_search_call': 'File Search',
'computer_call': 'Computer Use',
}
display_name = display_names.get(item_type, item_type)
# Extract a summary of what the tool did for the details body
summary_text = ''
if item_type == 'web_search_call':
action = item.get('action', {})
if isinstance(action, dict):
query = action.get('query', '')
if query:
summary_text = f'Query: {query}'
elif item_type == 'file_search_call':
queries = item.get('queries', [])
if queries:
summary_text = f'Queries: {", ".join(str(q) for q in queries)}'
elif item_type == 'computer_call':
action = item.get('action', {})
if isinstance(action, dict):
action_type = action.get('type', '')
if action_type:
summary_text = f'Action: {action_type}'
done = status == 'completed' or idx != len(output) - 1
if done:
content += f'<details type="tool_calls" done="true" id="{call_id}" name="{html.escape(display_name)}" arguments="">\n<summary>Tool Executed</summary>\n{html.escape(summary_text)}\n</details>\n'
else:
content += f'<details type="tool_calls" done="false" id="{call_id}" name="{html.escape(display_name)}" arguments="">\n<summary>Executing...</summary>\n</details>\n'
elif item_type == 'reasoning':
reasoning_content = ''
# Check for 'summary' (new structure) or 'content' (legacy/fallback)
@@ -2619,9 +2663,7 @@ async def process_chat_payload(request, form_data, user, metadata, model):
# Resolve terminal tools if terminal_id is set (outside tool_ids check
# so system terminals work even when no other tools are selected)
terminal_capability = (model.get('info', {}).get('meta', {}).get('capabilities') or {}).get(
'terminal', True
)
terminal_capability = (model.get('info', {}).get('meta', {}).get('capabilities') or {}).get('terminal', True)
if terminal_id and terminal_capability:
try:
terminal_result = await get_terminal_tools(
@@ -3110,11 +3152,13 @@ async def outlet_filter_handler(ctx):
# Append the full assistant message (content, output, usage, etc.)
if assistant_message:
message_list.append({
'id': message_id,
'role': 'assistant',
**assistant_message,
})
message_list.append(
{
'id': message_id,
'role': 'assistant',
**assistant_message,
}
)
else:
messages_map = await Chats.get_messages_map_by_chat_id(chat_id)
if not messages_map:
@@ -4221,7 +4265,6 @@ 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))
-1
View File
@@ -413,7 +413,6 @@ async def check_model_access(user, model, db=None):
raise Exception('Model not found')
async def get_filtered_models(models, user, db=None):
# Filter out models that the user does not have access to
if (
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "open-webui",
"version": "0.8.12",
"version": "0.9.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "open-webui",
"version": "0.8.12",
"version": "0.9.0",
"dependencies": {
"@azure/msal-browser": "^4.5.0",
"@codemirror/lang-javascript": "^6.2.2",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "open-webui",
"version": "0.8.12",
"version": "0.9.0",
"private": true,
"scripts": {
"dev": "npm run pyodide:fetch && vite dev --host",
+1 -5
View File
@@ -953,11 +953,7 @@ export const deleteSharedChatById = async (token: string, id: string) => {
return res;
};
export const updateChatAccessGrants = async (
token: string,
id: string,
accessGrants: object[]
) => {
export const updateChatAccessGrants = async (token: string, id: string, accessGrants: object[]) => {
let error = null;
const res = await fetch(`${WEBUI_API_BASE_URL}/chats/shared/${id}/access/update`, {
+13 -8
View File
@@ -496,11 +496,8 @@
);
let terminalCapableModels = [];
$: terminalCapableModels = (
atSelectedModel?.id ? [atSelectedModel.id] : selectedModels
).filter(
(model) =>
$models.find((m) => m.id === model)?.info?.meta?.capabilities?.terminal ?? true
$: terminalCapableModels = (atSelectedModel?.id ? [atSelectedModel.id] : selectedModels).filter(
(model) => $models.find((m) => m.id === model)?.info?.meta?.capabilities?.terminal ?? true
);
let toggleFilters = [];
@@ -1760,12 +1757,18 @@
<Tooltip content={filter?.name} placement="top">
<button
on:click|preventDefault={() => {
if (filter?.has_user_valves && ($_user?.role === 'admin' || ($_user?.permissions?.chat?.valves ?? true))) {
if (
filter?.has_user_valves &&
($_user?.role === 'admin' ||
($_user?.permissions?.chat?.valves ?? true))
) {
selectedValvesType = 'function';
selectedValvesItemId = filterId;
showValvesModal = true;
} else {
selectedFilterIds = selectedFilterIds.filter((id) => id !== filterId);
selectedFilterIds = selectedFilterIds.filter(
(id) => id !== filterId
);
}
}}
type="button"
@@ -1796,7 +1799,9 @@
on:click={(e) => {
e.stopPropagation();
e.preventDefault();
selectedFilterIds = selectedFilterIds.filter((id) => id !== filterId);
selectedFilterIds = selectedFilterIds.filter(
(id) => id !== filterId
);
}}
>
<XMark className="size-4" strokeWidth="1.75" />
@@ -155,11 +155,7 @@
{#if chat.share_id}
<div class="mt-3">
<AccessControl
bind:accessGrants
accessRoles={['read']}
onChange={saveAccessGrants}
/>
<AccessControl bind:accessGrants accessRoles={['read']} onChange={saveAccessGrants} />
</div>
{/if}
@@ -840,10 +840,10 @@
{/if}
{#if capabilities.terminal}
<div class="my-4">
<TerminalSelector bind:terminalId />
</div>
{/if}
<div class="my-4">
<TerminalSelector bind:terminalId />
</div>
{/if}
<div class="my-4">
<div class="flex w-full justify-between mb-1">
@@ -51,6 +51,7 @@
"Access Control": "",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "",
"Account": "الحساب",
"Account Activation Pending": "",
@@ -443,6 +444,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "أنسخ الرابط",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "",
@@ -1277,6 +1279,7 @@
"Model": "",
"Model '{{modelName}}' has been successfully downloaded.": "تم تحميل النموذج '{{modelName}}' بنجاح",
"Model '{{modelTag}}' is already in queue for downloading.": "النموذج '{{modelTag}}' موجود بالفعل في قائمة الانتظار للتحميل",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "نموذج {{modelName}} غير قادر على الرؤية",
"Model {{name}} is now {{status}}": "نموذج {{name}} هو الآن {{status}}",
@@ -1284,6 +1287,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1504,6 +1508,7 @@
"Password": "الباسورد",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF ملف (.pdf)",
"PDF Extract Images (OCR)": "PDF أستخرج الصور (OCR)",
@@ -1652,6 +1657,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "إعادة تقييم النموذج",
"Reset": "",
+6
View File
@@ -51,6 +51,7 @@
"Access Control": "التحكم في الوصول",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "متاح لجميع المستخدمين",
"Account": "الحساب",
"Account Activation Pending": "انتظار تفعيل الحساب",
@@ -443,6 +444,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "نسخ الرابط",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "نسخ إلى الحافظة",
@@ -1277,6 +1279,7 @@
"Model": "النموذج",
"Model '{{modelName}}' has been successfully downloaded.": "تم تحميل النموذج '{{modelName}}' بنجاح",
"Model '{{modelTag}}' is already in queue for downloading.": "النموذج '{{modelTag}}' موجود بالفعل في قائمة الانتظار للتحميل",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "نموذج {{modelName}} غير قادر على الرؤية",
"Model {{name}} is now {{status}}": "نموذج {{name}} هو الآن {{status}}",
@@ -1284,6 +1287,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "النموذج يقبل إدخالات الصور",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1504,6 +1508,7 @@
"Password": "الباسورد",
"Passwords do not match.": "",
"Paste Large Text as File": "الصق نصًا كبيرًا كملف",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF ملف (.pdf)",
"PDF Extract Images (OCR)": "PDF أستخرج الصور (OCR)",
@@ -1652,6 +1657,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "إعادة تقييم النموذج",
"Reset": "إعادة تعيين",
@@ -47,6 +47,7 @@
"Access Control": "Girişə nəzarət",
"Access Grants": "Giriş icazələri",
"Access List": "Giriş siyahısı",
"Access updated": "",
"Accessible to all users": "Bütün istifadəçilər üçün əlçatandır",
"Account": "Hesab",
"Account Activation Pending": "Hesabın aktivləşdirilməsi gözlənilir",
@@ -439,6 +440,7 @@
"Copy Last Response": "Sonuncu cavabı kopyala",
"Copy link": "Linki kopyala",
"Copy Link": "Linki Kopyala",
"Copy Path": "",
"Copy Prompt": "Göstərişi (Prompt) kopyala",
"Copy Share Link": "Paylaşım linkini kopyala",
"Copy to clipboard": "Mübadilə buferinə kopyala",
@@ -1273,6 +1275,7 @@
"Model": "Model",
"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' modeli uğurla yükləndi.",
"Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' modeli artıq yükləmə növbəsindədir.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "{{modelName}} modeli görüntünü tanıma (vision) qabiliyyətinə malik deyil",
"Model {{name}} is now {{status}}": "{{name}} modeli indi {{status}} statusundadır",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "{{name}} modeli artıq görünəndir",
"Model accepts file inputs": "Model fayl girişlərini qəbul edir",
"Model accepts image inputs": "Model şəkil girişlərini qəbul edir",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Model kod icra edə və hesablamalar apara bilər",
"Model can generate images based on text prompts": "Model mətn göstərişləri əsasında şəkillər yarada bilər",
"Model can search the web for information": "Model məlumat üçün vebdə axtarış edə bilər",
@@ -1500,6 +1504,7 @@
"Password": "Şifrə",
"Passwords do not match.": "Şifrələr uyğun gəlmir.",
"Paste Large Text as File": "Böyük mətni fayl kimi yapışdır",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF sənədi (.pdf)",
"PDF Extract Images (OCR)": "PDF-dən şəkillərin çıxarılması (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "Mövzuya cavab yaz...",
"Replying to {{NAME}}": "{{NAME}} adlı istifadəçiyə cavab verilir",
"required": "tələb olunur",
"Reranking Batch Size": "",
"Reranking Engine": "Yenidən sıralama mühərriki",
"Reranking Model": "Yenidən sıralama modeli",
"Reset": "Sıfırla",
@@ -47,6 +47,7 @@
"Access Control": "Контрол на достъпа",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Достъпно за всички потребители",
"Account": "Акаунт",
"Account Activation Pending": "Активирането на акаунта е в процес на изчакване",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Копиране на връзка",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Копиране в клипборда",
@@ -1273,6 +1275,7 @@
"Model": "Модел",
"Model '{{modelName}}' has been successfully downloaded.": "Моделът '{{modelName}}' беше успешно свален.",
"Model '{{modelTag}}' is already in queue for downloading.": "Моделът '{{modelTag}}' е вече в очакване за сваляне.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Моделът {{modelName}} не поддържа визуални възможности",
"Model {{name}} is now {{status}}": "Моделът {{name}} сега е {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "Моделът приема входни изображения",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1500,6 +1504,7 @@
"Password": "Парола",
"Passwords do not match.": "",
"Paste Large Text as File": "Поставете голям текст като файл",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF документ (.pdf)",
"PDF Extract Images (OCR)": "Извличане на изображения от PDF (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "Двигател за пренареждане",
"Reranking Model": "Модел за преподреждане",
"Reset": "Нулиране",
@@ -47,6 +47,7 @@
"Access Control": "",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "",
"Account": "একাউন্ট",
"Account Activation Pending": "",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "লিংক কপি করুন",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "",
@@ -1273,6 +1275,7 @@
"Model": "",
"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' মডেল সফলভাবে ডাউনলোড হয়েছে।",
"Model '{{modelTag}}' is already in queue for downloading.": "{{modelTag}} ডাউনলোডের জন্য আগে থেকেই অপেক্ষমান আছে।",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "মডেল {{modelName}} দৃষ্টি সক্ষম নয়",
"Model {{name}} is now {{status}}": "মডেল {{name}} এখন {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1500,6 +1504,7 @@
"Password": "পাসওয়ার্ড",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF ডকুমেন্ট (.pdf)",
"PDF Extract Images (OCR)": "পিডিএফ এর ছবি থেকে লেখা বের করুন (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "রির্যাক্টিং মডেল",
"Reset": "",
@@ -46,6 +46,7 @@
"Access Control": "འཛུལ་སྤྱོད་ཚོད་འཛིན།",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "བེད་སྤྱོད་མཁན་ཡོངས་ལ་འཛུལ་སྤྱོད་ཆོག་པ།",
"Account": "རྩིས་ཁྲ།",
"Account Activation Pending": "རྩིས་ཁྲ་སྒུལ་བསྐྱོད་སྒུག་བཞིན་པ།",
@@ -438,6 +439,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "སྦྲེལ་ཐག་འདྲ་བཤུས།",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "སྦྱར་སྡེར་དུ་འདྲ་བཤུས།",
@@ -1272,6 +1274,7 @@
"Model": "དཔེ་དབྱིབས།",
"Model '{{modelName}}' has been successfully downloaded.": "དཔེ་དབྱིབས། '{{modelName}}' ལེགས་པར་ཕབ་ལེན་བྱས་ཟིན།",
"Model '{{modelTag}}' is already in queue for downloading.": "དཔེ་དབྱིབས། '{{modelTag}}' ཕབ་ལེན་གྱི་སྒུག་ཐོ་ནང་ཡོད་ཟིན།",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "དཔེ་དབྱིབས། {{modelName}} ལ་མཐོང་ནུས་མེད།",
"Model {{name}} is now {{status}}": "དཔེ་དབྱིབས། {{name}} ད་ལྟ་ {{status}} ཡིན།",
@@ -1279,6 +1282,7 @@
"Model {{name}} is now visible": "དཔེ་དབྱིབས། {{name}} ད་ལྟ་མཐོང་ཐུབ།",
"Model accepts file inputs": "",
"Model accepts image inputs": "དཔེ་དབྱིབས་ཀྱིས་པར་གྱི་ནང་འཇུག་དང་ལེན་བྱེད།",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1499,6 +1503,7 @@
"Password": "གསང་གྲངས།",
"Passwords do not match.": "",
"Paste Large Text as File": "ཡིག་རྐྱང་ཆེན་པོ་ཡིག་ཆ་ལྟར་སྦྱོར་བ།",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF ཡིག་ཆ། (.pdf)",
"PDF Extract Images (OCR)": "PDF པར་འདོན་སྤེལ། (OCR)",
@@ -1647,6 +1652,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "བསྐྱར་སྒྲིག་དཔེ་དབྱིབས།",
"Reset": "སླར་སྒྲིག",
@@ -48,6 +48,7 @@
"Access Control": "",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "",
"Account": "Račun",
"Account Activation Pending": "",
@@ -440,6 +441,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Kopiraj vezu",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "",
@@ -1274,6 +1276,7 @@
"Model": "",
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' je uspješno preuzet.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je već u redu za preuzimanje.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} ne čita vizualne impute",
"Model {{name}} is now {{status}}": "Model {{name}} sada je {{status}}",
@@ -1281,6 +1284,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1501,6 +1505,7 @@
"Password": "Lozinka",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF dokument (.pdf)",
"PDF Extract Images (OCR)": "PDF izdvajanje slika (OCR)",
@@ -1649,6 +1654,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "Model za ponovno rangiranje",
"Reset": "",
@@ -48,6 +48,7 @@
"Access Control": "Control d'accés",
"Access Grants": "Assignacions d'accés",
"Access List": "Llista d'accés",
"Access updated": "",
"Accessible to all users": "Accessible a tots els usuaris",
"Account": "Compte",
"Account Activation Pending": "Activació del compte pendent",
@@ -440,6 +441,7 @@
"Copy Last Response": "Copiar la darrera resposta",
"Copy link": "Copiar l'enllaç",
"Copy Link": "Copiar l'enllaç",
"Copy Path": "",
"Copy Prompt": "Copiar la indicació",
"Copy Share Link": "Copiar l'enllaç de compartició",
"Copy to clipboard": "Copiar al porta-retalls",
@@ -1274,6 +1276,7 @@
"Model": "Model",
"Model '{{modelName}}' has been successfully downloaded.": "El model '{{modelName}}' s'ha descarregat correctament.",
"Model '{{modelTag}}' is already in queue for downloading.": "El model '{{modelTag}}' ja està en cua per ser descarregat.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "El model {{modelName}} s'ha eliminat correctament",
"Model {{modelName}} is not vision capable": "El model {{modelName}} no és capaç de visió",
"Model {{name}} is now {{status}}": "El model {{name}} ara és {{status}}",
@@ -1281,6 +1284,7 @@
"Model {{name}} is now visible": "El model {{name}} està ara visible",
"Model accepts file inputs": "El model accepta entrada de fitxers",
"Model accepts image inputs": "El model accepta entrades d'imatge",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "El model pot executar codi i realitzar càlculs",
"Model can generate images based on text prompts": "El model pot generar imatges basades en les indicacions de text",
"Model can search the web for information": "El model pot cercar informació a la web",
@@ -1501,6 +1505,7 @@
"Password": "Contrasenya",
"Passwords do not match.": "Les contrasenyes no coincideixen",
"Paste Large Text as File": "Enganxa un text llarg com a fitxer",
"Path copied": "",
"Paused": "Pausat",
"PDF document (.pdf)": "Document PDF (.pdf)",
"PDF Extract Images (OCR)": "Extreu imatges del PDF (OCR)",
@@ -1649,6 +1654,7 @@
"Reply to thread...": "Respondra al fil...",
"Replying to {{NAME}}": "Responent a {{NAME}}",
"required": "necessari",
"Reranking Batch Size": "",
"Reranking Engine": "Motor de valoració",
"Reranking Model": "Model de reavaluació",
"Reset": "Restableix",
@@ -47,6 +47,7 @@
"Access Control": "",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "",
"Account": "Account",
"Account Activation Pending": "",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "",
@@ -1273,6 +1275,7 @@
"Model": "",
"Model '{{modelName}}' has been successfully downloaded.": "Ang modelo'{{modelName}}' malampuson nga na-download.",
"Model '{{modelTag}}' is already in queue for downloading.": "Ang modelo'{{modelTag}}' naa na sa pila para ma-download.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "",
"Model {{name}} is now {{status}}": "",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1500,6 +1504,7 @@
"Password": "Password",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "PDF Image Extraction (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "",
"Reset": "",
@@ -49,6 +49,7 @@
"Access Control": "Řízení přístupu",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Přístupné pro všechny uživatele",
"Account": "Účet",
"Account Activation Pending": "Čeká se na aktivaci účtu",
@@ -441,6 +442,7 @@
"Copy Last Response": "",
"Copy link": "Kopírovat odkaz",
"Copy Link": "Kopírovat odkaz",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Kopírovat do schránky",
@@ -1275,6 +1277,7 @@
"Model": "Model",
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' byl úspěšně stažen.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je již ve frontě na stažení.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} nemá schopnost zpracování obrazu.",
"Model {{name}} is now {{status}}": "Model {{name}} je nyní {{status}}.",
@@ -1282,6 +1285,7 @@
"Model {{name}} is now visible": "Model {{name}} je nyní viditelný",
"Model accepts file inputs": "Model přijímá souborové vstupy",
"Model accepts image inputs": "Model přijímá obrazové vstupy",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Model umí spouštět kód a provádět výpočty",
"Model can generate images based on text prompts": "Model umí generovat obrázky na základě textových instrukcí",
"Model can search the web for information": "Model umí vyhledávat informace na webu",
@@ -1502,6 +1506,7 @@
"Password": "Heslo",
"Passwords do not match.": "Hesla se neshodují.",
"Paste Large Text as File": "Vložit velký text jako soubor",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "Dokument PDF (.pdf)",
"PDF Extract Images (OCR)": "Extrahovat obrázky z PDF (OCR)",
@@ -1650,6 +1655,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "Jádro pro přehodnocení",
"Reranking Model": "Model pro přehodnocení",
"Reset": "Resetovat",
@@ -47,6 +47,7 @@
"Access Control": "Adgangskontrol",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Tilgængelig for alle brugere",
"Account": "Profil",
"Account Activation Pending": "Aktivering af profil afventer",
@@ -439,6 +440,7 @@
"Copy Last Response": "Kopier sidste svar",
"Copy link": "Kopier link",
"Copy Link": "Kopier link",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Kopier til udklipsholder",
@@ -1273,6 +1275,7 @@
"Model": "Model",
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' er blevet downloadet.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' er allerede i kø til download.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} understøtter ikke billeder",
"Model {{name}} is now {{status}}": "Model {{name}} er nu {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "Model {{name}} er nu synlig",
"Model accepts file inputs": "Model accepterer fil inputs",
"Model accepts image inputs": "Model accepterer billedinput",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Model kan udføre kode og foretage beregninger",
"Model can generate images based on text prompts": "Model kan generere billeder baseret på tekstprompts",
"Model can search the web for information": "Model kan søge på internettet efter information",
@@ -1500,6 +1504,7 @@
"Password": "Adgangskode",
"Passwords do not match.": "Passwords stemmer ikke overens.",
"Paste Large Text as File": "Indsæt store tekster som fil",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF-dokument (.pdf)",
"PDF Extract Images (OCR)": "Udtræk billeder fra PDF (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "Svar på tråd...",
"Replying to {{NAME}}": "Svarer {{NAME}}",
"required": "påkrævet",
"Reranking Batch Size": "",
"Reranking Engine": "Omarrangerings engine",
"Reranking Model": "Omarrangeringsmodel",
"Reset": "Nulstil",
@@ -47,6 +47,7 @@
"Access Control": "Zugriffskontrolle",
"Access Grants": "Zugriffsrechte",
"Access List": "Zugriffsliste",
"Access updated": "",
"Accessible to all users": "Für alle Benutzer zugänglich",
"Account": "Konto",
"Account Activation Pending": "Kontoaktivierung ausstehend",
@@ -439,6 +440,7 @@
"Copy Last Response": "Letzte Antwort kopieren",
"Copy link": "Link kopieren",
"Copy Link": "Link kopieren",
"Copy Path": "",
"Copy Prompt": "Prompt kopieren",
"Copy Share Link": "Freigabelink kopieren",
"Copy to clipboard": "In Zwischenablage kopieren",
@@ -1273,6 +1275,7 @@
"Model": "Modell",
"Model '{{modelName}}' has been successfully downloaded.": "Modell '{{modelName}}' wurde erfolgreich heruntergeladen.",
"Model '{{modelTag}}' is already in queue for downloading.": "Modell '{{modelTag}}' befindet sich bereits in der Warteschlange.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "Modell {{modelName}} erfolgreich gelöscht",
"Model {{modelName}} is not vision capable": "Das Modell {{modelName}} unterstützt keine Bilderkennung",
"Model {{name}} is now {{status}}": "Modell {{name}} ist jetzt {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "Modell {{name}} ist jetzt sichtbar",
"Model accepts file inputs": "Modell akzeptiert Dateieingaben",
"Model accepts image inputs": "Modell akzeptiert Bildeingaben",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Modell kann Code ausführen und Berechnungen durchführen",
"Model can generate images based on text prompts": "Modell kann Bilder basierend auf Text-Prompts generieren",
"Model can search the web for information": "Modell kann das Web nach Informationen durchsuchen",
@@ -1500,6 +1504,7 @@
"Password": "Passwort",
"Passwords do not match.": "Die Passwörter stimmen nicht überein.",
"Paste Large Text as File": "Großen Text als Datei einfügen",
"Path copied": "",
"Paused": "Pausiert",
"PDF document (.pdf)": "PDF-Dokument (.pdf)",
"PDF Extract Images (OCR)": "Bilder aus PDFs extrahieren (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "Im Thread antworten...",
"Replying to {{NAME}}": "Antwort an {{NAME}}",
"required": "erforderlich",
"Reranking Batch Size": "",
"Reranking Engine": "Reranking-Engine",
"Reranking Model": "Reranking-Modell",
"Reset": "Zurücksetzen",
@@ -47,6 +47,7 @@
"Access Control": "",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "",
"Account": "Account",
"Account Activation Pending": "",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "",
@@ -1273,6 +1275,7 @@
"Model": "",
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' has been successfully downloaded.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' is already in queue for downloading.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "",
"Model {{name}} is now {{status}}": "",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1500,6 +1504,7 @@
"Password": "Barkword",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "PDF Extract Wowmages (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "",
"Reset": "",
@@ -47,6 +47,7 @@
"Access Control": "Έλεγχος Πρόσβασης",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Προσβάσιμο σε όλους τους χρήστες",
"Account": "Λογαριασμός",
"Account Activation Pending": "Ενεργοποίηση Λογαριασμού Εκκρεμεί",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "Αντιγραφή συνδέσμου",
"Copy Link": "Αντιγραφή Συνδέσμου",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Αντιγραφή στο πρόχειρο",
@@ -1273,6 +1275,7 @@
"Model": "Μοντέλο",
"Model '{{modelName}}' has been successfully downloaded.": "Το μοντέλο '{{modelName}}' κατεβάστηκε με επιτυχία.",
"Model '{{modelTag}}' is already in queue for downloading.": "Το μοντέλο '{{modelTag}}' βρίσκεται ήδη στην ουρά για λήψη.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Το μοντέλο {{modelName}} δεν έχει δυνατότητα όρασης",
"Model {{name}} is now {{status}}": "Το μοντέλο {{name}} είναι τώρα {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "Το μοντέλο δέχεται αρχεία ως είσοδο",
"Model accepts image inputs": "Το μοντέλο δέχεται εικόνες ως είσοδο",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Το μοντέλο μπορεί να εκτελεί κώδικα και υπολογισμούς",
"Model can generate images based on text prompts": "Το μοντέλο μπορεί να δημιουργήσει εικόνες βασισμένες σε προτροπές κειμένου",
"Model can search the web for information": "Το μοντέλο μπορεί να αναζητήσει πληροφορίες στο διαδίκτυο",
@@ -1500,6 +1504,7 @@
"Password": "Κωδικός",
"Passwords do not match.": "Οι κωδικοί δεν ταιριάζουν",
"Paste Large Text as File": "Επικόλληση Μεγάλου Κειμένου ως Αρχείο",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "Έγγραφο PDF (.pdf)",
"PDF Extract Images (OCR)": "Εξαγωγή Εικόνων PDF (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "Απάντηση στο νήμα συζήτησης...",
"Replying to {{NAME}}": "",
"required": "απαιτείται",
"Reranking Batch Size": "",
"Reranking Engine": "Μηχανή Επαναταξινόμησης",
"Reranking Model": "Μοντέλο Επαναταξινόμησης",
"Reset": "Επαναφορά",
@@ -47,6 +47,7 @@
"Access Control": "",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "",
"Account": "",
"Account Activation Pending": "",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "",
@@ -1273,6 +1275,7 @@
"Model": "",
"Model '{{modelName}}' has been successfully downloaded.": "",
"Model '{{modelTag}}' is already in queue for downloading.": "",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "",
"Model {{name}} is now {{status}}": "",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1500,6 +1504,7 @@
"Password": "",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "",
"Reset": "",
@@ -47,6 +47,7 @@
"Access Control": "",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "",
"Account": "",
"Account Activation Pending": "",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "",
@@ -1273,6 +1275,7 @@
"Model": "",
"Model '{{modelName}}' has been successfully downloaded.": "",
"Model '{{modelTag}}' is already in queue for downloading.": "",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "",
"Model {{name}} is now {{status}}": "",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1500,6 +1504,7 @@
"Password": "",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "",
"Reset": "",
@@ -48,6 +48,7 @@
"Access Control": "Control de Permisos",
"Access Grants": "Permisos Otorgados",
"Access List": "Lista de Permisos",
"Access updated": "",
"Accessible to all users": "Accesible para todos los usuarios",
"Account": "Cuenta",
"Account Activation Pending": "Activación de cuenta Pendiente",
@@ -440,6 +441,7 @@
"Copy Last Response": "Copiar la última Respuesta",
"Copy link": "Copiar Enlace",
"Copy Link": "Copiar enlace",
"Copy Path": "",
"Copy Prompt": "Copiar Indicador",
"Copy Share Link": "Copiar Enlace Compartido",
"Copy to clipboard": "Copia a portapapeles",
@@ -1274,6 +1276,7 @@
"Model": "Modelo",
"Model '{{modelName}}' has been successfully downloaded.": "Modelo '{{modelName}}' se ha descargado correctamente.",
"Model '{{modelTag}}' is already in queue for downloading.": "Modelo '{{modelTag}}' ya está en cola para descargar.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "Modelo {{modelName}} borrado correctamente",
"Model {{modelName}} is not vision capable": "Modelo {{modelName}} no esta capacitado para visión",
"Model {{name}} is now {{status}}": "Modelo {{name}} está ahora {{status}}",
@@ -1281,6 +1284,7 @@
"Model {{name}} is now visible": "Modelo {{name}} está ahora visible",
"Model accepts file inputs": "Modelo acepta entrada de archivos",
"Model accepts image inputs": "Modelo acepta entrada de imagenes",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Modelo puedo ejecutar código y realizar cálculos",
"Model can generate images based on text prompts": "Modelo puede generar imágenes basadas en indicadores de texto",
"Model can search the web for information": "Modelo puede buscar información en la web",
@@ -1501,6 +1505,7 @@
"Password": "Contraseña",
"Passwords do not match.": "Las contraseñas no coinciden",
"Paste Large Text as File": "Pegar el Texto Largo como Archivo",
"Path copied": "",
"Paused": "Pausado",
"PDF document (.pdf)": "Documento PDF (.pdf)",
"PDF Extract Images (OCR)": "Extraer imágenes del PDF (OCR)",
@@ -1649,6 +1654,7 @@
"Reply to thread...": "Responder al hilo...",
"Replying to {{NAME}}": "Responder a {{NAME}}",
"required": "requerido",
"Reranking Batch Size": "",
"Reranking Engine": "Motor de Reclasificación",
"Reranking Model": "Modelo de Reclasificación",
"Reset": "Reiniciar",
@@ -47,6 +47,7 @@
"Access Control": "Juurdepääsu kontroll",
"Access Grants": "Juurdepääsu andmine",
"Access List": "Juurdepääsu nimekiri",
"Access updated": "",
"Accessible to all users": "Kättesaadav kõigile kasutajatele",
"Account": "Konto",
"Account Activation Pending": "Konto aktiveerimine ootel",
@@ -439,6 +440,7 @@
"Copy Last Response": "Kopeeri viimane vastus",
"Copy link": "Kopeeri link",
"Copy Link": "Kopeeri link",
"Copy Path": "",
"Copy Prompt": "Kopeeri sisend",
"Copy Share Link": "Kopeeri jagamislink",
"Copy to clipboard": "Kopeeri lõikelauale",
@@ -1273,6 +1275,7 @@
"Model": "Mudel",
"Model '{{modelName}}' has been successfully downloaded.": "Mudel '{{modelName}}' on edukalt alla laaditud.",
"Model '{{modelTag}}' is already in queue for downloading.": "Mudel '{{modelTag}}' on juba allalaadimise järjekorras.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Mudel {{modelName}} ei ole võimeline visuaalseid sisendeid töötlema",
"Model {{name}} is now {{status}}": "Mudel {{name}} on nüüd {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "Mudel {{name}} on nüüd nähtav",
"Model accepts file inputs": "Mudel aktsepteerib failisisendeid",
"Model accepts image inputs": "Mudel võtab vastu pilte sisendina",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Mudel saab käivitada koodi ja teha arvutusi",
"Model can generate images based on text prompts": "Mudel saab teksti põhjal pilte genereerida",
"Model can search the web for information": "Mudel saab otsida teavet veebist",
@@ -1500,6 +1504,7 @@
"Password": "Parool",
"Passwords do not match.": "Paroolid ei ühti.",
"Paste Large Text as File": "Kleebi suur tekst failina",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF dokument (.pdf)",
"PDF Extract Images (OCR)": "PDF-ist piltide väljavõtmine (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "Vasta lõimele...",
"Replying to {{NAME}}": "Vastamine kasutajale {{NAME}}",
"required": "nõutav",
"Reranking Batch Size": "",
"Reranking Engine": "Ümberjärjestamise mootor",
"Reranking Model": "Ümberjärjestamise mudel",
"Reset": "Lähtesta",
@@ -47,6 +47,7 @@
"Access Control": "Sarbide Kontrola",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Erabiltzaile guztientzat eskuragarri",
"Account": "Kontua",
"Account Activation Pending": "Kontuaren Aktibazioa Zain",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Kopiatu Esteka",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Kopiatu arbelera",
@@ -1273,6 +1275,7 @@
"Model": "Modeloa",
"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' modeloa ongi deskargatu da.",
"Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' modeloa dagoeneko deskarga ilaran dago.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "{{modelName}} modeloak ez du ikusmen gaitasunik",
"Model {{name}} is now {{status}}": "{{name}} modeloa orain {{status}} dago",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "Modeloak irudi sarrerak onartzen ditu",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1500,6 +1504,7 @@
"Password": "Pasahitza",
"Passwords do not match.": "",
"Paste Large Text as File": "Itsatsi testu luzea fitxategi gisa",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF dokumentua (.pdf)",
"PDF Extract Images (OCR)": "PDF irudiak erauzi (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "Berrantolatze modeloa",
"Reset": "Berrezarri",
@@ -47,6 +47,7 @@
"Access Control": "کنترل دسترسی",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "قابل دسترسی برای همه کاربران",
"Account": "حساب کاربری",
"Account Activation Pending": "فعال\u200cسازی حساب در حال انتظار",
@@ -439,6 +440,7 @@
"Copy Last Response": "کپی آخرین پاسخ",
"Copy link": "کپی لینک",
"Copy Link": "کپی لینک",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "کپی به کلیپ\u200cبورد",
@@ -1273,6 +1275,7 @@
"Model": "مدل",
"Model '{{modelName}}' has been successfully downloaded.": "مدل '{{modelName}}' با موفقیت دانلود شد.",
"Model '{{modelTag}}' is already in queue for downloading.": "مدل '{{modelTag}}' در حال حاضر در صف برای دانلود است.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "مدل {{modelName}} قادر به بینایی نیست",
"Model {{name}} is now {{status}}": "مدل {{name}} در حال حاضر {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "مدل {{name}} اکنون قابل مشاهده است",
"Model accepts file inputs": "مدل ورودی فایل را می\u200cپذیرد",
"Model accepts image inputs": "مدل ورودی تصویر را می\u200cپذیرد",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "مدل می\u200cتواند کد را اجرا کرده و محاسبات را انجام دهد",
"Model can generate images based on text prompts": "مدل می\u200cتواند تصاویر را بر اساس پرامپت\u200cهای متنی تولید کند",
"Model can search the web for information": "مدل می\u200cتواند وب را برای اطلاعات جستجو کند",
@@ -1500,6 +1504,7 @@
"Password": "رمز عبور",
"Passwords do not match.": "رمزهای عبور مطابقت ندارند.",
"Paste Large Text as File": "چسباندن متن بزرگ به عنوان فایل",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF سند (.pdf)",
"PDF Extract Images (OCR)": "استخراج تصاویر از PDF (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "پاسخ به رشته...",
"Replying to {{NAME}}": "در حال پاسخ به {{NAME}}",
"required": "مورد نیاز",
"Reranking Batch Size": "",
"Reranking Engine": "موتور رتبه\u200cبندی مجدد",
"Reranking Model": "مدل ری\u200cشناسی مجدد غیرفعال است",
"Reset": "بازنشانی",
@@ -47,6 +47,7 @@
"Access Control": "Käyttöoikeuksien hallinta",
"Access Grants": "Käyttöoikeudet",
"Access List": "Pääsylista",
"Access updated": "",
"Accessible to all users": "Käytettävissä kaikille käyttäjille",
"Account": "Tili",
"Account Activation Pending": "Tilin aktivointi odottaa",
@@ -439,6 +440,7 @@
"Copy Last Response": "Kopioi viimeisin vastaus",
"Copy link": "Kopioi linkki",
"Copy Link": "Kopioi linkki",
"Copy Path": "",
"Copy Prompt": "Kopioi kehote",
"Copy Share Link": "Kopioi jakolinkki",
"Copy to clipboard": "Kopioi leikepöydälle",
@@ -1273,6 +1275,7 @@
"Model": "Malli",
"Model '{{modelName}}' has been successfully downloaded.": "Malli '{{modelName}}' ladattiin onnistuneesti.",
"Model '{{modelTag}}' is already in queue for downloading.": "Malli '{{modelTag}}' on jo jonossa ladattavaksi.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Malli {{modelName}} ei kykene näkökykyyn",
"Model {{name}} is now {{status}}": "Malli {{name}} on nyt {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "Malli {{name}} on nyt näkyvissä",
"Model accepts file inputs": "Malli hyväksyy tiedostosyötteet",
"Model accepts image inputs": "Malli hyväksyy kuvasyötteitä",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Malli voi suorittaa koodia ja laskelmia",
"Model can generate images based on text prompts": "Malli voi luoda kuvia tekstikehotteiden perusteella",
"Model can search the web for information": "Malli voi hakea tietoa verkosta",
@@ -1500,6 +1504,7 @@
"Password": "Salasana",
"Passwords do not match.": "Salasanat eivät täsmää",
"Paste Large Text as File": "Liitä suuri teksti tiedostona",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF-asiakirja (.pdf)",
"PDF Extract Images (OCR)": "Poimi kuvat PDF:stä (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "Vastaa ketjussa...",
"Replying to {{NAME}}": "Vastaa {{NAME}}",
"required": "vaaditaan",
"Reranking Batch Size": "",
"Reranking Engine": "Uudelleenpisteytymismallin moottori",
"Reranking Model": "Uudelleenpisteytymismalli",
"Reset": "Palauta",
@@ -48,6 +48,7 @@
"Access Control": "Contrôle d'accès",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Accessible à tous les utilisateurs",
"Account": "Compte",
"Account Activation Pending": "Activation du compte en attente",
@@ -440,6 +441,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Copier le lien",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Copier dans le presse-papiers",
@@ -1274,6 +1276,7 @@
"Model": "Modèle",
"Model '{{modelName}}' has been successfully downloaded.": "Le modèle '{{modelName}}' a été téléchargé avec succès.",
"Model '{{modelTag}}' is already in queue for downloading.": "Le modèle '{{modelTag}}' est déjà dans la file d'attente pour le téléchargement.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Le modèle {{modelName}} n'a pas de capacités visuelles",
"Model {{name}} is now {{status}}": "Le modèle {{name}} est désormais {{status}}.",
@@ -1281,6 +1284,7 @@
"Model {{name}} is now visible": "Le modèle {{name}} est maintenant visible",
"Model accepts file inputs": "Le modèle accepte les fichiers en entrée",
"Model accepts image inputs": "Le modèle accepte les images en entrée",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Le modèle peut executer du code et faire des calculs",
"Model can generate images based on text prompts": "Le modèle peut générer des images à partir des prompts textuels",
"Model can search the web for information": "Le modèle peut faire des recherches sur internet pour trouver des informations",
@@ -1501,6 +1505,7 @@
"Password": "Mot de passe",
"Passwords do not match.": "",
"Paste Large Text as File": "Coller un texte volumineux comme fichier",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "Document au format PDF (.pdf)",
"PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)",
@@ -1649,6 +1654,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "Moteur de ré-ranking",
"Reranking Model": "Modèle de ré-ranking",
"Reset": "Réinitialiser",
@@ -48,6 +48,7 @@
"Access Control": "Contrôle d'accès",
"Access Grants": "Droits d'accès",
"Access List": "Liste des accès",
"Access updated": "",
"Accessible to all users": "Accessible à tous les utilisateurs",
"Account": "Compte",
"Account Activation Pending": "Activation du compte en attente",
@@ -440,6 +441,7 @@
"Copy Last Response": "Copier la dernière réponse",
"Copy link": "Copier le lien",
"Copy Link": "Copier le lien",
"Copy Path": "",
"Copy Prompt": "Copier le prompt",
"Copy Share Link": "Copier le lien de partage",
"Copy to clipboard": "Copier dans le presse-papiers",
@@ -1274,6 +1276,7 @@
"Model": "Modèle",
"Model '{{modelName}}' has been successfully downloaded.": "Le modèle '{{modelName}}' a été téléchargé avec succès.",
"Model '{{modelTag}}' is already in queue for downloading.": "Le modèle '{{modelTag}}' est déjà dans la file d'attente pour le téléchargement.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Le modèle {{modelName}} n'a pas de fonctionnalité de vision",
"Model {{name}} is now {{status}}": "Le modèle {{name}} est désormais {{status}}.",
@@ -1281,6 +1284,7 @@
"Model {{name}} is now visible": "Le modèle {{name}} est maintenant visible",
"Model accepts file inputs": "Le modèle accepte des fichiers en entrée",
"Model accepts image inputs": "Le modèle accepte des images en entrée",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Le modèle peut exécuter du code et faire des calculs",
"Model can generate images based on text prompts": "Le modèle peut générer des images à partir de prompts",
"Model can search the web for information": "Le modèle peut faire des recherches sur internet pour trouver des informations",
@@ -1501,6 +1505,7 @@
"Password": "Mot de passe",
"Passwords do not match.": "Les mots de passe ne correspondent pas.",
"Paste Large Text as File": "Coller un texte volumineux comme fichier",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "Document au format PDF (.pdf)",
"PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)",
@@ -1649,6 +1654,7 @@
"Reply to thread...": "Répondre au fil de discussion...",
"Replying to {{NAME}}": "En réponse à {{NAME}}",
"required": "requis",
"Reranking Batch Size": "",
"Reranking Engine": "Moteur de ré-ranking",
"Reranking Model": "Modèle de ré-ranking",
"Reset": "Réinitialiser",
@@ -47,6 +47,7 @@
"Access Control": "Control de Acceso",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Accesible para todos os usuarios",
"Account": "Conta",
"Account Activation Pending": "Activación da conta pendente",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Copiar enlace",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Copiado o portapapeis",
@@ -1273,6 +1275,7 @@
"Model": "Modelo",
"Model '{{modelName}}' has been successfully downloaded.": "0 modelo '{{modelName}}' se ha descargado correctamente.",
"Model '{{modelTag}}' is already in queue for downloading.": "0 modelo '{{modelTag}}' ya está en cola para descargar.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "O modelo {{modelName}} no es capaz de ver",
"Model {{name}} is now {{status}}": "O modelo {{name}} ahora es {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "O modelo acepta entradas de imaxenes",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1500,6 +1504,7 @@
"Password": "Contrasinal ",
"Passwords do not match.": "",
"Paste Large Text as File": "Pegar texto grande como arquivo",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "Documento PDF (.pdf)",
"PDF Extract Images (OCR)": "Extraer imaxes de PDF (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "Modelo de reranking",
"Reset": "Reiniciar",
@@ -48,6 +48,7 @@
"Access Control": "בקרת גישה",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "",
"Account": "חשבון",
"Account Activation Pending": "",
@@ -440,6 +441,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "העתק קישור",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "",
@@ -1274,6 +1276,7 @@
"Model": "",
"Model '{{modelName}}' has been successfully downloaded.": "המודל '{{modelName}}' הורד בהצלחה.",
"Model '{{modelTag}}' is already in queue for downloading.": "המודל '{{modelTag}}' כבר בתור להורדה.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "דגם {{modelName}} אינו בעל יכולת ראייה",
"Model {{name}} is now {{status}}": "דגם {{name}} הוא כעת {{status}}",
@@ -1281,6 +1284,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1501,6 +1505,7 @@
"Password": "סיסמה",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "מסמך PDF (.pdf)",
"PDF Extract Images (OCR)": "חילוץ תמונות מ-PDF (OCR)",
@@ -1649,6 +1654,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "מודל דירוג מחדש",
"Reset": "",
@@ -47,6 +47,7 @@
"Access Control": "",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "",
"Account": "खाता",
"Account Activation Pending": "",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "लिंक को कॉपी करें",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "",
@@ -1273,6 +1275,7 @@
"Model": "",
"Model '{{modelName}}' has been successfully downloaded.": "मॉडल '{{modelName}}' सफलतापूर्वक डाउनलोड हो गया है।",
"Model '{{modelTag}}' is already in queue for downloading.": "मॉडल '{{modelTag}}' पहले से ही डाउनलोड करने के लिए कतार में है।",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "मॉडल {{modelName}} दृष्टि सक्षम नहीं है",
"Model {{name}} is now {{status}}": "मॉडल {{name}} अब {{status}} है",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1500,6 +1504,7 @@
"Password": "पासवर्ड",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF दस्तावेज़ (.pdf)",
"PDF Extract Images (OCR)": "PDF छवियाँ निकालें (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "रीरैकिंग मोड",
"Reset": "",
@@ -48,6 +48,7 @@
"Access Control": "",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "",
"Account": "Račun",
"Account Activation Pending": "",
@@ -440,6 +441,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Kopiraj vezu",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "",
@@ -1274,6 +1276,7 @@
"Model": "",
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' je uspješno preuzet.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je već u redu za preuzimanje.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} ne čita vizualne impute",
"Model {{name}} is now {{status}}": "Model {{name}} sada je {{status}}",
@@ -1281,6 +1284,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1501,6 +1505,7 @@
"Password": "Lozinka",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF dokument (.pdf)",
"PDF Extract Images (OCR)": "PDF izdvajanje slika (OCR)",
@@ -1649,6 +1654,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "Model za ponovno rangiranje",
"Reset": "",
@@ -47,6 +47,7 @@
"Access Control": "Hozzáférés-vezérlés",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Minden felhasználó számára elérhető",
"Account": "Fiók",
"Account Activation Pending": "Fiók aktiválása folyamatban",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Link másolása",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Másolás a vágólapra",
@@ -1273,6 +1275,7 @@
"Model": "Modell",
"Model '{{modelName}}' has been successfully downloaded.": "A '{{modelName}}' modell sikeresen letöltve.",
"Model '{{modelTag}}' is already in queue for downloading.": "A '{{modelTag}}' modell már a letöltési sorban van.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "A {{modelName}} modell nem képes képfeldolgozásra",
"Model {{name}} is now {{status}}": "A {{name}} modell most {{status}} állapotban van",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "A {{name}} modell most látható",
"Model accepts file inputs": "",
"Model accepts image inputs": "A modell elfogad képbemenetet",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1500,6 +1504,7 @@
"Password": "Jelszó",
"Passwords do not match.": "",
"Paste Large Text as File": "Nagy szöveg beillesztése fájlként",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF dokumentum (.pdf)",
"PDF Extract Images (OCR)": "PDF képek kinyerése (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "Újrarangsoroló modell",
"Reset": "Visszaállítás",
@@ -46,6 +46,7 @@
"Access Control": "",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "",
"Account": "Akun",
"Account Activation Pending": "Aktivasi Akun Tertunda",
@@ -438,6 +439,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Salin Tautan",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "",
@@ -1272,6 +1274,7 @@
"Model": "",
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' telah berhasil diunduh.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' sudah berada dalam antrean untuk diunduh.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} tidak dapat dilihat",
"Model {{name}} is now {{status}}": "Model {{name}} sekarang menjadi {{status}}",
@@ -1279,6 +1282,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1499,6 +1503,7 @@
"Password": "Kata sandi",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "Dokumen PDF (.pdf)",
"PDF Extract Images (OCR)": "Ekstrak Gambar PDF (OCR)",
@@ -1647,6 +1652,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "Model Pemeringkatan Ulang",
"Reset": "Atur Ulang",
@@ -47,6 +47,7 @@
"Access Control": "Rialaithe Rochtana",
"Access Grants": "Deontais Rochtana",
"Access List": "Liosta Rochtana",
"Access updated": "",
"Accessible to all users": "Inrochtana do gach úsáideoir",
"Account": "Cuntas",
"Account Activation Pending": "Gníomhachtaithe Cuntas",
@@ -439,6 +440,7 @@
"Copy Last Response": "Cóipeáil an Fhreagra Deiridh",
"Copy link": "Cóipeáil nasc",
"Copy Link": "Cóipeáil Nasc",
"Copy Path": "",
"Copy Prompt": "Cóipeáil an Treoir",
"Copy Share Link": "Cóipeáil Nasc Comhroinnte",
"Copy to clipboard": "Cóipeáil chuig an ngearrthaisce",
@@ -1273,6 +1275,7 @@
"Model": "Samhail",
"Model '{{modelName}}' has been successfully downloaded.": "Rinneadh an tsamhail '{{modelName}}' a íoslódáil go rathúil.",
"Model '{{modelTag}}' is already in queue for downloading.": "Tá samhail '{{modelTag}}' sa scuaine cheana féin le híoslódáil.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "Scriosadh an tsamhail {{modelName}} go rathúil",
"Model {{modelName}} is not vision capable": "Níl samhail {{modelName}} in ann amharc",
"Model {{name}} is now {{status}}": "Tá samhail {{name}} {{status}} anois",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "Tá an tsamhail {{name}} le feiceáil anois",
"Model accepts file inputs": "Glacann an tsamhail le hionchuir chomhaid",
"Model accepts image inputs": "Glacann an tsamhail le hionchuir íomhá",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Is féidir leis an tsamhail cód a fhorghníomhú agus ríomhaireachtaí a dhéanamh",
"Model can generate images based on text prompts": "Is féidir leis an tsamhail íomhánna a ghiniúint bunaithe ar threoracha téacs",
"Model can search the web for information": "Is féidir leis an tsamhail cuardach a dhéanamh ar an ngréasán le haghaidh faisnéise",
@@ -1500,6 +1504,7 @@
"Password": "Pasfhocal",
"Passwords do not match.": "Ní hionann na pasfhocail.",
"Paste Large Text as File": "Greamaigh Téacs Mór mar Chomhad",
"Path copied": "",
"Paused": "Sosaithe",
"PDF document (.pdf)": "Doiciméad PDF (.pdf)",
"PDF Extract Images (OCR)": "Íomhánna Sliocht PDF (OCR)",
@@ -1519,6 +1524,7 @@
"Persistent": "Dianseasmhach",
"Personalization": "Pearsantú",
"Pin": "Bioráin",
"Pin to Sidebar": "",
"Pinned": "Bioránaithe",
"Pinned Messages": "Teachtaireachtaí Bioránaithe",
"Pinned Models": "Samhlacha Bioránaithe",
@@ -1647,6 +1653,7 @@
"Reply to thread...": "Freagra ar an snáithe...",
"Replying to {{NAME}}": "Ag freagairt do {{NAME}}",
"required": "riachtanach",
"Reranking Batch Size": "",
"Reranking Engine": "Inneall Athrangúcháin",
"Reranking Model": "Samhail Athrangú",
"Reset": "Athshocraigh",
@@ -1660,6 +1667,7 @@
"Response splitting": "Scoilt freagartha",
"Response Watermark": "Comhartha Uisce Freagartha",
"Responses": "Freagraí",
"Restart": "",
"Result": "Toradh",
"RESULT": "TORADH",
"Retrieval": "Aisghabháil",
@@ -48,6 +48,7 @@
"Access Control": "Controllo accessi",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Accessibile a tutti gli utenti",
"Account": "Account",
"Account Activation Pending": "Account in attesa di attivazione",
@@ -440,6 +441,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Copia link",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Copia negli appunti",
@@ -1274,6 +1276,7 @@
"Model": "Modello",
"Model '{{modelName}}' has been successfully downloaded.": "Il modello '{{modelName}}' è stato scaricato con successo.",
"Model '{{modelTag}}' is already in queue for downloading.": "Il modello '{{modelTag}}' è già in coda per il download.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Il modello {{modelName}} non è in grado di vedere",
"Model {{name}} is now {{status}}": "Il modello {{name}} è ora {{status}}",
@@ -1281,6 +1284,7 @@
"Model {{name}} is now visible": "Il modello {{name}} è ora visibile",
"Model accepts file inputs": "Tipo ti file accettati dal modello",
"Model accepts image inputs": "Il modello accetta input immagine",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Il modello può eseguire del codice e fare calcoli",
"Model can generate images based on text prompts": "Il modello può generare delle immagini basate sui prompt testuali",
"Model can search the web for information": "Il modello può cercare nella rete per informazioni",
@@ -1501,6 +1505,7 @@
"Password": "Password",
"Passwords do not match.": "",
"Paste Large Text as File": "Incolla Molto Testo come File",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "Documento PDF (.pdf)",
"PDF Extract Images (OCR)": "Estrazione Immagini PDF (OCR)",
@@ -1649,6 +1654,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "Engine di Riclassificazione",
"Reranking Model": "Modello di Riclassificazione",
"Reset": "Ripristina",
@@ -46,6 +46,7 @@
"Access Control": "アクセス権制御",
"Access Grants": "",
"Access List": "アクセス権リスト",
"Access updated": "",
"Accessible to all users": "すべてのユーザーにアクセス可能",
"Account": "アカウント",
"Account Activation Pending": "アカウント承認待ち",
@@ -438,6 +439,7 @@
"Copy Last Response": "直前の応答をコピー",
"Copy link": "リンクをコピー",
"Copy Link": "リンクをコピー",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "クリップボードにコピー",
@@ -1272,6 +1274,7 @@
"Model": "モデル",
"Model '{{modelName}}' has been successfully downloaded.": "モデル '{{modelName}}' が正常にダウンロードされました。",
"Model '{{modelTag}}' is already in queue for downloading.": "モデル '{{modelTag}}' はすでにダウンロード待機中です。",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "モデル {{modelName}} は視覚に対応していません",
"Model {{name}} is now {{status}}": "モデル {{name}} は {{status}} になりました。",
@@ -1279,6 +1282,7 @@
"Model {{name}} is now visible": "モデル {{name}} は表示されました。",
"Model accepts file inputs": "モデルはファイル入力を受け入れます",
"Model accepts image inputs": "モデルは画像入力を受け入れます",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "モデルはコードを実行し、計算を行うことができます",
"Model can generate images based on text prompts": "モデルはテキストプロンプトに基づいて画像を生成できます",
"Model can search the web for information": "モデルは情報をウェブ検索できます",
@@ -1499,6 +1503,7 @@
"Password": "パスワード",
"Passwords do not match.": "パスワードが一致しません。",
"Paste Large Text as File": "大きなテキストをファイルとして貼り付ける",
"Path copied": "",
"Paused": "停止中",
"PDF document (.pdf)": "PDF ドキュメント (.pdf)",
"PDF Extract Images (OCR)": "PDF 画像抽出 (OCR)",
@@ -1647,6 +1652,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "リランクエンジン",
"Reranking Model": "リランクモデル",
"Reset": "リセット",
@@ -47,6 +47,7 @@
"Access Control": "წვდომის კონტროლი",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "ხელმისაწვდომია ყველა მომხმარებლისთვის",
"Account": "ანგარიში",
"Account Activation Pending": "დარჩენილი ანგარიშის აქტივაცია",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "ბმულის კოპირება",
"Copy Link": "ბმულის კოპირება",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "ბუფერში კოპირება",
@@ -1273,6 +1275,7 @@
"Model": "მოდელი",
"Model '{{modelName}}' has been successfully downloaded.": "მოდელის „{{modelName}}“ გადმოწერა წარმატებით დასრულდა.",
"Model '{{modelTag}}' is already in queue for downloading.": "მოდელი „{{modelTag}}“ უკვე გადმოწერის რიგშია.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} is not vision capable",
"Model {{name}} is now {{status}}": "Model {{name}} is now {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "მოდელი {{name}} ახლა ხილულია",
"Model accepts file inputs": "მოდელი იღებს ფაილებს",
"Model accepts image inputs": "მოდელი იღებს გამოსახულებებს",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "მოდელს შეუძლია კოდის გაშვება და გამოთვლების შესრულება",
"Model can generate images based on text prompts": "მოდელს შეუძლია ტექსტის მიხედვით გამოსახულებების გენერაცია",
"Model can search the web for information": "მოდელს შეუძლია ინტერნეტში ინფორმაციის ძებნა",
@@ -1500,6 +1504,7 @@
"Password": "პაროლი",
"Passwords do not match.": "პაროლები არ ემთხვევა.",
"Paste Large Text as File": "დიდი ტექსტის ჩასმა ფაილის სახით",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF დოკუმენტი (.pdf)",
"PDF Extract Images (OCR)": "PDF იდან ამოღებული სურათები (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "აუცილებელია",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "Reranking მოდელი",
"Reset": "ჩამოყრა",
@@ -47,6 +47,7 @@
"Access Control": "Asenqed n unekcum",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Yella i yiseqdacen i meṛṛa",
"Account": "Amiḍan",
"Account Activation Pending": "Armad n umiḍan deg uṛaǧu",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "Nɣel aseɣwen",
"Copy Link": "Nɣel aseɣwen",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Nɣel ɣef afus",
@@ -1273,6 +1275,7 @@
"Model": "Tamudemt",
"Model '{{modelName}}' has been successfully downloaded.": "Tettwasider-d tmudemt '{{modelName}}' akken iwata.",
"Model '{{modelTag}}' is already in queue for downloading.": "Tamudemt '{{modelTag}}' ha-t-an yakan deg tebdart n usader.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Mudel Isem}} mačči d tamuɣli izemren ad tili",
"Model {{name}} is now {{status}}": "Tamudemt {{name}} tura {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "Tamudemt {{name}} tettbin-d tura",
"Model accepts file inputs": "Mudell iqebbel inekcamen n yifuyla",
"Model accepts image inputs": "Mudell iqebbel inekcamen n tugna",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Mudell yezmer ad d-yesseḍru tangalt u ad yexdem leḥsabat",
"Model can generate images based on text prompts": "Ammud yezmer ad d-yawi tugniwin yebnan ɣef teɣratin n yiḍrisen",
"Model can search the web for information": "Tamudemt-a tezmer ad tnadi deg Web ɣef isallen",
@@ -1500,6 +1504,7 @@
"Password": "Awal n uɛeddi",
"Passwords do not match.": "Awalen n uɛeddi ur mṣadan ara.",
"Paste Large Text as File": "Senteḍ aḍris meqqren am ufaylu",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "Isemli PDF (.pdf)",
"PDF Extract Images (OCR)": "Tugniwin n ugemmay PDF",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "Err i udiwenni…",
"Replying to {{NAME}}": "Tiririt i {{NAME}}",
"required": "yettwasra",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "",
"Reset": "Wennez",
@@ -46,6 +46,7 @@
"Access Control": "접근 제어",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "모든 사용자가 이용할 수 있음",
"Account": "계정",
"Account Activation Pending": "계정 활성화 대기",
@@ -438,6 +439,7 @@
"Copy Last Response": "마지막 응답 복사",
"Copy link": "링크 복사",
"Copy Link": "링크 복사",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "클립보드에 복사",
@@ -1272,6 +1274,7 @@
"Model": "모델",
"Model '{{modelName}}' has been successfully downloaded.": "모델 '{{modelName}}'이/가 성공적으로 다운로드되었습니다.",
"Model '{{modelTag}}' is already in queue for downloading.": "모델 '{{modelTag}}'은/는 이미 다운로드 대기열에 있습니다.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "모델 {{modelName}}은/는 비전을 사용할 수 없습니다.",
"Model {{name}} is now {{status}}": "모델 {{name}}은/는 이제 {{status}} 상태입니다.",
@@ -1279,6 +1282,7 @@
"Model {{name}} is now visible": "모델 {{name}}은/는 이제 볼 수 있습니다.",
"Model accepts file inputs": "모델에 파일 입력을 허용합니다",
"Model accepts image inputs": "모델에 이미지 입력을 허용합니다",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "모델이 코드를 실행하고 계산을 수행할 수 있습니다.",
"Model can generate images based on text prompts": "모델이 텍스트 프롬프트를 기반으로 이미지를 생성할 수 있습니다.",
"Model can search the web for information": "모델이 웹에서 정보를 검색할 수 있습니다.",
@@ -1499,6 +1503,7 @@
"Password": "비밀번호",
"Passwords do not match.": "비밀번호가 일치하지 않습니다.",
"Paste Large Text as File": "큰 텍스트를 파일로 붙여넣기",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF 문서(.pdf)",
"PDF Extract Images (OCR)": "PDF 이미지 추출(OCR)",
@@ -1647,6 +1652,7 @@
"Reply to thread...": "스레드로 답장하기...",
"Replying to {{NAME}}": "{{NAME}}에게 답장하는 중",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "Reranking 엔진",
"Reranking Model": "Reranking 모델",
"Reset": "초기화",
@@ -49,6 +49,7 @@
"Access Control": "",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "",
"Account": "Paskyra",
"Account Activation Pending": "Laukiama paskyros patvirtinimo",
@@ -441,6 +442,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Kopijuoti nuorodą",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "",
@@ -1275,6 +1277,7 @@
"Model": "",
"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' modelis sėkmingai atsisiųstas.",
"Model '{{modelTag}}' is already in queue for downloading.": "Modelis '{{modelTag}}' jau atsisiuntimų eilėje.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Modelis {{modelName}} neturi vaizdo gebėjimų",
"Model {{name}} is now {{status}}": "Modelis {{name}} dabar {{status}}",
@@ -1282,6 +1285,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1502,6 +1506,7 @@
"Password": "Slaptažodis",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF dokumentas (.pdf)",
"PDF Extract Images (OCR)": "PDF paveikslėlių skaitymas (OCR)",
@@ -1650,6 +1655,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "Reranking modelis",
"Reset": "Atkurti",
@@ -48,6 +48,7 @@
"Access Control": "Piekļuves kontrole",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Pieejams visiem lietotājiem",
"Account": "Konts",
"Account Activation Pending": "Gaida konta aktivizēšanu",
@@ -440,6 +441,7 @@
"Copy Last Response": "Kopēt pēdējo atbildi",
"Copy link": "Kopēt saiti",
"Copy Link": "Kopēt saiti",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Kopēt starpliktuvē",
@@ -1274,6 +1276,7 @@
"Model": "Modelis",
"Model '{{modelName}}' has been successfully downloaded.": "Modelis '{{modelName}}' ir veiksmīgi lejupielādēts.",
"Model '{{modelTag}}' is already in queue for downloading.": "Modelis '{{modelTag}}' jau ir lejupielādes rindā.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Modelis {{modelName}} neatbalsta redzi",
"Model {{name}} is now {{status}}": "Modelis {{name}} tagad ir {{status}}",
@@ -1281,6 +1284,7 @@
"Model {{name}} is now visible": "Modelis {{name}} tagad ir redzams",
"Model accepts file inputs": "Modelis pieņem failu ievades",
"Model accepts image inputs": "Modelis pieņem attēlu ievades",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Modelis var izpildīt kodu un veikt aprēķinus",
"Model can generate images based on text prompts": "Modelis var ģenerēt attēlus, pamatojoties uz teksta uzvednēm",
"Model can search the web for information": "Modelis var meklēt informāciju tīmeklī",
@@ -1501,6 +1505,7 @@
"Password": "Parole",
"Passwords do not match.": "Paroles nesakrīt.",
"Paste Large Text as File": "Ielīmēt lielu tekstu kā failu",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF dokuments (.pdf)",
"PDF Extract Images (OCR)": "PDF attēlu ekstrakcija (OCR)",
@@ -1649,6 +1654,7 @@
"Reply to thread...": "Atbildēt pavedienā...",
"Replying to {{NAME}}": "Atbild {{NAME}}",
"required": "nepieciešams",
"Reranking Batch Size": "",
"Reranking Engine": "Pārkārtošanas dzinējs",
"Reranking Model": "Pārkārtošanas modelis",
"Reset": "Atiestatīt",
@@ -46,6 +46,7 @@
"Access Control": "Kawalan Akses",
"Access Grants": "Pemberian Akses",
"Access List": "Senarai Akses",
"Access updated": "",
"Accessible to all users": "Boleh diakses oleh semua pengguna",
"Account": "Akaun",
"Account Activation Pending": "Pengaktifan Akaun belum selesai",
@@ -438,6 +439,7 @@
"Copy Last Response": "Salin Respons Terakhir",
"Copy link": "Salin Pautan",
"Copy Link": "Salin Pautan",
"Copy Path": "",
"Copy Prompt": "Salin Prompt",
"Copy Share Link": "Salin Pautan Kongsian",
"Copy to clipboard": "Salin ke Papan Klip",
@@ -1272,6 +1274,7 @@
"Model": "Model",
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{ modelName }}' telah berjaya dimuat turun.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{ modelTag }}' sudah dalam baris gilir untuk dimuat turun.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{ modelName }} tidak mempunyai keupayaan penglihatan",
"Model {{name}} is now {{status}}": "Model {{name}} kini {{status}}",
@@ -1279,6 +1282,7 @@
"Model {{name}} is now visible": "Model {{name}} kini dapat dilihat",
"Model accepts file inputs": "Model menerima input fail",
"Model accepts image inputs": "Model menerima input imej",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Model dapat melaksanakan kod dan melakukan pengiraan",
"Model can generate images based on text prompts": "Model dapat menjana imej berdasarkan gesaran teks",
"Model can search the web for information": "Model boleh mencari web untuk maklumat",
@@ -1499,6 +1503,7 @@
"Password": "Kata Laluan",
"Passwords do not match.": "Kata laluan tidak sepadan.",
"Paste Large Text as File": "Tampal Teks Besar sebagai Fail",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "Dokumen PDF (.pdf)",
"PDF Extract Images (OCR)": "Imej Ekstrak PDF (OCR)",
@@ -1647,6 +1652,7 @@
"Reply to thread...": "Balas ke benang...",
"Replying to {{NAME}}": "Membalas kepada {{NAME}}",
"required": "diperlukan",
"Reranking Batch Size": "",
"Reranking Engine": "Enjin Penyusunan Semula",
"Reranking Model": "Model 'Reranking'",
"Reset": "Tetapkan Semula",
@@ -47,6 +47,7 @@
"Access Control": "Tilgangskontroll",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Tilgjengelig for alle brukere",
"Account": "Konto",
"Account Activation Pending": "Venter på kontoaktivering",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Kopier lenke",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Kopier til utklippstavle",
@@ -1273,6 +1275,7 @@
"Model": "Modell",
"Model '{{modelName}}' has been successfully downloaded.": "Modellen {{modelName}} er lastet ned.",
"Model '{{modelTag}}' is already in queue for downloading.": "Modellen {{modelTag}} er allerede i nedlastingskøen.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Modellen {{modelName}} er ikke egnet til visuelle data",
"Model {{name}} is now {{status}}": "Modellen {{name}} er nå {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "Modellen godtar bildeinndata",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1500,6 +1504,7 @@
"Password": "Passord",
"Passwords do not match.": "",
"Paste Large Text as File": "Lim inn mye tekst som fil",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF-dokument (.pdf)",
"PDF Extract Images (OCR)": "Uthenting av PDF-bilder (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "Omrangeringsmodell",
"Reset": "Tilbakestill",
@@ -47,6 +47,7 @@
"Access Control": "Toegangsbeheer",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Toegankelijk voor alle gebruikers",
"Account": "Account",
"Account Activation Pending": "Accountactivatie in afwachting",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "Kopiëer link",
"Copy Link": "Kopieer link",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Kopieer naar klembord",
@@ -1273,6 +1275,7 @@
"Model": "Model",
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' is succesvol gedownload.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' staat al in de wachtrij voor downloaden.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} is niet geschikt voor visie",
"Model {{name}} is now {{status}}": "Model {{name}} is nu {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "Model {{naam}} is nu zichtbaar",
"Model accepts file inputs": "",
"Model accepts image inputs": "Model accepteerd afbeeldingsinvoer",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1500,6 +1504,7 @@
"Password": "Wachtwoord",
"Passwords do not match.": "",
"Paste Large Text as File": "Plak grote tekst als bestand",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF document (.pdf)",
"PDF Extract Images (OCR)": "PDF extraheer afbeeldingen (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "Reranking Model",
"Reset": "Herstellen",
@@ -47,6 +47,7 @@
"Access Control": "",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "",
"Account": "ਖਾਤਾ",
"Account Activation Pending": "",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "ਲਿੰਕ ਕਾਪੀ ਕਰੋ",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "",
@@ -1273,6 +1275,7 @@
"Model": "",
"Model '{{modelName}}' has been successfully downloaded.": "ਮਾਡਲ '{{modelName}}' ਸਫਲਤਾਪੂਰਵਕ ਡਾਊਨਲੋਡ ਕੀਤਾ ਗਿਆ ਹੈ।",
"Model '{{modelTag}}' is already in queue for downloading.": "ਮਾਡਲ '{{modelTag}}' ਪਹਿਲਾਂ ਹੀ ਡਾਊਨਲੋਡ ਲਈ ਕਤਾਰ ਵਿੱਚ ਹੈ।",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "ਮਾਡਲ {{modelName}} ਦ੍ਰਿਸ਼ਟੀ ਸਮਰੱਥ ਨਹੀਂ ਹੈ",
"Model {{name}} is now {{status}}": "ਮਾਡਲ {{name}} ਹੁਣ {{status}} ਹੈ",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1500,6 +1504,7 @@
"Password": "ਪਾਸਵਰਡ",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF ਡਾਕੂਮੈਂਟ (.pdf)",
"PDF Extract Images (OCR)": "PDF ਚਿੱਤਰ ਕੱਢੋ (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "ਮਾਡਲ ਮੁੜ ਰੈਂਕਿੰਗ",
"Reset": "",
@@ -49,6 +49,7 @@
"Access Control": "Kontrola dostępu",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Dostępny dla wszystkich użytkowników",
"Account": "Konto",
"Account Activation Pending": "Aktywacja konta w toku",
@@ -441,6 +442,7 @@
"Copy Last Response": "Kopiuj ostatnią odpowiedź",
"Copy link": "Kopiuj link",
"Copy Link": "Kopiuj link",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Kopiuj do schowka",
@@ -1275,6 +1277,7 @@
"Model": "Model",
"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' został pomyślnie pobrany.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' jest już w kolejce pobierania.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} nie obsługuje widzenia (Vision)",
"Model {{name}} is now {{status}}": "Model {{name}} jest teraz {{status}}",
@@ -1282,6 +1285,7 @@
"Model {{name}} is now visible": "Model {{name}} jest teraz widoczny",
"Model accepts file inputs": "Model akceptuje pliki",
"Model accepts image inputs": "Model akceptuje obrazy",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Model może wykonywać kod i obliczenia",
"Model can generate images based on text prompts": "Model może generować obrazy z tekstu",
"Model can search the web for information": "Model może szukać informacji w sieci",
@@ -1502,6 +1506,7 @@
"Password": "Hasło",
"Passwords do not match.": "Hasła nie pasują do siebie.",
"Paste Large Text as File": "Wklej duży tekst jako plik",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "Dokument PDF (.pdf)",
"PDF Extract Images (OCR)": "Wyodrębnij obrazy z PDF (OCR)",
@@ -1650,6 +1655,7 @@
"Reply to thread...": "Odpowiedz w wątku...",
"Replying to {{NAME}}": "Odpowiedź do {{NAME}}",
"required": "wymagane",
"Reranking Batch Size": "",
"Reranking Engine": "Silnik Rerankingu",
"Reranking Model": "Reranking Model",
"Reset": "Resetuj",
@@ -48,6 +48,7 @@
"Access Control": "Controle de Acesso",
"Access Grants": "Concessões de Acesso",
"Access List": "Lista de acesso",
"Access updated": "",
"Accessible to all users": "Acessível para todos os usuários",
"Account": "Conta",
"Account Activation Pending": "Ativação da Conta Pendente",
@@ -440,6 +441,7 @@
"Copy Last Response": "Copiar última resposta",
"Copy link": "Copiar link",
"Copy Link": "Copiar Link",
"Copy Path": "",
"Copy Prompt": "Copiar prompt",
"Copy Share Link": "Copiar link de compartilhamento",
"Copy to clipboard": "Copiar para a área de transferência",
@@ -1274,6 +1276,7 @@
"Model": "Modelo",
"Model '{{modelName}}' has been successfully downloaded.": "Modelo '{{modelName}}' foi baixado com sucesso.",
"Model '{{modelTag}}' is already in queue for downloading.": "Modelo '{{modelTag}}' já está na fila para download.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "Modelo {{modelName}} excluído com sucesso",
"Model {{modelName}} is not vision capable": "Modelo {{modelName}} não é capaz de visão",
"Model {{name}} is now {{status}}": "Modelo {{name}} está agora {{status}}",
@@ -1281,6 +1284,7 @@
"Model {{name}} is now visible": "O modelo {{name}} agora está visível",
"Model accepts file inputs": "O modelo aceita entradas de arquivo",
"Model accepts image inputs": "Modelo aceita entradas de imagens",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "O modelo pode executar código e realizar cálculos",
"Model can generate images based on text prompts": "O modelo pode gerar imagens com base em prompts de texto",
"Model can search the web for information": "O modelo pode pesquisar informações na web",
@@ -1501,6 +1505,7 @@
"Password": "Senha",
"Passwords do not match.": "As senhas não coincidem.",
"Paste Large Text as File": "Cole Textos Longos como Arquivo",
"Path copied": "",
"Paused": "Em pausa",
"PDF document (.pdf)": "Documento PDF (.pdf)",
"PDF Extract Images (OCR)": "Extrair Imagens do PDF (OCR)",
@@ -1649,6 +1654,7 @@
"Reply to thread...": "Responder ao tópico...",
"Replying to {{NAME}}": "Respondendo para {{NAME}}",
"required": "obrigatório",
"Reranking Batch Size": "",
"Reranking Engine": "Motor de Reclassificação",
"Reranking Model": "Modelo de Reclassificação",
"Reset": "Redefinir",
@@ -48,6 +48,7 @@
"Access Control": "Controlo de Acesso",
"Access Grants": "Concessões de Acesso",
"Access List": "Lista de Acesso",
"Access updated": "",
"Accessible to all users": "Acessível a todos os utilizadores",
"Account": "Conta",
"Account Activation Pending": "Ativação da Conta Pendente",
@@ -440,6 +441,7 @@
"Copy Last Response": "Copiar Última Resposta",
"Copy link": "Copiar link",
"Copy Link": "Copiar Link",
"Copy Path": "",
"Copy Prompt": "Copiar Prompt",
"Copy Share Link": "Copiar Partilha de Link",
"Copy to clipboard": "Copiar para a área de transferência",
@@ -1274,6 +1276,7 @@
"Model": "Modelo",
"Model '{{modelName}}' has been successfully downloaded.": "O modelo '{{modelName}}' foi descarregado com sucesso.",
"Model '{{modelTag}}' is already in queue for downloading.": "O modelo '{{modelTag}}' já está na fila para descarregar.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "O modelo {{modelName}} não é capaz de visão",
"Model {{name}} is now {{status}}": "Modelo {{name}} agora é {{status}}",
@@ -1281,6 +1284,7 @@
"Model {{name}} is now visible": "Modelo {{name}} agora está visível",
"Model accepts file inputs": "O modelo aceita entradas de ficheiros",
"Model accepts image inputs": "O modelo aceita entradas de imagens",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "O modelo pode executar código e realizar cálculos",
"Model can generate images based on text prompts": "O modelo pode gerar imagens com base em prompts de texto",
"Model can search the web for information": "O modelo pode pesquisar na web por informações",
@@ -1501,6 +1505,7 @@
"Password": "Senha",
"Passwords do not match.": "As palavras-passe não coincidem.",
"Paste Large Text as File": "Colar Texto Grande como Arquivo",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "Documento PDF (.pdf)",
"PDF Extract Images (OCR)": "Extrair Imagens de PDF (OCR)",
@@ -1649,6 +1654,7 @@
"Reply to thread...": "Responder ao tópico...",
"Replying to {{NAME}}": "A responder a {{NAME}}",
"required": "obrigatório",
"Reranking Batch Size": "",
"Reranking Engine": "Motor de Reclassificação",
"Reranking Model": "Modelo de Reclassificação",
"Reset": "Repor",
@@ -48,6 +48,7 @@
"Access Control": "Controlul accesului",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Accesibil pentru toți utilizatorii",
"Account": "Cont",
"Account Activation Pending": "Activarea contului în așteptare",
@@ -440,6 +441,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Copiază Link",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Copiază în clipboard",
@@ -1274,6 +1276,7 @@
"Model": "Model",
"Model '{{modelName}}' has been successfully downloaded.": "Modelul '{{modelName}}' a fost descărcat cu succes.",
"Model '{{modelTag}}' is already in queue for downloading.": "Modelul '{{modelTag}}' este deja în coada de descărcare.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Modelul {{modelName}} nu are capacități de viziune",
"Model {{name}} is now {{status}}": "Modelul {{name}} este acum {{status}}",
@@ -1281,6 +1284,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "Modelul acceptă imagini ca intrări.",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1501,6 +1505,7 @@
"Password": "Parolă",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "Document PDF (.pdf)",
"PDF Extract Images (OCR)": "Extrage Imagini PDF (OCR)",
@@ -1649,6 +1654,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "Model de Rearanjare",
"Reset": "Resetează",
@@ -49,6 +49,7 @@
"Access Control": "Контроль доступа",
"Access Grants": "Права доступа",
"Access List": "Список доступов",
"Access updated": "",
"Accessible to all users": "Доступно всем пользователям",
"Account": "Учетная запись",
"Account Activation Pending": "Ожидание активации учетной записи",
@@ -441,6 +442,7 @@
"Copy Last Response": "Копировать последний ответ",
"Copy link": "Скопировать ссылку",
"Copy Link": "Копировать ссылку",
"Copy Path": "",
"Copy Prompt": "Копировать запрос",
"Copy Share Link": "Копировать ссылку для обмена",
"Copy to clipboard": "Скопировать в буфер обмена",
@@ -1275,6 +1277,7 @@
"Model": "Модель",
"Model '{{modelName}}' has been successfully downloaded.": "Модель '{{modelName}}' успешно загружена.",
"Model '{{modelTag}}' is already in queue for downloading.": "Модель '{{modelTag}}' уже находится в очереди на загрузку.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Модель {{modelName}} не поддерживает зрение",
"Model {{name}} is now {{status}}": "Модель {{name}} теперь {{status}}",
@@ -1282,6 +1285,7 @@
"Model {{name}} is now visible": "Модель {{name}} теперь видна",
"Model accepts file inputs": "Модель принимает входные данные файла",
"Model accepts image inputs": "Модель принимает изображения как входные данные",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Модель может выполнять код и выполнять вычисления",
"Model can generate images based on text prompts": "Модель может генерировать изображения на основе текстовых промптов",
"Model can search the web for information": "Модель может искать информацию в Интернете",
@@ -1502,6 +1506,7 @@
"Password": "Пароль",
"Passwords do not match.": "Пароли не совпадают.",
"Paste Large Text as File": "Вставить большой текст как файл",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF-документ (.pdf)",
"PDF Extract Images (OCR)": "Извлечение изображений из PDF (OCR)",
@@ -1650,6 +1655,7 @@
"Reply to thread...": "Ответить в обсуждении...",
"Replying to {{NAME}}": "Ответ для {{NAME}}",
"required": "обязательно",
"Reranking Batch Size": "",
"Reranking Engine": "Движок реранжирования",
"Reranking Model": "Модель реранжирования",
"Reset": "Сбросить",
@@ -49,6 +49,7 @@
"Access Control": "",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Prístupné pre všetkých užívateľov",
"Account": "Účet",
"Account Activation Pending": "Čaká sa na aktiváciu účtu",
@@ -441,6 +442,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Kopírovať odkaz",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Kopírovať do schránky",
@@ -1275,6 +1277,7 @@
"Model": "Model",
"Model '{{modelName}}' has been successfully downloaded.": "Model „{{modelName}}“ bol úspešne stiahnutý.",
"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je už zaradený do fronty na sťahovanie.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} nie je schopný spracovávať vizuálne údaje.",
"Model {{name}} is now {{status}}": "Model {{name}} je teraz {{status}}.",
@@ -1282,6 +1285,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "Model prijíma vstupy vo forme obrázkov",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1502,6 +1506,7 @@
"Password": "Heslo",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF dokument (.pdf)",
"PDF Extract Images (OCR)": "Extrahovanie obrázkov z PDF (OCR)",
@@ -1650,6 +1655,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "Model na prehodnotenie poradia",
"Reset": "režim Reset",
@@ -48,6 +48,7 @@
"Access Control": "Контрола приступа",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Доступно свим корисницима",
"Account": "Налог",
"Account Activation Pending": "Налози за активирање",
@@ -440,6 +441,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Копирај везу",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Копирај у оставу",
@@ -1274,6 +1276,7 @@
"Model": "Модел",
"Model '{{modelName}}' has been successfully downloaded.": "Модел „{{modelName}}“ је успешно преузет.",
"Model '{{modelTag}}' is already in queue for downloading.": "Модел „{{modelTag}}“ је већ у реду за преузимање.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Модел {{моделНаме}} није способан за вид",
"Model {{name}} is now {{status}}": "Модел {{наме}} је сада {{статус}}",
@@ -1281,6 +1284,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1501,6 +1505,7 @@
"Password": "Лозинка",
"Passwords do not match.": "",
"Paste Large Text as File": "Убаци велики текст као датотеку",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF документ (.pdf)",
"PDF Extract Images (OCR)": "Извлачење PDF слика (OCR)",
@@ -1649,6 +1654,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "Модел поновног рангирања",
"Reset": "Поврати",
@@ -47,6 +47,7 @@
"Access Control": "Åtkomstkontroll",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Tillgänglig för alla användare",
"Account": "Konto",
"Account Activation Pending": "Kontoaktivering väntar",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "Kopiera länk",
"Copy Link": "Kopiera länk",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Kopiera till urklipp",
@@ -1273,6 +1275,7 @@
"Model": "Modell",
"Model '{{modelName}}' has been successfully downloaded.": "Modellen '{{modelName}}' har laddats ner.",
"Model '{{modelTag}}' is already in queue for downloading.": "Modellen '{{modelTag}}' är redan i kö för nedladdning.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Modellen {{modelName}} har inte stöd för vision/syn",
"Model {{name}} is now {{status}}": "Modellen {{name}} är nu {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "Modellen {{name}} är nu synlig",
"Model accepts file inputs": "Modellen accepterar filinmatningar",
"Model accepts image inputs": "Modellen accepterar bildinmatningar",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Modellen kan köra kod och utföra beräkningar",
"Model can generate images based on text prompts": "Modellen kan generera bilder baserat på textprompter",
"Model can search the web for information": "Modellen kan söka på webben efter information",
@@ -1500,6 +1504,7 @@
"Password": "Lösenord",
"Passwords do not match.": "Lösenorden matchar inte.",
"Paste Large Text as File": "Klistra in stor text som fil",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF-dokument (.pdf)",
"PDF Extract Images (OCR)": "PDF Extrahera bilder (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "Svara i tråd...",
"Replying to {{NAME}}": "Svarar {{NAME}}",
"required": "obligatoriskt",
"Reranking Batch Size": "",
"Reranking Engine": "Omrankningsmotor",
"Reranking Model": "Reranking modell",
"Reset": "Återställ",
@@ -47,6 +47,7 @@
"Access Control": "அணுகல் கட்டுப்பாடு",
"Access Grants": "அணுகல் மானியங்கள்",
"Access List": "அணுகல் பட்டியல்",
"Access updated": "",
"Accessible to all users": "அனைத்து பயனர்களுக்கும் அணுகக்கூடியது",
"Account": "கணக்கு",
"Account Activation Pending": "கணக்கு செயல்படுத்தல் நிலுவையில் உள்ளது",
@@ -439,6 +440,7 @@
"Copy Last Response": "கடைசி பதிலை நகலெடுக்கவும்",
"Copy link": "இணைப்பை நகலெடுக்கவும்",
"Copy Link": "இணைப்பை நகலெடுக்கவும்",
"Copy Path": "",
"Copy Prompt": "நகலெடுக்கவும்",
"Copy Share Link": "பகிர்வு இணைப்பை நகலெடுக்கவும்",
"Copy to clipboard": "கிளிப்போர்டுக்கு நகலெடுக்கவும்",
@@ -1273,6 +1275,7 @@
"Model": "மாதிரி",
"Model '{{modelName}}' has been successfully downloaded.": "மாடல் '{{modelName}}' வெற்றிகரமாகப் பதிவிறக்கப்பட்டது.",
"Model '{{modelTag}}' is already in queue for downloading.": "மாடல் '{{modelTag}}' ஏற்கனவே பதிவிறக்குவதற்கு வரிசையில் உள்ளது.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "மாதிரி {{modelName}} வெற்றிகரமாக நீக்கப்பட்டது",
"Model {{modelName}} is not vision capable": "மாதிரி {{modelName}} பார்வை திறன் இல்லை",
"Model {{name}} is now {{status}}": "மாடல் {{name}} இப்போது {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "மாடல் {{name}} இப்போது தெரியும்",
"Model accepts file inputs": "மாதிரி கோப்பு உள்ளீடுகளை ஏற்றுக்கொள்கிறது",
"Model accepts image inputs": "மாடல் பட உள்ளீடுகளை ஏற்றுக்கொள்கிறது",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "மாதிரி குறியீட்டை இயக்கலாம் மற்றும் கணக்கீடுகளைச் செய்யலாம்",
"Model can generate images based on text prompts": "மாதிரியானது உரைத் தூண்டுதல்களின் அடிப்படையில் படங்களை உருவாக்க முடியும்",
"Model can search the web for information": "மாடல் தகவல்களை இணையத்தில் தேடலாம்",
@@ -1500,6 +1504,7 @@
"Password": "கடவுச்சொல்",
"Passwords do not match.": "கடவுச்சொற்கள் பொருந்தவில்லை.",
"Paste Large Text as File": "பெரிய உரையை கோப்பாக ஒட்டவும்",
"Path copied": "",
"Paused": "இடைநிறுத்தப்பட்டது",
"PDF document (.pdf)": "PDF ஆவணம் (.pdf)",
"PDF Extract Images (OCR)": "PDF படங்களை பிரித்தெடுக்கவும் (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "திரிக்கு பதில்...",
"Replying to {{NAME}}": "{{NAME}} க்கு பதிலளிக்கிறது",
"required": "தேவை",
"Reranking Batch Size": "",
"Reranking Engine": "மறுவரிசைப்படுத்தல் இயந்திரம்",
"Reranking Model": "மறுவரிசைப்படுத்தல் மாதிரி",
"Reset": "மீட்டமை",
@@ -46,6 +46,7 @@
"Access Control": "การควบคุมการเข้าถึง",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "เข้าถึงได้สำหรับผู้ใช้ทั้งหมด",
"Account": "บัญชี",
"Account Activation Pending": "การเปิดใช้งานบัญชีกำลังดำเนินการ",
@@ -438,6 +439,7 @@
"Copy Last Response": "คัดลอกคำตอบล่าสุด",
"Copy link": "คัดลอกลิงก์",
"Copy Link": "คัดลอกลิงก์",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "คัดลอกไปยังคลิปบอร์ด",
@@ -1272,6 +1274,7 @@
"Model": "โมเดล",
"Model '{{modelName}}' has been successfully downloaded.": "โมเดล '{{modelName}}' ถูกดาวน์โหลดเรียบร้อยแล้ว",
"Model '{{modelTag}}' is already in queue for downloading.": "โมเดล '{{modelTag}}' อยู่ในคิวสำหรับการดาวน์โหลดแล้ว",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "โมเดล {{modelName}} ไม่รองรับฟีเจอร์ Vision",
"Model {{name}} is now {{status}}": "โมเดล {{name}} ขณะนี้ {{status}}",
@@ -1279,6 +1282,7 @@
"Model {{name}} is now visible": "โมเดล {{name}} มองเห็นได้แล้ว",
"Model accepts file inputs": "โมเดลรองรับการป้อนข้อมูลจากไฟล์",
"Model accepts image inputs": "โมเดลรองรับอินพุตรูปภาพ",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "โมเดลสามารถรันโค้ดและคำนวณได้",
"Model can generate images based on text prompts": "โมเดลสามารถสร้างภาพจากพรอมต์ข้อความได้",
"Model can search the web for information": "โมเดลสามารถค้นหาข้อมูลจากเว็บได้",
@@ -1499,6 +1503,7 @@
"Password": "รหัสผ่าน",
"Passwords do not match.": "รหัสผ่านไม่ตรงกัน",
"Paste Large Text as File": "วางข้อความขนาดใหญ่เป็นไฟล์",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "เอกสาร PDF (.pdf)",
"PDF Extract Images (OCR)": "การดึงรูปภาพจาก PDF (OCR)",
@@ -1647,6 +1652,7 @@
"Reply to thread...": "ตอบกลับเธรด...",
"Replying to {{NAME}}": "กำลังตอบกลับ {{NAME}}",
"required": "จำเป็น",
"Reranking Batch Size": "",
"Reranking Engine": "เอนจิน Reranking",
"Reranking Model": "โมเดล Reranking",
"Reset": "รีเซ็ต",
@@ -47,6 +47,7 @@
"Access Control": "",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "",
"Account": "Hasap",
"Account Activation Pending": "",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Baglanyşygy Göçür",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "",
@@ -1273,6 +1275,7 @@
"Model": "Model",
"Model '{{modelName}}' has been successfully downloaded.": "",
"Model '{{modelTag}}' is already in queue for downloading.": "",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "",
"Model {{name}} is now {{status}}": "",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1500,6 +1504,7 @@
"Password": "Parol",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "",
"Reset": "Täzeden Guruň",
@@ -47,6 +47,7 @@
"Access Control": "Erişim Kontrolü",
"Access Grants": "Erişim İzinleri",
"Access List": "Erişim Listesi",
"Access updated": "",
"Accessible to all users": "Tüm kullanıcılara erişilebilir",
"Account": "Hesap",
"Account Activation Pending": "Hesap Aktivasyonu Bekleniyor",
@@ -439,6 +440,7 @@
"Copy Last Response": "Son Yanıtı Kopyala",
"Copy link": "Bağlantıyı kopyala",
"Copy Link": "Bağlantıyı Kopyala",
"Copy Path": "",
"Copy Prompt": "Prompt'u Kopyala",
"Copy Share Link": "",
"Copy to clipboard": "Panoya kopyala",
@@ -1273,6 +1275,7 @@
"Model": "Model",
"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' başarıyla indirildi.",
"Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' zaten indirme sırasında.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} görüntü yeteneğine sahip değil",
"Model {{name}} is now {{status}}": "{{name}} modeli artık {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "Model {{name}} artık görünür",
"Model accepts file inputs": "Model dosya girdilerini kabul eder",
"Model accepts image inputs": "Model görüntü girdilerini kabul eder",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Model kod çalıştırabilir ve hesaplamalar yapabilir",
"Model can generate images based on text prompts": "Model, metin promptlarına göre görsel oluşturabilir",
"Model can search the web for information": "Model bilgileri aramak için web'de arama yapabilir",
@@ -1500,6 +1504,7 @@
"Password": "Parola",
"Passwords do not match.": "Parolalar eşleşmiyor.",
"Paste Large Text as File": "Büyük Metni Dosya Olarak Yapıştır",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF belgesi (.pdf)",
"PDF Extract Images (OCR)": "PDF Görüntülerini Çıkart (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "Yeniden Sıralama Modeli",
"Reset": "Sıfırla",
@@ -47,6 +47,7 @@
"Access Control": "زىيارەت باشقۇرۇش",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "بارلىق ئىشلەتكۈچىلەر كىرەلەيدىغان",
"Account": "ھېسابات",
"Account Activation Pending": "ھېسابات ئاكتىپلىنىشى كۈتۈلمەكتە",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "ئۇلانما كۆچۈرۈش",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "چاپلاش تاختىسىغا كۆچۈرۈش",
@@ -1273,6 +1275,7 @@
"Model": "مودېل",
"Model '{{modelName}}' has been successfully downloaded.": "مودېل '{{modelName}}' مۇۋەپپەقىيەتلىك چۈشۈرۈلدى.",
"Model '{{modelTag}}' is already in queue for downloading.": "مودېل '{{modelTag}}' ئاللىقاچان چۈشۈرۈش قاتارىغا قوشۇلغان.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "مودېل {{modelName}} كۆرۈنۈش ئىقتىدارى يوق",
"Model {{name}} is now {{status}}": "مودېل {{name}} ھازىر {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "مودېل {{name}} ھازىر كۆرۈنىدۇ",
"Model accepts file inputs": "مودېل ھۆججەت كىرگۈزۈشنى قوبۇل قىلىدۇ",
"Model accepts image inputs": "مودېل رەسىم كىرگۈزۈشنى قوبۇل قىلىدۇ",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "مودېل كود ئىجرا قىلىپ ھېسابلاشقا قادىر",
"Model can generate images based on text prompts": "مودېل تېكست تۈرتكە ئارقىلىق رەسىم ھاسىل قىلالايدۇ",
"Model can search the web for information": "مودېل توردا ئۇچۇر ئىزدەيدۇ",
@@ -1500,6 +1504,7 @@
"Password": "پارول",
"Passwords do not match.": "",
"Paste Large Text as File": "چوڭ تېكستنى ھۆججەت قىلىپ چاپلا",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF ھۆججىتى (.pdf)",
"PDF Extract Images (OCR)": "PDF رەسىم چىقىرىش (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "قايتا تەرتىپلەش ماتورى",
"Reranking Model": "قايتا تەرتىپلەش مودېلى",
"Reset": "قايتا تەڭشەش",
@@ -49,6 +49,7 @@
"Access Control": "Контроль доступу",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Доступно всім користувачам",
"Account": "Обліковий запис",
"Account Activation Pending": "Очікування активації облікового запису",
@@ -441,6 +442,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Копіювати посилання",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Копіювати в буфер обміну",
@@ -1275,6 +1277,7 @@
"Model": "Модель",
"Model '{{modelName}}' has been successfully downloaded.": "Модель '{{modelName}}' успішно завантажено.",
"Model '{{modelTag}}' is already in queue for downloading.": "Модель '{{modelTag}}' вже знаходиться в черзі на завантаження.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Модель {{modelName}} не здатна бачити",
"Model {{name}} is now {{status}}": "Модель {{name}} тепер має {{status}}",
@@ -1282,6 +1285,7 @@
"Model {{name}} is now visible": "Модель {{name}} тепер видима",
"Model accepts file inputs": "",
"Model accepts image inputs": "Модель приймає зображеня",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1502,6 +1506,7 @@
"Password": "Пароль",
"Passwords do not match.": "",
"Paste Large Text as File": "Вставити великий текст як файл",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF документ (.pdf)",
"PDF Extract Images (OCR)": "Розпізнавання зображень з PDF (OCR)",
@@ -1650,6 +1655,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "Модель переранжування",
"Reset": "Скидання",
@@ -47,6 +47,7 @@
"Access Control": "",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "",
"Account": "اکاؤنٹ",
"Account Activation Pending": "اکاؤنٹ فعال ہونے کا انتظار ہے",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "لنک کاپی کریں",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "کلپ بورڈ پر کاپی کریں",
@@ -1273,6 +1275,7 @@
"Model": "ماڈل",
"Model '{{modelName}}' has been successfully downloaded.": "ماڈل '{{modelName}}' کامیابی سے ڈاؤن لوڈ ہو گیا ہے",
"Model '{{modelTag}}' is already in queue for downloading.": "ماڈل '{{modelTag}}' پہلے ہی ڈاؤن لوڈ کے لیے قطار میں ہے",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "ماڈل {{modelName}} بصری صلاحیت نہیں رکھتا",
"Model {{name}} is now {{status}}": "ماڈل {{name}} اب {{status}} ہے",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "",
"Model accepts file inputs": "",
"Model accepts image inputs": "ماڈل تصویری ان پٹس قبول کرتا ہے",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1500,6 +1504,7 @@
"Password": "پاس ورڈ",
"Passwords do not match.": "",
"Paste Large Text as File": "",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "پی ڈی ایف دستاویز (.pdf)",
"PDF Extract Images (OCR)": "پی ڈی ایف سے تصاویر نکالیں (او سی آر)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "دوبارہ درجہ بندی کا ماڈل",
"Reset": "ری سیٹ",
@@ -47,6 +47,7 @@
"Access Control": "Кириш назорати",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Барча фойдаланувчилар учун очиқ",
"Account": "Ҳисоб",
"Account Activation Pending": "Ҳисобни фаоллаштириш кутилмоқда",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Ҳаволани нусхалаш",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Буферга нусхалаш",
@@ -1273,6 +1275,7 @@
"Model": "Модел",
"Model '{{modelName}}' has been successfully downloaded.": "“{{modelName}}” модели юклаб олинди.",
"Model '{{modelTag}}' is already in queue for downloading.": "“{{modelTag}}” модели аллақачон юклаб олиш учун навбатда турибди.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "{{modelName}} модели кўриш қобилиятига эга эмас",
"Model {{name}} is now {{status}}": "{{name}} модели энди {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "{{name}} модели энди кўринади",
"Model accepts file inputs": "Модел файл киришларини қабул қилади",
"Model accepts image inputs": "Модел расм киритишни қабул қилади",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Модел кодни бажариши ва ҳисоб-китобларни амалга ошириши мумкин",
"Model can generate images based on text prompts": "Модел матн таклифлари асосида тасвирларни яратиши мумкин",
"Model can search the web for information": "Модел маълумот учун Интернетда қидириши мумкин",
@@ -1500,6 +1504,7 @@
"Password": "Парол",
"Passwords do not match.": "",
"Paste Large Text as File": "Катта матнни файл сифатида жойлаштиринг",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "ПДФ ҳужжат (.pdf)",
"PDF Extract Images (OCR)": "ПДФ экстракти расмлари (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "Двигателни қайта тартиблаш",
"Reranking Model": "Қайта тартиблаш модели",
"Reset": "Қайта тиклаш",
@@ -47,6 +47,7 @@
"Access Control": "Kirish nazorati",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Barcha foydalanuvchilar uchun ochiq",
"Account": "Hisob",
"Account Activation Pending": "Hisobni faollashtirish kutilmoqda",
@@ -439,6 +440,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Havolani nusxalash",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Buferga nusxalash",
@@ -1273,6 +1275,7 @@
"Model": "Model",
"Model '{{modelName}}' has been successfully downloaded.": "“{{modelName}}” modeli yuklab olindi.",
"Model '{{modelTag}}' is already in queue for downloading.": "“{{modelTag}}” modeli allaqachon yuklab olish uchun navbatda turibdi.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "{{modelName}} modeli ko'rish qobiliyatiga ega emas",
"Model {{name}} is now {{status}}": "{{name}} modeli endi {{status}}",
@@ -1280,6 +1283,7 @@
"Model {{name}} is now visible": "{{name}} modeli endi koʻrinadi",
"Model accepts file inputs": "Model fayl kirishlarini qabul qiladi",
"Model accepts image inputs": "Model rasm kiritishni qabul qiladi",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "Model kodni bajarishi va hisob-kitoblarni amalga oshirishi mumkin",
"Model can generate images based on text prompts": "Model matn takliflari asosida tasvirlarni yaratishi mumkin",
"Model can search the web for information": "Model ma'lumot uchun Internetda qidirishi mumkin",
@@ -1500,6 +1504,7 @@
"Password": "Parol",
"Passwords do not match.": "",
"Paste Large Text as File": "Katta matnni fayl sifatida joylashtiring",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "PDF hujjat (.pdf)",
"PDF Extract Images (OCR)": "PDF ekstrakti rasmlari (OCR)",
@@ -1648,6 +1653,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "Dvigatelni qayta tartiblash",
"Reranking Model": "Qayta tartiblash modeli",
"Reset": "Qayta tiklash",
@@ -46,6 +46,7 @@
"Access Control": "Kiểm soát truy cập",
"Access Grants": "",
"Access List": "",
"Access updated": "",
"Accessible to all users": "Truy cập được bởi tất cả người dùng",
"Account": "Tài khoản",
"Account Activation Pending": "Tài khoản đang chờ kích hoạt",
@@ -438,6 +439,7 @@
"Copy Last Response": "",
"Copy link": "",
"Copy Link": "Sao chép link",
"Copy Path": "",
"Copy Prompt": "",
"Copy Share Link": "",
"Copy to clipboard": "Sao chép vào clipboard",
@@ -1272,6 +1274,7 @@
"Model": "Mô hình",
"Model '{{modelName}}' has been successfully downloaded.": "Mô hình '{{modelName}}' đã được tải xuống thành công.",
"Model '{{modelTag}}' is already in queue for downloading.": "Mô hình '{{modelTag}}' đã có trong hàng đợi để tải xuống.",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "",
"Model {{modelName}} is not vision capable": "Model {{modelName}} không có khả năng nhìn",
"Model {{name}} is now {{status}}": "Model {{name}} bây giờ là {{status}}",
@@ -1279,6 +1282,7 @@
"Model {{name}} is now visible": "Mô hình {{name}} hiện có thể nhìn thấy",
"Model accepts file inputs": "",
"Model accepts image inputs": "Mô hình chấp nhận đầu vào hình ảnh",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "",
"Model can generate images based on text prompts": "",
"Model can search the web for information": "",
@@ -1499,6 +1503,7 @@
"Password": "Mật khẩu",
"Passwords do not match.": "",
"Paste Large Text as File": "Dán Văn bản Lớn dưới dạng Tệp",
"Path copied": "",
"Paused": "",
"PDF document (.pdf)": "Tập tin PDF (.pdf)",
"PDF Extract Images (OCR)": "Trích xuất ảnh từ PDF (OCR)",
@@ -1647,6 +1652,7 @@
"Reply to thread...": "",
"Replying to {{NAME}}": "",
"required": "",
"Reranking Batch Size": "",
"Reranking Engine": "",
"Reranking Model": "Reranking Model",
"Reset": "Xóa toàn bộ",
@@ -46,6 +46,7 @@
"Access Control": "访问控制",
"Access Grants": "访问授权",
"Access List": "访问列表",
"Access updated": "",
"Accessible to all users": "对所有用户开放",
"Account": "账号",
"Account Activation Pending": "账号待激活",
@@ -438,6 +439,7 @@
"Copy Last Response": "复制最后一个回答",
"Copy link": "复制链接",
"Copy Link": "复制链接",
"Copy Path": "",
"Copy Prompt": "复制提示词",
"Copy Share Link": "复制分享链接",
"Copy to clipboard": "复制到剪贴板",
@@ -1272,6 +1274,7 @@
"Model": "模型",
"Model '{{modelName}}' has been successfully downloaded.": "模型“{{modelName}}”已成功下载",
"Model '{{modelTag}}' is already in queue for downloading.": "模型“{{modelTag}}”已在下载队列中",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "成功删除模型:{{modelName}}",
"Model {{modelName}} is not vision capable": "模型 {{modelName}} 不支持视觉能力",
"Model {{name}} is now {{status}}": "模型 {{name}} 现在是 {{status}}",
@@ -1279,6 +1282,7 @@
"Model {{name}} is now visible": "模型 {{name}} 已可见",
"Model accepts file inputs": "模型支持文件输入",
"Model accepts image inputs": "模型支持图像输入",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "模型可执行代码并进行计算",
"Model can generate images based on text prompts": "模型可根据文本提示生成图像",
"Model can search the web for information": "模型可进行联网搜索",
@@ -1499,6 +1503,7 @@
"Password": "密码",
"Passwords do not match.": "两次输入的密码不一致。",
"Paste Large Text as File": "粘贴大文本为文件",
"Path copied": "",
"Paused": "已暂停",
"PDF document (.pdf)": "PDF 文档 (.pdf)",
"PDF Extract Images (OCR)": "PDF 图像提取(使用文字识别)",
@@ -1647,6 +1652,7 @@
"Reply to thread...": "回复主题...",
"Replying to {{NAME}}": "回复 {{NAME}}",
"required": "必填",
"Reranking Batch Size": "",
"Reranking Engine": "重新排名引擎",
"Reranking Model": "重新排名模型",
"Reset": "重置",
@@ -46,6 +46,7 @@
"Access Control": "存取控制",
"Access Grants": "存取授權",
"Access List": "存取清單",
"Access updated": "",
"Accessible to all users": "所有使用者皆可存取",
"Account": "帳號",
"Account Activation Pending": "帳號待啟用",
@@ -438,6 +439,7 @@
"Copy Last Response": "複製最後的回應",
"Copy link": "複製連結",
"Copy Link": "複製連結",
"Copy Path": "",
"Copy Prompt": "複製提示詞",
"Copy Share Link": "複製分享連結",
"Copy to clipboard": "複製到剪貼簿",
@@ -1272,6 +1274,7 @@
"Model": "模型",
"Model '{{modelName}}' has been successfully downloaded.": "模型「{{modelName}}」已成功下載。",
"Model '{{modelTag}}' is already in queue for downloading.": "模型「{{modelTag}}」已在下載佇列中。",
"Model {{modelId}} not found": "",
"Model {{modelName}} deleted successfully": "模型 {{modelName}} 已成功刪除",
"Model {{modelName}} is not vision capable": "模型 {{modelName}} 不具備視覺能力",
"Model {{name}} is now {{status}}": "模型 {{name}} 現在狀態為 {{status}}",
@@ -1279,6 +1282,7 @@
"Model {{name}} is now visible": "模型 {{name}} 已顯示",
"Model accepts file inputs": "模型支援檔案輸入",
"Model accepts image inputs": "模型接受影像輸入",
"Model can access Open Terminal for command execution and file management": "",
"Model can execute code and perform calculations": "模型可執行程式碼並進行運算",
"Model can generate images based on text prompts": "模型可根據文字提示詞產生影像",
"Model can search the web for information": "模型可透過網路搜尋資訊",
@@ -1499,6 +1503,7 @@
"Password": "密碼",
"Passwords do not match.": "兩次輸入的密碼不一致。",
"Paste Large Text as File": "將大型文字以檔案貼上",
"Path copied": "",
"Paused": "已暫停",
"PDF document (.pdf)": "PDF 檔案 (.pdf)",
"PDF Extract Images (OCR)": "PDF 影像擷取(OCR 光學文字辨識)",
@@ -1647,6 +1652,7 @@
"Reply to thread...": "回覆討論串...",
"Replying to {{NAME}}": "回覆 {{NAME}}",
"required": "必填",
"Reranking Batch Size": "",
"Reranking Engine": "重新排序引擎",
"Reranking Model": "重新排序模型",
"Reset": "重設",
+5 -1
View File
@@ -1723,7 +1723,11 @@ const cleanupMermaidTempElements = (id: string) => {
document.getElementById(`i${id}`)?.remove();
};
export const renderMermaidDiagram = async (mermaid: typeof import('mermaid').default, code: string, renderId?: string) => {
export const renderMermaidDiagram = async (
mermaid: typeof import('mermaid').default,
code: string,
renderId?: string
) => {
const id = renderId ?? `mermaid-${uuidv4()}`;
try {
const parseResult = await mermaid.parse(code, { suppressErrors: false });