chore: format
This commit is contained in:
parent
9ae22c5efe
commit
87847ab31a
|
@ -687,7 +687,12 @@ async def signout(request: Request, response: Response):
|
|||
status_code=200,
|
||||
content={
|
||||
"status": True,
|
||||
"redirect_url": f"{logout_url}?id_token_hint={oauth_id_token}" + (f"&post_logout_redirect_uri={WEBUI_AUTH_SIGNOUT_REDIRECT_URL}" if WEBUI_AUTH_SIGNOUT_REDIRECT_URL else ""),
|
||||
"redirect_url": f"{logout_url}?id_token_hint={oauth_id_token}"
|
||||
+ (
|
||||
f"&post_logout_redirect_uri={WEBUI_AUTH_SIGNOUT_REDIRECT_URL}"
|
||||
if WEBUI_AUTH_SIGNOUT_REDIRECT_URL
|
||||
else ""
|
||||
),
|
||||
},
|
||||
headers=response.headers,
|
||||
)
|
||||
|
|
|
@ -49,6 +49,7 @@ async def get_all_channels(user=Depends(get_verified_user)):
|
|||
return Channels.get_channels()
|
||||
return Channels.get_channels_by_user_id(user.id)
|
||||
|
||||
|
||||
############################
|
||||
# CreateNewChannel
|
||||
############################
|
||||
|
|
|
@ -1195,12 +1195,16 @@ def save_docs_to_vector_db(
|
|||
# Extract header values in order based on headers_to_split_on
|
||||
for _, header_meta_key_name in headers_to_split_on:
|
||||
if header_meta_key_name in split_chunk.metadata:
|
||||
headings_list.append(split_chunk.metadata[header_meta_key_name])
|
||||
headings_list.append(
|
||||
split_chunk.metadata[header_meta_key_name]
|
||||
)
|
||||
|
||||
md_split_docs.append(Document(
|
||||
md_split_docs.append(
|
||||
Document(
|
||||
page_content=split_chunk.page_content,
|
||||
metadata={**doc.metadata, "headings": headings_list}
|
||||
))
|
||||
metadata={**doc.metadata, "headings": headings_list},
|
||||
)
|
||||
)
|
||||
|
||||
docs = md_split_docs
|
||||
else:
|
||||
|
|
|
@ -200,7 +200,9 @@
|
|||
<input
|
||||
class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden"
|
||||
bind:value={STT_SUPPORTED_CONTENT_TYPES}
|
||||
placeholder={$i18n.t('e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)')}
|
||||
placeholder={$i18n.t(
|
||||
'e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)'
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
class="w-full {className} text-sm rounded-xl px-1 py-1.5 z-50 bg-white dark:bg-gray-850 dark:text-white shadow-lg font-primary"
|
||||
sideOffset={8}
|
||||
side="bottom"
|
||||
align="start"
|
||||
align="end"
|
||||
transition={(e) => fade(e, { duration: 100 })}
|
||||
>
|
||||
<button
|
||||
|
|
|
@ -1026,7 +1026,27 @@ Provide the enhanced notes in markdown format. Use markdown syntax for headings,
|
|||
<button class=" flex items-center gap-1 w-fit py-1 px-1.5 rounded-lg min-w-fit">
|
||||
<Calendar className="size-3.5" strokeWidth="2" />
|
||||
|
||||
<span>{dayjs(note.created_at / 1000000).calendar()}</span>
|
||||
<!-- check for same date, yesterday, last week, and other -->
|
||||
|
||||
{#if dayjs(note.created_at / 1000000).isSame(dayjs(), 'day')}
|
||||
<span
|
||||
>{dayjs(note.created_at / 1000000).format($i18n.t('[Today at] h:mm A'))}</span
|
||||
>
|
||||
{:else if dayjs(note.created_at / 1000000).isSame(dayjs().subtract(1, 'day'), 'day')}
|
||||
<span
|
||||
>{dayjs(note.created_at / 1000000).format(
|
||||
$i18n.t('[Yesterday at] h:mm A')
|
||||
)}</span
|
||||
>
|
||||
{:else if dayjs(note.created_at / 1000000).isSame(dayjs().subtract(1, 'week'), 'week')}
|
||||
<span
|
||||
>{dayjs(note.created_at / 1000000).format(
|
||||
$i18n.t('[Last] dddd [at] h:mm A')
|
||||
)}</span
|
||||
>
|
||||
{:else}
|
||||
<span>{dayjs(note.created_at / 1000000).format($i18n.t('DD/MM/YYYY'))}</span>
|
||||
{/if}
|
||||
</button>
|
||||
|
||||
<button
|
||||
|
@ -1044,13 +1064,13 @@ Provide the enhanced notes in markdown format. Use markdown syntax for headings,
|
|||
{#if editor}
|
||||
<div class="flex items-center gap-1 px-1 min-w-fit">
|
||||
<div>
|
||||
{$i18n.t('{{count}} words', {
|
||||
count: wordCount
|
||||
{$i18n.t('{{COUNT}} words', {
|
||||
COUNT: wordCount
|
||||
})}
|
||||
</div>
|
||||
<div>
|
||||
{$i18n.t('{{count}} characters', {
|
||||
count: charCount
|
||||
{$i18n.t('{{COUNT}} characters', {
|
||||
COUNT: charCount
|
||||
})}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "( `sh webui.sh --api`مثال)",
|
||||
"(latest)": "(الأخير)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ نماذج }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "دردشات {{user}}",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} مطلوب",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "التعليمات المتقدمة",
|
||||
"Advanced Params": "المعلمات المتقدمة",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "جميع الملفات",
|
||||
"All models deleted successfully": "",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "مفتاح واجهة برمجة تطبيقات البحث الشجاع",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "انسخ كتلة التعليمات البرمجية الأخيرة",
|
||||
"Copy last response": "انسخ الرد الأخير",
|
||||
"Copy link": "",
|
||||
"Copy Link": "أنسخ الرابط",
|
||||
"Copy to clipboard": "",
|
||||
"Copying to clipboard was successful!": "تم النسخ إلى الحافظة بنجاح",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "قاعدة البيانات",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "ديسمبر",
|
||||
"Default": "الإفتراضي",
|
||||
"Default (Open AI)": "",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "فشل في إنشاء مفتاح API.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "",
|
||||
"Hello, {{name}}": " {{name}} مرحبا",
|
||||
"Help": "مساعدة",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "تاق غير صالحة",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "يناير",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "انضم إلى Discord للحصول على المساعدة.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "مارس",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "",
|
||||
"Max Upload Size": "",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "المزيد",
|
||||
"My Notes": "",
|
||||
"Name": "الأسم",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "أو",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "آخر",
|
||||
"OUTPUT": "",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "",
|
||||
"Search Knowledge": "",
|
||||
"Search Models": "نماذج البحث",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "أبحث حث",
|
||||
"Search Result Count": "عدد نتائج البحث",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "وقف التسلسل",
|
||||
"Stream Chat Response": "",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(مثال: تشغيل الأمر: `sh webui.sh --api`)",
|
||||
"(latest)": "(أحدث)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "النماذج: {{ models }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} سطر/أسطر مخفية",
|
||||
"{{COUNT}} Replies": "{{COUNT}} رد/ردود",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "محادثات المستخدم {{user}}",
|
||||
"{{webUIName}} Backend Required": "يتطلب الخلفية الخاصة بـ {{webUIName}}",
|
||||
"*Prompt node ID(s) are required for image generation": "*معرّف/معرّفات عقدة الموجه مطلوبة لتوليد الصور",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "للمسؤولين الوصول إلى جميع الأدوات في جميع الأوقات؛ بينما يحتاج المستخدمون إلى تعيين أدوات لكل نموذج في مساحة العمل.",
|
||||
"Advanced Parameters": "المعلمات المتقدمة",
|
||||
"Advanced Params": "المعلمات المتقدمة",
|
||||
"AI": "",
|
||||
"All": "الكل",
|
||||
"All Documents": "جميع المستندات",
|
||||
"All models deleted successfully": "تم حذف جميع النماذج بنجاح",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "نقطة نهاية Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "مفتاح اشتراك Bing Search V7",
|
||||
"Bocha Search API Key": "مفتاح API لـ Bocha Search",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "تعزيز أو معاقبة رموز محددة لردود مقيدة. ستتراوح قيم التحيز بين -100 و100 (شاملة). (افتراضي: لا شيء)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "مفتاح API لـ Brave Search",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "بواسطة {{name}}",
|
||||
"Bypass Embedding and Retrieval": "تجاوز التضمين والاسترجاع",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "تنفيذ الشيفرة",
|
||||
"Code Execution": "تنفيذ الشيفرة",
|
||||
"Code Execution Engine": "محرك تنفيذ الشيفرة",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "نسخ آخر كتلة شيفرة",
|
||||
"Copy last response": "نسخ آخر رد",
|
||||
"Copy link": "",
|
||||
"Copy Link": "نسخ الرابط",
|
||||
"Copy to clipboard": "نسخ إلى الحافظة",
|
||||
"Copying to clipboard was successful!": "تم النسخ إلى الحافظة بنجاح!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "قاعدة البيانات",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "ديسمبر",
|
||||
"Default": "افتراضي",
|
||||
"Default (Open AI)": "افتراضي (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "مثال: أدوات لتنفيذ عمليات متنوعة",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "حدث خطأ أثناء تحميل الملف: {{error}}",
|
||||
"Evaluations": "التقييمات",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "مفتاح API لـ Exa",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "مثال: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "مثال: ALL",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "فشل في إنشاء مفتاح API.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "فشل في جلب النماذج",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "اسم المجموعة",
|
||||
"Group updated successfully": "تم تحديث المجموعة بنجاح",
|
||||
"Groups": "المجموعات",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "الاهتزاز اللمسي",
|
||||
"Hello, {{name}}": " {{name}} مرحبا",
|
||||
"Help": "مساعدة",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "تاق غير صالحة",
|
||||
"is typing...": "يكتب...",
|
||||
"Italic": "",
|
||||
"January": "يناير",
|
||||
"Jina API Key": "مفتاح API لـ Jina",
|
||||
"join our Discord for help.": "انضم إلى Discord للحصول على المساعدة.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "مارس",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "الحد الأقصى لعدد التحميلات",
|
||||
"Max Upload Size": "الحد الأقصى لحجم الملف المرفوع",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "مفتاح API لـ Mojeek Search",
|
||||
"more": "المزيد",
|
||||
"More": "المزيد",
|
||||
"My Notes": "",
|
||||
"Name": "الأسم",
|
||||
"Name your knowledge base": "قم بتسمية قاعدة معرفتك",
|
||||
"Native": "أصلي",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "أو",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "تنظيم المستخدمين الخاصين بك",
|
||||
"Other": "آخر",
|
||||
"OUTPUT": "الإخراج",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "البحث في الوظائف",
|
||||
"Search Knowledge": "البحث في المعرفة",
|
||||
"Search Models": "نماذج البحث",
|
||||
"Search Notes": "",
|
||||
"Search options": "خيارات البحث",
|
||||
"Search Prompts": "أبحث حث",
|
||||
"Search Result Count": "عدد نتائج البحث",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "وقف التسلسل",
|
||||
"Stream Chat Response": "بث استجابة الدردشة",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "نموذج تحويل الصوت إلى نص (STT)",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "يتم استخدام أخذ العينات بدون ذيل لتقليل تأثير الرموز الأقل احتمالًا. القيمة الأعلى (مثل 2.0) تقلل التأثير أكثر، والقيمة 1.0 تعطل هذا الإعداد.",
|
||||
"Talk to model": "تحدث إلى النموذج",
|
||||
"Tap to interrupt": "اضغط للمقاطعة",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "المهام",
|
||||
"Tavily API Key": "مفتاح API لـ Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "إلغاء أرشفة الكل",
|
||||
"Unarchive All Archived Chats": "إلغاء أرشفة جميع المحادثات المؤرشفة",
|
||||
"Unarchive Chat": "إلغاء أرشفة المحادثة",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "اكشف الأسرار",
|
||||
"Unpin": "إزالة التثبيت",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(напр. `sh webui.sh --api`)",
|
||||
"(latest)": "(последна)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Отговори",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}}'s чатове",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Изисква се Бекенд",
|
||||
"*Prompt node ID(s) are required for image generation": "*Идентификатор(ите) на възел-а се изисква(т) за генериране на изображения",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Администраторите имат достъп до всички инструменти по всяко време; потребителите се нуждаят от инструменти, присвоени за всеки модел в работното пространство.",
|
||||
"Advanced Parameters": "Разширени параметри",
|
||||
"Advanced Params": "Разширени параметри",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "Всички Документи",
|
||||
"All models deleted successfully": "Всички модели са изтрити успешно",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Крайна точка за Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Абонаментен ключ за Bing Search V7",
|
||||
"Bocha Search API Key": "API ключ за Bocha Search",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "API ключ за Brave Search",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "От {{name}}",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Изпълнение на код",
|
||||
"Code Execution": "Изпълнение на код",
|
||||
"Code Execution Engine": "Двигател за изпълнение на кода",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Копиране на последен код блок",
|
||||
"Copy last response": "Копиране на последен отговор",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Копиране на връзка",
|
||||
"Copy to clipboard": "Копиране в клипборда",
|
||||
"Copying to clipboard was successful!": "Копирането в клипборда беше успешно!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "База данни",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Декември",
|
||||
"Default": "По подразбиране",
|
||||
"Default (Open AI)": "По подразбиране (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "напр. Инструменти за извършване на различни операции",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "Грешка при качване на файла: {{error}}",
|
||||
"Evaluations": "Оценки",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "API ключ за Exa",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Пример: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Пример: ВСИЧКИ",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Неуспешно създаване на API ключ.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Неуспешно извличане на модели",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Грешка при четене на съдържанието от клипборда",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Име на групата",
|
||||
"Group updated successfully": "Групата е актуализирана успешно",
|
||||
"Groups": "Групи",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Тактилна обратна връзка",
|
||||
"Hello, {{name}}": "Здравей, {{name}}",
|
||||
"Help": "Помощ",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Невалиден таг",
|
||||
"is typing...": "пише...",
|
||||
"Italic": "",
|
||||
"January": "Януари",
|
||||
"Jina API Key": "API ключ за Jina",
|
||||
"join our Discord for help.": "свържете се с нашия Discord за помощ.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "Март",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "Максимален брой качвания",
|
||||
"Max Upload Size": "Максимален размер на качване",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "API ключ за Mojeek Search",
|
||||
"more": "още",
|
||||
"More": "Повече",
|
||||
"My Notes": "Моите бележки",
|
||||
"Name": "Име",
|
||||
"Name your knowledge base": "Именувайте вашата база от знания",
|
||||
"Native": "Нативен",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "или",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Организирайте вашите потребители",
|
||||
"Other": "Друго",
|
||||
"OUTPUT": "ИЗХОД",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Търсене на функции",
|
||||
"Search Knowledge": "Търсене в знания",
|
||||
"Search Models": "Търсене на модели",
|
||||
"Search Notes": "",
|
||||
"Search options": "Опции за търсене",
|
||||
"Search Prompts": "Търси Промптове",
|
||||
"Search Result Count": "Брой резултати от търсенето",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Стоп последователност",
|
||||
"Stream Chat Response": "Поточен чат отговор",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "STT Модел",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "Докоснете за прекъсване",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "Задачи",
|
||||
"Tavily API Key": "Tavily API Ключ",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Разархивирай всички",
|
||||
"Unarchive All Archived Chats": "Разархивирай всички архивирани чатове",
|
||||
"Unarchive Chat": "Разархивирай чат",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "Разкрий мистерии",
|
||||
"Unpin": "Откачи",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(যেমন `sh webui.sh --api`)",
|
||||
"(latest)": "(সর্বশেষ)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ মডেল}}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}}র চ্যাটস",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} ব্যাকএন্ড আবশ্যক",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "এডভান্সড প্যারামিটার্স",
|
||||
"Advanced Params": "অ্যাডভান্সড প্যারাম",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "সব ডকুমেন্ট",
|
||||
"All models deleted successfully": "",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "সাহসী অনুসন্ধান API কী",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "সর্বশেষ কোড ব্লক কপি করুন",
|
||||
"Copy last response": "সর্বশেষ রেসপন্স কপি করুন",
|
||||
"Copy link": "",
|
||||
"Copy Link": "লিংক কপি করুন",
|
||||
"Copy to clipboard": "",
|
||||
"Copying to clipboard was successful!": "ক্লিপবোর্ডে কপি করা সফল হয়েছে",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "ডেটাবেজ",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "ডেসেম্বর",
|
||||
"Default": "ডিফল্ট",
|
||||
"Default (Open AI)": "",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "API Key তৈরি করা যায়নি।",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "ক্লিপবোর্ডের বিষয়বস্তু পড়া সম্ভব হয়নি",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "",
|
||||
"Hello, {{name}}": "হ্যালো, {{name}}",
|
||||
"Help": "সহায়তা",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "অবৈধ ট্যাগ",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "জানুয়ারী",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "সাহায্যের জন্য আমাদের Discord-এ যুক্ত হোন",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "মার্চ",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "",
|
||||
"Max Upload Size": "",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "আরো",
|
||||
"My Notes": "",
|
||||
"Name": "নাম",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "অথবা",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "অন্যান্য",
|
||||
"OUTPUT": "",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "",
|
||||
"Search Knowledge": "",
|
||||
"Search Models": "অনুসন্ধান মডেল",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "প্রম্পটসমূহ অনুসন্ধান করুন",
|
||||
"Search Result Count": "অনুসন্ধানের ফলাফল গণনা",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "সিকোয়েন্স থামান",
|
||||
"Stream Chat Response": "",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(དཔེར་ན། `sh webui.sh --api`)",
|
||||
"(latest)": "(ཆེས་གསར།)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "ཡིག་ཕྲེང་ {{COUNT}} སྦས་ཡོད།",
|
||||
"{{COUNT}} Replies": "ལན་ {{COUNT}}",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}} ཡི་ཁ་བརྡ།",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} རྒྱབ་སྣེ་དགོས།",
|
||||
"*Prompt node ID(s) are required for image generation": "*པར་བཟོའི་ཆེད་དུ་འགུལ་སློང་མདུད་ཚེག་གི་ ID(s) དགོས།",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "དོ་དམ་པས་དུས་རྟག་ཏུ་ལག་ཆ་ཡོངས་ལ་འཛུལ་སྤྱོད་བྱེད་ཆོག བེད་སྤྱོད་མཁན་གྱིས་ལས་ཡུལ་ནང་དཔེ་དབྱིབས་རེ་རེར་བཀོད་པའི་ལག་ཆ་དགོས་མཁོ་ཡོད།",
|
||||
"Advanced Parameters": "མཐོ་རིམ་ཞུགས་གྲངས།",
|
||||
"Advanced Params": "མཐོ་རིམ་ཞུགས།",
|
||||
"AI": "",
|
||||
"All": "ཡོངས།",
|
||||
"All Documents": "ཡིག་ཆ་ཡོངས།",
|
||||
"All models deleted successfully": "དཔེ་དབྱིབས་ཡོངས་རྫོགས་ལེགས་པར་བསུབས་ཟིན།",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Bing Search V7 མཇུག་མཐུད།",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 མངགས་ཉོ་ལྡེ་མིག",
|
||||
"Bocha Search API Key": "Bocha Search API ལྡེ་མིག",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "ཚད་བཀག་ལན་གྱི་ཆེད་དུ་ཊོཀ་ཀེན་ངེས་ཅན་ལ་ཤུགས་སྣོན་ནམ་ཉེས་ཆད་གཏོང་བ། ཕྱོགས་ཞེན་གྱི་རིན་ཐང་ -100 ནས་ 100 བར་བཙིར་ངེས། (ཚུད་པ།) (སྔོན་སྒྲིག་མེད།)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Brave Search API ལྡེ་མིག",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "{{name}} ཡིས།",
|
||||
"Bypass Embedding and Retrieval": "ཚུད་འཇུག་དང་ལེན་ཚུར་སྒྲུབ་ལས་བརྒལ་བ།",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "ཀོཌ་ལག་བསྟར།",
|
||||
"Code Execution": "ཀོཌ་ལག་བསྟར།",
|
||||
"Code Execution Engine": "ཀོཌ་ལག་བསྟར་འཕྲུལ་འཁོར།",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "ཀོཌ་གཏོགས་ཁོངས་མཐའ་མ་འདྲ་བཤུས།",
|
||||
"Copy last response": "ལན་མཐའ་མ་འདྲ་བཤུས།",
|
||||
"Copy link": "",
|
||||
"Copy Link": "སྦྲེལ་ཐག་འདྲ་བཤུས།",
|
||||
"Copy to clipboard": "སྦྱར་སྡེར་དུ་འདྲ་བཤུས།",
|
||||
"Copying to clipboard was successful!": "སྦྱར་སྡེར་དུ་འདྲ་བཤུས་བྱེད་པ་ལེགས་འགྲུབ་བྱུང་།",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "གནས་ཚུལ་མཛོད།",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "ཟླ་བ་བཅུ་གཉིས་པ།",
|
||||
"Default": "སྔོན་སྒྲིག",
|
||||
"Default (Open AI)": "སྔོན་སྒྲིག (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "དཔེར་ན། ལས་ཀ་སྣ་ཚོགས་སྒྲུབ་བྱེད་ཀྱི་ལག་ཆ།",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "ཡིག་ཆ་སྤར་སྐབས་ནོར་འཁྲུལ།: {{error}}",
|
||||
"Evaluations": "གདེང་འཇོག",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Exa API ལྡེ་མིག",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "དཔེར་ན། (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "དཔེར་ན། ALL",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "API ལྡེ་མིག་བཟོ་མ་ཐུབ།",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "དཔེ་དབྱིབས་ལེན་པར་མ་ཐུབ།",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "སྦྱར་སྡེར་གྱི་ནང་དོན་ཀློག་མ་ཐུབ།",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "ཚོགས་པའི་མིང་།",
|
||||
"Group updated successfully": "ཚོགས་པ་ལེགས་པར་གསར་སྒྱུར་བྱས་ཟིན།",
|
||||
"Groups": "ཚོགས་པ།",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "འདར་འཕྲུལ་གྱི་བསམ་འཆར།",
|
||||
"Hello, {{name}}": "བཀྲ་ཤིས་བདེ་ལེགས། {{name}}",
|
||||
"Help": "རོགས་རམ།",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "རྟགས་ནུས་མེད།",
|
||||
"is typing...": "ཡིག་འབྲུ་རྒྱག་བཞིན་པ།...",
|
||||
"Italic": "",
|
||||
"January": "ཟླ་བ་དང་པོ།",
|
||||
"Jina API Key": "Jina API ལྡེ་མིག",
|
||||
"join our Discord for help.": "རོགས་རམ་ཆེད་དུ་ང་ཚོའི་ Discord ལ་མཉམ་ཞུགས་བྱེད་པ།",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "ལག་ཆའི་སར་བར་དོ་དམ།",
|
||||
"March": "ཟླ་བ་གསུམ་པ།",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "སྤར་བའི་གྲངས་མང་ཤོས།",
|
||||
"Max Upload Size": "སྤར་བའི་ཆེ་ཆུང་མང་ཤོས།",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Mojeek Search API ལྡེ་མིག",
|
||||
"more": "མང་བ།",
|
||||
"More": "མང་བ།",
|
||||
"My Notes": "",
|
||||
"Name": "མིང་།",
|
||||
"Name your knowledge base": "ཁྱེད་ཀྱི་ཤེས་བྱའི་རྟེན་གཞི་ལ་མིང་ཐོགས།",
|
||||
"Native": "ས་སྐྱེས།",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "ཡང་ན།",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "ཁྱེད་ཀྱི་བེད་སྤྱོད་མཁན་སྒྲིག་འཛུགས།",
|
||||
"Other": "གཞན།",
|
||||
"OUTPUT": "ཐོན་འབྲས།",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "ལས་འགན་འཚོལ་བཤེར།",
|
||||
"Search Knowledge": "ཤེས་བྱ་འཚོལ་བཤེར།",
|
||||
"Search Models": "དཔེ་དབྱིབས་འཚོལ་བཤེར།",
|
||||
"Search Notes": "",
|
||||
"Search options": "འཚོལ་བཤེར་འདེམས་ཀ",
|
||||
"Search Prompts": "འགུལ་སློང་འཚོལ་བཤེར།",
|
||||
"Search Result Count": "འཚོལ་བཤེར་འབྲས་བུའི་གྲངས།",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "མཚམས་འཇོག་རིམ་པ།",
|
||||
"Stream Chat Response": "ཁ་བརྡའི་ལན་རྒྱུག་པ།",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "STT དཔེ་དབྱིབས།",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "མཇུག་མ་རང་དབང་མ་དཔེ་འདེམས་པ་ནི་ཐོན་འབྲས་ནས་ཆགས་ཚུལ་དམའ་བའི་ཊོཀ་ཀེན་གྱི་ཤུགས་རྐྱེན་ཉུང་དུ་གཏོང་བར་བེད་སྤྱོད་བྱེད། རིན་ཐང་མཐོ་བ་ (དཔེར་ན། 2.0) ཡིས་ཤུགས་རྐྱེན་དེ་སྔར་ལས་ཉུང་དུ་གཏོང་ངེས། དེ་བཞིན་དུ་རིན་ཐང་ 1.0 ཡིས་སྒྲིག་འགོད་འདི་ནུས་མེད་བཏང་ངེས།",
|
||||
"Talk to model": "དཔེ་དབྱིབས་ལ་སྐད་ཆ་ཤོད།",
|
||||
"Tap to interrupt": "བར་ཆད་བྱེད་པར་མནན་པ།",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "ལས་འགན།",
|
||||
"Tavily API Key": "Tavily API ལྡེ་མིག",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "ཡོངས་རྫོགས་ཕྱིར་འདོན།",
|
||||
"Unarchive All Archived Chats": "ཡིག་མཛོད་དུ་བཞག་པའི་ཁ་བརྡ་ཡོངས་རྫོགས་ཕྱིར་འདོན།",
|
||||
"Unarchive Chat": "ཁ་བརྡ་ཕྱིར་འདོན།",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "གསང་བ་གྲོལ་བ།",
|
||||
"Unpin": "ཕྱིར་འདོན།",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(p. ex. `sh webui.sh --api`)",
|
||||
"(latest)": "(últim)",
|
||||
"(leave blank for to use commercial endpoint)": "(deixa-ho buit per utilitzar un punt d'accés comercial)",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "{{COUNT}} eines disponibles",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} línies ocultes",
|
||||
"{{COUNT}} Replies": "{{COUNT}} respostes",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "Els xats de {{user}}",
|
||||
"{{webUIName}} Backend Required": "El Backend de {{webUIName}} és necessari",
|
||||
"*Prompt node ID(s) are required for image generation": "*Els identificadors de nodes d'indicacions són necessaris per a la generació d'imatges",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Els administradors tenen accés a totes les eines en tot moment; els usuaris necessiten eines assignades per model a l'espai de treball.",
|
||||
"Advanced Parameters": "Paràmetres avançats",
|
||||
"Advanced Params": "Paràmetres avançats",
|
||||
"AI": "",
|
||||
"All": "Tots",
|
||||
"All Documents": "Tots els documents",
|
||||
"All models deleted successfully": "Tots els models s'han eliminat correctament",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Punt de connexió a Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Clau de subscripció a Bing Search V7",
|
||||
"Bocha Search API Key": "Clau API de Bocha Search",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Potenciar o penalitzar tokens específics per a respostes limitades. Els valors de biaix es fixaran entre -100 i 100 (inclosos). (Per defecte: cap)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Cal proporcionar tant el motor OCR de Docling com els idiomes o bé deixar-los buits.",
|
||||
"Brave Search API Key": "Clau API de Brave Search",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Per {{name}}",
|
||||
"Bypass Embedding and Retrieval": "Desactivar l'Embedding i el Retrieval",
|
||||
"Bypass Web Loader": "Ometre el càrregador web",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "Tancar la finestra de configuració de la connexió",
|
||||
"Close modal": "Tancar el modal",
|
||||
"Close settings modal": "Tancar el modal de configuració",
|
||||
"Code Block": "",
|
||||
"Code execution": "Execució de codi",
|
||||
"Code Execution": "Execució de Codi",
|
||||
"Code Execution Engine": "Motor d'execució de codi",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "Copiar el text formatat",
|
||||
"Copy last code block": "Copiar l'últim bloc de codi",
|
||||
"Copy last response": "Copiar l'última resposta",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Copiar l'enllaç",
|
||||
"Copy to clipboard": "Copiar al porta-retalls",
|
||||
"Copying to clipboard was successful!": "La còpia al porta-retalls s'ha realitzat correctament",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Base de dades",
|
||||
"Datalab Marker API": "API de Datalab Marker",
|
||||
"Datalab Marker API Key required.": "API de Datalab Marker requereix clau.",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Desembre",
|
||||
"Default": "Per defecte",
|
||||
"Default (Open AI)": "Per defecte (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "p. ex. pdf, docx, txt",
|
||||
"e.g. Tools for performing various operations": "p. ex. Eines per dur a terme operacions",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "p. ex. 3, 4, 5 (deixa-ho en blanc per utilitzar el per defecte)",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "p. ex. audio/wav,audio/mpeg (deixa-ho en blanc per utilitzar el per defecte)",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "p. ex. en-US, ja-JP, ca-ES (deixa-ho en blanc per detecció automàtica)",
|
||||
"e.g., westus (leave blank for eastus)": "p. ex. westus (deixa-ho en blanc per a eastus)",
|
||||
"e.g.) en,fr,de": "p. ex. en,fr,de",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "Error en descarregar el model: {{error}}",
|
||||
"Error uploading file: {{error}}": "Error en pujar l'arxiu: {{error}}",
|
||||
"Evaluations": "Avaluacions",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Clau API d'EXA",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Exemple: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Exemple: TOTS",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "No s'ha pogut copiar l'enllaç",
|
||||
"Failed to create API Key.": "No s'ha pogut crear la clau API.",
|
||||
"Failed to delete note": "No s'ha pogut eliminar la nota",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "No s'han pogut obtenir els models",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "No s'ha pogut carregar el contingut del fitxer",
|
||||
"Failed to read clipboard contents": "No s'ha pogut llegir el contingut del porta-retalls",
|
||||
"Failed to save connections": "No s'han pogut desar les connexions",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Nom del grup",
|
||||
"Group updated successfully": "Grup actualitzat correctament",
|
||||
"Groups": "Grups",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Retorn hàptic",
|
||||
"Hello, {{name}}": "Hola, {{name}}",
|
||||
"Help": "Ajuda",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "Arxiu JSON no vàlid",
|
||||
"Invalid Tag": "Etiqueta no vàlida",
|
||||
"is typing...": "està escrivint...",
|
||||
"Italic": "",
|
||||
"January": "Gener",
|
||||
"Jina API Key": "Clau API de Jina",
|
||||
"join our Discord for help.": "uneix-te al nostre Discord per obtenir ajuda.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "Gestionar els servidors d'eines",
|
||||
"March": "Març",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "Nombre màxim d'altaveus",
|
||||
"Max Upload Count": "Nombre màxim de càrregues",
|
||||
"Max Upload Size": "Mida màxima de càrrega",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Clau API de Mojeek Search",
|
||||
"more": "més",
|
||||
"More": "Més",
|
||||
"My Notes": "Les meves notes",
|
||||
"Name": "Nom",
|
||||
"Name your knowledge base": "Anomena la teva base de coneixement",
|
||||
"Native": "Natiu",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "Camí o URL a openapi.json",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Opcions per executar un model de llenguatge amb visió local a la descripció de la imatge. Els paràmetres fan referència a un model allotjat a HuggingFace. Aquest paràmetre és mutuament excloent amb picture_description_api.",
|
||||
"or": "o",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Organitza els teus usuaris",
|
||||
"Other": "Altres",
|
||||
"OUTPUT": "SORTIDA",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Cercar funcions",
|
||||
"Search Knowledge": "Cercar coneixement",
|
||||
"Search Models": "Cercar models",
|
||||
"Search Notes": "",
|
||||
"Search options": "Opcions de cerca",
|
||||
"Search Prompts": "Cercar indicacions",
|
||||
"Search Result Count": "Recompte de resultats de cerca",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "Atura la generació",
|
||||
"Stop Sequence": "Atura la seqüència",
|
||||
"Stream Chat Response": "Fer streaming de la resposta del xat",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "Eliminar OCR existent",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Elimina el text OCR existent del PDF i torna a executar l'OCR. S'ignora si Força OCR està habilitat. Per defecte és Fals.",
|
||||
"STT Model": "Model SST",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "El mostreig sense cua s'utilitza per reduir l'impacte de tokens menys probables de la sortida. Un valor més alt (p. ex., 2,0) reduirà més l'impacte, mentre que un valor d'1,0 desactiva aquesta configuració.",
|
||||
"Talk to model": "Parlar amb el model",
|
||||
"Tap to interrupt": "Prem per interrompre",
|
||||
"Task List": "",
|
||||
"Task Model": "Model de tasques",
|
||||
"Tasks": "Tasques",
|
||||
"Tavily API Key": "Clau API de Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Desarxivar tot",
|
||||
"Unarchive All Archived Chats": "Desarxivar tots els xats arxivats",
|
||||
"Unarchive Chat": "Desarxivar xat",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "Es descarrega {{FROM_NOW}}",
|
||||
"Unlock mysteries": "Desbloqueja els misteris",
|
||||
"Unpin": "Alliberar",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(pananglitan `sh webui.sh --api`)",
|
||||
"(latest)": "",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "",
|
||||
"{{webUIName}} Backend Required": "Backend {{webUIName}} gikinahanglan",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "advanced settings",
|
||||
"Advanced Params": "",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "",
|
||||
"All models deleted successfully": "",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Kopyaha ang katapusang bloke sa code",
|
||||
"Copy last response": "Kopyaha ang kataposang tubag",
|
||||
"Copy link": "",
|
||||
"Copy Link": "",
|
||||
"Copy to clipboard": "",
|
||||
"Copying to clipboard was successful!": "Ang pagkopya sa clipboard malampuson!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Database",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "",
|
||||
"Default": "Pinaagi sa default",
|
||||
"Default (Open AI)": "",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Napakyas sa pagbasa sa sulod sa clipboard",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "",
|
||||
"Hello, {{name}}": "Maayong buntag, {{name}}",
|
||||
"Help": "",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "Apil sa among Discord alang sa tabang.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "",
|
||||
"Max Upload Size": "",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "",
|
||||
"My Notes": "",
|
||||
"Name": "Ngalan",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "O",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "",
|
||||
"OUTPUT": "",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "",
|
||||
"Search Knowledge": "",
|
||||
"Search Models": "",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "Pangitaa ang mga prompt",
|
||||
"Search Result Count": "",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Pagkasunod-sunod sa pagsira",
|
||||
"Stream Chat Response": "",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(např. `sh webui.sh --api`)",
|
||||
"(latest)": "Nejnovější",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}}'s konverzace",
|
||||
"{{webUIName}} Backend Required": "Požadován {{webUIName}} Backend",
|
||||
"*Prompt node ID(s) are required for image generation": "*Jsou vyžadovány IDs pro prompt node pro generování obrázků",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administrátoři mají přístup ke všem nástrojům kdykoliv; uživatelé potřebují mít nástroje přiřazené podle modelu ve workspace.",
|
||||
"Advanced Parameters": "Pokročilé parametry",
|
||||
"Advanced Params": "Pokročilé parametry",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "Všechny dokumenty",
|
||||
"All models deleted successfully": "Všechny modely úspěšně odstráněny",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Klíč API pro Brave Search",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Provádění kódu",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Zkopírujte poslední blok kódu",
|
||||
"Copy last response": "Zkopírujte poslední odpověď",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Kopírovat odkaz",
|
||||
"Copy to clipboard": "Kopírovat do schránky",
|
||||
"Copying to clipboard was successful!": "Kopírování do schránky bylo úspěšné!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Databáze",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Prosinec",
|
||||
"Default": "Výchozí hodnoty nebo nastavení.",
|
||||
"Default (Open AI)": "Výchozí (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Hodnocení",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Nepodařilo se vytvořit API klíč.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Nepodařilo se přečíst obsah schránky",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Haptická zpětná vazba",
|
||||
"Hello, {{name}}": "Ahoj, {{name}}",
|
||||
"Help": "Pomoc",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Neplatný tag",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "Leden",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "připojte se k našemu Discordu pro pomoc.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "Březen",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "Maximální počet nahrání",
|
||||
"Max Upload Size": "Maximální velikost nahrávání",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "více",
|
||||
"More": "Více",
|
||||
"My Notes": "",
|
||||
"Name": "Jméno",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "nebo",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Jiné",
|
||||
"OUTPUT": "VÝSTUP",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Vyhledávací funkce",
|
||||
"Search Knowledge": "Vyhledávání znalostí",
|
||||
"Search Models": "Vyhledávací modely",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "Vyhledávací dotazy",
|
||||
"Search Result Count": "Počet výsledků hledání",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Sekvence Zastavení",
|
||||
"Stream Chat Response": "Odezva chatu Stream",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "Model rozpoznávání řeči na text (STT)",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "Klepněte pro přerušení",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "Klíč API pro Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Odarchivovat všechny",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "Odepnout",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(f.eks. `sh webui.sh --api`)",
|
||||
"(latest)": "(seneste)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ modeller }}",
|
||||
"{{COUNT}} Available Tools": "{{COUNT}} Tilgængelige værktøjer",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} skjulte linjer",
|
||||
"{{COUNT}} Replies": "{{COUNT}} svar",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}}s chats",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Backend kræves",
|
||||
"*Prompt node ID(s) are required for image generation": "*Prompt node ID(s) er påkrævet for at kunne generere billeder",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorer har adgang til alle værktøjer altid; brugere skal tilføjes værktøjer pr. model i hvert workspace.",
|
||||
"Advanced Parameters": "Advancerede indstillinger",
|
||||
"Advanced Params": "Advancerede indstillinger",
|
||||
"AI": "",
|
||||
"All": "Alle",
|
||||
"All Documents": "Alle dokumenter",
|
||||
"All models deleted successfully": "Alle modeller slettet uden fejl",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Brave Search API nøgle",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Af {{name}}",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "Luk dialogboks med indstillinger",
|
||||
"Code Block": "",
|
||||
"Code execution": "Kode kørsel",
|
||||
"Code Execution": "Kode kørsel",
|
||||
"Code Execution Engine": "Kode kørsel engine",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "Kopier formateret tekst",
|
||||
"Copy last code block": "Kopier seneste kode",
|
||||
"Copy last response": "Kopier senester svar",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Kopier link",
|
||||
"Copy to clipboard": "Kopier til udklipsholder",
|
||||
"Copying to clipboard was successful!": "Kopieret til udklipsholder!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Database",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "december",
|
||||
"Default": "Standard",
|
||||
"Default (Open AI)": "Standard (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "Fejl ved upload af fil: {{error}}",
|
||||
"Evaluations": "Evalueringer",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Exa API-nøgle",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Eksempel: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Eksempel: ALL",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Kunne ikke oprette API-nøgle.",
|
||||
"Failed to delete note": "Kunne ikke slette note",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Kunne ikke hente modeller",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "Kunne ikke indlæse filindhold.",
|
||||
"Failed to read clipboard contents": "Kunne ikke læse indholdet af udklipsholderen",
|
||||
"Failed to save connections": "Kunne ikke gemme forbindelser",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Gruppenavn",
|
||||
"Group updated successfully": "Gruppe opdateret.",
|
||||
"Groups": "Grupper",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Haptisk feedback",
|
||||
"Hello, {{name}}": "Hej {{name}}",
|
||||
"Help": "Hjælp",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Ugyldigt tag",
|
||||
"is typing...": "er i gang med at skrive...",
|
||||
"Italic": "",
|
||||
"January": "Januar",
|
||||
"Jina API Key": "Jina API-nøgle",
|
||||
"join our Discord for help.": "tilslut dig vores Discord for at få hjælp.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "Marts",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "Maks. uploadantal",
|
||||
"Max Upload Size": "Maks. uploadstørrelse",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "mere",
|
||||
"More": "Mere",
|
||||
"My Notes": "Mine noter",
|
||||
"Name": "Navn",
|
||||
"Name your knowledge base": "Nanvgiv din videnbase",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "eller",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Andet",
|
||||
"OUTPUT": "OUTPUT",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Søg i funktioner",
|
||||
"Search Knowledge": "Søg i viden",
|
||||
"Search Models": "Søg i modeller",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "Søg i prompts",
|
||||
"Search Result Count": "Antal søgeresultater",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Stopsekvens",
|
||||
"Stream Chat Response": "Stream chatsvar",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "STT-model",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "Tal til model",
|
||||
"Tap to interrupt": "Tryk for at afbryde",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "Tavily API-nøgle",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Udpak alle arkiver",
|
||||
"Unarchive All Archived Chats": "Udpak alle arkiverede chats",
|
||||
"Unarchive Chat": "Fjern chat fra arkiv",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "Lås op for mysterier",
|
||||
"Unpin": "Frigør",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(z. B. `sh webui.sh --api`)",
|
||||
"(latest)": "(neueste)",
|
||||
"(leave blank for to use commercial endpoint)": "(leer lassen, um kommerziellen Endpunkt zu verwenden)",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ Modelle }}",
|
||||
"{{COUNT}} Available Tools": "{{COUNT}} verfügbare Werkzeuge",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} versteckte Zeilen",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Antworten",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}}s Chats",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}}-Backend erforderlich",
|
||||
"*Prompt node ID(s) are required for image generation": "*Prompt-Node-ID(s) sind für die Bildgenerierung erforderlich",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratoren haben jederzeit Zugriff auf alle Werkzeuge; Benutzern müssen Werkzeuge pro Modell im Arbeitsbereich zugewiesen werden.",
|
||||
"Advanced Parameters": "Erweiterte Parameter",
|
||||
"Advanced Params": "Erweiterte Parameter",
|
||||
"AI": "",
|
||||
"All": "Alle",
|
||||
"All Documents": "Alle Dokumente",
|
||||
"All models deleted successfully": "Alle Modelle erfolgreich gelöscht",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Bing Search V7-Endpunkt",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7-Abonnement-Schlüssel",
|
||||
"Bocha Search API Key": "Bocha Search API-Schlüssel",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Verstärkung oder Bestrafung spezifischer Token für eingeschränkte Antworten. Bias-Werte werden zwischen -100 und 100 (einschließlich) begrenzt. (Standard: keine)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Entweder müssen Docling OCR-Engine und Sprache(n) angegeben oder beide leer gelassen werden.",
|
||||
"Brave Search API Key": "Brave Search API-Schlüssel",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Von {{name}}",
|
||||
"Bypass Embedding and Retrieval": "Embedding und Retrieval umgehen",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Codeausführung",
|
||||
"Code Execution": "Codeausführung",
|
||||
"Code Execution Engine": "Programm zur Codeausführung",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "Formatierten Text kopieren",
|
||||
"Copy last code block": "Letzten Codeblock kopieren",
|
||||
"Copy last response": "Letzte Antwort kopieren",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Link kopieren",
|
||||
"Copy to clipboard": "In die Zwischenablage kopieren",
|
||||
"Copying to clipboard was successful!": "Das Kopieren in die Zwischenablage war erfolgreich!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Datenbank",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Dezember",
|
||||
"Default": "Standard",
|
||||
"Default (Open AI)": "Standard (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "z. B. pdf, docx, txt",
|
||||
"e.g. Tools for performing various operations": "z. B. Werkzeuge für verschiedene Operationen",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "z. B. 3, 4, 5 (leer lassen für Standard)",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "z. B. audio/wav,audio/mpeg (leer lassen für Standard)",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "z. B. en-US,de-DE (freilassen für automatische Erkennung)",
|
||||
"e.g., westus (leave blank for eastus)": "z. B. westus (leer lassen für eastus)",
|
||||
"e.g.) en,fr,de": "z. B. en,fr,de",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "Fehler beim Hochladen der Datei: {{error}}",
|
||||
"Evaluations": "Evaluationen",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Exa-API-Schlüssel",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Beispiel: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Beispiel: ALL",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "Fehler beim kopieren des Links",
|
||||
"Failed to create API Key.": "Fehler beim Erstellen des API-Schlüssels.",
|
||||
"Failed to delete note": "Notiz konnte nicht gelöscht werden",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Fehler beim Abrufen der Modelle",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "Fehler beim Laden des Dateiinhalts.",
|
||||
"Failed to read clipboard contents": "Fehler beim Lesen des Inhalts der Zwischenablage.",
|
||||
"Failed to save connections": "Verbindungen konnten nicht gespeichert werden",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Gruppenname",
|
||||
"Group updated successfully": "Gruppe erfolgreich aktualisiert",
|
||||
"Groups": "Gruppen",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Haptisches Feedback",
|
||||
"Hello, {{name}}": "Hallo, {{name}}",
|
||||
"Help": "Hilfe",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "Ungültige JSON Datei",
|
||||
"Invalid Tag": "Ungültiger Tag",
|
||||
"is typing...": "schreibt ...",
|
||||
"Italic": "",
|
||||
"January": "Januar",
|
||||
"Jina API Key": "Jina-API-Schlüssel",
|
||||
"join our Discord for help.": "Treten Sie unserem Discord bei, um Hilfe zu erhalten.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "Tool Server verwalten",
|
||||
"March": "März",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "Maximale Anzahl der Uploads",
|
||||
"Max Upload Size": "Maximale Uploadgröße",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Mojeek Search API-Schlüssel",
|
||||
"more": "mehr",
|
||||
"More": "Mehr",
|
||||
"My Notes": "Meine Notizen",
|
||||
"Name": "Name",
|
||||
"Name your knowledge base": "Benennen Sie Ihren Wissensspeicher",
|
||||
"Native": "Nativ",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "oder",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Organisieren Sie Ihre Benutzer",
|
||||
"Other": "Andere",
|
||||
"OUTPUT": "AUSGABE",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Funktionen durchsuchen...",
|
||||
"Search Knowledge": "Wissen durchsuchen",
|
||||
"Search Models": "Modelle durchsuchen...",
|
||||
"Search Notes": "",
|
||||
"Search options": "Suchoptionen",
|
||||
"Search Prompts": "Prompts durchsuchen...",
|
||||
"Search Result Count": "Anzahl der Suchergebnisse",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "Generierung stoppen",
|
||||
"Stop Sequence": "Stop-Sequenz",
|
||||
"Stream Chat Response": "Chat-Antwort streamen",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "STT-Modell",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail-Free Sampling wird verwendet, um den Einfluss weniger wahrscheinlicher Token auf die Ausgabe zu reduzieren. Ein höherer Wert (z. B. 2.0) reduziert den Einfluss stärker, während ein Wert von 1.0 diese Einstellung deaktiviert. (Standard: 1)",
|
||||
"Talk to model": "Zu einem Modell sprechen",
|
||||
"Tap to interrupt": "Zum Unterbrechen tippen",
|
||||
"Task List": "",
|
||||
"Task Model": "Aufgabenmodell",
|
||||
"Tasks": "Aufgaben",
|
||||
"Tavily API Key": "Tavily-API-Schlüssel",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Alle wiederherstellen",
|
||||
"Unarchive All Archived Chats": "Alle archivierten Chats wiederherstellen",
|
||||
"Unarchive Chat": "Chat wiederherstellen",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "Geheimnisse entsperren",
|
||||
"Unpin": "Lösen",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(such e.g. `sh webui.sh --api`)",
|
||||
"(latest)": "(much latest)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Backend Much Required",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "Advanced Parameters",
|
||||
"Advanced Params": "",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "",
|
||||
"All models deleted successfully": "",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Copy last code block",
|
||||
"Copy last response": "Copy last response",
|
||||
"Copy link": "",
|
||||
"Copy Link": "",
|
||||
"Copy to clipboard": "",
|
||||
"Copying to clipboard was successful!": "Copying to clipboard was success! Very success!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Database",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "",
|
||||
"Default": "Default",
|
||||
"Default (Open AI)": "",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Failed to read clipboard borks",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "",
|
||||
"Hello, {{name}}": "Much helo, {{name}}",
|
||||
"Help": "",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "join our Discord for help.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "",
|
||||
"Max Upload Size": "",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "",
|
||||
"My Notes": "",
|
||||
"Name": "Name",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "or",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "",
|
||||
"OUTPUT": "",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "",
|
||||
"Search Knowledge": "",
|
||||
"Search Models": "",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "Search Prompts much wow",
|
||||
"Search Result Count": "",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Stop Sequence much stop",
|
||||
"Stream Chat Response": "",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(π.χ. `sh webui.sh --api`)",
|
||||
"(latest)": "(τελευταίο)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "Συνομιλίες του {{user}}",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Απαιτείται Backend",
|
||||
"*Prompt node ID(s) are required for image generation": "*Τα αναγνωριστικά κόμβου Prompt απαιτούνται για τη δημιουργία εικόνων",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Οι διαχειριστές έχουν πρόσβαση σε όλα τα εργαλεία ανά πάσα στιγμή· οι χρήστες χρειάζονται εργαλεία ανά μοντέλο στον χώρο εργασίας.",
|
||||
"Advanced Parameters": "Προηγμένοι Παράμετροι",
|
||||
"Advanced Params": "Προηγμένα Παράμετροι",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "Όλα τα Έγγραφα",
|
||||
"All models deleted successfully": "Όλα τα μοντέλα διαγράφηκαν με επιτυχία",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Τέλος Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Κλειδί Συνδρομής Bing Search V7",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Κλειδί API Brave Search",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Από {{name}}",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Εκτέλεση κώδικα",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Αντιγραφή τελευταίου μπλοκ κώδικα",
|
||||
"Copy last response": "Αντιγραφή τελευταίας απάντησης",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Αντιγραφή Συνδέσμου",
|
||||
"Copy to clipboard": "Αντιγραφή στο πρόχειρο",
|
||||
"Copying to clipboard was successful!": "Η αντιγραφή στο πρόχειρο ήταν επιτυχής!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Βάση Δεδομένων",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Δεκέμβριος",
|
||||
"Default": "Προεπιλογή",
|
||||
"Default (Open AI)": "Προεπιλογή (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "π.χ. Εργαλεία για την εκτέλεση διάφορων λειτουργιών",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Αξιολογήσεις",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Παράδειγμα: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Παράδειγμα: ALL",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Αποτυχία δημιουργίας Κλειδιού API.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Αποτυχία ανάγνωσης περιεχομένων πρόχειρου",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Όνομα Ομάδας",
|
||||
"Group updated successfully": "Η ομάδα ενημερώθηκε με επιτυχία",
|
||||
"Groups": "Ομάδες",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Ανατροφοδότηση Haptic",
|
||||
"Hello, {{name}}": "Γειά σου, {{name}}",
|
||||
"Help": "Βοήθεια",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Μη έγκυρη Ετικέτα",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "Ιανουάριος",
|
||||
"Jina API Key": "Κλειδί API Jina",
|
||||
"join our Discord for help.": "συμμετέχετε στο Discord μας για βοήθεια.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "Μάρτιος",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "Μέγιστος Αριθμός Ανεβάσματος",
|
||||
"Max Upload Size": "Μέγιστο Μέγεθος Αρχείου",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Κλειδί API Mojeek Search",
|
||||
"more": "περισσότερα",
|
||||
"More": "Περισσότερα",
|
||||
"My Notes": "",
|
||||
"Name": "Όνομα",
|
||||
"Name your knowledge base": "Ονομάστε τη βάση γνώσης σας",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "ή",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Οργανώστε τους χρήστες σας",
|
||||
"Other": "Άλλο",
|
||||
"OUTPUT": "ΕΞΟΔΟΣ",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Αναζήτηση Λειτουργιών",
|
||||
"Search Knowledge": "Αναζήτηση Γνώσης",
|
||||
"Search Models": "Αναζήτηση Μοντέλων",
|
||||
"Search Notes": "",
|
||||
"Search options": "Επιλογές Αναζήτησης",
|
||||
"Search Prompts": "Αναζήτηση Προτροπών",
|
||||
"Search Result Count": "Αριθμός Αποτελεσμάτων Αναζήτησης",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Σειρά Παύσης",
|
||||
"Stream Chat Response": "Συνομιλία Ροής Απάντησης",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "Μοντέλο STT",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "Πατήστε για παύση",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "Κλειδί API Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Απο-αρχειοθέτηση Όλων",
|
||||
"Unarchive All Archived Chats": "Απο-αρχειοθέτηση Όλων των Αρχειοθετημένων Συνομιλιών",
|
||||
"Unarchive Chat": "Απο-αρχειοθέτηση Συνομιλίας",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "Ξεκλείδωμα μυστηρίων",
|
||||
"Unpin": "Αφαίρεση καρφίτσματος",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "",
|
||||
"(latest)": "",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "",
|
||||
"{{webUIName}} Backend Required": "",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "",
|
||||
"Advanced Params": "",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "",
|
||||
"All models deleted successfully": "",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Boosting or penalising specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "",
|
||||
"Copy last response": "",
|
||||
"Copy link": "",
|
||||
"Copy Link": "",
|
||||
"Copy to clipboard": "",
|
||||
"Copying to clipboard was successful!": "",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "",
|
||||
"Default": "",
|
||||
"Default (Open AI)": "",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "",
|
||||
"Hello, {{name}}": "",
|
||||
"Help": "",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "",
|
||||
"Max Upload Size": "",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "",
|
||||
"My Notes": "",
|
||||
"Name": "",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Organise your users",
|
||||
"Other": "",
|
||||
"OUTPUT": "",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "",
|
||||
"Search Knowledge": "",
|
||||
"Search Models": "",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "",
|
||||
"Search Result Count": "",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "",
|
||||
"Stream Chat Response": "",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "",
|
||||
"(latest)": "",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "",
|
||||
"{{webUIName}} Backend Required": "",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "",
|
||||
"Advanced Params": "",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "",
|
||||
"All models deleted successfully": "",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "",
|
||||
"Copy last response": "",
|
||||
"Copy link": "",
|
||||
"Copy Link": "",
|
||||
"Copy to clipboard": "",
|
||||
"Copying to clipboard was successful!": "",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "",
|
||||
"Default": "",
|
||||
"Default (Open AI)": "",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "",
|
||||
"Hello, {{name}}": "",
|
||||
"Help": "",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "",
|
||||
"Max Upload Size": "",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "",
|
||||
"My Notes": "",
|
||||
"Name": "",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "",
|
||||
"OUTPUT": "",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "",
|
||||
"Search Knowledge": "",
|
||||
"Search Models": "",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "",
|
||||
"Search Result Count": "",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "",
|
||||
"Stream Chat Response": "",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(p.ej. `sh webui.sh --api`)",
|
||||
"(latest)": "(último)",
|
||||
"(leave blank for to use commercial endpoint)": "(dejar vacío para usar el endpoint comercial)",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "{{COUNT}} herramientas disponibles",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} líneas ocultas",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Respuestas",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "Chats de {{user}}",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Servidor Requerido",
|
||||
"*Prompt node ID(s) are required for image generation": "Los ID de nodo son requeridos para la generación de imágenes",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Los administradores tienen acceso a todas las herramientas en todo momento; los usuarios necesitan que los modelos tengan asignadas las herramientas en el area de trabajo.",
|
||||
"Advanced Parameters": "Parámetros Avanzados",
|
||||
"Advanced Params": "Parámetros Avanzados",
|
||||
"AI": "",
|
||||
"All": "Todos",
|
||||
"All Documents": "Todos los Documentos",
|
||||
"All models deleted successfully": "Todos los modelos borrados correctamente",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Endpoint de Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Clave de Suscripción de Bing Search V7",
|
||||
"Bocha Search API Key": "Clave API de Bocha Search",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Impulsando o penalizando tokens específicos para respuestas restringidas. Los valores de sesgo se limitarán entre -100 y 100 (inclusive). (Por defecto: ninguno)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Ambos, Motor OCR de Docling y Lenguaje(s), deben añadirse o dejar ámbos vacios.",
|
||||
"Brave Search API Key": "Clave API de Brave Search",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Por {{name}}",
|
||||
"Bypass Embedding and Retrieval": "Desactivar Incrustración y Recuperación",
|
||||
"Bypass Web Loader": "Desactivar Cargar de Web",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "Cerrar modal Configurar la Conexión",
|
||||
"Close modal": "Cerrar modal",
|
||||
"Close settings modal": "Cerrar modal configuraciones",
|
||||
"Code Block": "",
|
||||
"Code execution": "Ejecución de Código",
|
||||
"Code Execution": "Ejecución de Código",
|
||||
"Code Execution Engine": "Motor de Ejecución de Código",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "Copiar Texto Formateado",
|
||||
"Copy last code block": "Copia el último bloque de código",
|
||||
"Copy last response": "Copia la última respuesta",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Copiar enlace",
|
||||
"Copy to clipboard": "Copia a portapapeles",
|
||||
"Copying to clipboard was successful!": "¡La copia al portapapeles se ha realizado correctamente!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Base de datos",
|
||||
"Datalab Marker API": "API de Datalab Marker",
|
||||
"Datalab Marker API Key required.": "Clave API de Datalab Marker Requerida",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Diciembre",
|
||||
"Default": "Predeterminado",
|
||||
"Default (Open AI)": "Predeterminado (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "p.ej. pdf, docx, txt ...",
|
||||
"e.g. Tools for performing various operations": "p.ej. Herramientas para realizar diversas operaciones",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "p.ej. , 3, 4, 5 ...",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "e.g., audio/wav,audio/mpeg,video/* (dejar en blanco para predeterminados, * para todos)",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "p.ej., en-US,ja-JP (dejar en blanco para detectar automáticamente)",
|
||||
"e.g., westus (leave blank for eastus)": "p.ej. ,oeste (dejar vacío para este)",
|
||||
"e.g.) en,fr,de": "p.ej. ) en,es,fr,de",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "Error subiendo el modelo: {{error}}",
|
||||
"Error uploading file: {{error}}": "Error subiendo el archivo: {{error}}",
|
||||
"Evaluations": "Evaluaciones",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Clave API de Exa",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Ejemplo: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Ejemplo: TODOS",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "Fallo al copiar enlace",
|
||||
"Failed to create API Key.": "Fallo al crear la Clave API.",
|
||||
"Failed to delete note": "Fallo al eliminar nota",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Fallo al obtener los modelos",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "Fallo al cargar el contenido del archivo",
|
||||
"Failed to read clipboard contents": "Fallo al leer el contenido del portapapeles",
|
||||
"Failed to save connections": "Fallo al grabar las conexiones",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Nombre del Grupo",
|
||||
"Group updated successfully": "Grupo actualizado correctamente",
|
||||
"Groups": "Grupos",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Realimentación Háptica",
|
||||
"Hello, {{name}}": "Hola, {{name}}",
|
||||
"Help": "Ayuda",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "Archivo JSON inválido",
|
||||
"Invalid Tag": "Etiqueta Inválida",
|
||||
"is typing...": "está escribiendo...",
|
||||
"Italic": "",
|
||||
"January": "Enero",
|
||||
"Jina API Key": "Clave API de Jina",
|
||||
"join our Discord for help.": "unete a nuestro Discord para ayuda.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "Gestionar Servidores de Herramientas",
|
||||
"March": "Marzo",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "Max Interlocutores",
|
||||
"Max Upload Count": "Número Max de Subidas",
|
||||
"Max Upload Size": "Tamaño Max de Subidas",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Clave API de Mojeek Search",
|
||||
"more": "más",
|
||||
"More": "Más",
|
||||
"My Notes": "Mis Notas",
|
||||
"Name": "Nombre",
|
||||
"Name your knowledge base": "Nombra tu base de conocimientos",
|
||||
"Native": "Nativo",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "URL o Ruta a openapi.json",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Opciones para usar modelos locales en la descripción de imágenes. Los parámetros se refieren a modelos alojados en HugginFace. Esta opción es mutuamente excluyente con \"picture_description_api\".",
|
||||
"or": "o",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Organiza tus usuarios",
|
||||
"Other": "Otro",
|
||||
"OUTPUT": "SALIDA",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Buscar Funciones",
|
||||
"Search Knowledge": "Buscar Conocimiento",
|
||||
"Search Models": "Buscar Modelos",
|
||||
"Search Notes": "",
|
||||
"Search options": "Opciones de Búsqueda",
|
||||
"Search Prompts": "Buscar Indicadores",
|
||||
"Search Result Count": "Número de resultados de la búsqueda",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "Detener la Generación",
|
||||
"Stop Sequence": "Secuencia de Parada",
|
||||
"Stream Chat Response": "Transmisión Directa de la Respuesta del Chat",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "Descartar OCR Existente",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Descartar OCR existente del PDF y repetirlo. Se ignora si está habilitado Forzar OCR. Valor Predeterminado: Falso",
|
||||
"STT Model": "Modelo STT",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "El Muestreo de cola libre(TFS_Z) es usado para reducir el impacto de los tokens menos probables en la salida. Un valor más alto (p.ej. 2.0) reduce más fuertemente el impacto, mientras que un valor de 1.0 deshabilita este ajuste.",
|
||||
"Talk to model": "Hablar con el modelo",
|
||||
"Tap to interrupt": "Toca para interrumpir",
|
||||
"Task List": "",
|
||||
"Task Model": "Modelo de Tarea",
|
||||
"Tasks": "Tareas",
|
||||
"Tavily API Key": "Clave API de Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Desarchivar Todo",
|
||||
"Unarchive All Archived Chats": "Desarchivar Todos los Chats Archivados",
|
||||
"Unarchive Chat": "Desarchivar Chat",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "Descargas {{FROM_NOW}}",
|
||||
"Unlock mysteries": "Desbloquear misterios",
|
||||
"Unpin": "Desfijar",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(nt `sh webui.sh --api`)",
|
||||
"(latest)": "(uusim)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ mudelid }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} peidetud rida",
|
||||
"{{COUNT}} Replies": "{{COUNT}} vastust",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}} vestlused",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} taustaserver on vajalik",
|
||||
"*Prompt node ID(s) are required for image generation": "*Vihje sõlme ID(d) on piltide genereerimiseks vajalikud",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administraatoritel on alati juurdepääs kõigile tööriistadele; kasutajatele tuleb tööriistad määrata mudeli põhiselt tööruumis.",
|
||||
"Advanced Parameters": "Täpsemad parameetrid",
|
||||
"Advanced Params": "Täpsemad parameetrid",
|
||||
"AI": "",
|
||||
"All": "Kõik",
|
||||
"All Documents": "Kõik dokumendid",
|
||||
"All models deleted successfully": "Kõik mudelid edukalt kustutatud",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Bing Search V7 lõpp-punkt",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 tellimuse võti",
|
||||
"Bocha Search API Key": "Bocha otsingu API võti",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Konkreetsete tokenite võimendamine või karistamine piiratud vastuste jaoks. Kallutatuse väärtused piiratakse vahemikku -100 kuni 100 (kaasa arvatud). (Vaikimisi: puudub)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Brave Search API võti",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Autor: {{name}}",
|
||||
"Bypass Embedding and Retrieval": "Möödaminek sisestamisest ja taastamisest",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Koodi täitmine",
|
||||
"Code Execution": "Koodi täitmine",
|
||||
"Code Execution Engine": "Koodi täitmise mootor",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Kopeeri viimane koodiplokk",
|
||||
"Copy last response": "Kopeeri viimane vastus",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Kopeeri link",
|
||||
"Copy to clipboard": "Kopeeri lõikelauale",
|
||||
"Copying to clipboard was successful!": "Lõikelauale kopeerimine õnnestus!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Andmebaas",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Detsember",
|
||||
"Default": "Vaikimisi",
|
||||
"Default (Open AI)": "Vaikimisi (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "nt tööriistad mitmesuguste operatsioonide teostamiseks",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "Viga faili üleslaadimisel: {{error}}",
|
||||
"Evaluations": "Hindamised",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Exa API võti",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Näide: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Näide: ALL",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "API võtme loomine ebaõnnestus.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Mudelite toomine ebaõnnestus",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Lõikelaua sisu lugemine ebaõnnestus",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Grupi nimi",
|
||||
"Group updated successfully": "Grupp edukalt uuendatud",
|
||||
"Groups": "Grupid",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Haptiline tagasiside",
|
||||
"Hello, {{name}}": "Tere, {{name}}",
|
||||
"Help": "Abi",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Vigane silt",
|
||||
"is typing...": "kirjutab...",
|
||||
"Italic": "",
|
||||
"January": "Jaanuar",
|
||||
"Jina API Key": "Jina API võti",
|
||||
"join our Discord for help.": "liituge abi saamiseks meie Discordiga.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "Märts",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "Maksimaalne üleslaadimiste arv",
|
||||
"Max Upload Size": "Maksimaalne üleslaadimise suurus",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Mojeek Search API võti",
|
||||
"more": "rohkem",
|
||||
"More": "Rohkem",
|
||||
"My Notes": "",
|
||||
"Name": "Nimi",
|
||||
"Name your knowledge base": "Nimetage oma teadmiste baas",
|
||||
"Native": "Omane",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "või",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Korraldage oma kasutajad",
|
||||
"Other": "Muu",
|
||||
"OUTPUT": "VÄLJUND",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Otsi funktsioone",
|
||||
"Search Knowledge": "Otsi teadmisi",
|
||||
"Search Models": "Otsi mudeleid",
|
||||
"Search Notes": "",
|
||||
"Search options": "Otsingu valikud",
|
||||
"Search Prompts": "Otsi vihjeid",
|
||||
"Search Result Count": "Otsingutulemuste arv",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Lõpetamise järjestus",
|
||||
"Stream Chat Response": "Voogedasta vestluse vastust",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "STT mudel",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Saba vaba valimit kasutatakse väljundis vähem tõenäoliste tokenite mõju vähendamiseks. Kõrgem väärtus (nt 2,0) vähendab mõju rohkem, samas kui väärtus 1,0 keelab selle seade.",
|
||||
"Talk to model": "Räägi mudeliga",
|
||||
"Tap to interrupt": "Puuduta katkestamiseks",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "Ülesanded",
|
||||
"Tavily API Key": "Tavily API võti",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Eemalda kõik arhiivist",
|
||||
"Unarchive All Archived Chats": "Eemalda kõik arhiveeritud vestlused arhiivist",
|
||||
"Unarchive Chat": "Eemalda vestlus arhiivist",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "Ava mõistatused",
|
||||
"Unpin": "Võta lahti",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(adib. `sh webui.sh --api`)",
|
||||
"(latest)": "(azkena)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}}-ren Txatak",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Backend-a Beharrezkoa",
|
||||
"*Prompt node ID(s) are required for image generation": "Prompt nodoaren IDa(k) beharrezkoak dira irudiak sortzeko",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratzaileek tresna guztietarako sarbidea dute beti; erabiltzaileek lan-eremuan eredu bakoitzeko esleituak behar dituzte tresnak.",
|
||||
"Advanced Parameters": "Parametro Aurreratuak",
|
||||
"Advanced Params": "Parametro Aurreratuak",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "Dokumentu Guztiak",
|
||||
"All models deleted successfully": "Eredu guztiak ongi ezabatu dira",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Bing Bilaketa V7 Endpointua",
|
||||
"Bing Search V7 Subscription Key": "Bing Bilaketa V7 Harpidetza Gakoa",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Brave Bilaketa API Gakoa",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "{{name}}-k",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Kodearen exekuzioa",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Kopiatu azken kode blokea",
|
||||
"Copy last response": "Kopiatu azken erantzuna",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Kopiatu Esteka",
|
||||
"Copy to clipboard": "Kopiatu arbelera",
|
||||
"Copying to clipboard was successful!": "Arbelera kopiatzea arrakastatsua izan da!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Datu-basea",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Abendua",
|
||||
"Default": "Lehenetsia",
|
||||
"Default (Open AI)": "Lehenetsia (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "adib. Hainbat eragiketa egiteko tresnak",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Ebaluazioak",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Adibidea: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Adibidea: GUZTIAK",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Huts egin du API Gakoa sortzean.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Huts egin du arbelaren edukia irakurtzean",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Taldearen Izena",
|
||||
"Group updated successfully": "Taldea ongi eguneratu da",
|
||||
"Groups": "Taldeak",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Feedback Haptikoa",
|
||||
"Hello, {{name}}": "Kaixo, {{name}}",
|
||||
"Help": "Laguntza",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Etiketa Baliogabea",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "Urtarrila",
|
||||
"Jina API Key": "Jina API Gakoa",
|
||||
"join our Discord for help.": "batu gure Discord-era laguntzarako.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "Martxoa",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "Karga kopuru maximoa",
|
||||
"Max Upload Size": "Karga tamaina maximoa",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Mojeek bilaketa API gakoa",
|
||||
"more": "gehiago",
|
||||
"More": "Gehiago",
|
||||
"My Notes": "",
|
||||
"Name": "Izena",
|
||||
"Name your knowledge base": "Izendatu zure ezagutza-basea",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "edo",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Antolatu zure erabiltzaileak",
|
||||
"Other": "Bestelakoa",
|
||||
"OUTPUT": "IRTEERA",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Bilatu funtzioak",
|
||||
"Search Knowledge": "Bilatu ezagutza",
|
||||
"Search Models": "Bilatu modeloak",
|
||||
"Search Notes": "",
|
||||
"Search options": "Bilaketa aukerak",
|
||||
"Search Prompts": "Bilatu prompt-ak",
|
||||
"Search Result Count": "Bilaketa emaitzen kopurua",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Gelditzeko sekuentzia",
|
||||
"Stream Chat Response": "Transmititu txat erantzuna",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "STT modeloa",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "Ukitu eteteko",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "Tavily API gakoa",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Desartxibatu guztiak",
|
||||
"Unarchive All Archived Chats": "Desartxibatu artxibatutako txat guztiak",
|
||||
"Unarchive Chat": "Desartxibatu txata",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "Askatu misterioak",
|
||||
"Unpin": "Kendu aingura",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(e.g. `sh webui.sh --api`)",
|
||||
"(latest)": "(آخرین)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "{{COUNT}} ابزار موجود",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} خط پنهان",
|
||||
"{{COUNT}} Replies": "{{COUNT}} پاسخ",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}} گفتگوهای",
|
||||
"{{webUIName}} Backend Required": "بکند {{webUIName}} نیاز است.",
|
||||
"*Prompt node ID(s) are required for image generation": "*شناسه(های) گره پرامپت برای تولید تصویر مورد نیاز است",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "مدیران همیشه به تمام ابزارها دسترسی دارند؛ کاربران نیاز به ابزارهای اختصاص داده شده برای هر مدل در فضای کاری دارند.",
|
||||
"Advanced Parameters": "پارامترهای پیشرفته",
|
||||
"Advanced Params": "پارام\u200cهای پیشرفته",
|
||||
"AI": "",
|
||||
"All": "همه",
|
||||
"All Documents": "همهٔ سند\u200cها",
|
||||
"All models deleted successfully": "همه مدل\u200cها با موفقیت حذف شدند",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "نقطه پایانی جستجوی Bing V7",
|
||||
"Bing Search V7 Subscription Key": "کلید اشتراک جستجوی Bing V7",
|
||||
"Bocha Search API Key": "کلید API جستجوی Bocha",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "تقویت یا جریمه توکن\u200cهای خاص برای پاسخ\u200cهای محدود. مقادیر بایاس بین -100 و 100 (شامل) محدود خواهند شد. (پیش\u200cفرض: هیچ)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "کلید API جستجوی شجاع",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "توسط {{name}}",
|
||||
"Bypass Embedding and Retrieval": "دور زدن جاسازی و بازیابی",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "اجرای کد",
|
||||
"Code Execution": "اجرای کد",
|
||||
"Code Execution Engine": "موتور اجرای کد",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "کپی آخرین بلوک کد",
|
||||
"Copy last response": "کپی آخرین پاسخ",
|
||||
"Copy link": "",
|
||||
"Copy Link": "کپی لینک",
|
||||
"Copy to clipboard": "کپی به کلیپ\u200cبورد",
|
||||
"Copying to clipboard was successful!": "کپی کردن در کلیپ بورد با موفقیت انجام شد!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "پایگاه داده",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "دسامبر",
|
||||
"Default": "پیشفرض",
|
||||
"Default (Open AI)": "پیشفرض (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "مثلا ابزارهایی برای انجام عملیات مختلف",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "مثلا en-US,ja-JP (برای تشخیص خودکار خالی بگذارید)",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "خطا در بارگذاری فایل: {{error}}",
|
||||
"Evaluations": "ارزیابی\u200cها",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "کلید API اکسا",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "مثال: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "مثال: ALL",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "ایجاد کلید API با خطا مواجه شد.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "خطا در دریافت مدل\u200cها",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "خواندن محتوای کلیپ بورد ناموفق بود",
|
||||
"Failed to save connections": "خطا در ذخیره\u200cسازی اتصالات",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "نام گروه",
|
||||
"Group updated successfully": "گروه با موفقیت به\u200cروز شد",
|
||||
"Groups": "گروه\u200cها",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "بازخورد لمسی",
|
||||
"Hello, {{name}}": "سلام، {{name}}",
|
||||
"Help": "کمک",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "تگ نامعتبر",
|
||||
"is typing...": "در حال تایپ...",
|
||||
"Italic": "",
|
||||
"January": "ژانویه",
|
||||
"Jina API Key": "کلید API جینا",
|
||||
"join our Discord for help.": "برای کمک به دیسکورد ما بپیوندید.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "مدیریت سرورهای ابزار",
|
||||
"March": "مارچ",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "حداکثر تعداد آپلود",
|
||||
"Max Upload Size": "حداکثر اندازه آپلود",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "کلید API جستجوی موجیک",
|
||||
"more": "بیشتر",
|
||||
"More": "بیشتر",
|
||||
"My Notes": "",
|
||||
"Name": "نام",
|
||||
"Name your knowledge base": "پایگاه دانش خود را نام\u200cگذاری کنید",
|
||||
"Native": "بومی",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "یا",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "کاربران خود را سازماندهی کنید",
|
||||
"Other": "دیگر",
|
||||
"OUTPUT": "خروجی",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "جستجوی توابع",
|
||||
"Search Knowledge": "جستجوی دانش",
|
||||
"Search Models": "جستجوی مدل\u200cها",
|
||||
"Search Notes": "",
|
||||
"Search options": "گزینه\u200cهای جستجو",
|
||||
"Search Prompts": "جستجوی پرامپت\u200cها",
|
||||
"Search Result Count": "تعداد نتایج جستجو",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "توقف توالی",
|
||||
"Stream Chat Response": "پاسخ چت جریانی",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "مدل تبدیل صدا به متن",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "نمونه\u200cبرداری دنباله آزاد برای کاهش تأثیر توکن\u200cهای کم احتمال\u200cتر از خروجی استفاده می\u200cشود. مقدار بالاتر (مثلاً 2.0) تأثیر را بیشتر کاهش می\u200cدهد، در حالی که مقدار 1.0 این تنظیم را غیرفعال می\u200cکند.",
|
||||
"Talk to model": "گفتگو با مدل",
|
||||
"Tap to interrupt": "برای وقفه ضربه بزنید",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "وظایف",
|
||||
"Tavily API Key": "کلید API تاویلی",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "خارج کردن همه از آرشیو",
|
||||
"Unarchive All Archived Chats": "خارج کردن همه چت\u200cهای آرشیو شده از آرشیو",
|
||||
"Unarchive Chat": "خارج کردن چت از آرشیو",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "رمزگشایی از اسرار",
|
||||
"Unpin": "برداشتن پین",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(esim. `sh webui.sh --api`)",
|
||||
"(latest)": "(uusin)",
|
||||
"(leave blank for to use commercial endpoint)": "(Jätä tyhjäksi, jos haluat käyttää kaupallista päätepistettä)",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ mallit }}",
|
||||
"{{COUNT}} Available Tools": "{{COUNT}} työkalua saatavilla",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} piilotettua riviä",
|
||||
"{{COUNT}} Replies": "{{COUNT}} vastausta",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}}:n keskustelut",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}}-backend vaaditaan",
|
||||
"*Prompt node ID(s) are required for image generation": "Kuvan luomiseen vaaditaan kehote-solmun ID(t)",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Ylläpitäjillä on pääsy kaikkiin työkaluihin koko ajan; käyttäjät tarvitsevat työkaluja mallille määritettynä työtilassa.",
|
||||
"Advanced Parameters": "Edistyneet parametrit",
|
||||
"Advanced Params": "Edistyneet parametrit",
|
||||
"AI": "",
|
||||
"All": "Kaikki",
|
||||
"All Documents": "Kaikki asiakirjat",
|
||||
"All models deleted successfully": "Kaikki mallit poistettu onnistuneesti",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Bing Search V7 -päätepisteen osoite",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 -tilauskäyttäjäavain",
|
||||
"Bocha Search API Key": "Bocha Search API -avain",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Docling OCR moottori ja kiele(t) tulee täyttää, tai jättää molemmat tyhjäksi.",
|
||||
"Brave Search API Key": "Brave Search API -avain",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Tekijä {{name}}",
|
||||
"Bypass Embedding and Retrieval": "Ohita upotus ja haku",
|
||||
"Bypass Web Loader": "Ohita verkkolataaja",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "Sulje asetus modaali",
|
||||
"Code Block": "",
|
||||
"Code execution": "Koodin suoritus",
|
||||
"Code Execution": "Koodin Suoritus",
|
||||
"Code Execution Engine": "Koodin suoritusmoottori",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "Kopioi muotoiltu teksti",
|
||||
"Copy last code block": "Kopioi viimeisin koodilohko",
|
||||
"Copy last response": "Kopioi viimeisin vastaus",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Kopioi linkki",
|
||||
"Copy to clipboard": "Kopioi leikepöydälle",
|
||||
"Copying to clipboard was successful!": "Kopioiminen leikepöydälle onnistui!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Tietokanta",
|
||||
"Datalab Marker API": "Datalab Marker API",
|
||||
"Datalab Marker API Key required.": "Datalab Marker API-avain vaaditaan.",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "joulukuu",
|
||||
"Default": "Oletus",
|
||||
"Default (Open AI)": "Oletus (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "esim. pdf, docx, txt",
|
||||
"e.g. Tools for performing various operations": "esim. työkaluja erilaisten toimenpiteiden suorittamiseen",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "esim. 3, 4, 5 (jätä tyhjäksi, jos haluat oletusarvon)",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "esim. en-US,ja-JP (Tyhjäksi jättämällä, automaattinen tunnistus)",
|
||||
"e.g., westus (leave blank for eastus)": "esim. westus (jätä tyhjäksi eastusta varten)",
|
||||
"e.g.) en,fr,de": "esim.) en,fr,de",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "Virhe mallia ladattaessa: {{error}}",
|
||||
"Error uploading file: {{error}}": "Virhe ladattaessa tiedostoa: {{error}}",
|
||||
"Evaluations": "Arvioinnit",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Exa API -avain",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Esimerkki: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Esimerkki: KAIKKI",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "Linkin kopioinmti epäonnistui",
|
||||
"Failed to create API Key.": "API-avaimen luonti epäonnistui.",
|
||||
"Failed to delete note": "Muistiinpanon poistaminen epäonnistui",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Mallien hakeminen epäonnistui",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "Tiedoston sisällön lataaminen epäonnistui.",
|
||||
"Failed to read clipboard contents": "Leikepöydän sisällön lukeminen epäonnistui",
|
||||
"Failed to save connections": "Yhteyksien tallentaminen epäonnistui",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Ryhmän nimi",
|
||||
"Group updated successfully": "Ryhmä päivitetty onnistuneesti",
|
||||
"Groups": "Ryhmät",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Haptinen palaute",
|
||||
"Hello, {{name}}": "Hei, {{name}}",
|
||||
"Help": "Ohje",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "Virheellinen JSON tiedosto",
|
||||
"Invalid Tag": "Virheellinen tagi",
|
||||
"is typing...": "Kirjoittaa...",
|
||||
"Italic": "",
|
||||
"January": "tammikuu",
|
||||
"Jina API Key": "Jina API -avain",
|
||||
"join our Discord for help.": "liity Discordiimme saadaksesi apua.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "Hallitse työkalu palvelimia",
|
||||
"March": "maaliskuu",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "Puhujien enimmäismäärä",
|
||||
"Max Upload Count": "Latausten enimmäismäärä",
|
||||
"Max Upload Size": "Latausten enimmäiskoko",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Mojeek Search API -avain",
|
||||
"more": "lisää",
|
||||
"More": "Lisää",
|
||||
"My Notes": "Minun muistiinpanot",
|
||||
"Name": "Nimi",
|
||||
"Name your knowledge base": "Anna tietokannalle nimi",
|
||||
"Native": "Natiivi",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "openapi.json verkko-osoite tai polku",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "tai",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Järjestä käyttäjäsi",
|
||||
"Other": "Muu",
|
||||
"OUTPUT": "TULOSTE",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Hae toimintoja",
|
||||
"Search Knowledge": "Hae tietämystä",
|
||||
"Search Models": "Hae malleja",
|
||||
"Search Notes": "",
|
||||
"Search options": "Hakuvaihtoehdot",
|
||||
"Search Prompts": "Hae kehotteita",
|
||||
"Search Result Count": "Hakutulosten määrä",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Lopetussekvenssi",
|
||||
"Stream Chat Response": "Streamaa keskusteluvastaus",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "Poista olemassa oleva OCR",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Poista olemassa oleva OCR-teksti PDF-tiedostosta ja suorita OCR uudelleen. Ohitetaan, jos pakota OCR -asetus on käytössä. Oletusarvo ei käytössä.",
|
||||
"STT Model": "Puheentunnistusmalli",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "Puhu mallille",
|
||||
"Tap to interrupt": "Napauta keskeyttääksesi",
|
||||
"Task List": "",
|
||||
"Task Model": "Työmalli",
|
||||
"Tasks": "Tehtävät",
|
||||
"Tavily API Key": "Tavily API -avain",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Pura kaikkien arkistointi",
|
||||
"Unarchive All Archived Chats": "Pura kaikkien arkistoitujen keskustelujen arkistointi",
|
||||
"Unarchive Chat": "Pura keskustelun arkistointi",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "Purkuja {{FROM_NOW}}",
|
||||
"Unlock mysteries": "Selvitä arvoituksia",
|
||||
"Unpin": "Irrota kiinnitys",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(par exemple `sh webui.sh --api`)",
|
||||
"(latest)": "(dernière version)",
|
||||
"(leave blank for to use commercial endpoint)": "laisser vide pour l'utilisation d'un point d'extension commercial",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "Nombre d'outils disponibles {{COUNT}}",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "Nombres de lignes cachées {{COUNT}}",
|
||||
"{{COUNT}} Replies": "{{COUNT}} réponses",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "Conversations de {{user}}",
|
||||
"{{webUIName}} Backend Required": "Backend {{webUIName}} requis",
|
||||
"*Prompt node ID(s) are required for image generation": "*Les ID de noeud du prompt sont nécessaires pour la génération d'images",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Les administrateurs ont accès à tous les outils en permanence ; les utilisateurs doivent se voir attribuer des outils pour chaque modèle dans l'espace de travail.",
|
||||
"Advanced Parameters": "Réglages avancés",
|
||||
"Advanced Params": "Réglages avancés",
|
||||
"AI": "",
|
||||
"All": "Tout",
|
||||
"All Documents": "Tous les documents",
|
||||
"All models deleted successfully": "Tous les modèles ont été supprimés avec succès",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Point de terminaison Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Clé d'abonnement Bing Search V7",
|
||||
"Bocha Search API Key": "Clé API Bocha Search",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Renforcer ou pénaliser des éléments spécifiques pour les réponses contraintes. Les valeurs du biais seront comprises entre -100 et 100 (inclus). (Par défaut : aucun)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Le moteur d'OCR de Docling et la (les) langue(s) doivent être fournis ou laissés vides.",
|
||||
"Brave Search API Key": "Clé API Brave Search",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Par {{name}}",
|
||||
"Bypass Embedding and Retrieval": "Ignorer l'Embedding et le Retrieval",
|
||||
"Bypass Web Loader": "Ignorer le chargeur Web",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "Fermer la fenêtre de configuration de la connexion",
|
||||
"Close modal": "Fermer la fenêtre",
|
||||
"Close settings modal": "Fermer la fenêtre des réglages",
|
||||
"Code Block": "",
|
||||
"Code execution": "Exécution de code",
|
||||
"Code Execution": "Exécution de code",
|
||||
"Code Execution Engine": "Moteur d'execution de code",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "Copier le texte en gardant le format",
|
||||
"Copy last code block": "Copier le dernier bloc de code",
|
||||
"Copy last response": "Copier la dernière réponse",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Copier le lien",
|
||||
"Copy to clipboard": "Copier dans le presse-papiers",
|
||||
"Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Base de données",
|
||||
"Datalab Marker API": "API Datalab Marker",
|
||||
"Datalab Marker API Key required.": "Clé API Datalab Marker requise.",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Décembre",
|
||||
"Default": "Par défaut",
|
||||
"Default (Open AI)": "Par défaut (OpenAI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "par ex. pdf, docx, txt",
|
||||
"e.g. Tools for performing various operations": "par ex. Outils pour effectuer diverses opérations",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "par ex., 3, 4, 5 (laisser vide pour par défaut)",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "par ex., audio/wav, audio/mpeg (laisser vide pour les valeurs par défaut)",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "par ex., en-US, ja-JP (laisser vide pour détection automatique)",
|
||||
"e.g., westus (leave blank for eastus)": "par ex., westus (laisser vide pour eastus)",
|
||||
"e.g.) en,fr,de": "par ex., fr, en, de",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "Erreur lors du déchargement du modèle : {{error}}",
|
||||
"Error uploading file: {{error}}": "Erreur de téléversement du fichier : {{error}}",
|
||||
"Evaluations": "Évaluations",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Clé d'Exa API",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Exemple: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Exemple: TOUS",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "Échec de la copie du lien",
|
||||
"Failed to create API Key.": "Échec de la création de la clé API.",
|
||||
"Failed to delete note": "Échec de la délétion de la note",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Échec de la récupération des modèles",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "Échec du chargement du contenu du fichier",
|
||||
"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
|
||||
"Failed to save connections": "Échec de la sauvegarde des connexions",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Nom du groupe",
|
||||
"Group updated successfully": "Groupe mis à jour avec succès",
|
||||
"Groups": "Groupes",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Retour haptique",
|
||||
"Hello, {{name}}": "Bonjour, {{name}}.",
|
||||
"Help": "Aide",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "Fichier JSON non valide",
|
||||
"Invalid Tag": "Tag non valide",
|
||||
"is typing...": "est en train d'écrire...",
|
||||
"Italic": "",
|
||||
"January": "Janvier",
|
||||
"Jina API Key": "Clé API Jina",
|
||||
"join our Discord for help.": "Rejoignez notre Discord pour obtenir de l'aide.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "Gérer les serveurs d'outils",
|
||||
"March": "Mars",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "Nombre maximal d'intervenants",
|
||||
"Max Upload Count": "Nombre maximal de téléversements",
|
||||
"Max Upload Size": "Limite de taille de téléversement",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Clé API Mojeek",
|
||||
"more": "plus",
|
||||
"More": "Plus",
|
||||
"My Notes": "Mes notes",
|
||||
"Name": "Nom d'utilisateur",
|
||||
"Name your knowledge base": "Nommez votre base de connaissances",
|
||||
"Native": "Natif",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "URL ou chemin openapi.json",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Options pour exécuter un modèle de vision local dans la description d'image. Les réglages font référence à un modèle hébergé sur Hugging Face. Ce réglage est mutuellement exclusif avec picture_description_api.",
|
||||
"or": "ou",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Organisez vos utilisateurs",
|
||||
"Other": "Autre",
|
||||
"OUTPUT": "SORTIE",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Rechercher des fonctions",
|
||||
"Search Knowledge": "Rechercher des connaissances",
|
||||
"Search Models": "Rechercher des modèles",
|
||||
"Search Notes": "",
|
||||
"Search options": "Options de recherche",
|
||||
"Search Prompts": "Rechercher des prompts",
|
||||
"Search Result Count": "Nombre de résultats de recherche",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "Arrêter la génération",
|
||||
"Stop Sequence": "Séquence d'arrêt",
|
||||
"Stream Chat Response": "Streamer la réponse de la conversation",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "Supprimer l'OCR existant",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Supprimer le texte OCR existant du PDF et réexécuter l'OCR. Ignoré si la fonction Force OCR est activée. Par défaut à False.",
|
||||
"STT Model": "Modèle de Speech-to-Text",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Le sampling sans queue est utilisé pour réduire l'impact des tokens moins probables dans la sortie. Une valeur plus élevée (par exemple, 2.0) réduira davantage l'impact, tandis qu'une valeur de 1.0 désactive ce réglage.",
|
||||
"Talk to model": "Parler au modèle",
|
||||
"Tap to interrupt": "Appuyez pour interrompre",
|
||||
"Task List": "",
|
||||
"Task Model": "Modèle pour les tâches",
|
||||
"Tasks": "Tâches",
|
||||
"Tavily API Key": "Clé API Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Désarchiver tout",
|
||||
"Unarchive All Archived Chats": "Désarchiver toutes les conversations archivées",
|
||||
"Unarchive Chat": "Désarchiver la conversation",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "Décharge {{FROM_NOW}}",
|
||||
"Unlock mysteries": "Déverrouiller les mystères",
|
||||
"Unpin": "Désépingler",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(par exemple `sh webui.sh --api`)",
|
||||
"(latest)": "(dernière version)",
|
||||
"(leave blank for to use commercial endpoint)": "laisser vide pour l'utilisation d'un point d'extension commercial",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "Nombre d'outils disponibles {{COUNT}}",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "Nombres de lignes cachées {{COUNT}}",
|
||||
"{{COUNT}} Replies": "{{COUNT}} réponses",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "Conversations de {{user}}",
|
||||
"{{webUIName}} Backend Required": "Backend {{webUIName}} requis",
|
||||
"*Prompt node ID(s) are required for image generation": "*Les ID de noeud du prompt sont nécessaires pour la génération d'images",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Les administrateurs ont accès à tous les outils en permanence ; les utilisateurs doivent se voir attribuer des outils pour chaque modèle dans l'espace de travail.",
|
||||
"Advanced Parameters": "Réglages avancés",
|
||||
"Advanced Params": "Réglages avancés",
|
||||
"AI": "",
|
||||
"All": "Tout",
|
||||
"All Documents": "Tous les documents",
|
||||
"All models deleted successfully": "Tous les modèles ont été supprimés avec succès",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Point de terminaison Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Clé d'abonnement Bing Search V7",
|
||||
"Bocha Search API Key": "Clé API Bocha Search",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Renforcer ou pénaliser des éléments spécifiques pour les réponses contraintes. Les valeurs du biais seront comprises entre -100 et 100 (inclus). (Par défaut : aucun)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Le moteur d'OCR de Docling et la (les) langue(s) doivent être fournis ou laissés vides.",
|
||||
"Brave Search API Key": "Clé API Brave Search",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Par {{name}}",
|
||||
"Bypass Embedding and Retrieval": "Ignorer l'Embedding et le Retrieval",
|
||||
"Bypass Web Loader": "Ignorer le chargeur Web",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "Fermer la fenêtre de configuration de la connexion",
|
||||
"Close modal": "Fermer la fenêtre",
|
||||
"Close settings modal": "Fermer la fenêtre des réglages",
|
||||
"Code Block": "",
|
||||
"Code execution": "Exécution de code",
|
||||
"Code Execution": "Exécution de code",
|
||||
"Code Execution Engine": "Moteur d'execution de code",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "Copier le texte en gardant le format",
|
||||
"Copy last code block": "Copier le dernier bloc de code",
|
||||
"Copy last response": "Copier la dernière réponse",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Copier le lien",
|
||||
"Copy to clipboard": "Copier dans le presse-papiers",
|
||||
"Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Base de données",
|
||||
"Datalab Marker API": "API Datalab Marker",
|
||||
"Datalab Marker API Key required.": "Clé API Datalab Marker requise.",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Décembre",
|
||||
"Default": "Par défaut",
|
||||
"Default (Open AI)": "Par défaut (OpenAI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "par ex. pdf, docx, txt",
|
||||
"e.g. Tools for performing various operations": "par ex. Outils pour effectuer diverses opérations",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "par ex., 3, 4, 5 (laisser vide pour par défaut)",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "par ex., audio/wav, audio/mpeg (laisser vide pour les valeurs par défaut)",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "par ex., en-US, ja-JP (laisser vide pour détection automatique)",
|
||||
"e.g., westus (leave blank for eastus)": "par ex., westus (laisser vide pour eastus)",
|
||||
"e.g.) en,fr,de": "par ex., fr, en, de",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "Erreur lors du déchargement du modèle : {{error}}",
|
||||
"Error uploading file: {{error}}": "Erreur de téléversement du fichier : {{error}}",
|
||||
"Evaluations": "Évaluations",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Clé d'Exa API",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Exemple: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Exemple: TOUS",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "Échec de la copie du lien",
|
||||
"Failed to create API Key.": "Échec de la création de la clé API.",
|
||||
"Failed to delete note": "Échec de la délétion de la note",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Échec de la récupération des modèles",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "Échec du chargement du contenu du fichier",
|
||||
"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
|
||||
"Failed to save connections": "Échec de la sauvegarde des connexions",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Nom du groupe",
|
||||
"Group updated successfully": "Groupe mis à jour avec succès",
|
||||
"Groups": "Groupes",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Retour haptique",
|
||||
"Hello, {{name}}": "Bonjour, {{name}}.",
|
||||
"Help": "Aide",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "Fichier JSON non valide",
|
||||
"Invalid Tag": "Tag non valide",
|
||||
"is typing...": "est en train d'écrire...",
|
||||
"Italic": "",
|
||||
"January": "Janvier",
|
||||
"Jina API Key": "Clé API Jina",
|
||||
"join our Discord for help.": "Rejoignez notre Discord pour obtenir de l'aide.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "Gérer les serveurs d'outils",
|
||||
"March": "Mars",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "Nombre maximal d'intervenants",
|
||||
"Max Upload Count": "Nombre maximal de téléversements",
|
||||
"Max Upload Size": "Limite de taille de téléversement",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Clé API Mojeek",
|
||||
"more": "plus",
|
||||
"More": "Plus",
|
||||
"My Notes": "Mes notes",
|
||||
"Name": "Nom d'utilisateur",
|
||||
"Name your knowledge base": "Nommez votre base de connaissances",
|
||||
"Native": "Natif",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "URL ou chemin openapi.json",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Options pour exécuter un modèle de vision local dans la description d'image. Les réglages font référence à un modèle hébergé sur Hugging Face. Ce réglage est mutuellement exclusif avec picture_description_api.",
|
||||
"or": "ou",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Organisez vos utilisateurs",
|
||||
"Other": "Autre",
|
||||
"OUTPUT": "SORTIE",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Rechercher des fonctions",
|
||||
"Search Knowledge": "Rechercher des connaissances",
|
||||
"Search Models": "Rechercher des modèles",
|
||||
"Search Notes": "",
|
||||
"Search options": "Options de recherche",
|
||||
"Search Prompts": "Rechercher des prompts",
|
||||
"Search Result Count": "Nombre de résultats de recherche",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "Arrêter la génération",
|
||||
"Stop Sequence": "Séquence d'arrêt",
|
||||
"Stream Chat Response": "Streamer la réponse de la conversation",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "Supprimer l'OCR existant",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Supprimer le texte OCR existant du PDF et réexécuter l'OCR. Ignoré si la fonction Force OCR est activée. Par défaut à False.",
|
||||
"STT Model": "Modèle de Speech-to-Text",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Le sampling sans queue est utilisé pour réduire l'impact des tokens moins probables dans la sortie. Une valeur plus élevée (par exemple, 2.0) réduira davantage l'impact, tandis qu'une valeur de 1.0 désactive ce réglage.",
|
||||
"Talk to model": "Parler au modèle",
|
||||
"Tap to interrupt": "Appuyez pour interrompre",
|
||||
"Task List": "",
|
||||
"Task Model": "Modèle pour les tâches",
|
||||
"Tasks": "Tâches",
|
||||
"Tavily API Key": "Clé API Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Désarchiver tout",
|
||||
"Unarchive All Archived Chats": "Désarchiver toutes les conversations archivées",
|
||||
"Unarchive Chat": "Désarchiver la conversation",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "Décharge {{FROM_NOW}}",
|
||||
"Unlock mysteries": "Déverrouiller les mystères",
|
||||
"Unpin": "Désépingler",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(p.ej. `sh webui.sh --api`)",
|
||||
"(latest)": "(O mais recente)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Respostas",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "Chats do {{user}}",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Servidor Requerido",
|
||||
"*Prompt node ID(s) are required for image generation": "Os ID do nodo son requeridos para a xeneración de imáxes",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Os administradores teñen acceso a todas as ferramentas en todo momento; os usuarios necesitan ferramentas asignadas por modelo no espacio de trabajo.",
|
||||
"Advanced Parameters": "Parámetros Avanzados",
|
||||
"Advanced Params": "Parámetros avanzados",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "Todos os Documentos",
|
||||
"All models deleted successfully": "Todos os modelos han sido borrados",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Punto final da busqueda de Bing versión V7",
|
||||
"Bing Search V7 Subscription Key": "Chave de suscripción da busqueda de Bing versión V7",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Chave de API da busqueda Brave",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Por {{name}}",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Execución de código",
|
||||
"Code Execution": "Execución de código",
|
||||
"Code Execution Engine": "Motor de execución de código",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Copia o último bloque de código",
|
||||
"Copy last response": "Copia a última respuesta",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Copiar enlace",
|
||||
"Copy to clipboard": "Copiado o portapapeis",
|
||||
"Copying to clipboard was successful!": "!A copia o portapapeis realizouse correctamente!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Base de datos",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Decembro",
|
||||
"Default": "Por defecto",
|
||||
"Default (Open AI)": "Predeterminado (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "p.ej. ferramentas para realizar diversas operacions",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "Error o subir o Arquivo: {{error}}",
|
||||
"Evaluations": "Evaluacions",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "chave API de Exa",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Exemplo: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Exemplo: TODOS",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Non pudo xerarse a chave API.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Non puderon obterse os modelos",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Non pudo Lerse o contido do portapapeles",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Nome do grupo",
|
||||
"Group updated successfully": "Grupo actualizado correctamente",
|
||||
"Groups": "Grupos",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Retroalimentación háptica",
|
||||
"Hello, {{name}}": "Hola, {{name}}",
|
||||
"Help": "axuda",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Etiqueta Inválida",
|
||||
"is typing...": "está escribindo...",
|
||||
"Italic": "",
|
||||
"January": "Xaneiro",
|
||||
"Jina API Key": "chave API de Jina",
|
||||
"join our Discord for help.": "Únase o noso Discord para obter axuda.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "Marzo",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "Cantidad máxima de cargas",
|
||||
"Max Upload Size": "Tamaño máximo de Cargas",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "chave API de Mojeek Search",
|
||||
"more": "mais",
|
||||
"More": "mais",
|
||||
"My Notes": "",
|
||||
"Name": "Nombre",
|
||||
"Name your knowledge base": "Nombra a tua base de coñecementos",
|
||||
"Native": "Nativo",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "ou",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Organiza os teus usuarios",
|
||||
"Other": "Outro",
|
||||
"OUTPUT": "SAIDA",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Buscar Funcions",
|
||||
"Search Knowledge": "Buscar coñecemento",
|
||||
"Search Models": "Buscar Modelos",
|
||||
"Search Notes": "",
|
||||
"Search options": "Opcions de búsqueda",
|
||||
"Search Prompts": "Buscar Prompts",
|
||||
"Search Result Count": "Recuento de resultados de búsqueda",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Detener secuencia",
|
||||
"Stream Chat Response": "Transmitir resposta de chat",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "Modelo STT",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "Falar co modelo",
|
||||
"Tap to interrupt": "Toca para interrumpir",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "Tareas",
|
||||
"Tavily API Key": "chave API de Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Desarquivar todo",
|
||||
"Unarchive All Archived Chats": "Desarquivar todos os chats arquivados",
|
||||
"Unarchive Chat": "Desarquivar chat",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "Desbloquear misterios",
|
||||
"Unpin": "Desanclar",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(למשל `sh webui.sh --api`)",
|
||||
"(latest)": "(האחרון)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ מודלים }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "צ'אטים של {{user}}",
|
||||
"{{webUIName}} Backend Required": "נדרש Backend של {{webUIName}}",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "פרמטרים מתקדמים",
|
||||
"Advanced Params": "פרמטרים מתקדמים",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "כל המסמכים",
|
||||
"All models deleted successfully": "כל המודלים נמחקו בהצלחה",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "מפתח API של חיפוש אמיץ",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "הרצת קוד",
|
||||
"Code Execution": "הרצת קוד",
|
||||
"Code Execution Engine": "מנוע הרצת קוד",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "העתק את בלוק הקוד האחרון",
|
||||
"Copy last response": "העתק את התגובה האחרונה",
|
||||
"Copy link": "",
|
||||
"Copy Link": "העתק קישור",
|
||||
"Copy to clipboard": "",
|
||||
"Copying to clipboard was successful!": "ההעתקה ללוח הייתה מוצלחת!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "מסד נתונים",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "דצמבר",
|
||||
"Default": "ברירת מחדל",
|
||||
"Default (Open AI)": "",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "יצירת מפתח API נכשלה.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "קריאת תוכן הלוח נכשלה",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "קבוצות",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "",
|
||||
"Hello, {{name}}": "שלום, {{name}}",
|
||||
"Help": "עזרה",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "תג לא חוקי",
|
||||
"is typing...": "מקליד...",
|
||||
"Italic": "",
|
||||
"January": "ינואר",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "הצטרף ל-Discord שלנו לעזרה.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "מרץ",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "",
|
||||
"Max Upload Size": "",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "עוד",
|
||||
"My Notes": "הפתקים שלי",
|
||||
"Name": "שם",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "או",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "אחר",
|
||||
"OUTPUT": "",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "",
|
||||
"Search Knowledge": "",
|
||||
"Search Models": "חיפוש מודלים",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "חפש פקודות",
|
||||
"Search Result Count": "ספירת תוצאות חיפוש",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "סידור עצירה",
|
||||
"Stream Chat Response": "",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(e.g. `sh webui.sh --api`)",
|
||||
"(latest)": "(latest)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ मॉडल }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}} की चैट",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} बैकएंड आवश्यक",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "उन्नत पैरामीटर",
|
||||
"Advanced Params": "उन्नत परम",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "सभी डॉक्यूमेंट्स",
|
||||
"All models deleted successfully": "",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Brave सर्च एपीआई कुंजी",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "अंतिम कोड ब्लॉक कॉपी करें",
|
||||
"Copy last response": "अंतिम प्रतिक्रिया कॉपी करें",
|
||||
"Copy link": "",
|
||||
"Copy Link": "लिंक को कॉपी करें",
|
||||
"Copy to clipboard": "",
|
||||
"Copying to clipboard was successful!": "क्लिपबोर्ड पर कॉपी बनाना सफल रहा!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "डेटाबेस",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "डिसेंबर",
|
||||
"Default": "डिफ़ॉल्ट",
|
||||
"Default (Open AI)": "",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "एपीआई कुंजी बनाने में विफल.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "क्लिपबोर्ड सामग्री पढ़ने में विफल",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "",
|
||||
"Hello, {{name}}": "नमस्ते, {{name}}",
|
||||
"Help": "मदद",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "अवैध टैग",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "जनवरी",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "मदद के लिए हमारे डिस्कोर्ड में शामिल हों।",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "मार्च",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "",
|
||||
"Max Upload Size": "",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "और..",
|
||||
"My Notes": "",
|
||||
"Name": "नाम",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "या",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "अन्य",
|
||||
"OUTPUT": "",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "",
|
||||
"Search Knowledge": "",
|
||||
"Search Models": "मॉडल खोजें",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "प्रॉम्प्ट खोजें",
|
||||
"Search Result Count": "खोज परिणामों की संख्या",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "अनुक्रम रोकें",
|
||||
"Stream Chat Response": "",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(npr. `sh webui.sh --api`)",
|
||||
"(latest)": "(najnovije)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ modeli }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "Razgovori korisnika {{user}}",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Backend je potreban",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "Napredni parametri",
|
||||
"Advanced Params": "Napredni parametri",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "Svi dokumenti",
|
||||
"All models deleted successfully": "",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Brave tražilica - API ključ",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Kopiraj zadnji blok koda",
|
||||
"Copy last response": "Kopiraj zadnji odgovor",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Kopiraj vezu",
|
||||
"Copy to clipboard": "",
|
||||
"Copying to clipboard was successful!": "Kopiranje u međuspremnik je uspješno!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Baza podataka",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Prosinac",
|
||||
"Default": "Zadano",
|
||||
"Default (Open AI)": "",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Neuspješno stvaranje API ključa.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Neuspješno čitanje sadržaja međuspremnika",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "",
|
||||
"Hello, {{name}}": "Bok, {{name}}",
|
||||
"Help": "Pomoć",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Nevažeća oznaka",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "Siječanj",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "pridružite se našem Discordu za pomoć.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "Ožujak",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "",
|
||||
"Max Upload Size": "",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Više",
|
||||
"My Notes": "",
|
||||
"Name": "Ime",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "ili",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Ostalo",
|
||||
"OUTPUT": "",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "",
|
||||
"Search Knowledge": "",
|
||||
"Search Models": "Pretražite modele",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "Pretraga prompta",
|
||||
"Search Result Count": "Broj rezultata pretraživanja",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Zaustavi sekvencu",
|
||||
"Stream Chat Response": "",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "STT model",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(pl. `sh webui.sh --api`)",
|
||||
"(latest)": "(legújabb)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ modellek }}",
|
||||
"{{COUNT}} Available Tools": "{{COUNT}} Elérhető eszköz",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} rejtett sor",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Válasz",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}} beszélgetései",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Backend szükséges",
|
||||
"*Prompt node ID(s) are required for image generation": "*Prompt node ID(k) szükségesek a képgeneráláshoz",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Az adminok mindig hozzáférnek minden eszközhöz; a felhasználóknak modellenként kell eszközöket hozzárendelni a munkaterületen.",
|
||||
"Advanced Parameters": "Haladó paraméterek",
|
||||
"Advanced Params": "Haladó paraméterek",
|
||||
"AI": "",
|
||||
"All": "Mind",
|
||||
"All Documents": "Minden dokumentum",
|
||||
"All models deleted successfully": "Minden modell sikeresen törölve",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Bing Search V7 végpont",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 előfizetési kulcs",
|
||||
"Bocha Search API Key": "Bocha Search API kulcs",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Specifikus tokenek növelése vagy büntetése korlátozott válaszokhoz. Az elfogultság értékei -100 és 100 között lesznek rögzítve (beleértve). (Alapértelmezett: nincs)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Brave Search API kulcs",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Készítette: {{name}}",
|
||||
"Bypass Embedding and Retrieval": "Beágyazás és visszakeresés kihagyása",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Kód végrehajtás",
|
||||
"Code Execution": "Kód végrehajtás",
|
||||
"Code Execution Engine": "Kód végrehajtási motor",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Utolsó kódblokk másolása",
|
||||
"Copy last response": "Utolsó válasz másolása",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Link másolása",
|
||||
"Copy to clipboard": "Másolás a vágólapra",
|
||||
"Copying to clipboard was successful!": "Sikeres másolás a vágólapra!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Adatbázis",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "December",
|
||||
"Default": "Alapértelmezett",
|
||||
"Default (Open AI)": "Alapértelmezett (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "pl. Eszközök különböző műveletek elvégzéséhez",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "Hiba a fájl feltöltése során: {{error}}",
|
||||
"Evaluations": "Értékelések",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Exa API kulcs",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Példa: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Példa: MIND",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Nem sikerült létrehozni az API kulcsot.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Nem sikerült lekérni a modelleket",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Nem sikerült olvasni a vágólap tartalmát",
|
||||
"Failed to save connections": "Nem sikerült menteni a kapcsolatokat",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Csoport neve",
|
||||
"Group updated successfully": "Csoport sikeresen frissítve",
|
||||
"Groups": "Csoportok",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Tapintási visszajelzés",
|
||||
"Hello, {{name}}": "Helló, {{name}}",
|
||||
"Help": "Segítség",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Érvénytelen címke",
|
||||
"is typing...": "ír...",
|
||||
"Italic": "",
|
||||
"January": "Január",
|
||||
"Jina API Key": "Jina API kulcs",
|
||||
"join our Discord for help.": "Csatlakozz a Discord szerverünkhöz segítségért.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "Eszközszerverek kezelése",
|
||||
"March": "Március",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "Maximum feltöltések száma",
|
||||
"Max Upload Size": "Maximum feltöltési méret",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Mojeek Search API kulcs",
|
||||
"more": "több",
|
||||
"More": "Több",
|
||||
"My Notes": "",
|
||||
"Name": "Név",
|
||||
"Name your knowledge base": "Nevezd el a tudásbázisodat",
|
||||
"Native": "Natív",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "vagy",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Szervezd meg a felhasználóidat",
|
||||
"Other": "Egyéb",
|
||||
"OUTPUT": "KIMENET",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Funkciók keresése",
|
||||
"Search Knowledge": "Tudásbázis keresése",
|
||||
"Search Models": "Modellek keresése",
|
||||
"Search Notes": "",
|
||||
"Search options": "Keresési opciók",
|
||||
"Search Prompts": "Promptok keresése",
|
||||
"Search Result Count": "Keresési találatok száma",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Leállítási szekvencia",
|
||||
"Stream Chat Response": "Chat válasz streamelése",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "STT modell",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "A farok nélküli mintavétel csökkenti a kevésbé valószínű tokenek hatását a kimeneten. Magasabb érték (pl. 2,0) jobban csökkenti a hatást, míg az 1,0 érték kikapcsolja ezt a beállítást.",
|
||||
"Talk to model": "Beszélj a modellel",
|
||||
"Tap to interrupt": "Koppintson a megszakításhoz",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "Feladatok",
|
||||
"Tavily API Key": "Tavily API kulcs",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Minden visszaállítása",
|
||||
"Unarchive All Archived Chats": "Minden archivált csevegés visszaállítása",
|
||||
"Unarchive Chat": "Csevegés visszaállítása",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "Titkok feloldása",
|
||||
"Unpin": "Rögzítés feloldása",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(contoh: `sh webui.sh --api`)",
|
||||
"(latest)": "(terbaru)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "Obrolan {{user}}",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Diperlukan Backend",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Admin memiliki akses ke semua alat setiap saat; pengguna memerlukan alat yang ditetapkan per model di ruang kerja.",
|
||||
"Advanced Parameters": "Parameter Lanjutan",
|
||||
"Advanced Params": "Parameter Lanjutan",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "Semua Dokumen",
|
||||
"All models deleted successfully": "",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Kunci API Pencarian Berani",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Salin blok kode terakhir",
|
||||
"Copy last response": "Salin tanggapan terakhir",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Salin Tautan",
|
||||
"Copy to clipboard": "",
|
||||
"Copying to clipboard was successful!": "Penyalinan ke papan klip berhasil!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Basis data",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Desember",
|
||||
"Default": "Default",
|
||||
"Default (Open AI)": "",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Gagal membuat API Key.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Gagal membaca konten papan klip",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "",
|
||||
"Hello, {{name}}": "Halo, {{name}}",
|
||||
"Help": "Bantuan",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Tag tidak valid",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "Januari",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "bergabunglah dengan Discord kami untuk mendapatkan bantuan.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "Maret",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "",
|
||||
"Max Upload Size": "",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Lainnya",
|
||||
"My Notes": "",
|
||||
"Name": "Nama",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "atau",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Lainnya",
|
||||
"OUTPUT": "",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Fungsi Pencarian",
|
||||
"Search Knowledge": "",
|
||||
"Search Models": "Cari Model",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "Perintah Pencarian",
|
||||
"Search Result Count": "Jumlah Hasil Pencarian",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Hentikan Urutan",
|
||||
"Stream Chat Response": "",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "Model STT",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "Ketuk untuk menyela",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "Kunci API Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(m.sh. `sh webui.sh --api`)",
|
||||
"(latest)": "(is déanaí)",
|
||||
"(leave blank for to use commercial endpoint)": "(fág bán le haghaidh críochphointe tráchtála a úsáid)",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "{{COUNT}} Uirlisí ar Fáil",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} línte folaithe",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Freagra",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "Comhráite {{user}}",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Ceoldeireadh Riachtanach",
|
||||
"*Prompt node ID(s) are required for image generation": "* Tá ID nód leid ag teastáil chun íomhá a ghiniúint",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Tá rochtain ag riarthóirí ar gach uirlis i gcónaí; teastaíonn ó úsáideoirí uirlisí a shanntar in aghaidh an mhúnla sa spás oibre.",
|
||||
"Advanced Parameters": "Paraiméadair Casta",
|
||||
"Advanced Params": "Paraiméid Casta",
|
||||
"AI": "",
|
||||
"All": "Gach",
|
||||
"All Documents": "Gach Doiciméad",
|
||||
"All models deleted successfully": "Scriosadh na múnlaí go léir go rathúil",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Cuardach Bing V7 Críochphointe",
|
||||
"Bing Search V7 Subscription Key": "Eochair Síntiúis Bing Cuardach V7",
|
||||
"Bocha Search API Key": "Eochair API Cuardach Bocha",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Treisiú nó pionós a ghearradh ar chomharthaí sonracha as freagraí srianta. Déanfar luachanna laofachta a chlampáil idir -100 agus 100 (san áireamh). (Réamhshocrú: ceann ar bith)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Ní mór Inneall OCR Docling agus Teanga/Teangacha araon a sholáthar nó an dá cheann a fhágáil folamh.",
|
||||
"Brave Search API Key": "Eochair API Cuardaigh Brave",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Le {{name}}",
|
||||
"Bypass Embedding and Retrieval": "Seachbhóthar Leabú agus Aisghabháil",
|
||||
"Bypass Web Loader": "Seachbhóthar Luchtaire Gréasáin",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "Dún modúl",
|
||||
"Close settings modal": "Dún modúl na socruithe",
|
||||
"Code Block": "",
|
||||
"Code execution": "Cód a fhorghníomhú",
|
||||
"Code Execution": "Forghníomhú Cóid",
|
||||
"Code Execution Engine": "Inneall Forghníomhaithe Cóid",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "Cóipeáil Téacs Formáidithe",
|
||||
"Copy last code block": "Cóipeáil bloc cód deireanach",
|
||||
"Copy last response": "Cóipeáil an fhreagairt",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Cóipeáil Nasc",
|
||||
"Copy to clipboard": "Cóipeáil chuig an ngearrthaisce",
|
||||
"Copying to clipboard was successful!": "D'éirigh le cóipeáil chuig an ngearrthaisce!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Bunachar Sonraí",
|
||||
"Datalab Marker API": "API Marcóra Datalab",
|
||||
"Datalab Marker API Key required.": "Eochair API Marcóra Datalab ag teastáil.",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Nollaig",
|
||||
"Default": "Réamhshocraithe",
|
||||
"Default (Open AI)": "Réamhshocraithe (Oscail AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "m.sh. pdf, docx, txt",
|
||||
"e.g. Tools for performing various operations": "m.sh. Uirlisí chun oibríochtaí éagsúla a dhéanamh",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "m.sh., 3, 4, 5 (fág bán le haghaidh réamhshocraithe)",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "m.sh., fuaim/wav, fuaim/mpeg (fág bán le haghaidh réamhshocruithe)",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "m.sh., en-US, ja-JP (fág bán le haghaidh uathbhraite)",
|
||||
"e.g., westus (leave blank for eastus)": "m.sh., westus (fág bán le haghaidh eastus)",
|
||||
"e.g.) en,fr,de": "m.sh.) en, fr, de",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "Earráid ag díluchtú samhail: {{error}}",
|
||||
"Error uploading file: {{error}}": "Earráid agus comhad á uaslódáil: {{error}}",
|
||||
"Evaluations": "Meastóireachtaí",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Eochair Exa API",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Sampla: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Sampla: GACH",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "Theip ar an nasc a chóipeáil",
|
||||
"Failed to create API Key.": "Theip ar an eochair API a chruthú.",
|
||||
"Failed to delete note": "Theip ar an nóta a scriosadh",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Theip ar shamhlacha a fháil",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "Theip ar lódáil ábhar an chomhaid.",
|
||||
"Failed to read clipboard contents": "Theip ar ábhar gearrthaisce a lé",
|
||||
"Failed to save connections": "Theip ar na naisc a shábháil",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Ainm an Ghrúpa",
|
||||
"Group updated successfully": "D'éirigh le nuashonrú an ghrúpa",
|
||||
"Groups": "Grúpaí",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Aiseolas Haptic",
|
||||
"Hello, {{name}}": "Dia duit, {{name}}",
|
||||
"Help": "Cabhair",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "Comhad JSON neamhbhailí",
|
||||
"Invalid Tag": "Clib neamhbhailí",
|
||||
"is typing...": "ag clóscríobh...",
|
||||
"Italic": "",
|
||||
"January": "Eanáir",
|
||||
"Jina API Key": "Jina API Eochair",
|
||||
"join our Discord for help.": "bí inár Discord chun cabhair a fháil.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "Bainistigh Freastalaithe Uirlisí",
|
||||
"March": "Márta",
|
||||
"Markdown": "Marcáil síos",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "Uasmhéid Cainteoirí",
|
||||
"Max Upload Count": "Líon Uaslódála Max",
|
||||
"Max Upload Size": "Méid Uaslódála Max",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Eochair API Cuardach Mojeek",
|
||||
"more": "níos mó",
|
||||
"More": "Tuilleadh",
|
||||
"My Notes": "Mo Nótaí",
|
||||
"Name": "Ainm",
|
||||
"Name your knowledge base": "Cuir ainm ar do bhunachar eolais",
|
||||
"Native": "Dúchasach",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "URL nó Cosán openapi.json",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Roghanna chun samhail teanga fís áitiúil a rith i dtuairisc na pictiúr. Tagraíonn na paraiméadair do mhúnla atá á óstáil ar Hugging Face. Tá an paraiméadar seo eisiach go frithpháirteach le picture_description_api.",
|
||||
"or": "nó",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Eagraigh do chuid úsáideoirí",
|
||||
"Other": "Eile",
|
||||
"OUTPUT": "ASCHUR",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Feidhmeanna Cuardaigh",
|
||||
"Search Knowledge": "Cuardaigh Eolais",
|
||||
"Search Models": "Múnlaí Cuardaigh",
|
||||
"Search Notes": "",
|
||||
"Search options": "Roghanna cuardaigh",
|
||||
"Search Prompts": "Leideanna Cuardaigh",
|
||||
"Search Result Count": "Líon Torthaí Cuardaigh",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "Stop a Ghiniúint",
|
||||
"Stop Sequence": "Stop Seicheamh",
|
||||
"Stream Chat Response": "Freagra Comhrá Sruth",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "Bain OCR atá ann cheana",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Bain an téacs OCR atá ann cheana féin as an PDF agus athrith OCR. Déantar neamhaird de má tá OCR Fórsála cumasaithe. Is é Bréag an rogha réamhshocraithe.",
|
||||
"STT Model": "Múnla STT",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Úsáidtear sampláil saor ó eireabaill chun tionchar na n-chomharthaí ón aschur nach bhfuil chomh dóchúil céanna a laghdú. Laghdóidh luach níos airde (m.sh., 2.0) an tionchar níos mó, agus díchumasaíonn luach 1.0 an socrú seo. (réamhshocraithe: 1)",
|
||||
"Talk to model": "Labhair le múnla",
|
||||
"Tap to interrupt": "Tapáil chun cur isteach",
|
||||
"Task List": "",
|
||||
"Task Model": "Múnla Tasca",
|
||||
"Tasks": "Tascanna",
|
||||
"Tavily API Key": "Eochair API Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Díchartlannaigh Uile",
|
||||
"Unarchive All Archived Chats": "Díchartlannaigh Gach Comhrá Cartlainne",
|
||||
"Unarchive Chat": "Comhrá a dhíchartlannú",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "Díluchtuithe {{FROM_NOW}}",
|
||||
"Unlock mysteries": "Díghlasáil rúndiamhra",
|
||||
"Unpin": "Díphoráil",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(p.e. `sh webui.sh --api`)",
|
||||
"(latest)": "(ultima)",
|
||||
"(leave blank for to use commercial endpoint)": "(lascia vuoto per utilizzare l'endpoint commerciale)",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ modelli }}",
|
||||
"{{COUNT}} Available Tools": "{{COUNT}} Strumenti Disponibili",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} righe nascoste",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Risposte",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}} Chat",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Richiesta Backend",
|
||||
"*Prompt node ID(s) are required for image generation": "*ID nodo prompt sono necessari per la generazione di immagini",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Gli amministratori hanno accesso a tutti gli strumenti in qualsiasi momento; gli utenti necessitano di strumenti assegnati per ogni modello nello spazio di lavoro.",
|
||||
"Advanced Parameters": "Parametri avanzati",
|
||||
"Advanced Params": "Parametri avanzati",
|
||||
"AI": "",
|
||||
"All": "Tutti",
|
||||
"All Documents": "Tutti i documenti",
|
||||
"All models deleted successfully": "Tutti i modelli eliminati con successo",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Endpoint di Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Chiave di Iscrizione Bing Search V7",
|
||||
"Bocha Search API Key": "Chiave API di Bocha Search",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Potenziare o penalizzare token specifici per risposte vincolate. I valori di bias saranno limitati tra -100 e 100 (incluso). (Predefinito: nessuno)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Entrambi il Docling OCR Engine e la lingua(e) devono essere forniti o entrambi lasciati vuoti.",
|
||||
"Brave Search API Key": "Chiave API di ricerca Brave",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Di {{name}}",
|
||||
"Bypass Embedding and Retrieval": "Bypass embedding e recupero",
|
||||
"Bypass Web Loader": "Bypassa il Web Loader",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "Chiudi modale",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Esecuzione codice",
|
||||
"Code Execution": "Esecuzione codice",
|
||||
"Code Execution Engine": "Motore di esecuzione codice",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "Copia testo formattato",
|
||||
"Copy last code block": "Copia ultimo blocco di codice",
|
||||
"Copy last response": "Copia ultima risposta",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Copia link",
|
||||
"Copy to clipboard": "Copia negli appunti",
|
||||
"Copying to clipboard was successful!": "Copia negli appunti riuscita!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Database",
|
||||
"Datalab Marker API": "Datalab Marker API",
|
||||
"Datalab Marker API Key required.": "Chiave Datalab Marker API necessaria.",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Dicembre",
|
||||
"Default": "Predefinito",
|
||||
"Default (Open AI)": "Predefinito (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "ad esempio pdf, docx, txt",
|
||||
"e.g. Tools for performing various operations": "ad esempio strumenti per eseguire varie operazioni",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "ad esempio, 3, 4, 5 (lascia vuoto per predefinito)",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "ad esempio, audio/wav,audio/mpeg (lascia vuoto per predefinito)",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "ad esempio, en-US,ja-JP (lascia vuoto per auto-rilevamento)",
|
||||
"e.g., westus (leave blank for eastus)": "ad esempio, westus (lascia vuoto per est)",
|
||||
"e.g.) en,fr,de": "ad esempio ) en,fr,de",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "Errore durante lo scaricamento della memoria del modello: {{error}}",
|
||||
"Error uploading file: {{error}}": "Errore durante il caricamento del file: {{error}}",
|
||||
"Evaluations": "Valutazioni",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Chiave API Exa",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Esempio: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Esempio: TUTTI",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "Impossibile copiare il link",
|
||||
"Failed to create API Key.": "Impossibile creare Chiave API.",
|
||||
"Failed to delete note": "Impossibile eliminare la nota",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Impossibile recuperare i modelli",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "Impossibile caricare il contenuto del file.",
|
||||
"Failed to read clipboard contents": "Impossibile leggere il contenuto degli appunti",
|
||||
"Failed to save connections": "Impossibile salvare le connessioni",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Nome Gruppo",
|
||||
"Group updated successfully": "Gruppo aggiornato con successo",
|
||||
"Groups": "Gruppi",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Feedback Aptico",
|
||||
"Hello, {{name}}": "Ciao, {{name}}",
|
||||
"Help": "Aiuto",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "File JSOn non valido",
|
||||
"Invalid Tag": "Tag non valido",
|
||||
"is typing...": "sta digitando...",
|
||||
"Italic": "",
|
||||
"January": "Gennaio",
|
||||
"Jina API Key": "Chiave API Jina",
|
||||
"join our Discord for help.": "unisciti al nostro Discord per ricevere aiuto.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "Gestisci i Server dei Tool",
|
||||
"March": "Marzo",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "Numero Massimo di Parlanti",
|
||||
"Max Upload Count": "Conteggio massimo di caricamenti",
|
||||
"Max Upload Size": "Dimensione massima di caricamento",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Chiave API di Mojeek Search",
|
||||
"more": "altro",
|
||||
"More": "Altro",
|
||||
"My Notes": "Le mie note",
|
||||
"Name": "Nome",
|
||||
"Name your knowledge base": "Dai un nome alla tua base di conoscenza",
|
||||
"Native": "Nativo",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "URL openapi.json o il percorso",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Opzioni per l'esecuzione di un modello di vision-language locale nella descrizione dell'immagine. I parametri si riferiscono a un modello ospitato su Hugging Face. Questo parametro è esclusivo con picture_description_api.",
|
||||
"or": "o",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Organizza i tuoi utenti",
|
||||
"Other": "Altro",
|
||||
"OUTPUT": "OUTPUT",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Cerca funzioni",
|
||||
"Search Knowledge": "Cerca conoscenza",
|
||||
"Search Models": "Cerca modelli",
|
||||
"Search Notes": "",
|
||||
"Search options": "Cerca opzioni",
|
||||
"Search Prompts": "Cerca prompt",
|
||||
"Search Result Count": "Conteggio dei risultati della ricerca",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "Ferma generazione",
|
||||
"Stop Sequence": "Sequenza di arresto",
|
||||
"Stream Chat Response": "Stream risposta chat",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "Rimuovi OCR esistente",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Rimuovi il testo OCR esistente dal PDF e rilancia OCR. Ignorato se Forza OCR è attivo. Predefinito a Falso",
|
||||
"STT Model": "Modello STT",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Il campionamento tail free viene utilizzato per ridurre l'impatto di token meno probabili dall'output. Un valore più alto (ad esempio, 2.0) ridurrà maggiormente l'impatto, mentre un valore di 1.0 disabilita questa impostazione.",
|
||||
"Talk to model": "Parla al modello",
|
||||
"Tap to interrupt": "Tocca per interrompere",
|
||||
"Task List": "",
|
||||
"Task Model": "Modello Task",
|
||||
"Tasks": "Attività",
|
||||
"Tavily API Key": "Chiave API Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Disarchivia Tutto",
|
||||
"Unarchive All Archived Chats": "Disarchivia Tutte le Chat Archiviate",
|
||||
"Unarchive Chat": "Disarchivia Chat",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "Scarica {{FROM_NOW}}",
|
||||
"Unlock mysteries": "Sblocca misteri",
|
||||
"Unpin": "Rimuovi fissato",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(例: `sh webui.sh --api`)",
|
||||
"(latest)": "(最新)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ モデル }}",
|
||||
"{{COUNT}} Available Tools": "{{COUNT}} 利用可能ツール",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} 非表示行",
|
||||
"{{COUNT}} Replies": "{{COUNT}} 返信",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}} のチャット",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} バックエンドが必要です",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "管理者は全てのツールにアクセス出来ます。ユーザーはワークスペースのモデル毎に割り当てて下さい。",
|
||||
"Advanced Parameters": "詳細パラメーター",
|
||||
"Advanced Params": "高度なパラメータ",
|
||||
"AI": "",
|
||||
"All": "全て",
|
||||
"All Documents": "全てのドキュメント",
|
||||
"All models deleted successfully": "全てのモデルが正常に削除されました",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Bing Search V7 エンドポイント",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 サブスクリプションキー",
|
||||
"Bocha Search API Key": "Bocha Search APIキー",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "特定のトークンの強調またはペナルティを適用します。バイアス値は-100から100(包括的)にクランプされます。(デフォルト:なし)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Docling OCRエンジンと言語(s)の両方が提供されているか、両方が空のままになっている必要があります。",
|
||||
"Brave Search API Key": "Brave Search APIキー",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "{{name}}による",
|
||||
"Bypass Embedding and Retrieval": "埋め込みと検索をバイパス",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "コードの実行",
|
||||
"Code Execution": "コードの実行",
|
||||
"Code Execution Engine": "コードの実行エンジン",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "フォーマットされたテキストをコピー",
|
||||
"Copy last code block": "最後のコードブロックをコピー",
|
||||
"Copy last response": "最後の応答をコピー",
|
||||
"Copy link": "",
|
||||
"Copy Link": "リンクをコピー",
|
||||
"Copy to clipboard": "クリップボードにコピー",
|
||||
"Copying to clipboard was successful!": "クリップボードへのコピーが成功しました!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "データベース",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "12月",
|
||||
"Default": "デフォルト",
|
||||
"Default (Open AI)": "デフォルト(OpenAI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "ファイルアップロードに失敗しました: {{error}}",
|
||||
"Evaluations": "評価",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Exa APIキー",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "例: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "例: ALL",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "APIキーの作成に失敗しました。",
|
||||
"Failed to delete note": "ノートの削除に失敗しました。",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "モデルの取得に失敗しました。",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "ファイルの内容を読み込めませんでした。",
|
||||
"Failed to read clipboard contents": "クリップボードの内容を読み取れませんでした",
|
||||
"Failed to save connections": "接続の保存に失敗しました。",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "グループ名",
|
||||
"Group updated successfully": "グループの更新が成功しました。",
|
||||
"Groups": "グループ",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "触覚フィードバック",
|
||||
"Hello, {{name}}": "こんにちは、{{name}} さん",
|
||||
"Help": "ヘルプ",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "無効なタグ",
|
||||
"is typing...": "入力中...",
|
||||
"Italic": "",
|
||||
"January": "1月",
|
||||
"Jina API Key": "Jina APIキー",
|
||||
"join our Discord for help.": "ヘルプについては、Discord に参加してください。",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "ツールサーバーの管理",
|
||||
"March": "3月",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "最大アップロード数",
|
||||
"Max Upload Size": "最大アップロードサイズ",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Mojeek Search APIキー",
|
||||
"more": "もっと見る",
|
||||
"More": "もっと見る",
|
||||
"My Notes": "マイノート",
|
||||
"Name": "名前",
|
||||
"Name your knowledge base": "ナレッジベースの名前を付ける",
|
||||
"Native": "ネイティブ",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "または",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "ユーザーを整理する",
|
||||
"Other": "その他",
|
||||
"OUTPUT": "出力",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Functionの検索",
|
||||
"Search Knowledge": "ナレッジベースの検索",
|
||||
"Search Models": "モデル検索",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "プロンプトを検索",
|
||||
"Search Result Count": "検索結果数",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "ストップシーケンス",
|
||||
"Stream Chat Response": "チャットレスポンスのストリーム",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "STTモデル",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "モデルと話す",
|
||||
"Tap to interrupt": "タップして中断",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "タスク",
|
||||
"Tavily API Key": "Tavily APIキー",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "すべてのアーカイブされたチャットをアーカイブ解除",
|
||||
"Unarchive All Archived Chats": "すべてのアーカイブされたチャットをアーカイブ解除",
|
||||
"Unarchive Chat": "チャットをアーカイブ解除",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "ピン留め解除",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(მაგ: `sh webui.sh --api`)",
|
||||
"(latest)": "(უახლესი)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ მოდელები }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} პასუხი",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}}-ის ჩათები",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} საჭიროა უკანაბოლო",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "დამატებითი პარამეტრები",
|
||||
"Advanced Params": "დამატებითი პარამეტრები",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "ყველა დოკუმენტი",
|
||||
"All models deleted successfully": "ყველა მოდელი წარმატებით წაიშალა",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Brave Search API-ის გასაღები",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "ავტორი {{name}}",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "ბოლო კოდის ბლოკის კოპირება",
|
||||
"Copy last response": "ბოლო პასუხის კოპირება",
|
||||
"Copy link": "",
|
||||
"Copy Link": "ბმულის კოპირება",
|
||||
"Copy to clipboard": "ბუფერში კოპირება",
|
||||
"Copying to clipboard was successful!": "გაცვლის ბუფერში კოპირება წარმატებულია!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "მონაცემთა ბაზა",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "დეკემბერი",
|
||||
"Default": "ნაგულისხმევი",
|
||||
"Default (Open AI)": "",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "API-ის გასაღების შექმნა ჩავარდა.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "ბუფერის შემცველობის წაკითხვა ჩავარდა",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "ჯგუფის სახელი",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "ჯგუფები",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "",
|
||||
"Hello, {{name}}": "გამარჯობა, {{name}}",
|
||||
"Help": "დახმარება",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "არასწორი ჭდე",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "იანვარი",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "დახმარებისთვის შემოდით ჩვენს Discord-ზე.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "მარტი",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "",
|
||||
"Max Upload Size": "",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "მეტი",
|
||||
"More": "მეტი",
|
||||
"My Notes": "",
|
||||
"Name": "სახელი",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "საკუთარი",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "ან",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "სხვა",
|
||||
"OUTPUT": "",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "ფუნქციების ძებნა",
|
||||
"Search Knowledge": "",
|
||||
"Search Models": "მოდელების ძებნა",
|
||||
"Search Notes": "",
|
||||
"Search options": "ძებნის მორგება",
|
||||
"Search Prompts": "მოთხოვნების ძებნა",
|
||||
"Search Result Count": "ძიების შედეგების რაოდენობა",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "შეჩერების მიმდევრობა",
|
||||
"Stream Chat Response": "",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "ამოცანები",
|
||||
"Tavily API Key": "",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "ჩამოხსნა",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(예: `sh webui.sh --api`)",
|
||||
"(latest)": "(최근)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "사용 가능한 도구 {{COUNT}}개",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "숨겨진 줄 {{COUNT}}개",
|
||||
"{{COUNT}} Replies": "답글 {{COUNT}}개",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}}의 채팅",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} 백엔드가 필요합니다.",
|
||||
"*Prompt node ID(s) are required for image generation": "이미지 생성에는 프롬프트 노드 ID가 필요합니다.",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "관리자는 항상 모든 도구에 접근할 수 있지만, 사용자는 워크스페이스에서 모델마다 도구를 할당받아야 합니다.",
|
||||
"Advanced Parameters": "고급 매개변수",
|
||||
"Advanced Params": "고급 매개변수",
|
||||
"AI": "",
|
||||
"All": "전체",
|
||||
"All Documents": "모든 문서",
|
||||
"All models deleted successfully": "성공적으로 모든 모델이 삭제되었습니다",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Bing Search V7 엔드포인트",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 구독 키",
|
||||
"Bocha Search API Key": "Bocha Search API 키",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "특정 토큰을 가중 상향/하향하여 응답을 제약합니다. 값은 -100 ~ 100(기본값: 없음)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Docling OCR 엔진과 언어(s) 모두 제공 또는 모두 비워두세요.",
|
||||
"Brave Search API Key": "Brave Search API 키",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "작성자: {{name}}",
|
||||
"Bypass Embedding and Retrieval": "임베딩 검색 우회",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "코드 실행",
|
||||
"Code Execution": "코드 실행",
|
||||
"Code Execution Engine": "코드 실행 엔진",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "서식 있는 텍스트 복사",
|
||||
"Copy last code block": "마지막 코드 블록 복사",
|
||||
"Copy last response": "마지막 응답 복사",
|
||||
"Copy link": "",
|
||||
"Copy Link": "링크 복사",
|
||||
"Copy to clipboard": "클립보드에 복사",
|
||||
"Copying to clipboard was successful!": "성공적으로 클립보드에 복사되었습니다!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "데이터베이스",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "12월",
|
||||
"Default": "기본값",
|
||||
"Default (Open AI)": "기본값 (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "예: 다양한 작업을 수행하는 도구",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "예: 3, 4, 5 (기본값을 위해 비워 두세요)",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "예: en-US, ja-JP (자동 감지를 위해 비워 두세요)",
|
||||
"e.g., westus (leave blank for eastus)": "예: westus (eastus를 위해 비워 두세요)",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "파일 업로드 오류: {{error}}",
|
||||
"Evaluations": "평가",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Exa API 키",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "예: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "예: 전체",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "API 키 생성에 실패했습니다.",
|
||||
"Failed to delete note": "노트 삭제 실패",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "모델 가져오기 실패",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "파일 내용 로드 실패.",
|
||||
"Failed to read clipboard contents": "클립보드 내용 가져오기를 실패하였습니다.",
|
||||
"Failed to save connections": "연결 저장 실패",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "그룹 명",
|
||||
"Group updated successfully": "성공적으로 그룹을 수정했습니다",
|
||||
"Groups": "그룹",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "햅틱 피드백",
|
||||
"Hello, {{name}}": "안녕하세요, {{name}}",
|
||||
"Help": "도움말",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "잘못된 태그",
|
||||
"is typing...": "입력 중...",
|
||||
"Italic": "",
|
||||
"January": "1월",
|
||||
"Jina API Key": "Jina API 키",
|
||||
"join our Discord for help.": "도움말을 보려면 Discord에 가입하세요.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "도구 서버 관리",
|
||||
"March": "3월",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "업로드 최대 수",
|
||||
"Max Upload Size": "업로드 최대 사이즈",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Mojeek Search API 키",
|
||||
"more": "더보기",
|
||||
"More": "더보기",
|
||||
"My Notes": "내 노트",
|
||||
"Name": "이름",
|
||||
"Name your knowledge base": "지식 기반 이름을 지정하세요",
|
||||
"Native": "네이티브",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "또는",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "사용자 관리",
|
||||
"Other": "기타",
|
||||
"OUTPUT": "출력",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "함수 검색",
|
||||
"Search Knowledge": "지식 기반 검색",
|
||||
"Search Models": "모델 검색",
|
||||
"Search Notes": "",
|
||||
"Search options": "검색 옵션",
|
||||
"Search Prompts": "프롬프트 검색",
|
||||
"Search Result Count": "검색 결과 수",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "중지 시퀀스",
|
||||
"Stream Chat Response": "스트림 채팅 응답",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "STT 모델",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "꼬리 자유 샘플링은 출력에서 확률이 낮은 토큰의 영향을 줄이기 위해 사용됩니다. 값이 클수록(예: 2.0) 이러한 토큰의 영향이 더 줄어들며, 1.0으로 설정하면 이 기능은 비활성화됩니다.",
|
||||
"Talk to model": "모델과 대화하기",
|
||||
"Tap to interrupt": "탭하여 중단",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "작업",
|
||||
"Tavily API Key": "Tavily API 키",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "모두 보관 해제",
|
||||
"Unarchive All Archived Chats": "보관된 모든 채팅을 보관 해제",
|
||||
"Unarchive Chat": "채팅 보관 해제",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "미스터리 풀기",
|
||||
"Unpin": "고정 해제",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(pvz. `sh webui.sh --api`)",
|
||||
"(latest)": "(naujausias)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}} susirašinėjimai",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} būtinas serveris",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratoriai visada turi visus įrankius. Naudotojai turi tuėti prieigą prie dokumentų per modelių nuostatas",
|
||||
"Advanced Parameters": "Pažengę nustatymai",
|
||||
"Advanced Params": "Pažengę nustatymai",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "Visi dokumentai",
|
||||
"All models deleted successfully": "",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Brave Search API raktas",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Kopijuoti paskutinį kodo bloką",
|
||||
"Copy last response": "Kopijuoti paskutinį atsakymą",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Kopijuoti nuorodą",
|
||||
"Copy to clipboard": "",
|
||||
"Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Duomenų bazė",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Gruodis",
|
||||
"Default": "Numatytasis",
|
||||
"Default (Open AI)": "",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Nepavyko sukurti API rakto",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Nepavyko perskaityti kopijuoklės",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "",
|
||||
"Hello, {{name}}": "Sveiki, {{name}}",
|
||||
"Help": "Pagalba",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Neteisinga žyma",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "Sausis",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "prisijunkite prie mūsų Discord.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "Kovas",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "",
|
||||
"Max Upload Size": "",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Daugiau",
|
||||
"My Notes": "",
|
||||
"Name": "Pavadinimas",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "arba",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Kita",
|
||||
"OUTPUT": "",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Ieškoti funkcijų",
|
||||
"Search Knowledge": "",
|
||||
"Search Models": "Ieškoti modelių",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "Ieškoti užklausų",
|
||||
"Search Result Count": "Paieškos rezultatų skaičius",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Baigt sekvenciją",
|
||||
"Stream Chat Response": "",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "STT modelis",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "Paspauskite norėdami pertraukti",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "Tavily API raktas",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "Atsemigti",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(contoh `sh webui.sh --api`)",
|
||||
"(latest)": "(terkini)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "Perbualan {{user}}",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Backend diperlukan",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Pentadbir mempunyai akses kepada semua alat pada setiap masa; pengguna memerlukan alat yang ditetapkan mengikut model dalam ruang kerja.",
|
||||
"Advanced Parameters": "Parameter Lanjutan",
|
||||
"Advanced Params": "Parameter Lanjutan",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "Semua Dokumen",
|
||||
"All models deleted successfully": "",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Kunci API Carian Brave",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Salin Blok Kod Terakhir",
|
||||
"Copy last response": "Salin Respons Terakhir",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Salin Pautan",
|
||||
"Copy to clipboard": "",
|
||||
"Copying to clipboard was successful!": "Menyalin ke papan klip berjaya!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Pangkalan Data",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Disember",
|
||||
"Default": "Lalai",
|
||||
"Default (Open AI)": "",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Gagal mencipta kekunci API",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Gagal membaca konten papan klip",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "",
|
||||
"Hello, {{name}}": "Hello, {{name}}",
|
||||
"Help": "Bantuan",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Tag tidak sah",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "Januari",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "sertai Discord kami untuk mendapatkan bantuan.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "Mac",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "",
|
||||
"Max Upload Size": "",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Lagi",
|
||||
"My Notes": "",
|
||||
"Name": "Nama",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "atau",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Lain-lain",
|
||||
"OUTPUT": "",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Carian Fungsi",
|
||||
"Search Knowledge": "",
|
||||
"Search Models": "Carian Model",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "Carian Gesaan",
|
||||
"Search Result Count": "Kiraan Hasil Carian",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Jujukan Henti",
|
||||
"Stream Chat Response": "",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "Model STT",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "Sentuh untuk mengganggu",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "Kunci API Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "Nyahsematkan",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(f.eks. `sh webui.sh --api`)",
|
||||
"(latest)": "(siste)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ modeller }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} svar",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}} sine samtaler",
|
||||
"{{webUIName}} Backend Required": "Backend til {{webUIName}} kreves",
|
||||
"*Prompt node ID(s) are required for image generation": "Node-ID-er for ledetekst kreves for generering av bilder",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorer har alltid tilgang til alle verktøy. Brukere må få tildelt verktøy per modell i arbeidsområdet.",
|
||||
"Advanced Parameters": "Avanserte parametere",
|
||||
"Advanced Params": "Avanserte parametere",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "Alle dokumenter",
|
||||
"All models deleted successfully": "Alle modeller er slettet",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Endepunkt for Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Abonnementsnøkkel for Bing Search V7",
|
||||
"Bocha Search API Key": "API-nøkkel for Bocha Search",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "API-nøkkel for Brave Search",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Etter {{name}}",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Kodekjøring",
|
||||
"Code Execution": "Kodekjøring",
|
||||
"Code Execution Engine": "Motor for kodekjøring",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Kopier siste kodeblokk",
|
||||
"Copy last response": "Kopier siste svar",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Kopier lenke",
|
||||
"Copy to clipboard": "Kopier til utklippstavle",
|
||||
"Copying to clipboard was successful!": "Kopiert til utklippstavlen!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Database",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "desember",
|
||||
"Default": "Standard",
|
||||
"Default (Open AI)": "Standard (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "f.eks. Verktøy for å gjøre ulike handlinger",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "Feil under opplasting av fil: {{error}}",
|
||||
"Evaluations": "Vurderinger",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "API-nøkkel for Exa",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Eksempel: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Eksempel: ALL",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Kan ikke opprette en API-nøkkel.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Kan ikke hente modeller",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Kan ikke lese utklippstavlens innhold",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Navn på gruppe",
|
||||
"Group updated successfully": "Gruppe oppdatert",
|
||||
"Groups": "Grupper",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Haptisk tilbakemelding",
|
||||
"Hello, {{name}}": "Hei, {{name}}!",
|
||||
"Help": "Hjelp",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Ugyldig etikett",
|
||||
"is typing...": "Skriver...",
|
||||
"Italic": "",
|
||||
"January": "januar",
|
||||
"Jina API Key": "API-nøkkel for Jina",
|
||||
"join our Discord for help.": "bli med i Discord-fellesskapet vårt for å få hjelp.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "mars",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "Maks antall opplastinger",
|
||||
"Max Upload Size": "Maks størrelse på opplasting",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "API-nøekkel for Mojeek Search",
|
||||
"more": "mer",
|
||||
"More": "Mer",
|
||||
"My Notes": "",
|
||||
"Name": "Navn",
|
||||
"Name your knowledge base": "Gi kunnskapsbasen et navn",
|
||||
"Native": "Opprinnelig",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "eller",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Organisere brukerne dine",
|
||||
"Other": "Annet",
|
||||
"OUTPUT": "UTDATA",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Søk etter funksjoner",
|
||||
"Search Knowledge": "Søke etter kunnskap",
|
||||
"Search Models": "Søk etter modeller",
|
||||
"Search Notes": "",
|
||||
"Search options": "Søk etter alternativer",
|
||||
"Search Prompts": "Søk etter ledetekster",
|
||||
"Search Result Count": "Antall søkeresultater",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Stoppsekvens",
|
||||
"Stream Chat Response": "Strømme chat-svar",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "STT-modell",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "Snakk med modellen",
|
||||
"Tap to interrupt": "Trykk for å avbryte",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "Oppgaver",
|
||||
"Tavily API Key": "API-nøkkel for Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Opphev arkiveringen av alle",
|
||||
"Unarchive All Archived Chats": "Opphev arkiveringen av alle arkiverte chatter",
|
||||
"Unarchive Chat": "Opphev arkivering av chat",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "Lås opp mysterier",
|
||||
"Unpin": "Løsne",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(bv. `sh webui.sh --api`)",
|
||||
"(latest)": "(nieuwste)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ modellen }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} verborgen regels",
|
||||
"{{COUNT}} Replies": "{{COUNT}} antwoorden",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}}'s chats",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Backend verplicht",
|
||||
"*Prompt node ID(s) are required for image generation": "*Prompt node ID('s) zijn vereist voor het genereren van afbeeldingen",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Beheerders hebben altijd toegang tot alle gereedschappen; gebruikers moeten gereedschap toegewezen krijgen per model in de werkruimte.",
|
||||
"Advanced Parameters": "Geavanceerde parameters",
|
||||
"Advanced Params": "Geavanceerde params",
|
||||
"AI": "",
|
||||
"All": "Alle",
|
||||
"All Documents": "Alle documenten",
|
||||
"All models deleted successfully": "Alle modellen zijn succesvol verwijderd",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Bing Search V7 Endpoint",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 Subscription Key",
|
||||
"Bocha Search API Key": "Bocha Search API-sleutel",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Versterken of bestraffen van specifieke tokens voor beperkte reacties. Biaswaarden worden geklemd tussen -100 en 100 (inclusief). (Standaard: none)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Brave Search API-sleutel",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Op {{name}}",
|
||||
"Bypass Embedding and Retrieval": "Embedding en ophalen omzeilen ",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Code uitvoeren",
|
||||
"Code Execution": "Code-uitvoer",
|
||||
"Code Execution Engine": "Code-uitvoer engine",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Kopieer laatste codeblok",
|
||||
"Copy last response": "Kopieer laatste antwoord",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Kopieer link",
|
||||
"Copy to clipboard": "Kopieer naar klembord",
|
||||
"Copying to clipboard was successful!": "Kopiëren naar klembord was succesvol!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Database",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "December",
|
||||
"Default": "Standaard",
|
||||
"Default (Open AI)": "Standaard (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "Gereedschappen om verschillende bewerkingen uit te voeren",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "Error bij het uploaden van bestand: {{error}}",
|
||||
"Evaluations": "Beoordelingen",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Exa API-sleutel",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Voorbeeld: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Voorbeeld: ALL",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Kan API Key niet aanmaken.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Kan modellen niet ophalen",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Kan klembord inhoud niet lezen",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Groepsnaam",
|
||||
"Group updated successfully": "Groep succesvol bijgewerkt",
|
||||
"Groups": "Groepen",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Haptische feedback",
|
||||
"Hello, {{name}}": "Hallo, {{name}}",
|
||||
"Help": "Help",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Ongeldige Tag",
|
||||
"is typing...": "is aan het schrijven...",
|
||||
"Italic": "",
|
||||
"January": "Januari",
|
||||
"Jina API Key": "Jina API-sleutel",
|
||||
"join our Discord for help.": "join onze Discord voor hulp.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "Beheer gereedschapservers",
|
||||
"March": "Maart",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "Maximale Uploadhoeveelheid",
|
||||
"Max Upload Size": "Maximale Uploadgrootte",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Mojeek Search API-sleutel",
|
||||
"more": "Meer",
|
||||
"More": "Meer",
|
||||
"My Notes": "",
|
||||
"Name": "Naam",
|
||||
"Name your knowledge base": "Geef je kennisbasis een naam",
|
||||
"Native": "Native",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "of",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Orden je gebruikers",
|
||||
"Other": "Andere",
|
||||
"OUTPUT": "UITVOER",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Zoek naar functie",
|
||||
"Search Knowledge": "Zoek naar Kennis",
|
||||
"Search Models": "Modellen zoeken",
|
||||
"Search Notes": "",
|
||||
"Search options": "Opties zoeken",
|
||||
"Search Prompts": "Prompts zoeken",
|
||||
"Search Result Count": "Aantal zoekresultaten",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Stopsequentie",
|
||||
"Stream Chat Response": "Stream chat-antwoord",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "STT Model",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail free sampling wordt gebruikt om de impact van minder waarschijnlijke tokens uit de uitvoer te verminderen. Een hogere waarde (bijvoorbeeld 2,0) zal de impact meer verminderen, terwijl een waarde van 1,0 deze instelling uitschakelt.",
|
||||
"Talk to model": "Praat met model",
|
||||
"Tap to interrupt": "Tik om te onderbreken",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "Taken",
|
||||
"Tavily API Key": "Tavily API-sleutel",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Onarchiveer alles",
|
||||
"Unarchive All Archived Chats": "Onarchiveer alle gearchiveerde chats",
|
||||
"Unarchive Chat": "Onarchiveer chat",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "Ontsleutel mysteries",
|
||||
"Unpin": "Losmaken",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(ਉਦਾਹਰਣ ਦੇ ਤੌਰ ਤੇ `sh webui.sh --api`)",
|
||||
"(latest)": "(ਤਾਜ਼ਾ)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ ਮਾਡਲ }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}} ਦੀਆਂ ਗੱਲਾਂ",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} ਬੈਕਐਂਡ ਲੋੜੀਂਦਾ ਹੈ",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "ਉੱਚ ਸਤਰ ਦੇ ਪੈਰਾਮੀਟਰ",
|
||||
"Advanced Params": "ਐਡਵਾਂਸਡ ਪਰਮਜ਼",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "ਸਾਰੇ ਡਾਕੂਮੈਂਟ",
|
||||
"All models deleted successfully": "",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "ਬਹਾਦਰ ਖੋਜ API ਕੁੰਜੀ",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "ਆਖਰੀ ਕੋਡ ਬਲਾਕ ਨੂੰ ਕਾਪੀ ਕਰੋ",
|
||||
"Copy last response": "ਆਖਰੀ ਜਵਾਬ ਨੂੰ ਕਾਪੀ ਕਰੋ",
|
||||
"Copy link": "",
|
||||
"Copy Link": "ਲਿੰਕ ਕਾਪੀ ਕਰੋ",
|
||||
"Copy to clipboard": "",
|
||||
"Copying to clipboard was successful!": "ਕਲਿੱਪਬੋਰਡ 'ਤੇ ਕਾਪੀ ਕਰਨਾ ਸਫਲ ਰਿਹਾ!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "ਡਾਟਾਬੇਸ",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "ਦਸੰਬਰ",
|
||||
"Default": "ਮੂਲ",
|
||||
"Default (Open AI)": "",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "API ਕੁੰਜੀ ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ।",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "ਕਲਿੱਪਬੋਰਡ ਸਮੱਗਰੀ ਪੜ੍ਹਣ ਵਿੱਚ ਅਸਫਲ",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "",
|
||||
"Hello, {{name}}": "ਸਤ ਸ੍ਰੀ ਅਕਾਲ, {{name}}",
|
||||
"Help": "ਮਦਦ",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "ਗਲਤ ਟੈਗ",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "ਜਨਵਰੀ",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "ਮਦਦ ਲਈ ਸਾਡੇ ਡਿਸਕੋਰਡ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਵੋ।",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "ਮਾਰਚ",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "",
|
||||
"Max Upload Size": "",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "ਹੋਰ",
|
||||
"My Notes": "",
|
||||
"Name": "ਨਾਮ",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "ਜਾਂ",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "ਹੋਰ",
|
||||
"OUTPUT": "",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "",
|
||||
"Search Knowledge": "",
|
||||
"Search Models": "ਖੋਜ ਮਾਡਲ",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "ਪ੍ਰੰਪਟ ਖੋਜੋ",
|
||||
"Search Result Count": "ਖੋਜ ਨਤੀਜੇ ਦੀ ਗਿਣਤੀ",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "ਰੋਕੋ ਕ੍ਰਮ",
|
||||
"Stream Chat Response": "",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(np. `sh webui.sh --api`)",
|
||||
"(latest)": "(najnowszy)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ modele }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} odpowiedzi",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "Czaty użytkownika {{user}}",
|
||||
"{{webUIName}} Backend Required": "Backend dla {{webUIName}} jest wymagany",
|
||||
"*Prompt node ID(s) are required for image generation": "Wymagane są identyfikatory węzłów wyzwalających do generowania obrazów.",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorzy mają dostęp do wszystkich narzędzi przez cały czas; użytkownicy muszą mieć przydzielone narzędzia dla każdego modelu w przestrzeni roboczej.",
|
||||
"Advanced Parameters": "Zaawansowane ustawienia",
|
||||
"Advanced Params": "Zaawansowane ustawienia",
|
||||
"AI": "",
|
||||
"All": "Wszystkie",
|
||||
"All Documents": "Wszystkie dokumenty",
|
||||
"All models deleted successfully": "Wszystkie modele zostały usunięte pomyślnie.",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Wyszukiwarka Bing V7 Endpoint",
|
||||
"Bing Search V7 Subscription Key": "Klucz subskrypcji Wyszukiwarki Bing V7",
|
||||
"Bocha Search API Key": "Klucz API Bocha Search",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Klucz API wyszukiwania Brave",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Przez {{name}}",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Wykonanie kodu",
|
||||
"Code Execution": "Wykonanie kodu",
|
||||
"Code Execution Engine": "Silnik wykonawczy kodu",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "Skopiuj sformatowany tekst",
|
||||
"Copy last code block": "Skopiuj ostatni fragment kodu",
|
||||
"Copy last response": "Skopiuj ostatnią wypowiedź",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Skopiuj link",
|
||||
"Copy to clipboard": "Wklej do schowka",
|
||||
"Copying to clipboard was successful!": "Kopiowanie do schowka zakończyło się sukcesem!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Baza danych",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Grudzień",
|
||||
"Default": "Domyślny",
|
||||
"Default (Open AI)": "Domyślny (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "np. Narzędzia do wykonywania różnych operacji",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "Błąd podczas przesyłania pliku: {{error}}",
|
||||
"Evaluations": "Oceny",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Klucz API Exa",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Przykład: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Przykład: ALL",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Nie udało się wygenerować klucza API.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Nie udało się pobrać modeli",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Nie udało się odczytać zawartości schowka",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Nazwa grupy",
|
||||
"Group updated successfully": "Grupa zaktualizowana pomyślnie",
|
||||
"Groups": "Grupy",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Haptyczne sprzężenie zwrotne",
|
||||
"Hello, {{name}}": "Witaj, {{name}}",
|
||||
"Help": "Pomoc",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Nieprawidłowy tag",
|
||||
"is typing...": "Pisanie...",
|
||||
"Italic": "",
|
||||
"January": "Styczeń",
|
||||
"Jina API Key": "Klucz API Jiny",
|
||||
"join our Discord for help.": "Dołącz do naszego Discorda, aby uzyskać pomoc.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "Marzec",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "Maksymalna liczba przesyłanych plików",
|
||||
"Max Upload Size": "Maksymalny rozmiar przesyłanego pliku",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Klucz API Mojeek Search",
|
||||
"more": "więcej",
|
||||
"More": "Więcej",
|
||||
"My Notes": "",
|
||||
"Name": "Nazwa",
|
||||
"Name your knowledge base": "Nazwij swoją bazę wiedzy",
|
||||
"Native": "Rodzimy",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "lub",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Zorganizuj swoich użytkowników",
|
||||
"Other": "Pozostałe",
|
||||
"OUTPUT": "WYNIKI",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Funkcje wyszukiwania",
|
||||
"Search Knowledge": "Przeszukaj wiedzę",
|
||||
"Search Models": "Wyszukiwanie modeli",
|
||||
"Search Notes": "",
|
||||
"Search options": "Opcje wyszukiwania",
|
||||
"Search Prompts": "Szukaj promptów",
|
||||
"Search Result Count": "Liczba wyników wyszukiwania",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Zatrzymaj sekwencję",
|
||||
"Stream Chat Response": "Strumieniowanie odpowiedzi z czatu",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "Model STT",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "Kliknij, aby przerwać",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "Zadania",
|
||||
"Tavily API Key": "Klucz API Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Odarchiwizuj wszystko",
|
||||
"Unarchive All Archived Chats": "Odarchiwizuj wszystkie zarchiwizowane rozmowy",
|
||||
"Unarchive Chat": "Odarchiwizuj czat",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "Rozwiązywanie zagadek",
|
||||
"Unpin": "Odpiąć",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(por exemplo, `sh webui.sh --api`)",
|
||||
"(latest)": "(último)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "Chats de {{user}}",
|
||||
"{{webUIName}} Backend Required": "Backend {{webUIName}} necessário",
|
||||
"*Prompt node ID(s) are required for image generation": "*Prompt node ID(s) são obrigatórios para gerar imagens",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Os admins têm acesso a todas as ferramentas o tempo todo; os usuários precisam de ferramentas atribuídas, por modelo, no workspace.",
|
||||
"Advanced Parameters": "Parâmetros Avançados",
|
||||
"Advanced Params": "Parâmetros Avançados",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "Todos os Documentos",
|
||||
"All models deleted successfully": "Todos os modelos foram excluídos com sucesso",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Chave API do Brave Search",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Por {{name}}",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Execução de código",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Copiar último bloco de código",
|
||||
"Copy last response": "Copiar última resposta",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Copiar Link",
|
||||
"Copy to clipboard": "Copiar para a área de transferência",
|
||||
"Copying to clipboard was successful!": "Cópia para a área de transferência bem-sucedida!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Banco de Dados",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Dezembro",
|
||||
"Default": "Padrão",
|
||||
"Default (Open AI)": "Padrão (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "Exemplo: Ferramentas para executar operações diversas",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Avaliações",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Exemplo: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Exemplo: ALL",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Falha ao criar a Chave API.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Nome do Grupo",
|
||||
"Group updated successfully": "Grupo atualizado com sucesso",
|
||||
"Groups": "Grupos",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "",
|
||||
"Hello, {{name}}": "Olá, {{name}}",
|
||||
"Help": "Ajuda",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Tag Inválida",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "Janeiro",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "junte-se ao nosso Discord para ajudar.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "Março",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "Quantidade máxima de anexos",
|
||||
"Max Upload Size": "Tamanho máximo do arquivo",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Chave de API Mojeel Search",
|
||||
"more": "mais",
|
||||
"More": "Mais",
|
||||
"My Notes": "",
|
||||
"Name": "Nome",
|
||||
"Name your knowledge base": "Nome da sua base de conhecimento",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "ou",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Organizar seus usuários",
|
||||
"Other": "Outro",
|
||||
"OUTPUT": "SAÍDA",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Pesquisar Funções",
|
||||
"Search Knowledge": "Pesquisar Conhecimento",
|
||||
"Search Models": "Pesquisar Modelos",
|
||||
"Search Notes": "",
|
||||
"Search options": "Opções de pesquisa",
|
||||
"Search Prompts": "Prompts de Pesquisa",
|
||||
"Search Result Count": "Contagem de Resultados da Pesquisa",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Sequência de Parada",
|
||||
"Stream Chat Response": "Stream Resposta do Chat",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "Modelo STT",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "Toque para interromper",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "Chave da API Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Desarquivar tudo",
|
||||
"Unarchive All Archived Chats": "Desarquivar Todos os Chats Arquivados",
|
||||
"Unarchive Chat": "Desarquivar Chat",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "Desvendar mistérios",
|
||||
"Unpin": "Desfixar",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(por exemplo, `sh webui.sh --api`)",
|
||||
"(latest)": "(mais recente)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ modelos }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}}'s Chats",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Backend Necessário",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "Parâmetros Avançados",
|
||||
"Advanced Params": "Params Avançados",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "Todos os Documentos",
|
||||
"All models deleted successfully": "",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Chave da API de Pesquisa Brave",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Copiar último bloco de código",
|
||||
"Copy last response": "Copiar última resposta",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Copiar link",
|
||||
"Copy to clipboard": "",
|
||||
"Copying to clipboard was successful!": "Cópia para a área de transferência bem-sucedida!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Base de dados",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Dezembro",
|
||||
"Default": "Padrão",
|
||||
"Default (Open AI)": "",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Falha ao criar a Chave da API.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "",
|
||||
"Hello, {{name}}": "Olá, {{name}}",
|
||||
"Help": "Ajuda",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Etiqueta Inválida",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "Janeiro",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "junte-se ao nosso Discord para obter ajuda.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "Março",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "",
|
||||
"Max Upload Size": "",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Mais",
|
||||
"My Notes": "",
|
||||
"Name": "Nome",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "ou",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Outro",
|
||||
"OUTPUT": "",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "",
|
||||
"Search Knowledge": "",
|
||||
"Search Models": "Modelos de pesquisa",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "Pesquisar Prompts",
|
||||
"Search Result Count": "Contagem de resultados da pesquisa",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Sequência de Paragem",
|
||||
"Stream Chat Response": "",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "Modelo STT",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(de ex. `sh webui.sh --api`)",
|
||||
"(latest)": "(ultimul)",
|
||||
"(leave blank for to use commercial endpoint)": "(lăsați necompletat pentru a folosi endpoint-ul comercial)",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ modele }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "Conversațiile lui {{user}}",
|
||||
"{{webUIName}} Backend Required": "Este necesar backend-ul {{webUIName}}",
|
||||
"*Prompt node ID(s) are required for image generation": "*Sunt necesare ID-urile nodurilor de solicitare pentru generarea imaginii*",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorii au acces la toate instrumentele în orice moment; utilizatorii au nevoie de instrumente asignate pe model în spațiul de lucru.",
|
||||
"Advanced Parameters": "Parametri avansați",
|
||||
"Advanced Params": "Parametri avansați",
|
||||
"AI": "",
|
||||
"All": "Toate",
|
||||
"All Documents": "Toate documentele",
|
||||
"All models deleted successfully": "Toate modelele au fost șterse cu succes",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Cheie API Brave Search",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Executarea codului",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "Motor de executare cod",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "Copiază text formatat",
|
||||
"Copy last code block": "Copiază ultimul bloc de cod",
|
||||
"Copy last response": "Copiază ultimul răspuns",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Copiază Link",
|
||||
"Copy to clipboard": "Copiază în clipboard",
|
||||
"Copying to clipboard was successful!": "Copierea în clipboard a fost realizată cu succes!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Bază de Date",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Decembrie",
|
||||
"Default": "Implicit",
|
||||
"Default (Open AI)": "Implicit (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Evaluări",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Crearea cheii API a eșuat.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Citirea conținutului clipboard-ului a eșuat",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Feedback haptic",
|
||||
"Hello, {{name}}": "Salut, {{name}}",
|
||||
"Help": "Ajutor",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Etichetă Invalidă",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "Ianuarie",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "alătură-te Discord-ului nostru pentru ajutor.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "Martie",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "Număr maxim de încărcări",
|
||||
"Max Upload Size": "Dimensiune Maximă de Încărcare",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "mai mult",
|
||||
"More": "Mai multe",
|
||||
"My Notes": "",
|
||||
"Name": "Nume",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "sau",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Altele",
|
||||
"OUTPUT": "Output rezultatat",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Caută Funcții",
|
||||
"Search Knowledge": "Căutare Cunoștințe",
|
||||
"Search Models": "Caută Modele",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "Caută Prompturi",
|
||||
"Search Result Count": "Număr Rezultate Căutare",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Oprește Secvența",
|
||||
"Stream Chat Response": "Răspuns Stream Chat",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "Model STT",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "Apasă pentru a întrerupe",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "Cheie API Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Dezarhivează tot",
|
||||
"Unarchive All Archived Chats": "Dezarhivează toate conversațiile arhivate",
|
||||
"Unarchive Chat": "Dezarhivează conversația",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "Anulează Fixarea",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(например, `sh webui.sh --api`)",
|
||||
"(latest)": "(последняя)",
|
||||
"(leave blank for to use commercial endpoint)": "(оставьте пустым поле для использования коммерческой конечной точки)",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ модели }}",
|
||||
"{{COUNT}} Available Tools": "{{COUNT}} доступных инструментов",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} скрытых строк",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Ответов",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "Чаты {{user}}'а",
|
||||
"{{webUIName}} Backend Required": "Необходимо подключение к серверу {{webUIName}}",
|
||||
"*Prompt node ID(s) are required for image generation": "ID узлов промптов обязательны для генерации изображения",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Администраторы всегда имеют доступ ко всем инструментам; пользователям нужны инструменты, назначенные для каждой модели в рабочем пространстве.",
|
||||
"Advanced Parameters": "Расширенные параметры",
|
||||
"Advanced Params": "Расширенные параметры",
|
||||
"AI": "",
|
||||
"All": "Все",
|
||||
"All Documents": "Все документы",
|
||||
"All models deleted successfully": "Все модели успешно удалены",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Энд-поинт поиска Bing V7",
|
||||
"Bing Search V7 Subscription Key": "Ключ API Bing Search V7",
|
||||
"Bocha Search API Key": "Ключ API поиска Bocha",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Увеличение или отмена определенных токенов за ограниченные ответы. Значения смещения будут находиться в диапазоне от -100 до 100 (включительно). (По умолчанию: ничего)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Для Docling должны быть указаны как механизм распознавания текста, так и язык(и), или оба должны быть оставлены пустыми.",
|
||||
"Brave Search API Key": "Ключ API поиска Brave",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "От {{name}}",
|
||||
"Bypass Embedding and Retrieval": "Обход встраивания и извлечения данных",
|
||||
"Bypass Web Loader": "Обход веб-загрузчика",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "Закрыть окно",
|
||||
"Close settings modal": "Закрыть окно настроек",
|
||||
"Code Block": "",
|
||||
"Code execution": "Исполнение кода",
|
||||
"Code Execution": "Исполнение кода",
|
||||
"Code Execution Engine": "Механизм исполнения кода",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "Копировать форматированный текст",
|
||||
"Copy last code block": "Копировать последний блок кода",
|
||||
"Copy last response": "Копировать последний ответ",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Копировать ссылку",
|
||||
"Copy to clipboard": "Скопировать в буфер обмена",
|
||||
"Copying to clipboard was successful!": "Копирование в буфер обмена прошло успешно!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "База данных",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "Требуется API-ключ Datalab Marker.",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Декабрь",
|
||||
"Default": "По умолчанию",
|
||||
"Default (Open AI)": "По умолчанию (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "например, pdf, docx, txt",
|
||||
"e.g. Tools for performing various operations": "например, инструменты для выполнения различных операций",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "например, 3, 4, 5 (оставьте поле пустым по умолчанию)",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "например, en-US,ja-JP (оставьте поле пустым для автоматического определения)",
|
||||
"e.g., westus (leave blank for eastus)": "например, западный (оставьте пустым для восточного)",
|
||||
"e.g.) en,fr,de": "например) en,fr,de",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "Ошибка загрузки модели: {{error}}",
|
||||
"Error uploading file: {{error}}": "Ошибка загрузки файла: {{error}}",
|
||||
"Evaluations": "Оценки",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Ключ API для Exa",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Например: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Например: ALL",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "Не удалось скопировать ссылку",
|
||||
"Failed to create API Key.": "Не удалось создать ключ API.",
|
||||
"Failed to delete note": "Не удалось удалить заметку",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Не удалось получить модели",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "Не удалось загрузить содержимое файла.",
|
||||
"Failed to read clipboard contents": "Не удалось прочитать содержимое буфера обмена",
|
||||
"Failed to save connections": "Не удалось сохранить подключения",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Название группы",
|
||||
"Group updated successfully": "Группа успешно обновлена",
|
||||
"Groups": "Группы",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Тактильная обратная связь",
|
||||
"Hello, {{name}}": "Привет, {{name}}",
|
||||
"Help": "Помощь",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "Недопустимый файл JSON",
|
||||
"Invalid Tag": "Недопустимый тег",
|
||||
"is typing...": "печатает...",
|
||||
"Italic": "",
|
||||
"January": "Январь",
|
||||
"Jina API Key": "Ключ API для Jina",
|
||||
"join our Discord for help.": "присоединяйтесь к нашему Discord для помощи.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "Управление серверами инструментов",
|
||||
"March": "Март",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "Максимальное количество динамиков",
|
||||
"Max Upload Count": "Максимальное количество загрузок",
|
||||
"Max Upload Size": "Максимальный размер загрузок",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Ключ API для поиска Mojeek",
|
||||
"more": "больше",
|
||||
"More": "Больше",
|
||||
"My Notes": "Мои заметки",
|
||||
"Name": "Имя",
|
||||
"Name your knowledge base": "Назовите свою базу знаний",
|
||||
"Native": "Нативно",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "URL-адрес или путь к файлу openapi.json",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Параметры для запуска локальной модели vision-language в описании изображения. Параметры относятся к модели, размещенной на Hugging Face. Этот параметр является взаимоисключающим с picture_description_api.",
|
||||
"or": "или",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Организуйте своих пользователей",
|
||||
"Other": "Прочее",
|
||||
"OUTPUT": "",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Поиск функций",
|
||||
"Search Knowledge": "Поиск знания",
|
||||
"Search Models": "Поиск моделей",
|
||||
"Search Notes": "",
|
||||
"Search options": "Параметры поиска",
|
||||
"Search Prompts": "Поиск промптов",
|
||||
"Search Result Count": "Количество результатов поиска",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "",
|
||||
"Stream Chat Response": "Потоковый вывод ответа",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "Удалять существующие OCR",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Удалять существующий текст OCR из PDF и перезапустить OCR. Игнорируется если Принудительное OCR включено. По умолчанию установлено значение Выкл.",
|
||||
"STT Model": "Модель распознавания речи",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Выборка без хвостов используется для уменьшения влияния менее вероятных токенов на выходные данные. Более высокое значение (например, 2.0) еще больше уменьшит влияние, в то время как значение 1.0 отключает эту настройку.",
|
||||
"Talk to model": "Поговорить с моделью",
|
||||
"Tap to interrupt": "Нажмите, чтобы прервать",
|
||||
"Task List": "",
|
||||
"Task Model": "Модель задачи",
|
||||
"Tasks": "Задачи",
|
||||
"Tavily API Key": "Ключ API Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Разархивировать ВСЁ",
|
||||
"Unarchive All Archived Chats": "Разархивировать ВСЕ Заархивированные чаты",
|
||||
"Unarchive Chat": "Разархивировать чат",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "Выгрузка из памяти {{FROM_NOW}}",
|
||||
"Unlock mysteries": "Разблокируйте тайны",
|
||||
"Unpin": "Открепить",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(napr. `sh webui.sh --api`)",
|
||||
"(latest)": "Najnovšie",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}}'s konverzácie",
|
||||
"{{webUIName}} Backend Required": "Vyžaduje sa {{webUIName}} Backend",
|
||||
"*Prompt node ID(s) are required for image generation": "*Sú potrebné IDs pre prompt node na generovanie obrázkov",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administrátori majú prístup ku všetkým nástrojom kedykoľvek; užívatelia potrebujú mať nástroje priradené podľa modelu v workspace.",
|
||||
"Advanced Parameters": "Pokročilé parametre",
|
||||
"Advanced Params": "Pokročilé parametre",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "Všetky dokumenty",
|
||||
"All models deleted successfully": "Všetky modely úspešne odstránené",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "API kľúč pre Brave Search",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Vykonávanie kódu",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Skopírujte posledný blok kódu",
|
||||
"Copy last response": "Skopírujte poslednú odpoveď",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Kopírovať odkaz",
|
||||
"Copy to clipboard": "Kopírovať do schránky",
|
||||
"Copying to clipboard was successful!": "Kopírovanie do schránky bolo úspešné!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Databáza",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "December",
|
||||
"Default": "Predvolené hodnoty alebo nastavenia.",
|
||||
"Default (Open AI)": "Predvolené (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Hodnotenia",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Nepodarilo sa vytvoriť API kľúč.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Nepodarilo sa prečítať obsah schránky",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Haptická spätná väzba",
|
||||
"Hello, {{name}}": "Ahoj, {{name}}",
|
||||
"Help": "Pomoc",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Neplatný tag",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "Január",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "pripojte sa k nášmu Discordu pre pomoc.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "Marec",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "Maximálny počet nahraní",
|
||||
"Max Upload Size": "Maximálna veľkosť nahrávania",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "viac",
|
||||
"More": "Viac",
|
||||
"My Notes": "",
|
||||
"Name": "Meno",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "alebo",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Iné",
|
||||
"OUTPUT": "VÝSTUP",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Vyhľadávacie funkcie",
|
||||
"Search Knowledge": "Vyhľadávanie znalostí",
|
||||
"Search Models": "Vyhľadávacie modely",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "Vyhľadávacie dotazy",
|
||||
"Search Result Count": "Počet výsledkov hľadania",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Sekvencia zastavenia",
|
||||
"Stream Chat Response": "Odozva chatu Stream",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "Model rozpoznávania reči na text (STT)",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "Klepnite na prerušenie",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "Kľúč API pre Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Odzálohovať všetky",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "Odopnúť",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(нпр. `sh webui.sh --api`)",
|
||||
"(latest)": "(најновије)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ модели }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} одговора",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "Ћаскања корисника {{user}}",
|
||||
"{{webUIName}} Backend Required": "Захтева се {{webUIName}} позадинац",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Админи имају приступ свим алатима у сваком тренутку, корисницима је потребно доделити алате по моделу у радном простору",
|
||||
"Advanced Parameters": "Напредни параметри",
|
||||
"Advanced Params": "Напредни парамови",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "Сви документи",
|
||||
"All models deleted successfully": "Сви модели су успешно обрисани",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Апи кључ за храбру претрагу",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Од {{name}}",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Извршавање кода",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Копирај последњи блок кода",
|
||||
"Copy last response": "Копирај последњи одговор",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Копирај везу",
|
||||
"Copy to clipboard": "Копирај у оставу",
|
||||
"Copying to clipboard was successful!": "Успешно копирање у оставу!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "База података",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Децембар",
|
||||
"Default": "Подразумевано",
|
||||
"Default (Open AI)": "Подразумевано (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "Процењивања",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Неуспешно стварање API кључа.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Неуспешно читање садржаја оставе",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Назив групе",
|
||||
"Group updated successfully": "Група измењена успешно",
|
||||
"Groups": "Групе",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Вибрација као одговор",
|
||||
"Hello, {{name}}": "Здраво, {{name}}",
|
||||
"Help": "Помоћ",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Неисправна ознака",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "Јануар",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "придружите се нашем Дискорду за помоћ.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "Март",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "",
|
||||
"Max Upload Size": "",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "више",
|
||||
"More": "Више",
|
||||
"My Notes": "",
|
||||
"Name": "Име",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "или",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Организујте ваше кориснике",
|
||||
"Other": "Остало",
|
||||
"OUTPUT": "ИЗЛАЗ",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Претражи функције",
|
||||
"Search Knowledge": "Претражи знање",
|
||||
"Search Models": "Модели претраге",
|
||||
"Search Notes": "",
|
||||
"Search options": "Опције претраге",
|
||||
"Search Prompts": "Претражи упите",
|
||||
"Search Result Count": "Број резултата претраге",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Секвенца заустављања",
|
||||
"Stream Chat Response": "",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "STT модел",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Деархивирај све",
|
||||
"Unarchive All Archived Chats": "Деархивирај све архиве",
|
||||
"Unarchive Chat": "Деархивирај ћаскање",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "Реши мистерије",
|
||||
"Unpin": "Откачи",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(t.ex. `sh webui.sh --api`)",
|
||||
"(latest)": "(senaste)",
|
||||
"(leave blank for to use commercial endpoint)": "(lämna tomt för att använda kommersiell endpoint)",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "{{COUNT}} Tillgängliga verktyg",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} dolda rader",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Svar",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}}s Chattar",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Backend krävs",
|
||||
"*Prompt node ID(s) are required for image generation": "*Prompt node ID(s) krävs för bildgenerering",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratörer har tillgång till alla verktyg hela tiden, medan användare behöver verktyg som tilldelas per modell i arbetsytan.",
|
||||
"Advanced Parameters": "Avancerade parametrar",
|
||||
"Advanced Params": "Avancerade parametrar",
|
||||
"AI": "",
|
||||
"All": "Alla",
|
||||
"All Documents": "Alla dokument",
|
||||
"All models deleted successfully": "Alla modeller har raderats framgångsrikt",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Bing Search V7 Endpoint",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 Prenumerationsnyckel",
|
||||
"Bocha Search API Key": "Bocha Search API-nyckel",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Öka eller straffa specifika tokens för begränsade svar. Biasvärden kommer att klämmas fast mellan -100 och 100 (inklusive). (Standard: ingen)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Både Docling OCR Engine och Language(s) måste anges eller lämnas tomma.",
|
||||
"Brave Search API Key": "API-nyckel för Brave Search",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Av {{name}}",
|
||||
"Bypass Embedding and Retrieval": "Kringgå inbäddning och hämtning",
|
||||
"Bypass Web Loader": "Kringgå webbläsare",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "Stäng modal",
|
||||
"Close settings modal": "Stäng inställningsmodal",
|
||||
"Code Block": "",
|
||||
"Code execution": "Kodkörning",
|
||||
"Code Execution": "Kodkörning",
|
||||
"Code Execution Engine": "Motor för kodkörning",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "Kopiera formaterad text",
|
||||
"Copy last code block": "Kopiera sista kodblock",
|
||||
"Copy last response": "Kopiera sista svar",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Kopiera länk",
|
||||
"Copy to clipboard": "Kopiera till urklipp",
|
||||
"Copying to clipboard was successful!": "Kopiering till urklipp lyckades!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Databas",
|
||||
"Datalab Marker API": "Datalab Marker API",
|
||||
"Datalab Marker API Key required.": "Datalab Marker API-nyckel krävs.",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "december",
|
||||
"Default": "Standard",
|
||||
"Default (Open AI)": "Standard (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "t.ex. pdf, docx, txt",
|
||||
"e.g. Tools for performing various operations": "t.ex. Verktyg för att utföra olika operationer",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "t.ex., 3, 4, 5 (lämna tomt för standard)",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "t.ex., audio/wav,audio/mpeg (lämna tomt för standard)",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "t.ex., en-US,ja-JP (lämna tomt för automatisk detektering)",
|
||||
"e.g., westus (leave blank for eastus)": "t.ex., westus (lämna tomt för eastus)",
|
||||
"e.g.) en,fr,de": "t.ex.) en,fr,de",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "Fel vid avlastning av modell: {{error}}",
|
||||
"Error uploading file: {{error}}": "Fel vid uppladdning av fil: {{error}}",
|
||||
"Evaluations": "Utvärderingar",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Exa API-nyckel",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Exempel: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Exempel: ALLA",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "Misslyckades med att kopiera länk",
|
||||
"Failed to create API Key.": "Misslyckades med att skapa API-nyckel.",
|
||||
"Failed to delete note": "Misslyckades med att ta bort anteckning",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Misslyckades med att hämta modeller",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "Misslyckades med att läsa in filinnehåll.",
|
||||
"Failed to read clipboard contents": "Misslyckades med att läsa urklippsinnehåll",
|
||||
"Failed to save connections": "Misslyckades med att spara anslutningar",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Gruppnamn",
|
||||
"Group updated successfully": "Gruppen har uppdaterats",
|
||||
"Groups": "Grupper",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Haptisk återkoppling",
|
||||
"Hello, {{name}}": "Hej, {{name}}",
|
||||
"Help": "Hjälp",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "Ogiltig JSON-fil",
|
||||
"Invalid Tag": "Ogiltig tagg",
|
||||
"is typing...": "skriver...",
|
||||
"Italic": "",
|
||||
"January": "januari",
|
||||
"Jina API Key": "Jina API-nyckel",
|
||||
"join our Discord for help.": "gå med i vår Discord för hjälp.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "Hantera verktygsservrar",
|
||||
"March": "mars",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "Max antal talare",
|
||||
"Max Upload Count": "Max antal uppladdningar",
|
||||
"Max Upload Size": "Max uppladdningsstorlek",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Mojeek Sök API-nyckel",
|
||||
"more": "mer",
|
||||
"More": "Mer",
|
||||
"My Notes": "Mina anteckningar",
|
||||
"Name": "Namn",
|
||||
"Name your knowledge base": "Namnge din kunskapsbas",
|
||||
"Native": "Inbyggd",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "openapi.json URL eller sökväg",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Alternativ för att köra en lokal syn-språkmodell i bildbeskrivningen. Parametrarna hänvisar till en modell som finns på Hugging Face. Denna parameter utesluter picture_description_api.",
|
||||
"or": "eller",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Organisera dina användare",
|
||||
"Other": "Andra",
|
||||
"OUTPUT": "UTDATA",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Sök funktioner",
|
||||
"Search Knowledge": "Sök kunskap",
|
||||
"Search Models": "Sök modeller",
|
||||
"Search Notes": "",
|
||||
"Search options": "Sökalternativ",
|
||||
"Search Prompts": "Sök instruktioner",
|
||||
"Search Result Count": "Antal sökresultat",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "Sluta generera",
|
||||
"Stop Sequence": "Stoppsekvens",
|
||||
"Stream Chat Response": "Strömma chattsvar",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "Ta bort befintlig OCR",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Ta bort befintlig OCR-text från PDF:en och kör OCR igen. Ignoreras om Force OCR är aktiverat. Standardvärdet är False.",
|
||||
"STT Model": "Tal-till-text-modell",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Svansfri sampling används för att minska effekten av mindre sannolika tokens från utdata. Ett högre värde (t.ex. 2,0) kommer att minska effekten mer, medan ett värde på 1,0 inaktiverar denna inställning.",
|
||||
"Talk to model": "Prata med modellen",
|
||||
"Tap to interrupt": "Tryck för att avbryta",
|
||||
"Task List": "",
|
||||
"Task Model": "Uppgiftsmodell",
|
||||
"Tasks": "Uppgifter",
|
||||
"Tavily API Key": "Tavily API-nyckel",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Avarkivera alla",
|
||||
"Unarchive All Archived Chats": "Avarkivera alla arkiverade chattar",
|
||||
"Unarchive Chat": "Avarkivera chatt",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "Avlastar {{FROM_NOW}}",
|
||||
"Unlock mysteries": "Lås upp mysterier",
|
||||
"Unpin": "Ta bort fästning",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(เช่น `sh webui.sh --api`)",
|
||||
"(latest)": "(ล่าสุด)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "การสนทนาของ {{user}}",
|
||||
"{{webUIName}} Backend Required": "ต้องการ Backend ของ {{webUIName}}",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "ผู้ดูแลระบบสามารถเข้าถึงเครื่องมือทั้งหมดได้ตลอดเวลา; ผู้ใช้ต้องการเครื่องมือที่กำหนดต่อโมเดลในพื้นที่ทำงาน",
|
||||
"Advanced Parameters": "พารามิเตอร์ขั้นสูง",
|
||||
"Advanced Params": "พารามิเตอร์ขั้นสูง",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "เอกสารทั้งหมด",
|
||||
"All models deleted successfully": "",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "คีย์ API ของ Brave Search",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "คัดลอกบล็อกโค้ดสุดท้าย",
|
||||
"Copy last response": "คัดลอกการตอบสนองล่าสุด",
|
||||
"Copy link": "",
|
||||
"Copy Link": "คัดลอกลิงก์",
|
||||
"Copy to clipboard": "",
|
||||
"Copying to clipboard was successful!": "คัดลอกไปยังคลิปบอร์ดสำเร็จแล้ว!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "ฐานข้อมูล",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "ธันวาคม",
|
||||
"Default": "ค่าเริ่มต้น",
|
||||
"Default (Open AI)": "",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "การประเมิน",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "สร้างคีย์ API ล้มเหลว",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "อ่านเนื้อหาคลิปบอร์ดล้มเหลว",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "ชื่อกลุ่ม",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "กลุ่ม",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "",
|
||||
"Hello, {{name}}": "สวัสดี, {{name}}",
|
||||
"Help": "ช่วยเหลือ",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "แท็กไม่ถูกต้อง",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "มกราคม",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "เข้าร่วม Discord ของเราเพื่อขอความช่วยเหลือ",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "มีนาคม",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "",
|
||||
"Max Upload Size": "",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "เพิ่มเติม",
|
||||
"My Notes": "",
|
||||
"Name": "ชื่อ",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "หรือ",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "อื่น ๆ",
|
||||
"OUTPUT": "",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "ค้นหาฟังก์ชัน",
|
||||
"Search Knowledge": "",
|
||||
"Search Models": "ค้นหาโมเดล",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "ค้นหาพรอมต์",
|
||||
"Search Result Count": "จำนวนผลลัพธ์การค้นหา",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "หยุดลำดับ",
|
||||
"Stream Chat Response": "",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "โมเดลแปลงเสียงเป็นข้อความ",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "แตะเพื่อขัดจังหวะ",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "คีย์ API ของ Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "ยกเลิกการปักหมุด",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(meselem, `sh webui.sh --api`)",
|
||||
"(latest)": "(iň soňky)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ modeller }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}}'iň Çatlary",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Backend Zerur",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "",
|
||||
"Advanced Parameters": "Ösen Parametrler",
|
||||
"Advanced Params": "Ösen Parametrler",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "Ähli Resminamalar",
|
||||
"All models deleted successfully": "",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Brave Gözleg API Açar",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Soňky kod blokyny göçür",
|
||||
"Copy last response": "Soňky jogaby göçür",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Baglanyşygy Göçür",
|
||||
"Copy to clipboard": "",
|
||||
"Copying to clipboard was successful!": "Buferine göçürmek üstünlikli boldy!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Mazada",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Dekabr",
|
||||
"Default": "Nokatlaýyn",
|
||||
"Default (Open AI)": "",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "",
|
||||
"Hello, {{name}}": "",
|
||||
"Help": "Kömek",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "Ýanwar",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "Mart",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "",
|
||||
"Max Upload Size": "",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "",
|
||||
"More": "Has köp",
|
||||
"My Notes": "",
|
||||
"Name": "Ady",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "Başga",
|
||||
"OUTPUT": "",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "",
|
||||
"Search Knowledge": "",
|
||||
"Search Models": "",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "",
|
||||
"Search Result Count": "",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "",
|
||||
"Stream Chat Response": "",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(örn. `sh webui.sh --api`)",
|
||||
"(latest)": "(en son)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Yanıt",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}}'ın Sohbetleri",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Arka-uç Gerekli",
|
||||
"*Prompt node ID(s) are required for image generation": "*Görüntü oluşturma için düğüm kimlikleri gereklidir",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Yöneticiler her zaman tüm araçlara erişebilir; kullanıcıların çalışma alanındaki model başına atanmış araçlara ihtiyacı vardır.",
|
||||
"Advanced Parameters": "Gelişmiş Parametreler",
|
||||
"Advanced Params": "Gelişmiş Parametreler",
|
||||
"AI": "",
|
||||
"All": "Tüm",
|
||||
"All Documents": "Tüm Belgeler",
|
||||
"All models deleted successfully": "Tüm modeller başarıyla silindi",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Bing Arama V7 Uç Noktası",
|
||||
"Bing Search V7 Subscription Key": "Bing Arama V7 Abonelik Anahtarı",
|
||||
"Bocha Search API Key": "Bocha Arama API Anahtarı",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Brave Search API Anahtarı",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "{{name}} Tarafından",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Kod yürütme",
|
||||
"Code Execution": "Kod Çalıştırma",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "Biçimlenirilmiş Metni Kopyala",
|
||||
"Copy last code block": "Son kod bloğunu kopyala",
|
||||
"Copy last response": "Son yanıtı kopyala",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Bağlantıyı Kopyala",
|
||||
"Copy to clipboard": "Panoya kopyala",
|
||||
"Copying to clipboard was successful!": "Panoya kopyalama başarılı!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Veritabanı",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Aralık",
|
||||
"Default": "Varsayılan",
|
||||
"Default (Open AI)": "Varsayılan (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": " örn.Çeşitli işlemleri gerçekleştirmek için araçlar",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "örn. 3, 4, 5 (öntanımlı değer için boş bırakın)",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "örn. en-US, ja-JP (otomatik tanıma için boş bırakın)",
|
||||
"e.g., westus (leave blank for eastus)": "ö",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "Dosya yüklenirken hata oluştu: {{error}}",
|
||||
"Evaluations": "Değerlendirmeler",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Exa API Anahtarı",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Örnek: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Örnek: ALL",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "API Anahtarı oluşturulamadı.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Pano içeriği okunamadı",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Grup Adı",
|
||||
"Group updated successfully": "Grup başarıyla güncellendi",
|
||||
"Groups": "Gruplar",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Dokunsal Geri Bildirim",
|
||||
"Hello, {{name}}": "Merhaba, {{name}}",
|
||||
"Help": "Yardım",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Geçersiz etiket",
|
||||
"is typing...": "yazıyor...",
|
||||
"Italic": "",
|
||||
"January": "Ocak",
|
||||
"Jina API Key": "Jina API Anahtarı",
|
||||
"join our Discord for help.": "yardım için Discord'umuza katılın.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "Araç Sunucularını Yönet",
|
||||
"March": "Mart",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "Maksimum Yükleme Sayısı",
|
||||
"Max Upload Size": "Maksimum Yükleme Boyutu",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Mojeek Search API Anahtarı",
|
||||
"more": "daha fazla",
|
||||
"More": "Daha Fazla",
|
||||
"My Notes": "Notlarım",
|
||||
"Name": "Ad",
|
||||
"Name your knowledge base": "Bilgi tabanınıza bir ad verin",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "veya",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Kullanıcılarınızı düzenleyin",
|
||||
"Other": "Diğer",
|
||||
"OUTPUT": "ÇIKTI",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Fonksiyonları Ara",
|
||||
"Search Knowledge": "Bilgi Ara",
|
||||
"Search Models": "Modelleri Ara",
|
||||
"Search Notes": "",
|
||||
"Search options": "Arama seçenekleri",
|
||||
"Search Prompts": "Prompt Ara",
|
||||
"Search Result Count": "Arama Sonucu Sayısı",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Diziyi Durdur",
|
||||
"Stream Chat Response": "Akış Sohbet Yanıtı",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "STT Modeli",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "Model ile konuş",
|
||||
"Tap to interrupt": "Durdurmak için dokunun",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "Görevler",
|
||||
"Tavily API Key": "Tavily API Anahtarı",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Tümünü Arşivden Çıkar",
|
||||
"Unarchive All Archived Chats": "Arşivlenmiş Tüm Sohbetleri Arşivden Çıkar",
|
||||
"Unarchive Chat": "Sohbeti Arşivden Çıkar",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "Sabitlemeyi Kaldır",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(مەسىلەن: `sh webui.sh --api`)",
|
||||
"(latest)": "(ئەڭ يېڭىسى)",
|
||||
"(leave blank for to use commercial endpoint)": "(تجارەتلىك ئۇلانمىنى ئىشلىتىش ئۈچۈن بوش قالدۇرۇڭ)",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "{{COUNT}} بار قوراللار",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} يوشۇرۇن قۇرلار",
|
||||
"{{COUNT}} Replies": "{{COUNT}} ئىنكاس",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}} نىڭ سۆھبەتلىرى",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} ئارقا سۇپا زۆرۈر",
|
||||
"*Prompt node ID(s) are required for image generation": "رەسىم ھاسىل قىلىش ئۈچۈن تۈرتكە نۇسخا ئۇچۇر ID(لىرى) زۆرۈر",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "باشقۇرغۇچىلارنىڭ ھەممىسى قوراللارنى تولۇق ئىشلىتىش ھوقۇقىغا ئىگە؛ ئىشلەتكۈچىلەرنىڭ ئىشخانىدا مودېلغا باغلانغان قوراللار بولۇشى كېرەك.",
|
||||
"Advanced Parameters": "ئالىي پارامېتىرلار",
|
||||
"Advanced Params": "ئالىي پارامېتىرلار",
|
||||
"AI": "",
|
||||
"All": "ھەممىسى",
|
||||
"All Documents": "ھەممە ھۆججەتلەر",
|
||||
"All models deleted successfully": "بارلىق مودېللار مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Bing Search V7 ئۇلانمىسى",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 ئەزا ئاچقۇچى",
|
||||
"Bocha Search API Key": "Bocha ئىزدەش API ئاچقۇچى",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "چەكلەنگەن ئىنكاسلار ئۈچۈن بەلگىلىك سۆزلەرگە ئالاھىدە ئۈنۈم قوشۇش ياكى جازالاش. ئېغىش قىممىتى 100- دىن 100 گىچە بولىدۇ (كۆرسىتىلگەن قىممەت). (كۆڭۈلدىكى: يوق)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Docling OCR ماتورى ۋە تىل(لار) تەمىنلىنىشى ياكى ئىككىلىسىمۇ بوش قالدۇرۇلۇشى كېرەك.",
|
||||
"Brave Search API Key": "Brave ئىزدەش API ئاچقۇچى",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "{{name}} تەرىپىدىن",
|
||||
"Bypass Embedding and Retrieval": "كىرگۈزۈش ۋە قايتۇرۇشتىن ئۆتۈپ كېتىش",
|
||||
"Bypass Web Loader": "تور يۈكلىگۈچتىن ئۆتۈپ كېتىش",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "مودالنى يېپىش",
|
||||
"Close settings modal": "تەڭشەك مودالىنى يېپىش",
|
||||
"Code Block": "",
|
||||
"Code execution": "كود ئىجرا قىلىش",
|
||||
"Code Execution": "كود ئىجرا قىلىش",
|
||||
"Code Execution Engine": "كود ئىجرا ماتورى",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "فورماتلانغان تېكستنى كۆچۈرۈش",
|
||||
"Copy last code block": "ئاخىرقى كود بۆلىكىنى كۆچۈرۈش",
|
||||
"Copy last response": "ئاخىرقى ئىنكاسنى كۆچۈرۈش",
|
||||
"Copy link": "",
|
||||
"Copy Link": "ئۇلانما كۆچۈرۈش",
|
||||
"Copy to clipboard": "چاپلاش تاختىسىغا كۆچۈرۈش",
|
||||
"Copying to clipboard was successful!": "چاپلاش تاختىسىغا كۆچۈرۈش مۇۋەپپەقىيەتلىك بولدى!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "ساندان",
|
||||
"Datalab Marker API": "Datalab Marker API",
|
||||
"Datalab Marker API Key required.": "Datalab Marker API ئاچقۇچى زۆرۈر.",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "دېكابىر",
|
||||
"Default": "كۆڭۈلدىكى",
|
||||
"Default (Open AI)": "كۆڭۈلدىكى (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "مەسىلەن: pdf, docx, txt",
|
||||
"e.g. Tools for performing various operations": "مەسىلەن: ھەر خىل مەشغۇلات قوراللىرى",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "مەسىلەن: 3، 4، 5 (كۆڭۈلدىكى ئۈچۈن بوش قالدۇرۇڭ)",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "مەسىلەن: audio/wav, audio/mpeg (كۆڭۈلدىكى ئۈچۈن بوش قالدۇرۇڭ)",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "مەسىلەن: en-US, ja-JP (ئاپتوماتىك بايقىتىش ئۈچۈن بوش قالدۇرۇڭ)",
|
||||
"e.g., westus (leave blank for eastus)": "مەسىلەن: westus (eastus ئۈچۈن بوش قالدۇرۇڭ)",
|
||||
"e.g.) en,fr,de": "مەسىلەن: en,fr,de",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "مودېل چىقىرىشتا خاتالىق: {{error}}",
|
||||
"Error uploading file: {{error}}": "ھۆججەت چىقىرىشتا خاتالىق: {{error}}",
|
||||
"Evaluations": "باھالاشلار",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Exa API ئاچقۇچى",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "مەسىلەن: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "مەسىلەن: ALL",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "ئۇلانما كۆچۈرۈش مەغلۇپ بولدى",
|
||||
"Failed to create API Key.": "API ئاچقۇچى قۇرۇش مەغلۇپ بولدى.",
|
||||
"Failed to delete note": "خاتىرە ئۆچۈرۈش مەغلۇپ بولدى",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "مودېللارنى ئېلىش مەغلۇپ بولدى",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "ھۆججەت مەزمۇنى يۈكلەش مەغلۇپ بولدى.",
|
||||
"Failed to read clipboard contents": "چاپلاش تاختىسى مەزمۇنىنى ئوقۇش مەغلۇپ بولدى",
|
||||
"Failed to save connections": "ئۇلىنىشلارنى ساقلاش مەغلۇپ بولدى",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "گۇرۇپپا نامى",
|
||||
"Group updated successfully": "گۇرۇپپا مۇۋەپپەقىيەتلىك يېڭىلاندى",
|
||||
"Groups": "گۇرۇپپىلار",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "ئىجابىي ئۇقتۇرۇش",
|
||||
"Hello, {{name}}": "ياخشىمۇسىز، {{name}}",
|
||||
"Help": "ياردەم",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "JSON ھۆججىتى خاتا",
|
||||
"Invalid Tag": "تەغ خاتا",
|
||||
"is typing...": "يازماقتا...",
|
||||
"Italic": "",
|
||||
"January": "يانۋار",
|
||||
"Jina API Key": "Jina API ئاچقۇچى",
|
||||
"join our Discord for help.": "ياردەم ئۈچۈن Discord غا قوشۇلىڭ.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "قورال مۇلازىمېتىرلىرى باشقۇرۇش",
|
||||
"March": "مارت",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "ئەڭ كۆپ سۆزلىگۈچىلەر",
|
||||
"Max Upload Count": "ئەڭ كۆپ چىقىرىش سانى",
|
||||
"Max Upload Size": "ئەڭ چوڭ چىقىرىش چوڭلۇقى",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Mojeek ئىزدەش API ئاچقۇچى",
|
||||
"more": "تېخىمۇ كۆپ",
|
||||
"More": "تېخىمۇ كۆپ",
|
||||
"My Notes": "خاتىرە",
|
||||
"Name": "ئات",
|
||||
"Name your knowledge base": "بىلىم ئاساسى نامىنى كىرگۈزۈڭ",
|
||||
"Native": "يەرلىك",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "openapi.json URL ياكى يولى",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "رەسىم چۈشەندۈرۈشىدە يەرلىك كۆرۈنۈش-تىل مودېلى ئىشلىتىش تاللاشلىرى. بۇ پارامېتىر Hugging Face تىكى مودېلغا قارىتىلغان. بۇ پارامېتىر picture_description_api بىلەن قوشۇلمايدۇ.",
|
||||
"or": "ياكى",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "ئىشلەتكۈچىلەرنى تەشكىللەڭ",
|
||||
"Other": "باشقا",
|
||||
"OUTPUT": "چىقىرىش",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "فۇنكسىيە ئىزدەش",
|
||||
"Search Knowledge": "بىلىم ئىزدەش",
|
||||
"Search Models": "مودېللارنى ئىزدەش",
|
||||
"Search Notes": "",
|
||||
"Search options": "ئىزدەش تاللاشلىرى",
|
||||
"Search Prompts": "تۈرتكە ئىزدەش",
|
||||
"Search Result Count": "ئىزدەش نەتىجىسى سانى",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "ھاسىل قىلىشنى توختات",
|
||||
"Stop Sequence": "توختاش تىزىقى",
|
||||
"Stream Chat Response": "سۆھبەت ئىنكاسىنى ئېقىم قىلىش",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "بار OCR نى چىقىرىۋېتىش",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "PDF دىكى بار OCR تېكىستىنى چىقىرىپ، قايتا OCR ئىجرا قىلىش. Force OCR قوزغىتىلسا بۇنىڭغا پەرۋا قىلىنمايدۇ. كۆڭۈلدىكىچە چەكلەنگەن.",
|
||||
"STT Model": "STT مودېلى",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "ئىھتىماللىقى تۆۋەن ئىملەرنىڭ تەسىرىنى ئازايتىش ئۈچۈن tail free sampling ئىشلىتىلىدۇ. چوڭ قىممەت (مەسىلەن: 2.0) تەسىرىنى تېخىمۇ ئازايتىدۇ، 1.0 بولسا چەكلەنگەن.",
|
||||
"Talk to model": "مودېل بىلەن سۆزلىشىش",
|
||||
"Tap to interrupt": "توختاتماقچى بولسىڭىز چېكىڭ",
|
||||
"Task List": "",
|
||||
"Task Model": "ۋەزىپە مودېلى",
|
||||
"Tasks": "ۋەزىپىلەر",
|
||||
"Tavily API Key": "Tavily API ئاچقۇچى",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "بارلىق ئارخىپنى قايتا ئەسلىگە كەلتۈرۈش",
|
||||
"Unarchive All Archived Chats": "بارلىق ئارخىپلانغان سۆھبەتلەرنى قايتا ئەسلىگە كەلتۈرۈش",
|
||||
"Unarchive Chat": "سۆھبەتنى قايتا ئەسلىگە كەلتۈرۈش",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "{{FROM_NOW}} چىقىرىلىدۇ",
|
||||
"Unlock mysteries": "سىرلارنى ئاچ",
|
||||
"Unpin": "مۇقىملانمىغان قىلىش",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(напр. `sh webui.sh --api`)",
|
||||
"(latest)": "(остання)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} прихованих рядків",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Відповіді",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "Чати {{user}}а",
|
||||
"{{webUIName}} Backend Required": "Необхідно підключення бекенду {{webUIName}}",
|
||||
"*Prompt node ID(s) are required for image generation": "*Для генерації зображення потрібно вказати ідентифікатор(и) вузла(ів)",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Адміністратори мають доступ до всіх інструментів у будь-який час; користувачам потрібні інструменти, призначені для кожної моделі в робочій області.",
|
||||
"Advanced Parameters": "Розширені параметри",
|
||||
"Advanced Params": "Розширені параметри",
|
||||
"AI": "",
|
||||
"All": "Усі",
|
||||
"All Documents": "Усі документи",
|
||||
"All models deleted successfully": "Усі моделі видалені успішно",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Точка доступу Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Ключ підписки Bing Search V7",
|
||||
"Bocha Search API Key": "Ключ API пошуку Bocha",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Підсилення або штрафування конкретних токенів для обмежених відповідей. Значення зміщення будуть обмежені між -100 і 100 (включно). (За замовчуванням: відсутнє)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Ключ API пошуку Brave",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Від {{name}}",
|
||||
"Bypass Embedding and Retrieval": "Минути вбудовування та пошук",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Виконання коду",
|
||||
"Code Execution": "Виконання коду",
|
||||
"Code Execution Engine": "Рушій виконання коду",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Копіювати останній блок коду",
|
||||
"Copy last response": "Копіювати останню відповідь",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Копіювати посилання",
|
||||
"Copy to clipboard": "Копіювати в буфер обміну",
|
||||
"Copying to clipboard was successful!": "Копіювання в буфер обміну виконано успішно!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "База даних",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Грудень",
|
||||
"Default": "За замовчуванням",
|
||||
"Default (Open AI)": "За замовчуванням (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "напр., Інструменти для виконання різних операцій",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "Помилка завантаження файлу: {{error}}",
|
||||
"Evaluations": "Оцінювання",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Exa API ключ",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Приклад: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Приклад: УСІ",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Не вдалося створити API ключ.",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Не вдалося отримати моделі",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Не вдалося прочитати вміст буфера обміну",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Назва групи",
|
||||
"Group updated successfully": "Групу успішно оновлено",
|
||||
"Groups": "Групи",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Тактильний зворотній зв'язок",
|
||||
"Hello, {{name}}": "Привіт, {{name}}",
|
||||
"Help": "Допоможіть",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Недійсний тег",
|
||||
"is typing...": "друкує...",
|
||||
"Italic": "",
|
||||
"January": "Січень",
|
||||
"Jina API Key": "Ключ API для Jina",
|
||||
"join our Discord for help.": "приєднуйтеся до нашого Discord для допомоги.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "Керувати серверами інструментів",
|
||||
"March": "Березень",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "Макс. кількість завантажень",
|
||||
"Max Upload Size": "Макс. розмір завантаження",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "API ключ для пошуку Mojeek",
|
||||
"more": "більше",
|
||||
"More": "Більше",
|
||||
"My Notes": "",
|
||||
"Name": "Ім'я",
|
||||
"Name your knowledge base": "Назвіть вашу базу знань",
|
||||
"Native": "Рідний",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "або",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Організуйте своїх користувачів",
|
||||
"Other": "Інше",
|
||||
"OUTPUT": "ВИХІД",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Пошук функцій",
|
||||
"Search Knowledge": "Шукати знання",
|
||||
"Search Models": "Пошук моделей",
|
||||
"Search Notes": "",
|
||||
"Search options": "Опції пошуку",
|
||||
"Search Prompts": "Пошук промтів",
|
||||
"Search Result Count": "Кількість результатів пошуку",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Символ зупинки",
|
||||
"Stream Chat Response": "Відповідь стрім-чату",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "Модель STT ",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Вибірка без хвоста використовується для зменшення впливу менш ймовірних токенів на результат. Вищий показник (напр., 2.0) зменшить вплив сильніше, тоді як значення 1.0 вимикає цю опцію.",
|
||||
"Talk to model": "Спілкуватися з моделлю",
|
||||
"Tap to interrupt": "Натисніть, щоб перервати",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "Завдання",
|
||||
"Tavily API Key": "Ключ API Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Розархівувати все",
|
||||
"Unarchive All Archived Chats": "Розархівувати усі архівовані чати",
|
||||
"Unarchive Chat": "Розархівувати чат",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "Розкрийте таємниці",
|
||||
"Unpin": "Відчепити",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(مثال کے طور پر: `sh webui.sh --api`)",
|
||||
"(latest)": "(تازہ ترین)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ ماڈلز }}",
|
||||
"{{COUNT}} Available Tools": "",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "",
|
||||
"{{COUNT}} Replies": "",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{ صارف }} کی بات چیت",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} بیک اینڈ درکار ہے",
|
||||
"*Prompt node ID(s) are required for image generation": "تصویر کی تخلیق کے لیے *پرومپٹ نوڈ آئی ڈی(ز) کی ضرورت ہے",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "ایڈمنز کو ہر وقت تمام ٹولز تک رسائی حاصل ہوتی ہے؛ صارفین کو ورک سپیس میں ماڈل کے حساب سے ٹولز تفویض کرنے کی ضرورت ہوتی ہے",
|
||||
"Advanced Parameters": "پیشرفتہ پیرا میٹرز",
|
||||
"Advanced Params": "ترقی یافتہ پیرامیٹرز",
|
||||
"AI": "",
|
||||
"All": "",
|
||||
"All Documents": "تمام دستاویزات",
|
||||
"All models deleted successfully": "",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "بریو سرچ API کلید",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "",
|
||||
"Bypass Embedding and Retrieval": "",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "کوڈ کا نفاذ",
|
||||
"Code Execution": "",
|
||||
"Code Execution Engine": "",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "آخری کوڈ بلاک نقل کریں",
|
||||
"Copy last response": "آخری جواب کاپی کریں",
|
||||
"Copy link": "",
|
||||
"Copy Link": "لنک کاپی کریں",
|
||||
"Copy to clipboard": "کلپ بورڈ پر کاپی کریں",
|
||||
"Copying to clipboard was successful!": "کلپ بورڈ میں کاپی کامیاب ہوئی!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "ڈیٹا بیس",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "دسمبر",
|
||||
"Default": "پہلے سے طے شدہ",
|
||||
"Default (Open AI)": "ڈیفالٹ (اوپن اے آئی)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "",
|
||||
"Evaluations": "تشخیصات",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
|
||||
"Example: ALL": "",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "API کلید بنانے میں ناکام",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "کلپ بورڈ مواد کو پڑھنے میں ناکام",
|
||||
"Failed to save connections": "",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "ہاپٹک فیڈ بیک",
|
||||
"Hello, {{name}}": "ہیلو، {{name}}",
|
||||
"Help": "مدد",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "غلط ٹیگ",
|
||||
"is typing...": "",
|
||||
"Italic": "",
|
||||
"January": "جنوری",
|
||||
"Jina API Key": "",
|
||||
"join our Discord for help.": "مدد کے لئے ہمارے ڈسکارڈ میں شامل ہوں",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "",
|
||||
"March": "مارچ",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "زیادہ سے زیادہ اپلوڈ تعداد",
|
||||
"Max Upload Size": "زیادہ سے زیادہ اپلوڈ سائز",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "",
|
||||
"more": "مزید",
|
||||
"More": "مزید",
|
||||
"My Notes": "",
|
||||
"Name": "نام",
|
||||
"Name your knowledge base": "",
|
||||
"Native": "",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "یا",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "",
|
||||
"Other": "دیگر",
|
||||
"OUTPUT": "آؤٹ پٹ",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "تلاش کے افعال",
|
||||
"Search Knowledge": "علم تلاش کریں",
|
||||
"Search Models": "ماڈلز تلاش کریں",
|
||||
"Search Notes": "",
|
||||
"Search options": "",
|
||||
"Search Prompts": "تلاش کے اشارے",
|
||||
"Search Result Count": "تلاش کا نتیجہ شمار ",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "ترتیب روکیں",
|
||||
"Stream Chat Response": "اسٹریم چیٹ جواب",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "ایس ٹی ٹی ماڈل",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||
"Talk to model": "",
|
||||
"Tap to interrupt": "رکنے کے لئے ٹچ کریں",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "",
|
||||
"Tavily API Key": "ٹاویلی API کلید",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "",
|
||||
"Unarchive All Archived Chats": "",
|
||||
"Unarchive Chat": "",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "",
|
||||
"Unpin": "ان پن کریں",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(масалан, `sh webui.sh --api`)",
|
||||
"(latest)": "(охирги)",
|
||||
"(leave blank for to use commercial endpoint)": "(тижорий сўнгги нуқтадан фойдаланиш учун бўш қолдиринг)",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "{{COUNT}} та мавжуд воситалар",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} та яширин чизиқ",
|
||||
"{{COUNT}} Replies": "{{COUNT}} та жавоб",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}} нинг чатлари",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Баcкенд талаб қилинади",
|
||||
"*Prompt node ID(s) are required for image generation": "*Расм яратиш учун тезкор тугун идентификаторлари талаб қилинади",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Администраторлар ҳар доим барча воситалардан фойдаланишлари мумкин; фойдаланувчиларга иш жойида ҳар бир модел учун тайинланган воситалар керак бўлади.",
|
||||
"Advanced Parameters": "Кенгайтирилган параметрлар",
|
||||
"Advanced Params": "Кенгайтирилган параметрлар",
|
||||
"AI": "",
|
||||
"All": "Ҳаммаси",
|
||||
"All Documents": "Барча Ҳужжатлар",
|
||||
"All models deleted successfully": "Барча моделлар муваффақиятли ўчирилди",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Bing Search V7 Endpoint",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 Subscription Key",
|
||||
"Bocha Search API Key": "Bocha Search API Key",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Чекланган жавоблар учун махсус токенларни кучайтириш ёки жазолаш. Йўналтирилган қийматлар -100 ва 100 (шу жумладан) оралиғида маҳкамланади. (Бирламчи: йўқ)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Доcлинг ОCР механизми ва тил(лар) кўрсатилиши ёки иккаласи ҳам бўш қолиши керак.",
|
||||
"Brave Search API Key": "Brave Search API Key",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Муаллиф: {{name}}",
|
||||
"Bypass Embedding and Retrieval": "Ўрнатиш ва қидиришни четлаб ўтиш",
|
||||
"Bypass Web Loader": "Веб юклагични четлаб ўтиш",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Коднинг бажарилиши",
|
||||
"Code Execution": "Коднинг бажарилиши",
|
||||
"Code Execution Engine": "Кодни бажариш механизми",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "Форматланган матнни нусхалаш",
|
||||
"Copy last code block": "Охирги код блокидан нусха олинг",
|
||||
"Copy last response": "Охирги жавобдан нусха олинг",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Ҳаволани нусхалаш",
|
||||
"Copy to clipboard": "Буферга нусхалаш",
|
||||
"Copying to clipboard was successful!": "Буферга нусхалаш муваффақиятли бўлди!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Маълумотлар базаси",
|
||||
"Datalab Marker API": "Datalab Marker API",
|
||||
"Datalab Marker API Key required.": "Datalab Marker API Key талаб қилинади.",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "декабр",
|
||||
"Default": "Стандарт",
|
||||
"Default (Open AI)": "Стандарт (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "масалан, pdf, docx, txt",
|
||||
"e.g. Tools for performing various operations": "масалан. Ҳар хил операцияларни бажариш учун асбоблар",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "масалан, 3, 4, 5 (сукут бўйича бўш қолдиринг)",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "масалан, en-US,ja-JP (автоматик аниқлаш учун бўш қолдиринг)",
|
||||
"e.g., westus (leave blank for eastus)": "масалан, westus (eastus учун бўш қолдиринг)",
|
||||
"e.g.) en,fr,de": "масалан) en,fr,de",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "Моделни юклашда хатолик юз берди: {{error}}",
|
||||
"Error uploading file: {{error}}": "Файлни юклашда хатолик юз берди: {{error}}",
|
||||
"Evaluations": "Баҳолар",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Exa АПИ калити",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Мисол: (&(обжеcтCласс=инетОргПерсон)(уид=%с))",
|
||||
"Example: ALL": "Мисол: АЛЛ",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "Ҳаволани нусхалаб бўлмади",
|
||||
"Failed to create API Key.": "АПИ калитини яратиб бўлмади.",
|
||||
"Failed to delete note": "Қайдни ўчириб бўлмади",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Моделларни олиб бўлмади",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "Файл таркибини юклаб бўлмади.",
|
||||
"Failed to read clipboard contents": "Буфер таркибини ўқиб бўлмади",
|
||||
"Failed to save connections": "Уланишлар сақланмади",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Гуруҳ номи",
|
||||
"Group updated successfully": "Гуруҳ муваффақиятли янгиланди",
|
||||
"Groups": "Гуруҳлар",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Ҳаптик фикр-мулоҳазалар",
|
||||
"Hello, {{name}}": "Салом, {{name}}",
|
||||
"Help": "Ёрдам",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "ЖСОН файли яроқсиз",
|
||||
"Invalid Tag": "Тег нотўғри",
|
||||
"is typing...": "ёзмоқда...",
|
||||
"Italic": "",
|
||||
"January": "Январ",
|
||||
"Jina API Key": "Жина АПИ калити",
|
||||
"join our Discord for help.": "ёрдам учун Дисcордимизга қўшилинг.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "Асбоб серверларини бошқариш",
|
||||
"March": "Март",
|
||||
"Markdown": "Маркдоwн",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "Максимал динамиклар",
|
||||
"Max Upload Count": "Максимал юклаш сони",
|
||||
"Max Upload Size": "Максимал юклаш ҳажми",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Можеэк қидирув АПИ калити",
|
||||
"more": "Кўпроқ",
|
||||
"More": "Кўпроқ",
|
||||
"My Notes": "Менинг эслатмаларим",
|
||||
"Name": "Исм",
|
||||
"Name your knowledge base": "Билимлар базасини номланг",
|
||||
"Native": "Маҳаллий",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "openapi.json УРЛ ёки йўл",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "ёки",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Фойдаланувчиларингизни тартибга солинг",
|
||||
"Other": "Бошқа",
|
||||
"OUTPUT": "Чиқиш",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Қидирув функсиялари",
|
||||
"Search Knowledge": "Билимларни қидириш",
|
||||
"Search Models": "Моделларни қидириш",
|
||||
"Search Notes": "",
|
||||
"Search options": "Қидирув вариантлари",
|
||||
"Search Prompts": "Қидирув кўрсатмалари",
|
||||
"Search Result Count": "Қидирув натижалари сони",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Кетма-кетликни тўхтатиш",
|
||||
"Stream Chat Response": "Chat жавобини юбориш",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "Мавжуд OCRни олиб ташлаш",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "PDFдан мавжуд OCR матнини олиб ташланг ва OCRни қайта ишлатинг. Agar Force OCR ёқилган бўлса, эътиборга олинмайди. Стандарт қиймат: False.",
|
||||
"STT Model": "СТТ модели",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Чиқишдан камроқ эҳтимолий токенларнинг таъсирини камайтириш учун қуйруқсиз намуна олиш қўлланилади. Юқори қиймат (масалан, 2.0) таъсирни кўпроқ камайтиради, 1.0 қиймати эса бу созламани ўчириб қўяди.",
|
||||
"Talk to model": "Модел билан гаплашинг",
|
||||
"Tap to interrupt": "Тўхтатиш учун босинг",
|
||||
"Task List": "",
|
||||
"Task Model": "Вазифа модели",
|
||||
"Tasks": "Вазифалар",
|
||||
"Tavily API Key": "Tavily АПИ калити",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Ҳаммасини архивдан чиқариш",
|
||||
"Unarchive All Archived Chats": "Барча архивланган суҳбатларни архивдан чиқариш",
|
||||
"Unarchive Chat": "Чатни архивдан чиқариш",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "{{FROM_NOW}} юклайди",
|
||||
"Unlock mysteries": "Сирларни очинг",
|
||||
"Unpin": "Ечиш",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(masalan, `sh webui.sh --api`)",
|
||||
"(latest)": "(oxirgi)",
|
||||
"(leave blank for to use commercial endpoint)": "(tijoriy so'nggi nuqtadan foydalanish uchun bo'sh qoldiring)",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "{{COUNT}} ta mavjud vositalar",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} ta yashirin chiziq",
|
||||
"{{COUNT}} Replies": "{{COUNT}} ta javob",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}} ning chatlari",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Backend talab qilinadi",
|
||||
"*Prompt node ID(s) are required for image generation": "*Rasm yaratish uchun tezkor tugun identifikatorlari talab qilinadi",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorlar har doim barcha vositalardan foydalanishlari mumkin; foydalanuvchilarga ish joyida har bir model uchun tayinlangan vositalar kerak bo'ladi.",
|
||||
"Advanced Parameters": "Kengaytirilgan parametrlar",
|
||||
"Advanced Params": "Kengaytirilgan parametrlar",
|
||||
"AI": "",
|
||||
"All": "Hammasi",
|
||||
"All Documents": "Barcha Hujjatlar",
|
||||
"All models deleted successfully": "Barcha modellar muvaffaqiyatli o'chirildi",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Bing Search V7 Endpoint",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 obuna kaliti",
|
||||
"Bocha Search API Key": "Bocha qidiruv API kaliti",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Cheklangan javoblar uchun maxsus tokenlarni kuchaytirish yoki jazolash. Yo'naltirilgan qiymatlar -100 va 100 (shu jumladan) oralig'ida mahkamlanadi. (Birlamchi: yo‘q)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "Docling OCR mexanizmi va til(lar) koʻrsatilishi yoki ikkalasi ham boʻsh qolishi kerak.",
|
||||
"Brave Search API Key": "Brave Search API kaliti",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Muallif: {{name}}",
|
||||
"Bypass Embedding and Retrieval": "O'rnatish va qidirishni chetlab o'tish",
|
||||
"Bypass Web Loader": "Veb yuklagichni chetlab o'tish",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Kodning bajarilishi",
|
||||
"Code Execution": "Kodning bajarilishi",
|
||||
"Code Execution Engine": "Kodni bajarish mexanizmi",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "Formatlangan matnni nusxalash",
|
||||
"Copy last code block": "Oxirgi kod blokidan nusxa oling",
|
||||
"Copy last response": "Oxirgi javobdan nusxa oling",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Havolani nusxalash",
|
||||
"Copy to clipboard": "Buferga nusxalash",
|
||||
"Copying to clipboard was successful!": "Buferga nusxalash muvaffaqiyatli boʻldi!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Ma'lumotlar bazasi",
|
||||
"Datalab Marker API": "Datalab Marker API",
|
||||
"Datalab Marker API Key required.": "Datalab Marker API kaliti talab qilinadi.",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "dekabr",
|
||||
"Default": "Standart",
|
||||
"Default (Open AI)": "Standart (Ochiq AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "masalan. pdf, docx, txt",
|
||||
"e.g. Tools for performing various operations": "masalan. Har xil operatsiyalarni bajarish uchun asboblar",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "masalan, 3, 4, 5 (sukut boʻyicha boʻsh qoldiring)",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "masalan, en-US,ja-JP (avtomatik aniqlash uchun boʻsh qoldiring)",
|
||||
"e.g., westus (leave blank for eastus)": "masalan, westus (estus uchun bo'sh qoldiring)",
|
||||
"e.g.) en,fr,de": "masalan) en,fr,de",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "Modelni yuklashda xatolik yuz berdi: {{error}}",
|
||||
"Error uploading file: {{error}}": "Faylni yuklashda xatolik yuz berdi: {{error}}",
|
||||
"Evaluations": "Baholar",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Exa API kaliti",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Misol: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Misol: ALL",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "Havolani nusxalab bo‘lmadi",
|
||||
"Failed to create API Key.": "API kalitini yaratib bo‘lmadi.",
|
||||
"Failed to delete note": "Qaydni o‘chirib bo‘lmadi",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Modellarni olib bo‘lmadi",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "Fayl tarkibini yuklab bo‘lmadi.",
|
||||
"Failed to read clipboard contents": "Bufer tarkibini o‘qib bo‘lmadi",
|
||||
"Failed to save connections": "Ulanishlar saqlanmadi",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Guruh nomi",
|
||||
"Group updated successfully": "Guruh muvaffaqiyatli yangilandi",
|
||||
"Groups": "Guruhlar",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Haptik fikr-mulohazalar",
|
||||
"Hello, {{name}}": "Salom, {{name}}",
|
||||
"Help": "Yordam",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "JSON fayli yaroqsiz",
|
||||
"Invalid Tag": "Teg noto‘g‘ri",
|
||||
"is typing...": "yozmoqda...",
|
||||
"Italic": "",
|
||||
"January": "Yanvar",
|
||||
"Jina API Key": "Jina API kaliti",
|
||||
"join our Discord for help.": "yordam uchun Discordimizga qo'shiling.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "Asbob serverlarini boshqarish",
|
||||
"March": "Mart",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "Maksimal dinamiklar",
|
||||
"Max Upload Count": "Maksimal yuklash soni",
|
||||
"Max Upload Size": "Maksimal yuklash hajmi",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Mojeek qidiruv API kaliti",
|
||||
"more": "Ko'proq",
|
||||
"More": "Ko'proq",
|
||||
"My Notes": "Mening eslatmalarim",
|
||||
"Name": "Ism",
|
||||
"Name your knowledge base": "Bilimlar bazasini nomlang",
|
||||
"Native": "Mahalliy",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "openapi.json URL yoki yoʻl",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "yoki",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Foydalanuvchilaringizni tartibga soling",
|
||||
"Other": "Boshqa",
|
||||
"OUTPUT": "Chiqish",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Qidiruv funksiyalari",
|
||||
"Search Knowledge": "Bilimlarni qidirish",
|
||||
"Search Models": "Modellarni qidirish",
|
||||
"Search Notes": "",
|
||||
"Search options": "Qidiruv variantlari",
|
||||
"Search Prompts": "Qidiruv ko'rsatmalari",
|
||||
"Search Result Count": "Qidiruv natijalari soni",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Ketma-ketlikni to'xtatish",
|
||||
"Stream Chat Response": "Stream Chat javobi",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "Mavjud OCRni ajratib oling",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Mavjud OCR matnini PDF faylidan olib tashlang va OCRni qayta ishga tushiring. Majburiy OCR yoqilgan bo'lsa, e'tiborga olinmaydi. Birlamchi parametrlar False.",
|
||||
"STT Model": "STT modeli",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Chiqishdan kamroq ehtimoliy tokenlarning ta'sirini kamaytirish uchun quyruqsiz namuna olish qo'llaniladi. Yuqori qiymat (masalan, 2.0) taʼsirni koʻproq kamaytiradi, 1.0 qiymati esa bu sozlamani oʻchirib qoʻyadi.",
|
||||
"Talk to model": "Model bilan gaplashing",
|
||||
"Tap to interrupt": "To‘xtatish uchun bosing",
|
||||
"Task List": "",
|
||||
"Task Model": "Vazifa modeli",
|
||||
"Tasks": "Vazifalar",
|
||||
"Tavily API Key": "Tavily API kaliti",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Hammasini arxivdan chiqarish",
|
||||
"Unarchive All Archived Chats": "Barcha arxivlangan suhbatlarni arxivdan chiqarish",
|
||||
"Unarchive Chat": "Chatni arxivdan chiqarish",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "{{FROM_NOW}} yuklaydi",
|
||||
"Unlock mysteries": "Sirlarni oching",
|
||||
"Unpin": "Yechish",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(vd: `sh webui.sh --api`)",
|
||||
"(latest)": "(mới nhất)",
|
||||
"(leave blank for to use commercial endpoint)": "",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ mô hình }}",
|
||||
"{{COUNT}} Available Tools": "{{COUNT}} Công cụ có sẵn",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} dòng bị ẩn",
|
||||
"{{COUNT}} Replies": "{{COUNT}} Trả lời",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "Các cuộc trò chuyện của {{user}}",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Yêu cầu Backend",
|
||||
"*Prompt node ID(s) are required for image generation": "*ID nút Prompt là bắt buộc để tạo ảnh",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Quản trị viên luôn có quyền truy cập vào tất cả các tool; người dùng cần các tools được chỉ định cho mỗi mô hình trong workspace.",
|
||||
"Advanced Parameters": "Các tham số Nâng cao",
|
||||
"Advanced Params": "Các tham số Nâng cao",
|
||||
"AI": "",
|
||||
"All": "Tất cả",
|
||||
"All Documents": "Tất cả tài liệu",
|
||||
"All models deleted successfully": "Tất cả các mô hình đã được xóa thành công",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Endpoint Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Khóa đăng ký Bing Search V7",
|
||||
"Bocha Search API Key": "Khóa API Bocha Search",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Tăng cường hoặc phạt các token cụ thể cho các phản hồi bị ràng buộc. Giá trị bias sẽ được giới hạn trong khoảng từ -100 đến 100 (bao gồm). (Mặc định: không có)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "",
|
||||
"Brave Search API Key": "Khóa API tìm kiếm dũng cảm",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "Bởi {{name}}",
|
||||
"Bypass Embedding and Retrieval": "Bỏ qua Embedding và Truy xuất",
|
||||
"Bypass Web Loader": "",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Thực thi mã",
|
||||
"Code Execution": "Thực thi Mã",
|
||||
"Code Execution Engine": "Engine Thực thi Mã",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "",
|
||||
"Copy last code block": "Sao chép khối mã cuối cùng",
|
||||
"Copy last response": "Sao chép phản hồi cuối cùng",
|
||||
"Copy link": "",
|
||||
"Copy Link": "Sao chép link",
|
||||
"Copy to clipboard": "Sao chép vào clipboard",
|
||||
"Copying to clipboard was successful!": "Sao chép vào clipboard thành công!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "Cơ sở dữ liệu",
|
||||
"Datalab Marker API": "",
|
||||
"Datalab Marker API Key required.": "",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "Tháng 12",
|
||||
"Default": "Mặc định",
|
||||
"Default (Open AI)": "Mặc định (Open AI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "",
|
||||
"e.g. Tools for performing various operations": "vd: Các công cụ để thực hiện các hoạt động khác nhau",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
|
||||
"e.g., westus (leave blank for eastus)": "",
|
||||
"e.g.) en,fr,de": "",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "",
|
||||
"Error uploading file: {{error}}": "Lỗi tải lên tệp: {{error}}",
|
||||
"Evaluations": "Đánh giá",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Khóa API Exa",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Ví dụ: (&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "Ví dụ: TẤT CẢ",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "",
|
||||
"Failed to create API Key.": "Lỗi khởi tạo API Key",
|
||||
"Failed to delete note": "",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "Không thể lấy danh sách mô hình",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to read clipboard contents": "Không thể đọc nội dung clipboard",
|
||||
"Failed to save connections": "Không thể lưu các kết nối",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "Tên Nhóm",
|
||||
"Group updated successfully": "Đã cập nhật nhóm thành công",
|
||||
"Groups": "Nhóm",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Phản hồi xúc giác",
|
||||
"Hello, {{name}}": "Xin chào {{name}}",
|
||||
"Help": "Trợ giúp",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "",
|
||||
"Invalid Tag": "Tag không hợp lệ",
|
||||
"is typing...": "đang gõ...",
|
||||
"Italic": "",
|
||||
"January": "Tháng 1",
|
||||
"Jina API Key": "Khóa API Jina",
|
||||
"join our Discord for help.": "tham gia Discord của chúng tôi để được trợ giúp.",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "Quản lý Máy chủ Công cụ",
|
||||
"March": "Tháng 3",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "",
|
||||
"Max Upload Count": "Số lượng Tải lên Tối đa",
|
||||
"Max Upload Size": "Kích thước Tải lên Tối đa",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Khóa API Mojeek Search",
|
||||
"more": "thêm",
|
||||
"More": "Thêm",
|
||||
"My Notes": "",
|
||||
"Name": "Tên",
|
||||
"Name your knowledge base": "Đặt tên cho cơ sở kiến thức của bạn",
|
||||
"Native": "Gốc",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "hoặc",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "Tổ chức người dùng của bạn",
|
||||
"Other": "Khác",
|
||||
"OUTPUT": "ĐẦU RA",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "Tìm kiếm Functions",
|
||||
"Search Knowledge": "Tìm kiếm Kiến thức",
|
||||
"Search Models": "Tìm model",
|
||||
"Search Notes": "",
|
||||
"Search options": "Tùy chọn tìm kiếm",
|
||||
"Search Prompts": "Tìm prompt",
|
||||
"Search Result Count": "Số kết quả tìm kiếm",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "",
|
||||
"Stop Sequence": "Trình tự Dừng",
|
||||
"Stream Chat Response": "Truyền trực tiếp Phản hồi Chat",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STT Model": "Mô hình STT",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Lấy mẫu không đuôi (tail free sampling) được sử dụng để giảm tác động của các token ít có khả năng xuất hiện trong đầu ra. Giá trị cao hơn (ví dụ: 2.0) sẽ giảm tác động nhiều hơn, trong khi giá trị 1.0 sẽ tắt cài đặt này.",
|
||||
"Talk to model": "Nói chuyện với mô hình",
|
||||
"Tap to interrupt": "Chạm để ngừng",
|
||||
"Task List": "",
|
||||
"Task Model": "",
|
||||
"Tasks": "Tác vụ",
|
||||
"Tavily API Key": "Khóa API Tavily",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "Bỏ lưu trữ Tất cả",
|
||||
"Unarchive All Archived Chats": "Bỏ lưu trữ Tất cả Chat Đã Lưu trữ",
|
||||
"Unarchive Chat": "Bỏ lưu trữ Chat",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "",
|
||||
"Unlock mysteries": "Mở khóa những bí ẩn",
|
||||
"Unpin": "Bỏ ghim",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(例如:`sh webui.sh --api`)",
|
||||
"(latest)": "(最新版)",
|
||||
"(leave blank for to use commercial endpoint)": "(留空以使用商业端点)",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "{{COUNT}} 个可用工具",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "{{COUNT}} 行被隐藏",
|
||||
"{{COUNT}} Replies": "{{COUNT}} 回复",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}} 的对话记录",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} 需要后端服务",
|
||||
"*Prompt node ID(s) are required for image generation": "*图片生成需要 Prompt node ID",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "管理员拥有所有工具的访问权限;用户则需在工作空间中为每个模型单独分配工具。",
|
||||
"Advanced Parameters": "高级参数",
|
||||
"Advanced Params": "高级参数",
|
||||
"AI": "",
|
||||
"All": "全部",
|
||||
"All Documents": "所有文档",
|
||||
"All models deleted successfully": "所有模型删除成功",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Bing 搜索 V7 端点",
|
||||
"Bing Search V7 Subscription Key": "Bing 搜索 V7 订阅密钥",
|
||||
"Bocha Search API Key": "Bocha Search API 密钥",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "为受限响应提升或惩罚特定标记。偏置值将被限制在 -100 到 100(包括两端)之间。(默认:无)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "必需提供 Docling OCR Engine 和语言,或者都留空。",
|
||||
"Brave Search API Key": "Brave Search API 密钥",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "由 {{name}} 提供",
|
||||
"Bypass Embedding and Retrieval": "绕过嵌入和检索",
|
||||
"Bypass Web Loader": "绕过网页加载器",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "关闭外部连接配置弹窗",
|
||||
"Close modal": "关闭弹窗",
|
||||
"Close settings modal": "关闭设置弹窗",
|
||||
"Code Block": "",
|
||||
"Code execution": "代码执行",
|
||||
"Code Execution": "代码执行",
|
||||
"Code Execution Engine": "代码执行引擎",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "复制格式化文本",
|
||||
"Copy last code block": "复制最后一个代码块中的代码",
|
||||
"Copy last response": "复制最后一次回复内容",
|
||||
"Copy link": "",
|
||||
"Copy Link": "复制链接",
|
||||
"Copy to clipboard": "复制到剪贴板",
|
||||
"Copying to clipboard was successful!": "成功复制到剪贴板!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "数据库",
|
||||
"Datalab Marker API": "Datalab Marker API",
|
||||
"Datalab Marker API Key required.": "需要 Datalab Marker API 密钥",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "十二月",
|
||||
"Default": "默认",
|
||||
"Default (Open AI)": "默认 (OpenAI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "例如:pdf,docx,txt",
|
||||
"e.g. Tools for performing various operations": "例如:用于执行各种操作的工具",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "例如:3,4,5(留空使用默认值)",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "例如:audio/wav,audio/mpeg(留空使用默认值)",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "例如:en-US,ja-JP(留空则自动检测)",
|
||||
"e.g., westus (leave blank for eastus)": "例如:westus(留空则默认为eastus)",
|
||||
"e.g.) en,fr,de": "例如:en,fr,de",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "卸载模型时出错:{{error}}",
|
||||
"Error uploading file: {{error}}": "上传文件时出错:{{error}}",
|
||||
"Evaluations": "竞技场评估",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Exa API 密钥",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "例如:(&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "例如:ALL",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "复制链接失败",
|
||||
"Failed to create API Key.": "无法创建 API 密钥。",
|
||||
"Failed to delete note": "删除笔记失败",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "无法获取模型",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "无法加载文件内容。",
|
||||
"Failed to read clipboard contents": "无法读取剪贴板内容",
|
||||
"Failed to save connections": "无法保存连接",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "权限组名称",
|
||||
"Group updated successfully": "权限组更新成功",
|
||||
"Groups": "权限组",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "震动反馈",
|
||||
"Hello, {{name}}": "你好,{{name}}",
|
||||
"Help": "帮助",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "JSON 文件无效",
|
||||
"Invalid Tag": "无效标签",
|
||||
"is typing...": "输入中...",
|
||||
"Italic": "",
|
||||
"January": "一月",
|
||||
"Jina API Key": "Jina API 密钥",
|
||||
"join our Discord for help.": "加入我们的 Discord 寻求帮助",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "管理工具服务器",
|
||||
"March": "三月",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "最大扬声器数量",
|
||||
"Max Upload Count": "最大上传数量",
|
||||
"Max Upload Size": "最大上传大小",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Mojeek Search API 密钥",
|
||||
"more": "更多",
|
||||
"More": "更多",
|
||||
"My Notes": "我的笔记",
|
||||
"Name": "名称",
|
||||
"Name your knowledge base": "为您的知识库命名",
|
||||
"Native": "原生",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "openapi.json URL 或路径",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "在图片描述功能中本地运行视觉语言模型的选项。此参数指向托管在 Hugging Face 上的模型。此参数不可与 picture_description_api 同时使用。",
|
||||
"or": "或",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "组织用户",
|
||||
"Other": "其他",
|
||||
"OUTPUT": "输出",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "搜索函数",
|
||||
"Search Knowledge": "搜索知识",
|
||||
"Search Models": "搜索模型",
|
||||
"Search Notes": "",
|
||||
"Search options": "搜索选项",
|
||||
"Search Prompts": "搜索提示词",
|
||||
"Search Result Count": "搜索结果数量",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "停止生成",
|
||||
"Stop Sequence": "停止序列 (Stop Sequence)",
|
||||
"Stream Chat Response": "流式对话响应 (Stream Chat Response)",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "清除现有 OCR 文本",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "清除 PDF 中现有的 OCR 文本并重新执行 OCR 识别。若启用 “强制 OCR 识别” 则此设置无效。默认为关闭",
|
||||
"STT Model": "语音转文本模型",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "无尾采样用于减少输出中出现概率较小的 Token 的影响。较高的值(例如 2.0)将进一步减少影响,而值 1.0 则禁用此设置。",
|
||||
"Talk to model": "与模型交谈",
|
||||
"Tap to interrupt": "点击以中断",
|
||||
"Task List": "",
|
||||
"Task Model": "任务模型",
|
||||
"Tasks": "任务",
|
||||
"Tavily API Key": "Tavily API 密钥",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "取消所有存档",
|
||||
"Unarchive All Archived Chats": "取消所有已存档的对话",
|
||||
"Unarchive Chat": "取消存档当前对话",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "{{FROM_NOW}} 后卸载",
|
||||
"Unlock mysteries": "揭开神秘面纱",
|
||||
"Unpin": "取消置顶",
|
||||
|
|
|
@ -5,10 +5,15 @@
|
|||
"(e.g. `sh webui.sh --api`)": "(例如:`sh webui.sh --api`)",
|
||||
"(latest)": "(最新版)",
|
||||
"(leave blank for to use commercial endpoint)": "(留空以使用商業端點)",
|
||||
"[Last] dddd [at] h:mm A": "",
|
||||
"[Today at] h:mm A": "",
|
||||
"[Yesterday at] h:mm A": "",
|
||||
"{{ models }}": "{{ models }}",
|
||||
"{{COUNT}} Available Tools": "{{COUNT}} 個可用工具",
|
||||
"{{COUNT}} characters": "",
|
||||
"{{COUNT}} hidden lines": "已隱藏 {{COUNT}} 行",
|
||||
"{{COUNT}} Replies": "{{COUNT}} 回覆",
|
||||
"{{COUNT}} words": "",
|
||||
"{{user}}'s Chats": "{{user}} 的對話",
|
||||
"{{webUIName}} Backend Required": "需要提供 {{webUIName}} 後端",
|
||||
"*Prompt node ID(s) are required for image generation": "* 圖片生成需要提示詞節點 ID",
|
||||
|
@ -56,6 +61,7 @@
|
|||
"Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "管理員可以隨時使用所有工具;使用者則需在工作區中為每個模型分配工具。",
|
||||
"Advanced Parameters": "進階參數",
|
||||
"Advanced Params": "進階參數",
|
||||
"AI": "",
|
||||
"All": "全部",
|
||||
"All Documents": "所有文件",
|
||||
"All models deleted successfully": "成功刪除所有模型",
|
||||
|
@ -153,9 +159,11 @@
|
|||
"Bing Search V7 Endpoint": "Bing 搜尋 V7 端點",
|
||||
"Bing Search V7 Subscription Key": "Bing 搜尋 V7 訂閱金鑰",
|
||||
"Bocha Search API Key": "Bocha 搜尋 API 金鑰",
|
||||
"Bold": "",
|
||||
"Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "針對受限的回應,增強或懲罰特定 tokens。偏差值將限制在 -100 到 100 (含)。 (預設:none)",
|
||||
"Both Docling OCR Engine and Language(s) must be provided or both left empty.": "必須同時提供 Docling OCR 引擎與語言設定,或兩者皆留空。",
|
||||
"Brave Search API Key": "Brave 搜尋 API 金鑰",
|
||||
"Bullet List": "",
|
||||
"By {{name}}": "由 {{name}} 製作",
|
||||
"Bypass Embedding and Retrieval": "繞過嵌入與檢索",
|
||||
"Bypass Web Loader": "繞過網頁載入器",
|
||||
|
@ -216,6 +224,7 @@
|
|||
"Close Configure Connection Modal": "",
|
||||
"Close modal": "關閉模型",
|
||||
"Close settings modal": "關閉設定模型",
|
||||
"Code Block": "",
|
||||
"Code execution": "程式碼執行",
|
||||
"Code Execution": "程式碼執行",
|
||||
"Code Execution Engine": "程式碼執行引擎",
|
||||
|
@ -270,6 +279,7 @@
|
|||
"Copy Formatted Text": "複製格式化文字",
|
||||
"Copy last code block": "複製最後一個程式碼區塊",
|
||||
"Copy last response": "複製最後一個回應",
|
||||
"Copy link": "",
|
||||
"Copy Link": "複製連結",
|
||||
"Copy to clipboard": "複製到剪貼簿",
|
||||
"Copying to clipboard was successful!": "成功複製到剪貼簿!",
|
||||
|
@ -302,6 +312,7 @@
|
|||
"Database": "資料庫",
|
||||
"Datalab Marker API": "Datalab Marker API",
|
||||
"Datalab Marker API Key required.": "需要 Datalab Marker API 金鑰。",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "12 月",
|
||||
"Default": "預設",
|
||||
"Default (Open AI)": "預設 (OpenAI)",
|
||||
|
@ -402,7 +413,7 @@
|
|||
"e.g. pdf, docx, txt": "例如:pdf, docx, txt",
|
||||
"e.g. Tools for performing various operations": "例如:用於執行各種操作的工具",
|
||||
"e.g., 3, 4, 5 (leave blank for default)": "例如:3、4、5(留空使用預設值)",
|
||||
"e.g., audio/wav,audio/mpeg (leave blank for defaults)": "例如: audio/wav, audio/mpeg (留空使用預設值)",
|
||||
"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
|
||||
"e.g., en-US,ja-JP (leave blank for auto-detect)": "例如:en-US, ja-JP(留空以自動偵測)",
|
||||
"e.g., westus (leave blank for eastus)": "例如:westus(留空則使用 eastus)",
|
||||
"e.g.) en,fr,de": "例如:en, fr, de",
|
||||
|
@ -553,6 +564,7 @@
|
|||
"Error unloading model: {{error}}": "卸載模型錯誤:{{error}}",
|
||||
"Error uploading file: {{error}}": "上傳檔案時發生錯誤:{{error}}",
|
||||
"Evaluations": "評估",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Exa API 金鑰",
|
||||
"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "範例:(&(objectClass=inetOrgPerson)(uid=%s))",
|
||||
"Example: ALL": "範例:ALL",
|
||||
|
@ -592,7 +604,10 @@
|
|||
"Failed to copy link": "複製連結失敗",
|
||||
"Failed to create API Key.": "建立 API 金鑰失敗。",
|
||||
"Failed to delete note": "刪除筆記失敗",
|
||||
"Failed to extract content from the file: {{error}}": "",
|
||||
"Failed to extract content from the file.": "",
|
||||
"Failed to fetch models": "取得模型失敗",
|
||||
"Failed to generate title": "",
|
||||
"Failed to load file content.": "載入檔案內容失敗。",
|
||||
"Failed to read clipboard contents": "讀取剪貼簿內容失敗",
|
||||
"Failed to save connections": "儲存連線失敗",
|
||||
|
@ -678,6 +693,9 @@
|
|||
"Group Name": "群組名稱",
|
||||
"Group updated successfully": "成功更新群組",
|
||||
"Groups": "群組",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "觸覺回饋",
|
||||
"Hello, {{name}}": "您好,{{name}}",
|
||||
"Help": "說明",
|
||||
|
@ -743,6 +761,7 @@
|
|||
"Invalid JSON file": "JSON 檔案無效",
|
||||
"Invalid Tag": "無效標籤",
|
||||
"is typing...": "正在輸入...",
|
||||
"Italic": "",
|
||||
"January": "1 月",
|
||||
"Jina API Key": "Jina API 金鑰",
|
||||
"join our Discord for help.": "加入我們的 Discord 以取得協助。",
|
||||
|
@ -813,6 +832,7 @@
|
|||
"Manage Tool Servers": "管理工具伺服器",
|
||||
"March": "3 月",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "",
|
||||
"Max Speakers": "最大發言者數量",
|
||||
"Max Upload Count": "最大上傳數量",
|
||||
"Max Upload Size": "最大上傳大小",
|
||||
|
@ -866,7 +886,6 @@
|
|||
"Mojeek Search API Key": "Mojeek 搜尋 API 金鑰",
|
||||
"more": "更多",
|
||||
"More": "更多",
|
||||
"My Notes": "我的筆記",
|
||||
"Name": "名稱",
|
||||
"Name your knowledge base": "命名您的知識庫",
|
||||
"Native": "原生",
|
||||
|
@ -950,6 +969,7 @@
|
|||
"openapi.json URL or Path": "openapi.json URL 或路徑",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "或",
|
||||
"Ordered List": "",
|
||||
"Organize your users": "組織您的使用者",
|
||||
"Other": "其他",
|
||||
"OUTPUT": "輸出",
|
||||
|
@ -1098,6 +1118,7 @@
|
|||
"Search Functions": "搜尋函式",
|
||||
"Search Knowledge": "搜尋知識庫",
|
||||
"Search Models": "搜尋模型",
|
||||
"Search Notes": "",
|
||||
"Search options": "搜尋選項",
|
||||
"Search Prompts": "搜尋提示詞",
|
||||
"Search Result Count": "搜尋結果數量",
|
||||
|
@ -1198,6 +1219,7 @@
|
|||
"Stop Generating": "停止生成",
|
||||
"Stop Sequence": "停止序列",
|
||||
"Stream Chat Response": "串流式對話回應",
|
||||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "移除現有 OCR 文字",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "移除 PDF 中現有的 OCR 文字並重新執行 OCR。若啟用「強制執行 OCR」則忽略此選項。預設為 False。",
|
||||
"STT Model": "語音轉文字 (STT) 模型",
|
||||
|
@ -1220,6 +1242,7 @@
|
|||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "尾部自由取樣用於減少輸出結果中較低機率 token 的影響。較高的值(例如:2.0)會減少更多影響,而值為 1.0 時會停用此設定。",
|
||||
"Talk to model": "與模型對話",
|
||||
"Tap to interrupt": "點選以中斷",
|
||||
"Task List": "",
|
||||
"Task Model": "任務模型",
|
||||
"Tasks": "任務",
|
||||
"Tavily API Key": "Tavily API 金鑰",
|
||||
|
@ -1328,6 +1351,7 @@
|
|||
"Unarchive All": "解除封存全部",
|
||||
"Unarchive All Archived Chats": "解除封存全部已封存對話",
|
||||
"Unarchive Chat": "解除封存對話",
|
||||
"Underline": "",
|
||||
"Unloads {{FROM_NOW}}": "於 {{FROM_NOW}} 後卸載",
|
||||
"Unlock mysteries": "解鎖謎題",
|
||||
"Unpin": "取消釘選",
|
||||
|
|
Loading…
Reference in New Issue