mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 04:15:25 +00:00
chore: format
This commit is contained in:
parent
3d50d5ff77
commit
a1d09eae95
66 changed files with 964 additions and 211 deletions
|
|
@ -604,9 +604,7 @@ if WEBSOCKET_REDIS_OPTIONS == "":
|
||||||
WEBSOCKET_REDIS_OPTIONS = None
|
WEBSOCKET_REDIS_OPTIONS = None
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
WEBSOCKET_REDIS_OPTIONS = json.loads(
|
WEBSOCKET_REDIS_OPTIONS = json.loads(WEBSOCKET_REDIS_OPTIONS)
|
||||||
WEBSOCKET_REDIS_OPTIONS
|
|
||||||
)
|
|
||||||
except Exception:
|
except Exception:
|
||||||
log.warning("Invalid WEBSOCKET_REDIS_OPTIONS, defaulting to None")
|
log.warning("Invalid WEBSOCKET_REDIS_OPTIONS, defaulting to None")
|
||||||
WEBSOCKET_REDIS_OPTIONS = None
|
WEBSOCKET_REDIS_OPTIONS = None
|
||||||
|
|
@ -625,8 +623,12 @@ except ValueError:
|
||||||
|
|
||||||
WEBSOCKET_SENTINEL_HOSTS = os.environ.get("WEBSOCKET_SENTINEL_HOSTS", "")
|
WEBSOCKET_SENTINEL_HOSTS = os.environ.get("WEBSOCKET_SENTINEL_HOSTS", "")
|
||||||
WEBSOCKET_SENTINEL_PORT = os.environ.get("WEBSOCKET_SENTINEL_PORT", "26379")
|
WEBSOCKET_SENTINEL_PORT = os.environ.get("WEBSOCKET_SENTINEL_PORT", "26379")
|
||||||
WEBSOCKET_SERVER_LOGGING = os.environ.get("WEBSOCKET_SERVER_LOGGING", "False").lower() == "true"
|
WEBSOCKET_SERVER_LOGGING = (
|
||||||
WEBSOCKET_SERVER_ENGINEIO_LOGGING = os.environ.get("WEBSOCKET_SERVER_LOGGING", "False").lower() == "true"
|
os.environ.get("WEBSOCKET_SERVER_LOGGING", "False").lower() == "true"
|
||||||
|
)
|
||||||
|
WEBSOCKET_SERVER_ENGINEIO_LOGGING = (
|
||||||
|
os.environ.get("WEBSOCKET_SERVER_LOGGING", "False").lower() == "true"
|
||||||
|
)
|
||||||
WEBSOCKET_SERVER_PING_TIMEOUT = os.environ.get("WEBSOCKET_SERVER_PING_TIMEOUT", "20")
|
WEBSOCKET_SERVER_PING_TIMEOUT = os.environ.get("WEBSOCKET_SERVER_PING_TIMEOUT", "20")
|
||||||
try:
|
try:
|
||||||
WEBSOCKET_SERVER_PING_TIMEOUT = int(WEBSOCKET_SERVER_PING_TIMEOUT)
|
WEBSOCKET_SERVER_PING_TIMEOUT = int(WEBSOCKET_SERVER_PING_TIMEOUT)
|
||||||
|
|
|
||||||
|
|
@ -345,7 +345,9 @@ class UsersTable:
|
||||||
with get_db() as db:
|
with get_db() as db:
|
||||||
current_timestamp = int(datetime.datetime.now().timestamp())
|
current_timestamp = int(datetime.datetime.now().timestamp())
|
||||||
today_midnight_timestamp = current_timestamp - (current_timestamp % 86400)
|
today_midnight_timestamp = current_timestamp - (current_timestamp % 86400)
|
||||||
query = db.query(User).filter(User.last_active_at > today_midnight_timestamp)
|
query = db.query(User).filter(
|
||||||
|
User.last_active_at > today_midnight_timestamp
|
||||||
|
)
|
||||||
return query.count()
|
return query.count()
|
||||||
|
|
||||||
def update_user_role_by_id(self, id: str, role: str) -> Optional[UserModel]:
|
def update_user_role_by_id(self, id: str, role: str) -> Optional[UserModel]:
|
||||||
|
|
|
||||||
|
|
@ -209,9 +209,7 @@ class PgvectorClient(VectorDBBase):
|
||||||
index_method = "ivfflat"
|
index_method = "ivfflat"
|
||||||
|
|
||||||
if index_method == "hnsw":
|
if index_method == "hnsw":
|
||||||
index_options = (
|
index_options = f"WITH (m = {PGVECTOR_HNSW_M}, ef_construction = {PGVECTOR_HNSW_EF_CONSTRUCTION})"
|
||||||
f"WITH (m = {PGVECTOR_HNSW_M}, ef_construction = {PGVECTOR_HNSW_EF_CONSTRUCTION})"
|
|
||||||
)
|
|
||||||
else:
|
else:
|
||||||
index_options = f"WITH (lists = {PGVECTOR_IVFFLAT_LISTS})"
|
index_options = f"WITH (lists = {PGVECTOR_IVFFLAT_LISTS})"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -116,19 +116,18 @@ class S3VectorClient(VectorDBBase):
|
||||||
return filtered_metadata
|
return filtered_metadata
|
||||||
|
|
||||||
def has_collection(self, collection_name: str) -> bool:
|
def has_collection(self, collection_name: str) -> bool:
|
||||||
"""
|
"""
|
||||||
Check if a vector index exists using direct lookup.
|
Check if a vector index exists using direct lookup.
|
||||||
This avoids pagination issues with list_indexes() and is significantly faster.
|
This avoids pagination issues with list_indexes() and is significantly faster.
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
self.client.get_index(
|
self.client.get_index(
|
||||||
vectorBucketName=self.bucket_name,
|
vectorBucketName=self.bucket_name, indexName=collection_name
|
||||||
indexName=collection_name
|
)
|
||||||
)
|
return True
|
||||||
return True
|
except Exception as e:
|
||||||
except Exception as e:
|
log.error(f"Error checking if index '{collection_name}' exists: {e}")
|
||||||
log.error(f"Error checking if index '{collection_name}' exists: {e}")
|
return False
|
||||||
return False
|
|
||||||
|
|
||||||
def delete_collection(self, collection_name: str) -> None:
|
def delete_collection(self, collection_name: str) -> None:
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,9 @@ async def create_new_prompt(
|
||||||
user.id, "workspace.prompts", request.app.state.config.USER_PERMISSIONS
|
user.id, "workspace.prompts", request.app.state.config.USER_PERMISSIONS
|
||||||
)
|
)
|
||||||
or has_permission(
|
or has_permission(
|
||||||
user.id, "workspace.prompts_import", request.app.state.config.USER_PERMISSIONS
|
user.id,
|
||||||
|
"workspace.prompts_import",
|
||||||
|
request.app.state.config.USER_PERMISSIONS,
|
||||||
)
|
)
|
||||||
):
|
):
|
||||||
raise HTTPException(
|
raise HTTPException(
|
||||||
|
|
|
||||||
|
|
@ -70,7 +70,9 @@ if WEBSOCKET_MANAGER == "redis":
|
||||||
redis_options=WEBSOCKET_REDIS_OPTIONS,
|
redis_options=WEBSOCKET_REDIS_OPTIONS,
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
mgr = socketio.AsyncRedisManager(WEBSOCKET_REDIS_URL, redis_options=WEBSOCKET_REDIS_OPTIONS)
|
mgr = socketio.AsyncRedisManager(
|
||||||
|
WEBSOCKET_REDIS_URL, redis_options=WEBSOCKET_REDIS_OPTIONS
|
||||||
|
)
|
||||||
sio = socketio.AsyncServer(
|
sio = socketio.AsyncServer(
|
||||||
cors_allowed_origins=SOCKETIO_CORS_ORIGINS,
|
cors_allowed_origins=SOCKETIO_CORS_ORIGINS,
|
||||||
async_mode="asgi",
|
async_mode="asgi",
|
||||||
|
|
|
||||||
|
|
@ -396,11 +396,7 @@
|
||||||
<div>
|
<div>
|
||||||
<div class="py-0.5">
|
<div class="py-0.5">
|
||||||
<div class="flex w-full justify-between">
|
<div class="flex w-full justify-between">
|
||||||
<label
|
<label id="ui-scale-label" class=" self-center text-xs" for="ui-scale-slider">
|
||||||
id="ui-scale-label"
|
|
||||||
class=" self-center text-xs"
|
|
||||||
for="ui-scale-slider"
|
|
||||||
>
|
|
||||||
{$i18n.t('UI Scale')}
|
{$i18n.t('UI Scale')}
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -401,7 +401,8 @@
|
||||||
{:else}
|
{:else}
|
||||||
<a
|
<a
|
||||||
id="sidebar-chat-item"
|
id="sidebar-chat-item"
|
||||||
class=" w-full flex justify-between rounded-xl px-[11px] py-[6px] {id === $chatId || confirmEdit
|
class=" w-full flex justify-between rounded-xl px-[11px] py-[6px] {id === $chatId ||
|
||||||
|
confirmEdit
|
||||||
? 'bg-gray-100 dark:bg-gray-900 selected'
|
? 'bg-gray-100 dark:bg-gray-900 selected'
|
||||||
: selected
|
: selected
|
||||||
? 'bg-gray-100 dark:bg-gray-950 selected'
|
? 'bg-gray-100 dark:bg-gray-950 selected'
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "سيؤدي ضبط هذه الإعدادات إلى تطبيق التغييرات بشكل عام على كافة المستخدمين",
|
"Adjusting these settings will apply changes universally to all users.": "سيؤدي ضبط هذه الإعدادات إلى تطبيق التغييرات بشكل عام على كافة المستخدمين",
|
||||||
"admin": "المشرف",
|
"admin": "المشرف",
|
||||||
"Admin": "",
|
"Admin": "",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API تم أنشاء المفتاح",
|
"API Key created.": "API تم أنشاء المفتاح",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "مفاتيح واجهة برمجة التطبيقات",
|
"API keys": "مفاتيح واجهة برمجة التطبيقات",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "ديسمبر",
|
"December": "ديسمبر",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "الإفتراضي",
|
"Default": "الإفتراضي",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "نموذج التضمين",
|
"Embedding Model": "نموذج التضمين",
|
||||||
"Embedding Model Engine": "تضمين محرك النموذج",
|
"Embedding Model Engine": "تضمين محرك النموذج",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "تم تعيين نموذج التضمين على \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "تم تعيين نموذج التضمين على \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.",
|
||||||
"Enter {{role}} message here": "أدخل رسالة {{role}} هنا",
|
"Enter {{role}} message here": "أدخل رسالة {{role}} هنا",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "ادخل معلومات عنك تريد أن يتذكرها الموديل",
|
"Enter a detail about yourself for your LLMs to recall": "ادخل معلومات عنك تريد أن يتذكرها الموديل",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "",
|
"Export chat (.json)": "",
|
||||||
"Export Chats": "تصدير جميع الدردشات",
|
"Export Chats": "تصدير جميع الدردشات",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "استيراد الدردشات",
|
"Import Chats": "استيراد الدردشات",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "تحديث مهم",
|
"Important Update": "تحديث مهم",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "",
|
"Include": "",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "قم بتضمين علامة `-api` عند تشغيل Stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "قم بتضمين علامة `-api` عند تشغيل Stable-diffusion-webui",
|
||||||
"Includes SharePoint": "يتضمن SharePoint",
|
"Includes SharePoint": "يتضمن SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "معلومات",
|
"Info": "معلومات",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "كلمة المرور الجديدة",
|
"New Password": "كلمة المرور الجديدة",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1646,6 +1656,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "اكتب عنوان URL لحل مشكلة الوجه (تنزيل).",
|
"Type Hugging Face Resolve (Download) URL": "اكتب عنوان URL لحل مشكلة الوجه (تنزيل).",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "",
|
"UI": "",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1719,6 +1730,8 @@
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "تحذير",
|
"Warning": "تحذير",
|
||||||
"Warning:": "تحذير:",
|
"Warning:": "تحذير:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "تعديل هذه الإعدادات سيطبق التغييرات على جميع المستخدمين بشكل عام.",
|
"Adjusting these settings will apply changes universally to all users.": "تعديل هذه الإعدادات سيطبق التغييرات على جميع المستخدمين بشكل عام.",
|
||||||
"admin": "المسؤول",
|
"admin": "المسؤول",
|
||||||
"Admin": "المسؤول",
|
"Admin": "المسؤول",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "تم إنشاء مفتاح واجهة API.",
|
"API Key created.": "تم إنشاء مفتاح واجهة API.",
|
||||||
"API Key Endpoint Restrictions": "قيود نقاط نهاية مفتاح API",
|
"API Key Endpoint Restrictions": "قيود نقاط نهاية مفتاح API",
|
||||||
"API keys": "مفاتيح واجهة برمجة التطبيقات (API)",
|
"API keys": "مفاتيح واجهة برمجة التطبيقات (API)",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "ديسمبر",
|
"December": "ديسمبر",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "افتراضي",
|
"Default": "افتراضي",
|
||||||
"Default (Open AI)": "افتراضي (Open AI)",
|
"Default (Open AI)": "افتراضي (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "نموذج التضمين",
|
"Embedding Model": "نموذج التضمين",
|
||||||
"Embedding Model Engine": "تضمين محرك النموذج",
|
"Embedding Model Engine": "تضمين محرك النموذج",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "تم تعيين نموذج التضمين على \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "تم تعيين نموذج التضمين على \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "تفعيل مفتاح API",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "تفعيل توليد الإكمال التلقائي لرسائل الدردشة",
|
"Enable autocomplete generation for chat messages": "تفعيل توليد الإكمال التلقائي لرسائل الدردشة",
|
||||||
"Enable Code Execution": "تفعيل تنفيذ الكود",
|
"Enable Code Execution": "تفعيل تنفيذ الكود",
|
||||||
"Enable Code Interpreter": "تفعيل مفسر الكود",
|
"Enable Code Interpreter": "تفعيل مفسر الكود",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.",
|
||||||
"Enter {{role}} message here": "أدخل رسالة {{role}} هنا",
|
"Enter {{role}} message here": "أدخل رسالة {{role}} هنا",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "ادخل معلومات عنك تريد أن يتذكرها الموديل",
|
"Enter a detail about yourself for your LLMs to recall": "ادخل معلومات عنك تريد أن يتذكرها الموديل",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "أدخل نقطة نهاية تحليل المستندات",
|
"Enter Document Intelligence Endpoint": "أدخل نقطة نهاية تحليل المستندات",
|
||||||
"Enter Document Intelligence Key": "أدخل مفتاح تحليل المستندات",
|
"Enter Document Intelligence Key": "أدخل مفتاح تحليل المستندات",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "أدخل النطاقات مفصولة بفواصل (مثال: example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "أدخل مفتاح API لـ Exa",
|
"Enter Exa API Key": "أدخل مفتاح API لـ Exa",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "تصدير المحادثة (.json)",
|
"Export chat (.json)": "تصدير المحادثة (.json)",
|
||||||
"Export Chats": "تصدير جميع الدردشات",
|
"Export Chats": "تصدير جميع الدردشات",
|
||||||
"Export Config to JSON File": "تصدير الإعدادات إلى ملف JSON",
|
"Export Config to JSON File": "تصدير الإعدادات إلى ملف JSON",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "تصدير الإعدادات المسبقة",
|
"Export Presets": "تصدير الإعدادات المسبقة",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "تصدير إلى CSV",
|
"Export to CSV": "تصدير إلى CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "استيراد الدردشات",
|
"Import Chats": "استيراد الدردشات",
|
||||||
"Import Config from JSON File": "استيراد الإعدادات من ملف JSON",
|
"Import Config from JSON File": "استيراد الإعدادات من ملف JSON",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "استيراد الإعدادات المسبقة",
|
"Import Presets": "استيراد الإعدادات المسبقة",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "تحديث مهم",
|
"Important Update": "تحديث مهم",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "تضمين",
|
"Include": "تضمين",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "أضف الخيار `--api-auth` عند تشغيل stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "أضف الخيار `--api-auth` عند تشغيل stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "قم بتضمين علامة `-api` عند تشغيل Stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "قم بتضمين علامة `-api` عند تشغيل Stable-diffusion-webui",
|
||||||
"Includes SharePoint": "يتضمن SharePoint",
|
"Includes SharePoint": "يتضمن SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "يؤثر على سرعة استجابة الخوارزمية للتغذية الراجعة من النص المُولد. معدل تعلم منخفض يؤدي إلى تعديلات أبطأ، بينما معدل أعلى يجعلها أكثر استجابة.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "يؤثر على سرعة استجابة الخوارزمية للتغذية الراجعة من النص المُولد. معدل تعلم منخفض يؤدي إلى تعديلات أبطأ، بينما معدل أعلى يجعلها أكثر استجابة.",
|
||||||
"Info": "معلومات",
|
"Info": "معلومات",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "كلمة المرور الجديدة",
|
"New Password": "كلمة المرور الجديدة",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1646,6 +1656,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "اكتب عنوان URL لحل مشكلة الوجه (تنزيل).",
|
"Type Hugging Face Resolve (Download) URL": "اكتب عنوان URL لحل مشكلة الوجه (تنزيل).",
|
||||||
"Uh-oh! There was an issue with the response.": "أوه! حدثت مشكلة في الرد.",
|
"Uh-oh! There was an issue with the response.": "أوه! حدثت مشكلة في الرد.",
|
||||||
"UI": "واجهة المستخدم",
|
"UI": "واجهة المستخدم",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "إلغاء أرشفة الكل",
|
"Unarchive All": "إلغاء أرشفة الكل",
|
||||||
"Unarchive All Archived Chats": "إلغاء أرشفة جميع المحادثات المؤرشفة",
|
"Unarchive All Archived Chats": "إلغاء أرشفة جميع المحادثات المؤرشفة",
|
||||||
"Unarchive Chat": "إلغاء أرشفة المحادثة",
|
"Unarchive Chat": "إلغاء أرشفة المحادثة",
|
||||||
|
|
@ -1719,6 +1730,8 @@
|
||||||
"Voice": "الصوت",
|
"Voice": "الصوت",
|
||||||
"Voice Input": "إدخال صوتي",
|
"Voice Input": "إدخال صوتي",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "تحذير",
|
"Warning": "تحذير",
|
||||||
"Warning:": "تحذير:",
|
"Warning:": "تحذير:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "تحذير: تفعيل هذا الخيار سيسمح للمستخدمين برفع كود عشوائي على الخادم.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "تحذير: تفعيل هذا الخيار سيسمح للمستخدمين برفع كود عشوائي على الخادم.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "При промяна на тези настройки промените се прилагат за всички потребители.",
|
"Adjusting these settings will apply changes universally to all users.": "При промяна на тези настройки промените се прилагат за всички потребители.",
|
||||||
"admin": "админ",
|
"admin": "админ",
|
||||||
"Admin": "Администратор",
|
"Admin": "Администратор",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API Ключ създаден.",
|
"API Key created.": "API Ключ създаден.",
|
||||||
"API Key Endpoint Restrictions": "Ограничения на крайните точки за API Ключ",
|
"API Key Endpoint Restrictions": "Ограничения на крайните точки за API Ключ",
|
||||||
"API keys": "API Ключове",
|
"API keys": "API Ключове",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "Декември",
|
"December": "Декември",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "По подразбиране",
|
"Default": "По подразбиране",
|
||||||
"Default (Open AI)": "По подразбиране (Open AI)",
|
"Default (Open AI)": "По подразбиране (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Модел за вграждане",
|
"Embedding Model": "Модел за вграждане",
|
||||||
"Embedding Model Engine": "Двигател на модела за вграждане",
|
"Embedding Model Engine": "Двигател на модела за вграждане",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Модел за вграждане е настроен на \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Модел за вграждане е настроен на \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "Активиране на API",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Активиране на автоматично довършване на съобщения в чата",
|
"Enable autocomplete generation for chat messages": "Активиране на автоматично довършване на съобщения в чата",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "Активиране на интерпретатор на код",
|
"Enable Code Interpreter": "Активиране на интерпретатор на код",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверете се, че вашият CSV файл включва 4 колони в следния ред: Име, Имейл, Парола, Роля.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверете се, че вашият CSV файл включва 4 колони в следния ред: Име, Имейл, Парола, Роля.",
|
||||||
"Enter {{role}} message here": "Въведете съобщение за {{role}} тук",
|
"Enter {{role}} message here": "Въведете съобщение за {{role}} тук",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Въведете подробности за себе си, за да ги запомнят вашите LLMs",
|
"Enter a detail about yourself for your LLMs to recall": "Въведете подробности за себе си, за да ги запомнят вашите LLMs",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Въведете домейни, разделени със запетаи (напр. example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Въведете API ключ за Exa",
|
"Enter Exa API Key": "Въведете API ключ за Exa",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Експортиране на чат (.json)",
|
"Export chat (.json)": "Експортиране на чат (.json)",
|
||||||
"Export Chats": "Експортване на чатове",
|
"Export Chats": "Експортване на чатове",
|
||||||
"Export Config to JSON File": "Експортиране на конфигурацията в JSON файл",
|
"Export Config to JSON File": "Експортиране на конфигурацията в JSON файл",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Експортиране на предварителни настройки",
|
"Export Presets": "Експортиране на предварителни настройки",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Експортиране в CSV",
|
"Export to CSV": "Експортиране в CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Импортване на чатове",
|
"Import Chats": "Импортване на чатове",
|
||||||
"Import Config from JSON File": "Импортиране на конфигурация от JSON файл",
|
"Import Config from JSON File": "Импортиране на конфигурация от JSON файл",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "Импортиране на предварителни настройки",
|
"Import Presets": "Импортиране на предварителни настройки",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Важна актуализация",
|
"Important Update": "Важна актуализация",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Включи",
|
"Include": "Включи",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "",
|
"Include `--api` flag when running stable-diffusion-webui": "",
|
||||||
"Includes SharePoint": "Включва SharePoint",
|
"Includes SharePoint": "Включва SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "Информация",
|
"Info": "Информация",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "Нова бележка",
|
|
||||||
"New Password": "Нова парола",
|
"New Password": "Нова парола",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Въведете Hugging Face Resolve (Изтегляне) URL",
|
"Type Hugging Face Resolve (Download) URL": "Въведете Hugging Face Resolve (Изтегляне) URL",
|
||||||
"Uh-oh! There was an issue with the response.": "Ох! Имаше проблем с отговора.",
|
"Uh-oh! There was an issue with the response.": "Ох! Имаше проблем с отговора.",
|
||||||
"UI": "Потребителски интерфейс",
|
"UI": "Потребителски интерфейс",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Разархивирай всички",
|
"Unarchive All": "Разархивирай всички",
|
||||||
"Unarchive All Archived Chats": "Разархивирай всички архивирани чатове",
|
"Unarchive All Archived Chats": "Разархивирай всички архивирани чатове",
|
||||||
"Unarchive Chat": "Разархивирай чат",
|
"Unarchive Chat": "Разархивирай чат",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "Глас",
|
"Voice": "Глас",
|
||||||
"Voice Input": "Гласов вход",
|
"Voice Input": "Гласов вход",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Предупреждение",
|
"Warning": "Предупреждение",
|
||||||
"Warning:": "Предупреждение:",
|
"Warning:": "Предупреждение:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Предупреждение: Активирането на това ще позволи на потребителите да качват произволен код на сървъра.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Предупреждение: Активирането на това ще позволи на потребителите да качват произволен код на сървъра.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "এই সেটিংগুলো পরিবর্তন করলে তা সব ইউজারের উপরেই প্রয়োগ করা হবে",
|
"Adjusting these settings will apply changes universally to all users.": "এই সেটিংগুলো পরিবর্তন করলে তা সব ইউজারের উপরেই প্রয়োগ করা হবে",
|
||||||
"admin": "এডমিন",
|
"admin": "এডমিন",
|
||||||
"Admin": "",
|
"Admin": "",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "একটি এপিআই কোড তৈরি করা হয়েছে.",
|
"API Key created.": "একটি এপিআই কোড তৈরি করা হয়েছে.",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "এপিআই কোডস",
|
"API keys": "এপিআই কোডস",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "ডেসেম্বর",
|
"December": "ডেসেম্বর",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "ডিফল্ট",
|
"Default": "ডিফল্ট",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "ইমেজ ইমেবডিং মডেল",
|
"Embedding Model": "ইমেজ ইমেবডিং মডেল",
|
||||||
"Embedding Model Engine": "ইমেজ ইমেবডিং মডেল ইঞ্জিন",
|
"Embedding Model Engine": "ইমেজ ইমেবডিং মডেল ইঞ্জিন",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "ইমেজ ইমেবডিং মডেল সেট করা হয়েছে - \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "ইমেজ ইমেবডিং মডেল সেট করা হয়েছে - \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "আপনার সিএসভি ফাইলটিতে এই ক্রমে 4 টি কলাম অন্তর্ভুক্ত রয়েছে তা নিশ্চিত করুন: নাম, ইমেল, পাসওয়ার্ড, ভূমিকা।.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "আপনার সিএসভি ফাইলটিতে এই ক্রমে 4 টি কলাম অন্তর্ভুক্ত রয়েছে তা নিশ্চিত করুন: নাম, ইমেল, পাসওয়ার্ড, ভূমিকা।.",
|
||||||
"Enter {{role}} message here": "{{role}} মেসেজ এখানে লিখুন",
|
"Enter {{role}} message here": "{{role}} মেসেজ এখানে লিখুন",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "আপনার এলএলএমগুলি স্মরণ করার জন্য নিজের সম্পর্কে একটি বিশদ লিখুন",
|
"Enter a detail about yourself for your LLMs to recall": "আপনার এলএলএমগুলি স্মরণ করার জন্য নিজের সম্পর্কে একটি বিশদ লিখুন",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "",
|
"Export chat (.json)": "",
|
||||||
"Export Chats": "চ্যাটগুলো এক্সপোর্ট করুন",
|
"Export Chats": "চ্যাটগুলো এক্সপোর্ট করুন",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "চ্যাটগুলি ইমপোর্ট করুন",
|
"Import Chats": "চ্যাটগুলি ইমপোর্ট করুন",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "গুরুত্বপূর্ণ আপডেট",
|
"Important Update": "গুরুত্বপূর্ণ আপডেট",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "",
|
"Include": "",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui চালু করার সময় `--api` ফ্ল্যাগ সংযুক্ত করুন",
|
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui চালু করার সময় `--api` ফ্ল্যাগ সংযুক্ত করুন",
|
||||||
"Includes SharePoint": "SharePoint অন্তর্ভুক্ত",
|
"Includes SharePoint": "SharePoint অন্তর্ভুক্ত",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "তথ্য",
|
"Info": "তথ্য",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "নতুন পাসওয়ার্ড",
|
"New Password": "নতুন পাসওয়ার্ড",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face থেকে ডাউনলোড করার ইউআরএল টাইপ করুন",
|
"Type Hugging Face Resolve (Download) URL": "Hugging Face থেকে ডাউনলোড করার ইউআরএল টাইপ করুন",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "",
|
"UI": "",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "সতর্কীকরণ",
|
"Warning": "সতর্কীকরণ",
|
||||||
"Warning:": "সতর্কতা:",
|
"Warning:": "সতর্কতা:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "སྒྲིག་འགོད་འདི་དག་ལེགས་སྒྲིག་བྱས་ན་བེད་སྤྱོད་མཁན་ཡོངས་ལ་འགྱུར་བ་དེ་བཀོལ་སྤྱོད་བྱེད་ངེས།",
|
"Adjusting these settings will apply changes universally to all users.": "སྒྲིག་འགོད་འདི་དག་ལེགས་སྒྲིག་བྱས་ན་བེད་སྤྱོད་མཁན་ཡོངས་ལ་འགྱུར་བ་དེ་བཀོལ་སྤྱོད་བྱེད་ངེས།",
|
||||||
"admin": "དོ་དམ་པ།",
|
"admin": "དོ་དམ་པ།",
|
||||||
"Admin": "དོ་དམ་པ།",
|
"Admin": "དོ་དམ་པ།",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API ལྡེ་མིག་བཟོས་ཟིན།",
|
"API Key created.": "API ལྡེ་མིག་བཟོས་ཟིན།",
|
||||||
"API Key Endpoint Restrictions": "API ལྡེ་མིག་མཇུག་མཐུད་ཚད་བཀག",
|
"API Key Endpoint Restrictions": "API ལྡེ་མིག་མཇུག་མཐུད་ཚད་བཀག",
|
||||||
"API keys": "API ལྡེ་མིག",
|
"API keys": "API ལྡེ་མིག",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "ཟླ་བ་བཅུ་གཉིས་པ།",
|
"December": "ཟླ་བ་བཅུ་གཉིས་པ།",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "སྔོན་སྒྲིག",
|
"Default": "སྔོན་སྒྲིག",
|
||||||
"Default (Open AI)": "སྔོན་སྒྲིག (Open AI)",
|
"Default (Open AI)": "སྔོན་སྒྲིག (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "ཚུད་འཇུག་དཔེ་དབྱིབས།",
|
"Embedding Model": "ཚུད་འཇུག་དཔེ་དབྱིབས།",
|
||||||
"Embedding Model Engine": "ཚུད་འཇུག་དཔེ་དབྱིབས་འཕྲུལ་འཁོར།",
|
"Embedding Model Engine": "ཚུད་འཇུག་དཔེ་དབྱིབས་འཕྲུལ་འཁོར།",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "ཚུད་འཇུག་དཔེ་དབྱིབས་ \"{{embedding_model}}\" ལ་བཀོད་སྒྲིག་བྱས།",
|
"Embedding model set to \"{{embedding_model}}\"": "ཚུད་འཇུག་དཔེ་དབྱིབས་ \"{{embedding_model}}\" ལ་བཀོད་སྒྲིག་བྱས།",
|
||||||
"Enable API Key": "API ལྡེ་མིག་སྒུལ་བསྐྱོད་བྱེད་པ།",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "ཁ་བརྡའི་འཕྲིན་ཡིག་གི་ཆེད་དུ་རང་འཚང་བཟོ་སྐྲུན་སྒུལ་བསྐྱོད་བྱེད་པ།",
|
"Enable autocomplete generation for chat messages": "ཁ་བརྡའི་འཕྲིན་ཡིག་གི་ཆེད་དུ་རང་འཚང་བཟོ་སྐྲུན་སྒུལ་བསྐྱོད་བྱེད་པ།",
|
||||||
"Enable Code Execution": "ཀོཌ་ལག་བསྟར་སྒུལ་བསྐྱོད་བྱེད་པ།",
|
"Enable Code Execution": "ཀོཌ་ལག་བསྟར་སྒུལ་བསྐྱོད་བྱེད་པ།",
|
||||||
"Enable Code Interpreter": "ཀོཌ་འགྲེལ་བཤད་སྒུལ་བསྐྱོད་བྱེད་པ།",
|
"Enable Code Interpreter": "ཀོཌ་འགྲེལ་བཤད་སྒུལ་བསྐྱོད་བྱེད་པ།",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "གནས་སྐབས་ཁ་བརྡ་བཙན་བཀོལ་བྱེད་པ།",
|
"Enforce Temporary Chat": "གནས་སྐབས་ཁ་བརྡ་བཙན་བཀོལ་བྱེད་པ།",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ཁྱེད་ཀྱི་ CSV ཡིག་ཆར་གོ་རིམ་འདི་ལྟར། མིང་། ཡིག་ཟམ། གསང་གྲངས། གནས་ཚད། སྟར་པ་ ༤ ཚུད་ཡོད་པ་ཁག་ཐེག་བྱེད་རོགས།",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ཁྱེད་ཀྱི་ CSV ཡིག་ཆར་གོ་རིམ་འདི་ལྟར། མིང་། ཡིག་ཟམ། གསང་གྲངས། གནས་ཚད། སྟར་པ་ ༤ ཚུད་ཡོད་པ་ཁག་ཐེག་བྱེད་རོགས།",
|
||||||
"Enter {{role}} message here": "{{role}} ཡི་འཕྲིན་འདིར་འཇུག་པ།",
|
"Enter {{role}} message here": "{{role}} ཡི་འཕྲིན་འདིར་འཇུག་པ།",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "ཁྱེད་ཀྱི་ LLMs ཡིས་ཕྱིར་དྲན་ཆེད་དུ་ཁྱེད་རང་གི་སྐོར་གྱི་ཞིབ་ཕྲ་ཞིག་འཇུག་པ།",
|
"Enter a detail about yourself for your LLMs to recall": "ཁྱེད་ཀྱི་ LLMs ཡིས་ཕྱིར་དྲན་ཆེད་དུ་ཁྱེད་རང་གི་སྐོར་གྱི་ཞིབ་ཕྲ་ཞིག་འཇུག་པ།",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Docling སར་བར་གྱི་ URL འཇུག་པ།",
|
"Enter Docling Server URL": "Docling སར་བར་གྱི་ URL འཇུག་པ།",
|
||||||
"Enter Document Intelligence Endpoint": "ཡིག་ཆའི་རིག་ནུས་མཇུག་མཐུད་འཇུག་པ།",
|
"Enter Document Intelligence Endpoint": "ཡིག་ཆའི་རིག་ནུས་མཇུག་མཐུད་འཇུག་པ།",
|
||||||
"Enter Document Intelligence Key": "ཡིག་ཆའི་རིག་ནུས་ལྡེ་མིག་འཇུག་པ།",
|
"Enter Document Intelligence Key": "ཡིག་ཆའི་རིག་ནུས་ལྡེ་མིག་འཇུག་པ།",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "ཚེག་བསྐུངས་ཀྱིས་ལོགས་སུ་བཀར་བའི་ཁྱབ་ཁོངས་འཇུག་པ། (དཔེར་ན། example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Exa API ལྡེ་མིག་འཇུག་པ།",
|
"Enter Exa API Key": "Exa API ལྡེ་མིག་འཇུག་པ།",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "ཁ་བརྡ་ཕྱིར་གཏོང་ (.json)",
|
"Export chat (.json)": "ཁ་བརྡ་ཕྱིར་གཏོང་ (.json)",
|
||||||
"Export Chats": "ཁ་བརྡ་ཕྱིར་གཏོང་།",
|
"Export Chats": "ཁ་བརྡ་ཕྱིར་གཏོང་།",
|
||||||
"Export Config to JSON File": "སྒྲིག་འགོད་ JSON ཡིག་ཆར་ཕྱིར་གཏོང་།",
|
"Export Config to JSON File": "སྒྲིག་འགོད་ JSON ཡིག་ཆར་ཕྱིར་གཏོང་།",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "སྔོན་སྒྲིག་ཕྱིར་གཏོང་།",
|
"Export Presets": "སྔོན་སྒྲིག་ཕྱིར་གཏོང་།",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "CSV ལ་ཕྱིར་གཏོང་།",
|
"Export to CSV": "CSV ལ་ཕྱིར་གཏོང་།",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "ཕྱི་རོལ།",
|
"External": "ཕྱི་རོལ།",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "ཁ་བརྡ་ནང་འདྲེན།",
|
"Import Chats": "ཁ་བརྡ་ནང་འདྲེན།",
|
||||||
"Import Config from JSON File": "JSON ཡིག་ཆ་ནས་སྒྲིག་འགོད་ནང་འདྲེན།",
|
"Import Config from JSON File": "JSON ཡིག་ཆ་ནས་སྒྲིག་འགོད་ནང་འདྲེན།",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "སྔོན་སྒྲིག་ནང་འདྲེན།",
|
"Import Presets": "སྔོན་སྒྲིག་ནང་འདྲེན།",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "གལ་ཆེ་པའི་གསར་སྒྱུར་",
|
"Important Update": "གལ་ཆེ་པའི་གསར་སྒྱུར་",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "ཚུད་པ།",
|
"Include": "ཚུད་པ།",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "stable-diffusion-webui ལག་བསྟར་བྱེད་སྐབས་ `--api-auth` དར་ཆ་ཚུད་པ།",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "stable-diffusion-webui ལག་བསྟར་བྱེད་སྐབས་ `--api-auth` དར་ཆ་ཚུད་པ།",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui ལག་བསྟར་བྱེད་སྐབས་ `--api` དར་ཆ་ཚུད་པ།",
|
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui ལག་བསྟར་བྱེད་སྐབས་ `--api` དར་ཆ་ཚུད་པ།",
|
||||||
"Includes SharePoint": "SharePoint ཚུད་པ།",
|
"Includes SharePoint": "SharePoint ཚུད་པ།",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "བཟོས་པའི་ཡིག་རྐྱང་ནས་ཐོན་པའི་བསམ་འཆར་ལ་ཨང་རྩིས་ཀྱིས་ཇི་ཙམ་མགྱོགས་པོར་ལན་འདེབས་བྱེད་པར་ཤུགས་རྐྱེན་ཐེབས་པ། སྦྱོང་ཚད་དམའ་བས་ལེགས་སྒྲིག་དལ་བ་ཡོང་ངེས། དེ་བཞིན་དུ་སྦྱོང་ཚད་མཐོ་བས་ཨང་རྩིས་དེ་ལན་འདེབས་ཆེ་བ་བཟོ་ངེས།",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "བཟོས་པའི་ཡིག་རྐྱང་ནས་ཐོན་པའི་བསམ་འཆར་ལ་ཨང་རྩིས་ཀྱིས་ཇི་ཙམ་མགྱོགས་པོར་ལན་འདེབས་བྱེད་པར་ཤུགས་རྐྱེན་ཐེབས་པ། སྦྱོང་ཚད་དམའ་བས་ལེགས་སྒྲིག་དལ་བ་ཡོང་ངེས། དེ་བཞིན་དུ་སྦྱོང་ཚད་མཐོ་བས་ཨང་རྩིས་དེ་ལན་འདེབས་ཆེ་བ་བཟོ་ངེས།",
|
||||||
"Info": "གནས་ཚུལ།",
|
"Info": "གནས་ཚུལ།",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "གསང་གྲངས་གསར་པ།",
|
"New Password": "གསང་གྲངས་གསར་པ།",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1641,6 +1651,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ཕབ་ལེན།) URL མནན་པ།",
|
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ཕབ་ལེན།) URL མནན་པ།",
|
||||||
"Uh-oh! There was an issue with the response.": "ཨོའོ། ལན་ལ་དཀའ་ངལ་ཞིག་བྱུང་སོང་།",
|
"Uh-oh! There was an issue with the response.": "ཨོའོ། ལན་ལ་དཀའ་ངལ་ཞིག་བྱུང་སོང་།",
|
||||||
"UI": "UI",
|
"UI": "UI",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "ཡོངས་རྫོགས་ཕྱིར་འདོན།",
|
"Unarchive All": "ཡོངས་རྫོགས་ཕྱིར་འདོན།",
|
||||||
"Unarchive All Archived Chats": "ཡིག་མཛོད་དུ་བཞག་པའི་ཁ་བརྡ་ཡོངས་རྫོགས་ཕྱིར་འདོན།",
|
"Unarchive All Archived Chats": "ཡིག་མཛོད་དུ་བཞག་པའི་ཁ་བརྡ་ཡོངས་རྫོགས་ཕྱིར་འདོན།",
|
||||||
"Unarchive Chat": "ཁ་བརྡ་ཕྱིར་འདོན།",
|
"Unarchive Chat": "ཁ་བརྡ་ཕྱིར་འདོན།",
|
||||||
|
|
@ -1714,6 +1725,8 @@
|
||||||
"Voice": "སྐད།",
|
"Voice": "སྐད།",
|
||||||
"Voice Input": "སྐད་ཀྱི་ནང་འཇུག",
|
"Voice Input": "སྐད་ཀྱི་ནང་འཇུག",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "ཉེན་བརྡ།",
|
"Warning": "ཉེན་བརྡ།",
|
||||||
"Warning:": "ཉེན་བརྡ།:",
|
"Warning:": "ཉེན་བརྡ།:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "ཉེན་བརྡ།: འདི་སྒུལ་བསྐྱོད་བྱས་ན་བེད་སྤྱོད་མཁན་ཚོས་སར་བར་སྟེང་གང་འདོད་ཀྱི་ཀོཌ་སྤར་བར་གནང་བ་སྤྲོད་ངེས།",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "ཉེན་བརྡ།: འདི་སྒུལ་བསྐྱོད་བྱས་ན་བེད་སྤྱོད་མཁན་ཚོས་སར་བར་སྟེང་གང་འདོད་ཀྱི་ཀོཌ་སྤར་བར་གནང་བ་སྤྲོད་ངེས།",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Podešavanje će se primijeniti univerzalno na sve korisnike.",
|
"Adjusting these settings will apply changes universally to all users.": "Podešavanje će se primijeniti univerzalno na sve korisnike.",
|
||||||
"admin": "administrator",
|
"admin": "administrator",
|
||||||
"Admin": "Admin",
|
"Admin": "Admin",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API ključ je stvoren.",
|
"API Key created.": "API ključ je stvoren.",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "API ključevi",
|
"API keys": "API ključevi",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "API Verzija",
|
"API Version": "API Verzija",
|
||||||
"API Version is required": "API verzija je potrebna",
|
"API Version is required": "API verzija je potrebna",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "Decembar",
|
"December": "Decembar",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Zadano",
|
"Default": "Zadano",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Embedding model",
|
"Embedding Model": "Embedding model",
|
||||||
"Embedding Model Engine": "Embedding model pogon",
|
"Embedding Model Engine": "Embedding model pogon",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding model postavljen na \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Embedding model postavljen na \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "Omogući Code Execution",
|
"Enable Code Execution": "Omogući Code Execution",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Provjerite da vaša CSV datoteka uključuje 4 stupca u ovom redoslijedu: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Provjerite da vaša CSV datoteka uključuje 4 stupca u ovom redoslijedu: Name, Email, Password, Role.",
|
||||||
"Enter {{role}} message here": "Unesite {{role}} poruku ovdje",
|
"Enter {{role}} message here": "Unesite {{role}} poruku ovdje",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Unesite pojedinosti o sebi da bi učitali memoriju u LLM",
|
"Enter a detail about yourself for your LLMs to recall": "Unesite pojedinosti o sebi da bi učitali memoriju u LLM",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Izvoz četa (.json)",
|
"Export chat (.json)": "Izvoz četa (.json)",
|
||||||
"Export Chats": "Izvoz razgovora",
|
"Export Chats": "Izvoz razgovora",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Uvoz razgovora",
|
"Import Chats": "Uvoz razgovora",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Važno ažuriranje",
|
"Important Update": "Važno ažuriranje",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "",
|
"Include": "",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Uključite zastavicu `--api` prilikom pokretanja stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Uključite zastavicu `--api` prilikom pokretanja stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Uključuje SharePoint",
|
"Includes SharePoint": "Uključuje SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "Informacije",
|
"Info": "Informacije",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "Nova lozinka",
|
"New Password": "Nova lozinka",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1643,6 +1653,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Upišite Hugging Face Resolve (Download) URL",
|
"Type Hugging Face Resolve (Download) URL": "Upišite Hugging Face Resolve (Download) URL",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "",
|
"UI": "",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1716,6 +1727,8 @@
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Upozorenje",
|
"Warning": "Upozorenje",
|
||||||
"Warning:": "Upozorenje:",
|
"Warning:": "Upozorenje:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "Configuració addicional",
|
"Additional Config": "Configuració addicional",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Opcions de configuració addicionals per al marcador. Hauria de ser una cadena JSON amb parelles clau-valor. Per exemple, '{\"key\": \"value\"}'. Les claus compatibles inclouen: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Opcions de configuració addicionals per al marcador. Hauria de ser una cadena JSON amb parelles clau-valor. Per exemple, '{\"key\": \"value\"}'. Les claus compatibles inclouen: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
|
||||||
"Additional Parameters": "Paràmetres addicionals",
|
"Additional Parameters": "Paràmetres addicionals",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Si ajustes aquesta preferència, els canvis s'aplicaran de manera universal a tots els usuaris.",
|
"Adjusting these settings will apply changes universally to all users.": "Si ajustes aquesta preferència, els canvis s'aplicaran de manera universal a tots els usuaris.",
|
||||||
"admin": "administrador",
|
"admin": "administrador",
|
||||||
"Admin": "Administrador",
|
"Admin": "Administrador",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "clau API creada.",
|
"API Key created.": "clau API creada.",
|
||||||
"API Key Endpoint Restrictions": "Restriccions del punt d'accés de la Clau API",
|
"API Key Endpoint Restrictions": "Restriccions del punt d'accés de la Clau API",
|
||||||
"API keys": "Claus de l'API",
|
"API keys": "Claus de l'API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "Mode API",
|
"API Mode": "Mode API",
|
||||||
"API Version": "Versió de l'API",
|
"API Version": "Versió de l'API",
|
||||||
"API Version is required": "Versió API requerida",
|
"API Version is required": "Versió API requerida",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "API de Datalab Marker",
|
"Datalab Marker API": "API de Datalab Marker",
|
||||||
"DD/MM/YYYY": "DD/MM/YYYY",
|
"DD/MM/YYYY": "DD/MM/YYYY",
|
||||||
"December": "Desembre",
|
"December": "Desembre",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "Deepgram",
|
"Deepgram": "Deepgram",
|
||||||
"Default": "Per defecte",
|
"Default": "Per defecte",
|
||||||
"Default (Open AI)": "Per defecte (Open AI)",
|
"Default (Open AI)": "Per defecte (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Model d'incrustació",
|
"Embedding Model": "Model d'incrustació",
|
||||||
"Embedding Model Engine": "Motor de model d'incrustació",
|
"Embedding Model Engine": "Motor de model d'incrustació",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Model d'incrustació configurat a \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Model d'incrustació configurat a \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "Activar la Clau API",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Activar la generació automàtica per als missatges del xat",
|
"Enable autocomplete generation for chat messages": "Activar la generació automàtica per als missatges del xat",
|
||||||
"Enable Code Execution": "Permetre l'execució de codi",
|
"Enable Code Execution": "Permetre l'execució de codi",
|
||||||
"Enable Code Interpreter": "Activar l'intèrpret de codi",
|
"Enable Code Interpreter": "Activar l'intèrpret de codi",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "URL de connexió",
|
"Endpoint URL": "URL de connexió",
|
||||||
"Enforce Temporary Chat": "Forçar els xats temporals",
|
"Enforce Temporary Chat": "Forçar els xats temporals",
|
||||||
"Enhance": "Millorar",
|
"Enhance": "Millorar",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assegura't que els teus fitxers CSV inclouen 4 columnes en aquest ordre: Nom, Correu electrònic, Contrasenya, Rol.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assegura't que els teus fitxers CSV inclouen 4 columnes en aquest ordre: Nom, Correu electrònic, Contrasenya, Rol.",
|
||||||
"Enter {{role}} message here": "Introdueix aquí el missatge de {{role}}",
|
"Enter {{role}} message here": "Introdueix aquí el missatge de {{role}}",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Introdueix un detall sobre tu què els teus models de llenguatge puguin recordar",
|
"Enter a detail about yourself for your LLMs to recall": "Introdueix un detall sobre tu què els teus models de llenguatge puguin recordar",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Introdueix la URL del servidor Docling",
|
"Enter Docling Server URL": "Introdueix la URL del servidor Docling",
|
||||||
"Enter Document Intelligence Endpoint": "Introdueix el punt de connexió de Document Intelligence",
|
"Enter Document Intelligence Endpoint": "Introdueix el punt de connexió de Document Intelligence",
|
||||||
"Enter Document Intelligence Key": "Introdueix la clau de Document Intelligence",
|
"Enter Document Intelligence Key": "Introdueix la clau de Document Intelligence",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Introdueix els dominis separats per comes (p. ex. example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Introdueix la clau API de d'EXA",
|
"Enter Exa API Key": "Introdueix la clau API de d'EXA",
|
||||||
"Enter External Document Loader API Key": "Introdueix la clau API de Document Loader",
|
"Enter External Document Loader API Key": "Introdueix la clau API de Document Loader",
|
||||||
"Enter External Document Loader URL": "Introdueix la URL de Document Loader",
|
"Enter External Document Loader URL": "Introdueix la URL de Document Loader",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Exportar el xat (.json)",
|
"Export chat (.json)": "Exportar el xat (.json)",
|
||||||
"Export Chats": "Exportar els xats",
|
"Export Chats": "Exportar els xats",
|
||||||
"Export Config to JSON File": "Exportar la configuració a un arxiu JSON",
|
"Export Config to JSON File": "Exportar la configuració a un arxiu JSON",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Exportar les configuracions",
|
"Export Presets": "Exportar les configuracions",
|
||||||
"Export Prompt Suggestions": "Exportar els suggeriments d'indicació",
|
"Export Prompt Suggestions": "Exportar els suggeriments d'indicació",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Exportar a CSV",
|
"Export to CSV": "Exportar a CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "Exportar els usuaris",
|
"Export Users": "Exportar els usuaris",
|
||||||
"External": "Extern",
|
"External": "Extern",
|
||||||
"External Document Loader URL required.": "Fa falta la URL per a Document Loader",
|
"External Document Loader URL required.": "Fa falta la URL per a Document Loader",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Importar xats",
|
"Import Chats": "Importar xats",
|
||||||
"Import Config from JSON File": "Importar la configuració des d'un arxiu JSON",
|
"Import Config from JSON File": "Importar la configuració des d'un arxiu JSON",
|
||||||
"Import From Link": "Importar des d'un enllaç",
|
"Import From Link": "Importar des d'un enllaç",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Importar nota",
|
"Import Notes": "Importar nota",
|
||||||
"Import Presets": "Importar configuracions",
|
"Import Presets": "Importar configuracions",
|
||||||
"Import Prompt Suggestions": "Importar suggeriments d'indicacions",
|
"Import Prompt Suggestions": "Importar suggeriments d'indicacions",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "Importació correcta",
|
"Import successful": "Importació correcta",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Actualització important",
|
"Important Update": "Actualització important",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "Per forçar l'OCR, cal activar l'OCR.",
|
"In order to force OCR, performing OCR must be enabled.": "Per forçar l'OCR, cal activar l'OCR.",
|
||||||
"Include": "Incloure",
|
"Include": "Incloure",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Inclou `--api-auth` quan executis stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Inclou `--api-auth` quan executis stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Inclou `--api` quan executis stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Inclou `--api` quan executis stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Inclou SharePoint",
|
"Includes SharePoint": "Inclou SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influeix amb la rapidesa amb què l'algoritme respon als comentaris del text generat. Una taxa d'aprenentatge més baixa donarà lloc a ajustos més lents, mentre que una taxa d'aprenentatge més alta farà que l'algorisme sigui més sensible.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influeix amb la rapidesa amb què l'algoritme respon als comentaris del text generat. Una taxa d'aprenentatge més baixa donarà lloc a ajustos més lents, mentre que una taxa d'aprenentatge més alta farà que l'algorisme sigui més sensible.",
|
||||||
"Info": "Informació",
|
"Info": "Informació",
|
||||||
"Initials": "Inicials",
|
"Initials": "Inicials",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "Nova funció",
|
"New Function": "Nova funció",
|
||||||
"New Knowledge": "Nou coneixement",
|
"New Knowledge": "Nou coneixement",
|
||||||
"New Model": "Nou model",
|
"New Model": "Nou model",
|
||||||
"New Note": "Nova nota",
|
|
||||||
"New Password": "Nova contrasenya",
|
"New Password": "Nova contrasenya",
|
||||||
"New Prompt": "Nova indicació",
|
"New Prompt": "Nova indicació",
|
||||||
"New Temporary Chat": "Nou xat temporal",
|
"New Temporary Chat": "Nou xat temporal",
|
||||||
|
|
@ -1643,6 +1653,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Escriu la URL de Resolució (Descàrrega) de Hugging Face",
|
"Type Hugging Face Resolve (Download) URL": "Escriu la URL de Resolució (Descàrrega) de Hugging Face",
|
||||||
"Uh-oh! There was an issue with the response.": "Vaja! Hi ha hagut una incidència amb la resposta.",
|
"Uh-oh! There was an issue with the response.": "Vaja! Hi ha hagut una incidència amb la resposta.",
|
||||||
"UI": "UI",
|
"UI": "UI",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Desarxivar tot",
|
"Unarchive All": "Desarxivar tot",
|
||||||
"Unarchive All Archived Chats": "Desarxivar tots els xats arxivats",
|
"Unarchive All Archived Chats": "Desarxivar tots els xats arxivats",
|
||||||
"Unarchive Chat": "Desarxivar xat",
|
"Unarchive Chat": "Desarxivar xat",
|
||||||
|
|
@ -1716,6 +1727,8 @@
|
||||||
"Voice": "Veu",
|
"Voice": "Veu",
|
||||||
"Voice Input": "Entrada de veu",
|
"Voice Input": "Entrada de veu",
|
||||||
"Voice mode": "Mode de veu",
|
"Voice mode": "Mode de veu",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Avís",
|
"Warning": "Avís",
|
||||||
"Warning:": "Avís:",
|
"Warning:": "Avís:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Avís: Habilitar això permetrà als usuaris penjar codi arbitrari al servidor.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Avís: Habilitar això permetrà als usuaris penjar codi arbitrari al servidor.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Ang pag-adjust niini nga mga setting magamit ang mga pagbag-o sa tanan nga tiggamit.",
|
"Adjusting these settings will apply changes universally to all users.": "Ang pag-adjust niini nga mga setting magamit ang mga pagbag-o sa tanan nga tiggamit.",
|
||||||
"admin": "Administrator",
|
"admin": "Administrator",
|
||||||
"Admin": "",
|
"Admin": "",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "",
|
"API Key created.": "",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "",
|
"API keys": "",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "",
|
"December": "",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Pinaagi sa default",
|
"Default": "Pinaagi sa default",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "",
|
"Embedding Model": "",
|
||||||
"Embedding Model Engine": "",
|
"Embedding Model Engine": "",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "",
|
"Embedding model set to \"{{embedding_model}}\"": "",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
||||||
"Enter {{role}} message here": "Pagsulod sa mensahe {{role}} dinhi",
|
"Enter {{role}} message here": "Pagsulod sa mensahe {{role}} dinhi",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "",
|
"Enter a detail about yourself for your LLMs to recall": "",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "",
|
"Export chat (.json)": "",
|
||||||
"Export Chats": "I-export ang mga chat",
|
"Export Chats": "I-export ang mga chat",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Import nga mga chat",
|
"Import Chats": "Import nga mga chat",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Mahinungdanong update",
|
"Important Update": "Mahinungdanong update",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "",
|
"Include": "",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Iapil ang `--api` nga bandila kung nagdagan nga stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Iapil ang `--api` nga bandila kung nagdagan nga stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Naglakip sa SharePoint",
|
"Includes SharePoint": "Naglakip sa SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "",
|
"Info": "",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "Bag-ong Password",
|
"New Password": "Bag-ong Password",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Pagsulod sa resolusyon (pag-download) URL Hugging Face",
|
"Type Hugging Face Resolve (Download) URL": "Pagsulod sa resolusyon (pag-download) URL Hugging Face",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "",
|
"UI": "",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "",
|
"Warning": "",
|
||||||
"Warning:": "Pahimangno:",
|
"Warning:": "Pahimangno:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "Dodatečná konfigurace",
|
"Additional Config": "Dodatečná konfigurace",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Další možnosti konfigurace pro marker. Měl by to být řetězec JSON s páry klíč-hodnota. Například: '{\"key\": \"value\"}'. Podporované klíče zahrnují: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Další možnosti konfigurace pro marker. Měl by to být řetězec JSON s páry klíč-hodnota. Například: '{\"key\": \"value\"}'. Podporované klíče zahrnují: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Úprava těchto nastavení se projeví u všech uživatelů.",
|
"Adjusting these settings will apply changes universally to all users.": "Úprava těchto nastavení se projeví u všech uživatelů.",
|
||||||
"admin": "administrátor",
|
"admin": "administrátor",
|
||||||
"Admin": "Administrátor",
|
"Admin": "Administrátor",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API klíč byl vytvořen.",
|
"API Key created.": "API klíč byl vytvořen.",
|
||||||
"API Key Endpoint Restrictions": "Omezení koncových bodů API klíče",
|
"API Key Endpoint Restrictions": "Omezení koncových bodů API klíče",
|
||||||
"API keys": "API klíče",
|
"API keys": "API klíče",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "Verze API",
|
"API Version": "Verze API",
|
||||||
"API Version is required": "Verze API je vyžadována",
|
"API Version is required": "Verze API je vyžadována",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "Datalab Marker API",
|
"Datalab Marker API": "Datalab Marker API",
|
||||||
"DD/MM/YYYY": "DD.MM.RRRR",
|
"DD/MM/YYYY": "DD.MM.RRRR",
|
||||||
"December": "Prosinec",
|
"December": "Prosinec",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "Deepgram",
|
"Deepgram": "Deepgram",
|
||||||
"Default": "Výchozí",
|
"Default": "Výchozí",
|
||||||
"Default (Open AI)": "Výchozí (OpenAI)",
|
"Default (Open AI)": "Výchozí (OpenAI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Model pro vektorizaci",
|
"Embedding Model": "Model pro vektorizaci",
|
||||||
"Embedding Model Engine": "Jádro modelu pro vektorizaci",
|
"Embedding Model Engine": "Jádro modelu pro vektorizaci",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Model pro vektorizaci nastaven na \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Model pro vektorizaci nastaven na \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "Povolit API klíč",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Povolit generování automatického dokončování pro zprávy v konverzaci",
|
"Enable autocomplete generation for chat messages": "Povolit generování automatického dokončování pro zprávy v konverzaci",
|
||||||
"Enable Code Execution": "Povolit spouštění kódu",
|
"Enable Code Execution": "Povolit spouštění kódu",
|
||||||
"Enable Code Interpreter": "Povolit interpret kódu",
|
"Enable Code Interpreter": "Povolit interpret kódu",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "URL koncového bodu",
|
"Endpoint URL": "URL koncového bodu",
|
||||||
"Enforce Temporary Chat": "Vynutit dočasnou konverzaci",
|
"Enforce Temporary Chat": "Vynutit dočasnou konverzaci",
|
||||||
"Enhance": "Vylepšit",
|
"Enhance": "Vylepšit",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ujistěte se, že váš CSV soubor obsahuje 4 sloupce v tomto pořadí: Jméno, E-mail, Heslo, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ujistěte se, že váš CSV soubor obsahuje 4 sloupce v tomto pořadí: Jméno, E-mail, Heslo, Role.",
|
||||||
"Enter {{role}} message here": "Zde zadejte zprávu {{role}}",
|
"Enter {{role}} message here": "Zde zadejte zprávu {{role}}",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Zadejte podrobnost o sobě, kterou si vaše LLM mají pamatovat.",
|
"Enter a detail about yourself for your LLMs to recall": "Zadejte podrobnost o sobě, kterou si vaše LLM mají pamatovat.",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Zadejte URL serveru Docling",
|
"Enter Docling Server URL": "Zadejte URL serveru Docling",
|
||||||
"Enter Document Intelligence Endpoint": "Zadejte koncový bod Document Intelligence",
|
"Enter Document Intelligence Endpoint": "Zadejte koncový bod Document Intelligence",
|
||||||
"Enter Document Intelligence Key": "Zadejte klíč pro Document Intelligence",
|
"Enter Document Intelligence Key": "Zadejte klíč pro Document Intelligence",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Zadejte domény oddělené čárkami (např. priklad.cz,stranka.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Zadejte API klíč pro Exa",
|
"Enter Exa API Key": "Zadejte API klíč pro Exa",
|
||||||
"Enter External Document Loader API Key": "Zadejte API klíč pro externí zavaděč dokumentů",
|
"Enter External Document Loader API Key": "Zadejte API klíč pro externí zavaděč dokumentů",
|
||||||
"Enter External Document Loader URL": "Zadejte URL pro externí zavaděč dokumentů",
|
"Enter External Document Loader URL": "Zadejte URL pro externí zavaděč dokumentů",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Exportovat konverzaci (.json)",
|
"Export chat (.json)": "Exportovat konverzaci (.json)",
|
||||||
"Export Chats": "Exportovat konverzace",
|
"Export Chats": "Exportovat konverzace",
|
||||||
"Export Config to JSON File": "Exportovat konfiguraci do souboru JSON",
|
"Export Config to JSON File": "Exportovat konfiguraci do souboru JSON",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Exportovat předvolby",
|
"Export Presets": "Exportovat předvolby",
|
||||||
"Export Prompt Suggestions": "Exportovat návrhy instrukcí",
|
"Export Prompt Suggestions": "Exportovat návrhy instrukcí",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Exportovat do CSV",
|
"Export to CSV": "Exportovat do CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "Exportovat uživatele",
|
"Export Users": "Exportovat uživatele",
|
||||||
"External": "Externí",
|
"External": "Externí",
|
||||||
"External Document Loader URL required.": "Je vyžadována URL externího zavaděče dokumentů.",
|
"External Document Loader URL required.": "Je vyžadována URL externího zavaděče dokumentů.",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Importovat konverzace",
|
"Import Chats": "Importovat konverzace",
|
||||||
"Import Config from JSON File": "Importovat konfiguraci ze souboru JSON",
|
"Import Config from JSON File": "Importovat konfiguraci ze souboru JSON",
|
||||||
"Import From Link": "Importovat z odkazu",
|
"Import From Link": "Importovat z odkazu",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Importovat poznámky",
|
"Import Notes": "Importovat poznámky",
|
||||||
"Import Presets": "Importovat předvolby",
|
"Import Presets": "Importovat předvolby",
|
||||||
"Import Prompt Suggestions": "Importovat návrhy instrukcí",
|
"Import Prompt Suggestions": "Importovat návrhy instrukcí",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Důležitá aktualizace",
|
"Important Update": "Důležitá aktualizace",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Zahrnout",
|
"Include": "Zahrnout",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Při spouštění stable-diffusion-webui použijte přepínač `--api-auth`.",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Při spouštění stable-diffusion-webui použijte přepínač `--api-auth`.",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Při spouštění stable-diffusion-webui použijte přepínač `--api`.",
|
"Include `--api` flag when running stable-diffusion-webui": "Při spouštění stable-diffusion-webui použijte přepínač `--api`.",
|
||||||
"Includes SharePoint": "Zahrnuje SharePoint",
|
"Includes SharePoint": "Zahrnuje SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Ovlivňuje, jak rychle algoritmus reaguje na zpětnou vazbu z generovaného textu. Nižší míra učení povede k pomalejším úpravám, zatímco vyšší míra učení učiní algoritmus citlivějším.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Ovlivňuje, jak rychle algoritmus reaguje na zpětnou vazbu z generovaného textu. Nižší míra učení povede k pomalejším úpravám, zatímco vyšší míra učení učiní algoritmus citlivějším.",
|
||||||
"Info": "Info",
|
"Info": "Info",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "Nová funkce",
|
"New Function": "Nová funkce",
|
||||||
"New Knowledge": "Nová znalost",
|
"New Knowledge": "Nová znalost",
|
||||||
"New Model": "Nový model",
|
"New Model": "Nový model",
|
||||||
"New Note": "Nová poznámka",
|
|
||||||
"New Password": "Nové heslo",
|
"New Password": "Nové heslo",
|
||||||
"New Prompt": "Nová instrukce",
|
"New Prompt": "Nová instrukce",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1644,6 +1654,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Zadejte URL pro stažení z Hugging Face.",
|
"Type Hugging Face Resolve (Download) URL": "Zadejte URL pro stažení z Hugging Face.",
|
||||||
"Uh-oh! There was an issue with the response.": "Jejda! Vyskytl se problém s odpovědí.",
|
"Uh-oh! There was an issue with the response.": "Jejda! Vyskytl se problém s odpovědí.",
|
||||||
"UI": "UI",
|
"UI": "UI",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Zrušit archivaci všech",
|
"Unarchive All": "Zrušit archivaci všech",
|
||||||
"Unarchive All Archived Chats": "Zrušit archivaci všech archivovaných konverzací",
|
"Unarchive All Archived Chats": "Zrušit archivaci všech archivovaných konverzací",
|
||||||
"Unarchive Chat": "Zrušit archivaci konverzace",
|
"Unarchive Chat": "Zrušit archivaci konverzace",
|
||||||
|
|
@ -1717,6 +1728,8 @@
|
||||||
"Voice": "Hlas",
|
"Voice": "Hlas",
|
||||||
"Voice Input": "Hlasový vstup",
|
"Voice Input": "Hlasový vstup",
|
||||||
"Voice mode": "Hlasový režim",
|
"Voice mode": "Hlasový režim",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Varování",
|
"Warning": "Varování",
|
||||||
"Warning:": "Varování:",
|
"Warning:": "Varování:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Varování: Povolení této volby umožní uživatelům nahrávat na server libovolný kód.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Varování: Povolení této volby umožní uživatelům nahrávat na server libovolný kód.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "Yderligere konfiguration",
|
"Additional Config": "Yderligere konfiguration",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Yderligere konfigurationsmuligheder for Marker. Dette skal være en JSON streng med key-value pairs. For eksempel, '{\"key\": \"value\"}'. Tilladte keys omfatter: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Yderligere konfigurationsmuligheder for Marker. Dette skal være en JSON streng med key-value pairs. For eksempel, '{\"key\": \"value\"}'. Tilladte keys omfatter: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
|
||||||
"Additional Parameters": "Yderligere parametre",
|
"Additional Parameters": "Yderligere parametre",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Ændringer af disse indstillinger har konsekvenser for alle brugere.",
|
"Adjusting these settings will apply changes universally to all users.": "Ændringer af disse indstillinger har konsekvenser for alle brugere.",
|
||||||
"admin": "administrator",
|
"admin": "administrator",
|
||||||
"Admin": "Administrator",
|
"Admin": "Administrator",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API nøgle lavet",
|
"API Key created.": "API nøgle lavet",
|
||||||
"API Key Endpoint Restrictions": "API nøgler endpoint forbehold",
|
"API Key Endpoint Restrictions": "API nøgler endpoint forbehold",
|
||||||
"API keys": "API nøgler",
|
"API keys": "API nøgler",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "API tilstand",
|
"API Mode": "API tilstand",
|
||||||
"API Version": "API Version",
|
"API Version": "API Version",
|
||||||
"API Version is required": "API version er påkrævet",
|
"API Version is required": "API version er påkrævet",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "Datalab Marker API",
|
"Datalab Marker API": "Datalab Marker API",
|
||||||
"DD/MM/YYYY": "DD/MM/ÅÅÅÅ",
|
"DD/MM/YYYY": "DD/MM/ÅÅÅÅ",
|
||||||
"December": "december",
|
"December": "december",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "Deepgram",
|
"Deepgram": "Deepgram",
|
||||||
"Default": "Standard",
|
"Default": "Standard",
|
||||||
"Default (Open AI)": "Standard (Open AI)",
|
"Default (Open AI)": "Standard (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Embedding Model",
|
"Embedding Model": "Embedding Model",
|
||||||
"Embedding Model Engine": "Embedding Model engine",
|
"Embedding Model Engine": "Embedding Model engine",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding model sat til \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Embedding model sat til \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "Aktiver API nøgle",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Aktiver autofuldførsel for chatbeskeder",
|
"Enable autocomplete generation for chat messages": "Aktiver autofuldførsel for chatbeskeder",
|
||||||
"Enable Code Execution": "Aktiver kodekørsel",
|
"Enable Code Execution": "Aktiver kodekørsel",
|
||||||
"Enable Code Interpreter": "Aktiver kode interpreter",
|
"Enable Code Interpreter": "Aktiver kode interpreter",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "Endpoint URL",
|
"Endpoint URL": "Endpoint URL",
|
||||||
"Enforce Temporary Chat": "Gennemtving midlertidig chat",
|
"Enforce Temporary Chat": "Gennemtving midlertidig chat",
|
||||||
"Enhance": "Forbedre",
|
"Enhance": "Forbedre",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at din CSV-fil indeholder 4 kolonner i denne rækkefølge: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at din CSV-fil indeholder 4 kolonner i denne rækkefølge: Name, Email, Password, Role.",
|
||||||
"Enter {{role}} message here": "Indtast {{role}} besked her",
|
"Enter {{role}} message here": "Indtast {{role}} besked her",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Indtast en detalje om dig selv, som dine LLMs kan huske",
|
"Enter a detail about yourself for your LLMs to recall": "Indtast en detalje om dig selv, som dine LLMs kan huske",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Indtast Docling Server URL",
|
"Enter Docling Server URL": "Indtast Docling Server URL",
|
||||||
"Enter Document Intelligence Endpoint": "Indtast Dokument Intelligence Endpoint",
|
"Enter Document Intelligence Endpoint": "Indtast Dokument Intelligence Endpoint",
|
||||||
"Enter Document Intelligence Key": "Indtast Dokument Intelligence nøgle",
|
"Enter Document Intelligence Key": "Indtast Dokument Intelligence nøgle",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Indtast domæner adskilt af kommaer (f.eks. example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Indtast Exa API nøgle",
|
"Enter Exa API Key": "Indtast Exa API nøgle",
|
||||||
"Enter External Document Loader API Key": "Indtast External Dokument Loader API nøgle",
|
"Enter External Document Loader API Key": "Indtast External Dokument Loader API nøgle",
|
||||||
"Enter External Document Loader URL": "Indtast External Dokument Loader URL",
|
"Enter External Document Loader URL": "Indtast External Dokument Loader URL",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Eksportér chat (.json)",
|
"Export chat (.json)": "Eksportér chat (.json)",
|
||||||
"Export Chats": "Eksportér chats",
|
"Export Chats": "Eksportér chats",
|
||||||
"Export Config to JSON File": "Eksportér konfiguration til JSON-fil",
|
"Export Config to JSON File": "Eksportér konfiguration til JSON-fil",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Eksportér indstillinger",
|
"Export Presets": "Eksportér indstillinger",
|
||||||
"Export Prompt Suggestions": "Eksportér prompt-forslag",
|
"Export Prompt Suggestions": "Eksportér prompt-forslag",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Eksportér til CSV",
|
"Export to CSV": "Eksportér til CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "Eksportér brugere",
|
"Export Users": "Eksportér brugere",
|
||||||
"External": "Ekstern",
|
"External": "Ekstern",
|
||||||
"External Document Loader URL required.": "External Dokument Loader URL påkrævet.",
|
"External Document Loader URL required.": "External Dokument Loader URL påkrævet.",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Importer chats",
|
"Import Chats": "Importer chats",
|
||||||
"Import Config from JSON File": "Importer konfiguration fra JSON-fil",
|
"Import Config from JSON File": "Importer konfiguration fra JSON-fil",
|
||||||
"Import From Link": "Importer fra et link",
|
"Import From Link": "Importer fra et link",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Importer noter",
|
"Import Notes": "Importer noter",
|
||||||
"Import Presets": "Importer Presets",
|
"Import Presets": "Importer Presets",
|
||||||
"Import Prompt Suggestions": "Importer prompt forslag",
|
"Import Prompt Suggestions": "Importer prompt forslag",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "Importeret",
|
"Import successful": "Importeret",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Vigtig opdatering",
|
"Important Update": "Vigtig opdatering",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "For at gennemtvinge OCR skal udførsel af OCR være slået til.",
|
"In order to force OCR, performing OCR must be enabled.": "For at gennemtvinge OCR skal udførsel af OCR være slået til.",
|
||||||
"Include": "Inkluder",
|
"Include": "Inkluder",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Inkluder `--api-auth` flag, når du kører stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Inkluder `--api-auth` flag, når du kører stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Inkluder `--api` flag, når du kører stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Inkluder `--api` flag, når du kører stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Inkluderer SharePoint",
|
"Includes SharePoint": "Inkluderer SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Påvirker hvor hurtigt algoritmen reagerer på feedback fra den genererede tekst. En lavere indlæringshastighed vil resultere i langsommere justeringer, mens en højere indlæringshastighed vil gøre algoritmen mere responsiv.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Påvirker hvor hurtigt algoritmen reagerer på feedback fra den genererede tekst. En lavere indlæringshastighed vil resultere i langsommere justeringer, mens en højere indlæringshastighed vil gøre algoritmen mere responsiv.",
|
||||||
"Info": "Info",
|
"Info": "Info",
|
||||||
"Initials": "Initialer",
|
"Initials": "Initialer",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "Ny funktion",
|
"New Function": "Ny funktion",
|
||||||
"New Knowledge": "Ny viden",
|
"New Knowledge": "Ny viden",
|
||||||
"New Model": "Ny model",
|
"New Model": "Ny model",
|
||||||
"New Note": "Ny note",
|
|
||||||
"New Password": "Ny adgangskode",
|
"New Password": "Ny adgangskode",
|
||||||
"New Prompt": "Ny prompt",
|
"New Prompt": "Ny prompt",
|
||||||
"New Temporary Chat": "Ny midlertidig chat",
|
"New Temporary Chat": "Ny midlertidig chat",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Indtast Hugging Face Resolve (Download) URL",
|
"Type Hugging Face Resolve (Download) URL": "Indtast Hugging Face Resolve (Download) URL",
|
||||||
"Uh-oh! There was an issue with the response.": "Uh-oh! Der var et problem det det svar.",
|
"Uh-oh! There was an issue with the response.": "Uh-oh! Der var et problem det det svar.",
|
||||||
"UI": "UI",
|
"UI": "UI",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Udpak alle arkiver",
|
"Unarchive All": "Udpak alle arkiver",
|
||||||
"Unarchive All Archived Chats": "Udpak alle arkiverede chats",
|
"Unarchive All Archived Chats": "Udpak alle arkiverede chats",
|
||||||
"Unarchive Chat": "Fjern chat fra arkiv",
|
"Unarchive Chat": "Fjern chat fra arkiv",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "Stemme",
|
"Voice": "Stemme",
|
||||||
"Voice Input": "Stemme Input",
|
"Voice Input": "Stemme Input",
|
||||||
"Voice mode": "Stemme tilstand",
|
"Voice mode": "Stemme tilstand",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Advarsel",
|
"Warning": "Advarsel",
|
||||||
"Warning:": "Advarsel:",
|
"Warning:": "Advarsel:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Advarsel: Hvis du aktiverer dette, vil brugerne kunne uploade vilkårlig kode på serveren.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Advarsel: Hvis du aktiverer dette, vil brugerne kunne uploade vilkårlig kode på serveren.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "Zusätzliche Konfiguration",
|
"Additional Config": "Zusätzliche Konfiguration",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Zusätzliche Konfigurationsoptionen für den Marker. Dies sollte eine JSON-Zeichenfolge mit Schlüssel-Wert-Paaren sein. Zum Beispiel '{\"key\": \"value\"}'. Unterstützte Schlüssel sind: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Zusätzliche Konfigurationsoptionen für den Marker. Dies sollte eine JSON-Zeichenfolge mit Schlüssel-Wert-Paaren sein. Zum Beispiel '{\"key\": \"value\"}'. Unterstützte Schlüssel sind: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
|
||||||
"Additional Parameters": "Weitere Parameter",
|
"Additional Parameters": "Weitere Parameter",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Das Anpassen dieser Einstellungen wird Änderungen universell auf alle Benutzer anwenden.",
|
"Adjusting these settings will apply changes universally to all users.": "Das Anpassen dieser Einstellungen wird Änderungen universell auf alle Benutzer anwenden.",
|
||||||
"admin": "Administrator",
|
"admin": "Administrator",
|
||||||
"Admin": "Administrator",
|
"Admin": "Administrator",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API-Schlüssel erstellt.",
|
"API Key created.": "API-Schlüssel erstellt.",
|
||||||
"API Key Endpoint Restrictions": "API-Schlüssel Endpunkteinschränkungen",
|
"API Key Endpoint Restrictions": "API-Schlüssel Endpunkteinschränkungen",
|
||||||
"API keys": "API-Schlüssel",
|
"API keys": "API-Schlüssel",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "API-Modus",
|
"API Mode": "API-Modus",
|
||||||
"API Version": "API Version",
|
"API Version": "API Version",
|
||||||
"API Version is required": "API-Version ist erforderlich",
|
"API Version is required": "API-Version ist erforderlich",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "Datalab Marker API",
|
"Datalab Marker API": "Datalab Marker API",
|
||||||
"DD/MM/YYYY": "TT/MM/JJJJ",
|
"DD/MM/YYYY": "TT/MM/JJJJ",
|
||||||
"December": "Dezember",
|
"December": "Dezember",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "Deepgram",
|
"Deepgram": "Deepgram",
|
||||||
"Default": "Standard",
|
"Default": "Standard",
|
||||||
"Default (Open AI)": "Standard (Open AI)",
|
"Default (Open AI)": "Standard (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Embedding-Modell",
|
"Embedding Model": "Embedding-Modell",
|
||||||
"Embedding Model Engine": "Embedding-Modell-Engine",
|
"Embedding Model Engine": "Embedding-Modell-Engine",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding-Modell auf \"{{embedding_model}}\" gesetzt",
|
"Embedding model set to \"{{embedding_model}}\"": "Embedding-Modell auf \"{{embedding_model}}\" gesetzt",
|
||||||
"Enable API Key": "API-Schlüssel aktivieren",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Automatische Vervollständigung für Chat-Nachrichten aktivieren",
|
"Enable autocomplete generation for chat messages": "Automatische Vervollständigung für Chat-Nachrichten aktivieren",
|
||||||
"Enable Code Execution": "Codeausführung aktivieren",
|
"Enable Code Execution": "Codeausführung aktivieren",
|
||||||
"Enable Code Interpreter": "Code-Interpreter aktivieren",
|
"Enable Code Interpreter": "Code-Interpreter aktivieren",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "Endpunkt-URL",
|
"Endpoint URL": "Endpunkt-URL",
|
||||||
"Enforce Temporary Chat": "Temporären Chat erzwingen",
|
"Enforce Temporary Chat": "Temporären Chat erzwingen",
|
||||||
"Enhance": "Verbessern",
|
"Enhance": "Verbessern",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Stellen Sie sicher, dass Ihre CSV-Datei 4 Spalten in dieser Reihenfolge enthält: Name, E-Mail, Passwort, Rolle.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Stellen Sie sicher, dass Ihre CSV-Datei 4 Spalten in dieser Reihenfolge enthält: Name, E-Mail, Passwort, Rolle.",
|
||||||
"Enter {{role}} message here": "Geben Sie die {{role}}-Nachricht hier ein",
|
"Enter {{role}} message here": "Geben Sie die {{role}}-Nachricht hier ein",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Geben Sie ein Detail über sich selbst ein, das Ihre Sprachmodelle (LLMs) sich merken sollen",
|
"Enter a detail about yourself for your LLMs to recall": "Geben Sie ein Detail über sich selbst ein, das Ihre Sprachmodelle (LLMs) sich merken sollen",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Docling Server-URL eingeben",
|
"Enter Docling Server URL": "Docling Server-URL eingeben",
|
||||||
"Enter Document Intelligence Endpoint": "Endpunkt für Document Intelligence eingeben",
|
"Enter Document Intelligence Endpoint": "Endpunkt für Document Intelligence eingeben",
|
||||||
"Enter Document Intelligence Key": "Schlüssel für Document Intelligence eingeben",
|
"Enter Document Intelligence Key": "Schlüssel für Document Intelligence eingeben",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Geben Sie die Domains durch Kommas separiert ein (z. B. example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Geben Sie den Exa-API-Schlüssel ein",
|
"Enter Exa API Key": "Geben Sie den Exa-API-Schlüssel ein",
|
||||||
"Enter External Document Loader API Key": "API-Schlüssel für externen Dokumenten-Loader eingeben",
|
"Enter External Document Loader API Key": "API-Schlüssel für externen Dokumenten-Loader eingeben",
|
||||||
"Enter External Document Loader URL": "URL für externen Dokumenten-Loader eingeben",
|
"Enter External Document Loader URL": "URL für externen Dokumenten-Loader eingeben",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Chat exportieren (.json)",
|
"Export chat (.json)": "Chat exportieren (.json)",
|
||||||
"Export Chats": "Chats exportieren",
|
"Export Chats": "Chats exportieren",
|
||||||
"Export Config to JSON File": "Exportiere Konfiguration als JSON-Datei",
|
"Export Config to JSON File": "Exportiere Konfiguration als JSON-Datei",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Voreinstellungen exportieren",
|
"Export Presets": "Voreinstellungen exportieren",
|
||||||
"Export Prompt Suggestions": "Prompt-Vorschläge exportieren",
|
"Export Prompt Suggestions": "Prompt-Vorschläge exportieren",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Als CSV exportieren",
|
"Export to CSV": "Als CSV exportieren",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "Benutzer exportieren",
|
"Export Users": "Benutzer exportieren",
|
||||||
"External": "Extern",
|
"External": "Extern",
|
||||||
"External Document Loader URL required.": "URL für externen Dokumenten-Loader erforderlich.",
|
"External Document Loader URL required.": "URL für externen Dokumenten-Loader erforderlich.",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Chats importieren",
|
"Import Chats": "Chats importieren",
|
||||||
"Import Config from JSON File": "Konfiguration aus JSON-Datei importieren",
|
"Import Config from JSON File": "Konfiguration aus JSON-Datei importieren",
|
||||||
"Import From Link": "Von Link importieren",
|
"Import From Link": "Von Link importieren",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Notizen importieren",
|
"Import Notes": "Notizen importieren",
|
||||||
"Import Presets": "Voreinstellungen importieren",
|
"Import Presets": "Voreinstellungen importieren",
|
||||||
"Import Prompt Suggestions": "Prompt-Vorschläge importieren",
|
"Import Prompt Suggestions": "Prompt-Vorschläge importieren",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "Import erfolgreich",
|
"Import successful": "Import erfolgreich",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Wichtiges Update",
|
"Important Update": "Wichtiges Update",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "Um die OCR erzwingen zu können, muss die Durchführung der OCR aktiviert sein.",
|
"In order to force OCR, performing OCR must be enabled.": "Um die OCR erzwingen zu können, muss die Durchführung der OCR aktiviert sein.",
|
||||||
"Include": "Einschließen",
|
"Include": "Einschließen",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Fügen Sie beim Ausführen von stable-diffusion-webui die Option `--api-auth` hinzu",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Fügen Sie beim Ausführen von stable-diffusion-webui die Option `--api-auth` hinzu",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Fügen Sie beim Ausführen von stable-diffusion-webui die Option `--api` hinzu",
|
"Include `--api` flag when running stable-diffusion-webui": "Fügen Sie beim Ausführen von stable-diffusion-webui die Option `--api` hinzu",
|
||||||
"Includes SharePoint": "Enthält SharePoint",
|
"Includes SharePoint": "Enthält SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Beeinflusst, wie schnell der Algorithmus auf Feedback aus dem generierten Text reagiert. Eine niedrigere Lernrate führt zu langsameren Anpassungen, während eine höhere Lernrate den Algorithmus reaktionsschneller macht.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Beeinflusst, wie schnell der Algorithmus auf Feedback aus dem generierten Text reagiert. Eine niedrigere Lernrate führt zu langsameren Anpassungen, während eine höhere Lernrate den Algorithmus reaktionsschneller macht.",
|
||||||
"Info": "Info",
|
"Info": "Info",
|
||||||
"Initials": "Initialen",
|
"Initials": "Initialen",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "Neue Funktion",
|
"New Function": "Neue Funktion",
|
||||||
"New Knowledge": "Neues Wissen",
|
"New Knowledge": "Neues Wissen",
|
||||||
"New Model": "Neues Modell",
|
"New Model": "Neues Modell",
|
||||||
"New Note": "Neue Notiz",
|
|
||||||
"New Password": "Neues Passwort",
|
"New Password": "Neues Passwort",
|
||||||
"New Prompt": "Neuer Prompt",
|
"New Prompt": "Neuer Prompt",
|
||||||
"New Temporary Chat": "Neuer Temporärer Chat",
|
"New Temporary Chat": "Neuer Temporärer Chat",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Geben Sie die Hugging Face Resolve-URL ein",
|
"Type Hugging Face Resolve (Download) URL": "Geben Sie die Hugging Face Resolve-URL ein",
|
||||||
"Uh-oh! There was an issue with the response.": "Oh nein! Es gab ein Problem mit der Antwort.",
|
"Uh-oh! There was an issue with the response.": "Oh nein! Es gab ein Problem mit der Antwort.",
|
||||||
"UI": "Oberfläche",
|
"UI": "Oberfläche",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Alle wiederherstellen",
|
"Unarchive All": "Alle wiederherstellen",
|
||||||
"Unarchive All Archived Chats": "Alle archivierten Chats wiederherstellen",
|
"Unarchive All Archived Chats": "Alle archivierten Chats wiederherstellen",
|
||||||
"Unarchive Chat": "Chat wiederherstellen",
|
"Unarchive Chat": "Chat wiederherstellen",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "Stimme",
|
"Voice": "Stimme",
|
||||||
"Voice Input": "Spracheingabe",
|
"Voice Input": "Spracheingabe",
|
||||||
"Voice mode": "Sprachmodus",
|
"Voice mode": "Sprachmodus",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Warnung",
|
"Warning": "Warnung",
|
||||||
"Warning:": "Warnung:",
|
"Warning:": "Warnung:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Warnung: Wenn Sie dies aktivieren, können Benutzer beliebigen Code auf dem Server hochladen.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Warnung: Wenn Sie dies aktivieren, können Benutzer beliebigen Code auf dem Server hochladen.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Adjusting these settings will apply changes to all users. Such universal, very wow.",
|
"Adjusting these settings will apply changes universally to all users.": "Adjusting these settings will apply changes to all users. Such universal, very wow.",
|
||||||
"admin": "admin",
|
"admin": "admin",
|
||||||
"Admin": "",
|
"Admin": "",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "",
|
"API Key created.": "",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "",
|
"API keys": "",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "",
|
"December": "",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Default",
|
"Default": "Default",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "",
|
"Embedding Model": "",
|
||||||
"Embedding Model Engine": "",
|
"Embedding Model Engine": "",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "",
|
"Embedding model set to \"{{embedding_model}}\"": "",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
||||||
"Enter {{role}} message here": "Enter {{role}} bork here",
|
"Enter {{role}} message here": "Enter {{role}} bork here",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "",
|
"Enter a detail about yourself for your LLMs to recall": "",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "",
|
"Export chat (.json)": "",
|
||||||
"Export Chats": "Export Barks",
|
"Export Chats": "Export Barks",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Import Barks",
|
"Import Chats": "Import Barks",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Very important update",
|
"Important Update": "Very important update",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "",
|
"Include": "",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Include `--api` flag when running stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Include `--api` flag when running stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Includes SharePoint, much include",
|
"Includes SharePoint": "Includes SharePoint, much include",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "",
|
"Info": "",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "New Barkword",
|
"New Password": "New Barkword",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL much download",
|
"Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL much download",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "",
|
"UI": "",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "",
|
"Warning": "",
|
||||||
"Warning:": "Much warning:",
|
"Warning:": "Much warning:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "Πρόσθετες Παράμετροι",
|
"Additional Parameters": "Πρόσθετες Παράμετροι",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Η ρύθμιση αυτών των παραμέτρων θα εφαρμόσει τις αλλαγές καθολικά σε όλους τους χρήστες.",
|
"Adjusting these settings will apply changes universally to all users.": "Η ρύθμιση αυτών των παραμέτρων θα εφαρμόσει τις αλλαγές καθολικά σε όλους τους χρήστες.",
|
||||||
"admin": "διαχειριστής",
|
"admin": "διαχειριστής",
|
||||||
"Admin": "Διαχειριστής",
|
"Admin": "Διαχειριστής",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "Το κλειδί API δημιουργήθηκε.",
|
"API Key created.": "Το κλειδί API δημιουργήθηκε.",
|
||||||
"API Key Endpoint Restrictions": "Περιορισμοί Κλειδιού API",
|
"API Key Endpoint Restrictions": "Περιορισμοί Κλειδιού API",
|
||||||
"API keys": "κλειδιά API",
|
"API keys": "κλειδιά API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "Έκδοση API",
|
"API Version": "Έκδοση API",
|
||||||
"API Version is required": "Η Έκδοση API είναι απαραίτητη",
|
"API Version is required": "Η Έκδοση API είναι απαραίτητη",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "ΗΗ/ΜΜ/ΕΕΕΕ",
|
"DD/MM/YYYY": "ΗΗ/ΜΜ/ΕΕΕΕ",
|
||||||
"December": "Δεκέμβριος",
|
"December": "Δεκέμβριος",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Προεπιλογή",
|
"Default": "Προεπιλογή",
|
||||||
"Default (Open AI)": "Προεπιλογή (Open AI)",
|
"Default (Open AI)": "Προεπιλογή (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Μοντέλο Ενσωμάτωσης",
|
"Embedding Model": "Μοντέλο Ενσωμάτωσης",
|
||||||
"Embedding Model Engine": "Μηχανή Μοντέλου Ενσωμάτωσης",
|
"Embedding Model Engine": "Μηχανή Μοντέλου Ενσωμάτωσης",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Το μοντέλο ενσωμάτωσης έχει οριστεί σε \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Το μοντέλο ενσωμάτωσης έχει οριστεί σε \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "Ενεργοποίηση API κλειδιού",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Ενεργοποίηση αυτόματης συμπλήρωσης για συνομιλίες",
|
"Enable autocomplete generation for chat messages": "Ενεργοποίηση αυτόματης συμπλήρωσης για συνομιλίες",
|
||||||
"Enable Code Execution": "Ενεργοποίηση Εκτέλεσης Κώδικα",
|
"Enable Code Execution": "Ενεργοποίηση Εκτέλεσης Κώδικα",
|
||||||
"Enable Code Interpreter": "Ενεργοποίηση Διερμηνέα Κώδικα",
|
"Enable Code Interpreter": "Ενεργοποίηση Διερμηνέα Κώδικα",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Βεβαιωθείτε ότι το αρχείο CSV σας περιλαμβάνει 4 στήλες με αυτή τη σειρά: Όνομα, Email, Κωδικός, Ρόλος.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Βεβαιωθείτε ότι το αρχείο CSV σας περιλαμβάνει 4 στήλες με αυτή τη σειρά: Όνομα, Email, Κωδικός, Ρόλος.",
|
||||||
"Enter {{role}} message here": "Εισάγετε το μήνυμα {{role}} εδώ",
|
"Enter {{role}} message here": "Εισάγετε το μήνυμα {{role}} εδώ",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Εισάγετε μια λεπτομέρεια για τον εαυτό σας ώστε τα LLMs να την ανακαλούν",
|
"Enter a detail about yourself for your LLMs to recall": "Εισάγετε μια λεπτομέρεια για τον εαυτό σας ώστε τα LLMs να την ανακαλούν",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Εισάγετε domains χωρισμένα με κόμματα (π.χ. example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "Εισάγετε το API κλειδί του εξωτερικού προγράμματος φόρτωσης εγγράφων",
|
"Enter External Document Loader API Key": "Εισάγετε το API κλειδί του εξωτερικού προγράμματος φόρτωσης εγγράφων",
|
||||||
"Enter External Document Loader URL": "Εισάγετε το URL του εξωτερικού προγράμματος φόρτωσης εγγράφων",
|
"Enter External Document Loader URL": "Εισάγετε το URL του εξωτερικού προγράμματος φόρτωσης εγγράφων",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Εξαγωγή συνομιλίας (.json)",
|
"Export chat (.json)": "Εξαγωγή συνομιλίας (.json)",
|
||||||
"Export Chats": "Εξαγωγή Συνομιλιών",
|
"Export Chats": "Εξαγωγή Συνομιλιών",
|
||||||
"Export Config to JSON File": "Εξαγωγή Διαμόρφωσης σε Αρχείο JSON",
|
"Export Config to JSON File": "Εξαγωγή Διαμόρφωσης σε Αρχείο JSON",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Εξαγωγή Προκαθορισμένων",
|
"Export Presets": "Εξαγωγή Προκαθορισμένων",
|
||||||
"Export Prompt Suggestions": "Εξαγωγή Προτεινόμενων Προτροπών",
|
"Export Prompt Suggestions": "Εξαγωγή Προτεινόμενων Προτροπών",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Εξαγωγή σε CSV",
|
"Export to CSV": "Εξαγωγή σε CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "Εξαγωγή Χρηστών",
|
"Export Users": "Εξαγωγή Χρηστών",
|
||||||
"External": "Εξωτερική",
|
"External": "Εξωτερική",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Εισαγωγή Συνομιλιών",
|
"Import Chats": "Εισαγωγή Συνομιλιών",
|
||||||
"Import Config from JSON File": "Εισαγωγή Διαμόρφωσης από Αρχείο JSON",
|
"Import Config from JSON File": "Εισαγωγή Διαμόρφωσης από Αρχείο JSON",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "Εισαγωγή Προκαθορισμένων",
|
"Import Presets": "Εισαγωγή Προκαθορισμένων",
|
||||||
"Import Prompt Suggestions": "Εισαγωγή Προτεινόμενων Προτροπών",
|
"Import Prompt Suggestions": "Εισαγωγή Προτεινόμενων Προτροπών",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "Εισαγωγή επιτυχής",
|
"Import successful": "Εισαγωγή επιτυχής",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Σημαντική ενημέρωση",
|
"Important Update": "Σημαντική ενημέρωση",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Συμπερίληψη",
|
"Include": "Συμπερίληψη",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Συμπεριλάβετε το flag `--api-auth` όταν τρέχετε το stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Συμπεριλάβετε το flag `--api-auth` όταν τρέχετε το stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Συμπεριλάβετε το flag `--api` όταν τρέχετε το stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Συμπεριλάβετε το flag `--api` όταν τρέχετε το stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Περιλαμβάνει το SharePoint",
|
"Includes SharePoint": "Περιλαμβάνει το SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "Πληροφορίες",
|
"Info": "Πληροφορίες",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "Νέα Λειτουργία",
|
"New Function": "Νέα Λειτουργία",
|
||||||
"New Knowledge": "Νέο Knowledge",
|
"New Knowledge": "Νέο Knowledge",
|
||||||
"New Model": "Νέο Μοντέλο",
|
"New Model": "Νέο Μοντέλο",
|
||||||
"New Note": "Νέα Σημείωση",
|
|
||||||
"New Password": "Νέος Κωδικός",
|
"New Password": "Νέος Κωδικός",
|
||||||
"New Prompt": "Νέα Προτροπή",
|
"New Prompt": "Νέα Προτροπή",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Τύπος URL Ανάλυσης Hugging Face Resolve (Λήψη)",
|
"Type Hugging Face Resolve (Download) URL": "Τύπος URL Ανάλυσης Hugging Face Resolve (Λήψη)",
|
||||||
"Uh-oh! There was an issue with the response.": "Ωχ! Παρουσιάστηκε κάποιο σφάλμα με την απάντηση.",
|
"Uh-oh! There was an issue with the response.": "Ωχ! Παρουσιάστηκε κάποιο σφάλμα με την απάντηση.",
|
||||||
"UI": "Διεπαφή Χρήστη (UI)",
|
"UI": "Διεπαφή Χρήστη (UI)",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Απο-αρχειοθέτηση Όλων",
|
"Unarchive All": "Απο-αρχειοθέτηση Όλων",
|
||||||
"Unarchive All Archived Chats": "Απο-αρχειοθέτηση Όλων των Αρχειοθετημένων Συνομιλιών",
|
"Unarchive All Archived Chats": "Απο-αρχειοθέτηση Όλων των Αρχειοθετημένων Συνομιλιών",
|
||||||
"Unarchive Chat": "Απο-αρχειοθέτηση Συνομιλίας",
|
"Unarchive Chat": "Απο-αρχειοθέτηση Συνομιλίας",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "Φωνή",
|
"Voice": "Φωνή",
|
||||||
"Voice Input": "Εισαγωγή Φωνής",
|
"Voice Input": "Εισαγωγή Φωνής",
|
||||||
"Voice mode": "Λειτουργία Φωνής",
|
"Voice mode": "Λειτουργία Φωνής",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Προειδοποίηση",
|
"Warning": "Προειδοποίηση",
|
||||||
"Warning:": "Προειδοποίηση:",
|
"Warning:": "Προειδοποίηση:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Προειδοποίηση: Η ενεργοποίηση αυτού θα επιτρέψει στους χρήστες να ανεβάσουν αυθαίρετο κώδικα στον διακομιστή.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Προειδοποίηση: Η ενεργοποίηση αυτού θα επιτρέψει στους χρήστες να ανεβάσουν αυθαίρετο κώδικα στον διακομιστή.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "",
|
"Adjusting these settings will apply changes universally to all users.": "",
|
||||||
"admin": "",
|
"admin": "",
|
||||||
"Admin": "",
|
"Admin": "",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "",
|
"API Key created.": "",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "",
|
"API keys": "",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "",
|
"December": "",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "",
|
"Default": "",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "",
|
"Embedding Model": "",
|
||||||
"Embedding Model Engine": "",
|
"Embedding Model Engine": "",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "",
|
"Embedding model set to \"{{embedding_model}}\"": "",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
||||||
"Enter {{role}} message here": "",
|
"Enter {{role}} message here": "",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "",
|
"Enter a detail about yourself for your LLMs to recall": "",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "",
|
"Export chat (.json)": "",
|
||||||
"Export Chats": "",
|
"Export Chats": "",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "",
|
"Import Chats": "",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "",
|
"Important Update": "",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "",
|
"Include": "",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "",
|
"Include `--api` flag when running stable-diffusion-webui": "",
|
||||||
"Includes SharePoint": "",
|
"Includes SharePoint": "",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "",
|
"Info": "",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "",
|
"New Password": "",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "",
|
"Type Hugging Face Resolve (Download) URL": "",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "",
|
"UI": "",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "",
|
"Warning": "",
|
||||||
"Warning:": "",
|
"Warning:": "",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "",
|
"Adjusting these settings will apply changes universally to all users.": "",
|
||||||
"admin": "",
|
"admin": "",
|
||||||
"Admin": "",
|
"Admin": "",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "",
|
"API Key created.": "",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "",
|
"API keys": "",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "",
|
"December": "",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "",
|
"Default": "",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "",
|
"Embedding Model": "",
|
||||||
"Embedding Model Engine": "",
|
"Embedding Model Engine": "",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "",
|
"Embedding model set to \"{{embedding_model}}\"": "",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
||||||
"Enter {{role}} message here": "",
|
"Enter {{role}} message here": "",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "",
|
"Enter a detail about yourself for your LLMs to recall": "",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "",
|
"Export chat (.json)": "",
|
||||||
"Export Chats": "",
|
"Export Chats": "",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -832,9 +839,6 @@
|
||||||
"Hide Model": "",
|
"Hide Model": "",
|
||||||
"High": "",
|
"High": "",
|
||||||
"High Contrast Mode": "",
|
"High Contrast Mode": "",
|
||||||
"Decrease Text Size": "",
|
|
||||||
"Increase Text Size": "",
|
|
||||||
"Text Size": "",
|
|
||||||
"Home": "",
|
"Home": "",
|
||||||
"Host": "",
|
"Host": "",
|
||||||
"How can I help you today?": "",
|
"How can I help you today?": "",
|
||||||
|
|
@ -867,16 +871,20 @@
|
||||||
"Import Chats": "",
|
"Import Chats": "",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "",
|
"Important Update": "",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "",
|
"Include": "",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "",
|
"Include `--api` flag when running stable-diffusion-webui": "",
|
||||||
"Includes SharePoint": "",
|
"Includes SharePoint": "",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "",
|
"Info": "",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1069,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "",
|
"New Password": "",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1645,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "",
|
"Type Hugging Face Resolve (Download) URL": "",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "",
|
"UI": "",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1718,6 +1726,8 @@
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "",
|
"Warning": "",
|
||||||
"Warning:": "",
|
"Warning:": "",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "Config Adicional",
|
"Additional Config": "Config Adicional",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Opciones de configuración adicionales para Marker. Debe ser una cadena JSON con pares clave-valor. Por ejemplo, '{\"key\": \"value\"}'. Las claves soportadas son: disabled_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Opciones de configuración adicionales para Marker. Debe ser una cadena JSON con pares clave-valor. Por ejemplo, '{\"key\": \"value\"}'. Las claves soportadas son: disabled_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
|
||||||
"Additional Parameters": "Parámetros Adicionales",
|
"Additional Parameters": "Parámetros Adicionales",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "El ajuste de estas opciones se aplicará globalmente a todos los usuarios.",
|
"Adjusting these settings will apply changes universally to all users.": "El ajuste de estas opciones se aplicará globalmente a todos los usuarios.",
|
||||||
"admin": "admin",
|
"admin": "admin",
|
||||||
"Admin": "Admin",
|
"Admin": "Admin",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "Clave API creada.",
|
"API Key created.": "Clave API creada.",
|
||||||
"API Key Endpoint Restrictions": "Clave API para Endpoints Restringidos",
|
"API Key Endpoint Restrictions": "Clave API para Endpoints Restringidos",
|
||||||
"API keys": "Claves API",
|
"API keys": "Claves API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "Modo de API",
|
"API Mode": "Modo de API",
|
||||||
"API Version": "Versión API",
|
"API Version": "Versión API",
|
||||||
"API Version is required": "La Versión API es requerida",
|
"API Version is required": "La Versión API es requerida",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "API de Datalab Marker",
|
"Datalab Marker API": "API de Datalab Marker",
|
||||||
"DD/MM/YYYY": "DD/MM/YYYY",
|
"DD/MM/YYYY": "DD/MM/YYYY",
|
||||||
"December": "Diciembre",
|
"December": "Diciembre",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "Deepgram",
|
"Deepgram": "Deepgram",
|
||||||
"Default": "Predeterminado",
|
"Default": "Predeterminado",
|
||||||
"Default (Open AI)": "Predeterminado (Open AI)",
|
"Default (Open AI)": "Predeterminado (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Modelo de Incrustación",
|
"Embedding Model": "Modelo de Incrustación",
|
||||||
"Embedding Model Engine": "Motor del Modelo de Incrustación",
|
"Embedding Model Engine": "Motor del Modelo de Incrustación",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Modelo de Incrustación configurado a \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Modelo de Incrustación configurado a \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "Habilitar Clave API",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Habilitar generación de autocompletado para mensajes de chat",
|
"Enable autocomplete generation for chat messages": "Habilitar generación de autocompletado para mensajes de chat",
|
||||||
"Enable Code Execution": "Habilitar Ejecución de Código",
|
"Enable Code Execution": "Habilitar Ejecución de Código",
|
||||||
"Enable Code Interpreter": "Habilitar Interprete de Código",
|
"Enable Code Interpreter": "Habilitar Interprete de Código",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "Endpoint URL",
|
"Endpoint URL": "Endpoint URL",
|
||||||
"Enforce Temporary Chat": "Forzar el uso de Chat Temporal",
|
"Enforce Temporary Chat": "Forzar el uso de Chat Temporal",
|
||||||
"Enhance": "Mejorar",
|
"Enhance": "Mejorar",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asegúrese de que su archivo CSV incluya 4 columnas en este orden: Nombre, Correo Electrónico, Contraseña, Rol.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asegúrese de que su archivo CSV incluya 4 columnas en este orden: Nombre, Correo Electrónico, Contraseña, Rol.",
|
||||||
"Enter {{role}} message here": "Ingresar mensaje {{role}} aquí",
|
"Enter {{role}} message here": "Ingresar mensaje {{role}} aquí",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Ingresar detalles sobre ti para que los recuerden sus LLMs",
|
"Enter a detail about yourself for your LLMs to recall": "Ingresar detalles sobre ti para que los recuerden sus LLMs",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Ingresar URL del Servidor Docling",
|
"Enter Docling Server URL": "Ingresar URL del Servidor Docling",
|
||||||
"Enter Document Intelligence Endpoint": "Ingresar el Endpoint de Azure Document Intelligence",
|
"Enter Document Intelligence Endpoint": "Ingresar el Endpoint de Azure Document Intelligence",
|
||||||
"Enter Document Intelligence Key": "Ingresar Clave de Azure Document Intelligence",
|
"Enter Document Intelligence Key": "Ingresar Clave de Azure Document Intelligence",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Ingresar dominios separados por comas (p.ej., ejemplo.com,sitio.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Ingresar Clave API de Exa",
|
"Enter Exa API Key": "Ingresar Clave API de Exa",
|
||||||
"Enter External Document Loader API Key": "Ingresar Clave API del Cargador Externo de Documentos",
|
"Enter External Document Loader API Key": "Ingresar Clave API del Cargador Externo de Documentos",
|
||||||
"Enter External Document Loader URL": "Ingresar URL del Cargador Externo de Documentos",
|
"Enter External Document Loader URL": "Ingresar URL del Cargador Externo de Documentos",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Exportar chat (.json)",
|
"Export chat (.json)": "Exportar chat (.json)",
|
||||||
"Export Chats": "Exportar Chats",
|
"Export Chats": "Exportar Chats",
|
||||||
"Export Config to JSON File": "Exportar Configuración a archivo JSON",
|
"Export Config to JSON File": "Exportar Configuración a archivo JSON",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Exportar Preajustes",
|
"Export Presets": "Exportar Preajustes",
|
||||||
"Export Prompt Suggestions": "Exportar Sugerencias de Indicador",
|
"Export Prompt Suggestions": "Exportar Sugerencias de Indicador",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Exportar a CSV",
|
"Export to CSV": "Exportar a CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "Exportar Usuarios",
|
"Export Users": "Exportar Usuarios",
|
||||||
"External": "Externo",
|
"External": "Externo",
|
||||||
"External Document Loader URL required.": "LA URL del Cargador Externo de Documentos es requerida.",
|
"External Document Loader URL required.": "LA URL del Cargador Externo de Documentos es requerida.",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Importar Chats",
|
"Import Chats": "Importar Chats",
|
||||||
"Import Config from JSON File": "Importar Config desde Archivo JSON",
|
"Import Config from JSON File": "Importar Config desde Archivo JSON",
|
||||||
"Import From Link": "Importar desde Enlace",
|
"Import From Link": "Importar desde Enlace",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Importar Notas",
|
"Import Notes": "Importar Notas",
|
||||||
"Import Presets": "Importar Preajustes",
|
"Import Presets": "Importar Preajustes",
|
||||||
"Import Prompt Suggestions": "Importar Sugerencias de Indicador",
|
"Import Prompt Suggestions": "Importar Sugerencias de Indicador",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "Importación realizada correctamente",
|
"Import successful": "Importación realizada correctamente",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Actualización importante",
|
"Important Update": "Actualización importante",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "Para forzar OCR, la opción para realizar OCR debe estar habilitada.",
|
"In order to force OCR, performing OCR must be enabled.": "Para forzar OCR, la opción para realizar OCR debe estar habilitada.",
|
||||||
"Include": "Incluir",
|
"Include": "Incluir",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Incluir el señalizador `--api-auth` al ejecutar stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Incluir el señalizador `--api-auth` al ejecutar stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Incluir el señalizador `--api` al ejecutar stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Incluir el señalizador `--api` al ejecutar stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Incluye SharePoint",
|
"Includes SharePoint": "Incluye SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influye en la rápidez de respuesta a la realimentación desde el texto generado. Una tasa de aprendizaje más baja resulta en un ajustado más lento, mientras que una tasa de aprendizaje más alta hará que el algoritmo sea más reactivo.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influye en la rápidez de respuesta a la realimentación desde el texto generado. Una tasa de aprendizaje más baja resulta en un ajustado más lento, mientras que una tasa de aprendizaje más alta hará que el algoritmo sea más reactivo.",
|
||||||
"Info": "Información",
|
"Info": "Información",
|
||||||
"Initials": "Iniciales",
|
"Initials": "Iniciales",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "Nueva Función",
|
"New Function": "Nueva Función",
|
||||||
"New Knowledge": "Nuevo Conocimiento",
|
"New Knowledge": "Nuevo Conocimiento",
|
||||||
"New Model": "Nuevo Modelo",
|
"New Model": "Nuevo Modelo",
|
||||||
"New Note": "Nueva Nota",
|
|
||||||
"New Password": "Nueva Contraseña",
|
"New Password": "Nueva Contraseña",
|
||||||
"New Prompt": "Nuevo Indicador",
|
"New Prompt": "Nuevo Indicador",
|
||||||
"New Temporary Chat": "Nuevo Chat Temporal",
|
"New Temporary Chat": "Nuevo Chat Temporal",
|
||||||
|
|
@ -1643,6 +1653,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Escribir la URL de Hugging Face Resolve (Descarga)",
|
"Type Hugging Face Resolve (Download) URL": "Escribir la URL de Hugging Face Resolve (Descarga)",
|
||||||
"Uh-oh! There was an issue with the response.": "¡Vaya! Hubo un problema con la respuesta.",
|
"Uh-oh! There was an issue with the response.": "¡Vaya! Hubo un problema con la respuesta.",
|
||||||
"UI": "IU",
|
"UI": "IU",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Desarchivar Todo",
|
"Unarchive All": "Desarchivar Todo",
|
||||||
"Unarchive All Archived Chats": "Desarchivar Todos los Chats Archivados",
|
"Unarchive All Archived Chats": "Desarchivar Todos los Chats Archivados",
|
||||||
"Unarchive Chat": "Desarchivar Chat",
|
"Unarchive Chat": "Desarchivar Chat",
|
||||||
|
|
@ -1716,6 +1727,8 @@
|
||||||
"Voice": "Voz",
|
"Voice": "Voz",
|
||||||
"Voice Input": "Entrada de Voz",
|
"Voice Input": "Entrada de Voz",
|
||||||
"Voice mode": "Modo de Voz",
|
"Voice mode": "Modo de Voz",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Aviso",
|
"Warning": "Aviso",
|
||||||
"Warning:": "Aviso:",
|
"Warning:": "Aviso:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Aviso: Habilitar esto permitirá a los usuarios subir código arbitrario al servidor.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Aviso: Habilitar esto permitirá a los usuarios subir código arbitrario al servidor.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "Täiendav seadistus",
|
"Additional Config": "Täiendav seadistus",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Additional configuration options for marker. This should be a JSON string koos key-value pairs. For example, '{\"võti\": \"value\"}'. Supported keys include: keela_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_lehed, drop_repeated_text, layout_coverage_threshold, merge_threshold, kõrgus_tolerance, gap_threshold, pilt_threshold, min_rida_length, tase_count, vaikimisi_tase",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Additional configuration options for marker. This should be a JSON string koos key-value pairs. For example, '{\"võti\": \"value\"}'. Supported keys include: keela_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_lehed, drop_repeated_text, layout_coverage_threshold, merge_threshold, kõrgus_tolerance, gap_threshold, pilt_threshold, min_rida_length, tase_count, vaikimisi_tase",
|
||||||
"Additional Parameters": "Täiendavad parameetrid",
|
"Additional Parameters": "Täiendavad parameetrid",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Nende seadete kohandamine rakendab muudatused universaalselt kõigile kasutajatele.",
|
"Adjusting these settings will apply changes universally to all users.": "Nende seadete kohandamine rakendab muudatused universaalselt kõigile kasutajatele.",
|
||||||
"admin": "admin",
|
"admin": "admin",
|
||||||
"Admin": "Administraator",
|
"Admin": "Administraator",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API võti loodud.",
|
"API Key created.": "API võti loodud.",
|
||||||
"API Key Endpoint Restrictions": "API võtme lõpp-punkti piirangud",
|
"API Key Endpoint Restrictions": "API võtme lõpp-punkti piirangud",
|
||||||
"API keys": "API võtmed",
|
"API keys": "API võtmed",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "API režiim",
|
"API Mode": "API režiim",
|
||||||
"API Version": "API versioon",
|
"API Version": "API versioon",
|
||||||
"API Version is required": "API versioon on nõutav",
|
"API Version is required": "API versioon on nõutav",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "Datalab Marker API",
|
"Datalab Marker API": "Datalab Marker API",
|
||||||
"DD/MM/YYYY": "PP/KK/AAAA",
|
"DD/MM/YYYY": "PP/KK/AAAA",
|
||||||
"December": "Detsember",
|
"December": "Detsember",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "Deepgram",
|
"Deepgram": "Deepgram",
|
||||||
"Default": "Vaikimisi",
|
"Default": "Vaikimisi",
|
||||||
"Default (Open AI)": "Vaikimisi (Open AI)",
|
"Default (Open AI)": "Vaikimisi (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Manustamise mudel",
|
"Embedding Model": "Manustamise mudel",
|
||||||
"Embedding Model Engine": "Manustamise mudeli mootor",
|
"Embedding Model Engine": "Manustamise mudeli mootor",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Manustamise mudel määratud kui \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Manustamise mudel määratud kui \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "Luba API võti",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Luba automaattäitmise genereerimine vestlussõnumitele",
|
"Enable autocomplete generation for chat messages": "Luba automaattäitmise genereerimine vestlussõnumitele",
|
||||||
"Enable Code Execution": "Luba koodi täitmine",
|
"Enable Code Execution": "Luba koodi täitmine",
|
||||||
"Enable Code Interpreter": "Luba koodi interpretaator",
|
"Enable Code Interpreter": "Luba koodi interpretaator",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "Lõpp-punkt URL",
|
"Endpoint URL": "Lõpp-punkt URL",
|
||||||
"Enforce Temporary Chat": "Enforce Temporary Vestlus",
|
"Enforce Temporary Chat": "Enforce Temporary Vestlus",
|
||||||
"Enhance": "Enhance",
|
"Enhance": "Enhance",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Veenduge, et teie CSV-fail sisaldab 4 veergu selles järjekorras: Nimi, E-post, Parool, Roll.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Veenduge, et teie CSV-fail sisaldab 4 veergu selles järjekorras: Nimi, E-post, Parool, Roll.",
|
||||||
"Enter {{role}} message here": "Sisestage {{role}} sõnum siia",
|
"Enter {{role}} message here": "Sisestage {{role}} sõnum siia",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Sisestage detail enda kohta, mida teie LLM-id saavad meenutada",
|
"Enter a detail about yourself for your LLMs to recall": "Sisestage detail enda kohta, mida teie LLM-id saavad meenutada",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Enter Docling Server URL",
|
"Enter Docling Server URL": "Enter Docling Server URL",
|
||||||
"Enter Document Intelligence Endpoint": "Sisestage dokumendi intelligentsuse lõpp-punkt",
|
"Enter Document Intelligence Endpoint": "Sisestage dokumendi intelligentsuse lõpp-punkt",
|
||||||
"Enter Document Intelligence Key": "Sisestage dokumendi intelligentsuse võti",
|
"Enter Document Intelligence Key": "Sisestage dokumendi intelligentsuse võti",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Sisestage domeenid komadega eraldatult (nt example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Sisestage Exa API võti",
|
"Enter Exa API Key": "Sisestage Exa API võti",
|
||||||
"Enter External Document Loader API Key": "Enter Väline Dokument Loader API Võti",
|
"Enter External Document Loader API Key": "Enter Väline Dokument Loader API Võti",
|
||||||
"Enter External Document Loader URL": "Enter Väline Dokument Loader URL",
|
"Enter External Document Loader URL": "Enter Väline Dokument Loader URL",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Ekspordi vestlus (.json)",
|
"Export chat (.json)": "Ekspordi vestlus (.json)",
|
||||||
"Export Chats": "Ekspordi vestlused",
|
"Export Chats": "Ekspordi vestlused",
|
||||||
"Export Config to JSON File": "Ekspordi seadistus JSON-failina",
|
"Export Config to JSON File": "Ekspordi seadistus JSON-failina",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Ekspordi eelseadistused",
|
"Export Presets": "Ekspordi eelseadistused",
|
||||||
"Export Prompt Suggestions": "Ekspordi vihje soovitused",
|
"Export Prompt Suggestions": "Ekspordi vihje soovitused",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Ekspordi CSV-na",
|
"Export to CSV": "Ekspordi CSV-na",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "Ekspordi kasutajad",
|
"Export Users": "Ekspordi kasutajad",
|
||||||
"External": "Väline",
|
"External": "Väline",
|
||||||
"External Document Loader URL required.": "Välise dokumendilaadija URL on nõutav.",
|
"External Document Loader URL required.": "Välise dokumendilaadija URL on nõutav.",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Impordi vestlused",
|
"Import Chats": "Impordi vestlused",
|
||||||
"Import Config from JSON File": "Impordi seadistus JSON-failist",
|
"Import Config from JSON File": "Impordi seadistus JSON-failist",
|
||||||
"Import From Link": "Impordi lingist",
|
"Import From Link": "Impordi lingist",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Impordi märkmed",
|
"Import Notes": "Impordi märkmed",
|
||||||
"Import Presets": "Impordi eelseadistused",
|
"Import Presets": "Impordi eelseadistused",
|
||||||
"Import Prompt Suggestions": "Impordi vihje soovitused",
|
"Import Prompt Suggestions": "Impordi vihje soovitused",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "Import õnnestus",
|
"Import successful": "Import õnnestus",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Oluline värskendus",
|
"Important Update": "Oluline värskendus",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "OCR-i sundimiseks peab OCR olema lubatud.",
|
"In order to force OCR, performing OCR must be enabled.": "OCR-i sundimiseks peab OCR olema lubatud.",
|
||||||
"Include": "Kaasa",
|
"Include": "Kaasa",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Lisage `--api-auth` lipp stable-diffusion-webui käivitamisel",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Lisage `--api-auth` lipp stable-diffusion-webui käivitamisel",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Lisage `--api` lipp stable-diffusion-webui käivitamisel",
|
"Include `--api` flag when running stable-diffusion-webui": "Lisage `--api` lipp stable-diffusion-webui käivitamisel",
|
||||||
"Includes SharePoint": "Sisaldab SharePointi",
|
"Includes SharePoint": "Sisaldab SharePointi",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Mõjutab, kui kiiresti algoritm reageerib genereeritud teksti tagasisidele. Madalam õppimiskiirus annab tulemuseks aeglasemad kohandused, samas kui kõrgem õppimiskiirus muudab algoritmi tundlikumaks.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Mõjutab, kui kiiresti algoritm reageerib genereeritud teksti tagasisidele. Madalam õppimiskiirus annab tulemuseks aeglasemad kohandused, samas kui kõrgem õppimiskiirus muudab algoritmi tundlikumaks.",
|
||||||
"Info": "Info",
|
"Info": "Info",
|
||||||
"Initials": "Initsiaalid",
|
"Initials": "Initsiaalid",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "Uus funktsioon",
|
"New Function": "Uus funktsioon",
|
||||||
"New Knowledge": "Uued teadmised",
|
"New Knowledge": "Uued teadmised",
|
||||||
"New Model": "Uus mudel",
|
"New Model": "Uus mudel",
|
||||||
"New Note": "Uus märge",
|
|
||||||
"New Password": "Uus parool",
|
"New Password": "Uus parool",
|
||||||
"New Prompt": "Uus vihje",
|
"New Prompt": "Uus vihje",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Sisestage Hugging Face Resolve (Allalaadimise) URL",
|
"Type Hugging Face Resolve (Download) URL": "Sisestage Hugging Face Resolve (Allalaadimise) URL",
|
||||||
"Uh-oh! There was an issue with the response.": "Oi-oi! Vastusega oli probleem.",
|
"Uh-oh! There was an issue with the response.": "Oi-oi! Vastusega oli probleem.",
|
||||||
"UI": "Kasutajaliides",
|
"UI": "Kasutajaliides",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Eemalda kõik arhiivist",
|
"Unarchive All": "Eemalda kõik arhiivist",
|
||||||
"Unarchive All Archived Chats": "Eemalda kõik arhiveeritud vestlused arhiivist",
|
"Unarchive All Archived Chats": "Eemalda kõik arhiveeritud vestlused arhiivist",
|
||||||
"Unarchive Chat": "Eemalda vestlus arhiivist",
|
"Unarchive Chat": "Eemalda vestlus arhiivist",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "Hääl",
|
"Voice": "Hääl",
|
||||||
"Voice Input": "Hääle sisend",
|
"Voice Input": "Hääle sisend",
|
||||||
"Voice mode": "Hääl mode",
|
"Voice mode": "Hääl mode",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Hoiatus",
|
"Warning": "Hoiatus",
|
||||||
"Warning:": "Hoiatus:",
|
"Warning:": "Hoiatus:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Hoiatus: Selle lubamine võimaldab kasutajatel üles laadida suvalist koodi serverisse.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Hoiatus: Selle lubamine võimaldab kasutajatel üles laadida suvalist koodi serverisse.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Ezarpen hauek aldatzeak aldaketak erabiltzaile guztiei aplikatuko dizkie.",
|
"Adjusting these settings will apply changes universally to all users.": "Ezarpen hauek aldatzeak aldaketak erabiltzaile guztiei aplikatuko dizkie.",
|
||||||
"admin": "administratzailea",
|
"admin": "administratzailea",
|
||||||
"Admin": "Administratzailea",
|
"Admin": "Administratzailea",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API Gakoa sortu da.",
|
"API Key created.": "API Gakoa sortu da.",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "API gakoak",
|
"API keys": "API gakoak",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "Abendua",
|
"December": "Abendua",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Lehenetsia",
|
"Default": "Lehenetsia",
|
||||||
"Default (Open AI)": "Lehenetsia (Open AI)",
|
"Default (Open AI)": "Lehenetsia (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Embedding Eredua",
|
"Embedding Model": "Embedding Eredua",
|
||||||
"Embedding Model Engine": "Embedding Eredu Motorea",
|
"Embedding Model Engine": "Embedding Eredu Motorea",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding eredua \"{{embedding_model}}\"-ra ezarri da",
|
"Embedding model set to \"{{embedding_model}}\"": "Embedding eredua \"{{embedding_model}}\"-ra ezarri da",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ziurtatu zure CSV fitxategiak 4 zutabe dituela ordena honetan: Izena, Posta elektronikoa, Pasahitza, Rola.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ziurtatu zure CSV fitxategiak 4 zutabe dituela ordena honetan: Izena, Posta elektronikoa, Pasahitza, Rola.",
|
||||||
"Enter {{role}} message here": "Sartu {{role}} mezua hemen",
|
"Enter {{role}} message here": "Sartu {{role}} mezua hemen",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Sartu zure buruari buruzko xehetasun bat LLMek gogoratzeko",
|
"Enter a detail about yourself for your LLMs to recall": "Sartu zure buruari buruzko xehetasun bat LLMek gogoratzeko",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Esportatu txata (.json)",
|
"Export chat (.json)": "Esportatu txata (.json)",
|
||||||
"Export Chats": "Esportatu Txatak",
|
"Export Chats": "Esportatu Txatak",
|
||||||
"Export Config to JSON File": "Esportatu Konfigurazioa JSON Fitxategira",
|
"Export Config to JSON File": "Esportatu Konfigurazioa JSON Fitxategira",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Esportatu Aurrezarpenak",
|
"Export Presets": "Esportatu Aurrezarpenak",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Esportatu CSVra",
|
"Export to CSV": "Esportatu CSVra",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Inportatu Txatak",
|
"Import Chats": "Inportatu Txatak",
|
||||||
"Import Config from JSON File": "Inportatu Konfigurazioa JSON Fitxategitik",
|
"Import Config from JSON File": "Inportatu Konfigurazioa JSON Fitxategitik",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "Inportatu Aurrezarpenak",
|
"Import Presets": "Inportatu Aurrezarpenak",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Eguneratze garrantzitsua",
|
"Important Update": "Eguneratze garrantzitsua",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Sartu",
|
"Include": "Sartu",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Sartu `--api-auth` bandera stable-diffusion-webui exekutatzean",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Sartu `--api-auth` bandera stable-diffusion-webui exekutatzean",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Sartu `--api` bandera stable-diffusion-webui exekutatzean",
|
"Include `--api` flag when running stable-diffusion-webui": "Sartu `--api` bandera stable-diffusion-webui exekutatzean",
|
||||||
"Includes SharePoint": "SharePoint barne",
|
"Includes SharePoint": "SharePoint barne",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "Informazioa",
|
"Info": "Informazioa",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "Pasahitz berria",
|
"New Password": "Pasahitz berria",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Idatzi Hugging Face Resolve (Deskarga) URLa",
|
"Type Hugging Face Resolve (Download) URL": "Idatzi Hugging Face Resolve (Deskarga) URLa",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "Erabiltzaile interfazea",
|
"UI": "Erabiltzaile interfazea",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Desartxibatu guztiak",
|
"Unarchive All": "Desartxibatu guztiak",
|
||||||
"Unarchive All Archived Chats": "Desartxibatu artxibatutako txat guztiak",
|
"Unarchive All Archived Chats": "Desartxibatu artxibatutako txat guztiak",
|
||||||
"Unarchive Chat": "Desartxibatu txata",
|
"Unarchive Chat": "Desartxibatu txata",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "Ahotsa",
|
"Voice": "Ahotsa",
|
||||||
"Voice Input": "Ahots sarrera",
|
"Voice Input": "Ahots sarrera",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Abisua",
|
"Warning": "Abisua",
|
||||||
"Warning:": "Abisua:",
|
"Warning:": "Abisua:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Abisua: Hau gaitzeak erabiltzaileei zerbitzarian kode arbitrarioa kargatzea ahalbidetuko die.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Abisua: Hau gaitzeak erabiltzaileei zerbitzarian kode arbitrarioa kargatzea ahalbidetuko die.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "تنظیمات اضافی",
|
"Additional Config": "تنظیمات اضافی",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "گزینه\u200cهای پیکربندی اضافی برای مارکر. این باید یک رشته JSON با جفت\u200cهای کلید-مقدار باشد. برای مثال، '{\"key\": \"value\"}'. کلیدهای پشتیبانی شده عبارتند از: disable_links، keep_pageheader_in_output، keep_pagefooter_in_output، filter_blank_pages، drop_repeated_text، layout_coverage_threshold، merge_threshold، height_tolerance، gap_threshold، image_threshold، min_line_length، level_count، default_level",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "گزینه\u200cهای پیکربندی اضافی برای مارکر. این باید یک رشته JSON با جفت\u200cهای کلید-مقدار باشد. برای مثال، '{\"key\": \"value\"}'. کلیدهای پشتیبانی شده عبارتند از: disable_links، keep_pageheader_in_output، keep_pagefooter_in_output، filter_blank_pages، drop_repeated_text، layout_coverage_threshold، merge_threshold، height_tolerance، gap_threshold، image_threshold، min_line_length، level_count، default_level",
|
||||||
"Additional Parameters": "پارامترهای اضافی",
|
"Additional Parameters": "پارامترهای اضافی",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "با تنظیم این تنظیمات، تغییرات به طور کلی برای همه کاربران اعمال می\u200cشود.",
|
"Adjusting these settings will apply changes universally to all users.": "با تنظیم این تنظیمات، تغییرات به طور کلی برای همه کاربران اعمال می\u200cشود.",
|
||||||
"admin": "مدیر",
|
"admin": "مدیر",
|
||||||
"Admin": "مدیر",
|
"Admin": "مدیر",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "کلید API ساخته شد.",
|
"API Key created.": "کلید API ساخته شد.",
|
||||||
"API Key Endpoint Restrictions": "محدودیت\u200cهای نقطه پایانی کلید API",
|
"API Key Endpoint Restrictions": "محدودیت\u200cهای نقطه پایانی کلید API",
|
||||||
"API keys": "کلیدهای API",
|
"API keys": "کلیدهای API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "حالت API",
|
"API Mode": "حالت API",
|
||||||
"API Version": "نسخه API",
|
"API Version": "نسخه API",
|
||||||
"API Version is required": "نسخه API مورد نیاز است",
|
"API Version is required": "نسخه API مورد نیاز است",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "API مارکر دیتا\u200cلب",
|
"Datalab Marker API": "API مارکر دیتا\u200cلب",
|
||||||
"DD/MM/YYYY": "روز/ماه/سال",
|
"DD/MM/YYYY": "روز/ماه/سال",
|
||||||
"December": "دسامبر",
|
"December": "دسامبر",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "دیپ\u200cگرام",
|
"Deepgram": "دیپ\u200cگرام",
|
||||||
"Default": "پیشفرض",
|
"Default": "پیشفرض",
|
||||||
"Default (Open AI)": "پیشفرض (Open AI)",
|
"Default (Open AI)": "پیشفرض (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "مدل پیدائش",
|
"Embedding Model": "مدل پیدائش",
|
||||||
"Embedding Model Engine": "محرک مدل پیدائش",
|
"Embedding Model Engine": "محرک مدل پیدائش",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "مدل پیدائش را به \"{{embedding_model}}\" تنظیم کنید",
|
"Embedding model set to \"{{embedding_model}}\"": "مدل پیدائش را به \"{{embedding_model}}\" تنظیم کنید",
|
||||||
"Enable API Key": "فعال\u200cسازی کلید API",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "فعال\u200cسازی تولید تکمیل خودکار برای پیام\u200cهای چت",
|
"Enable autocomplete generation for chat messages": "فعال\u200cسازی تولید تکمیل خودکار برای پیام\u200cهای چت",
|
||||||
"Enable Code Execution": "فعال\u200cسازی اجرای کد",
|
"Enable Code Execution": "فعال\u200cسازی اجرای کد",
|
||||||
"Enable Code Interpreter": "فعال\u200cسازی مفسر کد",
|
"Enable Code Interpreter": "فعال\u200cسازی مفسر کد",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "آدرس URL نقطه پایانی",
|
"Endpoint URL": "آدرس URL نقطه پایانی",
|
||||||
"Enforce Temporary Chat": "اجبار چت موقت",
|
"Enforce Temporary Chat": "اجبار چت موقت",
|
||||||
"Enhance": "بهبود",
|
"Enhance": "بهبود",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "اطمینان حاصل کنید که فایل CSV شما شامل چهار ستون در این ترتیب است: نام، ایمیل، رمز عبور، نقش.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "اطمینان حاصل کنید که فایل CSV شما شامل چهار ستون در این ترتیب است: نام، ایمیل، رمز عبور، نقش.",
|
||||||
"Enter {{role}} message here": "پیام {{role}} را اینجا وارد کنید",
|
"Enter {{role}} message here": "پیام {{role}} را اینجا وارد کنید",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "برای ذخیره سازی اطلاعات خود، یک توضیح کوتاه درباره خود را وارد کنید",
|
"Enter a detail about yourself for your LLMs to recall": "برای ذخیره سازی اطلاعات خود، یک توضیح کوتاه درباره خود را وارد کنید",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "آدرس سرور Docling را وارد کنید",
|
"Enter Docling Server URL": "آدرس سرور Docling را وارد کنید",
|
||||||
"Enter Document Intelligence Endpoint": "نقطه پایانی هوش سند را وارد کنید",
|
"Enter Document Intelligence Endpoint": "نقطه پایانی هوش سند را وارد کنید",
|
||||||
"Enter Document Intelligence Key": "کلید هوش سند را وارد کنید",
|
"Enter Document Intelligence Key": "کلید هوش سند را وارد کنید",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "دامنه\u200cها را با کاما جدا کنید (مثال: example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "کلید API اکسا را وارد کنید",
|
"Enter Exa API Key": "کلید API اکسا را وارد کنید",
|
||||||
"Enter External Document Loader API Key": "کلید API بارگذار سند خارجی را وارد کنید",
|
"Enter External Document Loader API Key": "کلید API بارگذار سند خارجی را وارد کنید",
|
||||||
"Enter External Document Loader URL": "آدرس URL بارگذار سند خارجی را وارد کنید",
|
"Enter External Document Loader URL": "آدرس URL بارگذار سند خارجی را وارد کنید",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "خروجی گرفتن گفتگو (json)",
|
"Export chat (.json)": "خروجی گرفتن گفتگو (json)",
|
||||||
"Export Chats": "خروجی گرفتن گفتگوها",
|
"Export Chats": "خروجی گرفتن گفتگوها",
|
||||||
"Export Config to JSON File": "برون\u200cریزی پیکربندی به پروندهٔ JSON",
|
"Export Config to JSON File": "برون\u200cریزی پیکربندی به پروندهٔ JSON",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "برون\u200cریزی پیش\u200cتنظیم\u200cها",
|
"Export Presets": "برون\u200cریزی پیش\u200cتنظیم\u200cها",
|
||||||
"Export Prompt Suggestions": "خروجی گرفتن از پیشنهادات پرامپت",
|
"Export Prompt Suggestions": "خروجی گرفتن از پیشنهادات پرامپت",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "برون\u200cریزی به CSV",
|
"Export to CSV": "برون\u200cریزی به CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "خروجی گرفتن از کاربران",
|
"Export Users": "خروجی گرفتن از کاربران",
|
||||||
"External": "خارجی",
|
"External": "خارجی",
|
||||||
"External Document Loader URL required.": "آدرس URL بارگذار سند خارجی مورد نیاز است.",
|
"External Document Loader URL required.": "آدرس URL بارگذار سند خارجی مورد نیاز است.",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "درون\u200cریزی گفتگوها",
|
"Import Chats": "درون\u200cریزی گفتگوها",
|
||||||
"Import Config from JSON File": "درون\u200cریزی از پروندهٔ JSON",
|
"Import Config from JSON File": "درون\u200cریزی از پروندهٔ JSON",
|
||||||
"Import From Link": "وارد کردن از لینک",
|
"Import From Link": "وارد کردن از لینک",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "وارد کردن یادداشت\u200cها",
|
"Import Notes": "وارد کردن یادداشت\u200cها",
|
||||||
"Import Presets": "درون\u200cریزی پیش\u200cتنظیم\u200cها",
|
"Import Presets": "درون\u200cریزی پیش\u200cتنظیم\u200cها",
|
||||||
"Import Prompt Suggestions": "وارد کردن پیشنهادات پرامپت",
|
"Import Prompt Suggestions": "وارد کردن پیشنهادات پرامپت",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "وارد کردن با موفقیت انجام شد",
|
"Import successful": "وارد کردن با موفقیت انجام شد",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "به\u200cروزرسانی مهم",
|
"Important Update": "به\u200cروزرسانی مهم",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "برای اجبار به OCR، انجام OCR باید فعال باشد.",
|
"In order to force OCR, performing OCR must be enabled.": "برای اجبار به OCR، انجام OCR باید فعال باشد.",
|
||||||
"Include": "شامل",
|
"Include": "شامل",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "هنگام اجرای stable-diffusion-webui پرچم `--api-auth` را اضافه کنید",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "هنگام اجرای stable-diffusion-webui پرچم `--api-auth` را اضافه کنید",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "فلگ `--api` را هنکام اجرای stable-diffusion-webui استفاده کنید.",
|
"Include `--api` flag when running stable-diffusion-webui": "فلگ `--api` را هنکام اجرای stable-diffusion-webui استفاده کنید.",
|
||||||
"Includes SharePoint": "شامل SharePoint",
|
"Includes SharePoint": "شامل SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "تأثیر می\u200cگذارد که الگوریتم چقدر سریع به بازخورد متن تولید شده پاسخ می\u200cدهد. نرخ یادگیری پایین\u200cتر منجر به تنظیمات کندتر می\u200cشود، در حالی که نرخ یادگیری بالاتر الگوریتم را پاسخگوتر می\u200cکند.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "تأثیر می\u200cگذارد که الگوریتم چقدر سریع به بازخورد متن تولید شده پاسخ می\u200cدهد. نرخ یادگیری پایین\u200cتر منجر به تنظیمات کندتر می\u200cشود، در حالی که نرخ یادگیری بالاتر الگوریتم را پاسخگوتر می\u200cکند.",
|
||||||
"Info": "اطلاعات",
|
"Info": "اطلاعات",
|
||||||
"Initials": "حروف اول",
|
"Initials": "حروف اول",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "تابع جدید",
|
"New Function": "تابع جدید",
|
||||||
"New Knowledge": "دانش جدید",
|
"New Knowledge": "دانش جدید",
|
||||||
"New Model": "مدل جدید",
|
"New Model": "مدل جدید",
|
||||||
"New Note": "یادداشت جدید",
|
|
||||||
"New Password": "رمز عبور جدید",
|
"New Password": "رمز عبور جدید",
|
||||||
"New Prompt": "پرامپت جدید",
|
"New Prompt": "پرامپت جدید",
|
||||||
"New Temporary Chat": "چت موقت جدید",
|
"New Temporary Chat": "چت موقت جدید",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "مقدار URL دانلود (Resolve) Hugging Face را وارد کنید",
|
"Type Hugging Face Resolve (Download) URL": "مقدار URL دانلود (Resolve) Hugging Face را وارد کنید",
|
||||||
"Uh-oh! There was an issue with the response.": "اوه! مشکلی در پاسخ وجود داشت.",
|
"Uh-oh! There was an issue with the response.": "اوه! مشکلی در پاسخ وجود داشت.",
|
||||||
"UI": "رابط کاربری",
|
"UI": "رابط کاربری",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "خارج کردن همه از آرشیو",
|
"Unarchive All": "خارج کردن همه از آرشیو",
|
||||||
"Unarchive All Archived Chats": "خارج کردن همه چت\u200cهای آرشیو شده از آرشیو",
|
"Unarchive All Archived Chats": "خارج کردن همه چت\u200cهای آرشیو شده از آرشیو",
|
||||||
"Unarchive Chat": "خارج کردن چت از آرشیو",
|
"Unarchive Chat": "خارج کردن چت از آرشیو",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "صوت",
|
"Voice": "صوت",
|
||||||
"Voice Input": "ورودی صوتی",
|
"Voice Input": "ورودی صوتی",
|
||||||
"Voice mode": "حالت صوتی",
|
"Voice mode": "حالت صوتی",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "هشدار",
|
"Warning": "هشدار",
|
||||||
"Warning:": "هشدار",
|
"Warning:": "هشدار",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "هشدار: فعال کردن این گزینه به کاربران اجازه می\u200cدهد کد دلخواه را روی سرور آپلود کنند.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "هشدار: فعال کردن این گزینه به کاربران اجازه می\u200cدهد کد دلخواه را روی سرور آپلود کنند.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "Lisäasetukset",
|
"Additional Config": "Lisäasetukset",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "Lisäparametrit",
|
"Additional Parameters": "Lisäparametrit",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Näiden asetusten säätäminen vaikuttaa kaikkiin käyttäjiin.",
|
"Adjusting these settings will apply changes universally to all users.": "Näiden asetusten säätäminen vaikuttaa kaikkiin käyttäjiin.",
|
||||||
"admin": "hallinta",
|
"admin": "hallinta",
|
||||||
"Admin": "Ylläpito",
|
"Admin": "Ylläpito",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API-avain luotu.",
|
"API Key created.": "API-avain luotu.",
|
||||||
"API Key Endpoint Restrictions": "API-avaimen päätepiste rajoitukset",
|
"API Key Endpoint Restrictions": "API-avaimen päätepiste rajoitukset",
|
||||||
"API keys": "API-avaimet",
|
"API keys": "API-avaimet",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "API-moodi",
|
"API Mode": "API-moodi",
|
||||||
"API Version": "API-versio",
|
"API Version": "API-versio",
|
||||||
"API Version is required": "API-versio vaaditaan",
|
"API Version is required": "API-versio vaaditaan",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "Datalab Marker API",
|
"Datalab Marker API": "Datalab Marker API",
|
||||||
"DD/MM/YYYY": "DD/MM/YYYY",
|
"DD/MM/YYYY": "DD/MM/YYYY",
|
||||||
"December": "joulukuu",
|
"December": "joulukuu",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "Deepgram",
|
"Deepgram": "Deepgram",
|
||||||
"Default": "Oletus",
|
"Default": "Oletus",
|
||||||
"Default (Open AI)": "Oletus (Open AI)",
|
"Default (Open AI)": "Oletus (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Upotusmalli",
|
"Embedding Model": "Upotusmalli",
|
||||||
"Embedding Model Engine": "Upotusmallin moottori",
|
"Embedding Model Engine": "Upotusmallin moottori",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "\"{{embedding_model}}\" valittu upotusmalliksi",
|
"Embedding model set to \"{{embedding_model}}\"": "\"{{embedding_model}}\" valittu upotusmalliksi",
|
||||||
"Enable API Key": "Ota API -avain käyttöön",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Ota automaattinen täydennys käyttöön keskusteluviesteissä",
|
"Enable autocomplete generation for chat messages": "Ota automaattinen täydennys käyttöön keskusteluviesteissä",
|
||||||
"Enable Code Execution": "Ota koodin suoritus käyttöön",
|
"Enable Code Execution": "Ota koodin suoritus käyttöön",
|
||||||
"Enable Code Interpreter": "Ota ohjelmatulkki käyttöön",
|
"Enable Code Interpreter": "Ota ohjelmatulkki käyttöön",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "Päätepiste verkko-osoite",
|
"Endpoint URL": "Päätepiste verkko-osoite",
|
||||||
"Enforce Temporary Chat": "Pakota väliaikaiset keskustelut",
|
"Enforce Temporary Chat": "Pakota väliaikaiset keskustelut",
|
||||||
"Enhance": "Paranna",
|
"Enhance": "Paranna",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Varmista, että CSV-tiedostossasi on 4 saraketta tässä järjestyksessä: Nimi, Sähköposti, Salasana, Rooli.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Varmista, että CSV-tiedostossasi on 4 saraketta tässä järjestyksessä: Nimi, Sähköposti, Salasana, Rooli.",
|
||||||
"Enter {{role}} message here": "Kirjoita {{role}}-viesti tähän",
|
"Enter {{role}} message here": "Kirjoita {{role}}-viesti tähän",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Kirjoita yksityiskohta itsestäsi, jonka LLM-ohjelmat voivat muistaa",
|
"Enter a detail about yourself for your LLMs to recall": "Kirjoita yksityiskohta itsestäsi, jonka LLM-ohjelmat voivat muistaa",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Kirjoita Docling palvelimen verkko-osoite",
|
"Enter Docling Server URL": "Kirjoita Docling palvelimen verkko-osoite",
|
||||||
"Enter Document Intelligence Endpoint": "Kirjoita asiakirja tiedustelun päätepiste",
|
"Enter Document Intelligence Endpoint": "Kirjoita asiakirja tiedustelun päätepiste",
|
||||||
"Enter Document Intelligence Key": "Kirjoiuta asiakirja tiedustelun avain",
|
"Enter Document Intelligence Key": "Kirjoiuta asiakirja tiedustelun avain",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Verkko-osoitteet erotetaan pilkulla (esim. esimerkki.com,sivu.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Kirjoita Exa API -avain",
|
"Enter Exa API Key": "Kirjoita Exa API -avain",
|
||||||
"Enter External Document Loader API Key": "Kirjoita ulkoisen Document Loader API-avain",
|
"Enter External Document Loader API Key": "Kirjoita ulkoisen Document Loader API-avain",
|
||||||
"Enter External Document Loader URL": "Kirjoita ulkoisen Document Loader:n verkko-osoite",
|
"Enter External Document Loader URL": "Kirjoita ulkoisen Document Loader:n verkko-osoite",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Vie keskustelu (.json)",
|
"Export chat (.json)": "Vie keskustelu (.json)",
|
||||||
"Export Chats": "Vie keskustelut",
|
"Export Chats": "Vie keskustelut",
|
||||||
"Export Config to JSON File": "Vie asetukset JSON-tiedostoon",
|
"Export Config to JSON File": "Vie asetukset JSON-tiedostoon",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Vie esiasetukset",
|
"Export Presets": "Vie esiasetukset",
|
||||||
"Export Prompt Suggestions": "Vie kehote ehdotukset",
|
"Export Prompt Suggestions": "Vie kehote ehdotukset",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Vie CSV-tiedostoon",
|
"Export to CSV": "Vie CSV-tiedostoon",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "Vie käyttäjät",
|
"Export Users": "Vie käyttäjät",
|
||||||
"External": "Ulkoiset",
|
"External": "Ulkoiset",
|
||||||
"External Document Loader URL required.": "Ulkoisen Document Loader:n verkko-osoite on vaaditaan.",
|
"External Document Loader URL required.": "Ulkoisen Document Loader:n verkko-osoite on vaaditaan.",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Tuo keskustelut",
|
"Import Chats": "Tuo keskustelut",
|
||||||
"Import Config from JSON File": "Tuo asetukset JSON-tiedostosta",
|
"Import Config from JSON File": "Tuo asetukset JSON-tiedostosta",
|
||||||
"Import From Link": "Tuo verkko-osoitteesta",
|
"Import From Link": "Tuo verkko-osoitteesta",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Tuo muistiinpanoja",
|
"Import Notes": "Tuo muistiinpanoja",
|
||||||
"Import Presets": "Tuo esiasetuksia",
|
"Import Presets": "Tuo esiasetuksia",
|
||||||
"Import Prompt Suggestions": "Tuo kehote ehdotukset",
|
"Import Prompt Suggestions": "Tuo kehote ehdotukset",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "Tuonti onnistui",
|
"Import successful": "Tuonti onnistui",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Tärkeä päivitys",
|
"Important Update": "Tärkeä päivitys",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Sisällytä",
|
"Include": "Sisällytä",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Sisällytä `--api-auth`-lippu ajettaessa stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Sisällytä `--api-auth`-lippu ajettaessa stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Sisällytä `--api`-lippu ajettaessa stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Sisällytä `--api`-lippu ajettaessa stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Sisältää SharePointin",
|
"Includes SharePoint": "Sisältää SharePointin",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Kuinka nopeasti algoritmi mukautuu generoidun tekstin palautteeseen. Alempi oppimisnopeus hidastaa mukautumista, kun taas nopeampi oppimisnopeus tekee algoritmistä reagoivamman.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Kuinka nopeasti algoritmi mukautuu generoidun tekstin palautteeseen. Alempi oppimisnopeus hidastaa mukautumista, kun taas nopeampi oppimisnopeus tekee algoritmistä reagoivamman.",
|
||||||
"Info": "Tiedot",
|
"Info": "Tiedot",
|
||||||
"Initials": "Nimikirjaimet",
|
"Initials": "Nimikirjaimet",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "Uusi toiminto",
|
"New Function": "Uusi toiminto",
|
||||||
"New Knowledge": "Uutta tietoa",
|
"New Knowledge": "Uutta tietoa",
|
||||||
"New Model": "Uusi malli",
|
"New Model": "Uusi malli",
|
||||||
"New Note": "Uusi muistiinpano",
|
|
||||||
"New Password": "Uusi salasana",
|
"New Password": "Uusi salasana",
|
||||||
"New Prompt": "Uusi kehoite",
|
"New Prompt": "Uusi kehoite",
|
||||||
"New Temporary Chat": "Uusi väliaikainen keskustelu",
|
"New Temporary Chat": "Uusi väliaikainen keskustelu",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Kirjoita Hugging Face -resolve-latausosoite",
|
"Type Hugging Face Resolve (Download) URL": "Kirjoita Hugging Face -resolve-latausosoite",
|
||||||
"Uh-oh! There was an issue with the response.": "Voi ei! Vastauksessa ilmeni ongelma.",
|
"Uh-oh! There was an issue with the response.": "Voi ei! Vastauksessa ilmeni ongelma.",
|
||||||
"UI": "Käyttöliittymä",
|
"UI": "Käyttöliittymä",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Pura kaikkien arkistointi",
|
"Unarchive All": "Pura kaikkien arkistointi",
|
||||||
"Unarchive All Archived Chats": "Pura kaikkien arkistoitujen keskustelujen arkistointi",
|
"Unarchive All Archived Chats": "Pura kaikkien arkistoitujen keskustelujen arkistointi",
|
||||||
"Unarchive Chat": "Pura keskustelun arkistointi",
|
"Unarchive Chat": "Pura keskustelun arkistointi",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "Ääni",
|
"Voice": "Ääni",
|
||||||
"Voice Input": "Äänitulolaitteen käyttö",
|
"Voice Input": "Äänitulolaitteen käyttö",
|
||||||
"Voice mode": "Puhetila",
|
"Voice mode": "Puhetila",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Varoitus",
|
"Warning": "Varoitus",
|
||||||
"Warning:": "Varoitus:",
|
"Warning:": "Varoitus:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Varoitus: Tämän käyttöönotto sallii käyttäjien ladata mielivaltaista koodia palvelimelle.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Varoitus: Tämän käyttöönotto sallii käyttäjien ladata mielivaltaista koodia palvelimelle.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "L'ajustement de ces réglages appliquera universellement les changements à tous les utilisateurs.",
|
"Adjusting these settings will apply changes universally to all users.": "L'ajustement de ces réglages appliquera universellement les changements à tous les utilisateurs.",
|
||||||
"admin": "administrateur",
|
"admin": "administrateur",
|
||||||
"Admin": "Administrateur",
|
"Admin": "Administrateur",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "Clé d'API générée.",
|
"API Key created.": "Clé d'API générée.",
|
||||||
"API Key Endpoint Restrictions": "Restrictions des points de terminaison de la clé API",
|
"API Key Endpoint Restrictions": "Restrictions des points de terminaison de la clé API",
|
||||||
"API keys": "Clés d'API",
|
"API keys": "Clés d'API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "Version de l'API",
|
"API Version": "Version de l'API",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "API Datalab Marker",
|
"Datalab Marker API": "API Datalab Marker",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "Décembre",
|
"December": "Décembre",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Par défaut",
|
"Default": "Par défaut",
|
||||||
"Default (Open AI)": "Par défaut (OpenAI)",
|
"Default (Open AI)": "Par défaut (OpenAI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Modèle d'embedding",
|
"Embedding Model": "Modèle d'embedding",
|
||||||
"Embedding Model Engine": "Moteur de modèle d'embedding",
|
"Embedding Model Engine": "Moteur de modèle d'embedding",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Modèle d'embedding défini sur « {{embedding_model}} »",
|
"Embedding model set to \"{{embedding_model}}\"": "Modèle d'embedding défini sur « {{embedding_model}} »",
|
||||||
"Enable API Key": "Activer la clé API",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Activer la génération des suggestions pour les messages",
|
"Enable autocomplete generation for chat messages": "Activer la génération des suggestions pour les messages",
|
||||||
"Enable Code Execution": "Autoriser l'execution de code",
|
"Enable Code Execution": "Autoriser l'execution de code",
|
||||||
"Enable Code Interpreter": "Autoriser l'interprétation de code",
|
"Enable Code Interpreter": "Autoriser l'interprétation de code",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "URL du point de terminaison",
|
"Endpoint URL": "URL du point de terminaison",
|
||||||
"Enforce Temporary Chat": "Imposer les discussions temporaires",
|
"Enforce Temporary Chat": "Imposer les discussions temporaires",
|
||||||
"Enhance": "Améliore",
|
"Enhance": "Améliore",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
|
||||||
"Enter {{role}} message here": "Entrez le message {{role}} ici",
|
"Enter {{role}} message here": "Entrez le message {{role}} ici",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler",
|
"Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Entrez l'url du serveur Docling",
|
"Enter Docling Server URL": "Entrez l'url du serveur Docling",
|
||||||
"Enter Document Intelligence Endpoint": "Entrez le point d'extension d'Intelligence documentaire",
|
"Enter Document Intelligence Endpoint": "Entrez le point d'extension d'Intelligence documentaire",
|
||||||
"Enter Document Intelligence Key": "Entrez la clé du sevice d'Intelligence documentaire",
|
"Enter Document Intelligence Key": "Entrez la clé du sevice d'Intelligence documentaire",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Entrez les domaines séparés par des virgules (par ex. example.com, site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Entrez la clé d'api de Exa",
|
"Enter Exa API Key": "Entrez la clé d'api de Exa",
|
||||||
"Enter External Document Loader API Key": "Entrez la clé API du chargeur de documents externe",
|
"Enter External Document Loader API Key": "Entrez la clé API du chargeur de documents externe",
|
||||||
"Enter External Document Loader URL": "Entrez l'URL du chargeur de documents externe",
|
"Enter External Document Loader URL": "Entrez l'URL du chargeur de documents externe",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Exporter la conversation (.json)",
|
"Export chat (.json)": "Exporter la conversation (.json)",
|
||||||
"Export Chats": "Exporter les conversations",
|
"Export Chats": "Exporter les conversations",
|
||||||
"Export Config to JSON File": "Exporter la configuration vers un fichier JSON",
|
"Export Config to JSON File": "Exporter la configuration vers un fichier JSON",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Exporter les préréglages",
|
"Export Presets": "Exporter les préréglages",
|
||||||
"Export Prompt Suggestions": "Exporter les suggestions de prompt",
|
"Export Prompt Suggestions": "Exporter les suggestions de prompt",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Exporter en CSV",
|
"Export to CSV": "Exporter en CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "Externe",
|
"External": "Externe",
|
||||||
"External Document Loader URL required.": "URL du chargeur de document externe requis",
|
"External Document Loader URL required.": "URL du chargeur de document externe requis",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Importer les conversations",
|
"Import Chats": "Importer les conversations",
|
||||||
"Import Config from JSON File": "Importer la configuration depuis un fichier JSON",
|
"Import Config from JSON File": "Importer la configuration depuis un fichier JSON",
|
||||||
"Import From Link": "Importer depuis le lien",
|
"Import From Link": "Importer depuis le lien",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Importer des notes",
|
"Import Notes": "Importer des notes",
|
||||||
"Import Presets": "Importer les préréglages",
|
"Import Presets": "Importer les préréglages",
|
||||||
"Import Prompt Suggestions": "Importer des suggestions de prompt",
|
"Import Prompt Suggestions": "Importer des suggestions de prompt",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Mise à jour importante",
|
"Important Update": "Mise à jour importante",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Inclure",
|
"Include": "Inclure",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Inclure le drapeau `--api-auth` lors de l'exécution de stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Inclure le drapeau `--api-auth` lors de l'exécution de stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Inclure le drapeau `--api` lorsque vous exécutez stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Inclure le drapeau `--api` lorsque vous exécutez stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Inclut SharePoint",
|
"Includes SharePoint": "Inclut SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influe sur la rapidité avec laquelle l'algorithme répond aux retours d'information du texte généré. Un taux d'apprentissage plus bas entraînera des ajustements plus lents, tandis qu'un taux d'apprentissage plus élevé rendra l'algorithme plus réactif.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influe sur la rapidité avec laquelle l'algorithme répond aux retours d'information du texte généré. Un taux d'apprentissage plus bas entraînera des ajustements plus lents, tandis qu'un taux d'apprentissage plus élevé rendra l'algorithme plus réactif.",
|
||||||
"Info": "Info",
|
"Info": "Info",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "Nouvelle fonction",
|
"New Function": "Nouvelle fonction",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "Nouvelle note",
|
|
||||||
"New Password": "Nouveau mot de passe",
|
"New Password": "Nouveau mot de passe",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1643,6 +1653,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Entrez l'URL de Téléchargement Hugging Face Resolve",
|
"Type Hugging Face Resolve (Download) URL": "Entrez l'URL de Téléchargement Hugging Face Resolve",
|
||||||
"Uh-oh! There was an issue with the response.": "Oh! Un problème est survenu avec la réponse.",
|
"Uh-oh! There was an issue with the response.": "Oh! Un problème est survenu avec la réponse.",
|
||||||
"UI": "UI",
|
"UI": "UI",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Désarchiver tout",
|
"Unarchive All": "Désarchiver tout",
|
||||||
"Unarchive All Archived Chats": "Désarchiver toutes les conversations archivées",
|
"Unarchive All Archived Chats": "Désarchiver toutes les conversations archivées",
|
||||||
"Unarchive Chat": "Désarchiver la conversation",
|
"Unarchive Chat": "Désarchiver la conversation",
|
||||||
|
|
@ -1716,6 +1727,8 @@
|
||||||
"Voice": "Voix",
|
"Voice": "Voix",
|
||||||
"Voice Input": "Saisie vocale",
|
"Voice Input": "Saisie vocale",
|
||||||
"Voice mode": "Mode vocal",
|
"Voice mode": "Mode vocal",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Avertissement",
|
"Warning": "Avertissement",
|
||||||
"Warning:": "Avertissement :",
|
"Warning:": "Avertissement :",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Avertissement : Activer cette option permettra aux utilisateurs de télécharger du code arbitraire sur le serveur.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Avertissement : Activer cette option permettra aux utilisateurs de télécharger du code arbitraire sur le serveur.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "Configuration supplémentaire",
|
"Additional Config": "Configuration supplémentaire",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "L'ajustement de ces réglages appliquera universellement les changements à tous les utilisateurs.",
|
"Adjusting these settings will apply changes universally to all users.": "L'ajustement de ces réglages appliquera universellement les changements à tous les utilisateurs.",
|
||||||
"admin": "administrateur",
|
"admin": "administrateur",
|
||||||
"Admin": "Administrateur",
|
"Admin": "Administrateur",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "Clé d'API générée.",
|
"API Key created.": "Clé d'API générée.",
|
||||||
"API Key Endpoint Restrictions": "Restrictions des points de terminaison de la clé API",
|
"API Key Endpoint Restrictions": "Restrictions des points de terminaison de la clé API",
|
||||||
"API keys": "Clés d'API",
|
"API keys": "Clés d'API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "Version de l'API",
|
"API Version": "Version de l'API",
|
||||||
"API Version is required": "Version de l'API requise",
|
"API Version is required": "Version de l'API requise",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "API Datalab Marker",
|
"Datalab Marker API": "API Datalab Marker",
|
||||||
"DD/MM/YYYY": "JJ/MM/AAAA",
|
"DD/MM/YYYY": "JJ/MM/AAAA",
|
||||||
"December": "Décembre",
|
"December": "Décembre",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Par défaut",
|
"Default": "Par défaut",
|
||||||
"Default (Open AI)": "Par défaut (OpenAI)",
|
"Default (Open AI)": "Par défaut (OpenAI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Modèle d'embedding",
|
"Embedding Model": "Modèle d'embedding",
|
||||||
"Embedding Model Engine": "Moteur de modèle d'embedding",
|
"Embedding Model Engine": "Moteur de modèle d'embedding",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Modèle d'embedding défini sur « {{embedding_model}} »",
|
"Embedding model set to \"{{embedding_model}}\"": "Modèle d'embedding défini sur « {{embedding_model}} »",
|
||||||
"Enable API Key": "Activer la clé API",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Activer la génération des suggestions pour les messages",
|
"Enable autocomplete generation for chat messages": "Activer la génération des suggestions pour les messages",
|
||||||
"Enable Code Execution": "Autoriser l'execution de code",
|
"Enable Code Execution": "Autoriser l'execution de code",
|
||||||
"Enable Code Interpreter": "Autoriser l'interprétation de code",
|
"Enable Code Interpreter": "Autoriser l'interprétation de code",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "URL du point de terminaison",
|
"Endpoint URL": "URL du point de terminaison",
|
||||||
"Enforce Temporary Chat": "Imposer les discussions temporaires",
|
"Enforce Temporary Chat": "Imposer les discussions temporaires",
|
||||||
"Enhance": "Améliore",
|
"Enhance": "Améliore",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
|
||||||
"Enter {{role}} message here": "Entrez le message {{role}} ici",
|
"Enter {{role}} message here": "Entrez le message {{role}} ici",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler",
|
"Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Entrez l'url du serveur Docling",
|
"Enter Docling Server URL": "Entrez l'url du serveur Docling",
|
||||||
"Enter Document Intelligence Endpoint": "Entrez le point d'extension d'Intelligence documentaire",
|
"Enter Document Intelligence Endpoint": "Entrez le point d'extension d'Intelligence documentaire",
|
||||||
"Enter Document Intelligence Key": "Entrez la clé du sevice d'Intelligence documentaire",
|
"Enter Document Intelligence Key": "Entrez la clé du sevice d'Intelligence documentaire",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Entrez les domaines séparés par des virgules (par ex. example.com, site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Entrez la clé d'api de Exa",
|
"Enter Exa API Key": "Entrez la clé d'api de Exa",
|
||||||
"Enter External Document Loader API Key": "Entrez la clé API du chargeur de documents externe",
|
"Enter External Document Loader API Key": "Entrez la clé API du chargeur de documents externe",
|
||||||
"Enter External Document Loader URL": "Entrez l'URL du chargeur de documents externe",
|
"Enter External Document Loader URL": "Entrez l'URL du chargeur de documents externe",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Exporter la conversation (.json)",
|
"Export chat (.json)": "Exporter la conversation (.json)",
|
||||||
"Export Chats": "Exporter les conversations",
|
"Export Chats": "Exporter les conversations",
|
||||||
"Export Config to JSON File": "Exporter la configuration vers un fichier JSON",
|
"Export Config to JSON File": "Exporter la configuration vers un fichier JSON",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Exporter les préréglages",
|
"Export Presets": "Exporter les préréglages",
|
||||||
"Export Prompt Suggestions": "Exporter les suggestions de prompt",
|
"Export Prompt Suggestions": "Exporter les suggestions de prompt",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Exporter en CSV",
|
"Export to CSV": "Exporter en CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "Exporter les utilisateurs",
|
"Export Users": "Exporter les utilisateurs",
|
||||||
"External": "Externe",
|
"External": "Externe",
|
||||||
"External Document Loader URL required.": "URL du chargeur de document externe requis",
|
"External Document Loader URL required.": "URL du chargeur de document externe requis",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Importer les conversations",
|
"Import Chats": "Importer les conversations",
|
||||||
"Import Config from JSON File": "Importer la configuration depuis un fichier JSON",
|
"Import Config from JSON File": "Importer la configuration depuis un fichier JSON",
|
||||||
"Import From Link": "Importer depuis le lien",
|
"Import From Link": "Importer depuis le lien",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Importer des notes",
|
"Import Notes": "Importer des notes",
|
||||||
"Import Presets": "Importer les préréglages",
|
"Import Presets": "Importer les préréglages",
|
||||||
"Import Prompt Suggestions": "Importer des suggestions de prompt",
|
"Import Prompt Suggestions": "Importer des suggestions de prompt",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Mise à jour importante",
|
"Important Update": "Mise à jour importante",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "Afin de forcer l'OCR, l'exécution de l'OCR doit être activée.",
|
"In order to force OCR, performing OCR must be enabled.": "Afin de forcer l'OCR, l'exécution de l'OCR doit être activée.",
|
||||||
"Include": "Inclure",
|
"Include": "Inclure",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Inclure le drapeau `--api-auth` lors de l'exécution de stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Inclure le drapeau `--api-auth` lors de l'exécution de stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Inclure le drapeau `--api` lorsque vous exécutez stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Inclure le drapeau `--api` lorsque vous exécutez stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Inclut SharePoint",
|
"Includes SharePoint": "Inclut SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influe sur la rapidité avec laquelle l'algorithme répond aux retours d'information du texte généré. Un taux d'apprentissage plus bas entraînera des ajustements plus lents, tandis qu'un taux d'apprentissage plus élevé rendra l'algorithme plus réactif.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influe sur la rapidité avec laquelle l'algorithme répond aux retours d'information du texte généré. Un taux d'apprentissage plus bas entraînera des ajustements plus lents, tandis qu'un taux d'apprentissage plus élevé rendra l'algorithme plus réactif.",
|
||||||
"Info": "Info",
|
"Info": "Info",
|
||||||
"Initials": "Initiales",
|
"Initials": "Initiales",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "Nouvelle fonction",
|
"New Function": "Nouvelle fonction",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "Nouvelle note",
|
|
||||||
"New Password": "Nouveau mot de passe",
|
"New Password": "Nouveau mot de passe",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1643,6 +1653,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Entrez l'URL de Téléchargement Hugging Face Resolve",
|
"Type Hugging Face Resolve (Download) URL": "Entrez l'URL de Téléchargement Hugging Face Resolve",
|
||||||
"Uh-oh! There was an issue with the response.": "Oh! Un problème est survenu avec la réponse.",
|
"Uh-oh! There was an issue with the response.": "Oh! Un problème est survenu avec la réponse.",
|
||||||
"UI": "UI",
|
"UI": "UI",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Désarchiver tout",
|
"Unarchive All": "Désarchiver tout",
|
||||||
"Unarchive All Archived Chats": "Désarchiver toutes les conversations archivées",
|
"Unarchive All Archived Chats": "Désarchiver toutes les conversations archivées",
|
||||||
"Unarchive Chat": "Désarchiver la conversation",
|
"Unarchive Chat": "Désarchiver la conversation",
|
||||||
|
|
@ -1716,6 +1727,8 @@
|
||||||
"Voice": "Voix",
|
"Voice": "Voix",
|
||||||
"Voice Input": "Saisie vocale",
|
"Voice Input": "Saisie vocale",
|
||||||
"Voice mode": "Mode vocal",
|
"Voice mode": "Mode vocal",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Avertissement",
|
"Warning": "Avertissement",
|
||||||
"Warning:": "Avertissement :",
|
"Warning:": "Avertissement :",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Avertissement : Activer cette option permettra aux utilisateurs de télécharger du code arbitraire sur le serveur.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Avertissement : Activer cette option permettra aux utilisateurs de télécharger du code arbitraire sur le serveur.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Axustar estas opcions aplicará os cambios universalmente a todos os usuarios.",
|
"Adjusting these settings will apply changes universally to all users.": "Axustar estas opcions aplicará os cambios universalmente a todos os usuarios.",
|
||||||
"admin": "admin",
|
"admin": "admin",
|
||||||
"Admin": "Admin",
|
"Admin": "Admin",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "Chave da API creada.",
|
"API Key created.": "Chave da API creada.",
|
||||||
"API Key Endpoint Restrictions": "Restriccions de Endpoint de Chave de API",
|
"API Key Endpoint Restrictions": "Restriccions de Endpoint de Chave de API",
|
||||||
"API keys": "Chaves da API",
|
"API keys": "Chaves da API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "Decembro",
|
"December": "Decembro",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Por defecto",
|
"Default": "Por defecto",
|
||||||
"Default (Open AI)": "Predeterminado (Open AI)",
|
"Default (Open AI)": "Predeterminado (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Modelo de Embedding",
|
"Embedding Model": "Modelo de Embedding",
|
||||||
"Embedding Model Engine": "Motor de Modelo de Embedding",
|
"Embedding Model Engine": "Motor de Modelo de Embedding",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Modelo de Embedding configurado a \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Modelo de Embedding configurado a \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "Habilitar chave de API",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Habilitar xeneración de autocompletado para mensaxes de chat",
|
"Enable autocomplete generation for chat messages": "Habilitar xeneración de autocompletado para mensaxes de chat",
|
||||||
"Enable Code Execution": "Habilitar a execución de código",
|
"Enable Code Execution": "Habilitar a execución de código",
|
||||||
"Enable Code Interpreter": "Habilitar o interprete de código",
|
"Enable Code Interpreter": "Habilitar o interprete de código",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "asegurese de o teu arquivo CSV inclúe 4 columnas nesta orde: Nome, Email, Contrasinal, Rol.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "asegurese de o teu arquivo CSV inclúe 4 columnas nesta orde: Nome, Email, Contrasinal, Rol.",
|
||||||
"Enter {{role}} message here": "Ingrese o mensaxe {{role}} aquí",
|
"Enter {{role}} message here": "Ingrese o mensaxe {{role}} aquí",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Ingrese un detalle sobre vostede para que as suas LLMs recorden",
|
"Enter a detail about yourself for your LLMs to recall": "Ingrese un detalle sobre vostede para que as suas LLMs recorden",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "Ingrese o punto final de Intelixencia de Documentos",
|
"Enter Document Intelligence Endpoint": "Ingrese o punto final de Intelixencia de Documentos",
|
||||||
"Enter Document Intelligence Key": "Ingrese a chave de Intelixencia de Documentos",
|
"Enter Document Intelligence Key": "Ingrese a chave de Intelixencia de Documentos",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Ingrese dominios separados por comas (p.ej., example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Ingrese a chave API de Exa",
|
"Enter Exa API Key": "Ingrese a chave API de Exa",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Exportar chat (.json)",
|
"Export chat (.json)": "Exportar chat (.json)",
|
||||||
"Export Chats": "Exportar Chats",
|
"Export Chats": "Exportar Chats",
|
||||||
"Export Config to JSON File": "Exportar configuración a Arquivo JSON",
|
"Export Config to JSON File": "Exportar configuración a Arquivo JSON",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Exportar ajustes preestablecidos",
|
"Export Presets": "Exportar ajustes preestablecidos",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Exportar a CSV",
|
"Export to CSV": "Exportar a CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Importar chats",
|
"Import Chats": "Importar chats",
|
||||||
"Import Config from JSON File": "Importar configuración desde Arquivo JSON",
|
"Import Config from JSON File": "Importar configuración desde Arquivo JSON",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "Importar ajustes preestablecidos",
|
"Import Presets": "Importar ajustes preestablecidos",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Actualización importante",
|
"Important Update": "Actualización importante",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Incluir",
|
"Include": "Incluir",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Incluir o indicador `--api-auth` al ejecutar stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Incluir o indicador `--api-auth` al ejecutar stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Incluir o indicador `--api` al ejecutar stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Incluir o indicador `--api` al ejecutar stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Inclúe SharePoint",
|
"Includes SharePoint": "Inclúe SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "Información",
|
"Info": "Información",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "Novo contrasinal ",
|
"New Password": "Novo contrasinal ",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Escriba la URL (Descarga) de Hugging Face Resolve",
|
"Type Hugging Face Resolve (Download) URL": "Escriba la URL (Descarga) de Hugging Face Resolve",
|
||||||
"Uh-oh! There was an issue with the response.": "¡Ups! Hubo un problema con la respuesta.",
|
"Uh-oh! There was an issue with the response.": "¡Ups! Hubo un problema con la respuesta.",
|
||||||
"UI": "UI",
|
"UI": "UI",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Desarquivar todo",
|
"Unarchive All": "Desarquivar todo",
|
||||||
"Unarchive All Archived Chats": "Desarquivar todos os chats arquivados",
|
"Unarchive All Archived Chats": "Desarquivar todos os chats arquivados",
|
||||||
"Unarchive Chat": "Desarquivar chat",
|
"Unarchive Chat": "Desarquivar chat",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "Voz",
|
"Voice": "Voz",
|
||||||
"Voice Input": "Entrada de voz",
|
"Voice Input": "Entrada de voz",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Advertencia",
|
"Warning": "Advertencia",
|
||||||
"Warning:": "Advertencia:",
|
"Warning:": "Advertencia:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Advertencia: Habilitar esto permitirá a os usuarios subir código arbitrario no servidor.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Advertencia: Habilitar esto permitirá a os usuarios subir código arbitrario no servidor.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "התאמת הגדרות אלו תחול על כל המשתמשים.",
|
"Adjusting these settings will apply changes universally to all users.": "התאמת הגדרות אלו תחול על כל המשתמשים.",
|
||||||
"admin": "מנהל",
|
"admin": "מנהל",
|
||||||
"Admin": "מנהל",
|
"Admin": "מנהל",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "מפתח API נוצר.",
|
"API Key created.": "מפתח API נוצר.",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "מפתחות API",
|
"API keys": "מפתחות API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "דצמבר",
|
"December": "דצמבר",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "ברירת מחדל",
|
"Default": "ברירת מחדל",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "מודל הטמעה",
|
"Embedding Model": "מודל הטמעה",
|
||||||
"Embedding Model Engine": "מנוע מודל הטמעה",
|
"Embedding Model Engine": "מנוע מודל הטמעה",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "מודל ההטמעה הוגדר ל-\"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "מודל ההטמעה הוגדר ל-\"{{embedding_model}}\"",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ודא שקובץ ה-CSV שלך כולל 4 עמודות בסדר הבא: שם, דוא\"ל, סיסמה, תפקיד.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ודא שקובץ ה-CSV שלך כולל 4 עמודות בסדר הבא: שם, דוא\"ל, סיסמה, תפקיד.",
|
||||||
"Enter {{role}} message here": "הזן הודעת {{role}} כאן",
|
"Enter {{role}} message here": "הזן הודעת {{role}} כאן",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "הזן פרטים על עצמך כדי שLLMs יזכור",
|
"Enter a detail about yourself for your LLMs to recall": "הזן פרטים על עצמך כדי שLLMs יזכור",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "",
|
"Export chat (.json)": "",
|
||||||
"Export Chats": "ייצוא צ'אטים",
|
"Export Chats": "ייצוא צ'אטים",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "יבוא צ'אטים",
|
"Import Chats": "יבוא צ'אטים",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "ייבוא פתקים",
|
"Import Notes": "ייבוא פתקים",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "עדכון חשוב",
|
"Important Update": "עדכון חשוב",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "",
|
"Include": "",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "כלול את הדגל `--api` בעת הרצת stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "כלול את הדגל `--api` בעת הרצת stable-diffusion-webui",
|
||||||
"Includes SharePoint": "כולל SharePoint",
|
"Includes SharePoint": "כולל SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "מידע",
|
"Info": "מידע",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "פונקציה חדשה",
|
"New Function": "פונקציה חדשה",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "פתק חדש",
|
|
||||||
"New Password": "סיסמה חדשה",
|
"New Password": "סיסמה חדשה",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1643,6 +1653,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "הקלד כתובת URL של פתרון פנים מחבק (הורד)",
|
"Type Hugging Face Resolve (Download) URL": "הקלד כתובת URL של פתרון פנים מחבק (הורד)",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "",
|
"UI": "",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1716,6 +1727,8 @@
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "אזהרה",
|
"Warning": "אזהרה",
|
||||||
"Warning:": "אזהרה:",
|
"Warning:": "אזהרה:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "इन सेटिंग्स को समायोजित करने से परिवर्तन सभी उपयोगकर्ताओं पर सार्वभौमिक रूप से लागू होंगे।",
|
"Adjusting these settings will apply changes universally to all users.": "इन सेटिंग्स को समायोजित करने से परिवर्तन सभी उपयोगकर्ताओं पर सार्वभौमिक रूप से लागू होंगे।",
|
||||||
"admin": "व्यवस्थापक",
|
"admin": "व्यवस्थापक",
|
||||||
"Admin": "",
|
"Admin": "",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "एपीआई कुंजी बनाई गई",
|
"API Key created.": "एपीआई कुंजी बनाई गई",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "एपीआई कुंजियाँ",
|
"API keys": "एपीआई कुंजियाँ",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "डिसेंबर",
|
"December": "डिसेंबर",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "डिफ़ॉल्ट",
|
"Default": "डिफ़ॉल्ट",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "मॉडेल अनुकूलन",
|
"Embedding Model": "मॉडेल अनुकूलन",
|
||||||
"Embedding Model Engine": "एंबेडिंग मॉडल इंजन",
|
"Embedding Model Engine": "एंबेडिंग मॉडल इंजन",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "एम्बेडिंग मॉडल को \"{{embedding_model}}\" पर सेट किया गया",
|
"Embedding model set to \"{{embedding_model}}\"": "एम्बेडिंग मॉडल को \"{{embedding_model}}\" पर सेट किया गया",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "सुनिश्चित करें कि आपकी CSV फ़ाइल में इस क्रम में 4 कॉलम शामिल हैं: नाम, ईमेल, पासवर्ड, भूमिका।",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "सुनिश्चित करें कि आपकी CSV फ़ाइल में इस क्रम में 4 कॉलम शामिल हैं: नाम, ईमेल, पासवर्ड, भूमिका।",
|
||||||
"Enter {{role}} message here": "यहां {{role}} संदेश दर्ज करें",
|
"Enter {{role}} message here": "यहां {{role}} संदेश दर्ज करें",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "अपने एलएलएम को याद करने के लिए अपने बारे में एक विवरण दर्ज करें",
|
"Enter a detail about yourself for your LLMs to recall": "अपने एलएलएम को याद करने के लिए अपने बारे में एक विवरण दर्ज करें",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "",
|
"Export chat (.json)": "",
|
||||||
"Export Chats": "चैट निर्यात करें",
|
"Export Chats": "चैट निर्यात करें",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "चैट आयात करें",
|
"Import Chats": "चैट आयात करें",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "महत्वपूर्ण अपडेट",
|
"Important Update": "महत्वपूर्ण अपडेट",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "",
|
"Include": "",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui चलाते समय `--api` ध्वज शामिल करें",
|
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui चलाते समय `--api` ध्वज शामिल करें",
|
||||||
"Includes SharePoint": "SharePoint शामिल है",
|
"Includes SharePoint": "SharePoint शामिल है",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "सूचना-विषयक",
|
"Info": "सूचना-विषयक",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "नया पासवर्ड",
|
"New Password": "नया पासवर्ड",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "हगिंग फेस रिज़ॉल्व (डाउनलोड) यूआरएल टाइप करें",
|
"Type Hugging Face Resolve (Download) URL": "हगिंग फेस रिज़ॉल्व (डाउनलोड) यूआरएल टाइप करें",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "",
|
"UI": "",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "चेतावनी",
|
"Warning": "चेतावनी",
|
||||||
"Warning:": "चेतावनी:",
|
"Warning:": "चेतावनी:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Podešavanje će se primijeniti univerzalno na sve korisnike.",
|
"Adjusting these settings will apply changes universally to all users.": "Podešavanje će se primijeniti univerzalno na sve korisnike.",
|
||||||
"admin": "administrator",
|
"admin": "administrator",
|
||||||
"Admin": "Admin",
|
"Admin": "Admin",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API ključ je stvoren.",
|
"API Key created.": "API ključ je stvoren.",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "API ključevi",
|
"API keys": "API ključevi",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "Prosinac",
|
"December": "Prosinac",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Zadano",
|
"Default": "Zadano",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Embedding model",
|
"Embedding Model": "Embedding model",
|
||||||
"Embedding Model Engine": "Embedding model pogon",
|
"Embedding Model Engine": "Embedding model pogon",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding model postavljen na \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Embedding model postavljen na \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Provjerite da vaša CSV datoteka uključuje 4 stupca u ovom redoslijedu: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Provjerite da vaša CSV datoteka uključuje 4 stupca u ovom redoslijedu: Name, Email, Password, Role.",
|
||||||
"Enter {{role}} message here": "Unesite {{role}} poruku ovdje",
|
"Enter {{role}} message here": "Unesite {{role}} poruku ovdje",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Unesite pojedinosti o sebi da bi učitali memoriju u LLM",
|
"Enter a detail about yourself for your LLMs to recall": "Unesite pojedinosti o sebi da bi učitali memoriju u LLM",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Izvoz četa (.json)",
|
"Export chat (.json)": "Izvoz četa (.json)",
|
||||||
"Export Chats": "Izvoz razgovora",
|
"Export Chats": "Izvoz razgovora",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Uvoz razgovora",
|
"Import Chats": "Uvoz razgovora",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Važno ažuriranje",
|
"Important Update": "Važno ažuriranje",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "",
|
"Include": "",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Uključite zastavicu `--api` prilikom pokretanja stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Uključite zastavicu `--api` prilikom pokretanja stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Uključuje SharePoint",
|
"Includes SharePoint": "Uključuje SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "Informacije",
|
"Info": "Informacije",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "Nova lozinka",
|
"New Password": "Nova lozinka",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1643,6 +1653,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Upišite Hugging Face Resolve (Download) URL",
|
"Type Hugging Face Resolve (Download) URL": "Upišite Hugging Face Resolve (Download) URL",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "",
|
"UI": "",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1716,6 +1727,8 @@
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Upozorenje",
|
"Warning": "Upozorenje",
|
||||||
"Warning:": "Upozorenje:",
|
"Warning:": "Upozorenje:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Ezen beállítások módosítása minden felhasználóra érvényes lesz.",
|
"Adjusting these settings will apply changes universally to all users.": "Ezen beállítások módosítása minden felhasználóra érvényes lesz.",
|
||||||
"admin": "admin",
|
"admin": "admin",
|
||||||
"Admin": "Admin",
|
"Admin": "Admin",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API kulcs létrehozva.",
|
"API Key created.": "API kulcs létrehozva.",
|
||||||
"API Key Endpoint Restrictions": "API kulcs végpont korlátozások",
|
"API Key Endpoint Restrictions": "API kulcs végpont korlátozások",
|
||||||
"API keys": "API kulcsok",
|
"API keys": "API kulcsok",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "December",
|
"December": "December",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Alapértelmezett",
|
"Default": "Alapértelmezett",
|
||||||
"Default (Open AI)": "Alapértelmezett (Open AI)",
|
"Default (Open AI)": "Alapértelmezett (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Beágyazási modell",
|
"Embedding Model": "Beágyazási modell",
|
||||||
"Embedding Model Engine": "Beágyazási modell motor",
|
"Embedding Model Engine": "Beágyazási modell motor",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Beágyazási modell beállítva: \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Beágyazási modell beállítva: \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "API kulcs engedélyezése",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Automatikus kiegészítés engedélyezése csevegőüzenetekhez",
|
"Enable autocomplete generation for chat messages": "Automatikus kiegészítés engedélyezése csevegőüzenetekhez",
|
||||||
"Enable Code Execution": "Kód végrehajtás engedélyezése",
|
"Enable Code Execution": "Kód végrehajtás engedélyezése",
|
||||||
"Enable Code Interpreter": "Kód értelmező engedélyezése",
|
"Enable Code Interpreter": "Kód értelmező engedélyezése",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "Ideiglenes csevegés kikényszerítése",
|
"Enforce Temporary Chat": "Ideiglenes csevegés kikényszerítése",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Győződj meg róla, hogy a CSV fájl tartalmazza ezt a 4 oszlopot ebben a sorrendben: Név, Email, Jelszó, Szerep.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Győződj meg róla, hogy a CSV fájl tartalmazza ezt a 4 oszlopot ebben a sorrendben: Név, Email, Jelszó, Szerep.",
|
||||||
"Enter {{role}} message here": "Írd ide a {{role}} üzenetet",
|
"Enter {{role}} message here": "Írd ide a {{role}} üzenetet",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Adj meg egy részletet magadról, amit az LLM-ek megjegyezhetnek",
|
"Enter a detail about yourself for your LLMs to recall": "Adj meg egy részletet magadról, amit az LLM-ek megjegyezhetnek",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Add meg a Docling szerver URL-t",
|
"Enter Docling Server URL": "Add meg a Docling szerver URL-t",
|
||||||
"Enter Document Intelligence Endpoint": "Add meg a dokumentum intelligencia végpontot",
|
"Enter Document Intelligence Endpoint": "Add meg a dokumentum intelligencia végpontot",
|
||||||
"Enter Document Intelligence Key": "Add meg a dokumentum intelligencia kulcsot",
|
"Enter Document Intelligence Key": "Add meg a dokumentum intelligencia kulcsot",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Add meg a domaineket vesszővel elválasztva (pl. example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Add meg az Exa API kulcsot",
|
"Enter Exa API Key": "Add meg az Exa API kulcsot",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Beszélgetés exportálása (.json)",
|
"Export chat (.json)": "Beszélgetés exportálása (.json)",
|
||||||
"Export Chats": "Beszélgetések exportálása",
|
"Export Chats": "Beszélgetések exportálása",
|
||||||
"Export Config to JSON File": "Konfiguráció exportálása JSON fájlba",
|
"Export Config to JSON File": "Konfiguráció exportálása JSON fájlba",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Előre beállított exportálás",
|
"Export Presets": "Előre beállított exportálás",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Exportálás CSV-be",
|
"Export to CSV": "Exportálás CSV-be",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "Külső",
|
"External": "Külső",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Beszélgetések importálása",
|
"Import Chats": "Beszélgetések importálása",
|
||||||
"Import Config from JSON File": "Konfiguráció importálása JSON fájlból",
|
"Import Config from JSON File": "Konfiguráció importálása JSON fájlból",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "Előre beállított importálás",
|
"Import Presets": "Előre beállított importálás",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Fontos frissítés",
|
"Important Update": "Fontos frissítés",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Tartalmaz",
|
"Include": "Tartalmaz",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Add hozzá a `--api-auth` kapcsolót a stable-diffusion-webui futtatásakor",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Add hozzá a `--api-auth` kapcsolót a stable-diffusion-webui futtatásakor",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Add hozzá a `--api` kapcsolót a stable-diffusion-webui futtatásakor",
|
"Include `--api` flag when running stable-diffusion-webui": "Add hozzá a `--api` kapcsolót a stable-diffusion-webui futtatásakor",
|
||||||
"Includes SharePoint": "Tartalmazza a SharePointot",
|
"Includes SharePoint": "Tartalmazza a SharePointot",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Befolyásolja, hogy az algoritmus milyen gyorsan reagál a generált szöveg visszajelzéseire. Alacsonyabb tanulási ráta lassabb调整okat eredményez, míg magasabb ráta gyorsabb reagálást biztosít.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Befolyásolja, hogy az algoritmus milyen gyorsan reagál a generált szöveg visszajelzéseire. Alacsonyabb tanulási ráta lassabb调整okat eredményez, míg magasabb ráta gyorsabb reagálást biztosít.",
|
||||||
"Info": "Információ",
|
"Info": "Információ",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "Új jelszó",
|
"New Password": "Új jelszó",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Adja meg a Hugging Face Resolve (Letöltési) URL-t",
|
"Type Hugging Face Resolve (Download) URL": "Adja meg a Hugging Face Resolve (Letöltési) URL-t",
|
||||||
"Uh-oh! There was an issue with the response.": "Jaj! Probléma adódott a válasszal.",
|
"Uh-oh! There was an issue with the response.": "Jaj! Probléma adódott a válasszal.",
|
||||||
"UI": "Felhasználói felület",
|
"UI": "Felhasználói felület",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Minden visszaállítása",
|
"Unarchive All": "Minden visszaállítása",
|
||||||
"Unarchive All Archived Chats": "Minden archivált csevegés 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",
|
"Unarchive Chat": "Csevegés visszaállítása",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "Hang",
|
"Voice": "Hang",
|
||||||
"Voice Input": "Hangbevitel",
|
"Voice Input": "Hangbevitel",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Figyelmeztetés",
|
"Warning": "Figyelmeztetés",
|
||||||
"Warning:": "Figyelmeztetés:",
|
"Warning:": "Figyelmeztetés:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Figyelmeztetés: Ennek engedélyezése lehetővé teszi a felhasználók számára, hogy tetszőleges kódot töltsenek fel a szerverre.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Figyelmeztetés: Ennek engedélyezése lehetővé teszi a felhasználók számára, hogy tetszőleges kódot töltsenek fel a szerverre.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Menyesuaikan pengaturan ini akan menerapkan perubahan secara universal ke semua pengguna.",
|
"Adjusting these settings will apply changes universally to all users.": "Menyesuaikan pengaturan ini akan menerapkan perubahan secara universal ke semua pengguna.",
|
||||||
"admin": "admin",
|
"admin": "admin",
|
||||||
"Admin": "Admin",
|
"Admin": "Admin",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "Kunci API dibuat.",
|
"API Key created.": "Kunci API dibuat.",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "Kunci API",
|
"API keys": "Kunci API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "Desember",
|
"December": "Desember",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Default",
|
"Default": "Default",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Model Penyematan",
|
"Embedding Model": "Model Penyematan",
|
||||||
"Embedding Model Engine": "Mesin Model Penyematan",
|
"Embedding Model Engine": "Mesin Model Penyematan",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Model penyematan diatur ke \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Model penyematan diatur ke \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Pastikan file CSV Anda menyertakan 4 kolom dengan urutan sebagai berikut: Nama, Email, Kata Sandi, Peran.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Pastikan file CSV Anda menyertakan 4 kolom dengan urutan sebagai berikut: Nama, Email, Kata Sandi, Peran.",
|
||||||
"Enter {{role}} message here": "Masukkan pesan {{role}} di sini",
|
"Enter {{role}} message here": "Masukkan pesan {{role}} di sini",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Masukkan detail tentang diri Anda untuk diingat oleh LLM Anda",
|
"Enter a detail about yourself for your LLMs to recall": "Masukkan detail tentang diri Anda untuk diingat oleh LLM Anda",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Ekspor obrolan (.json)",
|
"Export chat (.json)": "Ekspor obrolan (.json)",
|
||||||
"Export Chats": "Ekspor Obrolan",
|
"Export Chats": "Ekspor Obrolan",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Impor Obrolan",
|
"Import Chats": "Impor Obrolan",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Pembaruan penting",
|
"Important Update": "Pembaruan penting",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "",
|
"Include": "",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Sertakan bendera `--api-auth` saat menjalankan stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Sertakan bendera `--api-auth` saat menjalankan stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Sertakan bendera `--api` saat menjalankan stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Sertakan bendera `--api` saat menjalankan stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Mencakup SharePoint",
|
"Includes SharePoint": "Mencakup SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "Info",
|
"Info": "Info",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "Kata Sandi Baru",
|
"New Password": "Kata Sandi Baru",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1641,6 +1651,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Ketik Hugging Face Resolve (Unduh) URL",
|
"Type Hugging Face Resolve (Download) URL": "Ketik Hugging Face Resolve (Unduh) URL",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "UI",
|
"UI": "UI",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1714,6 +1725,8 @@
|
||||||
"Voice": "Suara",
|
"Voice": "Suara",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Peringatan",
|
"Warning": "Peringatan",
|
||||||
"Warning:": "Peringatan:",
|
"Warning:": "Peringatan:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "Cumraíocht Bhreise",
|
"Additional Config": "Cumraíocht Bhreise",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Roghanna cumraíochta breise don mharcóir. Ba chóir gur teaghrán JSON é seo le péirí eochrach-luachanna. Mar shampla, '{\"key\": \"value\"}'. I measc na n-eochracha a dtacaítear leo tá: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Roghanna cumraíochta breise don mharcóir. Ba chóir gur teaghrán JSON é seo le péirí eochrach-luachanna. Mar shampla, '{\"key\": \"value\"}'. I measc na n-eochracha a dtacaítear leo tá: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
|
||||||
"Additional Parameters": "Paraiméadair Bhreise",
|
"Additional Parameters": "Paraiméadair Bhreise",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Cuirfear na socruithe seo ag coigeartú athruithe go huilíoch ar gach úsáideoir.",
|
"Adjusting these settings will apply changes universally to all users.": "Cuirfear na socruithe seo ag coigeartú athruithe go huilíoch ar gach úsáideoir.",
|
||||||
"admin": "riarachán",
|
"admin": "riarachán",
|
||||||
"Admin": "Riarachán",
|
"Admin": "Riarachán",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "Cruthaíodh Eochair API.",
|
"API Key created.": "Cruthaíodh Eochair API.",
|
||||||
"API Key Endpoint Restrictions": "Príomhshrianta Críochphointe API",
|
"API Key Endpoint Restrictions": "Príomhshrianta Críochphointe API",
|
||||||
"API keys": "Eochracha API",
|
"API keys": "Eochracha API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "Mód API",
|
"API Mode": "Mód API",
|
||||||
"API Version": "Leagan API",
|
"API Version": "Leagan API",
|
||||||
"API Version is required": "Tá Leagan API ag teastáil",
|
"API Version is required": "Tá Leagan API ag teastáil",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "API Marcóra Datalab",
|
"Datalab Marker API": "API Marcóra Datalab",
|
||||||
"DD/MM/YYYY": "LL/MM/LLLL",
|
"DD/MM/YYYY": "LL/MM/LLLL",
|
||||||
"December": "Nollaig",
|
"December": "Nollaig",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "Deepgram",
|
"Deepgram": "Deepgram",
|
||||||
"Default": "Réamhshocraithe",
|
"Default": "Réamhshocraithe",
|
||||||
"Default (Open AI)": "Réamhshocraithe (Oscail AI)",
|
"Default (Open AI)": "Réamhshocraithe (Oscail AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Samhail Leabháilte",
|
"Embedding Model": "Samhail Leabháilte",
|
||||||
"Embedding Model Engine": "Inneall Samhail Leabaithe",
|
"Embedding Model Engine": "Inneall Samhail Leabaithe",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Socraíodh an tsamhail leabaithe go \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Socraíodh an tsamhail leabaithe go \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "Cumasaigh Eochair API",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Cumasaigh giniúint uathchríochnaithe le haghaidh teachtaireachtaí comhrá",
|
"Enable autocomplete generation for chat messages": "Cumasaigh giniúint uathchríochnaithe le haghaidh teachtaireachtaí comhrá",
|
||||||
"Enable Code Execution": "Cumasaigh Forghníomhú Cód",
|
"Enable Code Execution": "Cumasaigh Forghníomhú Cód",
|
||||||
"Enable Code Interpreter": "Cumasaigh Ateangaire Cóid",
|
"Enable Code Interpreter": "Cumasaigh Ateangaire Cóid",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "URL críochphointe",
|
"Endpoint URL": "URL críochphointe",
|
||||||
"Enforce Temporary Chat": "Cuir Comhrá Sealadach i bhfeidhm",
|
"Enforce Temporary Chat": "Cuir Comhrá Sealadach i bhfeidhm",
|
||||||
"Enhance": "Feabhsaigh",
|
"Enhance": "Feabhsaigh",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Déan cinnte go bhfuil 4 cholún san ord seo i do chomhad CSV: Ainm, Ríomhphost, Pasfhocal, Ról.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Déan cinnte go bhfuil 4 cholún san ord seo i do chomhad CSV: Ainm, Ríomhphost, Pasfhocal, Ról.",
|
||||||
"Enter {{role}} message here": "Cuir isteach teachtaireacht {{role}} anseo",
|
"Enter {{role}} message here": "Cuir isteach teachtaireacht {{role}} anseo",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Cuir isteach mionsonraí fút féin chun do LLManna a mheabhrú",
|
"Enter a detail about yourself for your LLMs to recall": "Cuir isteach mionsonraí fút féin chun do LLManna a mheabhrú",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Cuir isteach URL Freastalaí Doling",
|
"Enter Docling Server URL": "Cuir isteach URL Freastalaí Doling",
|
||||||
"Enter Document Intelligence Endpoint": "Iontráil Críochphointe Faisnéise Doiciméid",
|
"Enter Document Intelligence Endpoint": "Iontráil Críochphointe Faisnéise Doiciméid",
|
||||||
"Enter Document Intelligence Key": "Iontráil Eochair Faisnéise Doiciméad",
|
"Enter Document Intelligence Key": "Iontráil Eochair Faisnéise Doiciméad",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Cuir isteach fearainn atá scartha le camóga (m.sh., example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Cuir isteach Eochair Exa API",
|
"Enter Exa API Key": "Cuir isteach Eochair Exa API",
|
||||||
"Enter External Document Loader API Key": "Cuir isteach Eochair API Luchtaitheora Doiciméad Seachtrach",
|
"Enter External Document Loader API Key": "Cuir isteach Eochair API Luchtaitheora Doiciméad Seachtrach",
|
||||||
"Enter External Document Loader URL": "Cuir isteach URL Luchtaitheora Doiciméad Seachtrach",
|
"Enter External Document Loader URL": "Cuir isteach URL Luchtaitheora Doiciméad Seachtrach",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Easpórtáil comhrá (.json)",
|
"Export chat (.json)": "Easpórtáil comhrá (.json)",
|
||||||
"Export Chats": "Comhráite Easpórtá",
|
"Export Chats": "Comhráite Easpórtá",
|
||||||
"Export Config to JSON File": "Easpórtáil Cumraíocht chuig Comhad JSON",
|
"Export Config to JSON File": "Easpórtáil Cumraíocht chuig Comhad JSON",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Easpórtáil Gach Comhrá Cartlainne",
|
"Export Presets": "Easpórtáil Gach Comhrá Cartlainne",
|
||||||
"Export Prompt Suggestions": "Moltaí Easpórtála",
|
"Export Prompt Suggestions": "Moltaí Easpórtála",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Easpórtáil go CSV",
|
"Export to CSV": "Easpórtáil go CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "Easpórtáil Úsáideoirí",
|
"Export Users": "Easpórtáil Úsáideoirí",
|
||||||
"External": "Seachtrach",
|
"External": "Seachtrach",
|
||||||
"External Document Loader URL required.": "URL Luchtaitheora Doiciméad Seachtrach ag teastáil.",
|
"External Document Loader URL required.": "URL Luchtaitheora Doiciméad Seachtrach ag teastáil.",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Comhráite iompórtá",
|
"Import Chats": "Comhráite iompórtá",
|
||||||
"Import Config from JSON File": "Cumraíocht Iompórtáil ó Chomhad JSON",
|
"Import Config from JSON File": "Cumraíocht Iompórtáil ó Chomhad JSON",
|
||||||
"Import From Link": "Iompórtáil Ó Nasc",
|
"Import From Link": "Iompórtáil Ó Nasc",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Nótaí Iompórtála",
|
"Import Notes": "Nótaí Iompórtála",
|
||||||
"Import Presets": "Réamhshocruithe Iompórtáil",
|
"Import Presets": "Réamhshocruithe Iompórtáil",
|
||||||
"Import Prompt Suggestions": "Moltaí Pras Iompórtála",
|
"Import Prompt Suggestions": "Moltaí Pras Iompórtála",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "D'éirigh leis an allmhairiú",
|
"Import successful": "D'éirigh leis an allmhairiú",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Nuashonrú tábhachtach",
|
"Important Update": "Nuashonrú tábhachtach",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "Chun OCR a fhorchur, ní mór OCR a chumasú.",
|
"In order to force OCR, performing OCR must be enabled.": "Chun OCR a fhorchur, ní mór OCR a chumasú.",
|
||||||
"Include": "Cuir san áireamh",
|
"Include": "Cuir san áireamh",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Cuir bratach `--api-auth` san áireamh agus webui stable-diffusion-reatha á rith",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Cuir bratach `--api-auth` san áireamh agus webui stable-diffusion-reatha á rith",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Cuir bratach `--api` san áireamh agus webui cobhsaí-scaipthe á rith",
|
"Include `--api` flag when running stable-diffusion-webui": "Cuir bratach `--api` san áireamh agus webui cobhsaí-scaipthe á rith",
|
||||||
"Includes SharePoint": "Áirítear SharePoint",
|
"Includes SharePoint": "Áirítear SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Bíonn tionchar aige ar chomh tapa agus a fhreagraíonn an t-algartam d'aiseolas ón téacs ginte. Beidh coigeartuithe níos moille mar thoradh ar ráta foghlama níos ísle, agus déanfaidh ráta foghlama níos airde an t-algartam níos freagraí.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Bíonn tionchar aige ar chomh tapa agus a fhreagraíonn an t-algartam d'aiseolas ón téacs ginte. Beidh coigeartuithe níos moille mar thoradh ar ráta foghlama níos ísle, agus déanfaidh ráta foghlama níos airde an t-algartam níos freagraí.",
|
||||||
"Info": "Eolas",
|
"Info": "Eolas",
|
||||||
"Initials": "Túslitreacha",
|
"Initials": "Túslitreacha",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "Feidhm Nua",
|
"New Function": "Feidhm Nua",
|
||||||
"New Knowledge": "Eolas Nua",
|
"New Knowledge": "Eolas Nua",
|
||||||
"New Model": "Samhail Nua",
|
"New Model": "Samhail Nua",
|
||||||
"New Note": "Nóta Nua",
|
|
||||||
"New Password": "Pasfhocal Nua",
|
"New Password": "Pasfhocal Nua",
|
||||||
"New Prompt": "Leid Nua",
|
"New Prompt": "Leid Nua",
|
||||||
"New Temporary Chat": "Comhrá Sealadach Nua",
|
"New Temporary Chat": "Comhrá Sealadach Nua",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Cineál Hugging Face Resolve (Íoslódáil) URL",
|
"Type Hugging Face Resolve (Download) URL": "Cineál Hugging Face Resolve (Íoslódáil) URL",
|
||||||
"Uh-oh! There was an issue with the response.": "Uh-ó! Bhí fadhb leis an bhfreagra.",
|
"Uh-oh! There was an issue with the response.": "Uh-ó! Bhí fadhb leis an bhfreagra.",
|
||||||
"UI": "UI",
|
"UI": "UI",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Díchartlannaigh Uile",
|
"Unarchive All": "Díchartlannaigh Uile",
|
||||||
"Unarchive All Archived Chats": "Díchartlannaigh Gach Comhrá Cartlainne",
|
"Unarchive All Archived Chats": "Díchartlannaigh Gach Comhrá Cartlainne",
|
||||||
"Unarchive Chat": "Comhrá a dhíchartlannú",
|
"Unarchive Chat": "Comhrá a dhíchartlannú",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "Guth",
|
"Voice": "Guth",
|
||||||
"Voice Input": "Ionchur Gutha",
|
"Voice Input": "Ionchur Gutha",
|
||||||
"Voice mode": "Mod Gutha",
|
"Voice mode": "Mod Gutha",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Rabhadh",
|
"Warning": "Rabhadh",
|
||||||
"Warning:": "Rabhadh:",
|
"Warning:": "Rabhadh:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Rabhadh: Cuirfidh sé seo ar chumas úsáideoirí cód treallach a uaslódáil ar an bhfreastalaí.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Rabhadh: Cuirfidh sé seo ar chumas úsáideoirí cód treallach a uaslódáil ar an bhfreastalaí.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "La modifica di queste impostazioni applicherà le modifiche universalmente a tutti gli utenti.",
|
"Adjusting these settings will apply changes universally to all users.": "La modifica di queste impostazioni applicherà le modifiche universalmente a tutti gli utenti.",
|
||||||
"admin": "amministratore",
|
"admin": "amministratore",
|
||||||
"Admin": "Amministratore",
|
"Admin": "Amministratore",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "Chiave API creata.",
|
"API Key created.": "Chiave API creata.",
|
||||||
"API Key Endpoint Restrictions": "Restrizioni Endpoint Chiave API",
|
"API Key Endpoint Restrictions": "Restrizioni Endpoint Chiave API",
|
||||||
"API keys": "Chiavi API",
|
"API keys": "Chiavi API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "Versione API",
|
"API Version": "Versione API",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "Datalab Marker API",
|
"Datalab Marker API": "Datalab Marker API",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "Dicembre",
|
"December": "Dicembre",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Predefinito",
|
"Default": "Predefinito",
|
||||||
"Default (Open AI)": "Predefinito (Open AI)",
|
"Default (Open AI)": "Predefinito (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Modello Embedding",
|
"Embedding Model": "Modello Embedding",
|
||||||
"Embedding Model Engine": "Motore Modello di Embedding",
|
"Embedding Model Engine": "Motore Modello di Embedding",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Modello di embedding impostato su \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Modello di embedding impostato su \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "Abilita Chiave API",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Abilita generazione autocompletamento per i messaggi di chat",
|
"Enable autocomplete generation for chat messages": "Abilita generazione autocompletamento per i messaggi di chat",
|
||||||
"Enable Code Execution": "Abilita Esecuzione Codice",
|
"Enable Code Execution": "Abilita Esecuzione Codice",
|
||||||
"Enable Code Interpreter": "Abilita Interprete Codice",
|
"Enable Code Interpreter": "Abilita Interprete Codice",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "URL Endpoint",
|
"Endpoint URL": "URL Endpoint",
|
||||||
"Enforce Temporary Chat": "Forza Chat Temporanea",
|
"Enforce Temporary Chat": "Forza Chat Temporanea",
|
||||||
"Enhance": "Migliora",
|
"Enhance": "Migliora",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assicurati che il tuo file CSV includa 4 colonne in questo ordine: Nome, Email, Password, Ruolo.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assicurati che il tuo file CSV includa 4 colonne in questo ordine: Nome, Email, Password, Ruolo.",
|
||||||
"Enter {{role}} message here": "Inserisci il messaggio per {{role}} qui",
|
"Enter {{role}} message here": "Inserisci il messaggio per {{role}} qui",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Inserisci un dettaglio su di te per che i LLM possano ricordare",
|
"Enter a detail about yourself for your LLMs to recall": "Inserisci un dettaglio su di te per che i LLM possano ricordare",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Inserisci URL del Server Docling",
|
"Enter Docling Server URL": "Inserisci URL del Server Docling",
|
||||||
"Enter Document Intelligence Endpoint": "Inserisci Endpoint di Document Intelligence",
|
"Enter Document Intelligence Endpoint": "Inserisci Endpoint di Document Intelligence",
|
||||||
"Enter Document Intelligence Key": "Inserisci Chiave di Document Intelligence",
|
"Enter Document Intelligence Key": "Inserisci Chiave di Document Intelligence",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Inserisci i domini separati da virgole (ad es., example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Inserisci Chiave API Exa",
|
"Enter Exa API Key": "Inserisci Chiave API Exa",
|
||||||
"Enter External Document Loader API Key": "Inserisci Chiave API del Caricatore Documenti Esterno",
|
"Enter External Document Loader API Key": "Inserisci Chiave API del Caricatore Documenti Esterno",
|
||||||
"Enter External Document Loader URL": "Inserisci URL del Caricatore Documenti Esterno",
|
"Enter External Document Loader URL": "Inserisci URL del Caricatore Documenti Esterno",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Esporta chat (.json)",
|
"Export chat (.json)": "Esporta chat (.json)",
|
||||||
"Export Chats": "Esporta Chat",
|
"Export Chats": "Esporta Chat",
|
||||||
"Export Config to JSON File": "Esporta Configurazione in file JSON",
|
"Export Config to JSON File": "Esporta Configurazione in file JSON",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Esporta Preset",
|
"Export Presets": "Esporta Preset",
|
||||||
"Export Prompt Suggestions": "Esporta i suggerimenti per il prompt",
|
"Export Prompt Suggestions": "Esporta i suggerimenti per il prompt",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Esporta in CSV",
|
"Export to CSV": "Esporta in CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "Esterno",
|
"External": "Esterno",
|
||||||
"External Document Loader URL required.": "URL esterna per il Document Loader necessaria.",
|
"External Document Loader URL required.": "URL esterna per il Document Loader necessaria.",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Importa Chat",
|
"Import Chats": "Importa Chat",
|
||||||
"Import Config from JSON File": "Importa Configurazione da File JSON",
|
"Import Config from JSON File": "Importa Configurazione da File JSON",
|
||||||
"Import From Link": "Importa dai link",
|
"Import From Link": "Importa dai link",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Importa Note",
|
"Import Notes": "Importa Note",
|
||||||
"Import Presets": "Importa Preset",
|
"Import Presets": "Importa Preset",
|
||||||
"Import Prompt Suggestions": "Importa suggerimenti Prompt",
|
"Import Prompt Suggestions": "Importa suggerimenti Prompt",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Aggiornamento importante",
|
"Important Update": "Aggiornamento importante",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Includi",
|
"Include": "Includi",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Includi il flag `--api-auth` quando esegui stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Includi il flag `--api-auth` quando esegui stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Includi il flag `--api` quando esegui stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Includi il flag `--api` quando esegui stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Include SharePoint",
|
"Includes SharePoint": "Include SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influenza la velocità con cui l'algoritmo risponde al feedback del testo generato. Un tasso di apprendimento più basso comporterà aggiustamenti più lenti, mentre un tasso di apprendimento più alto renderà l'algoritmo più reattivo.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influenza la velocità con cui l'algoritmo risponde al feedback del testo generato. Un tasso di apprendimento più basso comporterà aggiustamenti più lenti, mentre un tasso di apprendimento più alto renderà l'algoritmo più reattivo.",
|
||||||
"Info": "Informazioni",
|
"Info": "Informazioni",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "Nuova nota",
|
|
||||||
"New Password": "Nuova password",
|
"New Password": "Nuova password",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1643,6 +1653,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Digita URL di Risoluzione (Download) di Hugging Face",
|
"Type Hugging Face Resolve (Download) URL": "Digita URL di Risoluzione (Download) di Hugging Face",
|
||||||
"Uh-oh! There was an issue with the response.": "Oh-oh! C'è stato un problema con la risposta.",
|
"Uh-oh! There was an issue with the response.": "Oh-oh! C'è stato un problema con la risposta.",
|
||||||
"UI": "UI",
|
"UI": "UI",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Disarchivia Tutto",
|
"Unarchive All": "Disarchivia Tutto",
|
||||||
"Unarchive All Archived Chats": "Disarchivia Tutte le Chat Archiviate",
|
"Unarchive All Archived Chats": "Disarchivia Tutte le Chat Archiviate",
|
||||||
"Unarchive Chat": "Disarchivia Chat",
|
"Unarchive Chat": "Disarchivia Chat",
|
||||||
|
|
@ -1716,6 +1727,8 @@
|
||||||
"Voice": "Voce",
|
"Voice": "Voce",
|
||||||
"Voice Input": "Input vocale",
|
"Voice Input": "Input vocale",
|
||||||
"Voice mode": "Modalità vocale",
|
"Voice mode": "Modalità vocale",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Attenzione",
|
"Warning": "Attenzione",
|
||||||
"Warning:": "Attenzione:",
|
"Warning:": "Attenzione:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Attenzione: abilitando questo, gli utenti potranno caricare codice arbitrario sul server.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Attenzione: abilitando questo, gli utenti potranno caricare codice arbitrario sul server.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "追加設定",
|
"Additional Config": "追加設定",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "markerの追加設定オプション。これはキーと値のペアを含むJSON文字列である必要があります(例: '{\"key\": \"value\"}')。次のキーに対応しています: disable_links、keep_pageheader_in_output、keep_pagefooter_in_output、filter_blank_pages、drop_repeated_text、layout_coverage_threshold、merge_threshold、height_tolerance、gap_threshold、image_threshold、min_line_length、level_count、default_level",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "markerの追加設定オプション。これはキーと値のペアを含むJSON文字列である必要があります(例: '{\"key\": \"value\"}')。次のキーに対応しています: disable_links、keep_pageheader_in_output、keep_pagefooter_in_output、filter_blank_pages、drop_repeated_text、layout_coverage_threshold、merge_threshold、height_tolerance、gap_threshold、image_threshold、min_line_length、level_count、default_level",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "これらの設定を変更すると、すべてのユーザーに変更が適用されます。",
|
"Adjusting these settings will apply changes universally to all users.": "これらの設定を変更すると、すべてのユーザーに変更が適用されます。",
|
||||||
"admin": "管理者",
|
"admin": "管理者",
|
||||||
"Admin": "管理者",
|
"Admin": "管理者",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API キーが作成されました。",
|
"API Key created.": "API キーが作成されました。",
|
||||||
"API Key Endpoint Restrictions": "API キーのエンドポイント制限",
|
"API Key Endpoint Restrictions": "API キーのエンドポイント制限",
|
||||||
"API keys": "API キー",
|
"API keys": "API キー",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "API バージョン",
|
"API Version": "API バージョン",
|
||||||
"API Version is required": "API バージョンが必要です",
|
"API Version is required": "API バージョンが必要です",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "YYYY/MM/DD",
|
"DD/MM/YYYY": "YYYY/MM/DD",
|
||||||
"December": "12月",
|
"December": "12月",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "デフォルト",
|
"Default": "デフォルト",
|
||||||
"Default (Open AI)": "デフォルト(OpenAI)",
|
"Default (Open AI)": "デフォルト(OpenAI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "埋め込みモデル",
|
"Embedding Model": "埋め込みモデル",
|
||||||
"Embedding Model Engine": "埋め込みモデルエンジン",
|
"Embedding Model Engine": "埋め込みモデルエンジン",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "埋め込みモデルを\"{{embedding_model}}\"に設定しました",
|
"Embedding model set to \"{{embedding_model}}\"": "埋め込みモデルを\"{{embedding_model}}\"に設定しました",
|
||||||
"Enable API Key": "APIキーを有効にする",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "チャットメッセージの自動補完を有効にする",
|
"Enable autocomplete generation for chat messages": "チャットメッセージの自動補完を有効にする",
|
||||||
"Enable Code Execution": "コードの実行を有効にする",
|
"Enable Code Execution": "コードの実行を有効にする",
|
||||||
"Enable Code Interpreter": "コードインタプリタを有効にする",
|
"Enable Code Interpreter": "コードインタプリタを有効にする",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "エンドポイントURL",
|
"Endpoint URL": "エンドポイントURL",
|
||||||
"Enforce Temporary Chat": "一時的なチャットを強制する",
|
"Enforce Temporary Chat": "一時的なチャットを強制する",
|
||||||
"Enhance": "改善する",
|
"Enhance": "改善する",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSVファイルには、次の4つの列をこの順番で含めてください: Name, Email, Password, Role。",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSVファイルには、次の4つの列をこの順番で含めてください: Name, Email, Password, Role。",
|
||||||
"Enter {{role}} message here": "{{role}} メッセージをここに入力してください",
|
"Enter {{role}} message here": "{{role}} メッセージをここに入力してください",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "LLM が参照できるように、あなたに関する情報を入力してください",
|
"Enter a detail about yourself for your LLMs to recall": "LLM が参照できるように、あなたに関する情報を入力してください",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Docling Server URLを入力",
|
"Enter Docling Server URL": "Docling Server URLを入力",
|
||||||
"Enter Document Intelligence Endpoint": "Document Intelligenceエンドポイントを入力",
|
"Enter Document Intelligence Endpoint": "Document Intelligenceエンドポイントを入力",
|
||||||
"Enter Document Intelligence Key": "Document Intelligenceキーを入力",
|
"Enter Document Intelligence Key": "Document Intelligenceキーを入力",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "カンマ区切りのドメインを入力 (例: example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Exa APIキーを入力",
|
"Enter Exa API Key": "Exa APIキーを入力",
|
||||||
"Enter External Document Loader API Key": "外部ドキュメントローダーのAPIキーを入力",
|
"Enter External Document Loader API Key": "外部ドキュメントローダーのAPIキーを入力",
|
||||||
"Enter External Document Loader URL": "外部ドキュメントローダーのURLを入力",
|
"Enter External Document Loader URL": "外部ドキュメントローダーのURLを入力",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "チャットをエクスポート(.json)",
|
"Export chat (.json)": "チャットをエクスポート(.json)",
|
||||||
"Export Chats": "チャットをエクスポート",
|
"Export Chats": "チャットをエクスポート",
|
||||||
"Export Config to JSON File": "設定をJSONファイルでエクスポート",
|
"Export Config to JSON File": "設定をJSONファイルでエクスポート",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "プリセットのエクスポート",
|
"Export Presets": "プリセットのエクスポート",
|
||||||
"Export Prompt Suggestions": "プロンプトの提案をエクスポート",
|
"Export Prompt Suggestions": "プロンプトの提案をエクスポート",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "CSVにエクスポート",
|
"Export to CSV": "CSVにエクスポート",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "ユーザのエクスポート",
|
"Export Users": "ユーザのエクスポート",
|
||||||
"External": "外部",
|
"External": "外部",
|
||||||
"External Document Loader URL required.": "外部ドキュメントローダーのURLが必要です。",
|
"External Document Loader URL required.": "外部ドキュメントローダーのURLが必要です。",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "チャットをインポート",
|
"Import Chats": "チャットをインポート",
|
||||||
"Import Config from JSON File": "設定をJSONファイルからインポート",
|
"Import Config from JSON File": "設定をJSONファイルからインポート",
|
||||||
"Import From Link": "リンクからインポート",
|
"Import From Link": "リンクからインポート",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "ノートをインポート",
|
"Import Notes": "ノートをインポート",
|
||||||
"Import Presets": "プリセットをインポート",
|
"Import Presets": "プリセットをインポート",
|
||||||
"Import Prompt Suggestions": "プロンプトの提案をインポート",
|
"Import Prompt Suggestions": "プロンプトの提案をインポート",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "重要な更新",
|
"Important Update": "重要な更新",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "含める",
|
"Include": "含める",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "stable-diffusion-webuiを実行する際に`--api-auth`フラグを含めてください",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "stable-diffusion-webuiを実行する際に`--api-auth`フラグを含めてください",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webuiを実行する際に`--api`フラグを含めてください",
|
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webuiを実行する際に`--api`フラグを含めてください",
|
||||||
"Includes SharePoint": "SharePoint を含む",
|
"Includes SharePoint": "SharePoint を含む",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "生成されたテキストからのフィードバックに対するアルゴリズムの応答速度を影響します。低い学習率はより遅い調整をもたらし、高い学習率はアルゴリズムをより反応的にします。",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "生成されたテキストからのフィードバックに対するアルゴリズムの応答速度を影響します。低い学習率はより遅い調整をもたらし、高い学習率はアルゴリズムをより反応的にします。",
|
||||||
"Info": "情報",
|
"Info": "情報",
|
||||||
"Initials": "イニシャル",
|
"Initials": "イニシャル",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "新しいFunction",
|
"New Function": "新しいFunction",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "新しいノート",
|
|
||||||
"New Password": "新しいパスワード",
|
"New Password": "新しいパスワード",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1641,6 +1651,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ダウンロード) URL を入力してください",
|
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ダウンロード) URL を入力してください",
|
||||||
"Uh-oh! There was an issue with the response.": "レスポンスに問題がありました。",
|
"Uh-oh! There was an issue with the response.": "レスポンスに問題がありました。",
|
||||||
"UI": "",
|
"UI": "",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "すべてアーカイブ解除",
|
"Unarchive All": "すべてアーカイブ解除",
|
||||||
"Unarchive All Archived Chats": "すべてのアーカイブされたチャットをアーカイブ解除",
|
"Unarchive All Archived Chats": "すべてのアーカイブされたチャットをアーカイブ解除",
|
||||||
"Unarchive Chat": "チャットをアーカイブ解除",
|
"Unarchive Chat": "チャットをアーカイブ解除",
|
||||||
|
|
@ -1714,6 +1725,8 @@
|
||||||
"Voice": "ボイス",
|
"Voice": "ボイス",
|
||||||
"Voice Input": "音声入力",
|
"Voice Input": "音声入力",
|
||||||
"Voice mode": "音声モード",
|
"Voice mode": "音声モード",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "警告",
|
"Warning": "警告",
|
||||||
"Warning:": "警告:",
|
"Warning:": "警告:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "警告: これを有効にすると、ユーザーがサーバー上で任意のコードをアップロードできるようになります。",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "警告: これを有効にすると、ユーザーがサーバー上で任意のコードをアップロードできるようになります。",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "დამატებითი კონფიგურაცია",
|
"Additional Config": "დამატებითი კონფიგურაცია",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "დამატებითი პარამეტრები",
|
"Additional Parameters": "დამატებითი პარამეტრები",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "ამ პარამეტრების რეგულირება ცვლილებებს უნივერსალურად გამოიყენებს ყველა მომხმარებლისთვის.",
|
"Adjusting these settings will apply changes universally to all users.": "ამ პარამეტრების რეგულირება ცვლილებებს უნივერსალურად გამოიყენებს ყველა მომხმარებლისთვის.",
|
||||||
"admin": "ადმინისტრატორი",
|
"admin": "ადმინისტრატორი",
|
||||||
"Admin": "ადმინი",
|
"Admin": "ადმინი",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API გასაღები შეიქმნა.",
|
"API Key created.": "API გასაღები შეიქმნა.",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "API გასაღებები",
|
"API keys": "API გასაღებები",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "API-ის რეჟიმი",
|
"API Mode": "API-ის რეჟიმი",
|
||||||
"API Version": "API-ის ვერსია",
|
"API Version": "API-ის ვერსია",
|
||||||
"API Version is required": "API-ის ვერსია აუცილებელია",
|
"API Version is required": "API-ის ვერსია აუცილებელია",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "Datalab Marker-ის API",
|
"Datalab Marker API": "Datalab Marker-ის API",
|
||||||
"DD/MM/YYYY": "დდ/თთ/წწწწ",
|
"DD/MM/YYYY": "დდ/თთ/წწწწ",
|
||||||
"December": "დეკემბერი",
|
"December": "დეკემბერი",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "Deepgram",
|
"Deepgram": "Deepgram",
|
||||||
"Default": "ნაგულისხმევი",
|
"Default": "ნაგულისხმევი",
|
||||||
"Default (Open AI)": "ნაგულისხმევი (Open AI)",
|
"Default (Open AI)": "ნაგულისხმევი (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "მოდელის ჩაშენება",
|
"Embedding Model": "მოდელის ჩაშენება",
|
||||||
"Embedding Model Engine": "ჩაშენებული მოდელის ძრავა",
|
"Embedding Model Engine": "ჩაშენებული მოდელის ძრავა",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "ჩაშენებული მოდელი დაყენებულია მნიშვნელობაზე \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "ჩაშენებული მოდელი დაყენებულია მნიშვნელობაზე \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "API გასაღების ჩართვა",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "კოდის შესრულების ჩართვა",
|
"Enable Code Execution": "კოდის შესრულების ჩართვა",
|
||||||
"Enable Code Interpreter": "კოდის ინტერპრეტატორის ჩართვა",
|
"Enable Code Interpreter": "კოდის ინტერპრეტატორის ჩართვა",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "ბოლოწერტილის URL",
|
"Endpoint URL": "ბოლოწერტილის URL",
|
||||||
"Enforce Temporary Chat": "ნაძალადევი დროებითი ჩატი",
|
"Enforce Temporary Chat": "ნაძალადევი დროებითი ჩატი",
|
||||||
"Enhance": "გაუმჯობესება",
|
"Enhance": "გაუმჯობესება",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "დარწმუნდით, რომ თქვენი CSV-ფაილი შეიცავს 4 ველს ამ მიმდევრობით: სახელი, ელფოსტა, პაროლი, როლი.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "დარწმუნდით, რომ თქვენი CSV-ფაილი შეიცავს 4 ველს ამ მიმდევრობით: სახელი, ელფოსტა, პაროლი, როლი.",
|
||||||
"Enter {{role}} message here": "შეიყვანე {{role}} შეტყობინება აქ",
|
"Enter {{role}} message here": "შეიყვანე {{role}} შეტყობინება აქ",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "შეიყვანეთ რამე თქვენს შესახებ, რომ თქვენმა LLM-მა გაიხსენოს",
|
"Enter a detail about yourself for your LLMs to recall": "შეიყვანეთ რამე თქვენს შესახებ, რომ თქვენმა LLM-მა გაიხსენოს",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "შეიყვანეთ Exa API-ის გასაღები",
|
"Enter Exa API Key": "შეიყვანეთ Exa API-ის გასაღები",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "",
|
"Export chat (.json)": "",
|
||||||
"Export Chats": "ჩატების გატანა",
|
"Export Chats": "ჩატების გატანა",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "პრესეტების გატანა",
|
"Export Presets": "პრესეტების გატანა",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "CVS-ში გატანა",
|
"Export to CSV": "CVS-ში გატანა",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "მომხმარებლების გატანა",
|
"Export Users": "მომხმარებლების გატანა",
|
||||||
"External": "გარე",
|
"External": "გარე",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "ჩატების შემოტანა",
|
"Import Chats": "ჩატების შემოტანა",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "შემოტანა ბმულიდან",
|
"Import From Link": "შემოტანა ბმულიდან",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "შენიშვნების შემოტანა",
|
"Import Notes": "შენიშვნების შემოტანა",
|
||||||
"Import Presets": "პრესეტების შემოტანა",
|
"Import Presets": "პრესეტების შემოტანა",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "შემოტანა წარმატებულია",
|
"Import successful": "შემოტანა წარმატებულია",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "მნიშვნელოვანი განახლება",
|
"Important Update": "მნიშვნელოვანი განახლება",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "ჩართვა",
|
"Include": "ჩართვა",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "`--api` ალმის ჩასმა stable-diffusion-webui-ის გამოყენებისას",
|
"Include `--api` flag when running stable-diffusion-webui": "`--api` ალმის ჩასმა stable-diffusion-webui-ის გამოყენებისას",
|
||||||
"Includes SharePoint": "შეიცავს SharePoint-ს",
|
"Includes SharePoint": "შეიცავს SharePoint-ს",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "ინფორმაცია",
|
"Info": "ინფორმაცია",
|
||||||
"Initials": "ინიციალები",
|
"Initials": "ინიციალები",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "ახალი ფუნქცია",
|
"New Function": "ახალი ფუნქცია",
|
||||||
"New Knowledge": "ახალი ცოდნა",
|
"New Knowledge": "ახალი ცოდნა",
|
||||||
"New Model": "ახალი მოდელი",
|
"New Model": "ახალი მოდელი",
|
||||||
"New Note": "ახალი ჩანაწერი",
|
|
||||||
"New Password": "ახალი პაროლი",
|
"New Password": "ახალი პაროლი",
|
||||||
"New Prompt": "ახალი შეყვანა",
|
"New Prompt": "ახალი შეყვანა",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "აკრიფეთ HuggingFace-ის ამოხსნის (გადმოწერის) URL",
|
"Type Hugging Face Resolve (Download) URL": "აკრიფეთ HuggingFace-ის ამოხსნის (გადმოწერის) URL",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "UI",
|
"UI": "UI",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "ყველაფერის ამოარქივება",
|
"Unarchive All": "ყველაფერის ამოარქივება",
|
||||||
"Unarchive All Archived Chats": "ყველა დაარქივებული ჩატის ამოარქივება",
|
"Unarchive All Archived Chats": "ყველა დაარქივებული ჩატის ამოარქივება",
|
||||||
"Unarchive Chat": "ჩატის ამოარქივება",
|
"Unarchive Chat": "ჩატის ამოარქივება",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "ხმა",
|
"Voice": "ხმა",
|
||||||
"Voice Input": "ხმოვანი შეყვანა",
|
"Voice Input": "ხმოვანი შეყვანა",
|
||||||
"Voice mode": "ხმის რეჟიმი",
|
"Voice mode": "ხმის რეჟიმი",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "გაფრთხილება",
|
"Warning": "გაფრთხილება",
|
||||||
"Warning:": "გაფრთხილება:",
|
"Warning:": "გაფრთხილება:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "Tawila tamernant",
|
"Additional Config": "Tawila tamernant",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "Iɣewwaren nniḍen",
|
"Additional Parameters": "Iɣewwaren nniḍen",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Aswati n yiɣewwaren-a ad yessuter ibeddilen s wudem ameɣradan i yiseqdacen akk.",
|
"Adjusting these settings will apply changes universally to all users.": "Aswati n yiɣewwaren-a ad yessuter ibeddilen s wudem ameɣradan i yiseqdacen akk.",
|
||||||
"admin": "anedbal",
|
"admin": "anedbal",
|
||||||
"Admin": "Anebdal",
|
"Admin": "Anebdal",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "Tasarut API tennulfa-d.",
|
"API Key created.": "Tasarut API tennulfa-d.",
|
||||||
"API Key Endpoint Restrictions": "Agaz n ugaz n tsarut API",
|
"API Key Endpoint Restrictions": "Agaz n ugaz n tsarut API",
|
||||||
"API keys": "Tisura API",
|
"API keys": "Tisura API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "Lqem n API",
|
"API Version": "Lqem n API",
|
||||||
"API Version is required": "Lqem n API yettwasra",
|
"API Version is required": "Lqem n API yettwasra",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "API n Datalab Marker",
|
"Datalab Marker API": "API n Datalab Marker",
|
||||||
"DD/MM/YYYY": "JJ/MM/AAAA",
|
"DD/MM/YYYY": "JJ/MM/AAAA",
|
||||||
"December": "Duǧambeṛ",
|
"December": "Duǧambeṛ",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "Deepgram",
|
"Deepgram": "Deepgram",
|
||||||
"Default": "Amezwer",
|
"Default": "Amezwer",
|
||||||
"Default (Open AI)": "Amezwer (Open AI)",
|
"Default (Open AI)": "Amezwer (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Tamudemt n ujmak",
|
"Embedding Model": "Tamudemt n ujmak",
|
||||||
"Embedding Model Engine": "Amsedday n tmudemt n ujmak",
|
"Embedding Model Engine": "Amsedday n tmudemt n ujmak",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Tettusbadu tmudemt n ujmak ɣef \"{{embedding_model}}\"\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Tettusbadu tmudemt n ujmak ɣef \"{{embedding_model}}\"\"",
|
||||||
"Enable API Key": "Rmed tasarut API",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Rmed tasuta tawurmant tummidt i udiwenni iznan",
|
"Enable autocomplete generation for chat messages": "Rmed tasuta tawurmant tummidt i udiwenni iznan",
|
||||||
"Enable Code Execution": "Rmed aselkem n tengalt",
|
"Enable Code Execution": "Rmed aselkem n tengalt",
|
||||||
"Enable Code Interpreter": "Rmed asegzay n tengalt",
|
"Enable Code Interpreter": "Rmed asegzay n tengalt",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "URL n wagaz n uzgu",
|
"Endpoint URL": "URL n wagaz n uzgu",
|
||||||
"Enforce Temporary Chat": "Ḥettem idiwenniyen iskudanen",
|
"Enforce Temporary Chat": "Ḥettem idiwenniyen iskudanen",
|
||||||
"Enhance": "Yesnernay",
|
"Enhance": "Yesnernay",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ssefqed afaylu-inek CSV deg-s 4 n tgejda deg uswir-a: Isem, Email, awal uffir, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ssefqed afaylu-inek CSV deg-s 4 n tgejda deg uswir-a: Isem, Email, awal uffir, Role.",
|
||||||
"Enter {{role}} message here": "Sekcem izen n {{role}} dagi",
|
"Enter {{role}} message here": "Sekcem izen n {{role}} dagi",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Ssekcem-d ttfaṣil ɣef yiman-nnek akken ad d-temmektid LLMs-nnek akken ad d-temmektid",
|
"Enter a detail about yourself for your LLMs to recall": "Ssekcem-d ttfaṣil ɣef yiman-nnek akken ad d-temmektid LLMs-nnek akken ad d-temmektid",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Sekcem tansa URL n uqeddac",
|
"Enter Docling Server URL": "Sekcem tansa URL n uqeddac",
|
||||||
"Enter Document Intelligence Endpoint": "Sekcem agaz n tagara n yisemli",
|
"Enter Document Intelligence Endpoint": "Sekcem agaz n tagara n yisemli",
|
||||||
"Enter Document Intelligence Key": "Kcem ɣer tsarut n wulli",
|
"Enter Document Intelligence Key": "Kcem ɣer tsarut n wulli",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Sekcem taɣulin yebḍan s tefrayin (amedya: example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Kcem ɣer Exa Tasarut",
|
"Enter Exa API Key": "Kcem ɣer Exa Tasarut",
|
||||||
"Enter External Document Loader API Key": "Sekcem-d tasarut API n usezdam n isemliyen yeffɣen",
|
"Enter External Document Loader API Key": "Sekcem-d tasarut API n usezdam n isemliyen yeffɣen",
|
||||||
"Enter External Document Loader URL": "Sekcem tansa URL n ukaram n isemli imeṛṛa",
|
"Enter External Document Loader URL": "Sekcem tansa URL n ukaram n isemli imeṛṛa",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Kter asqerdec (.json)",
|
"Export chat (.json)": "Kter asqerdec (.json)",
|
||||||
"Export Chats": "Sifeḍ idiwenniyen",
|
"Export Chats": "Sifeḍ idiwenniyen",
|
||||||
"Export Config to JSON File": "Sifeḍ asesteb ɣer ufaylu JSON",
|
"Export Config to JSON File": "Sifeḍ asesteb ɣer ufaylu JSON",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Sifeḍ isestab uzwiren",
|
"Export Presets": "Sifeḍ isestab uzwiren",
|
||||||
"Export Prompt Suggestions": "Sifeḍ isumar n uneftaɣ",
|
"Export Prompt Suggestions": "Sifeḍ isumar n uneftaɣ",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Kter ɣer CSV",
|
"Export to CSV": "Kter ɣer CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "Sifeḍ iseqdacen",
|
"Export Users": "Sifeḍ iseqdacen",
|
||||||
"External": "Azɣaray",
|
"External": "Azɣaray",
|
||||||
"External Document Loader URL required.": "URL n uslay n yisemli azɣaray, yettwasra.",
|
"External Document Loader URL required.": "URL n uslay n yisemli azɣaray, yettwasra.",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Asifeḍ n yidiwenniyen",
|
"Import Chats": "Asifeḍ n yidiwenniyen",
|
||||||
"Import Config from JSON File": "Kter-d Config seg ufaylu JSON",
|
"Import Config from JSON File": "Kter-d Config seg ufaylu JSON",
|
||||||
"Import From Link": "Kter seg useɣwen",
|
"Import From Link": "Kter seg useɣwen",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Kter tizmilin",
|
"Import Notes": "Kter tizmilin",
|
||||||
"Import Presets": "Kter iɣewwaren uzwiren",
|
"Import Presets": "Kter iɣewwaren uzwiren",
|
||||||
"Import Prompt Suggestions": "Kter isumar n uneftaɣ",
|
"Import Prompt Suggestions": "Kter isumar n uneftaɣ",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "Taktert tella-d akken iwata",
|
"Import successful": "Taktert tella-d akken iwata",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Aleqqem ahemmu",
|
"Important Update": "Aleqqem ahemmu",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Seddu",
|
"Include": "Seddu",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Seddu annay `--api-auth` lawan n uselkem n stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Seddu annay `--api-auth` lawan n uselkem n stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Seddu takbabt ''-api' mi ara teslekmeḍ stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Seddu takbabt ''-api' mi ara teslekmeḍ stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Igber SharePoint",
|
"Includes SharePoint": "Igber SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "Talɣut",
|
"Info": "Talɣut",
|
||||||
"Initials": "Isekkilen imezwura",
|
"Initials": "Isekkilen imezwura",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "Tasɣent tamaynut",
|
"New Function": "Tasɣent tamaynut",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "Tamudemt tamaynut",
|
"New Model": "Tamudemt tamaynut",
|
||||||
"New Note": "Tazmilt tamaynut",
|
|
||||||
"New Password": "Awal n uɛeddi amaynut",
|
"New Password": "Awal n uɛeddi amaynut",
|
||||||
"New Prompt": "Aneftaɣ amaynut",
|
"New Prompt": "Aneftaɣ amaynut",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Anaw n usefres n wudem amezwer (Download) URL",
|
"Type Hugging Face Resolve (Download) URL": "Anaw n usefres n wudem amezwer (Download) URL",
|
||||||
"Uh-oh! There was an issue with the response.": "Uh! Tella-d tuccḍa akked tririt-nni.",
|
"Uh-oh! There was an issue with the response.": "Uh! Tella-d tuccḍa akked tririt-nni.",
|
||||||
"UI": "Agrudem n useqdac",
|
"UI": "Agrudem n useqdac",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "Taɣect",
|
"Voice": "Taɣect",
|
||||||
"Voice Input": "Anekcam s taɣect",
|
"Voice Input": "Anekcam s taɣect",
|
||||||
"Voice mode": "Askar n taɣect",
|
"Voice mode": "Askar n taɣect",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Ɣur-k",
|
"Warning": "Ɣur-k",
|
||||||
"Warning:": "Alɣu:",
|
"Warning:": "Alɣu:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Ɣur-k: Asewḥel n waya ad yeǧǧ iseqdacen ad d-salin tangalt tazurant ɣef uqeddac.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Ɣur-k: Asewḥel n waya ad yeǧǧ iseqdacen ad d-salin tangalt tazurant ɣef uqeddac.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "추가 설정",
|
"Additional Config": "추가 설정",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Marker에 대한 추가 설정 옵션입니다. 키-값 쌍으로 이루어진 JSON 문자열이어야 합니다. 예를 들어, '{\"key\": \"value\"}'와 같습니다. 지원되는 키는 다음과 같습니다: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Marker에 대한 추가 설정 옵션입니다. 키-값 쌍으로 이루어진 JSON 문자열이어야 합니다. 예를 들어, '{\"key\": \"value\"}'와 같습니다. 지원되는 키는 다음과 같습니다: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
|
||||||
"Additional Parameters": "추가 매개변수",
|
"Additional Parameters": "추가 매개변수",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "이 설정을 조정하면 모든 사용자에게 변경 사항이 일괄 적용됩니다.",
|
"Adjusting these settings will apply changes universally to all users.": "이 설정을 조정하면 모든 사용자에게 변경 사항이 일괄 적용됩니다.",
|
||||||
"admin": "관리자",
|
"admin": "관리자",
|
||||||
"Admin": "관리자",
|
"Admin": "관리자",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API 키가 생성되었습니다.",
|
"API Key created.": "API 키가 생성되었습니다.",
|
||||||
"API Key Endpoint Restrictions": "API 키 엔드포인트 제한",
|
"API Key Endpoint Restrictions": "API 키 엔드포인트 제한",
|
||||||
"API keys": "API 키",
|
"API keys": "API 키",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "API 버전",
|
"API Version": "API 버전",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "Datalab Marker API",
|
"Datalab Marker API": "Datalab Marker API",
|
||||||
"DD/MM/YYYY": "YYYY/MM/DD",
|
"DD/MM/YYYY": "YYYY/MM/DD",
|
||||||
"December": "12월",
|
"December": "12월",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "기본값",
|
"Default": "기본값",
|
||||||
"Default (Open AI)": "기본값 (Open AI)",
|
"Default (Open AI)": "기본값 (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "임베딩 모델",
|
"Embedding Model": "임베딩 모델",
|
||||||
"Embedding Model Engine": "임베딩 모델 엔진",
|
"Embedding Model Engine": "임베딩 모델 엔진",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "임베딩 모델을 \"{{embedding_model}}\"로 설정함",
|
"Embedding model set to \"{{embedding_model}}\"": "임베딩 모델을 \"{{embedding_model}}\"로 설정함",
|
||||||
"Enable API Key": "API 키 활성화",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "채팅 메시지에 대한 자동 완성 생성 활성화",
|
"Enable autocomplete generation for chat messages": "채팅 메시지에 대한 자동 완성 생성 활성화",
|
||||||
"Enable Code Execution": "코드 실행 활성화",
|
"Enable Code Execution": "코드 실행 활성화",
|
||||||
"Enable Code Interpreter": "코드 인터프리터 활성화",
|
"Enable Code Interpreter": "코드 인터프리터 활성화",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "엔드포인트 URL",
|
"Endpoint URL": "엔드포인트 URL",
|
||||||
"Enforce Temporary Chat": "임시 채팅 강제 적용",
|
"Enforce Temporary Chat": "임시 채팅 강제 적용",
|
||||||
"Enhance": "향상",
|
"Enhance": "향상",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV 파일에 이름, 이메일, 비밀번호, 역할 4개의 열이 순서대로 포함되어 있는지 확인하세요.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV 파일에 이름, 이메일, 비밀번호, 역할 4개의 열이 순서대로 포함되어 있는지 확인하세요.",
|
||||||
"Enter {{role}} message here": "여기에 {{role}} 메시지 입력",
|
"Enter {{role}} message here": "여기에 {{role}} 메시지 입력",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "자신에 대한 세부사항을 입력하여 LLM들이 기억할 수 있도록 하세요.",
|
"Enter a detail about yourself for your LLMs to recall": "자신에 대한 세부사항을 입력하여 LLM들이 기억할 수 있도록 하세요.",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Docling 서버 URL 입력",
|
"Enter Docling Server URL": "Docling 서버 URL 입력",
|
||||||
"Enter Document Intelligence Endpoint": "Document Intelligence 엔드포인트 입력",
|
"Enter Document Intelligence Endpoint": "Document Intelligence 엔드포인트 입력",
|
||||||
"Enter Document Intelligence Key": "Document Intelligence 키 입력",
|
"Enter Document Intelligence Key": "Document Intelligence 키 입력",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "쉼표로 구분된 도메인 입력 (예: example.com, site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Exa API 키 입력",
|
"Enter Exa API Key": "Exa API 키 입력",
|
||||||
"Enter External Document Loader API Key": "외부 문서 로더 API 키 입력",
|
"Enter External Document Loader API Key": "외부 문서 로더 API 키 입력",
|
||||||
"Enter External Document Loader URL": "외부 문서 로더 URL 입력",
|
"Enter External Document Loader URL": "외부 문서 로더 URL 입력",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "채팅 내보내기 (.json)",
|
"Export chat (.json)": "채팅 내보내기 (.json)",
|
||||||
"Export Chats": "채팅 내보내기",
|
"Export Chats": "채팅 내보내기",
|
||||||
"Export Config to JSON File": "Config를 JSON 파일로 내보내기",
|
"Export Config to JSON File": "Config를 JSON 파일로 내보내기",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "프리셋 내보내기",
|
"Export Presets": "프리셋 내보내기",
|
||||||
"Export Prompt Suggestions": "프롬프트 제안 내보내기",
|
"Export Prompt Suggestions": "프롬프트 제안 내보내기",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "CSV로 내보내기",
|
"Export to CSV": "CSV로 내보내기",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "사용자 정보 내보내기",
|
"Export Users": "사용자 정보 내보내기",
|
||||||
"External": "외부",
|
"External": "외부",
|
||||||
"External Document Loader URL required.": "외부 문서 로더 URL이 필요합니다.",
|
"External Document Loader URL required.": "외부 문서 로더 URL이 필요합니다.",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "채팅 가져오기",
|
"Import Chats": "채팅 가져오기",
|
||||||
"Import Config from JSON File": "JSON 파일에서 설정 가져오기",
|
"Import Config from JSON File": "JSON 파일에서 설정 가져오기",
|
||||||
"Import From Link": "링크에서 가져오기",
|
"Import From Link": "링크에서 가져오기",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "노트 가져오기",
|
"Import Notes": "노트 가져오기",
|
||||||
"Import Presets": "프리셋 가져오기",
|
"Import Presets": "프리셋 가져오기",
|
||||||
"Import Prompt Suggestions": "프롬프트 제안 가져오기",
|
"Import Prompt Suggestions": "프롬프트 제안 가져오기",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "중요 업데이트",
|
"Important Update": "중요 업데이트",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "포함",
|
"Include": "포함",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "stable-diffusion-webui를 실행 시 `--api-auth` 플래그를 포함하세요",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "stable-diffusion-webui를 실행 시 `--api-auth` 플래그를 포함하세요",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui를 실행 시 `--api` 플래그를 포함하세요",
|
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui를 실행 시 `--api` 플래그를 포함하세요",
|
||||||
"Includes SharePoint": "SharePoint 포함",
|
"Includes SharePoint": "SharePoint 포함",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "생성된 텍스트의 피드백에 알고리즘이 얼마나 빨리 반응하는지에 영향을 미칩니다. 학습률이 낮을수록 조정 속도가 느려지고 학습률이 높아지면 알고리즘의 반응 속도가 빨라집니다.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "생성된 텍스트의 피드백에 알고리즘이 얼마나 빨리 반응하는지에 영향을 미칩니다. 학습률이 낮을수록 조정 속도가 느려지고 학습률이 높아지면 알고리즘의 반응 속도가 빨라집니다.",
|
||||||
"Info": "정보",
|
"Info": "정보",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "새 함수",
|
"New Function": "새 함수",
|
||||||
"New Knowledge": "새 지식 기반",
|
"New Knowledge": "새 지식 기반",
|
||||||
"New Model": "새 모델",
|
"New Model": "새 모델",
|
||||||
"New Note": "새 노트",
|
|
||||||
"New Password": "새 비밀번호",
|
"New Password": "새 비밀번호",
|
||||||
"New Prompt": "새 프롬프트",
|
"New Prompt": "새 프롬프트",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1641,6 +1651,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (다운로드) URL 입력",
|
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (다운로드) URL 입력",
|
||||||
"Uh-oh! There was an issue with the response.": "이런! 응답에 문제가 발생했습니다.",
|
"Uh-oh! There was an issue with the response.": "이런! 응답에 문제가 발생했습니다.",
|
||||||
"UI": "UI",
|
"UI": "UI",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "모두 보관 해제",
|
"Unarchive All": "모두 보관 해제",
|
||||||
"Unarchive All Archived Chats": "보관된 모든 채팅을 보관 해제",
|
"Unarchive All Archived Chats": "보관된 모든 채팅을 보관 해제",
|
||||||
"Unarchive Chat": "채팅 보관 해제",
|
"Unarchive Chat": "채팅 보관 해제",
|
||||||
|
|
@ -1714,6 +1725,8 @@
|
||||||
"Voice": "음성",
|
"Voice": "음성",
|
||||||
"Voice Input": "음성 입력",
|
"Voice Input": "음성 입력",
|
||||||
"Voice mode": "음성 모드 사용",
|
"Voice mode": "음성 모드 사용",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "경고",
|
"Warning": "경고",
|
||||||
"Warning:": "주의:",
|
"Warning:": "주의:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "주의: 이 기능을 활성화하면 사용자가 서버에 임의 코드를 업로드할 수 있습니다.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "주의: 이 기능을 활성화하면 사용자가 서버에 임의 코드를 업로드할 수 있습니다.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Šių nustatymų pakeitimas bus pritakytas visiems naudotojams.",
|
"Adjusting these settings will apply changes universally to all users.": "Šių nustatymų pakeitimas bus pritakytas visiems naudotojams.",
|
||||||
"admin": "Administratorius",
|
"admin": "Administratorius",
|
||||||
"Admin": "Administratorius",
|
"Admin": "Administratorius",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API raktas sukurtas",
|
"API Key created.": "API raktas sukurtas",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "API raktai",
|
"API keys": "API raktai",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "Gruodis",
|
"December": "Gruodis",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Numatytasis",
|
"Default": "Numatytasis",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Embedding modelis",
|
"Embedding Model": "Embedding modelis",
|
||||||
"Embedding Model Engine": "Embedding modelio variklis",
|
"Embedding Model Engine": "Embedding modelio variklis",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding modelis nustatytas kaip\"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Embedding modelis nustatytas kaip\"{{embedding_model}}\"",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Įsitikinkite, kad CSV failas turi 4 kolonas šiuo eiliškumu: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Įsitikinkite, kad CSV failas turi 4 kolonas šiuo eiliškumu: Name, Email, Password, Role.",
|
||||||
"Enter {{role}} message here": "Įveskite {{role}} žinutę čia",
|
"Enter {{role}} message here": "Įveskite {{role}} žinutę čia",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Įveskite informaciją apie save jūsų modelio atminčiai",
|
"Enter a detail about yourself for your LLMs to recall": "Įveskite informaciją apie save jūsų modelio atminčiai",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Eksportuoti pokalbį (.json)",
|
"Export chat (.json)": "Eksportuoti pokalbį (.json)",
|
||||||
"Export Chats": "Eksportuoti pokalbius",
|
"Export Chats": "Eksportuoti pokalbius",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Importuoti pokalbius",
|
"Import Chats": "Importuoti pokalbius",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Svarbus atnaujinimas",
|
"Important Update": "Svarbus atnaujinimas",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "",
|
"Include": "",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Įtraukti `--api-auth` flag when running stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Įtraukti `--api-auth` flag when running stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Pridėti `--api` kai vykdomas stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Pridėti `--api` kai vykdomas stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Įtraukiamas SharePoint",
|
"Includes SharePoint": "Įtraukiamas SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "Informacija",
|
"Info": "Informacija",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "Naujas slaptažodis",
|
"New Password": "Naujas slaptažodis",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1644,6 +1654,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Įveskite Hugging Face Resolve nuorodą",
|
"Type Hugging Face Resolve (Download) URL": "Įveskite Hugging Face Resolve nuorodą",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "sąsaja",
|
"UI": "sąsaja",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1717,6 +1728,8 @@
|
||||||
"Voice": "Balsas",
|
"Voice": "Balsas",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Perspėjimas",
|
"Warning": "Perspėjimas",
|
||||||
"Warning:": "Perspėjimas",
|
"Warning:": "Perspėjimas",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Melaraskan tetapan ini akan menggunakan perubahan secara universal kepada semua pengguna.",
|
"Adjusting these settings will apply changes universally to all users.": "Melaraskan tetapan ini akan menggunakan perubahan secara universal kepada semua pengguna.",
|
||||||
"admin": "pentadbir",
|
"admin": "pentadbir",
|
||||||
"Admin": "Pentadbir",
|
"Admin": "Pentadbir",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "Kunci API dicipta",
|
"API Key created.": "Kunci API dicipta",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "Kekunci API",
|
"API keys": "Kekunci API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "Disember",
|
"December": "Disember",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Lalai",
|
"Default": "Lalai",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Model Benamkan",
|
"Embedding Model": "Model Benamkan",
|
||||||
"Embedding Model Engine": "Enjin Model Benamkan",
|
"Embedding Model Engine": "Enjin Model Benamkan",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Model Benamkan ditetapkan kepada \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Model Benamkan ditetapkan kepada \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "astikan fail CSV anda mengandungi 4 lajur dalam susunan ini: Nama, E-mel, Kata Laluan, Peranan.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "astikan fail CSV anda mengandungi 4 lajur dalam susunan ini: Nama, E-mel, Kata Laluan, Peranan.",
|
||||||
"Enter {{role}} message here": "Masukkan mesej {{role}} di sini",
|
"Enter {{role}} message here": "Masukkan mesej {{role}} di sini",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Masukkan butiran tentang diri anda untuk diingati oleh LLM anda",
|
"Enter a detail about yourself for your LLMs to recall": "Masukkan butiran tentang diri anda untuk diingati oleh LLM anda",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Eksport perbualan (.json)",
|
"Export chat (.json)": "Eksport perbualan (.json)",
|
||||||
"Export Chats": "Eksport Perbualan",
|
"Export Chats": "Eksport Perbualan",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Import Perbualan",
|
"Import Chats": "Import Perbualan",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Kemas kini penting",
|
"Important Update": "Kemas kini penting",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "",
|
"Include": "",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Sertakan bendera `-- api -auth` semasa menjalankan stable-diffusion-webui ",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Sertakan bendera `-- api -auth` semasa menjalankan stable-diffusion-webui ",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Sertakan bendera `-- api ` semasa menjalankan stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Sertakan bendera `-- api ` semasa menjalankan stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Termasuk SharePoint",
|
"Includes SharePoint": "Termasuk SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "Maklumat",
|
"Info": "Maklumat",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "Kata Laluan Baru",
|
"New Password": "Kata Laluan Baru",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1641,6 +1651,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Taip URL 'Hugging Face Resolve (Download)'",
|
"Type Hugging Face Resolve (Download) URL": "Taip URL 'Hugging Face Resolve (Download)'",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "UI",
|
"UI": "UI",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1714,6 +1725,8 @@
|
||||||
"Voice": "Suara",
|
"Voice": "Suara",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Amaran",
|
"Warning": "Amaran",
|
||||||
"Warning:": "Amaran:",
|
"Warning:": "Amaran:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Endring av disse innstillingene vil gjelde for alle brukere på tvers av systemet.",
|
"Adjusting these settings will apply changes universally to all users.": "Endring av disse innstillingene vil gjelde for alle brukere på tvers av systemet.",
|
||||||
"admin": "administrator",
|
"admin": "administrator",
|
||||||
"Admin": "Administrator",
|
"Admin": "Administrator",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API-nøkkel opprettet.",
|
"API Key created.": "API-nøkkel opprettet.",
|
||||||
"API Key Endpoint Restrictions": "Begrensninger for API-nøkkelens endepunkt",
|
"API Key Endpoint Restrictions": "Begrensninger for API-nøkkelens endepunkt",
|
||||||
"API keys": "API-nøkler",
|
"API keys": "API-nøkler",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "desember",
|
"December": "desember",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Standard",
|
"Default": "Standard",
|
||||||
"Default (Open AI)": "Standard (Open AI)",
|
"Default (Open AI)": "Standard (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Innbyggingsmodell",
|
"Embedding Model": "Innbyggingsmodell",
|
||||||
"Embedding Model Engine": "Motor for innbygging av modeller",
|
"Embedding Model Engine": "Motor for innbygging av modeller",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Innbyggingsmodell angitt til \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Innbyggingsmodell angitt til \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "Aktiver ",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Aktiver automatisk utfylling av chatmeldinger",
|
"Enable autocomplete generation for chat messages": "Aktiver automatisk utfylling av chatmeldinger",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "Aktiver kodetolker",
|
"Enable Code Interpreter": "Aktiver kodetolker",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at CSV-filen din inkluderer fire kolonner i denne rekkefølgen: Navn, E-post, Passord, Rolle.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at CSV-filen din inkluderer fire kolonner i denne rekkefølgen: Navn, E-post, Passord, Rolle.",
|
||||||
"Enter {{role}} message here": "Skriv inn {{role}} melding her",
|
"Enter {{role}} message here": "Skriv inn {{role}} melding her",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Skriv inn en detalj om deg selv som språkmodellene dine kan huske",
|
"Enter a detail about yourself for your LLMs to recall": "Skriv inn en detalj om deg selv som språkmodellene dine kan huske",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "Angi endepunkt for Intelligens i dokumenter",
|
"Enter Document Intelligence Endpoint": "Angi endepunkt for Intelligens i dokumenter",
|
||||||
"Enter Document Intelligence Key": "Angi nøkkel for Intelligens i dokumenter",
|
"Enter Document Intelligence Key": "Angi nøkkel for Intelligens i dokumenter",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Angi domener atskilt med komma (f.eks. eksempel.com, side.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Angi API-nøkkel for Exa",
|
"Enter Exa API Key": "Angi API-nøkkel for Exa",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Eksporter chat (.json)",
|
"Export chat (.json)": "Eksporter chat (.json)",
|
||||||
"Export Chats": "Eksporter chatter",
|
"Export Chats": "Eksporter chatter",
|
||||||
"Export Config to JSON File": "Ekporter konfigurasjon til en JSON-fil",
|
"Export Config to JSON File": "Ekporter konfigurasjon til en JSON-fil",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Eksporter forhåndsinnstillinger",
|
"Export Presets": "Eksporter forhåndsinnstillinger",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Eksporter til CSV",
|
"Export to CSV": "Eksporter til CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Importer chatter",
|
"Import Chats": "Importer chatter",
|
||||||
"Import Config from JSON File": "Importer konfigurasjon fra en JSON-fil",
|
"Import Config from JSON File": "Importer konfigurasjon fra en JSON-fil",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "Importer forhåndsinnstillinger",
|
"Import Presets": "Importer forhåndsinnstillinger",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Viktig oppdatering",
|
"Important Update": "Viktig oppdatering",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Inkluder",
|
"Include": "Inkluder",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Inkluder flagget --api-auth når du kjører stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Inkluder flagget --api-auth når du kjører stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Inkluder flagget --api når du kjører stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Inkluder flagget --api når du kjører stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Inkluderer SharePoint",
|
"Includes SharePoint": "Inkluderer SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "Info",
|
"Info": "Info",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "Nytt passord",
|
"New Password": "Nytt passord",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Angi nedlastings-Resolve-URL for Hugging Face",
|
"Type Hugging Face Resolve (Download) URL": "Angi nedlastings-Resolve-URL for Hugging Face",
|
||||||
"Uh-oh! There was an issue with the response.": "Oi! Det oppstod et problem med svaret.",
|
"Uh-oh! There was an issue with the response.": "Oi! Det oppstod et problem med svaret.",
|
||||||
"UI": "UI",
|
"UI": "UI",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Opphev arkiveringen av alle",
|
"Unarchive All": "Opphev arkiveringen av alle",
|
||||||
"Unarchive All Archived Chats": "Opphev arkiveringen av alle arkiverte chatter",
|
"Unarchive All Archived Chats": "Opphev arkiveringen av alle arkiverte chatter",
|
||||||
"Unarchive Chat": "Opphev arkivering av chat",
|
"Unarchive Chat": "Opphev arkivering av chat",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "Stemme",
|
"Voice": "Stemme",
|
||||||
"Voice Input": "Taleinndata",
|
"Voice Input": "Taleinndata",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Advarsel",
|
"Warning": "Advarsel",
|
||||||
"Warning:": "Advarsel!",
|
"Warning:": "Advarsel!",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Advarsel: Hvis du aktiverer denne funksjonen, kan brukere laste opp vilkårlig kode på serveren.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Advarsel: Hvis du aktiverer denne funksjonen, kan brukere laste opp vilkårlig kode på serveren.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "Extra configuratie",
|
"Additional Config": "Extra configuratie",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Het aanpassen van deze instellingen zal universeel worden toegepast op alle gebruikers.",
|
"Adjusting these settings will apply changes universally to all users.": "Het aanpassen van deze instellingen zal universeel worden toegepast op alle gebruikers.",
|
||||||
"admin": "beheerder",
|
"admin": "beheerder",
|
||||||
"Admin": "Beheerder",
|
"Admin": "Beheerder",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API-sleutel aangemaakt.",
|
"API Key created.": "API-sleutel aangemaakt.",
|
||||||
"API Key Endpoint Restrictions": "API-sleutel endpoint-beperkingen",
|
"API Key Endpoint Restrictions": "API-sleutel endpoint-beperkingen",
|
||||||
"API keys": "API-sleutels",
|
"API keys": "API-sleutels",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "December",
|
"December": "December",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Standaard",
|
"Default": "Standaard",
|
||||||
"Default (Open AI)": "Standaard (Open AI)",
|
"Default (Open AI)": "Standaard (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Embedding Model",
|
"Embedding Model": "Embedding Model",
|
||||||
"Embedding Model Engine": "Embedding Model Engine",
|
"Embedding Model Engine": "Embedding Model Engine",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Embedding model ingesteld op \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Embedding model ingesteld op \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "API-sleutel inschakelen",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Automatische aanvullingsgeneratie voor chatberichten inschakelen",
|
"Enable autocomplete generation for chat messages": "Automatische aanvullingsgeneratie voor chatberichten inschakelen",
|
||||||
"Enable Code Execution": "Code-uitvoer inschakelen",
|
"Enable Code Execution": "Code-uitvoer inschakelen",
|
||||||
"Enable Code Interpreter": "Code-interpretatie inschakelen",
|
"Enable Code Interpreter": "Code-interpretatie inschakelen",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "Tijdelijke chat afdwingen",
|
"Enforce Temporary Chat": "Tijdelijke chat afdwingen",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Zorg ervoor dat uw CSV-bestand de volgende vier kolommen in deze volgorde bevat: Naam, E-mail, Wachtwoord, Rol.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Zorg ervoor dat uw CSV-bestand de volgende vier kolommen in deze volgorde bevat: Naam, E-mail, Wachtwoord, Rol.",
|
||||||
"Enter {{role}} message here": "Voeg {{role}} bericht hier toe",
|
"Enter {{role}} message here": "Voeg {{role}} bericht hier toe",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Voer een detail over jezelf in zodat LLM's het kunnen onthouden",
|
"Enter a detail about yourself for your LLMs to recall": "Voer een detail over jezelf in zodat LLM's het kunnen onthouden",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Voer Docling Server-URL in",
|
"Enter Docling Server URL": "Voer Docling Server-URL in",
|
||||||
"Enter Document Intelligence Endpoint": "Voer Document Intelligence endpoint in",
|
"Enter Document Intelligence Endpoint": "Voer Document Intelligence endpoint in",
|
||||||
"Enter Document Intelligence Key": "Voer Document Intelligence sleutel in",
|
"Enter Document Intelligence Key": "Voer Document Intelligence sleutel in",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Voer domeinen in gescheiden met komma's (bijv., voorbeeld.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Voer Exa API-sleutel in",
|
"Enter Exa API Key": "Voer Exa API-sleutel in",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Exporteer chat (.json)",
|
"Export chat (.json)": "Exporteer chat (.json)",
|
||||||
"Export Chats": "Exporteer chats",
|
"Export Chats": "Exporteer chats",
|
||||||
"Export Config to JSON File": "Exporteer configuratie naar JSON-bestand",
|
"Export Config to JSON File": "Exporteer configuratie naar JSON-bestand",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Exporteer voorinstellingen",
|
"Export Presets": "Exporteer voorinstellingen",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Exporteer naar CSV",
|
"Export to CSV": "Exporteer naar CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "Extern",
|
"External": "Extern",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Importeer Chats",
|
"Import Chats": "Importeer Chats",
|
||||||
"Import Config from JSON File": "Importeer configuratie vanuit JSON-bestand",
|
"Import Config from JSON File": "Importeer configuratie vanuit JSON-bestand",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "Importeer voorinstellingen",
|
"Import Presets": "Importeer voorinstellingen",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Belangrijke update",
|
"Important Update": "Belangrijke update",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Voeg toe",
|
"Include": "Voeg toe",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Voeg '--api-auth` toe bij het uitvoeren van stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Voeg '--api-auth` toe bij het uitvoeren van stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Voeg `--api` vlag toe bij het uitvoeren van stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Voeg `--api` vlag toe bij het uitvoeren van stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Inclusief SharePoint",
|
"Includes SharePoint": "Inclusief SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Beïnvloedt hoe snel het algoritme reageert op feedback van de gegenereerde tekst. Een lagere leersnelheid resulteert in langzamere aanpassingen, terwijl een hogere leersnelheid het algoritme responsiever maakt.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Beïnvloedt hoe snel het algoritme reageert op feedback van de gegenereerde tekst. Een lagere leersnelheid resulteert in langzamere aanpassingen, terwijl een hogere leersnelheid het algoritme responsiever maakt.",
|
||||||
"Info": "Info",
|
"Info": "Info",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "Nieuw Wachtwoord",
|
"New Password": "Nieuw Wachtwoord",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL",
|
"Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL",
|
||||||
"Uh-oh! There was an issue with the response.": "Oh-oh! Er was een probleem met het antwoord.",
|
"Uh-oh! There was an issue with the response.": "Oh-oh! Er was een probleem met het antwoord.",
|
||||||
"UI": "UI",
|
"UI": "UI",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Onarchiveer alles",
|
"Unarchive All": "Onarchiveer alles",
|
||||||
"Unarchive All Archived Chats": "Onarchiveer alle gearchiveerde chats",
|
"Unarchive All Archived Chats": "Onarchiveer alle gearchiveerde chats",
|
||||||
"Unarchive Chat": "Onarchiveer chat",
|
"Unarchive Chat": "Onarchiveer chat",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "Stem",
|
"Voice": "Stem",
|
||||||
"Voice Input": "Steminvoer",
|
"Voice Input": "Steminvoer",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Waarschuwing",
|
"Warning": "Waarschuwing",
|
||||||
"Warning:": "Waarschuwing",
|
"Warning:": "Waarschuwing",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Waarschuwing: Door dit in te schakelen kunnen gebruikers willekeurige code uploaden naar de server.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Waarschuwing: Door dit in te schakelen kunnen gebruikers willekeurige code uploaden naar de server.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "ਇਹ ਸੈਟਿੰਗਾਂ ਨੂੰ ਠੀਕ ਕਰਨ ਨਾਲ ਸਾਰੇ ਉਪਭੋਗਤਾਵਾਂ ਲਈ ਬਦਲਾਅ ਲਾਗੂ ਹੋਣਗੇ।",
|
"Adjusting these settings will apply changes universally to all users.": "ਇਹ ਸੈਟਿੰਗਾਂ ਨੂੰ ਠੀਕ ਕਰਨ ਨਾਲ ਸਾਰੇ ਉਪਭੋਗਤਾਵਾਂ ਲਈ ਬਦਲਾਅ ਲਾਗੂ ਹੋਣਗੇ।",
|
||||||
"admin": "ਪ੍ਰਬੰਧਕ",
|
"admin": "ਪ੍ਰਬੰਧਕ",
|
||||||
"Admin": "",
|
"Admin": "",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API ਕੁੰਜੀ ਬਣਾਈ ਗਈ।",
|
"API Key created.": "API ਕੁੰਜੀ ਬਣਾਈ ਗਈ।",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "API ਕੁੰਜੀਆਂ",
|
"API keys": "API ਕੁੰਜੀਆਂ",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "ਦਸੰਬਰ",
|
"December": "ਦਸੰਬਰ",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "ਮੂਲ",
|
"Default": "ਮੂਲ",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ",
|
"Embedding Model": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ",
|
||||||
"Embedding Model Engine": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਇੰਜਣ",
|
"Embedding Model Engine": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਇੰਜਣ",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਨੂੰ \"{{embedding_model}}\" 'ਤੇ ਸੈੱਟ ਕੀਤਾ ਗਿਆ",
|
"Embedding model set to \"{{embedding_model}}\"": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਨੂੰ \"{{embedding_model}}\" 'ਤੇ ਸੈੱਟ ਕੀਤਾ ਗਿਆ",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਤੁਹਾਡੀ CSV ਫਾਈਲ ਵਿੱਚ ਇਸ ਕ੍ਰਮ ਵਿੱਚ 4 ਕਾਲਮ ਹਨ: ਨਾਮ, ਈਮੇਲ, ਪਾਸਵਰਡ, ਭੂਮਿਕਾ।",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਤੁਹਾਡੀ CSV ਫਾਈਲ ਵਿੱਚ ਇਸ ਕ੍ਰਮ ਵਿੱਚ 4 ਕਾਲਮ ਹਨ: ਨਾਮ, ਈਮੇਲ, ਪਾਸਵਰਡ, ਭੂਮਿਕਾ।",
|
||||||
"Enter {{role}} message here": "{{role}} ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",
|
"Enter {{role}} message here": "{{role}} ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "ਤੁਹਾਡੇ LLMs ਨੂੰ ਸੁਨੇਹਾ ਕਰਨ ਲਈ ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",
|
"Enter a detail about yourself for your LLMs to recall": "ਤੁਹਾਡੇ LLMs ਨੂੰ ਸੁਨੇਹਾ ਕਰਨ ਲਈ ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "",
|
"Export chat (.json)": "",
|
||||||
"Export Chats": "ਗੱਲਾਂ ਨਿਰਯਾਤ ਕਰੋ",
|
"Export Chats": "ਗੱਲਾਂ ਨਿਰਯਾਤ ਕਰੋ",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "ਗੱਲਾਂ ਆਯਾਤ ਕਰੋ",
|
"Import Chats": "ਗੱਲਾਂ ਆਯਾਤ ਕਰੋ",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "ਮਹੱਤਵਪੂਰਨ ਅੱਪਡੇਟ",
|
"Important Update": "ਮਹੱਤਵਪੂਰਨ ਅੱਪਡੇਟ",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "",
|
"Include": "",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "ਸਟੇਬਲ-ਡਿਫਿਊਸ਼ਨ-ਵੈਬਯੂਆਈ ਚਲਾਉਣ ਸਮੇਂ `--api` ਝੰਡਾ ਸ਼ਾਮਲ ਕਰੋ",
|
"Include `--api` flag when running stable-diffusion-webui": "ਸਟੇਬਲ-ਡਿਫਿਊਸ਼ਨ-ਵੈਬਯੂਆਈ ਚਲਾਉਣ ਸਮੇਂ `--api` ਝੰਡਾ ਸ਼ਾਮਲ ਕਰੋ",
|
||||||
"Includes SharePoint": "SharePoint ਸ਼ਾਮਲ ਹੈ",
|
"Includes SharePoint": "SharePoint ਸ਼ਾਮਲ ਹੈ",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "ਜਾਣਕਾਰੀ",
|
"Info": "ਜਾਣਕਾਰੀ",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "ਨਵਾਂ ਪਾਸਵਰਡ",
|
"New Password": "ਨਵਾਂ ਪਾਸਵਰਡ",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ਡਾਊਨਲੋਡ) URL ਟਾਈਪ ਕਰੋ",
|
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ਡਾਊਨਲੋਡ) URL ਟਾਈਪ ਕਰੋ",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "",
|
"UI": "",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "ਚੇਤਾਵਨੀ",
|
"Warning": "ਚੇਤਾਵਨੀ",
|
||||||
"Warning:": "ਚੇਤਾਵਨੀ:",
|
"Warning:": "ਚੇਤਾਵਨੀ:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Dostosowanie tych ustawień spowoduje wprowadzenie zmian dla wszystkich użytkowników.",
|
"Adjusting these settings will apply changes universally to all users.": "Dostosowanie tych ustawień spowoduje wprowadzenie zmian dla wszystkich użytkowników.",
|
||||||
"admin": "administrator",
|
"admin": "administrator",
|
||||||
"Admin": "Administrator",
|
"Admin": "Administrator",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "Klucz API został utworzony.",
|
"API Key created.": "Klucz API został utworzony.",
|
||||||
"API Key Endpoint Restrictions": "Ograniczenia punktu końcowego klucza API",
|
"API Key Endpoint Restrictions": "Ograniczenia punktu końcowego klucza API",
|
||||||
"API keys": "Klucze API",
|
"API keys": "Klucze API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "Wersja API",
|
"API Version": "Wersja API",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "Grudzień",
|
"December": "Grudzień",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Domyślny",
|
"Default": "Domyślny",
|
||||||
"Default (Open AI)": "Domyślny (Open AI)",
|
"Default (Open AI)": "Domyślny (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Model osadzania",
|
"Embedding Model": "Model osadzania",
|
||||||
"Embedding Model Engine": "Silnik modelu osadzania",
|
"Embedding Model Engine": "Silnik modelu osadzania",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Model osadzania ustawiony na '{{embedding_model}}'",
|
"Embedding model set to \"{{embedding_model}}\"": "Model osadzania ustawiony na '{{embedding_model}}'",
|
||||||
"Enable API Key": "Włącz klucz API",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Włącz generowanie autouzupełniania dla wiadomości czatu",
|
"Enable autocomplete generation for chat messages": "Włącz generowanie autouzupełniania dla wiadomości czatu",
|
||||||
"Enable Code Execution": "Włącz wykonywanie kodu",
|
"Enable Code Execution": "Włącz wykonywanie kodu",
|
||||||
"Enable Code Interpreter": "Włącz interpreter kodu",
|
"Enable Code Interpreter": "Włącz interpreter kodu",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Upewnij się, że twój plik CSV zawiera dokładnie 4 kolumny w następującej kolejności: Nazwa, Email, Hasło, Rola.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Upewnij się, że twój plik CSV zawiera dokładnie 4 kolumny w następującej kolejności: Nazwa, Email, Hasło, Rola.",
|
||||||
"Enter {{role}} message here": "Wprowadź komunikat dla {{role}} tutaj",
|
"Enter {{role}} message here": "Wprowadź komunikat dla {{role}} tutaj",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Podaj informacje o sobie, aby LLMs mogły je przypomnieć.",
|
"Enter a detail about yourself for your LLMs to recall": "Podaj informacje o sobie, aby LLMs mogły je przypomnieć.",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Wprowadź domeny oddzielone przecinkami (np. example.com, site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Wprowadź klucz API Exa",
|
"Enter Exa API Key": "Wprowadź klucz API Exa",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Eksport czatu (.json)",
|
"Export chat (.json)": "Eksport czatu (.json)",
|
||||||
"Export Chats": "Eksportuj rozmowy",
|
"Export Chats": "Eksportuj rozmowy",
|
||||||
"Export Config to JSON File": "Eksportuj konfigurację do pliku JSON",
|
"Export Config to JSON File": "Eksportuj konfigurację do pliku JSON",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Wyeksportuj ustawienia domyślne",
|
"Export Presets": "Wyeksportuj ustawienia domyślne",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Eksport do CSV",
|
"Export to CSV": "Eksport do CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Importuj czaty",
|
"Import Chats": "Importuj czaty",
|
||||||
"Import Config from JSON File": "Importuj konfigurację z pliku JSON",
|
"Import Config from JSON File": "Importuj konfigurację z pliku JSON",
|
||||||
"Import From Link": "Importuj z linku",
|
"Import From Link": "Importuj z linku",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Importuj notatki",
|
"Import Notes": "Importuj notatki",
|
||||||
"Import Presets": "Importuj ustawienia",
|
"Import Presets": "Importuj ustawienia",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Ważna aktualizacja",
|
"Important Update": "Ważna aktualizacja",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Włączyć",
|
"Include": "Włączyć",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Użyj flagi `--api-auth` podczas uruchamiania stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Użyj flagi `--api-auth` podczas uruchamiania stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Użyj flagi `--api` podczas uruchamiania stable-diffusion-webui.",
|
"Include `--api` flag when running stable-diffusion-webui": "Użyj flagi `--api` podczas uruchamiania stable-diffusion-webui.",
|
||||||
"Includes SharePoint": "Zawiera SharePoint",
|
"Includes SharePoint": "Zawiera SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "Informacje",
|
"Info": "Informacje",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "Nowa funkcja",
|
"New Function": "Nowa funkcja",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "Nowa notatka",
|
|
||||||
"New Password": "Nowe hasło",
|
"New Password": "Nowe hasło",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1644,6 +1654,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Podaj adres URL do pobrania z Hugging Face",
|
"Type Hugging Face Resolve (Download) URL": "Podaj adres URL do pobrania z Hugging Face",
|
||||||
"Uh-oh! There was an issue with the response.": "Ojej! Wystąpił problem z odpowiedzią.",
|
"Uh-oh! There was an issue with the response.": "Ojej! Wystąpił problem z odpowiedzią.",
|
||||||
"UI": "Interfejs użytkownika",
|
"UI": "Interfejs użytkownika",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Odarchiwizuj wszystko",
|
"Unarchive All": "Odarchiwizuj wszystko",
|
||||||
"Unarchive All Archived Chats": "Odarchiwizuj wszystkie zarchiwizowane rozmowy",
|
"Unarchive All Archived Chats": "Odarchiwizuj wszystkie zarchiwizowane rozmowy",
|
||||||
"Unarchive Chat": "Odarchiwizuj czat",
|
"Unarchive Chat": "Odarchiwizuj czat",
|
||||||
|
|
@ -1717,6 +1728,8 @@
|
||||||
"Voice": "Głos",
|
"Voice": "Głos",
|
||||||
"Voice Input": "Wprowadzanie głosowe",
|
"Voice Input": "Wprowadzanie głosowe",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Uwaga",
|
"Warning": "Uwaga",
|
||||||
"Warning:": "Uwaga:",
|
"Warning:": "Uwaga:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Uwaga: Włączenie tego pozwoli użytkownikom na przesyłanie dowolnego kodu na serwer.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Uwaga: Włączenie tego pozwoli użytkownikom na przesyłanie dowolnego kodu na serwer.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "Configuração adicional",
|
"Additional Config": "Configuração adicional",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Opções de configuração adicionais para o marcador. Deve ser uma string JSON com pares chave-valor. Por exemplo, '{\"key\": \"value\"}'. As chaves suportadas incluem: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Opções de configuração adicionais para o marcador. Deve ser uma string JSON com pares chave-valor. Por exemplo, '{\"key\": \"value\"}'. As chaves suportadas incluem: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
|
||||||
"Additional Parameters": "Parâmetros adicionais",
|
"Additional Parameters": "Parâmetros adicionais",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Ajustar essas configurações aplicará mudanças para todos os usuários.",
|
"Adjusting these settings will apply changes universally to all users.": "Ajustar essas configurações aplicará mudanças para todos os usuários.",
|
||||||
"admin": "admin",
|
"admin": "admin",
|
||||||
"Admin": "Admin",
|
"Admin": "Admin",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "Chave API criada.",
|
"API Key created.": "Chave API criada.",
|
||||||
"API Key Endpoint Restrictions": "Restrições de endpoint de chave de API",
|
"API Key Endpoint Restrictions": "Restrições de endpoint de chave de API",
|
||||||
"API keys": "Chaves API",
|
"API keys": "Chaves API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "Modo API",
|
"API Mode": "Modo API",
|
||||||
"API Version": "Versão da API",
|
"API Version": "Versão da API",
|
||||||
"API Version is required": "Versão da API é obrigatória",
|
"API Version is required": "Versão da API é obrigatória",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "API do Marcador do Datalab",
|
"Datalab Marker API": "API do Marcador do Datalab",
|
||||||
"DD/MM/YYYY": "DD/MM/AAAA",
|
"DD/MM/YYYY": "DD/MM/AAAA",
|
||||||
"December": "Dezembro",
|
"December": "Dezembro",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Padrão",
|
"Default": "Padrão",
|
||||||
"Default (Open AI)": "Padrão (Open AI)",
|
"Default (Open AI)": "Padrão (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Modelo de Embedding",
|
"Embedding Model": "Modelo de Embedding",
|
||||||
"Embedding Model Engine": "Motor do Modelo de Embedding",
|
"Embedding Model Engine": "Motor do Modelo de Embedding",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Modelo de embedding definido para \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Modelo de embedding definido para \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "Habilitar chave de API",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Habilitar geração de preenchimento automático para mensagens do chat",
|
"Enable autocomplete generation for chat messages": "Habilitar geração de preenchimento automático para mensagens do chat",
|
||||||
"Enable Code Execution": "Habilitar execução de código",
|
"Enable Code Execution": "Habilitar execução de código",
|
||||||
"Enable Code Interpreter": "Habilitar intérprete de código",
|
"Enable Code Interpreter": "Habilitar intérprete de código",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "Aplicar chat temporário",
|
"Enforce Temporary Chat": "Aplicar chat temporário",
|
||||||
"Enhance": "Melhorar",
|
"Enhance": "Melhorar",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Certifique-se de que seu arquivo CSV inclua 4 colunas nesta ordem: Nome, Email, Senha, Função.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Certifique-se de que seu arquivo CSV inclua 4 colunas nesta ordem: Nome, Email, Senha, Função.",
|
||||||
"Enter {{role}} message here": "Digite a mensagem de {{role}} aqui",
|
"Enter {{role}} message here": "Digite a mensagem de {{role}} aqui",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Digite um detalhe sobre você para seus LLMs lembrarem",
|
"Enter a detail about yourself for your LLMs to recall": "Digite um detalhe sobre você para seus LLMs lembrarem",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Digite a URL do servidor Docling",
|
"Enter Docling Server URL": "Digite a URL do servidor Docling",
|
||||||
"Enter Document Intelligence Endpoint": "Insira o endpoint do Document Intelligence",
|
"Enter Document Intelligence Endpoint": "Insira o endpoint do Document Intelligence",
|
||||||
"Enter Document Intelligence Key": "Insira a chave de inteligência do documento",
|
"Enter Document Intelligence Key": "Insira a chave de inteligência do documento",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Insira domínios separados por vírgulas (por exemplo, example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Insira a chave da API Exa",
|
"Enter Exa API Key": "Insira a chave da API Exa",
|
||||||
"Enter External Document Loader API Key": "Insira a chave da API do carregador de documentos externo",
|
"Enter External Document Loader API Key": "Insira a chave da API do carregador de documentos externo",
|
||||||
"Enter External Document Loader URL": "Insira a URL do carregador de documentos externo",
|
"Enter External Document Loader URL": "Insira a URL do carregador de documentos externo",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Exportar chat (.json)",
|
"Export chat (.json)": "Exportar chat (.json)",
|
||||||
"Export Chats": "Exportar Chats",
|
"Export Chats": "Exportar Chats",
|
||||||
"Export Config to JSON File": "Exportar Configuração para Arquivo JSON",
|
"Export Config to JSON File": "Exportar Configuração para Arquivo JSON",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Exportar Presets",
|
"Export Presets": "Exportar Presets",
|
||||||
"Export Prompt Suggestions": "Exportar Sugestões de Prompt",
|
"Export Prompt Suggestions": "Exportar Sugestões de Prompt",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Exportar para CSV",
|
"Export to CSV": "Exportar para CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "Exportar Usuários",
|
"Export Users": "Exportar Usuários",
|
||||||
"External": "Externo",
|
"External": "Externo",
|
||||||
"External Document Loader URL required.": "URL do carregador de documentos externo necessária.",
|
"External Document Loader URL required.": "URL do carregador de documentos externo necessária.",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Importar Chats",
|
"Import Chats": "Importar Chats",
|
||||||
"Import Config from JSON File": "Importar Configurações de JSON",
|
"Import Config from JSON File": "Importar Configurações de JSON",
|
||||||
"Import From Link": "Importar do link",
|
"Import From Link": "Importar do link",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Importar Notas",
|
"Import Notes": "Importar Notas",
|
||||||
"Import Presets": "Importar Presets",
|
"Import Presets": "Importar Presets",
|
||||||
"Import Prompt Suggestions": "Importar Sugestões de Prompt",
|
"Import Prompt Suggestions": "Importar Sugestões de Prompt",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "Importação bem-sucedida",
|
"Import successful": "Importação bem-sucedida",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Atualização importante",
|
"Important Update": "Atualização importante",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "Para forçar o OCR, a execução do OCR deve estar habilitada.",
|
"In order to force OCR, performing OCR must be enabled.": "Para forçar o OCR, a execução do OCR deve estar habilitada.",
|
||||||
"Include": "Incluir",
|
"Include": "Incluir",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Incluir a flag `--api-auth` ao executar stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Incluir a flag `--api-auth` ao executar stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Incluir a flag `--api` ao executar stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Incluir a flag `--api` ao executar stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Inclui o SharePoint",
|
"Includes SharePoint": "Inclui o SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influencia a rapidez com que o algoritmo responde ao feedback do texto gerado. Uma taxa de aprendizado menor resultará em ajustes mais lentos, enquanto uma taxa de aprendizado maior tornará o algoritmo mais responsivo.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Influencia a rapidez com que o algoritmo responde ao feedback do texto gerado. Uma taxa de aprendizado menor resultará em ajustes mais lentos, enquanto uma taxa de aprendizado maior tornará o algoritmo mais responsivo.",
|
||||||
"Info": "Informação",
|
"Info": "Informação",
|
||||||
"Initials": "Iniciais",
|
"Initials": "Iniciais",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "Nova Função",
|
"New Function": "Nova Função",
|
||||||
"New Knowledge": "Novo Conhecimento",
|
"New Knowledge": "Novo Conhecimento",
|
||||||
"New Model": "Novo Modelo",
|
"New Model": "Novo Modelo",
|
||||||
"New Note": "Nota Nota",
|
|
||||||
"New Password": "Nova Senha",
|
"New Password": "Nova Senha",
|
||||||
"New Prompt": "Novo Prompt",
|
"New Prompt": "Novo Prompt",
|
||||||
"New Temporary Chat": "Novo chat temporário",
|
"New Temporary Chat": "Novo chat temporário",
|
||||||
|
|
@ -1643,6 +1653,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Digite o URL de download do Hugging Face",
|
"Type Hugging Face Resolve (Download) URL": "Digite o URL de download do Hugging Face",
|
||||||
"Uh-oh! There was an issue with the response.": "Opa! Houve um problema com a resposta.",
|
"Uh-oh! There was an issue with the response.": "Opa! Houve um problema com a resposta.",
|
||||||
"UI": "Interface",
|
"UI": "Interface",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Desarquivar tudo",
|
"Unarchive All": "Desarquivar tudo",
|
||||||
"Unarchive All Archived Chats": "Desarquivar Todos os Chats Arquivados",
|
"Unarchive All Archived Chats": "Desarquivar Todos os Chats Arquivados",
|
||||||
"Unarchive Chat": "Desarquivar Chat",
|
"Unarchive Chat": "Desarquivar Chat",
|
||||||
|
|
@ -1716,6 +1727,8 @@
|
||||||
"Voice": "Voz",
|
"Voice": "Voz",
|
||||||
"Voice Input": "Entrada de voz",
|
"Voice Input": "Entrada de voz",
|
||||||
"Voice mode": "Modo de voz",
|
"Voice mode": "Modo de voz",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Aviso",
|
"Warning": "Aviso",
|
||||||
"Warning:": "Aviso:",
|
"Warning:": "Aviso:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Aviso: Habilitar isso permitirá que os usuários façam upload de código arbitrário no servidor.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Aviso: Habilitar isso permitirá que os usuários façam upload de código arbitrário no servidor.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Ajustar essas configurações aplicará alterações universalmente a todos os utilizadores.",
|
"Adjusting these settings will apply changes universally to all users.": "Ajustar essas configurações aplicará alterações universalmente a todos os utilizadores.",
|
||||||
"admin": "administrador",
|
"admin": "administrador",
|
||||||
"Admin": "Admin",
|
"Admin": "Admin",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "Chave da API criada.",
|
"API Key created.": "Chave da API criada.",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "Chaves da API",
|
"API keys": "Chaves da API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "Dezembro",
|
"December": "Dezembro",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Padrão",
|
"Default": "Padrão",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Modelo de Embedding",
|
"Embedding Model": "Modelo de Embedding",
|
||||||
"Embedding Model Engine": "Motor de Modelo de Embedding",
|
"Embedding Model Engine": "Motor de Modelo de Embedding",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Modelo de Embedding definido como \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Modelo de Embedding definido como \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Confirme que o seu ficheiro CSV inclui 4 colunas nesta ordem: Nome, E-mail, Senha, Função.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Confirme que o seu ficheiro CSV inclui 4 colunas nesta ordem: Nome, E-mail, Senha, Função.",
|
||||||
"Enter {{role}} message here": "Escreva a mensagem de {{role}} aqui",
|
"Enter {{role}} message here": "Escreva a mensagem de {{role}} aqui",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Escreva um detalhe sobre você para que os seus LLMs possam lembrar-se",
|
"Enter a detail about yourself for your LLMs to recall": "Escreva um detalhe sobre você para que os seus LLMs possam lembrar-se",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Exportar Conversa (.json)",
|
"Export chat (.json)": "Exportar Conversa (.json)",
|
||||||
"Export Chats": "Exportar Conversas",
|
"Export Chats": "Exportar Conversas",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Importar Conversas",
|
"Import Chats": "Importar Conversas",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Atualização importante",
|
"Important Update": "Atualização importante",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "",
|
"Include": "",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Inclua a flag `--api` ao executar stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Inclua a flag `--api` ao executar stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Inclui o SharePoint",
|
"Includes SharePoint": "Inclui o SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "Informação",
|
"Info": "Informação",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "Nova Senha",
|
"New Password": "Nova Senha",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1643,6 +1653,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Escreva o URL do Hugging Face Resolve (Descarregar)",
|
"Type Hugging Face Resolve (Download) URL": "Escreva o URL do Hugging Face Resolve (Descarregar)",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "",
|
"UI": "",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1716,6 +1727,8 @@
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Aviso",
|
"Warning": "Aviso",
|
||||||
"Warning:": "Aviso:",
|
"Warning:": "Aviso:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Ajustarea acestor setări va aplica modificările universal pentru toți utilizatorii.",
|
"Adjusting these settings will apply changes universally to all users.": "Ajustarea acestor setări va aplica modificările universal pentru toți utilizatorii.",
|
||||||
"admin": "administrator",
|
"admin": "administrator",
|
||||||
"Admin": "Administrator",
|
"Admin": "Administrator",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "Cheie API creată.",
|
"API Key created.": "Cheie API creată.",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "Chei API",
|
"API keys": "Chei API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "Decembrie",
|
"December": "Decembrie",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Implicit",
|
"Default": "Implicit",
|
||||||
"Default (Open AI)": "Implicit (Open AI)",
|
"Default (Open AI)": "Implicit (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Model de Încapsulare",
|
"Embedding Model": "Model de Încapsulare",
|
||||||
"Embedding Model Engine": "Motor de Model de Încapsulare",
|
"Embedding Model Engine": "Motor de Model de Încapsulare",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Modelul de încapsulare setat la \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Modelul de încapsulare setat la \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "Activează cheia API",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Activează generarea automată pentru mesajele de chat",
|
"Enable autocomplete generation for chat messages": "Activează generarea automată pentru mesajele de chat",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "Activează interpretul de cod",
|
"Enable Code Interpreter": "Activează interpretul de cod",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asigurați-vă că fișierul CSV include 4 coloane în această ordine: Nume, Email, Parolă, Rol.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asigurați-vă că fișierul CSV include 4 coloane în această ordine: Nume, Email, Parolă, Rol.",
|
||||||
"Enter {{role}} message here": "Introduceți mesajul pentru {{role}} aici",
|
"Enter {{role}} message here": "Introduceți mesajul pentru {{role}} aici",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Introduceți un detaliu despre dvs. pe care LLM-urile să-l rețină",
|
"Enter a detail about yourself for your LLMs to recall": "Introduceți un detaliu despre dvs. pe care LLM-urile să-l rețină",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Exportă conversația (.json)",
|
"Export chat (.json)": "Exportă conversația (.json)",
|
||||||
"Export Chats": "Exportă Conversațiile",
|
"Export Chats": "Exportă Conversațiile",
|
||||||
"Export Config to JSON File": "Exportă Configurația în Fișier JSON",
|
"Export Config to JSON File": "Exportă Configurația în Fișier JSON",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Importă Conversațiile",
|
"Import Chats": "Importă Conversațiile",
|
||||||
"Import Config from JSON File": "Importarea configurației dintr-un fișier JSON",
|
"Import Config from JSON File": "Importarea configurației dintr-un fișier JSON",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Actualizare importantă",
|
"Important Update": "Actualizare importantă",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Include",
|
"Include": "Include",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Includeți flag-ul `--api-auth` când rulați stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Includeți flag-ul `--api-auth` când rulați stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Includeți flag-ul `--api` când rulați stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Includeți flag-ul `--api` când rulați stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Include SharePoint",
|
"Includes SharePoint": "Include SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "Informații",
|
"Info": "Informații",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "Parolă Nouă",
|
"New Password": "Parolă Nouă",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1643,6 +1653,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Introduceți URL-ul de Rezolvare (Descărcare) Hugging Face",
|
"Type Hugging Face Resolve (Download) URL": "Introduceți URL-ul de Rezolvare (Descărcare) Hugging Face",
|
||||||
"Uh-oh! There was an issue with the response.": "Oh, nu! A apărut o problemă cu răspunsul.",
|
"Uh-oh! There was an issue with the response.": "Oh, nu! A apărut o problemă cu răspunsul.",
|
||||||
"UI": "Interfață Utilizator",
|
"UI": "Interfață Utilizator",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Dezarhivează tot",
|
"Unarchive All": "Dezarhivează tot",
|
||||||
"Unarchive All Archived Chats": "Dezarhivează toate conversațiile arhivate",
|
"Unarchive All Archived Chats": "Dezarhivează toate conversațiile arhivate",
|
||||||
"Unarchive Chat": "Dezarhivează conversația",
|
"Unarchive Chat": "Dezarhivează conversația",
|
||||||
|
|
@ -1716,6 +1727,8 @@
|
||||||
"Voice": "Voce",
|
"Voice": "Voce",
|
||||||
"Voice Input": "Intrare vocală",
|
"Voice Input": "Intrare vocală",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Avertisment",
|
"Warning": "Avertisment",
|
||||||
"Warning:": "Avertisment:",
|
"Warning:": "Avertisment:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "Дополнительные настройки",
|
"Additional Config": "Дополнительные настройки",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Дополнительные настройки для marker. Это должна быть строка JSON с ключами и значениями. Например, '{\"key\": \"value\"}'. Поддерживаемые ключи включают: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Дополнительные настройки для marker. Это должна быть строка JSON с ключами и значениями. Например, '{\"key\": \"value\"}'. Поддерживаемые ключи включают: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Изменения в этих настройках будут применены для всех пользователей.",
|
"Adjusting these settings will apply changes universally to all users.": "Изменения в этих настройках будут применены для всех пользователей.",
|
||||||
"admin": "админ",
|
"admin": "админ",
|
||||||
"Admin": "Админ",
|
"Admin": "Админ",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "Ключ API создан.",
|
"API Key created.": "Ключ API создан.",
|
||||||
"API Key Endpoint Restrictions": "Ограничения на энд-поинт API",
|
"API Key Endpoint Restrictions": "Ограничения на энд-поинт API",
|
||||||
"API keys": "Ключи API",
|
"API keys": "Ключи API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "Версия API",
|
"API Version": "Версия API",
|
||||||
"API Version is required": "Обязательна версия API",
|
"API Version is required": "Обязательна версия API",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "Datalab Marker API",
|
"Datalab Marker API": "Datalab Marker API",
|
||||||
"DD/MM/YYYY": "ДД/ММ/ГГГГ",
|
"DD/MM/YYYY": "ДД/ММ/ГГГГ",
|
||||||
"December": "Декабрь",
|
"December": "Декабрь",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "Deepgram",
|
"Deepgram": "Deepgram",
|
||||||
"Default": "По умолчанию",
|
"Default": "По умолчанию",
|
||||||
"Default (Open AI)": "По умолчанию (Open AI)",
|
"Default (Open AI)": "По умолчанию (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Модель встраивания",
|
"Embedding Model": "Модель встраивания",
|
||||||
"Embedding Model Engine": "Движок модели встраивания",
|
"Embedding Model Engine": "Движок модели встраивания",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Модель встраивания установлена в \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Модель встраивания установлена в \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "Включить ключ API",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Включить генерацию автозаполнения для сообщений чата",
|
"Enable autocomplete generation for chat messages": "Включить генерацию автозаполнения для сообщений чата",
|
||||||
"Enable Code Execution": "Включить исполнение кода",
|
"Enable Code Execution": "Включить исполнение кода",
|
||||||
"Enable Code Interpreter": "Включить интерпретатор кода",
|
"Enable Code Interpreter": "Включить интерпретатор кода",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "URL-адрес конечной точки",
|
"Endpoint URL": "URL-адрес конечной точки",
|
||||||
"Enforce Temporary Chat": "Принудительный временный чат",
|
"Enforce Temporary Chat": "Принудительный временный чат",
|
||||||
"Enhance": "Улучшить",
|
"Enhance": "Улучшить",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Убедитесь, что ваш CSV-файл включает в себя 4 столбца в следующем порядке: Имя, Электронная почта, Пароль, Роль.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Убедитесь, что ваш CSV-файл включает в себя 4 столбца в следующем порядке: Имя, Электронная почта, Пароль, Роль.",
|
||||||
"Enter {{role}} message here": "Введите сообщение {{role}} здесь",
|
"Enter {{role}} message here": "Введите сообщение {{role}} здесь",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Введите детали о себе, чтобы LLMs могли запомнить",
|
"Enter a detail about yourself for your LLMs to recall": "Введите детали о себе, чтобы LLMs могли запомнить",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Введите URL сервера Docling",
|
"Enter Docling Server URL": "Введите URL сервера Docling",
|
||||||
"Enter Document Intelligence Endpoint": "Введите энд-поинт анализа документов",
|
"Enter Document Intelligence Endpoint": "Введите энд-поинт анализа документов",
|
||||||
"Enter Document Intelligence Key": "Введите ключ для анализа документов",
|
"Enter Document Intelligence Key": "Введите ключ для анализа документов",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Введите домены, разделенные запятыми (например, example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Введите ключ API для Exa",
|
"Enter Exa API Key": "Введите ключ API для Exa",
|
||||||
"Enter External Document Loader API Key": "Введите ключ API внешнего загрузчика документов",
|
"Enter External Document Loader API Key": "Введите ключ API внешнего загрузчика документов",
|
||||||
"Enter External Document Loader URL": "Введите URL-адрес внешнего загрузчика документов",
|
"Enter External Document Loader URL": "Введите URL-адрес внешнего загрузчика документов",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Экспортировать чат (.json)",
|
"Export chat (.json)": "Экспортировать чат (.json)",
|
||||||
"Export Chats": "Экспортировать чаты",
|
"Export Chats": "Экспортировать чаты",
|
||||||
"Export Config to JSON File": "Экспорт конфигурации в JSON-файл",
|
"Export Config to JSON File": "Экспорт конфигурации в JSON-файл",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Экспорт Пресетов",
|
"Export Presets": "Экспорт Пресетов",
|
||||||
"Export Prompt Suggestions": "Экспортировать Предложения промптов",
|
"Export Prompt Suggestions": "Экспортировать Предложения промптов",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Экспортировать в CSV",
|
"Export to CSV": "Экспортировать в CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "Экспортировать пользователей",
|
"Export Users": "Экспортировать пользователей",
|
||||||
"External": "Внешнее",
|
"External": "Внешнее",
|
||||||
"External Document Loader URL required.": "Требуется URL-адрес внешнего загрузчика документов.",
|
"External Document Loader URL required.": "Требуется URL-адрес внешнего загрузчика документов.",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Импортировать чаты",
|
"Import Chats": "Импортировать чаты",
|
||||||
"Import Config from JSON File": "Импорт конфигурации из JSON-файла",
|
"Import Config from JSON File": "Импорт конфигурации из JSON-файла",
|
||||||
"Import From Link": "Импортировать по ссылке",
|
"Import From Link": "Импортировать по ссылке",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Импортировать Заметки",
|
"Import Notes": "Импортировать Заметки",
|
||||||
"Import Presets": "Импортировать Пресеты",
|
"Import Presets": "Импортировать Пресеты",
|
||||||
"Import Prompt Suggestions": "Импортировать Предложения промптов",
|
"Import Prompt Suggestions": "Импортировать Предложения промптов",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Важное обновление",
|
"Important Update": "Важное обновление",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "Для принудительного OCR необходимо включить выполнение OCR.",
|
"In order to force OCR, performing OCR must be enabled.": "Для принудительного OCR необходимо включить выполнение OCR.",
|
||||||
"Include": "Включать",
|
"Include": "Включать",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Добавьте флаг '--api-auth' при запуске stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Добавьте флаг '--api-auth' при запуске stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Добавьте флаг `--api` при запуске stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Добавьте флаг `--api` при запуске stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Включает SharePoint",
|
"Includes SharePoint": "Включает SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Влияет на то, насколько быстро алгоритм реагирует на обратную связь из сгенерированного текста. Более низкая скорость обучения приведет к более медленной корректировке, в то время как более высокая скорость обучения сделает алгоритм более отзывчивым.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Влияет на то, насколько быстро алгоритм реагирует на обратную связь из сгенерированного текста. Более низкая скорость обучения приведет к более медленной корректировке, в то время как более высокая скорость обучения сделает алгоритм более отзывчивым.",
|
||||||
"Info": "Информация",
|
"Info": "Информация",
|
||||||
"Initials": "Инициалы",
|
"Initials": "Инициалы",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "Новая функция",
|
"New Function": "Новая функция",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "Новая заметка",
|
|
||||||
"New Password": "Новый пароль",
|
"New Password": "Новый пароль",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1644,6 +1654,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Введите URL-адрес Hugging Face Resolve (загрузки)",
|
"Type Hugging Face Resolve (Download) URL": "Введите URL-адрес Hugging Face Resolve (загрузки)",
|
||||||
"Uh-oh! There was an issue with the response.": "Печаль-беда! Возникла проблема с ответом.",
|
"Uh-oh! There was an issue with the response.": "Печаль-беда! Возникла проблема с ответом.",
|
||||||
"UI": "Пользовательский интерфейс",
|
"UI": "Пользовательский интерфейс",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Разархивировать ВСЁ",
|
"Unarchive All": "Разархивировать ВСЁ",
|
||||||
"Unarchive All Archived Chats": "Разархивировать ВСЕ Заархивированные чаты",
|
"Unarchive All Archived Chats": "Разархивировать ВСЕ Заархивированные чаты",
|
||||||
"Unarchive Chat": "Разархивировать чат",
|
"Unarchive Chat": "Разархивировать чат",
|
||||||
|
|
@ -1717,6 +1728,8 @@
|
||||||
"Voice": "Голос",
|
"Voice": "Голос",
|
||||||
"Voice Input": "Ввод голоса",
|
"Voice Input": "Ввод голоса",
|
||||||
"Voice mode": "Режим голоса",
|
"Voice mode": "Режим голоса",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Предупреждение",
|
"Warning": "Предупреждение",
|
||||||
"Warning:": "Предупреждение:",
|
"Warning:": "Предупреждение:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Предупреждение. Включение этого параметра позволит пользователям загружать произвольный код на сервер.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Предупреждение. Включение этого параметра позволит пользователям загружать произвольный код на сервер.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Úprava týchto nastavení sa prejaví univerzálne u všetkých užívateľov.",
|
"Adjusting these settings will apply changes universally to all users.": "Úprava týchto nastavení sa prejaví univerzálne u všetkých užívateľov.",
|
||||||
"admin": "admin",
|
"admin": "admin",
|
||||||
"Admin": "Admin",
|
"Admin": "Admin",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API kľúč bol vytvorený.",
|
"API Key created.": "API kľúč bol vytvorený.",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "API kľúče",
|
"API keys": "API kľúče",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "December",
|
"December": "December",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Predvolené hodnoty alebo nastavenia.",
|
"Default": "Predvolené hodnoty alebo nastavenia.",
|
||||||
"Default (Open AI)": "Predvolené (Open AI)",
|
"Default (Open AI)": "Predvolené (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Vkladací model (Embedding Model)",
|
"Embedding Model": "Vkladací model (Embedding Model)",
|
||||||
"Embedding Model Engine": "",
|
"Embedding Model Engine": "",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Model vkladania nastavený na \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Model vkladania nastavený na \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Uistite sa, že váš CSV súbor obsahuje 4 stĺpce v tomto poradí: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Uistite sa, že váš CSV súbor obsahuje 4 stĺpce v tomto poradí: Name, Email, Password, Role.",
|
||||||
"Enter {{role}} message here": "Zadajte správu {{role}} sem",
|
"Enter {{role}} message here": "Zadajte správu {{role}} sem",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Zadajte podrobnosť o sebe, ktorú si vaše LLM majú zapamätať.",
|
"Enter a detail about yourself for your LLMs to recall": "Zadajte podrobnosť o sebe, ktorú si vaše LLM majú zapamätať.",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Exportovať konverzáciu (.json)",
|
"Export chat (.json)": "Exportovať konverzáciu (.json)",
|
||||||
"Export Chats": "Exportovať konverzácie",
|
"Export Chats": "Exportovať konverzácie",
|
||||||
"Export Config to JSON File": "Exportujte konfiguráciu do súboru JSON",
|
"Export Config to JSON File": "Exportujte konfiguráciu do súboru JSON",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Importovať konverzácie",
|
"Import Chats": "Importovať konverzácie",
|
||||||
"Import Config from JSON File": "Importovanie konfigurácie z JSON súboru",
|
"Import Config from JSON File": "Importovanie konfigurácie z JSON súboru",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Dôležitá aktualizácia",
|
"Important Update": "Dôležitá aktualizácia",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Zahrnúť",
|
"Include": "Zahrnúť",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Zahrňte prepínač `--api-auth` pri spustení stable-diffusion-webui.",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Zahrňte prepínač `--api-auth` pri spustení stable-diffusion-webui.",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Pri spustení stable-diffusion-webui zahrňte príznak `--api`.",
|
"Include `--api` flag when running stable-diffusion-webui": "Pri spustení stable-diffusion-webui zahrňte príznak `--api`.",
|
||||||
"Includes SharePoint": "Zahŕňa SharePoint",
|
"Includes SharePoint": "Zahŕňa SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "Info",
|
"Info": "Info",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "Nové heslo",
|
"New Password": "Nové heslo",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1644,6 +1654,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Zadajte URL na úspešné stiahnutie z Hugging Face.",
|
"Type Hugging Face Resolve (Download) URL": "Zadajte URL na úspešné stiahnutie z Hugging Face.",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "UI",
|
"UI": "UI",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Odzálohovať všetky",
|
"Unarchive All": "Odzálohovať všetky",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1717,6 +1728,8 @@
|
||||||
"Voice": "Hlas",
|
"Voice": "Hlas",
|
||||||
"Voice Input": "Hlasový vstup",
|
"Voice Input": "Hlasový vstup",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Varovanie",
|
"Warning": "Varovanie",
|
||||||
"Warning:": "Upozornenie:",
|
"Warning:": "Upozornenie:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Прилагођавање ових подешавања ће применити промене на све кориснике.",
|
"Adjusting these settings will apply changes universally to all users.": "Прилагођавање ових подешавања ће применити промене на све кориснике.",
|
||||||
"admin": "админ",
|
"admin": "админ",
|
||||||
"Admin": "Админ",
|
"Admin": "Админ",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API кључ направљен.",
|
"API Key created.": "API кључ направљен.",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "API кључеви",
|
"API keys": "API кључеви",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "Децембар",
|
"December": "Децембар",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Подразумевано",
|
"Default": "Подразумевано",
|
||||||
"Default (Open AI)": "Подразумевано (Open AI)",
|
"Default (Open AI)": "Подразумевано (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Модел уградње",
|
"Embedding Model": "Модел уградње",
|
||||||
"Embedding Model Engine": "Мотор модела уградње",
|
"Embedding Model Engine": "Мотор модела уградње",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Модел уградње подешен на \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Модел уградње подешен на \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверите се да ваша CSV датотека укључује 4 колоне у овом редоследу: Име, Е-пошта, Лозинка, Улога.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверите се да ваша CSV датотека укључује 4 колоне у овом редоследу: Име, Е-пошта, Лозинка, Улога.",
|
||||||
"Enter {{role}} message here": "Унесите {{role}} поруку овде",
|
"Enter {{role}} message here": "Унесите {{role}} поруку овде",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Унесите детаље за себе да ће LLMs преузимати",
|
"Enter a detail about yourself for your LLMs to recall": "Унесите детаље за себе да ће LLMs преузимати",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Извези ћаскање (.json)",
|
"Export chat (.json)": "Извези ћаскање (.json)",
|
||||||
"Export Chats": "Извези ћаскања",
|
"Export Chats": "Извези ћаскања",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Увези ћаскања",
|
"Import Chats": "Увези ћаскања",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Важно ажурирање",
|
"Important Update": "Важно ажурирање",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "",
|
"Include": "",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Укључи `--api` заставицу при покретању stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Укључи `--api` заставицу при покретању stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Укључује SharePoint",
|
"Includes SharePoint": "Укључује SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "Инфо",
|
"Info": "Инфо",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "Нова лозинка",
|
"New Password": "Нова лозинка",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1643,6 +1653,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Унесите Hugging Face Resolve (Download) адресу",
|
"Type Hugging Face Resolve (Download) URL": "Унесите Hugging Face Resolve (Download) адресу",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "Прочеље",
|
"UI": "Прочеље",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Деархивирај све",
|
"Unarchive All": "Деархивирај све",
|
||||||
"Unarchive All Archived Chats": "Деархивирај све архиве",
|
"Unarchive All Archived Chats": "Деархивирај све архиве",
|
||||||
"Unarchive Chat": "Деархивирај ћаскање",
|
"Unarchive Chat": "Деархивирај ћаскање",
|
||||||
|
|
@ -1716,6 +1727,8 @@
|
||||||
"Voice": "Глас",
|
"Voice": "Глас",
|
||||||
"Voice Input": "Гласовни унос",
|
"Voice Input": "Гласовни унос",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Упозорење",
|
"Warning": "Упозорење",
|
||||||
"Warning:": "Упозорење:",
|
"Warning:": "Упозорење:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "Ytterligare inställningar",
|
"Additional Config": "Ytterligare inställningar",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "Ytterligare parametrar",
|
"Additional Parameters": "Ytterligare parametrar",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Justering av dessa inställningar kommer att tillämpa ändringar universellt för alla användare.",
|
"Adjusting these settings will apply changes universally to all users.": "Justering av dessa inställningar kommer att tillämpa ändringar universellt för alla användare.",
|
||||||
"admin": "administratör",
|
"admin": "administratör",
|
||||||
"Admin": "Admin",
|
"Admin": "Admin",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API-nyckel skapad.",
|
"API Key created.": "API-nyckel skapad.",
|
||||||
"API Key Endpoint Restrictions": "API-nyckel Endpoint-begränsningar",
|
"API Key Endpoint Restrictions": "API-nyckel Endpoint-begränsningar",
|
||||||
"API keys": "API-nycklar",
|
"API keys": "API-nycklar",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "API-läge",
|
"API Mode": "API-läge",
|
||||||
"API Version": "API-version",
|
"API Version": "API-version",
|
||||||
"API Version is required": "API-version krävs",
|
"API Version is required": "API-version krävs",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "Datalab Marker API",
|
"Datalab Marker API": "Datalab Marker API",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "december",
|
"December": "december",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Standard",
|
"Default": "Standard",
|
||||||
"Default (Open AI)": "Standard (Open AI)",
|
"Default (Open AI)": "Standard (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Inbäddningsmodell",
|
"Embedding Model": "Inbäddningsmodell",
|
||||||
"Embedding Model Engine": "Motor för inbäddningsmodell",
|
"Embedding Model Engine": "Motor för inbäddningsmodell",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Inbäddningsmodell inställd på \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Inbäddningsmodell inställd på \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "Aktivera API-nyckel",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Aktivera automatisk komplettering av generering för chattmeddelanden",
|
"Enable autocomplete generation for chat messages": "Aktivera automatisk komplettering av generering för chattmeddelanden",
|
||||||
"Enable Code Execution": "Aktivera kodkörning",
|
"Enable Code Execution": "Aktivera kodkörning",
|
||||||
"Enable Code Interpreter": "Aktivera kodtolk",
|
"Enable Code Interpreter": "Aktivera kodtolk",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "Endpoint URL",
|
"Endpoint URL": "Endpoint URL",
|
||||||
"Enforce Temporary Chat": "Tvinga fram tillfällig chatt",
|
"Enforce Temporary Chat": "Tvinga fram tillfällig chatt",
|
||||||
"Enhance": "Förbättra",
|
"Enhance": "Förbättra",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Se till att din CSV-fil innehåller fyra kolumner i denna ordning: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Se till att din CSV-fil innehåller fyra kolumner i denna ordning: Name, Email, Password, Role.",
|
||||||
"Enter {{role}} message here": "Skriv {{role}} meddelande här",
|
"Enter {{role}} message here": "Skriv {{role}} meddelande här",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Skriv en detalj om dig själv för att dina LLMs ska komma ihåg",
|
"Enter a detail about yourself for your LLMs to recall": "Skriv en detalj om dig själv för att dina LLMs ska komma ihåg",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Ange Docling Server URL",
|
"Enter Docling Server URL": "Ange Docling Server URL",
|
||||||
"Enter Document Intelligence Endpoint": "Ange Document Intelligence Endpoint",
|
"Enter Document Intelligence Endpoint": "Ange Document Intelligence Endpoint",
|
||||||
"Enter Document Intelligence Key": "Ange Document Intelligence-nyckel",
|
"Enter Document Intelligence Key": "Ange Document Intelligence-nyckel",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Ange domäner separerade med kommatecken (t.ex. example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Ange Exa API-nyckel",
|
"Enter Exa API Key": "Ange Exa API-nyckel",
|
||||||
"Enter External Document Loader API Key": "Ange API-nyckel för extern dokumentinläsare",
|
"Enter External Document Loader API Key": "Ange API-nyckel för extern dokumentinläsare",
|
||||||
"Enter External Document Loader URL": "Ange URL för extern dokumentinläsare",
|
"Enter External Document Loader URL": "Ange URL för extern dokumentinläsare",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Exportera chatt (.json)",
|
"Export chat (.json)": "Exportera chatt (.json)",
|
||||||
"Export Chats": "Exportera chattar",
|
"Export Chats": "Exportera chattar",
|
||||||
"Export Config to JSON File": "Exportera konfiguration till JSON-fil",
|
"Export Config to JSON File": "Exportera konfiguration till JSON-fil",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Exportera förinställningar",
|
"Export Presets": "Exportera förinställningar",
|
||||||
"Export Prompt Suggestions": "Exportera promptförslag",
|
"Export Prompt Suggestions": "Exportera promptförslag",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Exportera till CSV",
|
"Export to CSV": "Exportera till CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "Extern",
|
"External": "Extern",
|
||||||
"External Document Loader URL required.": "Extern dokumentinläsare URL krävs.",
|
"External Document Loader URL required.": "Extern dokumentinläsare URL krävs.",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Importera chattar",
|
"Import Chats": "Importera chattar",
|
||||||
"Import Config from JSON File": "Importera konfiguration från JSON-fil",
|
"Import Config from JSON File": "Importera konfiguration från JSON-fil",
|
||||||
"Import From Link": "Importera från länk",
|
"Import From Link": "Importera från länk",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Importera anteckningar",
|
"Import Notes": "Importera anteckningar",
|
||||||
"Import Presets": "Importera förinställningar",
|
"Import Presets": "Importera förinställningar",
|
||||||
"Import Prompt Suggestions": "Importera promptförslag",
|
"Import Prompt Suggestions": "Importera promptförslag",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "Importen lyckades",
|
"Import successful": "Importen lyckades",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Viktig uppdatering",
|
"Important Update": "Viktig uppdatering",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Inkludera",
|
"Include": "Inkludera",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Inkludera flaggan `--api-auth` när du kör stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Inkludera flaggan `--api-auth` när du kör stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Inkludera flaggan `--api` när du kör stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Inkludera flaggan `--api` när du kör stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Inkluderar SharePoint",
|
"Includes SharePoint": "Inkluderar SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Påverkar hur snabbt algoritmen svarar på feedback från den genererade texten. En lägre inlärningshastighet resulterar i långsammare justeringar, medan en högre inlärningshastighet gör algoritmen mer responsiv.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Påverkar hur snabbt algoritmen svarar på feedback från den genererade texten. En lägre inlärningshastighet resulterar i långsammare justeringar, medan en högre inlärningshastighet gör algoritmen mer responsiv.",
|
||||||
"Info": "Information",
|
"Info": "Information",
|
||||||
"Initials": "Initialer",
|
"Initials": "Initialer",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "Ny funktion",
|
"New Function": "Ny funktion",
|
||||||
"New Knowledge": "Ny kunskapsbas",
|
"New Knowledge": "Ny kunskapsbas",
|
||||||
"New Model": "Ny modell",
|
"New Model": "Ny modell",
|
||||||
"New Note": "Ny anteckning",
|
|
||||||
"New Password": "Nytt lösenord",
|
"New Password": "Nytt lösenord",
|
||||||
"New Prompt": "Ny prompt",
|
"New Prompt": "Ny prompt",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Ange Hugging Face Resolve (Download) URL",
|
"Type Hugging Face Resolve (Download) URL": "Ange Hugging Face Resolve (Download) URL",
|
||||||
"Uh-oh! There was an issue with the response.": "Oj då! Det uppstod ett problem med svaret",
|
"Uh-oh! There was an issue with the response.": "Oj då! Det uppstod ett problem med svaret",
|
||||||
"UI": "UI",
|
"UI": "UI",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Avarkivera alla",
|
"Unarchive All": "Avarkivera alla",
|
||||||
"Unarchive All Archived Chats": "Avarkivera alla arkiverade chattar",
|
"Unarchive All Archived Chats": "Avarkivera alla arkiverade chattar",
|
||||||
"Unarchive Chat": "Avarkivera chatt",
|
"Unarchive Chat": "Avarkivera chatt",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "Röst",
|
"Voice": "Röst",
|
||||||
"Voice Input": "Röstinmatning",
|
"Voice Input": "Röstinmatning",
|
||||||
"Voice mode": "Röstläge",
|
"Voice mode": "Röstläge",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Varning",
|
"Warning": "Varning",
|
||||||
"Warning:": "Varning:",
|
"Warning:": "Varning:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Varning för detta: Om du aktiverar detta kan användare ladda upp godtycklig kod på servern.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Varning för detta: Om du aktiverar detta kan användare ladda upp godtycklig kod på servern.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "การปรับการตั้งค่าเหล่านี้จะนำไปใช้กับผู้ใช้ทั้งหมด",
|
"Adjusting these settings will apply changes universally to all users.": "การปรับการตั้งค่าเหล่านี้จะนำไปใช้กับผู้ใช้ทั้งหมด",
|
||||||
"admin": "ผู้ดูแลระบบ",
|
"admin": "ผู้ดูแลระบบ",
|
||||||
"Admin": "ผู้ดูแลระบบ",
|
"Admin": "ผู้ดูแลระบบ",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "สร้างคีย์ API แล้ว",
|
"API Key created.": "สร้างคีย์ API แล้ว",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "คีย์ API",
|
"API keys": "คีย์ API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "ธันวาคม",
|
"December": "ธันวาคม",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "ค่าเริ่มต้น",
|
"Default": "ค่าเริ่มต้น",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "โมเดลการฝัง",
|
"Embedding Model": "โมเดลการฝัง",
|
||||||
"Embedding Model Engine": "เครื่องยนต์โมเดลการฝัง",
|
"Embedding Model Engine": "เครื่องยนต์โมเดลการฝัง",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "ตั้งค่าโมเดลการฝังเป็น \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "ตั้งค่าโมเดลการฝังเป็น \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ตรวจสอบว่าไฟล์ CSV ของคุณมี 4 คอลัมน์ในลำดับนี้: ชื่อ, อีเมล, รหัสผ่าน, บทบาท",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ตรวจสอบว่าไฟล์ CSV ของคุณมี 4 คอลัมน์ในลำดับนี้: ชื่อ, อีเมล, รหัสผ่าน, บทบาท",
|
||||||
"Enter {{role}} message here": "ใส่ข้อความ {{role}} ที่นี่",
|
"Enter {{role}} message here": "ใส่ข้อความ {{role}} ที่นี่",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "ใส่รายละเอียดเกี่ยวกับตัวคุณสำหรับ LLMs ของคุณให้จดจำ",
|
"Enter a detail about yourself for your LLMs to recall": "ใส่รายละเอียดเกี่ยวกับตัวคุณสำหรับ LLMs ของคุณให้จดจำ",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "ส่งออกการสนทนา (.json)",
|
"Export chat (.json)": "ส่งออกการสนทนา (.json)",
|
||||||
"Export Chats": "ส่งออกการสนทนา",
|
"Export Chats": "ส่งออกการสนทนา",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "นำเข้าการสนทนา",
|
"Import Chats": "นำเข้าการสนทนา",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "อัปเดตสำคัญ",
|
"Important Update": "อัปเดตสำคัญ",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "",
|
"Include": "",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "รวมแฟลก `--api-auth` เมื่อเรียกใช้ stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "รวมแฟลก `--api-auth` เมื่อเรียกใช้ stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "รวมแฟลก `--api` เมื่อเรียกใช้ stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "รวมแฟลก `--api` เมื่อเรียกใช้ stable-diffusion-webui",
|
||||||
"Includes SharePoint": "รวม SharePoint",
|
"Includes SharePoint": "รวม SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "ข้อมูล",
|
"Info": "ข้อมูล",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "รหัสผ่านใหม่",
|
"New Password": "รหัสผ่านใหม่",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1641,6 +1651,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "พิมพ์ URL ของ Hugging Face Resolve (Download)",
|
"Type Hugging Face Resolve (Download) URL": "พิมพ์ URL ของ Hugging Face Resolve (Download)",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "ส่วนติดต่อผู้ใช้",
|
"UI": "ส่วนติดต่อผู้ใช้",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1714,6 +1725,8 @@
|
||||||
"Voice": "เสียง",
|
"Voice": "เสียง",
|
||||||
"Voice Input": "",
|
"Voice Input": "",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "คำเตือน",
|
"Warning": "คำเตือน",
|
||||||
"Warning:": "คำเตือน:",
|
"Warning:": "คำเตือน:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Bu sazlamalary düzetmek ähli ulanyjylara birmeňzeş üýtgeşmeler girizer.",
|
"Adjusting these settings will apply changes universally to all users.": "Bu sazlamalary düzetmek ähli ulanyjylara birmeňzeş üýtgeşmeler girizer.",
|
||||||
"admin": "admin",
|
"admin": "admin",
|
||||||
"Admin": "",
|
"Admin": "",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API Açar döredildi.",
|
"API Key created.": "API Açar döredildi.",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "API açarlary",
|
"API keys": "API açarlary",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "Dekabr",
|
"December": "Dekabr",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Nokatlaýyn",
|
"Default": "Nokatlaýyn",
|
||||||
"Default (Open AI)": "",
|
"Default (Open AI)": "",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "",
|
"Embedding Model": "",
|
||||||
"Embedding Model Engine": "",
|
"Embedding Model Engine": "",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "",
|
"Embedding model set to \"{{embedding_model}}\"": "",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
|
||||||
"Enter {{role}} message here": "",
|
"Enter {{role}} message here": "",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "",
|
"Enter a detail about yourself for your LLMs to recall": "",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "",
|
"Export chat (.json)": "",
|
||||||
"Export Chats": "",
|
"Export Chats": "",
|
||||||
"Export Config to JSON File": "",
|
"Export Config to JSON File": "",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "",
|
"Import Chats": "",
|
||||||
"Import Config from JSON File": "",
|
"Import Config from JSON File": "",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Möhüm täzelenme",
|
"Important Update": "Möhüm täzelenme",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "",
|
"Include": "",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "",
|
"Include `--api` flag when running stable-diffusion-webui": "",
|
||||||
"Includes SharePoint": "SharePoint bar",
|
"Includes SharePoint": "SharePoint bar",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "Maglumat",
|
"Info": "Maglumat",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "Täze Parol",
|
"New Password": "Täze Parol",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "",
|
"Type Hugging Face Resolve (Download) URL": "",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "",
|
"UI": "",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "",
|
"Voice": "",
|
||||||
"Voice Input": "Ses Girdi",
|
"Voice Input": "Ses Girdi",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Duýduryş",
|
"Warning": "Duýduryş",
|
||||||
"Warning:": "Duýduryş:",
|
"Warning:": "Duýduryş:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "Ek Yapılandırma",
|
"Additional Config": "Ek Yapılandırma",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "Ek Parametreler",
|
"Additional Parameters": "Ek Parametreler",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Bu ayarların yapılması, değişiklikleri tüm kullanıcılara evrensel olarak uygulayacaktır.",
|
"Adjusting these settings will apply changes universally to all users.": "Bu ayarların yapılması, değişiklikleri tüm kullanıcılara evrensel olarak uygulayacaktır.",
|
||||||
"admin": "yönetici",
|
"admin": "yönetici",
|
||||||
"Admin": "Yönetici",
|
"Admin": "Yönetici",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API Anahtarı oluşturuldu.",
|
"API Key created.": "API Anahtarı oluşturuldu.",
|
||||||
"API Key Endpoint Restrictions": "API Anahtarı Uç Nokta Kısıtlamaları",
|
"API Key Endpoint Restrictions": "API Anahtarı Uç Nokta Kısıtlamaları",
|
||||||
"API keys": "API anahtarları",
|
"API keys": "API anahtarları",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "API Sürümü",
|
"API Version": "API Sürümü",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "GG/AA/YYYY",
|
"DD/MM/YYYY": "GG/AA/YYYY",
|
||||||
"December": "Aralık",
|
"December": "Aralık",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Varsayılan",
|
"Default": "Varsayılan",
|
||||||
"Default (Open AI)": "Varsayılan (Open AI)",
|
"Default (Open AI)": "Varsayılan (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Gömme Modeli",
|
"Embedding Model": "Gömme Modeli",
|
||||||
"Embedding Model Engine": "Gömme Modeli Motoru",
|
"Embedding Model Engine": "Gömme Modeli Motoru",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Gömme modeli \"{{embedding_model}}\" olarak ayarlandı",
|
"Embedding model set to \"{{embedding_model}}\"": "Gömme modeli \"{{embedding_model}}\" olarak ayarlandı",
|
||||||
"Enable API Key": "API Anahtarını Etkinleştir",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Sohbet mesajları için otomatik tamamlama üretimini etkinleştir",
|
"Enable autocomplete generation for chat messages": "Sohbet mesajları için otomatik tamamlama üretimini etkinleştir",
|
||||||
"Enable Code Execution": "Kod Çalıştırmayı Etkinleştir",
|
"Enable Code Execution": "Kod Çalıştırmayı Etkinleştir",
|
||||||
"Enable Code Interpreter": "Kod Yorumlayıcıyı Etkinleştir",
|
"Enable Code Interpreter": "Kod Yorumlayıcıyı Etkinleştir",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "Uçnokta URL",
|
"Endpoint URL": "Uçnokta URL",
|
||||||
"Enforce Temporary Chat": "Geçici Sohbete Zorla",
|
"Enforce Temporary Chat": "Geçici Sohbete Zorla",
|
||||||
"Enhance": "İyileştir",
|
"Enhance": "İyileştir",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV dosyanızın şu sırayla 4 sütun içerdiğinden emin olun: İsim, E-posta, Şifre, Rol.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV dosyanızın şu sırayla 4 sütun içerdiğinden emin olun: İsim, E-posta, Şifre, Rol.",
|
||||||
"Enter {{role}} message here": "Buraya {{role}} mesajını girin",
|
"Enter {{role}} message here": "Buraya {{role}} mesajını girin",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "LLM'lerinizin hatırlaması için kendiniz hakkında bir bilgi girin",
|
"Enter a detail about yourself for your LLMs to recall": "LLM'lerinizin hatırlaması için kendiniz hakkında bir bilgi girin",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Sohbeti dışa aktar (.json)",
|
"Export chat (.json)": "Sohbeti dışa aktar (.json)",
|
||||||
"Export Chats": "Sohbetleri Dışa Aktar",
|
"Export Chats": "Sohbetleri Dışa Aktar",
|
||||||
"Export Config to JSON File": "Yapılandırmayı JSON Dosyasına Aktar",
|
"Export Config to JSON File": "Yapılandırmayı JSON Dosyasına Aktar",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Ön Ayarları Dışa Aktar",
|
"Export Presets": "Ön Ayarları Dışa Aktar",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "CSV'ye Aktar",
|
"Export to CSV": "CSV'ye Aktar",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Sohbetleri İçe Aktar",
|
"Import Chats": "Sohbetleri İçe Aktar",
|
||||||
"Import Config from JSON File": "Yapılandırmayı JSON Dosyasından İçe Aktar",
|
"Import Config from JSON File": "Yapılandırmayı JSON Dosyasından İçe Aktar",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Notları İçe Aktar",
|
"Import Notes": "Notları İçe Aktar",
|
||||||
"Import Presets": "Ön Ayarları İçe Aktar",
|
"Import Presets": "Ön Ayarları İçe Aktar",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Önemli güncelleme",
|
"Important Update": "Önemli güncelleme",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Dahil etmek",
|
"Include": "Dahil etmek",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "stable-diffusion-webui çalıştırılırken `--api-auth` bayrağını dahil edin",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "stable-diffusion-webui çalıştırılırken `--api-auth` bayrağını dahil edin",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui çalıştırılırken `--api` bayrağını dahil edin",
|
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui çalıştırılırken `--api` bayrağını dahil edin",
|
||||||
"Includes SharePoint": "SharePoint içerir",
|
"Includes SharePoint": "SharePoint içerir",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "Bilgi",
|
"Info": "Bilgi",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "Yeni Not",
|
|
||||||
"New Password": "Yeni Parola",
|
"New Password": "Yeni Parola",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "HuggingFace Çözümleme (İndirme) URL'sini Yazın",
|
"Type Hugging Face Resolve (Download) URL": "HuggingFace Çözümleme (İndirme) URL'sini Yazın",
|
||||||
"Uh-oh! There was an issue with the response.": "Opps! Yanıtla ilgili bir sorun oluştu",
|
"Uh-oh! There was an issue with the response.": "Opps! Yanıtla ilgili bir sorun oluştu",
|
||||||
"UI": "Arayüz",
|
"UI": "Arayüz",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Tümünü Arşivden Çıkar",
|
"Unarchive All": "Tümünü Arşivden Çıkar",
|
||||||
"Unarchive All Archived Chats": "Arşivlenmiş Tüm Sohbetleri Arşivden Çıkar",
|
"Unarchive All Archived Chats": "Arşivlenmiş Tüm Sohbetleri Arşivden Çıkar",
|
||||||
"Unarchive Chat": "Sohbeti Arşivden Çıkar",
|
"Unarchive Chat": "Sohbeti Arşivden Çıkar",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "Ses",
|
"Voice": "Ses",
|
||||||
"Voice Input": "Ses Girişi",
|
"Voice Input": "Ses Girişi",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Uyarı",
|
"Warning": "Uyarı",
|
||||||
"Warning:": "Uyarı:",
|
"Warning:": "Uyarı:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Uyarı: Bu etkinleştirildiğinde, kullanıcıların sunucuya rastgele kod yüklemesine izin verilecektir.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Uyarı: Bu etkinleştirildiğinde, kullanıcıların sunucuya rastgele kod yüklemesine izin verilecektir.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "بۇ تەڭشەكتىكى ئۆزگەرتىشلەر بارلىق ئىشلەتكۈچىلەرگە قوللىنىلىدۇ.",
|
"Adjusting these settings will apply changes universally to all users.": "بۇ تەڭشەكتىكى ئۆزگەرتىشلەر بارلىق ئىشلەتكۈچىلەرگە قوللىنىلىدۇ.",
|
||||||
"admin": "باشقۇرغۇچى",
|
"admin": "باشقۇرغۇچى",
|
||||||
"Admin": "باشقۇرغۇچى",
|
"Admin": "باشقۇرغۇچى",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API ئاچقۇچى قۇرۇلدى.",
|
"API Key created.": "API ئاچقۇچى قۇرۇلدى.",
|
||||||
"API Key Endpoint Restrictions": "API ئاچقۇچى ئۇلانما چەكلىمەسى",
|
"API Key Endpoint Restrictions": "API ئاچقۇچى ئۇلانما چەكلىمەسى",
|
||||||
"API keys": "API ئاچقۇچلىرى",
|
"API keys": "API ئاچقۇچلىرى",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "API نەشرى",
|
"API Version": "API نەشرى",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "Datalab Marker API",
|
"Datalab Marker API": "Datalab Marker API",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "دېكابىر",
|
"December": "دېكابىر",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "كۆڭۈلدىكى",
|
"Default": "كۆڭۈلدىكى",
|
||||||
"Default (Open AI)": "كۆڭۈلدىكى (Open AI)",
|
"Default (Open AI)": "كۆڭۈلدىكى (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "سىڭدۈرۈش مودېلى",
|
"Embedding Model": "سىڭدۈرۈش مودېلى",
|
||||||
"Embedding Model Engine": "سىڭدۈرۈش مودېل ماتورى",
|
"Embedding Model Engine": "سىڭدۈرۈش مودېل ماتورى",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "سىڭدۈرۈش مودېلى \"{{embedding_model}}\" غا تەڭشەلدى",
|
"Embedding model set to \"{{embedding_model}}\"": "سىڭدۈرۈش مودېلى \"{{embedding_model}}\" غا تەڭشەلدى",
|
||||||
"Enable API Key": "API ئاچقۇچ قوزغىتىش",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "سۆھبەت ئۇچۇرلىرىغا ئاپتوماتىك تولدۇرۇش قوزغىتىش",
|
"Enable autocomplete generation for chat messages": "سۆھبەت ئۇچۇرلىرىغا ئاپتوماتىك تولدۇرۇش قوزغىتىش",
|
||||||
"Enable Code Execution": "كود ئىجرا قىلىشننى قوزغىتىش",
|
"Enable Code Execution": "كود ئىجرا قىلىشننى قوزغىتىش",
|
||||||
"Enable Code Interpreter": "كود تەرجىمانىنى قوزغىتىش",
|
"Enable Code Interpreter": "كود تەرجىمانىنى قوزغىتىش",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "ئۇلانما URL",
|
"Endpoint URL": "ئۇلانما URL",
|
||||||
"Enforce Temporary Chat": "ۋاقىتلىق سۆھبەتنى مەجبۇرىي قىلىش",
|
"Enforce Temporary Chat": "ۋاقىتلىق سۆھبەتنى مەجبۇرىي قىلىش",
|
||||||
"Enhance": "ياخشىلا",
|
"Enhance": "ياخشىلا",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV ھۆججىتىڭىز تۆت تۈردىكى ئۇچۇرنى بۇ تەرتىپتە ئۆز ئىچىگە ئالىدۇ: ئات، ئېلخەت، پارول، رول.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV ھۆججىتىڭىز تۆت تۈردىكى ئۇچۇرنى بۇ تەرتىپتە ئۆز ئىچىگە ئالىدۇ: ئات، ئېلخەت، پارول، رول.",
|
||||||
"Enter {{role}} message here": "{{role}} ئۇچۇرنى بۇ يەرگە كىرگۈزۈڭ",
|
"Enter {{role}} message here": "{{role}} ئۇچۇرنى بۇ يەرگە كىرگۈزۈڭ",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "LLM ىڭىزنىڭ سىزنى ئېسىدە ساقلاش ئۈچۈن ئۆزىڭىز ھەققىدە بىر ئۇچۇر كىرگۈزۈڭ",
|
"Enter a detail about yourself for your LLMs to recall": "LLM ىڭىزنىڭ سىزنى ئېسىدە ساقلاش ئۈچۈن ئۆزىڭىز ھەققىدە بىر ئۇچۇر كىرگۈزۈڭ",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Docling مۇلازىمېتىر URL كىرگۈزۈڭ",
|
"Enter Docling Server URL": "Docling مۇلازىمېتىر URL كىرگۈزۈڭ",
|
||||||
"Enter Document Intelligence Endpoint": "ھۆججەت ئەقىل ئۇلانما كىرگۈزۈڭ",
|
"Enter Document Intelligence Endpoint": "ھۆججەت ئەقىل ئۇلانما كىرگۈزۈڭ",
|
||||||
"Enter Document Intelligence Key": "ھۆججەت ئەقىل ئاچقۇچى كىرگۈزۈڭ",
|
"Enter Document Intelligence Key": "ھۆججەت ئەقىل ئاچقۇچى كىرگۈزۈڭ",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "دائىرە ناملىرىنى پەش بىلەن ئايرىپ كىرگۈزۈڭ (مەسىلەن: example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Exa API ئاچقۇچى كىرگۈزۈڭ",
|
"Enter Exa API Key": "Exa API ئاچقۇچى كىرگۈزۈڭ",
|
||||||
"Enter External Document Loader API Key": "سىرتقى ھۆججەت يۈكلىگۈچ API ئاچقۇچى كىرگۈزۈڭ",
|
"Enter External Document Loader API Key": "سىرتقى ھۆججەت يۈكلىگۈچ API ئاچقۇچى كىرگۈزۈڭ",
|
||||||
"Enter External Document Loader URL": "سىرتقى ھۆججەت يۈكلىگۈچ URL كىرگۈزۈڭ",
|
"Enter External Document Loader URL": "سىرتقى ھۆججەت يۈكلىگۈچ URL كىرگۈزۈڭ",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "سۆھبەت چىقىرىش (.json)",
|
"Export chat (.json)": "سۆھبەت چىقىرىش (.json)",
|
||||||
"Export Chats": "سۆھبەتلەرنى چىقىرىش",
|
"Export Chats": "سۆھبەتلەرنى چىقىرىش",
|
||||||
"Export Config to JSON File": "تەڭشەك چىقىرىش (JSON ھۆججىتى)",
|
"Export Config to JSON File": "تەڭشەك چىقىرىش (JSON ھۆججىتى)",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "ئالدىن تەڭشەك چىقىرىش",
|
"Export Presets": "ئالدىن تەڭشەك چىقىرىش",
|
||||||
"Export Prompt Suggestions": "تۈرتكە تەكلىپلىرىنى چىقىرىش",
|
"Export Prompt Suggestions": "تۈرتكە تەكلىپلىرىنى چىقىرىش",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "CSV غا چىقىرىش",
|
"Export to CSV": "CSV غا چىقىرىش",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "سىرتقى",
|
"External": "سىرتقى",
|
||||||
"External Document Loader URL required.": "سىرتقى ھۆججەت يۈكلىگۈچ URL زۆرۈر.",
|
"External Document Loader URL required.": "سىرتقى ھۆججەت يۈكلىگۈچ URL زۆرۈر.",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "سۆھبەتلەرنى ئىمپورت قىلىش",
|
"Import Chats": "سۆھبەتلەرنى ئىمپورت قىلىش",
|
||||||
"Import Config from JSON File": "JSON ھۆججىتىدىن تەڭشەك ئىمپورت قىلىش",
|
"Import Config from JSON File": "JSON ھۆججىتىدىن تەڭشەك ئىمپورت قىلىش",
|
||||||
"Import From Link": "ئۇلانمىدىن ئىمپورت قىلىش",
|
"Import From Link": "ئۇلانمىدىن ئىمپورت قىلىش",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "خاتىرە ئىمپورت قىلىش",
|
"Import Notes": "خاتىرە ئىمپورت قىلىش",
|
||||||
"Import Presets": "ئالدىن تەڭشەك ئىمپورت قىلىش",
|
"Import Presets": "ئالدىن تەڭشەك ئىمپورت قىلىش",
|
||||||
"Import Prompt Suggestions": "تۈرتكە تەكلىپى ئىمپورت قىلىش",
|
"Import Prompt Suggestions": "تۈرتكە تەكلىپى ئىمپورت قىلىش",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "مۇھىم يېڭىلانىش",
|
"Important Update": "مۇھىم يېڭىلانىش",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "ئىچكىرى قىل",
|
"Include": "ئىچكىرى قىل",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "stable-diffusion-webui قوزغىتىشتا `--api-auth` بەلگىسىنى ئىشلىتىڭ",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "stable-diffusion-webui قوزغىتىشتا `--api-auth` بەلگىسىنى ئىشلىتىڭ",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui قوزغىتىشتا `--api` بەلگىسىنى ئىشلىتىڭ",
|
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui قوزغىتىشتا `--api` بەلگىسىنى ئىشلىتىڭ",
|
||||||
"Includes SharePoint": "SharePoint نى ئۆز ئىچىگە ئالىدۇ",
|
"Includes SharePoint": "SharePoint نى ئۆز ئىچىگە ئالىدۇ",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "ھاسىل قىلىنغان تېكىستنىڭ ئىنكاسىغا ئالگورىزىمنىڭ تېز ئىنكاس قايتۇرۇشىغا تەسىر كۆرسىتىدۇ. ئۆگىنىش نىسبىتىنىڭ تۆۋەن بولۇشى ئاستا تەڭشەشنى كەلتۈرۈپ چىقىرىدۇ ، ھالبۇكى تېخىمۇ يۇقىرى ئۆگىنىش نىسبىتى ھېسابلاش ئۇسۇلىنى تېخىمۇ كۈچلۈك قىلىدۇ.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "ھاسىل قىلىنغان تېكىستنىڭ ئىنكاسىغا ئالگورىزىمنىڭ تېز ئىنكاس قايتۇرۇشىغا تەسىر كۆرسىتىدۇ. ئۆگىنىش نىسبىتىنىڭ تۆۋەن بولۇشى ئاستا تەڭشەشنى كەلتۈرۈپ چىقىرىدۇ ، ھالبۇكى تېخىمۇ يۇقىرى ئۆگىنىش نىسبىتى ھېسابلاش ئۇسۇلىنى تېخىمۇ كۈچلۈك قىلىدۇ.",
|
||||||
"Info": "ئۇچۇر",
|
"Info": "ئۇچۇر",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "يېڭى فۇنكسىيە",
|
"New Function": "يېڭى فۇنكسىيە",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "يېڭى خاتىرە",
|
|
||||||
"New Password": "يېڭى پارول",
|
"New Password": "يېڭى پارول",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face چۈشۈرۈش URL كىرگۈزۈڭ",
|
"Type Hugging Face Resolve (Download) URL": "Hugging Face چۈشۈرۈش URL كىرگۈزۈڭ",
|
||||||
"Uh-oh! There was an issue with the response.": "ئىنكاستا مەسىلە كۆرۈلدى.",
|
"Uh-oh! There was an issue with the response.": "ئىنكاستا مەسىلە كۆرۈلدى.",
|
||||||
"UI": "UI (كۆرۈنمە يۈز)",
|
"UI": "UI (كۆرۈنمە يۈز)",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "بارلىق ئارخىپنى قايتا ئەسلىگە كەلتۈرۈش",
|
"Unarchive All": "بارلىق ئارخىپنى قايتا ئەسلىگە كەلتۈرۈش",
|
||||||
"Unarchive All Archived Chats": "بارلىق ئارخىپلانغان سۆھبەتلەرنى قايتا ئەسلىگە كەلتۈرۈش",
|
"Unarchive All Archived Chats": "بارلىق ئارخىپلانغان سۆھبەتلەرنى قايتا ئەسلىگە كەلتۈرۈش",
|
||||||
"Unarchive Chat": "سۆھبەتنى قايتا ئەسلىگە كەلتۈرۈش",
|
"Unarchive Chat": "سۆھبەتنى قايتا ئەسلىگە كەلتۈرۈش",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "ئاۋاز",
|
"Voice": "ئاۋاز",
|
||||||
"Voice Input": "ئاۋاز كىرگۈزۈش",
|
"Voice Input": "ئاۋاز كىرگۈزۈش",
|
||||||
"Voice mode": "ئاۋاز ھالىتى",
|
"Voice mode": "ئاۋاز ھالىتى",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "ئاگاھلاندۇرۇش",
|
"Warning": "ئاگاھلاندۇرۇش",
|
||||||
"Warning:": "ئاگاھلاندۇرۇش:",
|
"Warning:": "ئاگاھلاندۇرۇش:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "ئاگاھلاندۇرۇش: بۇ قوزغىتىلسا، ئىشلەتكۈچىلەر خالىغان كودنى مۇلازىمېتىرغا چىقىرىدۇ.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "ئاگاھلاندۇرۇش: بۇ قوزغىتىلسا، ئىشلەتكۈچىلەر خالىغان كودنى مۇلازىمېتىرغا چىقىرىدۇ.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Зміни в цих налаштуваннях будуть застосовані для всіх користувачів.",
|
"Adjusting these settings will apply changes universally to all users.": "Зміни в цих налаштуваннях будуть застосовані для всіх користувачів.",
|
||||||
"admin": "адмін",
|
"admin": "адмін",
|
||||||
"Admin": "Адмін",
|
"Admin": "Адмін",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "Ключ API створено.",
|
"API Key created.": "Ключ API створено.",
|
||||||
"API Key Endpoint Restrictions": "Обмеження кінцевої точки ключа API",
|
"API Key Endpoint Restrictions": "Обмеження кінцевої точки ключа API",
|
||||||
"API keys": "Ключі API",
|
"API keys": "Ключі API",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "Грудень",
|
"December": "Грудень",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "За замовчуванням",
|
"Default": "За замовчуванням",
|
||||||
"Default (Open AI)": "За замовчуванням (Open AI)",
|
"Default (Open AI)": "За замовчуванням (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Модель вбудовування",
|
"Embedding Model": "Модель вбудовування",
|
||||||
"Embedding Model Engine": "Рушій моделі вбудовування ",
|
"Embedding Model Engine": "Рушій моделі вбудовування ",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Встановлена модель вбудовування \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Встановлена модель вбудовування \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "Увімкнути ключ API",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Увімкнути генерацію автозаповнення для повідомлень чату",
|
"Enable autocomplete generation for chat messages": "Увімкнути генерацію автозаповнення для повідомлень чату",
|
||||||
"Enable Code Execution": "Увімкнути виконання коду",
|
"Enable Code Execution": "Увімкнути виконання коду",
|
||||||
"Enable Code Interpreter": "Увімкнути інтерпретатор коду",
|
"Enable Code Interpreter": "Увімкнути інтерпретатор коду",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "Застосувати тимчасовий чат",
|
"Enforce Temporary Chat": "Застосувати тимчасовий чат",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Переконайтеся, що ваш CSV-файл містить 4 колонки в такому порядку: Ім'я, Email, Пароль, Роль.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Переконайтеся, що ваш CSV-файл містить 4 колонки в такому порядку: Ім'я, Email, Пароль, Роль.",
|
||||||
"Enter {{role}} message here": "Введіть повідомлення {{role}} тут",
|
"Enter {{role}} message here": "Введіть повідомлення {{role}} тут",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Введіть відомості про себе для запам'ятовування вашими LLM.",
|
"Enter a detail about yourself for your LLMs to recall": "Введіть відомості про себе для запам'ятовування вашими LLM.",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Введіть URL-адресу сервера Docling",
|
"Enter Docling Server URL": "Введіть URL-адресу сервера Docling",
|
||||||
"Enter Document Intelligence Endpoint": "Введіть кінцеву точку Інтелекту документа",
|
"Enter Document Intelligence Endpoint": "Введіть кінцеву точку Інтелекту документа",
|
||||||
"Enter Document Intelligence Key": "Введіть ключ Інтелекту документа",
|
"Enter Document Intelligence Key": "Введіть ключ Інтелекту документа",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Введіть домени, розділені комами (наприклад, example.com, site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Введіть ключ API Exa",
|
"Enter Exa API Key": "Введіть ключ API Exa",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Експорт чату (.json)",
|
"Export chat (.json)": "Експорт чату (.json)",
|
||||||
"Export Chats": "Експорт чатів",
|
"Export Chats": "Експорт чатів",
|
||||||
"Export Config to JSON File": "Експорт конфігурації у файл JSON",
|
"Export Config to JSON File": "Експорт конфігурації у файл JSON",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Експорт пресетів",
|
"Export Presets": "Експорт пресетів",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Експорт в CSV",
|
"Export to CSV": "Експорт в CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "Зовнішній",
|
"External": "Зовнішній",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Імпорт чатів",
|
"Import Chats": "Імпорт чатів",
|
||||||
"Import Config from JSON File": "Імпорт конфігурації з файлу JSON",
|
"Import Config from JSON File": "Імпорт конфігурації з файлу JSON",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "Імпорт пресетів",
|
"Import Presets": "Імпорт пресетів",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Важливе оновлення",
|
"Important Update": "Важливе оновлення",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Включити",
|
"Include": "Включити",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Включіть прапорець `--api-auth` під час запуску stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Включіть прапорець `--api-auth` під час запуску stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Включіть прапор `--api` при запуску stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Включіть прапор `--api` при запуску stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Містить SharePoint",
|
"Includes SharePoint": "Містить SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Впливає на те, як швидко алгоритм реагує на відгуки згенерованого тексту. Нижча швидкість навчання призведе до повільніших коригувань, тоді як вища швидкість навчання зробить алгоритм більш чутливим.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Впливає на те, як швидко алгоритм реагує на відгуки згенерованого тексту. Нижча швидкість навчання призведе до повільніших коригувань, тоді як вища швидкість навчання зробить алгоритм більш чутливим.",
|
||||||
"Info": "Інфо",
|
"Info": "Інфо",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "Новий пароль",
|
"New Password": "Новий пароль",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1644,6 +1654,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Введіть URL ресурсу Hugging Face Resolve (завантаження)",
|
"Type Hugging Face Resolve (Download) URL": "Введіть URL ресурсу Hugging Face Resolve (завантаження)",
|
||||||
"Uh-oh! There was an issue with the response.": "Ой-ой! Сталася проблема з відповіддю.",
|
"Uh-oh! There was an issue with the response.": "Ой-ой! Сталася проблема з відповіддю.",
|
||||||
"UI": "Користувацький інтерфейс",
|
"UI": "Користувацький інтерфейс",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Розархівувати все",
|
"Unarchive All": "Розархівувати все",
|
||||||
"Unarchive All Archived Chats": "Розархівувати усі архівовані чати",
|
"Unarchive All Archived Chats": "Розархівувати усі архівовані чати",
|
||||||
"Unarchive Chat": "Розархівувати чат",
|
"Unarchive Chat": "Розархівувати чат",
|
||||||
|
|
@ -1717,6 +1728,8 @@
|
||||||
"Voice": "Голос",
|
"Voice": "Голос",
|
||||||
"Voice Input": "Голосове введення",
|
"Voice Input": "Голосове введення",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Увага!",
|
"Warning": "Увага!",
|
||||||
"Warning:": "Увага:",
|
"Warning:": "Увага:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Попередження: Увімкнення цього дозволить користувачам завантажувати довільний код на сервер.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Попередження: Увімкнення цього дозволить користувачам завантажувати довільний код на сервер.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "ان سیٹنگز کو ایڈجسٹ کرنے سے تمام صارفین کے لئے تبدیلیاں یکساں طور پر نافذ ہوں گی",
|
"Adjusting these settings will apply changes universally to all users.": "ان سیٹنگز کو ایڈجسٹ کرنے سے تمام صارفین کے لئے تبدیلیاں یکساں طور پر نافذ ہوں گی",
|
||||||
"admin": "ایڈمن",
|
"admin": "ایڈمن",
|
||||||
"Admin": "ایڈمن",
|
"Admin": "ایڈمن",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "اے پی آئی کلید بنائی گئی",
|
"API Key created.": "اے پی آئی کلید بنائی گئی",
|
||||||
"API Key Endpoint Restrictions": "",
|
"API Key Endpoint Restrictions": "",
|
||||||
"API keys": "API کیز",
|
"API keys": "API کیز",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "دسمبر",
|
"December": "دسمبر",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "پہلے سے طے شدہ",
|
"Default": "پہلے سے طے شدہ",
|
||||||
"Default (Open AI)": "ڈیفالٹ (اوپن اے آئی)",
|
"Default (Open AI)": "ڈیفالٹ (اوپن اے آئی)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "ایمبیڈنگ ماڈل",
|
"Embedding Model": "ایمبیڈنگ ماڈل",
|
||||||
"Embedding Model Engine": "ایمبیڈنگ ماڈل انجن",
|
"Embedding Model Engine": "ایمبیڈنگ ماڈل انجن",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "ایمبیڈنگ ماڈل \"{{embedding_model}}\" پر سیٹ کیا گیا ہے",
|
"Embedding model set to \"{{embedding_model}}\"": "ایمبیڈنگ ماڈل \"{{embedding_model}}\" پر سیٹ کیا گیا ہے",
|
||||||
"Enable API Key": "",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "",
|
"Enable autocomplete generation for chat messages": "",
|
||||||
"Enable Code Execution": "",
|
"Enable Code Execution": "",
|
||||||
"Enable Code Interpreter": "",
|
"Enable Code Interpreter": "",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "",
|
"Enforce Temporary Chat": "",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "یقینی بنائیں کہ آپ کی CSV فائل میں 4 کالم اس ترتیب میں شامل ہوں: نام، ای میل، پاس ورڈ، کردار",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "یقینی بنائیں کہ آپ کی CSV فائل میں 4 کالم اس ترتیب میں شامل ہوں: نام، ای میل، پاس ورڈ، کردار",
|
||||||
"Enter {{role}} message here": "یہاں {{کردار}} پیغام درج کریں",
|
"Enter {{role}} message here": "یہاں {{کردار}} پیغام درج کریں",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "اپنی ذات کے بارے میں کوئی تفصیل درج کریں تاکہ آپ کے LLMs اسے یاد رکھ سکیں",
|
"Enter a detail about yourself for your LLMs to recall": "اپنی ذات کے بارے میں کوئی تفصیل درج کریں تاکہ آپ کے LLMs اسے یاد رکھ سکیں",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "",
|
"Enter Docling Server URL": "",
|
||||||
"Enter Document Intelligence Endpoint": "",
|
"Enter Document Intelligence Endpoint": "",
|
||||||
"Enter Document Intelligence Key": "",
|
"Enter Document Intelligence Key": "",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "",
|
"Enter Exa API Key": "",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "چیٹ برآمد کریں (.json)",
|
"Export chat (.json)": "چیٹ برآمد کریں (.json)",
|
||||||
"Export Chats": "چیٹس برآمد کریں",
|
"Export Chats": "چیٹس برآمد کریں",
|
||||||
"Export Config to JSON File": "کنفیگ کو JSON فائل میں ایکسپورٹ کریں",
|
"Export Config to JSON File": "کنفیگ کو JSON فائل میں ایکسپورٹ کریں",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "",
|
"Export Presets": "",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "",
|
"Export to CSV": "",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "",
|
"External": "",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "چیٹس درآمد کریں",
|
"Import Chats": "چیٹس درآمد کریں",
|
||||||
"Import Config from JSON File": "JSON فائل سے تشکیلات درآمد کریں",
|
"Import Config from JSON File": "JSON فائل سے تشکیلات درآمد کریں",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "",
|
"Import Presets": "",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "اہم اپ ڈیٹ",
|
"Important Update": "اہم اپ ڈیٹ",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "شامل کریں",
|
"Include": "شامل کریں",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "`--api-auth` پرچم کو چلانے کے وقت شامل کریں stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "`--api-auth` پرچم کو چلانے کے وقت شامل کریں stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "اسٹیبل-ڈیفیوژن-ویب یو آئی چلانے کے دوران `--api` فلیگ شامل کریں",
|
"Include `--api` flag when running stable-diffusion-webui": "اسٹیبل-ڈیفیوژن-ویب یو آئی چلانے کے دوران `--api` فلیگ شامل کریں",
|
||||||
"Includes SharePoint": "SharePoint شامل ہے",
|
"Includes SharePoint": "SharePoint شامل ہے",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "",
|
||||||
"Info": "معلومات",
|
"Info": "معلومات",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "نیا پاس ورڈ",
|
"New Password": "نیا پاس ورڈ",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "قسم ہگنگ فیس ری زولو (ڈاؤن لوڈ) یو آر ایل",
|
"Type Hugging Face Resolve (Download) URL": "قسم ہگنگ فیس ری زولو (ڈاؤن لوڈ) یو آر ایل",
|
||||||
"Uh-oh! There was an issue with the response.": "",
|
"Uh-oh! There was an issue with the response.": "",
|
||||||
"UI": "صارف انٹرفیس",
|
"UI": "صارف انٹرفیس",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "",
|
"Unarchive All": "",
|
||||||
"Unarchive All Archived Chats": "",
|
"Unarchive All Archived Chats": "",
|
||||||
"Unarchive Chat": "",
|
"Unarchive Chat": "",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "آواز",
|
"Voice": "آواز",
|
||||||
"Voice Input": "آواز داخل کریں",
|
"Voice Input": "آواز داخل کریں",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "انتباہ",
|
"Warning": "انتباہ",
|
||||||
"Warning:": "انتباہ:",
|
"Warning:": "انتباہ:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Ушбу созламаларни ўзгартириш барча фойдаланувчиларга универсал тарзда қўлланилади.",
|
"Adjusting these settings will apply changes universally to all users.": "Ушбу созламаларни ўзгартириш барча фойдаланувчиларга универсал тарзда қўлланилади.",
|
||||||
"admin": "админ",
|
"admin": "админ",
|
||||||
"Admin": "Админ",
|
"Admin": "Админ",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "Дастурий Илова Интерфейси(API) калити яратилди.",
|
"API Key created.": "Дастурий Илова Интерфейси(API) калити яратилди.",
|
||||||
"API Key Endpoint Restrictions": "Дастурий Илова Интерфейси(API) калитининг чекловлари",
|
"API Key Endpoint Restrictions": "Дастурий Илова Интерфейси(API) калитининг чекловлари",
|
||||||
"API keys": "Дастурий Илова Интерфейси(API) калитлари",
|
"API keys": "Дастурий Илова Интерфейси(API) калитлари",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "Дастурий Илова Интерфейси(API) версияси",
|
"API Version": "Дастурий Илова Интерфейси(API) версияси",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "Datalab Marker API",
|
"Datalab Marker API": "Datalab Marker API",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "декабр",
|
"December": "декабр",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Стандарт",
|
"Default": "Стандарт",
|
||||||
"Default (Open AI)": "Стандарт (Open AI)",
|
"Default (Open AI)": "Стандарт (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Ўрнатиш модели",
|
"Embedding Model": "Ўрнатиш модели",
|
||||||
"Embedding Model Engine": "Двигател моделини ўрнатиш",
|
"Embedding Model Engine": "Двигател моделини ўрнатиш",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Ўрнатиш модели “{{embedding_model}}”га ўрнатилди",
|
"Embedding model set to \"{{embedding_model}}\"": "Ўрнатиш модели “{{embedding_model}}”га ўрнатилди",
|
||||||
"Enable API Key": "API калитини ёқиш",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Чат хабарлари учун автоматик тўлдиришни яратишни ёқинг",
|
"Enable autocomplete generation for chat messages": "Чат хабарлари учун автоматик тўлдиришни яратишни ёқинг",
|
||||||
"Enable Code Execution": "Код бажарилишини ёқинг",
|
"Enable Code Execution": "Код бажарилишини ёқинг",
|
||||||
"Enable Code Interpreter": "Код таржимонини ёқинг",
|
"Enable Code Interpreter": "Код таржимонини ёқинг",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "Охирги нуқта URL",
|
"Endpoint URL": "Охирги нуқта URL",
|
||||||
"Enforce Temporary Chat": "Вақтинчалик суҳбатни жорий қилиш",
|
"Enforce Temporary Chat": "Вақтинчалик суҳбатни жорий қилиш",
|
||||||
"Enhance": "Яхшилаш",
|
"Enhance": "Яхшилаш",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV файлингиз қуйидаги тартибда 4 та устундан иборатлигига ишонч ҳосил қилинг: Исм, Электрон почта, Парол, Рол.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV файлингиз қуйидаги тартибда 4 та устундан иборатлигига ишонч ҳосил қилинг: Исм, Электрон почта, Парол, Рол.",
|
||||||
"Enter {{role}} message here": "Бу ерга {{role}} хабарини киритинг",
|
"Enter {{role}} message here": "Бу ерга {{role}} хабарини киритинг",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "ЛЛМлар эслаб қолишлари учун ўзингиз ҳақингизда маълумот киритинг",
|
"Enter a detail about yourself for your LLMs to recall": "ЛЛМлар эслаб қолишлари учун ўзингиз ҳақингизда маълумот киритинг",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Docling Сервер URL манзилини киритинг",
|
"Enter Docling Server URL": "Docling Сервер URL манзилини киритинг",
|
||||||
"Enter Document Intelligence Endpoint": "Document Intelligence Эндпоинт-ни киритинг",
|
"Enter Document Intelligence Endpoint": "Document Intelligence Эндпоинт-ни киритинг",
|
||||||
"Enter Document Intelligence Key": "Ҳужжатнинг разведка калитини киритинг",
|
"Enter Document Intelligence Key": "Ҳужжатнинг разведка калитини киритинг",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Доменларни вергул билан ажратинг (масалан, example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Exa АПИ калитини киритинг",
|
"Enter Exa API Key": "Exa АПИ калитини киритинг",
|
||||||
"Enter External Document Loader API Key": "Ташқи ҳужжат юкловчи АПИ калитини киритинг",
|
"Enter External Document Loader API Key": "Ташқи ҳужжат юкловчи АПИ калитини киритинг",
|
||||||
"Enter External Document Loader URL": "Ташқи ҳужжат юкловчи УРЛ манзилини киритинг",
|
"Enter External Document Loader URL": "Ташқи ҳужжат юкловчи УРЛ манзилини киритинг",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Чатни экспорт қилиш (.жсон)",
|
"Export chat (.json)": "Чатни экспорт қилиш (.жсон)",
|
||||||
"Export Chats": "Чатларни экспорт қилиш",
|
"Export Chats": "Чатларни экспорт қилиш",
|
||||||
"Export Config to JSON File": "Конфигурацияни ЖСОН файлига экспорт қилинг",
|
"Export Config to JSON File": "Конфигурацияни ЖСОН файлига экспорт қилинг",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Олдиндан созламаларни экспорт қилиш",
|
"Export Presets": "Олдиндан созламаларни экспорт қилиш",
|
||||||
"Export Prompt Suggestions": "Экспорт бўйича таклифлар",
|
"Export Prompt Suggestions": "Экспорт бўйича таклифлар",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "CSV га экспорт қилиш",
|
"Export to CSV": "CSV га экспорт қилиш",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "Ташқи",
|
"External": "Ташқи",
|
||||||
"External Document Loader URL required.": "Ташқи ҳужжат юкловчи УРЛ манзили талаб қилинади.",
|
"External Document Loader URL required.": "Ташқи ҳужжат юкловчи УРЛ манзили талаб қилинади.",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Чатларни импорт қилиш",
|
"Import Chats": "Чатларни импорт қилиш",
|
||||||
"Import Config from JSON File": "ЖСОН файлидан конфигурацияни импорт қилинг",
|
"Import Config from JSON File": "ЖСОН файлидан конфигурацияни импорт қилинг",
|
||||||
"Import From Link": "Ҳаволадан импорт қилиш",
|
"Import From Link": "Ҳаволадан импорт қилиш",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Эслатмаларни импорт қилиш",
|
"Import Notes": "Эслатмаларни импорт қилиш",
|
||||||
"Import Presets": "Олдиндан созламаларни импорт қилиш",
|
"Import Presets": "Олдиндан созламаларни импорт қилиш",
|
||||||
"Import Prompt Suggestions": "Импорт бўйича таклифлар",
|
"Import Prompt Suggestions": "Импорт бўйича таклифлар",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Мухим янгиланиш",
|
"Important Update": "Мухим янгиланиш",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Ўз ичига олади",
|
"Include": "Ўз ичига олади",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Стабил-диффусион-wебуи ишлаётганда ъ--api-аутҳъ байроғини қўшинг",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Стабил-диффусион-wебуи ишлаётганда ъ--api-аутҳъ байроғини қўшинг",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Стабил-диффусион-wебуи ишлатилаётганда ъ--апиъ байроғини қўшинг",
|
"Include `--api` flag when running stable-diffusion-webui": "Стабил-диффусион-wебуи ишлатилаётганда ъ--апиъ байроғини қўшинг",
|
||||||
"Includes SharePoint": "SharePoint ни ўз ичига олади",
|
"Includes SharePoint": "SharePoint ни ўз ичига олади",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Алгоритм яратилган матндан олинган фикр-мулоҳазага қанчалик тез жавоб беришига таъсир қилади. Пастроқ ўрганиш тезлиги созлашнинг секинлашишига олиб келади, юқори ўрганиш тезлиги эса алгоритмни янада сезгир қилади.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Алгоритм яратилган матндан олинган фикр-мулоҳазага қанчалик тез жавоб беришига таъсир қилади. Пастроқ ўрганиш тезлиги созлашнинг секинлашишига олиб келади, юқори ўрганиш тезлиги эса алгоритмни янада сезгир қилади.",
|
||||||
"Info": "Маълумот",
|
"Info": "Маълумот",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "Янги функсия",
|
"New Function": "Янги функсия",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "Янги эслатма",
|
|
||||||
"New Password": "Янги парол",
|
"New Password": "Янги парол",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (юклаб олиш) URL манзилини киритинг",
|
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (юклаб олиш) URL манзилини киритинг",
|
||||||
"Uh-oh! There was an issue with the response.": "Диққат! Жавобда муаммо юз берди.",
|
"Uh-oh! There was an issue with the response.": "Диққат! Жавобда муаммо юз берди.",
|
||||||
"UI": "Фойдаланувчи интерфейси",
|
"UI": "Фойдаланувчи интерфейси",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Ҳаммасини архивдан чиқариш",
|
"Unarchive All": "Ҳаммасини архивдан чиқариш",
|
||||||
"Unarchive All Archived Chats": "Барча архивланган суҳбатларни архивдан чиқариш",
|
"Unarchive All Archived Chats": "Барча архивланган суҳбатларни архивдан чиқариш",
|
||||||
"Unarchive Chat": "Чатни архивдан чиқариш",
|
"Unarchive Chat": "Чатни архивдан чиқариш",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "Овоз",
|
"Voice": "Овоз",
|
||||||
"Voice Input": "Овозли киритиш",
|
"Voice Input": "Овозли киритиш",
|
||||||
"Voice mode": "Овоз режими",
|
"Voice mode": "Овоз режими",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Огоҳлантириш",
|
"Warning": "Огоҳлантириш",
|
||||||
"Warning:": "Огоҳлантириш:",
|
"Warning:": "Огоҳлантириш:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Огоҳлантириш: Буни ёқиш фойдаланувчиларга серверга ихтиёрий кодни юклаш имконини беради.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Огоҳлантириш: Буни ёқиш фойдаланувчиларга серверга ихтиёрий кодни юклаш имконини беради.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Ushbu sozlamalarni o'zgartirish barcha foydalanuvchilarga universal tarzda qo'llaniladi.",
|
"Adjusting these settings will apply changes universally to all users.": "Ushbu sozlamalarni o'zgartirish barcha foydalanuvchilarga universal tarzda qo'llaniladi.",
|
||||||
"admin": "admin",
|
"admin": "admin",
|
||||||
"Admin": "Admin",
|
"Admin": "Admin",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API kaliti yaratildi.",
|
"API Key created.": "API kaliti yaratildi.",
|
||||||
"API Key Endpoint Restrictions": "API kalit so'nggi nuqta cheklovlari",
|
"API Key Endpoint Restrictions": "API kalit so'nggi nuqta cheklovlari",
|
||||||
"API keys": "API kalitlari",
|
"API keys": "API kalitlari",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "API versiyasi",
|
"API Version": "API versiyasi",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "Datalab Marker API",
|
"Datalab Marker API": "Datalab Marker API",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "dekabr",
|
"December": "dekabr",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Standart",
|
"Default": "Standart",
|
||||||
"Default (Open AI)": "Standart (Ochiq AI)",
|
"Default (Open AI)": "Standart (Ochiq AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "O'rnatish modeli",
|
"Embedding Model": "O'rnatish modeli",
|
||||||
"Embedding Model Engine": "Dvigatel modelini o'rnatish",
|
"Embedding Model Engine": "Dvigatel modelini o'rnatish",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Oʻrnatish modeli “{{embedding_model}}”ga oʻrnatildi",
|
"Embedding model set to \"{{embedding_model}}\"": "Oʻrnatish modeli “{{embedding_model}}”ga oʻrnatildi",
|
||||||
"Enable API Key": "API kalitini yoqish",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Chat xabarlari uchun avtomatik to‘ldirishni yaratishni yoqing",
|
"Enable autocomplete generation for chat messages": "Chat xabarlari uchun avtomatik to‘ldirishni yaratishni yoqing",
|
||||||
"Enable Code Execution": "Kod bajarilishini yoqing",
|
"Enable Code Execution": "Kod bajarilishini yoqing",
|
||||||
"Enable Code Interpreter": "Kod tarjimonini yoqing",
|
"Enable Code Interpreter": "Kod tarjimonini yoqing",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "Oxirgi nuqta URL",
|
"Endpoint URL": "Oxirgi nuqta URL",
|
||||||
"Enforce Temporary Chat": "Vaqtinchalik suhbatni joriy qilish",
|
"Enforce Temporary Chat": "Vaqtinchalik suhbatni joriy qilish",
|
||||||
"Enhance": "Yaxshilash",
|
"Enhance": "Yaxshilash",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV faylingiz quyidagi tartibda 4 ta ustundan iboratligiga ishonch hosil qiling: Ism, Elektron pochta, Parol, Rol.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV faylingiz quyidagi tartibda 4 ta ustundan iboratligiga ishonch hosil qiling: Ism, Elektron pochta, Parol, Rol.",
|
||||||
"Enter {{role}} message here": "Bu yerga {{role}} xabarini kiriting",
|
"Enter {{role}} message here": "Bu yerga {{role}} xabarini kiriting",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "LLMlar eslab qolishlari uchun oʻzingiz haqingizda maʼlumot kiriting",
|
"Enter a detail about yourself for your LLMs to recall": "LLMlar eslab qolishlari uchun oʻzingiz haqingizda maʼlumot kiriting",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Docling Server URL manzilini kiriting",
|
"Enter Docling Server URL": "Docling Server URL manzilini kiriting",
|
||||||
"Enter Document Intelligence Endpoint": "Document Intelligence Endpoint-ni kiriting",
|
"Enter Document Intelligence Endpoint": "Document Intelligence Endpoint-ni kiriting",
|
||||||
"Enter Document Intelligence Key": "Hujjatning razvedka kalitini kiriting",
|
"Enter Document Intelligence Key": "Hujjatning razvedka kalitini kiriting",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Domenlarni vergul bilan ajrating (masalan, example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Exa API kalitini kiriting",
|
"Enter Exa API Key": "Exa API kalitini kiriting",
|
||||||
"Enter External Document Loader API Key": "Tashqi hujjat yuklovchi API kalitini kiriting",
|
"Enter External Document Loader API Key": "Tashqi hujjat yuklovchi API kalitini kiriting",
|
||||||
"Enter External Document Loader URL": "Tashqi hujjat yuklovchi URL manzilini kiriting",
|
"Enter External Document Loader URL": "Tashqi hujjat yuklovchi URL manzilini kiriting",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Chatni eksport qilish (.json)",
|
"Export chat (.json)": "Chatni eksport qilish (.json)",
|
||||||
"Export Chats": "Chatlarni eksport qilish",
|
"Export Chats": "Chatlarni eksport qilish",
|
||||||
"Export Config to JSON File": "Konfiguratsiyani JSON fayliga eksport qiling",
|
"Export Config to JSON File": "Konfiguratsiyani JSON fayliga eksport qiling",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Oldindan sozlamalarni eksport qilish",
|
"Export Presets": "Oldindan sozlamalarni eksport qilish",
|
||||||
"Export Prompt Suggestions": "Eksport bo'yicha takliflar",
|
"Export Prompt Suggestions": "Eksport bo'yicha takliflar",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "CSV ga eksport qilish",
|
"Export to CSV": "CSV ga eksport qilish",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "Tashqi",
|
"External": "Tashqi",
|
||||||
"External Document Loader URL required.": "Tashqi hujjat yuklovchi URL manzili talab qilinadi.",
|
"External Document Loader URL required.": "Tashqi hujjat yuklovchi URL manzili talab qilinadi.",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Chatlarni import qilish",
|
"Import Chats": "Chatlarni import qilish",
|
||||||
"Import Config from JSON File": "JSON faylidan konfiguratsiyani import qiling",
|
"Import Config from JSON File": "JSON faylidan konfiguratsiyani import qiling",
|
||||||
"Import From Link": "Havoladan import qilish",
|
"Import From Link": "Havoladan import qilish",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "Eslatmalarni import qilish",
|
"Import Notes": "Eslatmalarni import qilish",
|
||||||
"Import Presets": "Oldindan sozlamalarni import qilish",
|
"Import Presets": "Oldindan sozlamalarni import qilish",
|
||||||
"Import Prompt Suggestions": "Import bo'yicha takliflar",
|
"Import Prompt Suggestions": "Import bo'yicha takliflar",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Muhim yangilanish",
|
"Important Update": "Muhim yangilanish",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "O'z ichiga oladi",
|
"Include": "O'z ichiga oladi",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Stabil-diffusion-webui ishlayotganda `--api-auth` bayrog'ini qo'shing",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Stabil-diffusion-webui ishlayotganda `--api-auth` bayrog'ini qo'shing",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Stabil-diffusion-webui ishlatilayotganda `--api` bayrog'ini qo'shing",
|
"Include `--api` flag when running stable-diffusion-webui": "Stabil-diffusion-webui ishlatilayotganda `--api` bayrog'ini qo'shing",
|
||||||
"Includes SharePoint": "SharePoint o‘z ichiga oladi",
|
"Includes SharePoint": "SharePoint o‘z ichiga oladi",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Algoritm yaratilgan matndan olingan fikr-mulohazaga qanchalik tez javob berishiga ta'sir qiladi. Pastroq o'rganish tezligi sozlashning sekinlashishiga olib keladi, yuqori o'rganish tezligi esa algoritmni yanada sezgir qiladi.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Algoritm yaratilgan matndan olingan fikr-mulohazaga qanchalik tez javob berishiga ta'sir qiladi. Pastroq o'rganish tezligi sozlashning sekinlashishiga olib keladi, yuqori o'rganish tezligi esa algoritmni yanada sezgir qiladi.",
|
||||||
"Info": "Ma'lumot",
|
"Info": "Ma'lumot",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "Yangi funksiya",
|
"New Function": "Yangi funksiya",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "Yangi eslatma",
|
|
||||||
"New Password": "Yangi parol",
|
"New Password": "Yangi parol",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1642,6 +1652,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (Yuklab olish) URL manzilini kiriting",
|
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (Yuklab olish) URL manzilini kiriting",
|
||||||
"Uh-oh! There was an issue with the response.": "Uh-oh! Javobda muammo yuzaga keldi.",
|
"Uh-oh! There was an issue with the response.": "Uh-oh! Javobda muammo yuzaga keldi.",
|
||||||
"UI": "UI",
|
"UI": "UI",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Hammasini arxivdan chiqarish",
|
"Unarchive All": "Hammasini arxivdan chiqarish",
|
||||||
"Unarchive All Archived Chats": "Barcha arxivlangan suhbatlarni arxivdan chiqarish",
|
"Unarchive All Archived Chats": "Barcha arxivlangan suhbatlarni arxivdan chiqarish",
|
||||||
"Unarchive Chat": "Chatni arxivdan chiqarish",
|
"Unarchive Chat": "Chatni arxivdan chiqarish",
|
||||||
|
|
@ -1715,6 +1726,8 @@
|
||||||
"Voice": "Ovoz",
|
"Voice": "Ovoz",
|
||||||
"Voice Input": "Ovozli kiritish",
|
"Voice Input": "Ovozli kiritish",
|
||||||
"Voice mode": "Ovoz rejimi",
|
"Voice mode": "Ovoz rejimi",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Ogohlantirish",
|
"Warning": "Ogohlantirish",
|
||||||
"Warning:": "Ogohlantirish:",
|
"Warning:": "Ogohlantirish:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Ogohlantirish: Buni yoqish foydalanuvchilarga serverga ixtiyoriy kodni yuklash imkonini beradi.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Ogohlantirish: Buni yoqish foydalanuvchilarga serverga ixtiyoriy kodni yuklash imkonini beradi.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "",
|
"Additional Config": "",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "",
|
||||||
"Additional Parameters": "",
|
"Additional Parameters": "",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "Các thay đổi cài đặt này sẽ áp dụng cho tất cả người sử dụng.",
|
"Adjusting these settings will apply changes universally to all users.": "Các thay đổi cài đặt này sẽ áp dụng cho tất cả người sử dụng.",
|
||||||
"admin": "quản trị viên",
|
"admin": "quản trị viên",
|
||||||
"Admin": "Quản trị",
|
"Admin": "Quản trị",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "Khóa API đã tạo",
|
"API Key created.": "Khóa API đã tạo",
|
||||||
"API Key Endpoint Restrictions": "Hạn chế Endpoint Khóa API",
|
"API Key Endpoint Restrictions": "Hạn chế Endpoint Khóa API",
|
||||||
"API keys": "API Keys",
|
"API keys": "API Keys",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "",
|
"API Mode": "",
|
||||||
"API Version": "",
|
"API Version": "",
|
||||||
"API Version is required": "",
|
"API Version is required": "",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "",
|
"Datalab Marker API": "",
|
||||||
"DD/MM/YYYY": "",
|
"DD/MM/YYYY": "",
|
||||||
"December": "Tháng 12",
|
"December": "Tháng 12",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "",
|
"Deepgram": "",
|
||||||
"Default": "Mặc định",
|
"Default": "Mặc định",
|
||||||
"Default (Open AI)": "Mặc định (Open AI)",
|
"Default (Open AI)": "Mặc định (Open AI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "Mô hình embedding",
|
"Embedding Model": "Mô hình embedding",
|
||||||
"Embedding Model Engine": "Trình xử lý embedding",
|
"Embedding Model Engine": "Trình xử lý embedding",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "Mô hình embedding đã được thiết lập thành \"{{embedding_model}}\"",
|
"Embedding model set to \"{{embedding_model}}\"": "Mô hình embedding đã được thiết lập thành \"{{embedding_model}}\"",
|
||||||
"Enable API Key": "Bật Khóa API",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "Bật tạo tự động hoàn thành cho tin nhắn chat",
|
"Enable autocomplete generation for chat messages": "Bật tạo tự động hoàn thành cho tin nhắn chat",
|
||||||
"Enable Code Execution": "Bật Thực thi Mã",
|
"Enable Code Execution": "Bật Thực thi Mã",
|
||||||
"Enable Code Interpreter": "Bật Trình thông dịch Mã",
|
"Enable Code Interpreter": "Bật Trình thông dịch Mã",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "",
|
"Endpoint URL": "",
|
||||||
"Enforce Temporary Chat": "Bắt buộc Chat nháp",
|
"Enforce Temporary Chat": "Bắt buộc Chat nháp",
|
||||||
"Enhance": "",
|
"Enhance": "",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Đảm bảo tệp CSV của bạn bao gồm 4 cột theo thứ tự sau: Name, Email, Password, Role.",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Đảm bảo tệp CSV của bạn bao gồm 4 cột theo thứ tự sau: Name, Email, Password, Role.",
|
||||||
"Enter {{role}} message here": "Nhập yêu cầu của {{role}} ở đây",
|
"Enter {{role}} message here": "Nhập yêu cầu của {{role}} ở đây",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "Nhập chi tiết về bản thân của bạn để LLMs có thể nhớ",
|
"Enter a detail about yourself for your LLMs to recall": "Nhập chi tiết về bản thân của bạn để LLMs có thể nhớ",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "Nhập URL Máy chủ Docling",
|
"Enter Docling Server URL": "Nhập URL Máy chủ Docling",
|
||||||
"Enter Document Intelligence Endpoint": "Nhập Endpoint Trí tuệ Tài liệu",
|
"Enter Document Intelligence Endpoint": "Nhập Endpoint Trí tuệ Tài liệu",
|
||||||
"Enter Document Intelligence Key": "Nhập Khóa Trí tuệ Tài liệu",
|
"Enter Document Intelligence Key": "Nhập Khóa Trí tuệ Tài liệu",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "Nhập các tên miền được phân tách bằng dấu phẩy (ví dụ: example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "Nhập Khóa API Exa",
|
"Enter Exa API Key": "Nhập Khóa API Exa",
|
||||||
"Enter External Document Loader API Key": "",
|
"Enter External Document Loader API Key": "",
|
||||||
"Enter External Document Loader URL": "",
|
"Enter External Document Loader URL": "",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "Tải chat (.json)",
|
"Export chat (.json)": "Tải chat (.json)",
|
||||||
"Export Chats": "Tải nội dung chat về máy",
|
"Export Chats": "Tải nội dung chat về máy",
|
||||||
"Export Config to JSON File": "Xuất Cấu hình ra Tệp JSON",
|
"Export Config to JSON File": "Xuất Cấu hình ra Tệp JSON",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "Xuất các Preset",
|
"Export Presets": "Xuất các Preset",
|
||||||
"Export Prompt Suggestions": "",
|
"Export Prompt Suggestions": "",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "Xuất ra CSV",
|
"Export to CSV": "Xuất ra CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "",
|
"Export Users": "",
|
||||||
"External": "Bên ngoài",
|
"External": "Bên ngoài",
|
||||||
"External Document Loader URL required.": "",
|
"External Document Loader URL required.": "",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "Nạp lại nội dung chat",
|
"Import Chats": "Nạp lại nội dung chat",
|
||||||
"Import Config from JSON File": "Nhập Cấu hình từ Tệp JSON",
|
"Import Config from JSON File": "Nhập Cấu hình từ Tệp JSON",
|
||||||
"Import From Link": "",
|
"Import From Link": "",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "",
|
"Import Notes": "",
|
||||||
"Import Presets": "Nhập các Preset",
|
"Import Presets": "Nhập các Preset",
|
||||||
"Import Prompt Suggestions": "",
|
"Import Prompt Suggestions": "",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "",
|
"Import successful": "",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "Bản cập nhật quan trọng",
|
"Important Update": "Bản cập nhật quan trọng",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "",
|
"In order to force OCR, performing OCR must be enabled.": "",
|
||||||
"Include": "Bao gồm",
|
"Include": "Bao gồm",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Bao gồm cờ `--api-auth` khi chạy stable-diffusion-webui",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "Bao gồm cờ `--api-auth` khi chạy stable-diffusion-webui",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "Bao gồm flag `--api` khi chạy stable-diffusion-webui",
|
"Include `--api` flag when running stable-diffusion-webui": "Bao gồm flag `--api` khi chạy stable-diffusion-webui",
|
||||||
"Includes SharePoint": "Bao gồm SharePoint",
|
"Includes SharePoint": "Bao gồm SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Ảnh hưởng đến tốc độ thuật toán phản hồi lại phản hồi từ văn bản được tạo. Tốc độ học thấp hơn sẽ dẫn đến các điều chỉnh chậm hơn, trong khi tốc độ học cao hơn sẽ làm cho thuật toán phản ứng nhanh hơn.",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "Ảnh hưởng đến tốc độ thuật toán phản hồi lại phản hồi từ văn bản được tạo. Tốc độ học thấp hơn sẽ dẫn đến các điều chỉnh chậm hơn, trong khi tốc độ học cao hơn sẽ làm cho thuật toán phản ứng nhanh hơn.",
|
||||||
"Info": "Thông tin",
|
"Info": "Thông tin",
|
||||||
"Initials": "",
|
"Initials": "",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "",
|
"New Function": "",
|
||||||
"New Knowledge": "",
|
"New Knowledge": "",
|
||||||
"New Model": "",
|
"New Model": "",
|
||||||
"New Note": "",
|
|
||||||
"New Password": "Mật khẩu mới",
|
"New Password": "Mật khẩu mới",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
"New Temporary Chat": "",
|
"New Temporary Chat": "",
|
||||||
|
|
@ -1641,6 +1651,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "Nhập URL Hugging Face Resolve (Tải xuống)",
|
"Type Hugging Face Resolve (Download) URL": "Nhập URL Hugging Face Resolve (Tải xuống)",
|
||||||
"Uh-oh! There was an issue with the response.": "Ôi! Đã có sự cố với phản hồi.",
|
"Uh-oh! There was an issue with the response.": "Ôi! Đã có sự cố với phản hồi.",
|
||||||
"UI": "Giao diện",
|
"UI": "Giao diện",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "Bỏ lưu trữ Tất cả",
|
"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 All Archived Chats": "Bỏ lưu trữ Tất cả Chat Đã Lưu trữ",
|
||||||
"Unarchive Chat": "Bỏ lưu trữ Chat",
|
"Unarchive Chat": "Bỏ lưu trữ Chat",
|
||||||
|
|
@ -1714,6 +1725,8 @@
|
||||||
"Voice": "Giọng nói",
|
"Voice": "Giọng nói",
|
||||||
"Voice Input": "Nhập liệu bằng Giọng nói",
|
"Voice Input": "Nhập liệu bằng Giọng nói",
|
||||||
"Voice mode": "",
|
"Voice mode": "",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "Cảnh báo",
|
"Warning": "Cảnh báo",
|
||||||
"Warning:": "Cảnh báo:",
|
"Warning:": "Cảnh báo:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Cảnh báo: Bật tính năng này sẽ cho phép người dùng tải lên mã tùy ý trên máy chủ.",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "Cảnh báo: Bật tính năng này sẽ cho phép người dùng tải lên mã tùy ý trên máy chủ.",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "额外配置项",
|
"Additional Config": "额外配置项",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Datalab Marker 的额外配置项,可以填写一个包含键值对的 JSON 字符串。例如:{\"key\": \"value\"}。支持的键包括:disable_links、keep_pageheader_in_output、keep_pagefooter_in_output、filter_blank_pages、drop_repeated_text、layout_coverage_threshold、merge_threshold、height_tolerance、gap_threshold、image_threshold、min_line_length、level_count 和 default_level。",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Datalab Marker 的额外配置项,可以填写一个包含键值对的 JSON 字符串。例如:{\"key\": \"value\"}。支持的键包括:disable_links、keep_pageheader_in_output、keep_pagefooter_in_output、filter_blank_pages、drop_repeated_text、layout_coverage_threshold、merge_threshold、height_tolerance、gap_threshold、image_threshold、min_line_length、level_count 和 default_level。",
|
||||||
"Additional Parameters": "额外参数",
|
"Additional Parameters": "额外参数",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "调整这些设置将会对所有用户生效",
|
"Adjusting these settings will apply changes universally to all users.": "调整这些设置将会对所有用户生效",
|
||||||
"admin": "管理员",
|
"admin": "管理员",
|
||||||
"Admin": "管理员",
|
"Admin": "管理员",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API 密钥已创建。",
|
"API Key created.": "API 密钥已创建。",
|
||||||
"API Key Endpoint Restrictions": "API 密钥端点限制",
|
"API Key Endpoint Restrictions": "API 密钥端点限制",
|
||||||
"API keys": "API 密钥",
|
"API keys": "API 密钥",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "API 模式",
|
"API Mode": "API 模式",
|
||||||
"API Version": "API 版本",
|
"API Version": "API 版本",
|
||||||
"API Version is required": "API 版本是必填项。",
|
"API Version is required": "API 版本是必填项。",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "Datalab Marker API",
|
"Datalab Marker API": "Datalab Marker API",
|
||||||
"DD/MM/YYYY": "DD/MM/YYYY",
|
"DD/MM/YYYY": "DD/MM/YYYY",
|
||||||
"December": "十二月",
|
"December": "十二月",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "Deepgram",
|
"Deepgram": "Deepgram",
|
||||||
"Default": "默认",
|
"Default": "默认",
|
||||||
"Default (Open AI)": "默认 (OpenAI)",
|
"Default (Open AI)": "默认 (OpenAI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "嵌入模型",
|
"Embedding Model": "嵌入模型",
|
||||||
"Embedding Model Engine": "嵌入模型引擎",
|
"Embedding Model Engine": "嵌入模型引擎",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "嵌入模型设置为 “{{embedding_model}}”",
|
"Embedding model set to \"{{embedding_model}}\"": "嵌入模型设置为 “{{embedding_model}}”",
|
||||||
"Enable API Key": "启用接口密钥",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "启用对话输入框内容自动补全",
|
"Enable autocomplete generation for chat messages": "启用对话输入框内容自动补全",
|
||||||
"Enable Code Execution": "启用代码执行",
|
"Enable Code Execution": "启用代码执行",
|
||||||
"Enable Code Interpreter": "启用代码解释器",
|
"Enable Code Interpreter": "启用代码解释器",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "接口地址",
|
"Endpoint URL": "接口地址",
|
||||||
"Enforce Temporary Chat": "强制临时对话",
|
"Enforce Temporary Chat": "强制临时对话",
|
||||||
"Enhance": "润色",
|
"Enhance": "润色",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "确保您的 CSV 文件按以下顺序包含 4 列:姓名、电子邮箱、密码、角色。",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "确保您的 CSV 文件按以下顺序包含 4 列:姓名、电子邮箱、密码、角色。",
|
||||||
"Enter {{role}} message here": "在此处输入 {{role}} 的对话内容",
|
"Enter {{role}} message here": "在此处输入 {{role}} 的对话内容",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "输入关于您的详细信息,以便大语言模型记住这些内容。",
|
"Enter a detail about yourself for your LLMs to recall": "输入关于您的详细信息,以便大语言模型记住这些内容。",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "输入 Docling 服务器接口地址",
|
"Enter Docling Server URL": "输入 Docling 服务器接口地址",
|
||||||
"Enter Document Intelligence Endpoint": "输入 Document Intelligence 端点",
|
"Enter Document Intelligence Endpoint": "输入 Document Intelligence 端点",
|
||||||
"Enter Document Intelligence Key": "输入 Document Intelligence 密钥",
|
"Enter Document Intelligence Key": "输入 Document Intelligence 密钥",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "输入域名,多个域名用逗号分隔(例如:example.com,site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "输入 Exa API 密钥",
|
"Enter Exa API Key": "输入 Exa API 密钥",
|
||||||
"Enter External Document Loader API Key": "输入外部文档加载器接口密钥",
|
"Enter External Document Loader API Key": "输入外部文档加载器接口密钥",
|
||||||
"Enter External Document Loader URL": "输入外部文档加载器接口地址",
|
"Enter External Document Loader URL": "输入外部文档加载器接口地址",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "JSON 文件 (.json)",
|
"Export chat (.json)": "JSON 文件 (.json)",
|
||||||
"Export Chats": "导出对话",
|
"Export Chats": "导出对话",
|
||||||
"Export Config to JSON File": "将配置信息导出为 JSON 文件",
|
"Export Config to JSON File": "将配置信息导出为 JSON 文件",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "导出预设",
|
"Export Presets": "导出预设",
|
||||||
"Export Prompt Suggestions": "导出提示词建议",
|
"Export Prompt Suggestions": "导出提示词建议",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "导出到 CSV",
|
"Export to CSV": "导出到 CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "导出所有用户信息",
|
"Export Users": "导出所有用户信息",
|
||||||
"External": "外部",
|
"External": "外部",
|
||||||
"External Document Loader URL required.": "需要外部文档加载器接口地址",
|
"External Document Loader URL required.": "需要外部文档加载器接口地址",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "导入对话记录",
|
"Import Chats": "导入对话记录",
|
||||||
"Import Config from JSON File": "从 JSON 文件中导入配置信息",
|
"Import Config from JSON File": "从 JSON 文件中导入配置信息",
|
||||||
"Import From Link": "从链接导入",
|
"Import From Link": "从链接导入",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "导入笔记",
|
"Import Notes": "导入笔记",
|
||||||
"Import Presets": "导入预设",
|
"Import Presets": "导入预设",
|
||||||
"Import Prompt Suggestions": "导入提示词建议",
|
"Import Prompt Suggestions": "导入提示词建议",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "导入成功",
|
"Import successful": "导入成功",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "重要更新",
|
"Important Update": "重要更新",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "开启“强制文字识别”选项需要先开启“文字识别“选项。",
|
"In order to force OCR, performing OCR must be enabled.": "开启“强制文字识别”选项需要先开启“文字识别“选项。",
|
||||||
"Include": "包括",
|
"Include": "包括",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "运行 stable-diffusion-webui 时包含 `--api-auth` 参数",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "运行 stable-diffusion-webui 时包含 `--api-auth` 参数",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "运行 stable-diffusion-webui 时包含 `--api` 参数",
|
"Include `--api` flag when running stable-diffusion-webui": "运行 stable-diffusion-webui 时包含 `--api` 参数",
|
||||||
"Includes SharePoint": "包含 SharePoint",
|
"Includes SharePoint": "包含 SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "影响算法对生成文本反馈的响应速度。较低的学习率会导致调整过程较慢,而较高的学习率将使算法反应更灵敏。",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "影响算法对生成文本反馈的响应速度。较低的学习率会导致调整过程较慢,而较高的学习率将使算法反应更灵敏。",
|
||||||
"Info": "信息",
|
"Info": "信息",
|
||||||
"Initials": "姓名缩写",
|
"Initials": "姓名缩写",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "新函数",
|
"New Function": "新函数",
|
||||||
"New Knowledge": "创建知识库",
|
"New Knowledge": "创建知识库",
|
||||||
"New Model": "创建模型",
|
"New Model": "创建模型",
|
||||||
"New Note": "新笔记",
|
|
||||||
"New Password": "新密码",
|
"New Password": "新密码",
|
||||||
"New Prompt": "创建提示词",
|
"New Prompt": "创建提示词",
|
||||||
"New Temporary Chat": "创建临时对话",
|
"New Temporary Chat": "创建临时对话",
|
||||||
|
|
@ -1641,6 +1651,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "输入 Hugging Face 模型解析(下载)地址",
|
"Type Hugging Face Resolve (Download) URL": "输入 Hugging Face 模型解析(下载)地址",
|
||||||
"Uh-oh! There was an issue with the response.": "啊哦!回复有问题",
|
"Uh-oh! There was an issue with the response.": "啊哦!回复有问题",
|
||||||
"UI": "界面",
|
"UI": "界面",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "取消所有存档",
|
"Unarchive All": "取消所有存档",
|
||||||
"Unarchive All Archived Chats": "取消所有已存档的对话",
|
"Unarchive All Archived Chats": "取消所有已存档的对话",
|
||||||
"Unarchive Chat": "取消存档当前对话",
|
"Unarchive Chat": "取消存档当前对话",
|
||||||
|
|
@ -1714,6 +1725,8 @@
|
||||||
"Voice": "语音",
|
"Voice": "语音",
|
||||||
"Voice Input": "语音输入",
|
"Voice Input": "语音输入",
|
||||||
"Voice mode": "语音模式",
|
"Voice mode": "语音模式",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "警告",
|
"Warning": "警告",
|
||||||
"Warning:": "警告:",
|
"Warning:": "警告:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "警告:启用此功能将允许用户在服务器上上传任意代码",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "警告:启用此功能将允许用户在服务器上上传任意代码",
|
||||||
|
|
|
||||||
|
|
@ -66,6 +66,7 @@
|
||||||
"Additional Config": "額外設定",
|
"Additional Config": "額外設定",
|
||||||
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Datalab Marker 的額外設定選項,可以填寫一個包含鍵值對的 JSON 字串。例如:{\"key\": \"value\"}。支援的鍵包括:disable_links、keep_pageheader_in_output、keep_pagefooter_in_output、filter_blank_pages、drop_repeated_text、layout_coverage_threshold、merge_threshold、height_tolerance、gap_threshold、image_threshold、min_line_length、level_count 和 default_level。",
|
"Additional configuration options for marker. This should be a JSON string with key-value pairs. For example, '{\"key\": \"value\"}'. Supported keys include: disable_links, keep_pageheader_in_output, keep_pagefooter_in_output, filter_blank_pages, drop_repeated_text, layout_coverage_threshold, merge_threshold, height_tolerance, gap_threshold, image_threshold, min_line_length, level_count, default_level": "Datalab Marker 的額外設定選項,可以填寫一個包含鍵值對的 JSON 字串。例如:{\"key\": \"value\"}。支援的鍵包括:disable_links、keep_pageheader_in_output、keep_pagefooter_in_output、filter_blank_pages、drop_repeated_text、layout_coverage_threshold、merge_threshold、height_tolerance、gap_threshold、image_threshold、min_line_length、level_count 和 default_level。",
|
||||||
"Additional Parameters": "額外參數",
|
"Additional Parameters": "額外參數",
|
||||||
|
"Adds filenames, titles, sections, and snippets into the BM25 text to improve lexical recall.": "",
|
||||||
"Adjusting these settings will apply changes universally to all users.": "調整這些設定將會影響所有使用者。",
|
"Adjusting these settings will apply changes universally to all users.": "調整這些設定將會影響所有使用者。",
|
||||||
"admin": "管理員",
|
"admin": "管理員",
|
||||||
"Admin": "管理員",
|
"Admin": "管理員",
|
||||||
|
|
@ -130,6 +131,7 @@
|
||||||
"API Key created.": "API 金鑰已建立。",
|
"API Key created.": "API 金鑰已建立。",
|
||||||
"API Key Endpoint Restrictions": "API 金鑰端點限制",
|
"API Key Endpoint Restrictions": "API 金鑰端點限制",
|
||||||
"API keys": "API 金鑰",
|
"API keys": "API 金鑰",
|
||||||
|
"API Keys": "",
|
||||||
"API Mode": "API 模式",
|
"API Mode": "API 模式",
|
||||||
"API Version": "API 版本",
|
"API Version": "API 版本",
|
||||||
"API Version is required": "API 版本為必填項目",
|
"API Version is required": "API 版本為必填項目",
|
||||||
|
|
@ -377,6 +379,7 @@
|
||||||
"Datalab Marker API": "Datalab Marker API",
|
"Datalab Marker API": "Datalab Marker API",
|
||||||
"DD/MM/YYYY": "DD/MM/YYYY",
|
"DD/MM/YYYY": "DD/MM/YYYY",
|
||||||
"December": "12 月",
|
"December": "12 月",
|
||||||
|
"Decrease UI Scale": "",
|
||||||
"Deepgram": "Deepgram",
|
"Deepgram": "Deepgram",
|
||||||
"Default": "預設",
|
"Default": "預設",
|
||||||
"Default (Open AI)": "預設 (OpenAI)",
|
"Default (Open AI)": "預設 (OpenAI)",
|
||||||
|
|
@ -517,7 +520,7 @@
|
||||||
"Embedding Model": "嵌入模型",
|
"Embedding Model": "嵌入模型",
|
||||||
"Embedding Model Engine": "嵌入模型引擎",
|
"Embedding Model Engine": "嵌入模型引擎",
|
||||||
"Embedding model set to \"{{embedding_model}}\"": "嵌入模型已設定為「{{embedding_model}}」",
|
"Embedding model set to \"{{embedding_model}}\"": "嵌入模型已設定為「{{embedding_model}}」",
|
||||||
"Enable API Key": "啟用 API 金鑰",
|
"Enable API Keys": "",
|
||||||
"Enable autocomplete generation for chat messages": "啟用對話訊息的自動完成",
|
"Enable autocomplete generation for chat messages": "啟用對話訊息的自動完成",
|
||||||
"Enable Code Execution": "啟用程式碼執行",
|
"Enable Code Execution": "啟用程式碼執行",
|
||||||
"Enable Code Interpreter": "啟用程式碼直譯器",
|
"Enable Code Interpreter": "啟用程式碼直譯器",
|
||||||
|
|
@ -533,6 +536,7 @@
|
||||||
"Endpoint URL": "端點 URL",
|
"Endpoint URL": "端點 URL",
|
||||||
"Enforce Temporary Chat": "強制使用臨時對話",
|
"Enforce Temporary Chat": "強制使用臨時對話",
|
||||||
"Enhance": "增強",
|
"Enhance": "增強",
|
||||||
|
"Enrich Hybrid Search Text": "",
|
||||||
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "請確認您的 CSV 檔案包含以下 4 個欄位,並按照此順序排列:姓名、電子郵件、密碼、角色。",
|
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "請確認您的 CSV 檔案包含以下 4 個欄位,並按照此順序排列:姓名、電子郵件、密碼、角色。",
|
||||||
"Enter {{role}} message here": "在此輸入 {{role}} 訊息",
|
"Enter {{role}} message here": "在此輸入 {{role}} 訊息",
|
||||||
"Enter a detail about yourself for your LLMs to recall": "輸入有關您的詳細資訊,讓您的大型語言模型可以回想起來",
|
"Enter a detail about yourself for your LLMs to recall": "輸入有關您的詳細資訊,讓您的大型語言模型可以回想起來",
|
||||||
|
|
@ -563,7 +567,7 @@
|
||||||
"Enter Docling Server URL": "請輸入 Docling 伺服器 URL",
|
"Enter Docling Server URL": "請輸入 Docling 伺服器 URL",
|
||||||
"Enter Document Intelligence Endpoint": "輸入 Document Intelligence 端點",
|
"Enter Document Intelligence Endpoint": "輸入 Document Intelligence 端點",
|
||||||
"Enter Document Intelligence Key": "輸入 Document Intelligence 金鑰",
|
"Enter Document Intelligence Key": "輸入 Document Intelligence 金鑰",
|
||||||
"Enter domains separated by commas (e.g., example.com,site.org)": "輸入網域,以逗號分隔(例如:example.com, site.org)",
|
"Enter domains separated by commas (e.g., example.com,site.org,!excludedsite.com)": "",
|
||||||
"Enter Exa API Key": "輸入 Exa API 金鑰",
|
"Enter Exa API Key": "輸入 Exa API 金鑰",
|
||||||
"Enter External Document Loader API Key": "請輸入外部文件載入器 API 金鑰",
|
"Enter External Document Loader API Key": "請輸入外部文件載入器 API 金鑰",
|
||||||
"Enter External Document Loader URL": "請輸入外部文件載入器 URL",
|
"Enter External Document Loader URL": "請輸入外部文件載入器 URL",
|
||||||
|
|
@ -685,9 +689,12 @@
|
||||||
"Export chat (.json)": "匯出對話紀錄(.json)",
|
"Export chat (.json)": "匯出對話紀錄(.json)",
|
||||||
"Export Chats": "匯出對話紀錄",
|
"Export Chats": "匯出對話紀錄",
|
||||||
"Export Config to JSON File": "將設定匯出為 JSON 檔案",
|
"Export Config to JSON File": "將設定匯出為 JSON 檔案",
|
||||||
|
"Export Models": "",
|
||||||
"Export Presets": "匯出預設集",
|
"Export Presets": "匯出預設集",
|
||||||
"Export Prompt Suggestions": "匯出提示建議",
|
"Export Prompt Suggestions": "匯出提示建議",
|
||||||
|
"Export Prompts": "",
|
||||||
"Export to CSV": "匯出為 CSV",
|
"Export to CSV": "匯出為 CSV",
|
||||||
|
"Export Tools": "",
|
||||||
"Export Users": "匯出所有使用者資訊",
|
"Export Users": "匯出所有使用者資訊",
|
||||||
"External": "外部",
|
"External": "外部",
|
||||||
"External Document Loader URL required.": "需要提供外部文件載入器 URL。",
|
"External Document Loader URL required.": "需要提供外部文件載入器 URL。",
|
||||||
|
|
@ -864,16 +871,20 @@
|
||||||
"Import Chats": "匯入對話紀錄",
|
"Import Chats": "匯入對話紀錄",
|
||||||
"Import Config from JSON File": "從 JSON 檔案匯入設定",
|
"Import Config from JSON File": "從 JSON 檔案匯入設定",
|
||||||
"Import From Link": "從連結匯入",
|
"Import From Link": "從連結匯入",
|
||||||
|
"Import Models": "",
|
||||||
"Import Notes": "匯入筆記",
|
"Import Notes": "匯入筆記",
|
||||||
"Import Presets": "匯入預設集",
|
"Import Presets": "匯入預設集",
|
||||||
"Import Prompt Suggestions": "匯入提示建議",
|
"Import Prompt Suggestions": "匯入提示建議",
|
||||||
|
"Import Prompts": "",
|
||||||
"Import successful": "匯入成功",
|
"Import successful": "匯入成功",
|
||||||
|
"Import Tools": "",
|
||||||
"Important Update": "重要更新",
|
"Important Update": "重要更新",
|
||||||
"In order to force OCR, performing OCR must be enabled.": "要啟用「強制執行 OCR」,必須先啟用「執行 OCR」。",
|
"In order to force OCR, performing OCR must be enabled.": "要啟用「強制執行 OCR」,必須先啟用「執行 OCR」。",
|
||||||
"Include": "包含",
|
"Include": "包含",
|
||||||
"Include `--api-auth` flag when running stable-diffusion-webui": "執行 stable-diffusion-webui 時包含 `--api-auth` 參數",
|
"Include `--api-auth` flag when running stable-diffusion-webui": "執行 stable-diffusion-webui 時包含 `--api-auth` 參數",
|
||||||
"Include `--api` flag when running stable-diffusion-webui": "執行 stable-diffusion-webui 時包含 `--api` 參數",
|
"Include `--api` flag when running stable-diffusion-webui": "執行 stable-diffusion-webui 時包含 `--api` 參數",
|
||||||
"Includes SharePoint": "包含 SharePoint",
|
"Includes SharePoint": "包含 SharePoint",
|
||||||
|
"Increase UI Scale": "",
|
||||||
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "影響演算法對生成文字回饋的反應速度。較低的學習率會導致調整速度較慢,而較高的學習率會使演算法反應更靈敏。",
|
"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive.": "影響演算法對生成文字回饋的反應速度。較低的學習率會導致調整速度較慢,而較高的學習率會使演算法反應更靈敏。",
|
||||||
"Info": "資訊",
|
"Info": "資訊",
|
||||||
"Initials": "姓名縮寫",
|
"Initials": "姓名縮寫",
|
||||||
|
|
@ -1066,7 +1077,6 @@
|
||||||
"New Function": "新增函式",
|
"New Function": "新增函式",
|
||||||
"New Knowledge": "新增知識",
|
"New Knowledge": "新增知識",
|
||||||
"New Model": "新增模型",
|
"New Model": "新增模型",
|
||||||
"New Note": "新增筆記",
|
|
||||||
"New Password": "新密碼",
|
"New Password": "新密碼",
|
||||||
"New Prompt": "新增提示詞",
|
"New Prompt": "新增提示詞",
|
||||||
"New Temporary Chat": "新增臨時對話",
|
"New Temporary Chat": "新增臨時對話",
|
||||||
|
|
@ -1641,6 +1651,7 @@
|
||||||
"Type Hugging Face Resolve (Download) URL": "輸入 Hugging Face 的解析(下載)URL",
|
"Type Hugging Face Resolve (Download) URL": "輸入 Hugging Face 的解析(下載)URL",
|
||||||
"Uh-oh! There was an issue with the response.": "哎呀!回應出了點問題。",
|
"Uh-oh! There was an issue with the response.": "哎呀!回應出了點問題。",
|
||||||
"UI": "使用者介面",
|
"UI": "使用者介面",
|
||||||
|
"UI Scale": "",
|
||||||
"Unarchive All": "解除封存全部",
|
"Unarchive All": "解除封存全部",
|
||||||
"Unarchive All Archived Chats": "解除封存全部已封存對話",
|
"Unarchive All Archived Chats": "解除封存全部已封存對話",
|
||||||
"Unarchive Chat": "解除封存對話",
|
"Unarchive Chat": "解除封存對話",
|
||||||
|
|
@ -1714,6 +1725,8 @@
|
||||||
"Voice": "語音",
|
"Voice": "語音",
|
||||||
"Voice Input": "語音輸入",
|
"Voice Input": "語音輸入",
|
||||||
"Voice mode": "語音模式",
|
"Voice mode": "語音模式",
|
||||||
|
"Voice Mode Custom Prompt": "",
|
||||||
|
"Voice Mode Prompt": "",
|
||||||
"Warning": "警告",
|
"Warning": "警告",
|
||||||
"Warning:": "警告:",
|
"Warning:": "警告:",
|
||||||
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "警告:啟用此功能將允許使用者在伺服器上上傳任意程式碼。",
|
"Warning: Enabling this will allow users to upload arbitrary code on the server.": "警告:啟用此功能將允許使用者在伺服器上上傳任意程式碼。",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue