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
efcf6db687
commit
1a15a62b73
69 changed files with 1995 additions and 775 deletions
|
|
@ -197,19 +197,23 @@ class S3VectorClient(VectorDBBase):
|
|||
"metadata": metadata,
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
# Insert vectors in batches of 500 (S3 Vector API limit)
|
||||
batch_size = 500
|
||||
for i in range(0, len(vectors), batch_size):
|
||||
batch = vectors[i:i + batch_size]
|
||||
batch = vectors[i : i + batch_size]
|
||||
self.client.put_vectors(
|
||||
vectorBucketName=self.bucket_name,
|
||||
indexName=collection_name,
|
||||
vectors=batch,
|
||||
)
|
||||
log.info(f"Inserted batch {i//batch_size + 1}: {len(batch)} vectors into index '{collection_name}'.")
|
||||
|
||||
log.info(f"Completed insertion of {len(vectors)} vectors into index '{collection_name}'.")
|
||||
log.info(
|
||||
f"Inserted batch {i//batch_size + 1}: {len(batch)} vectors into index '{collection_name}'."
|
||||
)
|
||||
|
||||
log.info(
|
||||
f"Completed insertion of {len(vectors)} vectors into index '{collection_name}'."
|
||||
)
|
||||
except Exception as e:
|
||||
log.error(f"Error inserting vectors: {e}")
|
||||
raise
|
||||
|
|
@ -264,25 +268,29 @@ class S3VectorClient(VectorDBBase):
|
|||
"metadata": metadata,
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
# Upsert vectors in batches of 500 (S3 Vector API limit)
|
||||
batch_size = 500
|
||||
for i in range(0, len(vectors), batch_size):
|
||||
batch = vectors[i:i + batch_size]
|
||||
batch = vectors[i : i + batch_size]
|
||||
if i == 0: # Log sample info for first batch only
|
||||
log.info(
|
||||
f"Upserting batch 1: {len(batch)} vectors. First vector sample: key={batch[0]['key']}, data_type={type(batch[0]['data']['float32'])}, data_len={len(batch[0]['data']['float32'])}"
|
||||
)
|
||||
else:
|
||||
log.info(f"Upserting batch {i//batch_size + 1}: {len(batch)} vectors.")
|
||||
|
||||
log.info(
|
||||
f"Upserting batch {i//batch_size + 1}: {len(batch)} vectors."
|
||||
)
|
||||
|
||||
self.client.put_vectors(
|
||||
vectorBucketName=self.bucket_name,
|
||||
indexName=collection_name,
|
||||
vectors=batch,
|
||||
)
|
||||
|
||||
log.info(f"Completed upsert of {len(vectors)} vectors into index '{collection_name}'.")
|
||||
|
||||
log.info(
|
||||
f"Completed upsert of {len(vectors)} vectors into index '{collection_name}'."
|
||||
)
|
||||
except Exception as e:
|
||||
log.error(f"Error upserting vectors: {e}")
|
||||
raise
|
||||
|
|
|
|||
|
|
@ -83,7 +83,6 @@
|
|||
logo.style =
|
||||
'position: absolute; width: auto; height: 6rem; top: 44%; left: 50%; transform: translateX(-50%); display:block;';
|
||||
logo.src = isDarkMode ? '/static/splash-dark.png' : '/static/splash.png';
|
||||
|
||||
|
||||
document.addEventListener('DOMContentLoaded', function () {
|
||||
const splash = document.getElementById('splash-screen');
|
||||
|
|
|
|||
|
|
@ -437,7 +437,7 @@
|
|||
...$MODEL_DOWNLOAD_POOL
|
||||
});
|
||||
await deleteModel(localStorage.token, model);
|
||||
toast.success($i18n.t("{{model}} download has been canceled", { model: model }));
|
||||
toast.success($i18n.t('{{model}} download has been canceled', { model: model }));
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -514,9 +514,7 @@
|
|||
{:else if (valves_spec.properties[property]?.type ?? null) === 'boolean'}
|
||||
<div class="flex justify-between items-center">
|
||||
<div class="text-xs text-gray-500">
|
||||
{valves[property]
|
||||
? $i18n.t('Enabled')
|
||||
: $i18n.t('Disabled')}
|
||||
{valves[property] ? $i18n.t('Enabled') : $i18n.t('Disabled')}
|
||||
</div>
|
||||
|
||||
<div class=" pr-2">
|
||||
|
|
|
|||
|
|
@ -104,7 +104,9 @@
|
|||
}
|
||||
}
|
||||
|
||||
toast.success($i18n.t("Successfully imported {{userCount}} users.", { userCount: userCount }));
|
||||
toast.success(
|
||||
$i18n.t('Successfully imported {{userCount}} users.', { userCount: userCount })
|
||||
);
|
||||
inputFiles = null;
|
||||
const uploadInputElement = document.getElementById('upload-user-csv-input');
|
||||
|
||||
|
|
|
|||
|
|
@ -132,7 +132,9 @@
|
|||
<!-- Virtualized Emoji List -->
|
||||
<div class="w-full flex justify-start h-96 overflow-y-auto px-3 pb-3 text-sm">
|
||||
{#if emojiRows.length === 0}
|
||||
<div class="text-center text-xs text-gray-500 dark:text-gray-400">{$i18n.t('No results')}</div>
|
||||
<div class="text-center text-xs text-gray-500 dark:text-gray-400">
|
||||
{$i18n.t('No results')}
|
||||
</div>
|
||||
{:else}
|
||||
<div class="w-full flex ml-0.5">
|
||||
<VirtualList rowHeight={ROW_HEIGHT} items={emojiRows} height={384} let:item>
|
||||
|
|
|
|||
|
|
@ -131,7 +131,7 @@
|
|||
<input
|
||||
type="text"
|
||||
class="flex-1 py-1 text-sm dark:text-gray-300 bg-transparent outline-hidden"
|
||||
placeholder={$i18n.t("Enter value (true/false)")}
|
||||
placeholder={$i18n.t('Enter value (true/false)')}
|
||||
bind:value={variableValues[variable]}
|
||||
autocomplete="off"
|
||||
required
|
||||
|
|
@ -156,7 +156,7 @@
|
|||
<input
|
||||
type="text"
|
||||
class="flex-1 py-2 text-sm dark:text-gray-300 bg-transparent outline-hidden"
|
||||
placeholder={$i18n.t("Enter hex color (e.g. #FF0000)")}
|
||||
placeholder={$i18n.t('Enter hex color (e.g. #FF0000)')}
|
||||
bind:value={variableValues[variable]}
|
||||
autocomplete="off"
|
||||
required
|
||||
|
|
@ -308,7 +308,7 @@
|
|||
<input
|
||||
type="text"
|
||||
class=" w-full py-1 text-left text-sm dark:text-gray-300 bg-transparent outline-hidden"
|
||||
placeholder={$i18n.t("Enter coordinates (e.g. 51.505, -0.09)")}
|
||||
placeholder={$i18n.t('Enter coordinates (e.g. 51.505, -0.09)')}
|
||||
bind:value={variableValues[variable]}
|
||||
autocomplete="off"
|
||||
required
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
newPasswordConfirm = '';
|
||||
} else {
|
||||
toast.error(
|
||||
$i18n.t('The passwords you entered don\'t quite match. Please double-check and try again.')
|
||||
$i18n.t("The passwords you entered don't quite match. Please double-check and try again.")
|
||||
);
|
||||
newPassword = '';
|
||||
newPasswordConfirm = '';
|
||||
|
|
|
|||
|
|
@ -113,7 +113,7 @@
|
|||
<input
|
||||
type="text"
|
||||
class="flex-1 rounded-lg py-2 text-sm dark:text-gray-300 dark:bg-gray-850 outline-hidden border border-gray-100 dark:border-gray-850"
|
||||
placeholder={$i18n.t("Enter hex color (e.g. #FF0000)")}
|
||||
placeholder={$i18n.t('Enter hex color (e.g. #FF0000)')}
|
||||
bind:value={valves[property]}
|
||||
autocomplete="off"
|
||||
disabled
|
||||
|
|
@ -139,7 +139,7 @@
|
|||
<input
|
||||
type="text"
|
||||
class=" w-full rounded-lg py-1 text-left text-sm dark:text-gray-300 dark:bg-gray-850 outline-hidden border border-gray-100 dark:border-gray-850"
|
||||
placeholder={$i18n.t("Enter coordinates (e.g. 51.505, -0.09)")}
|
||||
placeholder={$i18n.t('Enter coordinates (e.g. 51.505, -0.09)')}
|
||||
bind:value={valves[property]}
|
||||
autocomplete="off"
|
||||
on:change={() => {
|
||||
|
|
|
|||
|
|
@ -116,7 +116,9 @@
|
|||
<div>
|
||||
<Textarea
|
||||
className=" text-sm w-full bg-transparent outline-hidden "
|
||||
placeholder={$i18n.t('Write your model system prompt content here\ne.g.) You are Mario from Super Mario Bros, acting as an assistant.')}
|
||||
placeholder={$i18n.t(
|
||||
'Write your model system prompt content here\ne.g.) You are Mario from Super Mario Bros, acting as an assistant.'
|
||||
)}
|
||||
maxSize={200}
|
||||
bind:value={data.system_prompt}
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -582,7 +582,9 @@
|
|||
<div>
|
||||
<Textarea
|
||||
className=" text-sm w-full bg-transparent outline-hidden resize-none overflow-y-hidden "
|
||||
placeholder={$i18n.t('Write your model system prompt content here\ne.g.) You are Mario from Super Mario Bros, acting as an assistant.')}
|
||||
placeholder={$i18n.t(
|
||||
'Write your model system prompt content here\ne.g.) You are Mario from Super Mario Bros, acting as an assistant.'
|
||||
)}
|
||||
rows={4}
|
||||
bind:value={system}
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 الرابط مطلوب",
|
||||
"Available list": "",
|
||||
"Available Tools": "",
|
||||
"available!": "متاح",
|
||||
"available users": "المستخدمون المتاحون",
|
||||
"available!": "متاح",
|
||||
"Away": "بعيد",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "",
|
||||
"Chat direction": "اتجاه المحادثة",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "تم نسخ عنوان URL للدردشة المشتركة إلى الحافظة",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "مستندات",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "لا يجري أي اتصالات خارجية، وتظل بياناتك آمنة على الخادم المستضاف محليًا.",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "لا تجلب خطوط أنابيب عشوائية من مصادر غير موثوقة.",
|
||||
"Don't have an account?": "ليس لديك حساب؟",
|
||||
"don't install random functions from sources you don't trust.": "",
|
||||
"don't install random tools from sources you don't trust.": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "لا تجلب خطوط أنابيب عشوائية من مصادر غير موثوقة.",
|
||||
"Don't like the style": "لا أحب النمط",
|
||||
"Done": "",
|
||||
"Download": "تحميل",
|
||||
"Download & Delete": "تنزيل وحذف",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "تم اللغاء التحميل",
|
||||
"Download Database": "تحميل قاعدة البيانات",
|
||||
"Download & Delete": "تنزيل وحذف",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "أدخل مفتاح واجهة برمجة تطبيقات PSE من Google",
|
||||
"Enter Google PSE Engine Id": "أدخل معرف محرك PSE من Google",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "(e.g. 512x512) أدخل حجم الصورة ",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "أدخل الكود هنا...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "أدخل البريد الاكتروني",
|
||||
"Enter Your Full Name": "أدخل الاسم كامل",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "أدخل الصلاحيات",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "أدخل الكود هنا...",
|
||||
"Error": "خطأ",
|
||||
"ERROR": "",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "فشل في حفظ المحادثة",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "لا تتردد في إضافة تفاصيل محددة",
|
||||
"Female": "",
|
||||
"File": "",
|
||||
"File added successfully.": "",
|
||||
"File content updated successfully.": "",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "عام",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "مفتاح واجهة برمجة تطبيقات PSE من Google",
|
||||
"Google PSE Engine Id": "معرف محرك PSE من Google",
|
||||
"Gravatar": "",
|
||||
"Group": "مجموعة",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group": "مجموعة",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "",
|
||||
"Important Update": "تحديث مهم",
|
||||
"Include": "",
|
||||
"Includes SharePoint": "يتضمن SharePoint",
|
||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "قم بتضمين علامة `-api` عند تشغيل Stable-diffusion-webui",
|
||||
"Includes SharePoint": "يتضمن SharePoint",
|
||||
"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": "معلومات",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "إدخال الأوامر",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "تأكد من إرفاقها",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "إدارة خطوط الأنابيب",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "مارس",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "المزيد",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "الأسم",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "",
|
||||
"No feedbacks found": "",
|
||||
"No file selected": "",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "لا توجد نتايج",
|
||||
"No search query generated": "لم يتم إنشاء استعلام بحث",
|
||||
"No source available": "لا يوجد مصدر متاح",
|
||||
"No suggestion prompts": "لا توجد مطالبات مقترحة",
|
||||
"No users were found.": "",
|
||||
"No valves": "",
|
||||
"No valves to update": "",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "لا توجد مطالبات مقترحة",
|
||||
"None": "اي",
|
||||
"Not factually correct": "ليس صحيحا من حيث الواقع",
|
||||
"Not helpful": "",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "URL/مفتاح OpenAI.مطلوب عنوان ",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "أو",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "موقف ايجابي",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "الملف الشخصي",
|
||||
"Profile Image": "صورة الملف الشخصي",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "موجه (على سبيل المثال: أخبرني بحقيقة ممتعة عن الإمبراطورية الرومانية)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "إعادة تقييم النموذج",
|
||||
"Reset": "",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "إعادة تعيين الصورة",
|
||||
"Reset Upload Directory": "",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "",
|
||||
"Reset Image": "إعادة تعيين الصورة",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
|
||||
"Response splitting": "",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "النتيجة",
|
||||
"Result": "",
|
||||
"RESULT": "النتيجة",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "حفظ وإنشاء",
|
||||
"Save & Update": "حفظ وتحديث",
|
||||
"Save As Copy": "",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "",
|
||||
"Saved": "",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "لم يعد حفظ سجلات الدردشة مباشرة في مساحة تخزين متصفحك مدعومًا. يرجى تخصيص بعض الوقت لتنزيل وحذف سجلات الدردشة الخاصة بك عن طريق النقر على الزر أدناه. لا تقلق، يمكنك بسهولة إعادة استيراد سجلات الدردشة الخاصة بك إلى الواجهة الخلفية من خلاله",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "كشاركة",
|
||||
"Share Chat": "مشاركة الدردشة",
|
||||
"Share to Open WebUI Community": "OpenWebUI شارك في مجتمع",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "عرض",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "محرك تحويل الكلام إلى نص",
|
||||
"Start of the channel": "بداية القناة",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "وقف التسلسل",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "",
|
||||
"STT Settings": "STT اعدادات",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "أخبرنا المزيد:",
|
||||
"Temperature": "درجة حرارة",
|
||||
"Temporary Chat": "",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "محرك تحويل النص إلى كلام",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "رابط الموديل",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "Gravatar أستخدم",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "Initials أستخدم",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "تم مشاركة هذه المحادثة",
|
||||
"You're a helpful assistant.": "مساعدك المفيد هنا",
|
||||
"You're now logged in.": "لقد قمت الآن بتسجيل الدخول.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "الرابط الأساسي لـ AUTOMATIC1111 مطلوب.",
|
||||
"Available list": "القائمة المتاحة",
|
||||
"Available Tools": "",
|
||||
"available!": "متاح!",
|
||||
"available users": "المستخدمون المتاحون",
|
||||
"available!": "متاح!",
|
||||
"Away": "بعيد",
|
||||
"Awful": "فظيع",
|
||||
"Azure AI Speech": "نطق Azure AI (مايكروسوفت)",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "بيتا",
|
||||
"Bing Search V7 Endpoint": "نقطة نهاية Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "مفتاح اشتراك Bing Search V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "مفتاح API لـ Bocha Search",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "ضوابط المحادثة",
|
||||
"Chat direction": "اتجاه المحادثة",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "نظرة عامة على المحادثة",
|
||||
"Chat Permissions": "أذونات المحادثة",
|
||||
"Chat Tags Auto-Generation": "الإنشاء التلقائي لطاچ المحادثة",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "تحكم في تكرار تسلسلات الرموز في النص المولد. قيمة أعلى (مثال: 1.5) ستعاقب التكرارات بشدة أكبر، بينما قيمة أقل (مثال: 1.1) ستكون أكثر تسامحاً. عند القيمة 1، يتم تعطيله.",
|
||||
"Controls": "الضوابط",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "يتحكم في التوازن بين الترابط والتنوع في الناتج. قيمة أقل ستؤدي إلى نص أكثر تركيزاً وترابطاً.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "تم النسخ",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "تم نسخ رابط المحادثة المشترك إلى الحافظة!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "مستندات",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "لا يجري أي اتصالات خارجية، وتظل بياناتك آمنة على الخادم المستضاف محليًا.",
|
||||
"Domain Filter List": "قائمة تصفية النطاقات",
|
||||
"don't fetch random pipelines from sources you don't trust.": "لا تجلب خطوط أنابيب عشوائية من مصادر غير موثوقة.",
|
||||
"Don't have an account?": "ليس لديك حساب؟",
|
||||
"don't install random functions from sources you don't trust.": "لا تقم بتثبيت وظائف عشوائية من مصادر غير موثوقة.",
|
||||
"don't install random tools from sources you don't trust.": "لا تقم بتثبيت أدوات عشوائية من مصادر غير موثوقة.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "لا تجلب خطوط أنابيب عشوائية من مصادر غير موثوقة.",
|
||||
"Don't like the style": "لا أحب النمط",
|
||||
"Done": "تم",
|
||||
"Download": "تحميل",
|
||||
"Download & Delete": "تنزيل وحذف",
|
||||
"Download as SVG": "تنزيل بصيغة SVG",
|
||||
"Download canceled": "تم اللغاء التحميل",
|
||||
"Download Database": "تحميل قاعدة البيانات",
|
||||
"Download & Delete": "تنزيل وحذف",
|
||||
"Drag and drop a file to upload or select a file to view": "اسحب الملف وأفلته للرفع أو اختر ملفًا للعرض",
|
||||
"Draw": "ارسم",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "أدخل مفتاح واجهة برمجة تطبيقات PSE من Google",
|
||||
"Enter Google PSE Engine Id": "أدخل معرف محرك PSE من Google",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "(e.g. 512x512) أدخل حجم الصورة ",
|
||||
"Enter Jina API Key": "أدخل مفتاح API لـ Jina",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "أدخل الكود هنا...",
|
||||
"Enter your current password": "أدخل كلمة المرور الحالية",
|
||||
"Enter Your Email": "أدخل البريد الاكتروني",
|
||||
"Enter Your Full Name": "أدخل الاسم كامل",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "أدخل رسالتك",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "أدخل الصلاحيات",
|
||||
"Enter Your Username": "أدخل اسم المستخدم الخاص بك",
|
||||
"Enter your webhook URL": "أدخل رابط Webhook الخاص بك",
|
||||
"Enter your code here...": "أدخل الكود هنا...",
|
||||
"Error": "خطأ",
|
||||
"ERROR": "خطأ",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "فشل في حفظ المحادثة",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "سجل الملاحظات",
|
||||
"Feedbacks": "الملاحظات",
|
||||
"Feel free to add specific details": "لا تتردد في إضافة تفاصيل محددة",
|
||||
"Female": "",
|
||||
"File": "ملف",
|
||||
"File added successfully.": "تم إضافة الملف بنجاح.",
|
||||
"File content updated successfully.": "تم تحديث محتوى الملف بنجاح.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "إعدادات واجهة Gemini API",
|
||||
"Gemini API Key is required.": "مفتاح Gemini API مطلوب.",
|
||||
"Gender": "",
|
||||
"General": "عام",
|
||||
"Generate": "",
|
||||
"Generate an image": "توليد صورة",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "مفتاح واجهة برمجة تطبيقات PSE من Google",
|
||||
"Google PSE Engine Id": "معرف محرك PSE من Google",
|
||||
"Gravatar": "",
|
||||
"Group": "مجموعة",
|
||||
"Group created successfully": "تم إنشاء المجموعة بنجاح",
|
||||
"Group deleted successfully": "تم حذف المجموعة بنجاح",
|
||||
"Group Description": "وصف المجموعة",
|
||||
"Group Name": "اسم المجموعة",
|
||||
"Group": "مجموعة",
|
||||
"Group updated successfully": "تم تحديث المجموعة بنجاح",
|
||||
"Groups": "المجموعات",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "استيراد الأدوات",
|
||||
"Important Update": "تحديث مهم",
|
||||
"Include": "تضمين",
|
||||
"Includes SharePoint": "يتضمن SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "يتضمن SharePoint",
|
||||
"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": "معلومات",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "إدخال الأوامر",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "تأكد من إرفاقها",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "تأكد من تصدير ملف workflow.json بصيغة API من ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "إدارة",
|
||||
"Manage Direct Connections": "إدارة الاتصالات المباشرة",
|
||||
"Manage Models": "إدارة النماذج",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "إدارة اتصالات OpenAI API",
|
||||
"Manage Pipelines": "إدارة خطوط الأنابيب",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "مارس",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "المزيد",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "الأسم",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "قم بتسمية قاعدة معرفتك",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "لم يتم العثور على محتوى",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "لا يوجد محتوى للتحدث عنه",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "لا توجد مسافة متاحة",
|
||||
"No feedbacks found": "لم يتم العثور على ملاحظات",
|
||||
"No file selected": "لم يتم تحديد ملف",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "لا توجد نتايج",
|
||||
"No search query generated": "لم يتم إنشاء استعلام بحث",
|
||||
"No source available": "لا يوجد مصدر متاح",
|
||||
"No suggestion prompts": "لا توجد مطالبات مقترحة",
|
||||
"No users were found.": "لم يتم العثور على مستخدمين.",
|
||||
"No valves": "",
|
||||
"No valves to update": "لا توجد صمامات للتحديث",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "لا توجد مطالبات مقترحة",
|
||||
"None": "اي",
|
||||
"Not factually correct": "ليس صحيحا من حيث الواقع",
|
||||
"Not helpful": "غير مفيد",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "تم تحديث إعدادات OpenAI API",
|
||||
"OpenAI URL/Key required.": "URL/مفتاح OpenAI.مطلوب عنوان ",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "أو",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "يرجى مراجعة التحذيرات التالية بعناية:",
|
||||
"Please do not close the settings page while loading the model.": "الرجاء عدم إغلاق صفحة الإعدادات أثناء تحميل النموذج.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "الرجاء إدخال توجيه",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "المنفذ",
|
||||
"Positive attitude": "موقف ايجابي",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "معرف البادئة",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "يُستخدم معرف البادئة لتفادي التعارض مع الاتصالات الأخرى من خلال إضافة بادئة إلى معرفات النماذج – اتركه فارغًا لتعطيله",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "الملف الشخصي",
|
||||
"Profile Image": "صورة الملف الشخصي",
|
||||
"Prompt": "التوجيه",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "موجه (على سبيل المثال: أخبرني بحقيقة ممتعة عن الإمبراطورية الرومانية)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "إعادة تقييم النموذج",
|
||||
"Reset": "إعادة تعيين",
|
||||
"Reset All Models": "إعادة تعيين جميع النماذج",
|
||||
"Reset Image": "إعادة تعيين الصورة",
|
||||
"Reset Upload Directory": "إعادة تعيين مجلد التحميل",
|
||||
"Reset Vector Storage/Knowledge": "إعادة تعيين تخزين المتجهات/المعرفة",
|
||||
"Reset view": "إعادة تعيين العرض",
|
||||
"Reset Image": "إعادة تعيين الصورة",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "لا يمكن تفعيل إشعارات الردود لأن صلاحيات الموقع مرفوضة. يرجى التوجه إلى إعدادات المتصفح لمنح الصلاحية اللازمة.",
|
||||
"Response splitting": "تقسيم الرد",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "النتيجة",
|
||||
"Result": "النتيجة",
|
||||
"RESULT": "النتيجة",
|
||||
"Retrieval": "الاسترجاع",
|
||||
"Retrieval Query Generation": "توليد استعلام الاسترجاع",
|
||||
"Rich Text Input for Chat": "إدخال نص منسق للمحادثة",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "حفظ وإنشاء",
|
||||
"Save & Update": "حفظ وتحديث",
|
||||
"Save As Copy": "حفظ كنسخة",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "حفظ الوسم",
|
||||
"Saved": "تم الحفظ",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "لم يعد حفظ سجلات الدردشة مباشرة في مساحة تخزين متصفحك مدعومًا. يرجى تخصيص بعض الوقت لتنزيل وحذف سجلات الدردشة الخاصة بك عن طريق النقر على الزر أدناه. لا تقلق، يمكنك بسهولة إعادة استيراد سجلات الدردشة الخاصة بك إلى الواجهة الخلفية من خلاله",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "كشاركة",
|
||||
"Share Chat": "مشاركة الدردشة",
|
||||
"Share to Open WebUI Community": "OpenWebUI شارك في مجتمع",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "عرض",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "محرك تحويل الكلام إلى نص",
|
||||
"Start of the channel": "بداية القناة",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "إيقاف",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "وقف التسلسل",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "نموذج تحويل الصوت إلى نص (STT)",
|
||||
"STT Settings": "STT اعدادات",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "أخبرنا المزيد:",
|
||||
"Temperature": "درجة حرارة",
|
||||
"Temporary Chat": "محادثة مؤقتة",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "تقسيم النص",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "محرك تحويل النص إلى كلام",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "رابط الموديل",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "استخدم الرمز '#' في خانة التوجيه لتحميل وإدراج المعرفة الخاصة بك.",
|
||||
"Use Gravatar": "Gravatar أستخدم",
|
||||
"Use groups to group your users and assign permissions.": "استخدم المجموعات لتجميع المستخدمين وتحديد الصلاحيات.",
|
||||
"Use Initials": "Initials أستخدم",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "تم مشاركة هذه المحادثة",
|
||||
"You're a helpful assistant.": "مساعدك المفيد هنا",
|
||||
"You're now logged in.": "لقد قمت الآن بتسجيل الدخول.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "حالة حسابك حالياً بانتظار التفعيل.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "سيتم توجيه كامل مساهمتك مباشرة إلى مطور المكون الإضافي؛ لا تأخذ Open WebUI أي نسبة. ومع ذلك، قد تفرض منصة التمويل المختارة رسومًا خاصة بها.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Базов URL е задължителен.",
|
||||
"Available list": "Наличен списък",
|
||||
"Available Tools": "Налични инструменти",
|
||||
"available!": "наличен!",
|
||||
"available users": "Налични потребители",
|
||||
"available!": "наличен!",
|
||||
"Away": "Отсъства",
|
||||
"Awful": "Ужасно",
|
||||
"Azure AI Speech": "Azure AI Реч",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Бета",
|
||||
"Bing Search V7 Endpoint": "Крайна точка за Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Абонаментен ключ за Bing Search V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "API ключ за Bocha Search",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Контроли на чата",
|
||||
"Chat direction": "Направление на чата",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Преглед на чата",
|
||||
"Chat Permissions": "Разрешения за чат",
|
||||
"Chat Tags Auto-Generation": "Автоматично генериране на тагове за чат",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "Контроли",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Копирано",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "Копирана е връзката за споделен чат в клипборда!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Документи",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "няма външни връзки, а вашите данни остават сигурни на локално назначен сървър.",
|
||||
"Domain Filter List": "Списък с филтри за домейни",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Не извличайте произволни pipelines от източници, на които не вярвате.",
|
||||
"Don't have an account?": "Нямате акаунт?",
|
||||
"don't install random functions from sources you don't trust.": "не инсталирайте случайни функции от източници, на които не се доверявате.",
|
||||
"don't install random tools from sources you don't trust.": "не инсталирайте случайни инструменти от източници, на които не се доверявате.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Не извличайте произволни pipelines от източници, на които не вярвате.",
|
||||
"Don't like the style": "Не харесваш стила?",
|
||||
"Done": "Готово",
|
||||
"Download": "Изтегляне",
|
||||
"Download & Delete": "Изтегляне и изтриване",
|
||||
"Download as SVG": "Изтегляне като SVG",
|
||||
"Download canceled": "Изтегляне отменено",
|
||||
"Download Database": "Сваляне на база данни",
|
||||
"Download & Delete": "Изтегляне и изтриване",
|
||||
"Drag and drop a file to upload or select a file to view": "Плъзнете и пуснете файл за качване или изберете файл за преглед",
|
||||
"Draw": "Рисуване",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Въведете API ключ за Google PSE",
|
||||
"Enter Google PSE Engine Id": "Въведете идентификатор на двигателя на Google PSE",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Въведете размер на изображението (напр. 512x512)",
|
||||
"Enter Jina API Key": "Въведете API ключ за Jina",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Въведете кода си тук...",
|
||||
"Enter your current password": "Въведете текущата си парола",
|
||||
"Enter Your Email": "Въведете имейл",
|
||||
"Enter Your Full Name": "Въведете вашето пълно име",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Въведете съобщението си",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Въведете вашата роля",
|
||||
"Enter Your Username": "Въведете вашето потребителско име",
|
||||
"Enter your webhook URL": "Въведете вашия URL адрес на webhook",
|
||||
"Enter your code here...": "Въведете кода си тук...",
|
||||
"Error": "Грешка",
|
||||
"ERROR": "ГРЕШКА",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Грешка при четене на съдържанието от клипборда",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Неуспешно запазване на разговора",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "История на обратната връзка",
|
||||
"Feedbacks": "Обратни връзки",
|
||||
"Feel free to add specific details": "Не се колебайте да добавите конкретни детайли",
|
||||
"Female": "",
|
||||
"File": "Файл",
|
||||
"File added successfully.": "Файлът е добавен успешно.",
|
||||
"File content updated successfully.": "Съдържанието на файла е актуализирано успешно.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "Основни",
|
||||
"Generate": "",
|
||||
"Generate an image": "Генериране на изображение",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Google PSE API ключ",
|
||||
"Google PSE Engine Id": "Идентификатор на двигателя на Google PSE",
|
||||
"Gravatar": "",
|
||||
"Group": "Група",
|
||||
"Group created successfully": "Групата е създадена успешно",
|
||||
"Group deleted successfully": "Групата е изтрита успешно",
|
||||
"Group Description": "Описание на групата",
|
||||
"Group Name": "Име на групата",
|
||||
"Group": "Група",
|
||||
"Group updated successfully": "Групата е актуализирана успешно",
|
||||
"Groups": "Групи",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Импортиране на инструменти",
|
||||
"Important Update": "Важна актуализация",
|
||||
"Include": "Включи",
|
||||
"Includes SharePoint": "Включва SharePoint",
|
||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "",
|
||||
"Includes SharePoint": "Включва SharePoint",
|
||||
"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": "Информация",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "Въведете команди",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Уверете се, че сте заключени с",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Уверете се, че експортирате файл workflow.json като API формат от ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Управление",
|
||||
"Manage Direct Connections": "Управление на директни връзки",
|
||||
"Manage Models": "Управление на моделите",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Управление на OpenAI API",
|
||||
"Manage Pipelines": "Управление на пайплайни",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "Март",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Повече",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Име",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Именувайте вашата база от знания",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Не е намерено съдържание",
|
||||
"No content found in file.": "Не е намерено съдържание във файла",
|
||||
"No content to speak": "Няма съдържание за изговаряне",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Няма налично разстояние",
|
||||
"No feedbacks found": "Не са намерени обратни връзки",
|
||||
"No file selected": "Не е избран файл",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Няма намерени резултати",
|
||||
"No search query generated": "Не е генерирана заявка за търсене",
|
||||
"No source available": "Няма наличен източник",
|
||||
"No suggestion prompts": "Няма предложени подсказки",
|
||||
"No users were found.": "Не са намерени потребители.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Няма клапани за актуализиране",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Няма предложени подсказки",
|
||||
"None": "Никой",
|
||||
"Not factually correct": "Не е фактологически правилно",
|
||||
"Not helpful": "Не е полезно",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "Настройките на OpenAI API са актуализирани",
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Key е задължителен.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "или",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Моля, внимателно прегледайте следните предупреждения:",
|
||||
"Please do not close the settings page while loading the model.": "Моля, не затваряйте страницата с настройки, докато моделът се зарежда.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Моля, въведете промпт",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Порт",
|
||||
"Positive attitude": "Позитивно отношение",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Префикс ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Префикс ID се използва за избягване на конфликти с други връзки чрез добавяне на префикс към ID-тата на моделите - оставете празно, за да деактивирате",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "Профил",
|
||||
"Profile Image": "Профилна снимка",
|
||||
"Prompt": "Промпт",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Промпт (напр. Кажи ми забавен факт за Римската империя)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Модел за преподреждане",
|
||||
"Reset": "Нулиране",
|
||||
"Reset All Models": "Нулиране на всички модели",
|
||||
"Reset Image": "Нулиране на изображението",
|
||||
"Reset Upload Directory": "Нулиране на директорията за качване",
|
||||
"Reset Vector Storage/Knowledge": "Нулиране на векторното хранилище/знания",
|
||||
"Reset view": "Нулиране на изгледа",
|
||||
"Reset Image": "Нулиране на изображението",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Известията за отговори не могат да бъдат активирани, тъй като разрешенията за уебсайта са отказани. Моля, посетете настройките на вашия браузър, за да дадете необходимия достъп.",
|
||||
"Response splitting": "Разделяне на отговора",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "Резултат",
|
||||
"Result": "Резултат",
|
||||
"RESULT": "Резултат",
|
||||
"Retrieval": "Извличане",
|
||||
"Retrieval Query Generation": "Генериране на заявка за извличане",
|
||||
"Rich Text Input for Chat": "Богат текстов вход за чат",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Запис & Създаване",
|
||||
"Save & Update": "Запис & Актуализиране",
|
||||
"Save As Copy": "Запиши като копие",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Запиши таг",
|
||||
"Saved": "Запазено",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Запазването на чат логове директно в хранилището на вашия браузър вече не се поддържа. Моля, отделете малко време, за да изтеглите и изтриете чат логовете си, като щракнете върху бутона по-долу. Не се притеснявайте, можете лесно да импортирате отново чат логовете си в бекенда чрез",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Подели",
|
||||
"Share Chat": "Подели Чат",
|
||||
"Share to Open WebUI Community": "Споделете с OpenWebUI Общността",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Права за споделяне",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Покажи",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Двигател за преобразуване на реч в текста",
|
||||
"Start of the channel": "Начало на канала",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Спри",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Стоп последователност",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "STT Модел",
|
||||
"STT Settings": "STT Настройки",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Повече информация:",
|
||||
"Temperature": "Температура",
|
||||
"Temporary Chat": "Временен чат",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Разделител на текст",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Двигател за преобразуване на текст в реч",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL режим",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Използвайте '#' в полето за въвеждане, за да заредите и включите вашите знания.",
|
||||
"Use Gravatar": "Използвайте Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "Използвайте групи, за да групирате вашите потребители и да присвоите разрешения.",
|
||||
"Use Initials": "Използвайте инициали",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Вие сте споделили този чат",
|
||||
"You're a helpful assistant.": "Вие сте полезен асистент.",
|
||||
"You're now logged in.": "Сега вие влязохте в системата.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Статусът на вашия акаунт в момента очаква активиране.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Цялата ви вноска ще отиде директно при разработчика на плъгина; Open WebUI не взима никакъв процент. Въпреки това, избраната платформа за финансиране може да има свои собствени такси.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 বেজ ইউআরএল আবশ্যক",
|
||||
"Available list": "",
|
||||
"Available Tools": "",
|
||||
"available!": "উপলব্ধ!",
|
||||
"available users": "উপলব্ধ ব্যবহারকারী",
|
||||
"available!": "উপলব্ধ!",
|
||||
"Away": "অনুপস্থিত",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "",
|
||||
"Chat direction": "চ্যাট দিকনির্দেশ",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "শেয়ারকৃত কথা-ব্যবহারের URL ক্লিপবোর্ডে কপি করা হয়েছে!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "ডকুমেন্টসমূহ",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "কোন এক্সটার্নাল কানেকশন তৈরি করে না, এবং আপনার ডেটা আর লোকালি হোস্টেড সার্ভারেই নিরাপদে থাকে।",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "যে উৎসে আপনি ভরসা করেন না সেখান থেকে এলোমেলো পাইপলাইন আনবেন না।",
|
||||
"Don't have an account?": "একাউন্ট নেই?",
|
||||
"don't install random functions from sources you don't trust.": "",
|
||||
"don't install random tools from sources you don't trust.": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "যে উৎসে আপনি ভরসা করেন না সেখান থেকে এলোমেলো পাইপলাইন আনবেন না।",
|
||||
"Don't like the style": "স্টাইল পছন্দ করেন না",
|
||||
"Done": "",
|
||||
"Download": "ডাউনলোড",
|
||||
"Download & Delete": "ডাউনলোড ও মুছে ফেলুন",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "ডাউনলোড বাতিল করা হয়েছে",
|
||||
"Download Database": "ডেটাবেজ ডাউনলোড করুন",
|
||||
"Download & Delete": "ডাউনলোড ও মুছে ফেলুন",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "গুগল পিএসই এপিআই কী লিখুন",
|
||||
"Enter Google PSE Engine Id": "গুগল পিএসই ইঞ্জিন আইডি লিখুন",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "ছবির মাপ লিখুন (যেমন 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "এখানে আপনার কোড লিখুন...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "আপনার ইমেইল লিখুন",
|
||||
"Enter Your Full Name": "আপনার পূর্ণ নাম লিখুন",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "আপনার রোল লিখুন",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "এখানে আপনার কোড লিখুন...",
|
||||
"Error": "ত্রুটি",
|
||||
"ERROR": "",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "ক্লিপবোর্ডের বিষয়বস্তু পড়া সম্ভব হয়নি",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "কথোপকথন সংরক্ষণ করতে ব্যর্থ",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "নির্দিষ্ট বিবরণ যোগ করতে বিনা দ্বিধায়",
|
||||
"Female": "",
|
||||
"File": "",
|
||||
"File added successfully.": "",
|
||||
"File content updated successfully.": "",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "সাধারণ",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "গুগল পিএসই এপিআই কী",
|
||||
"Google PSE Engine Id": "গুগল পিএসই ইঞ্জিন আইডি",
|
||||
"Gravatar": "",
|
||||
"Group": "গ্রুপ",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group": "গ্রুপ",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "",
|
||||
"Important Update": "গুরুত্বপূর্ণ আপডেট",
|
||||
"Include": "",
|
||||
"Includes SharePoint": "SharePoint অন্তর্ভুক্ত",
|
||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui চালু করার সময় `--api` ফ্ল্যাগ সংযুক্ত করুন",
|
||||
"Includes SharePoint": "SharePoint অন্তর্ভুক্ত",
|
||||
"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": "তথ্য",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "ইনপুট কমান্ডস",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "এটা দিয়ে বন্ধনী দিতে ভুলবেন না",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "পাইপলাইন পরিচালনা করুন",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "মার্চ",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "আরো",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "নাম",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "",
|
||||
"No feedbacks found": "",
|
||||
"No file selected": "",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "কোন ফলাফল পাওয়া যায়নি",
|
||||
"No search query generated": "কোনও অনুসন্ধান ক্যোয়ারী উত্পন্ন হয়নি",
|
||||
"No source available": "কোন উৎস পাওয়া যায়নি",
|
||||
"No suggestion prompts": "কোনো প্রস্তাবিত প্রম্পট নেই",
|
||||
"No users were found.": "",
|
||||
"No valves": "",
|
||||
"No valves to update": "",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "কোনো প্রস্তাবিত প্রম্পট নেই",
|
||||
"None": "কোনোটিই নয়",
|
||||
"Not factually correct": "তথ্যগত দিক থেকে সঠিক নয়",
|
||||
"Not helpful": "",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Key আবশ্যক",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "অথবা",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "পজিটিভ আক্রমণ",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "প্রোফাইল",
|
||||
"Profile Image": "প্রোফাইল ইমেজ",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "প্রম্প্ট (উদাহরণস্বরূপ, আমি রোমান ইমপার্টের সম্পর্কে একটি উপস্থিতি জানতে বল)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "রির্যাক্টিং মডেল",
|
||||
"Reset": "",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "ছবি রিসেট করুন",
|
||||
"Reset Upload Directory": "",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "",
|
||||
"Reset Image": "ছবি রিসেট করুন",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
|
||||
"Response splitting": "",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "ফলাফল",
|
||||
"Result": "",
|
||||
"RESULT": "ফলাফল",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "সংরক্ষণ এবং তৈরি করুন",
|
||||
"Save & Update": "সংরক্ষণ এবং আপডেট করুন",
|
||||
"Save As Copy": "",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "",
|
||||
"Saved": "",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "মাধ্যমে",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "শেয়ার করুন",
|
||||
"Share Chat": "চ্যাট শেয়ার করুন",
|
||||
"Share to Open WebUI Community": "OpenWebUI কমিউনিটিতে শেয়ার করুন",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "দেখান",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "স্পিচ-টু-টেক্সট ইঞ্জিন",
|
||||
"Start of the channel": "চ্যানেলের শুরু",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "সিকোয়েন্স থামান",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "",
|
||||
"STT Settings": "STT সেটিংস",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "আরও বলুন:",
|
||||
"Temperature": "তাপমাত্রা",
|
||||
"Temporary Chat": "",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "টেক্সট-টু-স্পিচ ইঞ্জিন",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "ইউআরএল মোড",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "Gravatar ব্যবহার করুন",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "নামের আদ্যক্ষর ব্যবহার করুন",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "আপনি এই চ্যাটটি শেয়ার করেছেন",
|
||||
"You're a helpful assistant.": "আপনি একজন উপকারী এসিস্ট্যান্ট",
|
||||
"You're now logged in.": "আপনি এখন লগইন করা অবস্থায় আছেন",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
|
||||
"Youtube": "YouTube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 གཞི་རྩའི་ URL ངེས་པར་དུ་དགོས།",
|
||||
"Available list": "ཡོད་པའི་ཐོ་གཞུང་།",
|
||||
"Available Tools": "",
|
||||
"available!": "ཡོད།",
|
||||
"available users": "ཡོད་པའི་སྤྱོད་མཁན",
|
||||
"available!": "ཡོད།",
|
||||
"Away": "མི་འདུག",
|
||||
"Awful": "ཧ་ཅང་སྡུག",
|
||||
"Azure AI Speech": "Azure AI སྐད་ཆ།",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7 མཇུག་མཐུད།",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 མངགས་ཉོ་ལྡེ་མིག",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Bocha Search API ལྡེ་མིག",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "ཁ་བརྡའི་ཚོད་འཛིན།",
|
||||
"Chat direction": "ཁ་བརྡའི་ཁ་ཕྱོགས།",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "ཁ་བརྡའི་སྤྱི་མཐོང་།",
|
||||
"Chat Permissions": "ཁ་བརྡའི་དབང་ཚད།",
|
||||
"Chat Tags Auto-Generation": "ཁ་བརྡའི་རྟགས་རང་འགུལ་བཟོ་སྐྲུན།",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "བཟོས་པའི་ཡིག་རྐྱང་ནང་གི་ཊོཀ་ཀེན་གྱི་རིམ་པའི་བསྐྱར་ཟློས་ཚོད་འཛིན་བྱེད་པ། རིན་ཐང་མཐོ་བ་ (དཔེར་ན། 1.5) ཡིས་བསྐྱར་ཟློས་ལ་ཆད་པ་དྲག་པོ་གཏོང་ངེས། དེ་བཞིན་དུ་རིན་ཐང་དམའ་བ་ (དཔེར་ན། 1.1) ཡིས་གུ་ཡངས་ཆེ་བ་ཡོང་ངེས། 1 ལ་སླེབས་དུས། དེ་ནུས་མེད་བཏང་ཡོད།",
|
||||
"Controls": "ཚོད་འཛིན།",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "ཐོན་འབྲས་ཀྱི་འབྲེལ་ཆགས་རང་བཞིན་དང་སྣ་ཚོགས་རང་བཞིན་བར་གྱི་དོ་མཉམ་ཚོད་འཛིན་བྱེད་པ། རིན་ཐང་དམའ་བས་ཡིག་རྐྱང་གི་དམིགས་ཚད་དང་འབྲེལ་ཆགས་རང་བཞིན་སྔར་ལས་ལྷག་པར་བྱེད་ངེས།",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "འདྲ་བཤུས་བྱས་པ།",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "མཉམ་སྤྱོད་ཁ་བརྡའི་ URL སྦྱར་སྡེར་དུ་འདྲ་བཤུས་བྱས་ཟིན།",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "ཡིག་ཆ།",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "ཕྱི་རོལ་གྱི་སྦྲེལ་མཐུད་གང་ཡང་མི་བྱེད། དེ་མིན་ཁྱེད་ཀྱི་གནས་ཚུལ་དེ་ཁྱེད་ཀྱི་ས་གནས་སུ་བཀོད་སྒྲིག་བྱས་པའི་སར་བར་སྟེང་བདེ་འཇགས་ངང་གནས་ངེས།",
|
||||
"Domain Filter List": "ཁྱབ་ཁོངས་འཚག་མའི་ཐོ་གཞུང་།",
|
||||
"don't fetch random pipelines from sources you don't trust.": "རྟོགས་མེད་པའི་ཁུངས་ནས་ pipelines གང་འརྒྱུར་མ་འབྱོར་",
|
||||
"Don't have an account?": "རྩིས་ཁྲ་མེད་དམ།",
|
||||
"don't install random functions from sources you don't trust.": "ཁྱེད་ཀྱིས་ཡིད་ཆེས་མེད་པའི་འབྱུང་ཁུངས་ནས་གང་བྱུང་གི་ལས་འགན་སྒྲིག་སྦྱོར་མ་བྱེད།",
|
||||
"don't install random tools from sources you don't trust.": "ཁྱེད་ཀྱིས་ཡིད་ཆེས་མེད་པའི་འབྱུང་ཁུངས་ནས་གང་བྱུང་གི་ལག་ཆ་སྒྲིག་སྦྱོར་མ་བྱེད།",
|
||||
"don't fetch random pipelines from sources you don't trust.": "རྟོགས་མེད་པའི་ཁུངས་ནས་ pipelines གང་འརྒྱུར་མ་འབྱོར་",
|
||||
"Don't like the style": "བཟོ་ལྟ་ལ་མི་དགའ།",
|
||||
"Done": "ཚར་སོང་།",
|
||||
"Download": "ཕབ་ལེན།",
|
||||
"Download & Delete": "ཕབ་ལེན་དང་བསུབ་",
|
||||
"Download as SVG": "SVG ཐོག་ཕབ་ལེན།",
|
||||
"Download canceled": "ཕབ་ལེན་རྩིས་མེད་བཏང་།",
|
||||
"Download Database": "གནས་ཚུལ་མཛོད་ཕབ་ལེན།",
|
||||
"Download & Delete": "ཕབ་ལེན་དང་བསུབ་",
|
||||
"Drag and drop a file to upload or select a file to view": "ཡིག་ཆ་ཞིག་འདྲུད་ནས་འཇོག་སྟེ་སྤར་བའམ། ཡང་ན་ཡིག་ཆ་ཞིག་གདམ་ག་བྱས་ནས་ལྟ་བ།",
|
||||
"Draw": "རི་མོ་འབྲི་བ།",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Google PSE API ལྡེ་མིག་འཇུག་པ།",
|
||||
"Enter Google PSE Engine Id": "Google PSE Engine Id འཇུག་པ།",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "པར་གྱི་ཆེ་ཆུང་འཇུག་པ། (དཔེར་ན། 512x512)",
|
||||
"Enter Jina API Key": "Jina API ལྡེ་མིག་འཇུག་པ།",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "ཁྱེད་ཀྱི་ཀོཌ་འདིར་འཇུག...",
|
||||
"Enter your current password": "ཁྱེད་ཀྱི་ད་ལྟའི་གསང་གྲངས་འཇུག་པ།",
|
||||
"Enter Your Email": "ཁྱེད་ཀྱི་ཡིག་ཟམ་འཇུག་པ།",
|
||||
"Enter Your Full Name": "ཁྱེད་ཀྱི་མིང་ཆ་ཚང་འཇུག་པ།",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "ཁྱེད་ཀྱི་འཕྲིན་འཇུག་པ།",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "ཁྱེད་ཀྱི་གནས་ཚད་འཇུག་པ།",
|
||||
"Enter Your Username": "ཁྱེད་ཀྱི་བེད་སྤྱོད་མིང་འཇུག་པ།",
|
||||
"Enter your webhook URL": "ཁྱེད་ཀྱི་ Webhook URL འཇུག་པ།",
|
||||
"Enter your code here...": "ཁྱེད་ཀྱི་ཀོཌ་འདིར་འཇུག...",
|
||||
"Error": "ནོར་འཁྲུལ།",
|
||||
"ERROR": "ནོར་འཁྲུལ།",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "སྦྱར་སྡེར་གྱི་ནང་དོན་ཀློག་མ་ཐུབ།",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "གླེང་མོལ་ཉར་ཚགས་བྱེད་མ་ཐུབ།",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "བསམ་འཆར་གྱི་ལོ་རྒྱུས།",
|
||||
"Feedbacks": "བསམ་འཆར།",
|
||||
"Feel free to add specific details": "ཞིབ་ཕྲ་ངེས་ཅན་སྣོན་པར་སེམས་ཁྲལ་མེད།",
|
||||
"Female": "",
|
||||
"File": "ཡིག་ཆ།",
|
||||
"File added successfully.": "ཡིག་ཆ་ལེགས་པར་བསྣན་ཟིན།",
|
||||
"File content updated successfully.": "ཡིག་ཆའི་ནང་དོན་ལེགས་པར་གསར་སྒྱུར་བྱས་ཟིན།",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Gemini API Config",
|
||||
"Gemini API Key is required.": "Gemini API ལྡེ་མིག་དགོས་ངེས།",
|
||||
"Gender": "",
|
||||
"General": "སྤྱིར་བཏང་།",
|
||||
"Generate": "",
|
||||
"Generate an image": "པར་ཞིག་བཟོ་བ།",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Google PSE API ལྡེ་མིག",
|
||||
"Google PSE Engine Id": "Google PSE Engine Id",
|
||||
"Gravatar": "",
|
||||
"Group": "ཚོགས་པ།",
|
||||
"Group created successfully": "ཚོགས་པ་ལེགས་པར་བཟོས་ཟིན།",
|
||||
"Group deleted successfully": "ཚོགས་པ་ལེགས་པར་བསུབས་ཟིན།",
|
||||
"Group Description": "ཚོགས་པའི་འགྲེལ་བཤད།",
|
||||
"Group Name": "ཚོགས་པའི་མིང་།",
|
||||
"Group": "ཚོགས་པ།",
|
||||
"Group updated successfully": "ཚོགས་པ་ལེགས་པར་གསར་སྒྱུར་བྱས་ཟིན།",
|
||||
"Groups": "ཚོགས་པ།",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "ལག་ཆ་ནང་འདྲེན།",
|
||||
"Important Update": "གལ་ཆེ་པའི་གསར་སྒྱུར་",
|
||||
"Include": "ཚུད་པ།",
|
||||
"Includes SharePoint": "SharePoint ཚུད་པ།",
|
||||
"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` དར་ཆ་ཚུད་པ།",
|
||||
"Includes SharePoint": "SharePoint ཚུད་པ།",
|
||||
"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": "གནས་ཚུལ།",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "ནང་དོན་ཆ་ཚང་དེ་ནང་དོན་དུ་བཅུག་ནས་སྒྲུབ་རིམ་ཆ་ཚང་བྱེད་པ། འདི་ནི་འདྲི་བ་རྙོག་འཛིང་ཅན་གྱི་ཆེད་དུ་འོས་སྦྱོར་བྱེད།",
|
||||
"Input": "",
|
||||
"Input commands": "ནང་འཇུག་བཀའ་བརྡ།",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "དེ་དག་འདིས་བསྐོར་བ་ཁག་ཐེག་བྱེད་པ།",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "ComfyUI ནས་ workflow.json ཡིག་ཆ་ API བཀོད་པའི་ཐོག་ཕྱིར་གཏོང་བྱེད་པ་ཁག་ཐེག་བྱེད་པ།",
|
||||
"Male": "",
|
||||
"Manage": "དོ་དམ།",
|
||||
"Manage Direct Connections": "ཐད་ཀར་སྦྲེལ་མཐུད་དོ་དམ།",
|
||||
"Manage Models": "དཔེ་དབྱིབས་དོ་དམ།",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "OpenAI API སྦྲེལ་མཐུད་དོ་དམ།",
|
||||
"Manage Pipelines": "རྒྱུ་ལམ་དོ་དམ།",
|
||||
"Manage Tool Servers": "ལག་ཆའི་སར་བར་དོ་དམ།",
|
||||
"Manage your account information.": "",
|
||||
"March": "ཟླ་བ་གསུམ་པ།",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "མང་བ།",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "མིང་།",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "ཁྱེད་ཀྱི་ཤེས་བྱའི་རྟེན་གཞི་ལ་མིང་ཐོགས།",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "ནང་དོན་མ་རྙེད།",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "བཤད་རྒྱུའི་ནང་དོན་མེད།",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "ཐག་རིང་ཚད་མེད།",
|
||||
"No feedbacks found": "བསམ་འཆར་མ་རྙེད།",
|
||||
"No file selected": "ཡིག་ཆ་གདམ་ག་མ་བྱས།",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "འབྲས་བུ་མ་རྙེད།",
|
||||
"No search query generated": "འཚོལ་བཤེར་འདྲི་བ་བཟོས་མེད།",
|
||||
"No source available": "འབྱུང་ཁུངས་མེད།",
|
||||
"No suggestion prompts": "གསལ་འདེབས་མེད།",
|
||||
"No users were found.": "བེད་སྤྱོད་མཁན་མ་རྙེད།",
|
||||
"No valves": "",
|
||||
"No valves to update": "གསར་སྒྱུར་བྱེད་རྒྱུའི་ Valve མེད།",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "གསལ་འདེབས་མེད།",
|
||||
"None": "གཅིག་ཀྱང་མེད།",
|
||||
"Not factually correct": "དོན་དངོས་དང་མི་མཐུན།",
|
||||
"Not helpful": "ཕན་ཐོགས་མེད།",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "OpenAI API སྒྲིག་འགོད་གསར་སྒྱུར་བྱས།",
|
||||
"OpenAI URL/Key required.": "OpenAI URL/ལྡེ་མིག་དགོས་ངེས།",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "ཡང་ན།",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "གཤམ་གསལ་ཉེན་བརྡ་དག་ལ་ཞིབ་ཚགས་ངང་བལྟ་ཞིབ་བྱེད་རོགས།:",
|
||||
"Please do not close the settings page while loading the model.": "དཔེ་དབྱིབས་ནང་འཇུག་བྱེད་སྐབས་སྒྲིག་འགོད་ཤོག་ངོས་ཁ་མ་རྒྱག་རོགས།",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "འགུལ་སློང་ཞིག་འཇུག་རོགས།",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Port",
|
||||
"Positive attitude": "ལྟ་སྟངས་དགེ་མཚན།",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "སྔོན་སྦྱོར་ ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "སྔོན་སྦྱོར་ ID ནི་དཔེ་དབྱིབས་ཀྱི་ IDs ལ་སྔོན་སྦྱོར་ཞིག་སྣོན་ནས་སྦྲེལ་མཐུད་གཞན་དང་གདོང་ཐུག་ལས་གཡོལ་བར་བེད་སྤྱོད་བྱེད། - ནུས་མེད་བཏང་བར་སྟོང་པ་བཞག་པ།",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "སྒེར།",
|
||||
"Profile": "སྤྱི་ཐག",
|
||||
"Profile Image": "སྤྱི་ཐག་པར།",
|
||||
"Prompt": "འགུལ་སློང་།",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "འགུལ་སློང་ (དཔེར་ན། རོམ་མའི་གོང་མའི་རྒྱལ་ཁབ་སྐོར་གྱི་དགོད་བྲོ་བའི་དོན་དངོས་ཤིག་ང་ལ་ཤོད་པ།)",
|
||||
"Prompt Autocompletion": "འགུལ་སློང་རང་འཚང་།",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "བསྐྱར་སྒྲིག་དཔེ་དབྱིབས།",
|
||||
"Reset": "སླར་སྒྲིག",
|
||||
"Reset All Models": "དཔེ་དབྱིབས་ཡོངས་རྫོགས་སླར་སྒྲིག",
|
||||
"Reset Image": "བརྙན་རིས་བསྐྱར་སྒྲིག",
|
||||
"Reset Upload Directory": "སྤར་བའི་ཐོ་འཚོལ་སླར་སྒྲིག",
|
||||
"Reset Vector Storage/Knowledge": "ཚད་བརྡའི་གསོག་ཆས།/ཤེས་བྱ་སླར་སྒྲིག",
|
||||
"Reset view": "མཐོང་སྣང་སླར་སྒྲིག",
|
||||
"Reset Image": "བརྙན་རིས་བསྐྱར་སྒྲིག",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "དྲ་ཚིགས་ཀྱི་དབང་ཚད་ཁས་མ་བླངས་པས་ལན་གྱི་བརྡ་ཁྱབ་སྒུལ་བསྐྱོད་བྱེད་མི་ཐུབ། དགོས་ངེས་ཀྱི་འཛུལ་སྤྱོད་སྤྲོད་པར་ཁྱེད་ཀྱི་བརྡ་འཚོལ་ཆས་ཀྱི་སྒྲིག་འགོད་ལ་ལྟ་རོགས།",
|
||||
"Response splitting": "ལན་བགོ་བ།",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "འབྲས་བུ།",
|
||||
"Result": "འབྲས་བུ།",
|
||||
"RESULT": "འབྲས་བུ།",
|
||||
"Retrieval": "ལེན་ཚུར་སྒྲུབ།",
|
||||
"Retrieval Query Generation": "ལེན་ཚུར་སྒྲུབ་འདྲི་བ་བཟོ་སྐྲུན།",
|
||||
"Rich Text Input for Chat": "ཁ་བརྡའི་ཆེད་དུ་ཡིག་རྐྱང་ཕུན་སུམ་ཚོགས་པའི་ནང་འཇུག",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "ཉར་ཚགས་ & གསར་བཟོ།",
|
||||
"Save & Update": "ཉར་ཚགས་ & གསར་སྒྱུར།",
|
||||
"Save As Copy": "འདྲ་བཤུས་ཐོག་ཉར་ཚགས།",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "རྟགས་ཉར་ཚགས།",
|
||||
"Saved": "ཉར་ཚགས་བྱས།",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "ཁ་བརྡའི་ཟིན་ཐོ་ཐད་ཀར་ཁྱེད་ཀྱི་བརྡ་འཚོལ་ཆས་ཀྱི་གསོག་ཆས་སུ་ཉར་ཚགས་བྱེད་པར་ད་ནས་བཟུང་རྒྱབ་སྐྱོར་མེད། གཤམ་གྱི་མཐེབ་གནོན་མནན་ནས་ཁྱེད་ཀྱི་ཁ་བརྡའི་ཟིན་ཐོ་ཕབ་ལེན་དང་བསུབ་པར་དུས་ཚོད་ཅུང་ཟད་བླང་རོགས། སེམས་ཁྲལ་མེད། ཁྱེད་ཀྱིས་སྟབས་བདེ་པོར་ཁྱེད་ཀྱི་ཁ་བརྡའི་ཟིན་ཐོ་རྒྱབ་སྣེ་ལ་བསྐྱར་དུ་ནང་འདྲེན་བྱེད་ཐུབ།",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "མཉམ་སྤྱོད།",
|
||||
"Share Chat": "ཁ་བརྡ་མཉམ་སྤྱོད།",
|
||||
"Share to Open WebUI Community": "Open WebUI སྤྱི་ཚོགས་ལ་མཉམ་སྤྱོད།",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "མཉམ་སྤྱོད་དབང་ཚད།",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "སྟོན་པ།",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "གཏམ་བཤད་ནས་ཡིག་རྐྱང་གི་འཕྲུལ་འཁོར།",
|
||||
"Start of the channel": "རྒྱས་ལམ་འགོ་རིམ་",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "མཚམས་འཇོག",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "མཚམས་འཇོག་རིམ་པ།",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "STT དཔེ་དབྱིབས།",
|
||||
"STT Settings": "STT སྒྲིག་འགོད།",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "ང་ཚོ་ལ་མང་ཙམ་ཤོད།:",
|
||||
"Temperature": "དྲོད་ཚད།",
|
||||
"Temporary Chat": "གནས་སྐབས་ཁ་བརྡ།",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "ཡིག་རྐྱང་བགོ་བྱེད།",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "ཡིག་རྐྱང་ནས་གཏམ་བཤད་ཀྱི་འཕྲུལ་འཁོར།",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL མ་དཔེ།",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "འགུལ་སློང་ནང་འཇུག་ཏུ་ '#' བེད་སྤྱོད་ནས་ཁྱེད་ཀྱི་ཤེས་བྱ་ནང་འཇུག་དང་ཚུད་པ།",
|
||||
"Use Gravatar": "Gravatar བེད་སྤྱོད།",
|
||||
"Use groups to group your users and assign permissions.": "ཁྱེད་ཀྱི་བེད་སྤྱོད་མཁན་ཚོགས་པ་བཟོ་བ་དང་དབང་ཚད་སྤྲོད་པར་ཚོགས་པ་བེད་སྤྱོད་གཏོང་བ།",
|
||||
"Use Initials": "མིང་གི་ཡིག་འབྲུ་མགོ་མ་བེད་སྤྱོད།",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "ཁྱེད་ཀྱིས་ཁ་བརྡ་འདི་མཉམ་སྤྱོད་བྱས་ཡོད།",
|
||||
"You're a helpful assistant.": "ཁྱེད་ནི་ཕན་ཐོགས་པའི་ལག་རོགས་པ་ཞིག་ཡིན།",
|
||||
"You're now logged in.": "ཁྱེད་ད་ལྟ་ནང་འཛུལ་བྱས་ཟིན།",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "ཁྱེད་ཀྱི་རྩིས་ཁྲའི་གནས་སྟངས་ད་ལྟ་སྒུལ་བསྐྱོད་སྒུག་བཞིན་པ།",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "ཁྱེད་ཀྱི་ཞལ་འདེབས་ཆ་ཚང་ཐད་ཀར་ plugin གསར་སྤེལ་བ་ལ་འགྲོ་ངེས། Open WebUI ཡིས་བརྒྱ་ཆ་གང་ཡང་མི་ལེན། འོན་ཀྱང་། གདམ་ཟིན་པའི་མ་དངུལ་གཏོང་བའི་སྟེགས་བུ་ལ་དེའི་རང་གི་འགྲོ་གྲོན་ཡོད་སྲིད།",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "Es requereix l'URL Base d'AUTOMATIC1111.",
|
||||
"Available list": "Llista de disponibles",
|
||||
"Available Tools": "Eines disponibles",
|
||||
"available!": "disponible!",
|
||||
"available users": "usuaris disponibles",
|
||||
"available!": "disponible!",
|
||||
"Away": "Absent",
|
||||
"Awful": "Terrible",
|
||||
"Azure AI Speech": "Azure AI Speech",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Punt de connexió a Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Clau de subscripció a Bing Search V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "Pes BM25",
|
||||
"Bocha Search API Key": "Clau API de Bocha Search",
|
||||
"Bold": "Negreta",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Controls de xat",
|
||||
"Chat direction": "Direcció del xat",
|
||||
"Chat ID": "ID del xat",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Vista general del xat",
|
||||
"Chat Permissions": "Permisos del xat",
|
||||
"Chat Tags Auto-Generation": "Generació automàtica d'etiquetes del xat",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Controlar la repetició de seqüències de tokens en el text generat. Un valor més alt (p. ex., 1,5) penalitzarà les repeticions amb més força, mentre que un valor més baix (p. ex., 1,1) serà més indulgent. A l'1, està desactivat.",
|
||||
"Controls": "Controls",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Controla l'equilibri entre la coherència i la diversitat de la sortida. Un valor més baix donarà lloc a un text més enfocat i coherent.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Copiat",
|
||||
"Copied link to clipboard": "Enllaç copiat al portaretalls",
|
||||
"Copied shared chat URL to clipboard!": "S'ha copiat l'URL compartida al porta-retalls!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Documents",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "no realitza connexions externes, i les teves dades romanen segures al teu servidor allotjat localment.",
|
||||
"Domain Filter List": "Llista de filtre de dominis",
|
||||
"don't fetch random pipelines from sources you don't trust.": "No obtinguis pipelines aleatòries de fonts no fiables.",
|
||||
"Don't have an account?": "No tens un compte?",
|
||||
"don't install random functions from sources you don't trust.": "no instal·lis funcions aleatòries de fonts en què no confiïs.",
|
||||
"don't install random tools from sources you don't trust.": "no instal·lis eines aleatòries de fonts en què no confiïs.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "No obtinguis pipelines aleatòries de fonts no fiables.",
|
||||
"Don't like the style": "No t'agrada l'estil?",
|
||||
"Done": "Fet",
|
||||
"Download": "Descarregar",
|
||||
"Download & Delete": "Descarregar i suprimir",
|
||||
"Download as SVG": "Descarrega com a SVG",
|
||||
"Download canceled": "Descàrrega cancel·lada",
|
||||
"Download Database": "Descarregar la base de dades",
|
||||
"Download & Delete": "Descarregar i suprimir",
|
||||
"Drag and drop a file to upload or select a file to view": "Arrossega un fitxer per pujar-lo o selecciona'n un per visualitzar-lo",
|
||||
"Draw": "Dibuixar",
|
||||
"Drop any files here to upload": "Arrossega aquí qualsevol fitxer per pujar-lo",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Introdueix la clau API de Google PSE",
|
||||
"Enter Google PSE Engine Id": "Introdueix l'identificador del motor PSE de Google",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Introdueix la mida de la imatge (p. ex. 512x512)",
|
||||
"Enter Jina API Key": "Introdueix la clau API de Jina",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "Introdueix la configuració JSON (per exemple, {\"disable_links\": true})",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "Introdueix la contrassenya de Yacy",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Introdueix la URL de Yacy (p. ex. http://yacy.example.com:8090)",
|
||||
"Enter Yacy Username": "Introdueix l'usuari de Yacy",
|
||||
"Enter your code here...": "Introduïu el vostre codi aquí...",
|
||||
"Enter your current password": "Introdueix la teva contrasenya actual",
|
||||
"Enter Your Email": "Introdueix el teu correu electrònic",
|
||||
"Enter Your Full Name": "Introdueix el teu nom complet",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Introdueix el teu missatge",
|
||||
"Enter your name": "Entra el teu nom",
|
||||
"Enter Your Name": "Entra el teu nom",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Introdueix el teu rol",
|
||||
"Enter Your Username": "Introdueix el teu nom d'usuari",
|
||||
"Enter your webhook URL": "Entra la URL del webhook",
|
||||
"Enter your code here...": "Introduïu el vostre codi aquí...",
|
||||
"Error": "Error",
|
||||
"ERROR": "ERROR",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "No s'ha pogut generar el títol",
|
||||
"Failed to load chat preview": "No s'ha pogut carregar la previsualització del xat",
|
||||
"Failed to load file content.": "No s'ha pogut carregar el contingut del fitxer",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "No s'ha pogut llegir el contingut del porta-retalls",
|
||||
"Failed to save connections": "No s'han pogut desar les connexions",
|
||||
"Failed to save conversation": "No s'ha pogut desar la conversa",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Històric de comentaris",
|
||||
"Feedbacks": "Comentaris",
|
||||
"Feel free to add specific details": "Sent-te lliure d'afegir detalls específics",
|
||||
"Female": "",
|
||||
"File": "Arxiu",
|
||||
"File added successfully.": "L'arxiu s'ha afegit correctament.",
|
||||
"File content updated successfully.": "El contingut de l'arxiu s'ha actualitzat correctament.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Configuració de Gemini API",
|
||||
"Gemini API Key is required.": "La clau API de Gemini és necessària",
|
||||
"Gender": "",
|
||||
"General": "General",
|
||||
"Generate": "Generar",
|
||||
"Generate an image": "Generar una imatge",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Clau API PSE de Google",
|
||||
"Google PSE Engine Id": "Identificador del motor PSE de Google",
|
||||
"Gravatar": "",
|
||||
"Group": "Grup",
|
||||
"Group created successfully": "El grup s'ha creat correctament",
|
||||
"Group deleted successfully": "El grup s'ha eliminat correctament",
|
||||
"Group Description": "Descripció del grup",
|
||||
"Group Name": "Nom del grup",
|
||||
"Group": "Grup",
|
||||
"Group updated successfully": "Grup actualitzat correctament",
|
||||
"Groups": "Grups",
|
||||
"H1": "H1",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Importar eines",
|
||||
"Important Update": "Actualització important",
|
||||
"Include": "Incloure",
|
||||
"Includes SharePoint": "Inclou SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Inclou SharePoint",
|
||||
"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ó",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injectar tot el contingut com a context per a un processament complet, això es recomana per a consultes complexes.",
|
||||
"Input": "Entrada",
|
||||
"Input commands": "Entra comandes",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "Fer que la contrasenya sigui visible a la interficie d'usuari",
|
||||
"Make sure to enclose them with": "Assegura't d'envoltar-los amb",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Assegura't d'exportar un fitxer workflow.json com a format API des de ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Gestionar",
|
||||
"Manage Direct Connections": "Gestionar les connexions directes",
|
||||
"Manage Models": "Gestionar els models",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Gestionar les connexions a l'API d'OpenAI",
|
||||
"Manage Pipelines": "Gestionar les Pipelines",
|
||||
"Manage Tool Servers": "Gestionar els servidors d'eines",
|
||||
"Manage your account information.": "",
|
||||
"March": "Març",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "Markdown (encapçalament)",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Més",
|
||||
"More Concise": "Més precís",
|
||||
"More Options": "Més opcions",
|
||||
"Move": "",
|
||||
"Name": "Nom",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Anomena la teva base de coneixement",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "No s'ha trobat contingut",
|
||||
"No content found in file.": "No s'ha trobat contingut en el fitxer.",
|
||||
"No content to speak": "No hi ha contingut per parlar",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "No hi ha distància disponible",
|
||||
"No feedbacks found": "No s'han trobat comentaris",
|
||||
"No file selected": "No s'ha escollit cap fitxer",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "No s'han trobat resultats",
|
||||
"No search query generated": "No s'ha generat cap consulta",
|
||||
"No source available": "Sense font disponible",
|
||||
"No suggestion prompts": "Cap prompt suggerit",
|
||||
"No users were found.": "No s'han trobat usuaris",
|
||||
"No valves": "",
|
||||
"No valves to update": "No hi ha cap Valve per actualitzar",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Cap prompt suggerit",
|
||||
"None": "Cap",
|
||||
"Not factually correct": "No és clarament correcte",
|
||||
"Not helpful": "No ajuda",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "Configuració de l'API d'OpenAI actualitzada",
|
||||
"OpenAI URL/Key required.": "URL/Clau d'OpenAI requerides.",
|
||||
"openapi.json URL or Path": "Camí o URL a openapi.json",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Opcions per executar un model de llenguatge amb visió local a la descripció de la imatge. Els paràmetres fan referència a un model allotjat a HuggingFace. Aquest paràmetre és mutuament excloent amb picture_description_api.",
|
||||
"or": "o",
|
||||
"Ordered List": "Llista ordenada",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "URL del WebSocket de Playwright",
|
||||
"Please carefully review the following warnings:": "Si us plau, revisa els següents avisos amb cura:",
|
||||
"Please do not close the settings page while loading the model.": "No tanquis la pàgina de configuració mentre carregues el model.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Si us plau, entra una indicació",
|
||||
"Please enter a valid path": "Si us plau, entra un camí vàlid",
|
||||
"Please enter a valid URL": "Si us plau, entra una URL vàlida",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "Si us plau, espera fins que s'hagin carregat tots els fitxers.",
|
||||
"Port": "Port",
|
||||
"Positive attitude": "Actitud positiva",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Identificador del prefix",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "L'identificador de prefix s'utilitza per evitar conflictes amb altres connexions afegint un prefix als ID de model; deixa'l en blanc per desactivar-lo.",
|
||||
"Prevent file creation": "Impedir la creació d'arxius",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "Missatge anterior",
|
||||
"Private": "Privat",
|
||||
"Profile": "Perfil",
|
||||
"Profile Image": "Imatge de perfil",
|
||||
"Prompt": "Indicació",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Indicació (p. ex. Digues-me quelcom divertit sobre l'Imperi Romà)",
|
||||
"Prompt Autocompletion": "Completar automàticament la indicació",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Model de reavaluació",
|
||||
"Reset": "Restableix",
|
||||
"Reset All Models": "Restablir tots els models",
|
||||
"Reset Image": "Restableix la imatge",
|
||||
"Reset Upload Directory": "Restableix el directori de pujades",
|
||||
"Reset Vector Storage/Knowledge": "Restableix el Repositori de vectors/Coneixement",
|
||||
"Reset view": "Netejar la vista",
|
||||
"Reset Image": "Restableix la imatge",
|
||||
"Response": "Resposta",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Les notifications de resposta no es poden activar perquè els permisos del lloc web han estat rebutjats. Comprova les preferències del navegador per donar l'accés necessari.",
|
||||
"Response splitting": "Divisió de la resposta",
|
||||
"Response Watermark": "Marca d'aigua de la resposta",
|
||||
"RESULT": "Resultat",
|
||||
"Result": "Resultat",
|
||||
"RESULT": "Resultat",
|
||||
"Retrieval": "Retrieval",
|
||||
"Retrieval Query Generation": "Generació de consultes Retrieval",
|
||||
"Rich Text Input for Chat": "Entrada de text ric per al xat",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Desar i crear",
|
||||
"Save & Update": "Desar i actualitzar",
|
||||
"Save As Copy": "Desar com a còpia",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Desar l'etiqueta",
|
||||
"Saved": "Desat",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Desar els registres de xat directament a l'emmagatzematge del teu navegador ja no està suportat. Si us plau, descarregr i elimina els registres de xat fent clic al botó de sota. No et preocupis, pots tornar a importar fàcilment els teus registres de xat al backend a través de",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Compartir",
|
||||
"Share Chat": "Compartir el xat",
|
||||
"Share to Open WebUI Community": "Compartir amb la comunitat OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Compartir els permisos",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Les dreceres de teclat amb un asterisc (*) són situacionals i només actives sota condicions específiques.",
|
||||
"Show": "Mostrar",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "Àudio-a-Text",
|
||||
"Speech-to-Text Engine": "Motor de veu a text",
|
||||
"Start of the channel": "Inici del canal",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Atura",
|
||||
"Stop Generating": "Atura la generació",
|
||||
"Stop Sequence": "Atura la seqüència",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "Ratllat",
|
||||
"Strip Existing OCR": "Eliminar OCR existent",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Elimina el text OCR existent del PDF i torna a executar l'OCR. S'ignora si Força OCR està habilitat. Per defecte és Fals.",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Model SST",
|
||||
"STT Settings": "Preferències de STT",
|
||||
"Stylized PDF Export": "Exportació en PDF estilitzat",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Dona'ns més informació:",
|
||||
"Temperature": "Temperatura",
|
||||
"Temporary Chat": "Xat temporal",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Separador de text",
|
||||
"Text-to-Speech": "Text-a-veu",
|
||||
"Text-to-Speech Engine": "Motor de text a veu",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Mode URL",
|
||||
"Usage": "Ús",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Utilitza '#' a l'entrada de la indicació per carregar i incloure els teus coneixements.",
|
||||
"Use Gravatar": "Utilitzar Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "Utilitza grups per agrupar els usuaris i assignar permisos.",
|
||||
"Use Initials": "Utilitzar inicials",
|
||||
"Use LLM": "Utilizar model de llenguatge",
|
||||
"Use no proxy to fetch page contents.": "No utilitzis un proxy per obtenir contingut de la pàgina.",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Utilitza el proxy designat per les variables d'entorn http_proxy i https_proxy per obtenir el contingut de la pàgina.",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Has compartit aquest xat",
|
||||
"You're a helpful assistant.": "Ets un assistent útil.",
|
||||
"You're now logged in.": "Ara estàs connectat.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "El compte està actualment pendent d'activació",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Tota la teva contribució anirà directament al desenvolupador del complement; Open WebUI no se'n queda cap percentatge. Tanmateix, la plataforma de finançament escollida pot tenir les seves pròpies comissions.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "Ang AUTOMATIC1111 base URL gikinahanglan.",
|
||||
"Available list": "",
|
||||
"Available Tools": "",
|
||||
"available!": "magamit!",
|
||||
"available users": "magamit nga mga tiggamit",
|
||||
"available!": "magamit!",
|
||||
"Away": "Wala",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "",
|
||||
"Chat direction": "",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Mga dokumento",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "wala maghimo ug eksternal nga koneksyon, ug ang imong data nagpabiling luwas sa imong lokal nga host server.",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ayaw kuhaa og random nga pipelines gikan sa dili kasaligan nga mga tinubdan.",
|
||||
"Don't have an account?": "Wala kay account ?",
|
||||
"don't install random functions from sources you don't trust.": "",
|
||||
"don't install random tools from sources you don't trust.": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ayaw kuhaa og random nga pipelines gikan sa dili kasaligan nga mga tinubdan.",
|
||||
"Don't like the style": "",
|
||||
"Done": "",
|
||||
"Download": "",
|
||||
"Download & Delete": "I-download ug papas",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "",
|
||||
"Download Database": "I-download ang database",
|
||||
"Download & Delete": "I-download ug papas",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "",
|
||||
"Enter Google PSE Engine Id": "",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Pagsulod sa gidak-on sa hulagway (pananglitan 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Isulod ang imong kodigo dinhi...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "Pagsulod sa imong e-mail address",
|
||||
"Enter Your Full Name": "Ibutang ang imong tibuok nga ngalan",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "Isulod ang imong kodigo dinhi...",
|
||||
"Error": "",
|
||||
"ERROR": "",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Napakyas sa pagbasa sa sulod sa clipboard",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Napakyas sa pagtipig sa panag-istorya",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "",
|
||||
"Female": "",
|
||||
"File": "",
|
||||
"File added successfully.": "",
|
||||
"File content updated successfully.": "",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "Heneral",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "",
|
||||
"Google PSE Engine Id": "",
|
||||
"Gravatar": "",
|
||||
"Group": "Grupo",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group": "Grupo",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "",
|
||||
"Important Update": "Mahinungdanong update",
|
||||
"Include": "",
|
||||
"Includes SharePoint": "Naglakip sa SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Naglakip sa SharePoint",
|
||||
"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": "",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "Pagsulod sa input commands",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Siguruha nga palibutan sila",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Ngalan",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "",
|
||||
"No feedbacks found": "",
|
||||
"No file selected": "",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "",
|
||||
"No search query generated": "",
|
||||
"No source available": "Walay tinubdan nga anaa",
|
||||
"No suggestion prompts": "Walay gisugyot nga prompt",
|
||||
"No users were found.": "",
|
||||
"No valves": "",
|
||||
"No valves to update": "",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Walay gisugyot nga prompt",
|
||||
"None": "",
|
||||
"Not factually correct": "",
|
||||
"Not helpful": "",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "O",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "Profil",
|
||||
"Profile Image": "",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "",
|
||||
"Reset": "",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "I-reset ang hulagway",
|
||||
"Reset Upload Directory": "",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "",
|
||||
"Reset Image": "I-reset ang hulagway",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
|
||||
"Response splitting": "",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "RESULTA",
|
||||
"Result": "",
|
||||
"RESULT": "RESULTA",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "I-save ug Paghimo",
|
||||
"Save & Update": "I-save ug I-update",
|
||||
"Save As Copy": "",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "",
|
||||
"Saved": "",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Ang pag-save sa mga chat log direkta sa imong browser storage dili na suportado. ",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "",
|
||||
"Share Chat": "",
|
||||
"Share to Open WebUI Community": "Ipakigbahin sa komunidad sa OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Pagpakita",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Engine sa pag-ila sa tingog",
|
||||
"Start of the channel": "Sinugdan sa channel",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Pagkasunod-sunod sa pagsira",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "",
|
||||
"STT Settings": "Mga setting sa STT",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "",
|
||||
"Temperature": "Temperatura",
|
||||
"Temporary Chat": "",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Text-to-speech nga makina",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL mode",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "Paggamit sa Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "",
|
||||
"You're a helpful assistant.": "Usa ka ka mapuslanon nga katabang",
|
||||
"You're now logged in.": "Konektado ka na karon.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
|
||||
"Youtube": "",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "Je vyžadována základní URL pro AUTOMATIC1111.",
|
||||
"Available list": "Seznam dostupných",
|
||||
"Available Tools": "Dostupné nástroje",
|
||||
"available!": "k dispozici!",
|
||||
"available users": "dostupní uživatelé",
|
||||
"available!": "k dispozici!",
|
||||
"Away": "Nepřítomen",
|
||||
"Awful": "Hrozné",
|
||||
"Azure AI Speech": "Azure AI Speech",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Koncový bod Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Klíč předplatného Bing Search V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "Váha BM25",
|
||||
"Bocha Search API Key": "API klíč pro Bocha Search",
|
||||
"Bold": "Tučně",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Ovládání konverzace",
|
||||
"Chat direction": "Směr konverzace",
|
||||
"Chat ID": "ID konverzace",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Přehled konverzace",
|
||||
"Chat Permissions": "Oprávnění konverzace",
|
||||
"Chat Tags Auto-Generation": "Automatické generování štítků konverzace",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Řídí opakování sekvencí tokenů v generovaném textu. Vyšší hodnota (např. 1,5) bude opakování penalizovat silněji, zatímco nižší hodnota (např. 1,1) bude mírnější. Při hodnotě 1 je funkce vypnuta.",
|
||||
"Controls": "Ovládací prvky",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Řídí rovnováhu mezi soudržností a rozmanitostí výstupu. Nižší hodnota povede k soustředěnějšímu a soudržnějšímu textu.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Zkopírováno",
|
||||
"Copied link to clipboard": "Odkaz zkopírován do schránky",
|
||||
"Copied shared chat URL to clipboard!": "URL sdílené konverzace zkopírována do schránky!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Dokumenty",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "nevytváří žádná externí připojení a vaše data zůstávají bezpečně na vašem lokálně hostovaném serveru.",
|
||||
"Domain Filter List": "Seznam pro filtrování domén",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Nestahujte náhodné pipelines ze zdrojů, kterým nedůvěřujete.",
|
||||
"Don't have an account?": "Nemáte účet?",
|
||||
"don't install random functions from sources you don't trust.": "neinstalujte náhodné funkce ze zdrojů, kterým nedůvěřujete.",
|
||||
"don't install random tools from sources you don't trust.": "neinstalujte náhodné nástroje ze zdrojů, kterým nedůvěřujete.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Nestahujte náhodné pipelines ze zdrojů, kterým nedůvěřujete.",
|
||||
"Don't like the style": "Nelíbí se mi styl",
|
||||
"Done": "Hotovo",
|
||||
"Download": "Stáhnout",
|
||||
"Download & Delete": "Stáhnout a smazat",
|
||||
"Download as SVG": "Stáhnout jako SVG",
|
||||
"Download canceled": "Stahování zrušeno",
|
||||
"Download Database": "Stáhnout databázi",
|
||||
"Download & Delete": "Stáhnout a smazat",
|
||||
"Drag and drop a file to upload or select a file to view": "Přetáhněte soubor pro nahrání nebo vyberte soubor k zobrazení",
|
||||
"Draw": "Kreslit",
|
||||
"Drop any files here to upload": "Přetáhněte sem soubory pro nahrání",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Zadejte API klíč pro Google PSE",
|
||||
"Enter Google PSE Engine Id": "Zadejte ID jádra Google PSE",
|
||||
"Enter hex color (e.g. #FF0000)": "Zadejte barvu v hex formátu (např. #FF0000)",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Zadejte velikost obrázku (např. 512x512)",
|
||||
"Enter Jina API Key": "Zadejte API klíč pro Jina",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "Zadejte JSON konfiguraci (např. {\"disable_links\": true})",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "Zadejte heslo pro Yacy",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Zadejte URL pro Yacy (např. http://yacy.priklad.com:8090)",
|
||||
"Enter Yacy Username": "Zadejte uživatelské jméno pro Yacy",
|
||||
"Enter your code here...": "Zadejte sem svůj kód...",
|
||||
"Enter your current password": "Zadejte své současné heslo",
|
||||
"Enter Your Email": "Zadejte svůj e-mail",
|
||||
"Enter Your Full Name": "Zadejte své celé jméno",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Napište zprávu",
|
||||
"Enter your name": "Zadejte své jméno",
|
||||
"Enter Your Name": "Zadejte své jméno",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Zadejte svou roli",
|
||||
"Enter Your Username": "Zadejte své uživatelské jméno",
|
||||
"Enter your webhook URL": "Zadejte URL svého webhooku",
|
||||
"Enter your code here...": "Zadejte sem svůj kód...",
|
||||
"Error": "Chyba",
|
||||
"ERROR": "CHYBA",
|
||||
"Error accessing directory": "Chyba při přístupu k adresáři",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "Nepodařilo se vygenerovat název",
|
||||
"Failed to load chat preview": "Nepodařilo se načíst náhled konverzace",
|
||||
"Failed to load file content.": "Nepodařilo se načíst obsah souboru.",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Nepodařilo se přečíst obsah schránky",
|
||||
"Failed to save connections": "Nepodařilo se uložit připojení",
|
||||
"Failed to save conversation": "Nepodařilo se uložit konverzaci",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Historie zpětné vazby",
|
||||
"Feedbacks": "Zpětné vazby",
|
||||
"Feel free to add specific details": "Neváhejte přidat konkrétní detaily.",
|
||||
"Female": "",
|
||||
"File": "Soubor",
|
||||
"File added successfully.": "Soubor byl úspěšně přidán.",
|
||||
"File content updated successfully.": "Obsah souboru byl úspěšně aktualizován.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Konfigurace API Gemini",
|
||||
"Gemini API Key is required.": "Je vyžadován API klíč pro Gemini.",
|
||||
"Gender": "",
|
||||
"General": "Obecné",
|
||||
"Generate": "Generovat",
|
||||
"Generate an image": "Generovat obrázek",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Disk Google",
|
||||
"Google PSE API Key": "API klíč pro Google PSE",
|
||||
"Google PSE Engine Id": "ID jádra Google PSE",
|
||||
"Gravatar": "",
|
||||
"Group": "Skupina",
|
||||
"Group created successfully": "Skupina byla úspěšně vytvořena",
|
||||
"Group deleted successfully": "Skupina byla úspěšně smazána",
|
||||
"Group Description": "Popis skupiny",
|
||||
"Group Name": "Název skupiny",
|
||||
"Group": "Skupina",
|
||||
"Group updated successfully": "Skupina byla úspěšně aktualizována",
|
||||
"Groups": "Skupiny",
|
||||
"H1": "H1",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Importovat nástroje",
|
||||
"Important Update": "Důležitá aktualizace",
|
||||
"Include": "Zahrnout",
|
||||
"Includes SharePoint": "Zahrnuje SharePoint",
|
||||
"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`.",
|
||||
"Includes SharePoint": "Zahrnuje SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Vložit celý obsah jako kontext pro komplexní zpracování, doporučeno pro složité dotazy.",
|
||||
"Input": "Vstup",
|
||||
"Input commands": "Vstupní příkazy",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "Zviditelnit heslo v uživatelském rozhraní",
|
||||
"Make sure to enclose them with": "Ujistěte se, že jsou uzavřeny v",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Ujistěte se, že exportujete soubor workflow.json ve formátu API z ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Spravovat",
|
||||
"Manage Direct Connections": "Spravovat přímá připojení",
|
||||
"Manage Models": "Spravovat modely",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Spravovat připojení k OpenAI API",
|
||||
"Manage Pipelines": "Spravovat potrubí",
|
||||
"Manage Tool Servers": "Spravovat servery nástrojů",
|
||||
"Manage your account information.": "",
|
||||
"March": "Březen",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "Markdown (nadpis)",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Více",
|
||||
"More Concise": "Stručnější",
|
||||
"More Options": "Další možnosti",
|
||||
"Move": "",
|
||||
"Name": "Jméno",
|
||||
"Name and ID are required, please fill them out": "Jméno a ID jsou povinné, prosím vyplňte je",
|
||||
"Name your knowledge base": "Pojmenujte svou znalostní bázi",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Nebyl nalezen žádný obsah.",
|
||||
"No content found in file.": "V souboru nebyl nalezen žádný obsah.",
|
||||
"No content to speak": "Žádný obsah k přečtení.",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Vzdálenost není k dispozici",
|
||||
"No feedbacks found": "Nebyla nalezena žádná zpětná vazba",
|
||||
"No file selected": "Nebyl vybrán žádný soubor",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Nebyly nalezeny žádné výsledky",
|
||||
"No search query generated": "Nebyl vygenerován žádný vyhledávací dotaz.",
|
||||
"No source available": "Není k dispozici žádný zdroj.",
|
||||
"No suggestion prompts": "Žádné návrhy promptů",
|
||||
"No users were found.": "Nebyli nalezeni žádní uživatelé.",
|
||||
"No valves": "Žádné ventily",
|
||||
"No valves to update": "Žádné ventily k aktualizaci",
|
||||
"Node Ids": "ID uzlů",
|
||||
"No suggestion prompts": "Žádné návrhy promptů",
|
||||
"None": "Žádný",
|
||||
"Not factually correct": "Fakticky nesprávné",
|
||||
"Not helpful": "Nepomohlo",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "Nastavení OpenAI API byla aktualizována",
|
||||
"OpenAI URL/Key required.": "Je vyžadována URL/klíč OpenAI.",
|
||||
"openapi.json URL or Path": "URL nebo cesta k openapi.json",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Možnosti pro spuštění lokálního vizuálně-jazykového modelu v popisu obrázku. Parametry odkazují na model hostovaný na Hugging Face. Tento parametr je vzájemně se vylučující s picture_description_api.",
|
||||
"or": "nebo",
|
||||
"Ordered List": "Číslovaný seznam",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "WebSocket URL pro Playwright",
|
||||
"Please carefully review the following warnings:": "Prosím, pečlivě si přečtěte následující varování:",
|
||||
"Please do not close the settings page while loading the model.": "Během načítání modelu prosím nezavírejte stránku s nastavením.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Zadejte prosím instrukce.",
|
||||
"Please enter a valid path": "Zadejte prosím platnou cestu",
|
||||
"Please enter a valid URL": "Zadejte prosím platnou URL",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "Prosím počkejte dokud nebudou všechny soubory nahrány.",
|
||||
"Port": "Port",
|
||||
"Positive attitude": "Pozitivní přístup",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Prefix ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID se používá k zamezení konfliktů s jinými připojeními přidáním prefixu k ID modelů - pro vypnutí ponechte prázdné",
|
||||
"Prevent file creation": "Zabránit vytváření souborů",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "Předchozí zpráva",
|
||||
"Private": "Soukromé",
|
||||
"Profile": "Profil",
|
||||
"Profile Image": "Profilový obrázek",
|
||||
"Prompt": "Instrukce",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Instrukce (např. Řekni mi zajímavost o Římské říši)",
|
||||
"Prompt Autocompletion": "Automatické doplňování instrukcí",
|
||||
|
|
@ -1152,7 +1169,7 @@
|
|||
"Record": "Nahrát",
|
||||
"Record voice": "Nahrát hlas",
|
||||
"Redirecting you to Open WebUI Community": "Přesměrovávám vás do komunity Open WebUI",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, a lower value (e.g. 10) will be more conservative.": "Snižuje pravděpodobnost generování nesmyslů. Vyšší hodnota (např. 100) poskytne rozmanitější odpovědi, zatímco nižší hodnota (např. 10) bude konzervativnější.",
|
||||
"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative.": "",
|
||||
"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Odkazujte na sebe jako na \"Uživatele\" (např. \"Uživatel se učí španělsky\").",
|
||||
"References from": "Reference z",
|
||||
"Refused when it shouldn't have": "Odmítnuto, i když nemělo být",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Model pro přehodnocení",
|
||||
"Reset": "Resetovat",
|
||||
"Reset All Models": "Resetovat všechny modely",
|
||||
"Reset Image": "Resetovat obrázek",
|
||||
"Reset Upload Directory": "Resetovat adresář pro nahrávání",
|
||||
"Reset Vector Storage/Knowledge": "Resetovat vektorové úložiště/znalosti",
|
||||
"Reset view": "Resetovat zobrazení",
|
||||
"Response": "Odpověď",
|
||||
"Reset Image": "Resetovat obrázek",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Oznámení o odpovědích nelze aktivovat, protože oprávnění webu byla zamítnuta. Navštivte nastavení svého prohlížeče a udělte potřebný přístup.",
|
||||
"Response splitting": "Dělení odpovědi",
|
||||
"Response Watermark": "Vodoznak odpovědi",
|
||||
"RESULT": "Výsledek",
|
||||
"Result": "Výsledek",
|
||||
"RESULT": "Výsledek",
|
||||
"Retrieval": "Vyhledávání",
|
||||
"Retrieval Query Generation": "Generování vyhledávacího dotazu",
|
||||
"Rich Text Input for Chat": "Pokročilé formátování vstupního pole konverzace",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Uložit a vytvořit",
|
||||
"Save & Update": "Uložit a aktualizovat",
|
||||
"Save As Copy": "Uložit jako kopii",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Uložit štítek",
|
||||
"Saved": "Uloženo",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Ukládání záznamů konverzací přímo do úložiště vašeho prohlížeče již není podporováno. Věnujte prosím chvíli stažení a smazání svých záznamů konverzací kliknutím na tlačítko níže. Nemějte obavy, své záznamy konverzací můžete snadno znovu importovat do backendu prostřednictvím",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Sdílet",
|
||||
"Share Chat": "Sdílet konverzaci",
|
||||
"Share to Open WebUI Community": "Sdílet s komunitou Open WebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Oprávnění pro sdílení",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Zkratky s hvězdičkou (*) jsou situační a aktivní pouze za specifických podmínek.",
|
||||
"Show": "Zobrazit",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "Převod řeči na text",
|
||||
"Speech-to-Text Engine": "Jádro pro převod řeči na text",
|
||||
"Start of the channel": "Začátek kanálu",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Zastavit",
|
||||
"Stop Generating": "Zastavit generování",
|
||||
"Stop Sequence": "Ukončovací sekvence",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "Přeškrtnutí",
|
||||
"Strip Existing OCR": "Odstranit existující OCR",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Odstranit existující text OCR z PDF a znovu spustit OCR. Ignorováno, pokud je povoleno Vynutit OCR. Výchozí hodnota je False.",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Model STT",
|
||||
"STT Settings": "Nastavení STT",
|
||||
"Stylized PDF Export": "Stylizovaný export do PDF",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Řekněte nám více:",
|
||||
"Temperature": "Teplota",
|
||||
"Temporary Chat": "Dočasná konverzace",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Rozdělovač textu",
|
||||
"Text-to-Speech": "Převod textu na řeč",
|
||||
"Text-to-Speech Engine": "Jádro pro převod textu na řeč",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Režim URL",
|
||||
"Usage": "Využití",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Použijte '#' ve vstupu promptu pro načtení a zahrnutí vašich znalostí.",
|
||||
"Use Gravatar": "Použít Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "Použijte skupiny pro seskupení uživatelů a přiřazení oprávnění.",
|
||||
"Use Initials": "Použít iniciály",
|
||||
"Use LLM": "Použít LLM",
|
||||
"Use no proxy to fetch page contents.": "Nepoužívat proxy pro načítání obsahu stránky.",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Použít proxy určenou proměnnými prostředí http_proxy a https_proxy pro načítání obsahu stránky.",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Tuto konverzaci jste sdíleli.",
|
||||
"You're a helpful assistant.": "Jsi užitečný asistent.",
|
||||
"You're now logged in.": "Nyní jste přihlášeni.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Stav vašeho účtu aktuálně čeká na aktivaci.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Celý váš příspěvek půjde přímo vývojáři pluginu; Open WebUI si nebere žádné procento. Zvolená platforma pro financování však může mít vlastní poplatky.",
|
||||
"Youtube": "YouTube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Base URL er påkrævet.",
|
||||
"Available list": "Tilgængelige lister",
|
||||
"Available Tools": "Tilgængelige værktøj",
|
||||
"available!": "tilgængelig!",
|
||||
"available users": "tilgængelige brugere",
|
||||
"available!": "tilgængelig!",
|
||||
"Away": "Fraværende",
|
||||
"Awful": "Forfærdeligt",
|
||||
"Azure AI Speech": "Azure AI Speech",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7 Endpoint",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 Subscription Key",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Bocha Search API Key",
|
||||
"Bold": "Fed",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Chat indstillinger",
|
||||
"Chat direction": "Chat retning",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Chat overblik",
|
||||
"Chat Permissions": "Chat tilladelser",
|
||||
"Chat Tags Auto-Generation": "Chat tags automatisk generering",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Kontroller gentagelsen af token-sekvenser i den genererede tekst. En højere værdi (f.eks. 1,5) vil straffe gentagelser stærkere, mens en lavere værdi (f.eks. 1,1) vil være mere tilgivende. Ved 1 er det deaktiveret.",
|
||||
"Controls": "Indstillinger",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Kontrollerer balancen mellem sammenhæng og mangfoldighed i output. En lavere værdi vil resultere i mere fokuseret og sammenhængende tekst.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Kopieret",
|
||||
"Copied link to clipboard": "Link kopieret til udklipsholder",
|
||||
"Copied shared chat URL to clipboard!": "Link til deling kopieret til udklipsholder",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Dokumenter",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "laver ikke eksterne kald, og din data bliver sikkert på din egen lokalt hostede server.",
|
||||
"Domain Filter List": "Domæne filterliste",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Hent ikke tilfældige pipelines fra kilder, du ikke stoler på.",
|
||||
"Don't have an account?": "Har du ikke en profil?",
|
||||
"don't install random functions from sources you don't trust.": "lad være med at installere tilfældige funktioner fra kilder, som du ikke stoler på.",
|
||||
"don't install random tools from sources you don't trust.": "lad være med at installere tilfældige værktøjer fra kilder, som du ikke stoler på.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Hent ikke tilfældige pipelines fra kilder, du ikke stoler på.",
|
||||
"Don't like the style": "Kan du ikke lide stilen",
|
||||
"Done": "Færdig",
|
||||
"Download": "Download",
|
||||
"Download & Delete": "Download og slet",
|
||||
"Download as SVG": "Download som SVG",
|
||||
"Download canceled": "Download afbrudt",
|
||||
"Download Database": "Download database",
|
||||
"Download & Delete": "Download og slet",
|
||||
"Drag and drop a file to upload or select a file to view": "Træk og slip en fil for at uploade eller vælg en fil for at se",
|
||||
"Draw": "Tegn",
|
||||
"Drop any files here to upload": "Drop nogen filer her for at uploade",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Indtast Google PSE API-nøgle",
|
||||
"Enter Google PSE Engine Id": "Indtast Google PSE Engine ID",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Indtast billedstørrelse (f.eks. 512x512)",
|
||||
"Enter Jina API Key": "Indtast Jina API nøgle",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "Indtast Yacy adgangskode",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Indtast Yacy URL (f.eks. http://yacy.example.com:8090)",
|
||||
"Enter Yacy Username": "Indtast Yacy brugernavn",
|
||||
"Enter your code here...": "Indtast din kode her...",
|
||||
"Enter your current password": "Indtast din nuværende adgangskode",
|
||||
"Enter Your Email": "Indtast din e-mail",
|
||||
"Enter Your Full Name": "Indtast dit fulde navn",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Indtast din besked",
|
||||
"Enter your name": "Indtast dit navn",
|
||||
"Enter Your Name": "Indtast dit navn",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Indtast din rolle",
|
||||
"Enter Your Username": "Indtast dit brugernavn",
|
||||
"Enter your webhook URL": "Indtast din webhook URL",
|
||||
"Enter your code here...": "Indtast din kode her...",
|
||||
"Error": "Fejl",
|
||||
"ERROR": "FEJL",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "Kunne ikke generere titel",
|
||||
"Failed to load chat preview": "Kunne ikke indlæse chat forhåndsvisning",
|
||||
"Failed to load file content.": "Kunne ikke indlæse filindhold.",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Kunne ikke læse indholdet af udklipsholderen",
|
||||
"Failed to save connections": "Kunne ikke gemme forbindelser",
|
||||
"Failed to save conversation": "Kunne ikke gemme samtalen",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Feedback historik",
|
||||
"Feedbacks": "Feedback",
|
||||
"Feel free to add specific details": "Du er velkommen til at tilføje specifikke detaljer",
|
||||
"Female": "",
|
||||
"File": "Fil",
|
||||
"File added successfully.": "Fil tilføjet.",
|
||||
"File content updated successfully.": "Filens indhold er opdateret.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Gemini API konfiguration",
|
||||
"Gemini API Key is required.": "Gemini API nøgle er påkrævet.",
|
||||
"Gender": "",
|
||||
"General": "Generelt",
|
||||
"Generate": "Generer",
|
||||
"Generate an image": "Generer et billede",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Google PSE API-nøgle",
|
||||
"Google PSE Engine Id": "Google PSE Engine-ID",
|
||||
"Gravatar": "",
|
||||
"Group": "Gruppe",
|
||||
"Group created successfully": "Gruppe oprettet.",
|
||||
"Group deleted successfully": "Gruppe slettet.",
|
||||
"Group Description": "Gruppe beskrivelse",
|
||||
"Group Name": "Gruppenavn",
|
||||
"Group": "Gruppe",
|
||||
"Group updated successfully": "Gruppe opdateret.",
|
||||
"Groups": "Grupper",
|
||||
"H1": "H1",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Importer værktøjer",
|
||||
"Important Update": "Vigtig opdatering",
|
||||
"Include": "Inkluder",
|
||||
"Includes SharePoint": "Inkluderer SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Inkluderer SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injicer alt indhold som kontekst til omfattende behandling, dette anbefales til komplekse forespørgsler.",
|
||||
"Input": "",
|
||||
"Input commands": "Inputkommandoer",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "Gør adgangskode synlig i brugergrænsefladen",
|
||||
"Make sure to enclose them with": "Sørg for at omslutte dem med",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Sørg for at eksportere en workflow.json-fil som API-format fra ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Administrer",
|
||||
"Manage Direct Connections": "Administrer direkte forbindelser",
|
||||
"Manage Models": "Administrer modeller",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Administrer OpenAI API forbindelser",
|
||||
"Manage Pipelines": "Administrer pipelines",
|
||||
"Manage Tool Servers": "Administrer værktøjsservere",
|
||||
"Manage your account information.": "",
|
||||
"March": "Marts",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "Markdown (Overskrift)",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Mere",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Navn",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Navngiv din vidensbase",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Intet indhold fundet",
|
||||
"No content found in file.": "Intet indhold fundet i fil.",
|
||||
"No content to speak": "Intet indhold at tale",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Ingen afstand tilgængelig",
|
||||
"No feedbacks found": "Ingen feedback fundet",
|
||||
"No file selected": "Ingen fil valgt",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Ingen resultater fundet",
|
||||
"No search query generated": "Ingen søgeforespørgsel genereret",
|
||||
"No source available": "Ingen kilde tilgængelig",
|
||||
"No suggestion prompts": "Ingen forslagsprompter",
|
||||
"No users were found.": "Ingen brugere blev fundet.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Ingen ventiler at opdatere",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Ingen forslagsprompter",
|
||||
"None": "Ingen",
|
||||
"Not factually correct": "Ikke faktuelt korrekt",
|
||||
"Not helpful": "Ikke hjælpsom",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "OpenAI API indstillinger opdateret",
|
||||
"OpenAI URL/Key required.": "OpenAI URL/nøgle påkrævet.",
|
||||
"openapi.json URL or Path": "openapi.json URL eller sti",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Muligheder for at køre en lokal vision-sprog model i billedbeskrivelsen. Parametrene henviser til en model hostet på Hugging Face. Denne parameter er gensidigt udelukkende med picture_description_api.",
|
||||
"or": "eller",
|
||||
"Ordered List": "Nummereret liste",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "Playwright WebSocket URL",
|
||||
"Please carefully review the following warnings:": "Gennemgå omhyggeligt følgende advarsler:",
|
||||
"Please do not close the settings page while loading the model.": "Luk ikke indstillingerne, mens modellen indlæses.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Indtast en prompt",
|
||||
"Please enter a valid path": "Indtast en gyldig sti",
|
||||
"Please enter a valid URL": "Indtast en gyldig URL",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Port",
|
||||
"Positive attitude": "Positiv holdning",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Prefix ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID bruges til at undgå konflikter med andre forbindelser ved at tilføje et prefix til model-ID'erne - lad være tom for at deaktivere",
|
||||
"Prevent file creation": "Forhindr filoprettelse",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "Forrige besked",
|
||||
"Private": "Privat",
|
||||
"Profile": "Profil",
|
||||
"Profile Image": "Profilbillede",
|
||||
"Prompt": "Prompt",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (f.eks. Fortæl mig en sjov fakta om Romerriget)",
|
||||
"Prompt Autocompletion": "Prompt autofuldførelse",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Omarrangeringsmodel",
|
||||
"Reset": "Nulstil",
|
||||
"Reset All Models": "Nulstil alle modeller",
|
||||
"Reset Image": "Nulstil billede",
|
||||
"Reset Upload Directory": "Nulstil uploadmappe",
|
||||
"Reset Vector Storage/Knowledge": "Nulstil vektor lager/viden",
|
||||
"Reset view": "Nulstil visning",
|
||||
"Reset Image": "Nulstil billede",
|
||||
"Response": "Svar",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Svarnotifikationer kan ikke aktiveres, da webstedets tilladelser er blevet nægtet. Besøg dine browserindstillinger for at give den nødvendige adgang.",
|
||||
"Response splitting": "Svaropdeling",
|
||||
"Response Watermark": "Vandmærke på svar",
|
||||
"RESULT": "Resultat",
|
||||
"Result": "Resultat",
|
||||
"RESULT": "Resultat",
|
||||
"Retrieval": "Hentning",
|
||||
"Retrieval Query Generation": "Hentnings forespørgsel generering",
|
||||
"Rich Text Input for Chat": "Rich text input til chat",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Gem og opret",
|
||||
"Save & Update": "Gem og opdater",
|
||||
"Save As Copy": "Gem som kopi",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Gem tag",
|
||||
"Saved": "Gemt",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Lagring af chatlogs direkte i din browsers lager understøttes ikke længere. Download og slet dine chatlogs ved at klikke på knappen nedenfor. Du kan nemt importere dine chatlogs til backend igennem",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Del",
|
||||
"Share Chat": "Del chat",
|
||||
"Share to Open WebUI Community": "Del til OpenWebUI Community",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Delingstilladelser",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Genveje med en stjerne (*) er situationsbestemte og kun aktive under specifikke betingelser.",
|
||||
"Show": "Vis",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "Tale-til-tekst",
|
||||
"Speech-to-Text Engine": "Tale-til-tekst-engine",
|
||||
"Start of the channel": "Kanalens start",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Stop",
|
||||
"Stop Generating": "Stop generering",
|
||||
"Stop Sequence": "Stopsekvens",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "Gennemstreget",
|
||||
"Strip Existing OCR": "Fjern eksisterende OCR",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Fjern eksisterende OCR-tekst fra PDF'en og kør OCR igen. Ignoreres hvis Force OCR er aktiveret. Standard er falsk.",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "STT-model",
|
||||
"STT Settings": "STT-indstillinger",
|
||||
"Stylized PDF Export": "Stiliseret PDF eksport",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Fortæl os mere:",
|
||||
"Temperature": "Temperatur",
|
||||
"Temporary Chat": "Midlertidig chat",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Tekstopdeler",
|
||||
"Text-to-Speech": "Tekst-til-tale",
|
||||
"Text-to-Speech Engine": "Tekst-til-tale-engine",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL-tilstand",
|
||||
"Usage": "Forbrug",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Brug '#' i promptinput for at indlæse og inkludere din viden.",
|
||||
"Use Gravatar": "Brug Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "Brug grupper til at gruppere dine brugere og tildele rettigheder.",
|
||||
"Use Initials": "Brug initialer",
|
||||
"Use LLM": "Brug LLM",
|
||||
"Use no proxy to fetch page contents.": "Brug ingen proxy til at hente sideindhold.",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Brug proxy angivet af http_proxy og https_proxy miljøvariabler til at hente sideindhold.",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Du har delt denne chat",
|
||||
"You're a helpful assistant.": "Du er en hjælpsom assistent.",
|
||||
"You're now logged in.": "Du er nu logget ind.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Din kontostatus afventer i øjeblikket aktivering.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Hele dit bidrag går direkte til plugin-udvikleren; Open WebUI tager ikke nogen procentdel. Den valgte finansieringsplatform kan dog have sine egne gebyrer.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111-Basis-URL ist erforderlich.",
|
||||
"Available list": "Verfügbare Liste",
|
||||
"Available Tools": "Verfügbare Werkzeuge",
|
||||
"available!": "Verfügbar!",
|
||||
"available users": "verfügbare Benutzer",
|
||||
"available!": "Verfügbar!",
|
||||
"Away": "Abwesend",
|
||||
"Awful": "Schrecklich",
|
||||
"Azure AI Speech": "Azure AI Speech",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7-Endpunkt",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7-Abonnement-Schlüssel",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Bocha Search API-Schlüssel",
|
||||
"Bold": "Fett",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Chat-Steuerung",
|
||||
"Chat direction": "Textrichtung",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Chat-Übersicht",
|
||||
"Chat Permissions": "Chat-Berechtigungen",
|
||||
"Chat Tags Auto-Generation": "Automatische Generierung von Chat-Tags",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Steuert die Wiederholung von Token-Sequenzen im generierten Text. Ein höherer Wert (z. B. 1,5) bestraft Wiederholungen stärker, während ein niedrigerer Wert (z. B. 1,1) toleranter ist. Bei 1 ist die Funktion deaktiviert.",
|
||||
"Controls": "Steuerung",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Kopiert",
|
||||
"Copied link to clipboard": "Link in Zwischenablage kopiert",
|
||||
"Copied shared chat URL to clipboard!": "Freigabelink in die Zwischenablage kopiert!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Dokumente",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "stellt keine externen Verbindungen her, und Ihre Daten bleiben sicher auf Ihrem lokal gehosteten Server.",
|
||||
"Domain Filter List": "Domain Filter-Liste",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Rufen Sie keine zufälligen Pipelines von nicht vertrauenswürdigen Quellen ab.",
|
||||
"Don't have an account?": "Haben Sie noch kein Benutzerkonto?",
|
||||
"don't install random functions from sources you don't trust.": "installieren Sie keine Funktionen aus Quellen, denen Sie nicht vertrauen.",
|
||||
"don't install random tools from sources you don't trust.": "installieren Sie keine Werkzeuge aus Quellen, denen Sie nicht vertrauen.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Rufen Sie keine zufälligen Pipelines von nicht vertrauenswürdigen Quellen ab.",
|
||||
"Don't like the style": "Schlechter Schreibstil",
|
||||
"Done": "Erledigt",
|
||||
"Download": "Exportieren",
|
||||
"Download & Delete": "Herunterladen & Löschen",
|
||||
"Download as SVG": "Exportieren als SVG",
|
||||
"Download canceled": "Exportierung abgebrochen",
|
||||
"Download Database": "Datenbank exportieren",
|
||||
"Download & Delete": "Herunterladen & Löschen",
|
||||
"Drag and drop a file to upload or select a file to view": "Ziehen Sie eine Datei zum Hochladen oder wählen Sie eine Datei zum Anzeigen aus",
|
||||
"Draw": "Zeichnen",
|
||||
"Drop any files here to upload": "Dateien hierher ziehen, um sie hochzuladen",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Geben Sie den Google PSE-API-Schlüssel ein",
|
||||
"Enter Google PSE Engine Id": "Geben Sie die Google PSE-Engine-ID ein",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Geben Sie die Bildgröße ein (z. B. 512x512)",
|
||||
"Enter Jina API Key": "Geben Sie den Jina-API-Schlüssel ein",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "Yacy-Passwort eingeben",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Yacy-URL eingeben (z. B. http://yacy.example.com:8090 )",
|
||||
"Enter Yacy Username": "Yacy-Benutzernamen eingeben",
|
||||
"Enter your code here...": "Geben Sie hier Ihren Code ein...",
|
||||
"Enter your current password": "Geben Sie Ihr aktuelles Passwort ein",
|
||||
"Enter Your Email": "Geben Sie Ihre E-Mail-Adresse ein",
|
||||
"Enter Your Full Name": "Geben Sie Ihren vollständigen Namen ein",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Geben Sie Ihre Nachricht ein",
|
||||
"Enter your name": "Geben Sie Ihren Namen ein",
|
||||
"Enter Your Name": "Geben Sie Ihren Namen ein",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Geben Sie Ihre Rolle ein",
|
||||
"Enter Your Username": "Geben Sie Ihren Benutzernamen ein",
|
||||
"Enter your webhook URL": "Geben Sie Ihre Webhook-URL ein",
|
||||
"Enter your code here...": "Geben Sie hier Ihren Code ein...",
|
||||
"Error": "Fehler",
|
||||
"ERROR": "FEHLER",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "Fehler beim generieren des Titels",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "Fehler beim Laden des Dateiinhalts.",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Fehler beim Lesen des Inhalts der Zwischenablage.",
|
||||
"Failed to save connections": "Verbindungen konnten nicht gespeichert werden",
|
||||
"Failed to save conversation": "Unterhaltung konnte nicht gespeichert werden",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Feedback-Verlauf",
|
||||
"Feedbacks": "Feedbacks",
|
||||
"Feel free to add specific details": "Fühlen Sie sich frei, spezifische Details hinzuzufügen",
|
||||
"Female": "",
|
||||
"File": "Datei",
|
||||
"File added successfully.": "Datei erfolgreich hinzugefügt.",
|
||||
"File content updated successfully.": "Dateiinhalt erfolgreich aktualisiert.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Gemini API-Konfiguration",
|
||||
"Gemini API Key is required.": "Gemini API-Schlüssel ist erforderlich.",
|
||||
"Gender": "",
|
||||
"General": "Allgemein",
|
||||
"Generate": "Generieren",
|
||||
"Generate an image": "Bild erzeugen",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Google PSE-API-Schlüssel",
|
||||
"Google PSE Engine Id": "Google PSE-Engine-ID",
|
||||
"Gravatar": "",
|
||||
"Group": "Gruppe",
|
||||
"Group created successfully": "Gruppe erfolgreich erstellt",
|
||||
"Group deleted successfully": "Gruppe erfolgreich gelöscht",
|
||||
"Group Description": "Gruppenbeschreibung",
|
||||
"Group Name": "Gruppenname",
|
||||
"Group": "Gruppe",
|
||||
"Group updated successfully": "Gruppe erfolgreich aktualisiert",
|
||||
"Groups": "Gruppen",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Werkzeuge importieren",
|
||||
"Important Update": "Wichtiges Update",
|
||||
"Include": "Einschließen",
|
||||
"Includes SharePoint": "Enthält SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Enthält SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Gesamten Inhalt als Kontext für umfassende Verarbeitung einfügen, dies wird für komplexe Abfragen empfohlen.",
|
||||
"Input": "Eingabe",
|
||||
"Input commands": "Eingabebefehle",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "Passwort im Benutzerinterface sichtbar machen",
|
||||
"Make sure to enclose them with": "Umschließen Sie Variablen mit",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Stellen Sie sicher, dass sie eine workflow.json-Datei im API-Format von ComfyUI exportieren.",
|
||||
"Male": "",
|
||||
"Manage": "Verwalten",
|
||||
"Manage Direct Connections": "Direkte Verbindungen verwalten",
|
||||
"Manage Models": "Modelle verwalten",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "OpenAI-API-Verbindungen verwalten",
|
||||
"Manage Pipelines": "Pipelines verwalten",
|
||||
"Manage Tool Servers": "Tool Server verwalten",
|
||||
"Manage your account information.": "",
|
||||
"March": "März",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Mehr",
|
||||
"More Concise": "Kürzer",
|
||||
"More Options": "Mehr Optionen",
|
||||
"Move": "",
|
||||
"Name": "Name",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Benennen Sie Ihren Wissensspeicher",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Kein Inhalt gefunden",
|
||||
"No content found in file.": "Kein Inhalt in Datei gefunden.",
|
||||
"No content to speak": "Kein Inhalt zum Vorlesen",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Keine Distanz verfügbar",
|
||||
"No feedbacks found": "Kein Feedback gefunden",
|
||||
"No file selected": "Keine Datei ausgewählt",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Keine Ergebnisse gefunden",
|
||||
"No search query generated": "Keine Suchanfrage generiert",
|
||||
"No source available": "Keine Quelle verfügbar",
|
||||
"No suggestion prompts": "Keine Vorschlags-Prompts",
|
||||
"No users were found.": "Keine Benutzer gefunden.",
|
||||
"No valves": "Keine Valves",
|
||||
"No valves to update": "Keine Valves zum Aktualisieren",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Keine Vorschlags-Prompts",
|
||||
"None": "Nichts",
|
||||
"Not factually correct": "Nicht sachlich korrekt",
|
||||
"Not helpful": "Nicht hilfreich",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "OpenAI-API-Einstellungen aktualisiert",
|
||||
"OpenAI URL/Key required.": "OpenAI-URL/Schlüssel erforderlich.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "oder",
|
||||
"Ordered List": "Geordnete Liste",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "Playwright WebSocket-URL",
|
||||
"Please carefully review the following warnings:": "Bitte überprüfen Sie die folgenden Warnungen sorgfältig:",
|
||||
"Please do not close the settings page while loading the model.": "Bitte schließen die Einstellungen-Seite nicht, während das Modell lädt.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Bitte geben Sie einen Prompt ein",
|
||||
"Please enter a valid path": "Bitte geben Sie einen gültigen Pfad ein",
|
||||
"Please enter a valid URL": "Bitte geben Sie eine gültige URL ein",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Port",
|
||||
"Positive attitude": "Positive Einstellung",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Präfix-ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix-ID wird verwendet, um Konflikte mit anderen Verbindungen zu vermeiden, indem ein Präfix zu den Modell-IDs hinzugefügt wird - leer lassen, um zu deaktivieren",
|
||||
"Prevent file creation": "Dateierstellung verhindern",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "Vorherige Nachricht",
|
||||
"Private": "Privat",
|
||||
"Profile": "Profil",
|
||||
"Profile Image": "Profilbild",
|
||||
"Prompt": "Prompt",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (z. B. \"Erzähle mir eine interessante Tatsache über das Römische Reich\")",
|
||||
"Prompt Autocompletion": "Prompt Autovervollständigung",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Reranking-Modell",
|
||||
"Reset": "Zurücksetzen",
|
||||
"Reset All Models": "Alle Modelle zurücksetzen",
|
||||
"Reset Image": "Bild zurücksetzen",
|
||||
"Reset Upload Directory": "Upload-Verzeichnis zurücksetzen",
|
||||
"Reset Vector Storage/Knowledge": "Vektorspeicher/Wissen zurücksetzen",
|
||||
"Reset view": "Ansicht zurücksetzen",
|
||||
"Reset Image": "Bild zurücksetzen",
|
||||
"Response": "Antwort",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Benachrichtigungen können nicht aktiviert werden, da die Website-Berechtigungen abgelehnt wurden. Bitte besuchen Sie Ihre Browser-Einstellungen, um den erforderlichen Zugriff zu gewähren.",
|
||||
"Response splitting": "Antwortaufteilung",
|
||||
"Response Watermark": "Antwort Wasserzeichen",
|
||||
"RESULT": "Ergebnis",
|
||||
"Result": "Ergebnis",
|
||||
"RESULT": "Ergebnis",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "Abfragegenerierung",
|
||||
"Rich Text Input for Chat": "Rich-Text-Eingabe für Chats",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Erstellen",
|
||||
"Save & Update": "Aktualisieren",
|
||||
"Save As Copy": "Als Kopie speichern",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Tag speichern",
|
||||
"Saved": "Gespeichert",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Das direkte Speichern von Chats im Browser-Speicher wird nicht mehr unterstützt. Bitte nehmen Sie einen Moment Zeit, um Ihre Chats zu exportieren und zu löschen, indem Sie auf die Schaltfläche unten klicken. Keine Sorge, Sie können Ihre Chats problemlos über das Backend wieder importieren.",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Teilen",
|
||||
"Share Chat": "Chat teilen",
|
||||
"Share to Open WebUI Community": "Mit OpenWebUI Community teilen",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Berechtigungen teilen",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Anzeigen",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "Sprache-zu-Text",
|
||||
"Speech-to-Text Engine": "Sprache-zu-Text-Engine",
|
||||
"Start of the channel": "Beginn des Kanals",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Stop",
|
||||
"Stop Generating": "Generierung stoppen",
|
||||
"Stop Sequence": "Stop-Sequenz",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "Durchgestrichen",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "STT-Modell",
|
||||
"STT Settings": "STT-Einstellungen",
|
||||
"Stylized PDF Export": "Stilisierter PDF-Export",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Erzählen Sie uns mehr:",
|
||||
"Temperature": "Temperatur",
|
||||
"Temporary Chat": "Temporäre Unterhaltung",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Text-Splitter",
|
||||
"Text-to-Speech": "Text-zu-Sprache",
|
||||
"Text-to-Speech Engine": "Text-zu-Sprache-Engine",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL-Modus",
|
||||
"Usage": "Nutzungsinfos",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Nutzen Sie '#' in der Prompt-Eingabe, um Ihr Wissen zu laden und einzuschließen.",
|
||||
"Use Gravatar": "Gravatar verwenden",
|
||||
"Use groups to group your users and assign permissions.": "Nutzen Sie Gruppen, um Ihre Benutzer zu gruppieren und Berechtigungen zuzuweisen.",
|
||||
"Use Initials": "Initialen verwenden",
|
||||
"Use LLM": "Verwende LLM",
|
||||
"Use no proxy to fetch page contents.": "Keinen Proxy zum Abrufen von Seiteninhalten verwenden.",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Den durch die Umgebungsvariablen http_proxy und https_proxy festgelegten Proxy zum Abrufen von Seiteninhalten verwenden.",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Sie haben diesen Chat geteilt",
|
||||
"You're a helpful assistant.": "Du bist ein hilfreicher Assistent.",
|
||||
"You're now logged in.": "Sie sind jetzt eingeloggt.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Ihr Kontostatus ist derzeit ausstehend und wartet auf Aktivierung.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Ihr gesamter Beitrag geht direkt an den Plugin-Entwickler; Open WebUI behält keinen Prozentsatz ein. Die gewählte Finanzierungsplattform kann jedoch eigene Gebühren haben.",
|
||||
"Youtube": "YouTube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Base URL is required.",
|
||||
"Available list": "",
|
||||
"Available Tools": "",
|
||||
"available!": "available! So excite!",
|
||||
"available users": "such available users",
|
||||
"available!": "available! So excite!",
|
||||
"Away": "So away",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "",
|
||||
"Chat direction": "",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Documents",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "does not connect external, data stays safe locally.",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "don't fetch random pipelines from sources you don't trust, much wow.",
|
||||
"Don't have an account?": "No account? Much sad.",
|
||||
"don't install random functions from sources you don't trust.": "",
|
||||
"don't install random tools from sources you don't trust.": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "don't fetch random pipelines from sources you don't trust, much wow.",
|
||||
"Don't like the style": "",
|
||||
"Done": "",
|
||||
"Download": "",
|
||||
"Download & Delete": "Download & delete wow",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "",
|
||||
"Download Database": "Download Database",
|
||||
"Download & Delete": "Download & delete wow",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "",
|
||||
"Enter Google PSE Engine Id": "",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Enter Size of Wow (e.g. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Enter code here... much code",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "Enter Your Dogemail",
|
||||
"Enter Your Full Name": "Enter Your Full Wow",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "Enter code here... much code",
|
||||
"Error": "",
|
||||
"ERROR": "",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Failed to read clipboard borks",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Failed to save conversation borks",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "",
|
||||
"Female": "",
|
||||
"File": "",
|
||||
"File added successfully.": "",
|
||||
"File content updated successfully.": "",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "Woweral",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "",
|
||||
"Google PSE Engine Id": "",
|
||||
"Gravatar": "",
|
||||
"Group": "Much group",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group": "Much group",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "",
|
||||
"Important Update": "Very important update",
|
||||
"Include": "",
|
||||
"Includes SharePoint": "Includes SharePoint, much include",
|
||||
"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, much include",
|
||||
"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": "",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "Input commands",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Make sure to enclose them with",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Name",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "",
|
||||
"No feedbacks found": "",
|
||||
"No file selected": "",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "",
|
||||
"No search query generated": "",
|
||||
"No source available": "No source available",
|
||||
"No suggestion prompts": "No suggestion prompts. So empty.",
|
||||
"No users were found.": "",
|
||||
"No valves": "",
|
||||
"No valves to update": "",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "No suggestion prompts. So empty.",
|
||||
"None": "",
|
||||
"Not factually correct": "",
|
||||
"Not helpful": "",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "or",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "Such profile",
|
||||
"Profile Image": "",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "",
|
||||
"Reset": "",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "Reset image. Very wow.",
|
||||
"Reset Upload Directory": "",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "",
|
||||
"Reset Image": "Reset image. Very wow.",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
|
||||
"Response splitting": "",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "RESULT much",
|
||||
"Result": "",
|
||||
"RESULT": "RESULT much",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Save & Create much create",
|
||||
"Save & Update": "Save & Update much update",
|
||||
"Save As Copy": "",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "",
|
||||
"Saved": "",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Saving chat logs in browser storage not support anymore. Pls download and delete your chat logs by click button below. Much easy re-import to backend through",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "",
|
||||
"Share Chat": "",
|
||||
"Share to Open WebUI Community": "Share to Open WebUI Community much community",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Show much show",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Speech-to-Text Engine much speak",
|
||||
"Start of the channel": "Start of channel",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Stop Sequence much stop",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "",
|
||||
"STT Settings": "STT Settings very settings",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "",
|
||||
"Temperature": "Temperature very temp",
|
||||
"Temporary Chat": "",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Text-to-Speech Engine much speak",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL Mode much mode",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "Use Gravatar much avatar",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "Use Initials much initial",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "",
|
||||
"You're a helpful assistant.": "You're a helpful assistant. Much helpful.",
|
||||
"You're now logged in.": "You're now logged in. Much logged.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
|
||||
"Youtube": "",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "Απαιτείται το Βασικό URL AUTOMATIC1111.",
|
||||
"Available list": "Διαθέσιμη λίστα",
|
||||
"Available Tools": "",
|
||||
"available!": "διαθέσιμο!",
|
||||
"available users": "διαθέσιμοι χρήστες",
|
||||
"available!": "διαθέσιμο!",
|
||||
"Away": "Απών",
|
||||
"Awful": "Ασχημο",
|
||||
"Azure AI Speech": "Ομιλία Azure AI",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Τέλος Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Κλειδί Συνδρομής Bing Search V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Έλεγχοι Συνομιλίας",
|
||||
"Chat direction": "Κατεύθυνση Συνομιλίας",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Επισκόπηση Συνομιλίας",
|
||||
"Chat Permissions": "Δικαιώματα Συνομιλίας",
|
||||
"Chat Tags Auto-Generation": "Αυτόματη Γενιά Ετικετών Συνομιλίας",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "Έλεγχοι",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Αντιγράφηκε",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "Αντιγράφηκε το URL της κοινόχρηστης συνομιλίας στο πρόχειρο!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Έγγραφα",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "δεν κάνει καμία εξωτερική σύνδεση, και τα δεδομένα σας παραμένουν ασφαλή στον τοπικά φιλοξενούμενο διακομιστή σας.",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Μην ανακτάτε τυχαία pipelines από μη αξιόπιστες πηγές.",
|
||||
"Don't have an account?": "Δεν έχετε λογαριασμό;",
|
||||
"don't install random functions from sources you don't trust.": "μην εγκαθιστάτε τυχαίες λειτουργίες από πηγές που δεν εμπιστεύεστε.",
|
||||
"don't install random tools from sources you don't trust.": "μην εγκαθιστάτε τυχαία εργαλεία από πηγές που δεν εμπιστεύεστε.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Μην ανακτάτε τυχαία pipelines από μη αξιόπιστες πηγές.",
|
||||
"Don't like the style": "Δεν σας αρέσει το στυλ",
|
||||
"Done": "Έτοιμο",
|
||||
"Download": "Λήψη",
|
||||
"Download & Delete": "Λήψη & Διαγραφή",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "Η λήψη ακυρώθηκε",
|
||||
"Download Database": "Λήψη Βάσης Δεδομένων",
|
||||
"Download & Delete": "Λήψη & Διαγραφή",
|
||||
"Drag and drop a file to upload or select a file to view": "Σύρετε και αφήστε ένα αρχείο για να το ανεβάσετε ή επιλέξτε ένα αρχείο για να το δείτε",
|
||||
"Draw": "Σχεδίαση",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Εισάγετε το Κλειδί API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Εισάγετε το Αναγνωριστικό Μηχανής Google PSE",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Εισάγετε το Μέγεθος Εικόνας (π.χ. 512x512)",
|
||||
"Enter Jina API Key": "Εισάγετε το Κλειδί API Jina",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Εισαγάγετε τον κώδικά σας εδώ...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "Εισάγετε το Email σας",
|
||||
"Enter Your Full Name": "Εισάγετε το Πλήρες Όνομά σας",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Εισάγετε το μήνυμά σας",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Εισάγετε τον Ρόλο σας",
|
||||
"Enter Your Username": "Εισάγετε το Όνομα Χρήστη σας",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "Εισαγάγετε τον κώδικά σας εδώ...",
|
||||
"Error": "Σφάλμα",
|
||||
"ERROR": "ΣΦΑΛΜΑ",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Αποτυχία ανάγνωσης περιεχομένων πρόχειρου",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Αποτυχία αποθήκευσης συνομιλίας",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Ιστορικό Ανατροφοδότησης",
|
||||
"Feedbacks": "Ανατροφοδοτήσεις",
|
||||
"Feel free to add specific details": "Νιώστε ελεύθεροι να προσθέσετε συγκεκριμένες λεπτομέρειες",
|
||||
"Female": "",
|
||||
"File": "Αρχείο",
|
||||
"File added successfully.": "Το αρχείο προστέθηκε με επιτυχία.",
|
||||
"File content updated successfully.": "Το περιεχόμενο του αρχείου ενημερώθηκε με επιτυχία.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "Γενικά",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "Κλειδί API Google PSE",
|
||||
"Google PSE Engine Id": "Αναγνωριστικό Μηχανής Google PSE",
|
||||
"Gravatar": "",
|
||||
"Group": "Ομάδα",
|
||||
"Group created successfully": "Η ομάδα δημιουργήθηκε με επιτυχία",
|
||||
"Group deleted successfully": "Η ομάδα διαγράφηκε με επιτυχία",
|
||||
"Group Description": "Περιγραφή Ομάδας",
|
||||
"Group Name": "Όνομα Ομάδας",
|
||||
"Group": "Ομάδα",
|
||||
"Group updated successfully": "Η ομάδα ενημερώθηκε με επιτυχία",
|
||||
"Groups": "Ομάδες",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Εισαγωγή Εργαλείων",
|
||||
"Important Update": "Σημαντική ενημέρωση",
|
||||
"Include": "Συμπερίληψη",
|
||||
"Includes SharePoint": "Περιλαμβάνει το SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Περιλαμβάνει το SharePoint",
|
||||
"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": "Πληροφορίες",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "Εισαγωγή εντολών",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Βεβαιωθείτε ότι τα περικλείετε με",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Βεβαιωθείτε ότι εξάγετε ένα αρχείο workflow.json ως μορφή API από το ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Διαχείριση",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Διαχείριση Συνδέσεων API OpenAI",
|
||||
"Manage Pipelines": "Διαχείριση Καναλιών",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "Μάρτιος",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Περισσότερα",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Όνομα",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Ονομάστε τη βάση γνώσης σας",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Δεν βρέθηκε περιεχόμενο",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "Δεν υπάρχει περιεχόμενο για ανάγνωση",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Δεν υπάρχει διαθέσιμη απόσταση",
|
||||
"No feedbacks found": "Δεν βρέθηκαν ανατροφοδοτήσεις",
|
||||
"No file selected": "Δεν έχει επιλεγεί αρχείο",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Δεν βρέθηκαν αποτελέσματα",
|
||||
"No search query generated": "Δεν δημιουργήθηκε ερώτηση αναζήτησης",
|
||||
"No source available": "Δεν υπάρχει διαθέσιμη πηγή",
|
||||
"No suggestion prompts": "Χωρίς προτεινόμενες υποδείξεις",
|
||||
"No users were found.": "Δεν βρέθηκαν χρήστες.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Δεν υπάρχουν βαλβίδες για ενημέρωση",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Χωρίς προτεινόμενες υποδείξεις",
|
||||
"None": "Κανένα",
|
||||
"Not factually correct": "Δεν είναι γεγονότα",
|
||||
"Not helpful": "Δεν είναι χρήσιμο",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "Οι ρυθμίσεις API OpenAI ενημερώθηκαν",
|
||||
"OpenAI URL/Key required.": "Απαιτείται URL/Kλειδί OpenAI.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "ή",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Παρακαλώ αναθεωρήστε προσεκτικά τις ακόλουθες προειδοποιήσεις:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Παρακαλώ εισάγετε μια προτροπή",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Θύρα",
|
||||
"Positive attitude": "Θετική στάση",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "ID Προθέματος",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Το ID Προθέματος χρησιμοποιείται για να αποφεύγονται συγκρούσεις με άλλες συνδέσεις προσθέτοντας ένα πρόθεμα στα IDs των μοντέλων - αφήστε κενό για απενεργοποίηση",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "Προφίλ",
|
||||
"Profile Image": "Εικόνα Προφίλ",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Προτροπή (π.χ. Πες μου ένα διασκεδαστικό γεγονός για την Ρωμαϊκή Αυτοκρατορία)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Μοντέλο Επαναταξινόμησης",
|
||||
"Reset": "Επαναφορά",
|
||||
"Reset All Models": "Επαναφορά Όλων των Μοντέλων",
|
||||
"Reset Image": "Επαναφορά εικόνας",
|
||||
"Reset Upload Directory": "Επαναφορά Καταλόγου Ανεβάσματος",
|
||||
"Reset Vector Storage/Knowledge": "Επαναφορά Αποθήκευσης Διανυσμάτων/Γνώσης",
|
||||
"Reset view": "",
|
||||
"Reset Image": "Επαναφορά εικόνας",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Οι ειδοποιήσεις απάντησης δεν μπορούν να ενεργοποιηθούν καθώς οι άδειες του ιστότοπου έχουν αρνηθεί. Παρακαλώ επισκεφτείτε τις ρυθμίσεις του περιηγητή σας για να δώσετε την απαραίτητη πρόσβαση.",
|
||||
"Response splitting": "Διαχωρισμός απάντησης",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "Αποτέλεσμα",
|
||||
"Result": "Αποτέλεσμα",
|
||||
"RESULT": "Αποτέλεσμα",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "Πλούσιο Εισαγωγή Κειμένου για Συνομιλία",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Αποθήκευση & Δημιουργία",
|
||||
"Save & Update": "Αποθήκευση & Ενημέρωση",
|
||||
"Save As Copy": "Αποθήκευση ως Αντιγραφή",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Αποθήκευση Ετικέτας",
|
||||
"Saved": "Αποθηκευμένο",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Η αποθήκευση των αρχείων συνομιλίας απευθείας στη μνήμη αποθήκευσης του προγράμματος περιήγησής σας δεν υποστηρίζεται πλέον. Παρακαλώ αφιερώστε λίγο χρόνο να κατεβάσετε και να διαγράψετε τα αρχεία συνομιλίας σας κάνοντας κλικ στο κουμπί παρακάτω. Μην ανησυχείτε, μπορείτε εύκολα να επαναφέρετε τα αρχεία συνομιλιών σας στο backend μέσω",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Κοινή Χρήση",
|
||||
"Share Chat": "Κοινή Χρήση Συνομιλίας",
|
||||
"Share to Open WebUI Community": "Κοινή Χρήση στην Κοινότητα OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Εμφάνιση",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Μηχανή Speech-to-Text",
|
||||
"Start of the channel": "Αρχή του καναλιού",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Σταμάτημα",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Σειρά Παύσης",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Μοντέλο STT",
|
||||
"STT Settings": "Ρυθμίσεις STT",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Πείτε μας περισσότερα:",
|
||||
"Temperature": "Temperature",
|
||||
"Temporary Chat": "Προσωρινή Συνομιλία",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Διαχωριστής Κειμένου",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Μηχανή Text-to-Speech",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Λειτουργία URL",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Χρησιμοποιήστε '#' στην είσοδο προτροπής για φόρτωση και συμπερίληψη της γνώσης σας.",
|
||||
"Use Gravatar": "Χρησιμοποιήστε Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "Χρησιμοποιήστε ομάδες για να ομαδοποιήσετε τους χρήστες σας και να αναθέσετε δικαιώματα.",
|
||||
"Use Initials": "Χρησιμοποιήστε Αρχικά",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Έχετε μοιραστεί αυτή τη συνομιλία",
|
||||
"You're a helpful assistant.": "Είστε ένας βοηθητικός βοηθός.",
|
||||
"You're now logged in.": "Τώρα είστε συνδεδεμένοι.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Η κατάσταση του λογαριασμού σας είναι αυτή τη στιγμή σε εκκρεμότητα ενεργοποίησης.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Η ολόκληρη η συνεισφορά σας θα πάει απευθείας στον προγραμματιστή του plugin· το Open WebUI δεν παίρνει κανένα ποσοστό. Ωστόσο, η επιλεγμένη πλατφόρμα χρηματοδότησης μπορεί να έχει τα δικά της τέλη.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "",
|
||||
"Available list": "",
|
||||
"Available Tools": "",
|
||||
"available!": "",
|
||||
"available users": "",
|
||||
"available!": "",
|
||||
"Away": "",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "",
|
||||
"Chat direction": "",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalise repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.",
|
||||
"Controls": "",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "",
|
||||
"Don't have an account?": "",
|
||||
"don't install random functions from sources you don't trust.": "",
|
||||
"don't install random tools from sources you don't trust.": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "",
|
||||
"Don't like the style": "",
|
||||
"Done": "",
|
||||
"Download": "",
|
||||
"Download & Delete": "",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "",
|
||||
"Download Database": "",
|
||||
"Download & Delete": "",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "",
|
||||
"Enter Google PSE Engine Id": "",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "",
|
||||
"Enter Your Full Name": "",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "",
|
||||
"Error": "",
|
||||
"ERROR": "",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "",
|
||||
"Female": "",
|
||||
"File": "",
|
||||
"File added successfully.": "",
|
||||
"File content updated successfully.": "",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "",
|
||||
"Google PSE Engine Id": "",
|
||||
"Gravatar": "",
|
||||
"Group": "",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "",
|
||||
"Important Update": "",
|
||||
"Include": "",
|
||||
"Includes SharePoint": "",
|
||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "",
|
||||
"Includes SharePoint": "",
|
||||
"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": "",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "",
|
||||
"No feedbacks found": "",
|
||||
"No file selected": "",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "",
|
||||
"No search query generated": "",
|
||||
"No source available": "",
|
||||
"No suggestion prompts": "",
|
||||
"No users were found.": "",
|
||||
"No valves": "",
|
||||
"No valves to update": "",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "",
|
||||
"None": "",
|
||||
"Not factually correct": "",
|
||||
"Not helpful": "",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "",
|
||||
"Profile Image": "",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "",
|
||||
"Reset": "",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "",
|
||||
"Reset Upload Directory": "",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "",
|
||||
"Reset Image": "",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
|
||||
"Response splitting": "",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "",
|
||||
"Result": "",
|
||||
"RESULT": "",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "",
|
||||
"Save & Update": "",
|
||||
"Save As Copy": "",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "",
|
||||
"Saved": "",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "",
|
||||
"Share Chat": "",
|
||||
"Share to Open WebUI Community": "",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "",
|
||||
"Start of the channel": "",
|
||||
"STDOUT/STDERR": "",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "",
|
||||
"STT Model": "",
|
||||
"STT Settings": "",
|
||||
"Stylized PDF Export": "Stylised PDF Export",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "",
|
||||
"Temperature": "",
|
||||
"Temporary Chat": "",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "",
|
||||
"You're a helpful assistant.": "",
|
||||
"You're now logged in.": "",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
|
||||
"Youtube": "",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "",
|
||||
"Available list": "",
|
||||
"Available Tools": "",
|
||||
"available!": "",
|
||||
"available users": "",
|
||||
"available!": "",
|
||||
"Away": "",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "",
|
||||
"Chat direction": "",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "",
|
||||
"Don't have an account?": "",
|
||||
"don't install random functions from sources you don't trust.": "",
|
||||
"don't install random tools from sources you don't trust.": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "",
|
||||
"Don't like the style": "",
|
||||
"Done": "",
|
||||
"Download": "",
|
||||
"Download & Delete": "",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "",
|
||||
"Download Database": "",
|
||||
"Download & Delete": "",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "",
|
||||
"Enter Google PSE Engine Id": "",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "",
|
||||
"Enter Your Full Name": "",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "",
|
||||
"Error": "",
|
||||
"ERROR": "",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "",
|
||||
"Female": "",
|
||||
"File": "",
|
||||
"File added successfully.": "",
|
||||
"File content updated successfully.": "",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "",
|
||||
"Google PSE Engine Id": "",
|
||||
"Gravatar": "",
|
||||
"Group": "",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group": "",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "",
|
||||
"Important Update": "",
|
||||
"Include": "",
|
||||
"Includes SharePoint": "",
|
||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "",
|
||||
"Includes SharePoint": "",
|
||||
"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": "",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "",
|
||||
"No feedbacks found": "",
|
||||
"No file selected": "",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "",
|
||||
"No search query generated": "",
|
||||
"No source available": "",
|
||||
"No suggestion prompts": "",
|
||||
"No users were found.": "",
|
||||
"No valves": "",
|
||||
"No valves to update": "",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "",
|
||||
"None": "",
|
||||
"Not factually correct": "",
|
||||
"Not helpful": "",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "Previous message",
|
||||
"Private": "",
|
||||
"Profile": "",
|
||||
"Profile Image": "",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "",
|
||||
"Reset": "",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "",
|
||||
"Reset Upload Directory": "",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "",
|
||||
"Reset Image": "",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
|
||||
"Response splitting": "",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "",
|
||||
"Result": "",
|
||||
"RESULT": "",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "",
|
||||
"Save & Update": "",
|
||||
"Save As Copy": "",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "",
|
||||
"Saved": "",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "",
|
||||
"Share Chat": "",
|
||||
"Share to Open WebUI Community": "",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "",
|
||||
"Start of the channel": "",
|
||||
"STDOUT/STDERR": "",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "",
|
||||
"STT Model": "",
|
||||
"STT Settings": "",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "",
|
||||
"Temperature": "",
|
||||
"Temporary Chat": "",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "",
|
||||
"You're a helpful assistant.": "",
|
||||
"You're now logged in.": "",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
|
||||
"Youtube": "",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "la URL Base de AUTOMATIC1111 es necesaria.",
|
||||
"Available list": "Lista disponible",
|
||||
"Available Tools": "Herramientas Disponibles",
|
||||
"available!": "¡disponible!",
|
||||
"available users": "usuarios disponibles",
|
||||
"available!": "¡disponible!",
|
||||
"Away": "Ausente",
|
||||
"Awful": "Horrible",
|
||||
"Azure AI Speech": "Voz Azure AI",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Endpoint de Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Clave de Suscripción de Bing Search V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "Ponderación BM25",
|
||||
"Bocha Search API Key": "Clave API de Bocha Search",
|
||||
"Bold": "Negrita",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Controles de chat",
|
||||
"Chat direction": "Dirección de Chat",
|
||||
"Chat ID": "ID del Chat",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Vista General del Chat",
|
||||
"Chat Permissions": "Permisos del Chat",
|
||||
"Chat Tags Auto-Generation": "AutoGeneración de Etiquetas de Chat",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Controla la repetición de secuencias de tokens en el texto generado. Un valor más alto (p.ej., 1.5) penalizá más las repeticiones, mientras que un valor más bajo (p.ej., 1.1) sería más permisivo. En 1, el control está desactivado.",
|
||||
"Controls": "Controles",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Controles del equilibrio entre coherencia y diversidad de la salida. Un valor más bajo produce un texto más centrado y coherente.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Copiado",
|
||||
"Copied link to clipboard": "Enlace copiado a portapapeles",
|
||||
"Copied shared chat URL to clipboard!": "¡Copiada al portapapeles la URL del chat compartido!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Documentos",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "no se realiza ninguna conexión externa y tus datos permanecen seguros alojados localmente en tu servidor.",
|
||||
"Domain Filter List": "Lista de Filtrado de Dominio",
|
||||
"don't fetch random pipelines from sources you don't trust.": "No obtengas pipelines aleatorias de fuentes no confiables.",
|
||||
"Don't have an account?": "¿No tienes una cuenta?",
|
||||
"don't install random functions from sources you don't trust.": "¡no instalar funciones desconocidas de fuentes en las que no se confíe!",
|
||||
"don't install random tools from sources you don't trust.": "¡no instalar herramientas desconocidas de fuentes en las que no se confíe!",
|
||||
"don't fetch random pipelines from sources you don't trust.": "No obtengas pipelines aleatorias de fuentes no confiables.",
|
||||
"Don't like the style": "¿No te gusta el estilo?",
|
||||
"Done": "Hecho",
|
||||
"Download": "Descargar",
|
||||
"Download & Delete": "Descargar y eliminar",
|
||||
"Download as SVG": "Descargar como SVG",
|
||||
"Download canceled": "Descarga cancelada",
|
||||
"Download Database": "Descargar Base de Datos",
|
||||
"Download & Delete": "Descargar y eliminar",
|
||||
"Drag and drop a file to upload or select a file to view": "Arrastra y suelta un archivo para subirlo o selecciona uno para verlo",
|
||||
"Draw": "Dibujar",
|
||||
"Drop any files here to upload": "Arrastra aquí los archivos a subir.",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Ingresar Clave API de Google PSE",
|
||||
"Enter Google PSE Engine Id": "Ingresa ID del Motor PSE de Google",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Ingresar Tamaño de Imagen (p.ej. 512x512)",
|
||||
"Enter Jina API Key": "Ingresar Clave API de Jina",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "Ingresar config JSON (ej., {\"disable_links\": true})",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "Ingresar Contraseña de Yacy",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Ingresar URL de Yacy (p.ej. http://yacy.ejemplo.com:8090)",
|
||||
"Enter Yacy Username": "Ingresar Nombre de Usuario de Yacy",
|
||||
"Enter your code here...": "Introduce tu código aquí...",
|
||||
"Enter your current password": "Ingresa tu contraseña actual",
|
||||
"Enter Your Email": "Ingresa tu correo electrónico",
|
||||
"Enter Your Full Name": "Ingresa su nombre completo",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Ingresa tu mensaje",
|
||||
"Enter your name": "Ingresa tu nombre",
|
||||
"Enter Your Name": "Ingresa Tu Nombre",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Ingresa tu rol",
|
||||
"Enter Your Username": "Ingresa tu nombre de usuario",
|
||||
"Enter your webhook URL": "Ingresa tu URL de webhook",
|
||||
"Enter your code here...": "Introduce tu código aquí...",
|
||||
"Error": "Error",
|
||||
"ERROR": "ERROR",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "Fallo al generar el título",
|
||||
"Failed to load chat preview": "Fallo al cargar la previsualización del chat",
|
||||
"Failed to load file content.": "Fallo al cargar el contenido del archivo",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Fallo al leer el contenido del portapapeles",
|
||||
"Failed to save connections": "Fallo al grabar las conexiones",
|
||||
"Failed to save conversation": "Fallo al guardar la conversación",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Historia de la Opiniones",
|
||||
"Feedbacks": "Opiniones",
|
||||
"Feel free to add specific details": "Añade libremente detalles específicos",
|
||||
"Female": "",
|
||||
"File": "Archivo",
|
||||
"File added successfully.": "Archivo añadido correctamente.",
|
||||
"File content updated successfully.": "Contenido del archivo actualizado correctamente.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Config API Gemini",
|
||||
"Gemini API Key is required.": "Se requiere Clave API de Gemini.",
|
||||
"Gender": "",
|
||||
"General": "General",
|
||||
"Generate": "Generar",
|
||||
"Generate an image": "Generar una imagen",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Clave API de Google PSE",
|
||||
"Google PSE Engine Id": "ID del Motor PSE de Google",
|
||||
"Gravatar": "",
|
||||
"Group": "Grupo",
|
||||
"Group created successfully": "Grupo creado correctamente",
|
||||
"Group deleted successfully": "Grupo eliminado correctamente",
|
||||
"Group Description": "Descripción del Grupo",
|
||||
"Group Name": "Nombre del Grupo",
|
||||
"Group": "Grupo",
|
||||
"Group updated successfully": "Grupo actualizado correctamente",
|
||||
"Groups": "Grupos",
|
||||
"H1": "H1",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Importar Herramientas",
|
||||
"Important Update": "Actualización importante",
|
||||
"Include": "Incluir",
|
||||
"Includes SharePoint": "Incluye SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Incluye SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Inyecta el contenido completo como contexto para un procesado comprensivo, recomendado para consultas complejas.",
|
||||
"Input": "Entrada",
|
||||
"Input commands": "Ingresar comandos",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "Hacer visible la contraseña en la interfaz del usuario.",
|
||||
"Make sure to enclose them with": "Asegúrate de delimitarlos con",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Asegúrate de exportar un archivo workflow.json en formato API desde ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Gestionar",
|
||||
"Manage Direct Connections": "Gestionar Conexiones Directas",
|
||||
"Manage Models": "Gestionar Modelos",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Gestionar Conexiones API de OpenAI",
|
||||
"Manage Pipelines": "Gestionar Tuberías",
|
||||
"Manage Tool Servers": "Gestionar Servidores de Herramientas",
|
||||
"Manage your account information.": "",
|
||||
"March": "Marzo",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "Markdown (Encabezado)",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Más",
|
||||
"More Concise": "Más Conciso",
|
||||
"More Options": "Más Opciones",
|
||||
"Move": "",
|
||||
"Name": "Nombre",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Nombra tu base de conocimientos",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "No se encontró contenido",
|
||||
"No content found in file.": "No se encontró contenido en el archivo",
|
||||
"No content to speak": "No hay contenido para hablar",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "No hay distancia disponible",
|
||||
"No feedbacks found": "No se encontraron comentarios",
|
||||
"No file selected": "No se seleccionó archivo",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "No se encontraron resultados",
|
||||
"No search query generated": "No se generó ninguna consulta de búsqueda",
|
||||
"No source available": "No hay fuente disponible",
|
||||
"No suggestion prompts": "Sin prompts sugeridos",
|
||||
"No users were found.": "No se encontraron usuarios.",
|
||||
"No valves": "",
|
||||
"No valves to update": "No hay válvulas para actualizar",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Sin prompts sugeridos",
|
||||
"None": "Ninguno",
|
||||
"Not factually correct": "No es correcto en todos los aspectos",
|
||||
"Not helpful": "No aprovechable",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "Ajustes de API OpenAI actualizados",
|
||||
"OpenAI URL/Key required.": "URL/Clave de OpenAI requerida.",
|
||||
"openapi.json URL or Path": "URL o Ruta a openapi.json",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Opciones para usar modelos locales en la descripción de imágenes. Los parámetros se refieren a modelos alojados en HugginFace. Esta opción es mutuamente excluyente con \"picture_description_api\".",
|
||||
"or": "o",
|
||||
"Ordered List": "Lista Ordenada",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "URL de WebSocket de Playwright",
|
||||
"Please carefully review the following warnings:": "Por favor revisar cuidadosamente los siguientes avisos:",
|
||||
"Please do not close the settings page while loading the model.": "Por favor no cerrar la página de ajustes mientras se está descargando el modelo.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Por favor ingresar un indicador",
|
||||
"Please enter a valid path": "Por favor, ingresa una ruta válida",
|
||||
"Please enter a valid URL": "Por favor, ingresa una URL válida",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "Por favor, espera a que todos los ficheros se acaben de subir",
|
||||
"Port": "Puerto",
|
||||
"Positive attitude": "Actitud Positiva",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "prefijo ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "El prefijo ID se utiliza para evitar conflictos con otras conexiones al añadir un prefijo a los IDs de modelo, dejar vacío para deshabilitarlo",
|
||||
"Prevent file creation": "Prevenir la creación de archivos",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "Mensaje anterior",
|
||||
"Private": "Privado",
|
||||
"Profile": "Perfil",
|
||||
"Profile Image": "Imagen del Perfil",
|
||||
"Prompt": "Indicador",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Indicador (p.ej. Cuéntame una cosa divertida sobre el Imperio Romano)",
|
||||
"Prompt Autocompletion": "Autocompletado del Indicador",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Modelo de Reclasificación",
|
||||
"Reset": "Reiniciar",
|
||||
"Reset All Models": "Reiniciar Todos los Modelos",
|
||||
"Reset Image": "Restablecer imagen",
|
||||
"Reset Upload Directory": "Reiniciar Directorio de Subidas",
|
||||
"Reset Vector Storage/Knowledge": "Reiniciar Almacenamiento de Vectores/Conocimiento",
|
||||
"Reset view": "Reiniciar Vista",
|
||||
"Reset Image": "Restablecer imagen",
|
||||
"Response": "Respuesta",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Las notificaciones de respuesta no pueden activarse ya que los permisos del sitio web han sido denegados. Por favor, comprueba la configuración de tu navegador para otorgar el permiso necesario.",
|
||||
"Response splitting": "Particionado de Respuesta",
|
||||
"Response Watermark": "Marca de Agua en Respuesta",
|
||||
"RESULT": "Resultado",
|
||||
"Result": "Resultado",
|
||||
"RESULT": "Resultado",
|
||||
"Retrieval": "Recuperación",
|
||||
"Retrieval Query Generation": "Consulta de Generación de Recuperación",
|
||||
"Rich Text Input for Chat": "Entrada de Texto Enriquecido para el Chat",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Guardar y Crear",
|
||||
"Save & Update": "Guardar y Actualizar",
|
||||
"Save As Copy": "Guardar como Copia",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Guardar Etiqueta",
|
||||
"Saved": "Guardado",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Ya no está soportado guardar registros de chat directamente en el almacenamiento del navegador. Por favor, dedica un momento a descargar y eliminar tus registros de chat pulsando en el botón de abajo. No te preocupes, puedes re-importar fácilmente tus registros desde las opciones de configuración",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Compartir",
|
||||
"Share Chat": "Compartir Chat",
|
||||
"Share to Open WebUI Community": "Compartir con la Comunidad Open-WebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Permisos al Compartir",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Accesos cortos con un asterisco (*) depende de la situación y solo activos bajo determinadas condiciones.",
|
||||
"Show": "Mostrar",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "Voz a Texto",
|
||||
"Speech-to-Text Engine": "Motor Voz a Texto(STT)",
|
||||
"Start of the channel": "Inicio del canal",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Detener",
|
||||
"Stop Generating": "Detener la Generación",
|
||||
"Stop Sequence": "Secuencia de Parada",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "Tachado",
|
||||
"Strip Existing OCR": "Descartar OCR Existente",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Descartar OCR existente del PDF y repetirlo. Se ignora si está habilitado Forzar OCR. Valor Predeterminado: Falso",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Modelo STT",
|
||||
"STT Settings": "Ajustes Voz a Texto (STT)",
|
||||
"Stylized PDF Export": "Exportar PDF Estilizado",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Dinos algo más:",
|
||||
"Temperature": "Temperatura",
|
||||
"Temporary Chat": "Chat Temporal",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Divisor de Texto",
|
||||
"Text-to-Speech": "Texto a Voz",
|
||||
"Text-to-Speech Engine": "Motor Texto a Voz(TTS)",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Modo URL",
|
||||
"Usage": "Uso",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Utilizar '#' en el indicador para cargar e incluir tu conocimiento.",
|
||||
"Use Gravatar": "Usar Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "Usar grupos para agrupar a usuarios y asignar permisos.",
|
||||
"Use Initials": "Usar Iniciales",
|
||||
"Use LLM": "Usar LLM",
|
||||
"Use no proxy to fetch page contents.": "No usar proxy para extraer contenidos",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Usar el proxy asignado en las variables del entorno http_proxy y/o https_proxy para extraer contenido",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Has compartido esta conversación",
|
||||
"You're a helpful assistant.": "Eres un asistente atento, amable y servicial.",
|
||||
"You're now logged in.": "Has iniciado sesión.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Tu cuenta está pendiente de activación.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Tu entera contribución irá directamente al desarrollador del complemento; Open-WebUI no recibe ningún porcentaje. Sin embargo, la plataforma de financiación elegida podría tener sus propias tarifas.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 baas-URL on nõutav.",
|
||||
"Available list": "Saadaolevate nimekiri",
|
||||
"Available Tools": "",
|
||||
"available!": "saadaval!",
|
||||
"available users": "saadaolevad kasutajad",
|
||||
"available!": "saadaval!",
|
||||
"Away": "Eemal",
|
||||
"Awful": "Kohutav",
|
||||
"Azure AI Speech": "Azure AI Kõne",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beeta",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7 lõpp-punkt",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 tellimuse võti",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Bocha otsingu API võti",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Vestluse juhtnupud",
|
||||
"Chat direction": "Vestluse suund",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Vestluse ülevaade",
|
||||
"Chat Permissions": "Vestluse õigused",
|
||||
"Chat Tags Auto-Generation": "Vestluse siltide automaatnegeneerimine",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Kontrollige tokeni järjestuste kordumist genereeritud tekstis. Kõrgem väärtus (nt 1,5) karistab kordusi tugevamalt, samas kui madalam väärtus (nt 1,1) on leebem. Väärtuse 1 korral on see keelatud.",
|
||||
"Controls": "Juhtnupud",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Kontrollib väljundi sidususe ja mitmekesisuse vahelist tasakaalu. Madalam väärtus annab tulemuseks fokuseerituma ja sidusamaja teksti.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Kopeeritud",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "Jagatud vestluse URL kopeeritud lõikelauale!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Dokumendid",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "ei loo väliseid ühendusi ja teie andmed jäävad turvaliselt teie kohalikult majutatud serverisse.",
|
||||
"Domain Filter List": "Domeeni filtri nimekiri",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ära tõmba juhuslikke pipelines allikatest, mida sa ei usalda.",
|
||||
"Don't have an account?": "Pole kontot?",
|
||||
"don't install random functions from sources you don't trust.": "ärge installige juhuslikke funktsioone allikatest, mida te ei usalda.",
|
||||
"don't install random tools from sources you don't trust.": "ärge installige juhuslikke tööriistu allikatest, mida te ei usalda.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ära tõmba juhuslikke pipelines allikatest, mida sa ei usalda.",
|
||||
"Don't like the style": "Stiil ei meeldi",
|
||||
"Done": "Valmis",
|
||||
"Download": "Laadi alla",
|
||||
"Download & Delete": "Laadi alla ja kustuta",
|
||||
"Download as SVG": "Laadi alla SVG-na",
|
||||
"Download canceled": "Allalaadimine tühistatud",
|
||||
"Download Database": "Laadi alla andmebaas",
|
||||
"Download & Delete": "Laadi alla ja kustuta",
|
||||
"Drag and drop a file to upload or select a file to view": "Lohistage ja kukutage fail üleslaadimiseks või valige fail vaatamiseks",
|
||||
"Draw": "Joonista",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Sisestage Google PSE API võti",
|
||||
"Enter Google PSE Engine Id": "Sisestage Google PSE mootori ID",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Sisestage pildi suurus (nt 512x512)",
|
||||
"Enter Jina API Key": "Sisestage Jina API võti",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Sisestage oma kood siia...",
|
||||
"Enter your current password": "Sisestage oma praegune parool",
|
||||
"Enter Your Email": "Sisestage oma e-post",
|
||||
"Enter Your Full Name": "Sisestage oma täisnimi",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Sisestage oma sõnum",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Sisestage oma roll",
|
||||
"Enter Your Username": "Sisestage oma kasutajanimi",
|
||||
"Enter your webhook URL": "Sisestage oma webhook URL",
|
||||
"Enter your code here...": "Sisestage oma kood siia...",
|
||||
"Error": "Viga",
|
||||
"ERROR": "VIGA",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Lõikelaua sisu lugemine ebaõnnestus",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Vestluse salvestamine ebaõnnestus",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Tagasiside ajalugu",
|
||||
"Feedbacks": "Tagasisided",
|
||||
"Feel free to add specific details": "Võite lisada konkreetseid üksikasju",
|
||||
"Female": "",
|
||||
"File": "Fail",
|
||||
"File added successfully.": "Fail edukalt lisatud.",
|
||||
"File content updated successfully.": "Faili sisu edukalt uuendatud.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Gemini API seadistus",
|
||||
"Gemini API Key is required.": "Gemini API võti on nõutav.",
|
||||
"Gender": "",
|
||||
"General": "Üldine",
|
||||
"Generate": "",
|
||||
"Generate an image": "Genereeri pilt",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Google PSE API võti",
|
||||
"Google PSE Engine Id": "Google PSE mootori ID",
|
||||
"Gravatar": "",
|
||||
"Group": "Rühm",
|
||||
"Group created successfully": "Grupp edukalt loodud",
|
||||
"Group deleted successfully": "Grupp edukalt kustutatud",
|
||||
"Group Description": "Grupi kirjeldus",
|
||||
"Group Name": "Grupi nimi",
|
||||
"Group": "Rühm",
|
||||
"Group updated successfully": "Grupp edukalt uuendatud",
|
||||
"Groups": "Grupid",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Impordi tööriistad",
|
||||
"Important Update": "Oluline värskendus",
|
||||
"Include": "Kaasa",
|
||||
"Includes SharePoint": "Sisaldab SharePointi",
|
||||
"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",
|
||||
"Includes SharePoint": "Sisaldab SharePointi",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "Sisendkäsud",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Veenduge, et need on ümbritsetud järgmisega:",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Veenduge, et ekspordite workflow.json faili API formaadis ComfyUI-st.",
|
||||
"Male": "",
|
||||
"Manage": "Halda",
|
||||
"Manage Direct Connections": "Halda otseseid ühendusi",
|
||||
"Manage Models": "Halda mudeleid",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Halda OpenAI API ühendusi",
|
||||
"Manage Pipelines": "Halda torustikke",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "Märts",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Rohkem",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Nimi",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Nimetage oma teadmiste baas",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Sisu ei leitud",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "Pole mida rääkida",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Kaugus pole saadaval",
|
||||
"No feedbacks found": "Tagasisidet ei leitud",
|
||||
"No file selected": "Faili pole valitud",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Tulemusi ei leitud",
|
||||
"No search query generated": "Otsingupäringut ei genereeritud",
|
||||
"No source available": "Allikas pole saadaval",
|
||||
"No suggestion prompts": "Soovituslikke prompt'e pole",
|
||||
"No users were found.": "Kasutajaid ei leitud.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Pole klappe, mida uuendada",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Soovituslikke prompt'e pole",
|
||||
"None": "Mitte ühtegi",
|
||||
"Not factually correct": "Faktiliselt ebakorrektne",
|
||||
"Not helpful": "Pole abistav",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "OpenAI API seaded uuendatud",
|
||||
"OpenAI URL/Key required.": "OpenAI URL/võti on nõutav.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "või",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Palun vaadake hoolikalt läbi järgmised hoiatused:",
|
||||
"Please do not close the settings page while loading the model.": "Palun ärge sulgege seadete lehte mudeli laadimise ajal.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Palun sisestage vihje",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Port",
|
||||
"Positive attitude": "Positiivne suhtumine",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Prefiksi ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiksi ID-d kasutatakse teiste ühendustega konfliktide vältimiseks, lisades mudeli ID-dele prefiksi - jätke tühjaks keelamiseks",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "Profiil",
|
||||
"Profile Image": "Profiilipilt",
|
||||
"Prompt": "Vihje",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Vihje (nt Räägi mulle üks huvitav fakt Rooma impeeriumi kohta)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Ümberjärjestamise mudel",
|
||||
"Reset": "Lähtesta",
|
||||
"Reset All Models": "Lähtesta kõik mudelid",
|
||||
"Reset Image": "Lähtesta pilt",
|
||||
"Reset Upload Directory": "Lähtesta üleslaadimiste kataloog",
|
||||
"Reset Vector Storage/Knowledge": "Lähtesta vektormälu/teadmised",
|
||||
"Reset view": "Lähtesta vaade",
|
||||
"Reset Image": "Lähtesta pilt",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Vastuste teavitusi ei saa aktiveerida, kuna veebisaidi õigused on keelatud. Vajalike juurdepääsude andmiseks külastage oma brauseri seadeid.",
|
||||
"Response splitting": "Vastuse tükeldamine",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "Tulemus",
|
||||
"Result": "Tulemus",
|
||||
"RESULT": "Tulemus",
|
||||
"Retrieval": "Taastamine",
|
||||
"Retrieval Query Generation": "Taastamise päringu genereerimine",
|
||||
"Rich Text Input for Chat": "Rikasteksti sisend vestluse jaoks",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Salvesta ja loo",
|
||||
"Save & Update": "Salvesta ja uuenda",
|
||||
"Save As Copy": "Salvesta koopiana",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Salvesta silt",
|
||||
"Saved": "Salvestatud",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Vestluslogi salvestamine otse teie brauseri mällu pole enam toetatud. Palun võtke hetk, et alla laadida ja kustutada oma vestluslogi, klõpsates allpool olevat nuppu. Ärge muretsege, saate hõlpsasti oma vestluslogi tagarakendusse uuesti importida, kasutades",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Jaga",
|
||||
"Share Chat": "Jaga vestlust",
|
||||
"Share to Open WebUI Community": "Jaga Open WebUI kogukonnaga",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Näita",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Kõne-tekstiks mootor",
|
||||
"Start of the channel": "Kanali algus",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Peata",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Lõpetamise järjestus",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "STT mudel",
|
||||
"STT Settings": "STT seaded",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Räägi meile lähemalt:",
|
||||
"Temperature": "Temperatuur",
|
||||
"Temporary Chat": "Ajutine vestlus",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Teksti tükeldaja",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Tekst-kõneks mootor",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL režiim",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Kasutage '#' vihjete sisendis, et laadida ja kaasata oma teadmised.",
|
||||
"Use Gravatar": "Kasuta Gravatari",
|
||||
"Use groups to group your users and assign permissions.": "Kasutage gruppe oma kasutajate grupeerimiseks ja õiguste määramiseks.",
|
||||
"Use Initials": "Kasuta initsiaale",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Olete seda vestlust jaganud",
|
||||
"You're a helpful assistant.": "Oled abivalmis assistent.",
|
||||
"You're now logged in.": "Olete nüüd sisse logitud.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Teie konto staatus on praegu ootel aktiveerimist.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Kogu teie toetus läheb otse pistikprogrammi arendajale; Open WebUI ei võta mingit protsenti. Kuid valitud rahastamisplatvormil võivad olla oma tasud.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Oinarri URLa beharrezkoa da.",
|
||||
"Available list": "Zerrenda erabilgarria",
|
||||
"Available Tools": "",
|
||||
"available!": "eskuragarri!",
|
||||
"available users": "erabilgarri dauden erabiltzaileak",
|
||||
"available!": "eskuragarri!",
|
||||
"Away": "Kanpoan",
|
||||
"Awful": "Penagarria",
|
||||
"Azure AI Speech": "Azure AI Hizketa",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "Bing Bilaketa V7 Endpointua",
|
||||
"Bing Search V7 Subscription Key": "Bing Bilaketa V7 Harpidetza Gakoa",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Txat Kontrolak",
|
||||
"Chat direction": "Txataren norabidea",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Txataren Laburpena",
|
||||
"Chat Permissions": "Txat Baimenak",
|
||||
"Chat Tags Auto-Generation": "Txat Etiketen Auto-Sorkuntza",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "Kontrolak",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Kopiatuta",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "Partekatutako txataren URLa arbelera kopiatu da!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Dokumentuak",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "ez du kanpo konexiorik egiten, eta zure datuak modu seguruan mantentzen dira zure zerbitzari lokalean.",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ez eskuratu pipelines aleatorioak iturri ez fidagarrietatik.",
|
||||
"Don't have an account?": "Ez duzu konturik?",
|
||||
"don't install random functions from sources you don't trust.": "ez instalatu fidagarriak ez diren iturrietatik datozen ausazko funtzioak.",
|
||||
"don't install random tools from sources you don't trust.": "ez instalatu fidagarriak ez diren iturrietatik datozen ausazko tresnak.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ez eskuratu pipelines aleatorioak iturri ez fidagarrietatik.",
|
||||
"Don't like the style": "Ez zaizu estiloa gustatzen?",
|
||||
"Done": "Eginda",
|
||||
"Download": "Deskargatu",
|
||||
"Download & Delete": "Deskargatu eta ezabatu",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "Deskarga bertan behera utzi da",
|
||||
"Download Database": "Deskargatu Datu-basea",
|
||||
"Download & Delete": "Deskargatu eta ezabatu",
|
||||
"Drag and drop a file to upload or select a file to view": "Arrastatu eta jaregin fitxategi bat igotzeko edo hautatu fitxategi bat ikusteko",
|
||||
"Draw": "Marraztu",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Sartu Google PSE API Gakoa",
|
||||
"Enter Google PSE Engine Id": "Sartu Google PSE Motor IDa",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Sartu Irudi Tamaina (adib. 512x512)",
|
||||
"Enter Jina API Key": "Sartu Jina API Gakoa",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Sartu zure kodea hemen...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "Sartu Zure Posta Elektronikoa",
|
||||
"Enter Your Full Name": "Sartu Zure Izen-abizenak",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Sartu zure mezua",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Sartu Zure Rola",
|
||||
"Enter Your Username": "Sartu Zure Erabiltzaile-izena",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "Sartu zure kodea hemen...",
|
||||
"Error": "Errorea",
|
||||
"ERROR": "ERROREA",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Huts egin du arbelaren edukia irakurtzean",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Huts egin du elkarrizketa gordetzean",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Feedbacken Historia",
|
||||
"Feedbacks": "Feedbackak",
|
||||
"Feel free to add specific details": "Gehitu xehetasun zehatzak nahi izanez gero",
|
||||
"Female": "",
|
||||
"File": "Fitxategia",
|
||||
"File added successfully.": "Fitxategia ongi gehitu da.",
|
||||
"File content updated successfully.": "Fitxategiaren edukia ongi eguneratu da.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "Orokorra",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "Google PSE API Gakoa",
|
||||
"Google PSE Engine Id": "Google PSE Motor IDa",
|
||||
"Gravatar": "",
|
||||
"Group": "Taldea",
|
||||
"Group created successfully": "Taldea ongi sortu da",
|
||||
"Group deleted successfully": "Taldea ongi ezabatu da",
|
||||
"Group Description": "Taldearen Deskribapena",
|
||||
"Group Name": "Taldearen Izena",
|
||||
"Group": "Taldea",
|
||||
"Group updated successfully": "Taldea ongi eguneratu da",
|
||||
"Groups": "Taldeak",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Inportatu Tresnak",
|
||||
"Important Update": "Eguneratze garrantzitsua",
|
||||
"Include": "Sartu",
|
||||
"Includes SharePoint": "SharePoint barne",
|
||||
"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",
|
||||
"Includes SharePoint": "SharePoint barne",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "Sartu komandoak",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Ziurtatu hauek gehitzen dituzula",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Ziurtatu workflow.json fitxategia API formatu gisa esportatzen duzula ComfyUI-tik.",
|
||||
"Male": "",
|
||||
"Manage": "Kudeatu",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Kudeatu OpenAI API Konexioak",
|
||||
"Manage Pipelines": "Kudeatu Pipeline-ak",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "Martxoa",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Gehiago",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Izena",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Izendatu zure ezagutza-basea",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Ez da edukirik aurkitu",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "Ez dago hitz egiteko edukirik",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Ez dago distantziarik eskuragarri",
|
||||
"No feedbacks found": "Ez da iritzirik aurkitu",
|
||||
"No file selected": "Ez da fitxategirik hautatu",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Ez da emaitzarik aurkitu",
|
||||
"No search query generated": "Ez da bilaketa kontsultarik sortu",
|
||||
"No source available": "Ez dago iturririk eskuragarri",
|
||||
"No suggestion prompts": "Gomendatutako promptik ez",
|
||||
"No users were found.": "Ez da erabiltzailerik aurkitu.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Ez dago balbularik eguneratzeko",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Gomendatutako promptik ez",
|
||||
"None": "Bat ere ez",
|
||||
"Not factually correct": "Ez da faktikoki zuzena",
|
||||
"Not helpful": "Ez da lagungarria",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "OpenAI API ezarpenak eguneratu dira",
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Gakoa beharrezkoa da.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "edo",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Mesedez, berrikusi arretaz hurrengo oharrak:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Mesedez, sartu prompt bat",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Ataka",
|
||||
"Positive attitude": "Jarrera positiboa",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Aurrizki ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Aurrizki IDa erabiltzen da beste konexioekin gatazkak saihesteko modelo IDei aurrizki bat gehituz - utzi hutsik desgaitzeko",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "Profila",
|
||||
"Profile Image": "Profil irudia",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt-a (adib. Kontatu datu dibertigarri bat Erromatar Inperioari buruz)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Berrantolatze modeloa",
|
||||
"Reset": "Berrezarri",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "Berrezarri irudia",
|
||||
"Reset Upload Directory": "Berrezarri karga direktorioa",
|
||||
"Reset Vector Storage/Knowledge": "Berrezarri bektore biltegia/ezagutza",
|
||||
"Reset view": "",
|
||||
"Reset Image": "Berrezarri irudia",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Erantzunen jakinarazpenak ezin dira aktibatu webgunearen baimenak ukatu direlako. Mesedez, bisitatu zure nabigatzailearen ezarpenak beharrezko sarbidea emateko.",
|
||||
"Response splitting": "Erantzun banaketa",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "Emaitza",
|
||||
"Result": "Emaitza",
|
||||
"RESULT": "Emaitza",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "Testu aberastuko sarrera txaterako",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Gorde eta sortu",
|
||||
"Save & Update": "Gorde eta eguneratu",
|
||||
"Save As Copy": "Gorde kopia gisa",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Gorde etiketa",
|
||||
"Saved": "Gordeta",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Txat erregistroak zuzenean zure nabigatzailearen biltegian gordetzea ez da jadanik onartzen. Mesedez, hartu une bat zure txat erregistroak deskargatu eta ezabatzeko beheko botoia sakatuz. Ez kezkatu, zure txat erregistroak erraz inportatu ditzakezu berriro backendera honen bidez",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Partekatu",
|
||||
"Share Chat": "Partekatu txata",
|
||||
"Share to Open WebUI Community": "Partekatu OpenWebUI komunitatearekin",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Erakutsi",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Ahotsetik-testura motorra",
|
||||
"Start of the channel": "Kanalaren hasiera",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Gelditu",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Gelditzeko sekuentzia",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "STT modeloa",
|
||||
"STT Settings": "STT ezarpenak",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Kontatu gehiago:",
|
||||
"Temperature": "Tenperatura",
|
||||
"Temporary Chat": "Behin-behineko txata",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Testu banatzailea",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Testutik-ahotsera motorra",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL modua",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Erabili '#' prompt sarreran zure ezagutza kargatu eta sartzeko.",
|
||||
"Use Gravatar": "Erabili Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "Erabili taldeak zure erabiltzaileak taldekatu eta baimenak esleitzeko.",
|
||||
"Use Initials": "Erabili inizialak",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Txat hau partekatu duzu",
|
||||
"You're a helpful assistant.": "Laguntzaile baliagarri bat zara.",
|
||||
"You're now logged in.": "Orain saioa hasita duzu.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Zure kontuaren egoera aktibazio zain dago.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Zure ekarpen osoa zuzenean plugin garatzaileari joango zaio; Open WebUI-k ez du ehunekorik hartzen. Hala ere, aukeratutako finantzaketa plataformak bere komisioak izan ditzake.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
"Accurate information": "اطلاعات دقیق",
|
||||
"Action": "",
|
||||
"Action not found": "",
|
||||
"Action Required for Chat Log Storage": "برای ذخیره گزارش گفتوگو اقدام لازم است",
|
||||
"Action Required for Chat Log Storage": "برای ذخیره گزارش گفت\u200cوگو اقدام لازم است",
|
||||
"Actions": "کنش\u200cها",
|
||||
"Activate": "فعال کردن",
|
||||
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "این دستور را با تایپ \"/{{COMMAND}}\" در ورودی چت فعال کنید.",
|
||||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "به URL پایه AUTOMATIC1111 مورد نیاز است.",
|
||||
"Available list": "فهرست دردسترس",
|
||||
"Available Tools": "ابزارهای موجود",
|
||||
"available!": "در دسترس!",
|
||||
"available users": "کاربران در دسترس",
|
||||
"available!": "در دسترس!",
|
||||
"Away": "غایب",
|
||||
"Awful": "وحشتناک",
|
||||
"Azure AI Speech": "سخنگوی هوش\u200cمصنوعی Azure",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "بتا",
|
||||
"Bing Search V7 Endpoint": "نقطه پایانی جستجوی Bing V7",
|
||||
"Bing Search V7 Subscription Key": "کلید اشتراک جستجوی Bing V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "کلید API جستجوی Bocha",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "کنترل\u200cهای گفتگو",
|
||||
"Chat direction": "جهت\u200cگفتگو",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "نمای کلی گفتگو",
|
||||
"Chat Permissions": "مجوزهای گفتگو",
|
||||
"Chat Tags Auto-Generation": "تولید خودکار برچسب\u200cهای گفتگو",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "کنترل تکرار توالی\u200cهای توکن در متن تولید شده. مقدار بالاتر (مثلاً 1.5) تکرارها را شدیدتر جریمه می\u200cکند، در حالی که مقدار پایین\u200cتر (مثلاً 1.1) ملایم\u200cتر خواهد بود. در 1، غیرفعال است.",
|
||||
"Controls": "کنترل\u200cها",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "تعادل بین انسجام و تنوع خروجی را کنترل می\u200cکند. مقدار پایین\u200cتر منجر به متن متمرکزتر و منسجم\u200cتر می\u200cشود.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "کپی شد",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "URL چت به کلیپ بورد کپی شد!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "اسناد",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "هیچ اتصال خارجی ایجاد نمی کند و داده های شما به طور ایمن در سرور میزبان محلی شما باقی می ماند.",
|
||||
"Domain Filter List": "لیست فیلتر دامنه",
|
||||
"don't fetch random pipelines from sources you don't trust.": "pipelineهای تصادفی را از منابع غیرقابل اعتماد دریافت نکنید.",
|
||||
"Don't have an account?": "حساب کاربری ندارید؟",
|
||||
"don't install random functions from sources you don't trust.": "توابع تصادفی را از منابعی که به آنها اعتماد ندارید نصب نکنید.",
|
||||
"don't install random tools from sources you don't trust.": "ابزارهای تصادفی را از منابعی که به آنها اعتماد ندارید نصب نکنید.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "pipelineهای تصادفی را از منابع غیرقابل اعتماد دریافت نکنید.",
|
||||
"Don't like the style": "نظری ندارید؟",
|
||||
"Done": "انجام شد",
|
||||
"Download": "دانلود کن",
|
||||
"Download & Delete": "دانلود و حذف",
|
||||
"Download as SVG": "دانلود به صورت SVG",
|
||||
"Download canceled": "دانلود لغو شد",
|
||||
"Download Database": "دانلود پایگاه داده",
|
||||
"Download & Delete": "دانلود و حذف",
|
||||
"Drag and drop a file to upload or select a file to view": "یک فایل را برای آپلود بکشید و رها کنید یا برای مشاهده یک فایل را انتخاب کنید",
|
||||
"Draw": "رسم کردن",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "کلید API گوگل PSE را وارد کنید",
|
||||
"Enter Google PSE Engine Id": "شناسه موتور PSE گوگل را وارد کنید",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "اندازه تصویر را وارد کنید (مثال: 512x512)",
|
||||
"Enter Jina API Key": "کلید API جینا را وارد کنید",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "کد خود را اینجا وارد کنید...",
|
||||
"Enter your current password": "رمز عبور فعلی خود را وارد کنید",
|
||||
"Enter Your Email": "ایمیل خود را وارد کنید",
|
||||
"Enter Your Full Name": "نام کامل خود را وارد کنید",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "پیام خود را وارد کنید",
|
||||
"Enter your name": "نام خود را وارد کنید",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "نقش خود را وارد کنید",
|
||||
"Enter Your Username": "نام کاربری خود را وارد کنید",
|
||||
"Enter your webhook URL": "آدرس وب\u200cهوک خود را وارد کنید",
|
||||
"Enter your code here...": "کد خود را اینجا وارد کنید...",
|
||||
"Error": "خطا",
|
||||
"ERROR": "خطا",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "خواندن محتوای کلیپ بورد ناموفق بود",
|
||||
"Failed to save connections": "خطا در ذخیره\u200cسازی اتصالات",
|
||||
"Failed to save conversation": "خطا در ذخیره\u200cسازی گفت\u200cوگو",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "تاریخچهٔ بازخورد",
|
||||
"Feedbacks": "بازخوردها",
|
||||
"Feel free to add specific details": "اگر به دلخواه، معلومات خاصی اضافه کنید",
|
||||
"Female": "",
|
||||
"File": "پرونده",
|
||||
"File added successfully.": "پرونده با موفقیت افزوده شد.",
|
||||
"File content updated successfully.": "محتوای پرونده با موفقیت به\u200cروز شد.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "جمینی",
|
||||
"Gemini API Config": "پیکربندی API جمینی",
|
||||
"Gemini API Key is required.": "کلید API جمینی مورد نیاز است.",
|
||||
"Gender": "",
|
||||
"General": "عمومی",
|
||||
"Generate": "",
|
||||
"Generate an image": "تولید یک تصویر",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "گوگل درایو",
|
||||
"Google PSE API Key": "گوگل PSE API کلید",
|
||||
"Google PSE Engine Id": "شناسه موتور PSE گوگل",
|
||||
"Gravatar": "",
|
||||
"Group": "گروه",
|
||||
"Group created successfully": "گروه با موفقیت ایجاد شد",
|
||||
"Group deleted successfully": "گروه با موفقیت حذف شد",
|
||||
"Group Description": "توضیحات گروه",
|
||||
"Group Name": "نام گروه",
|
||||
"Group": "گروه",
|
||||
"Group updated successfully": "گروه با موفقیت به\u200cروز شد",
|
||||
"Groups": "گروه\u200cها",
|
||||
"H1": "",
|
||||
|
|
@ -801,13 +811,14 @@
|
|||
"Import Prompt Suggestions": "",
|
||||
"Import Prompts": "درون\u200cریزی پرامپت\u200cها",
|
||||
"Import Tools": "درون\u200cریزی ابزارها",
|
||||
"Important Update": "بهروزرسانی مهم",
|
||||
"Important Update": "به\u200cروزرسانی مهم",
|
||||
"Include": "شامل",
|
||||
"Includes SharePoint": "شامل SharePoint",
|
||||
"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 استفاده کنید.",
|
||||
"Includes SharePoint": "شامل SharePoint",
|
||||
"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": "اطلاعات",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "کل محتوا را به عنوان زمینه برای پردازش جامع تزریق کنید، این برای پرس\u200cوجوهای پیچیده توصیه می\u200cشود.",
|
||||
"Input": "",
|
||||
"Input commands": "ورودی دستورات",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "مطمئن شوید که آنها را با این محصور کنید:",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "مطمئن شوید که یک فایل workflow.json را به عنوان قالب API از ComfyUI صادر کنید.",
|
||||
"Male": "",
|
||||
"Manage": "مدیریت",
|
||||
"Manage Direct Connections": "مدیریت اتصالات مستقیم",
|
||||
"Manage Models": "مدیریت مدل\u200cها",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "مدیریت اتصالات API اوپن\u200cای\u200cآی",
|
||||
"Manage Pipelines": "مدیریت خطوط لوله",
|
||||
"Manage Tool Servers": "مدیریت سرورهای ابزار",
|
||||
"Manage your account information.": "",
|
||||
"March": "مارچ",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "بیشتر",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "نام",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "پایگاه دانش خود را نام\u200cگذاری کنید",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "محتوایی یافت نشد",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "محتوایی برای خواندن وجود ندارد",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "فاصله\u200cای در دسترس نیست",
|
||||
"No feedbacks found": "بازخوردی یافت نشد",
|
||||
"No file selected": "فایلی انتخاب نشده است",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "نتیجه\u200cای یافت نشد",
|
||||
"No search query generated": "پرسوجوی جستجویی ایجاد نشده است",
|
||||
"No source available": "منبعی در دسترس نیست",
|
||||
"No suggestion prompts": "بدون پرامپت پیشنهادی",
|
||||
"No users were found.": "کاربری یافت نشد.",
|
||||
"No valves": "",
|
||||
"No valves to update": "شیری برای به\u200cروزرسانی وجود ندارد",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "بدون پرامپت پیشنهادی",
|
||||
"None": "هیچ کدام",
|
||||
"Not factually correct": "اشتباهی فکری نیست",
|
||||
"Not helpful": "مفید نیست",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "تنظیمات API اوپن\u200cای\u200cآی به\u200cروز شد",
|
||||
"OpenAI URL/Key required.": "URL/Key OpenAI مورد نیاز است.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "یا",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "آدرس وب\u200cسوکت پلی\u200cرایت",
|
||||
"Please carefully review the following warnings:": "لطفاً هشدارهای زیر را با دقت بررسی کنید:",
|
||||
"Please do not close the settings page while loading the model.": "لطفاً در حین بارگیری مدل، صفحه تنظیمات را نبندید.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "لطفاً یک پرامپت وارد کنید",
|
||||
"Please enter a valid path": "لطفاً یک مسیر معتبر وارد کنید",
|
||||
"Please enter a valid URL": "لطفاً یک URL معتبر وارد کنید",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "پورت",
|
||||
"Positive attitude": "نظرات مثبت",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "شناسه پیشوند",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "شناسه پیشوند برای جلوگیری از تداخل با سایر اتصالات با افزودن پیشوند به شناسه\u200cهای مدل استفاده می\u200cشود - برای غیرفعال کردن خالی بگذارید",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "خصوصی",
|
||||
"Profile": "پروفایل",
|
||||
"Profile Image": "تصویر پروفایل",
|
||||
"Prompt": "پرامپت",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "پیشنهاد (برای مثال: به من بگوید چیزی که برای من یک کاربرد داره درباره ایران)",
|
||||
"Prompt Autocompletion": "تکمیل خودکار پرامپت",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "مدل ری\u200cشناسی مجدد غیرفعال است",
|
||||
"Reset": "بازنشانی",
|
||||
"Reset All Models": "بازنشانی همه مدل\u200cها",
|
||||
"Reset Image": "بازنشانی تصویر",
|
||||
"Reset Upload Directory": "بازنشانی پوشه آپلود",
|
||||
"Reset Vector Storage/Knowledge": "بازنشانی ذخیره\u200cسازی برداری/دانش",
|
||||
"Reset view": "بازنشانی نما",
|
||||
"Reset Image": "بازنشانی تصویر",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "اعلان\u200cهای پاسخ نمی\u200cتوانند فعال شوند زیرا مجوزهای وب\u200cسایت رد شده\u200cاند. لطفاً تنظیمات مرورگر خود را برای اعطای دسترسی لازم بررسی کنید.",
|
||||
"Response splitting": "تقسیم پاسخ",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "نتیجه",
|
||||
"Result": "نتیجه",
|
||||
"RESULT": "نتیجه",
|
||||
"Retrieval": "بازیابی",
|
||||
"Retrieval Query Generation": "تولید کوئری بازیابی",
|
||||
"Rich Text Input for Chat": "ورودی متن غنی برای چت",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "ذخیره و ایجاد",
|
||||
"Save & Update": "ذخیره و به\u200cروزرسانی",
|
||||
"Save As Copy": "ذخیره به صویت رونوشت",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "ذخیرهٔ برچسب",
|
||||
"Saved": "ذخیره شد",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "ذخیره گزارش\u200cهای چت مستقیماً در حافظه مرورگر شما دیگر پشتیبانی نمی\u200cشود. لطفاً با کلیک بر روی دکمه زیر، چند لحظه برای دانلود و حذف گزارش های چت خود وقت بگذارید. نگران نباشید، شما به راحتی می توانید گزارش های چت خود را از طریق بکند دوباره وارد کنید",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "اشتراک\u200cگذاری",
|
||||
"Share Chat": "اشتراک\u200cگذاری چت",
|
||||
"Share to Open WebUI Community": "اشتراک گذاری با OpenWebUI Community",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "مجوزهای اشتراک\u200cگذاری",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "نمایش",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "موتور گفتار به متن",
|
||||
"Start of the channel": "آغاز کانال",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "توقف",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "توقف توالی",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "مدل تبدیل صدا به متن",
|
||||
"STT Settings": "تنظیمات تبدیل صدا به متن",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "بیشتر بگویید:",
|
||||
"Temperature": "دما",
|
||||
"Temporary Chat": "چت موقت",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "تقسیم\u200cکننده متن",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "موتور تبدیل متن به گفتار",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "حالت URL",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "از '#' در ورودی پرامپت برای بارگیری و شامل کردن دانش خود استفاده کنید.",
|
||||
"Use Gravatar": "استفاده از گراواتار",
|
||||
"Use groups to group your users and assign permissions.": "از گروه\u200cها برای گروه\u200cبندی کاربران و تخصیص مجوزها استفاده کنید.",
|
||||
"Use Initials": "استفاده از سرواژه",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "از هیچ پراکسی برای دریافت محتوای صفحه استفاده نکنید.",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "از پراکسی تعیین شده توسط متغیرهای محیطی http_proxy و https_proxy برای دریافت محتوای صفحه استفاده کنید.",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "شما این گفتگو را به اشتراک گذاشته اید",
|
||||
"You're a helpful assistant.": "تو یک دستیار سودمند هستی.",
|
||||
"You're now logged in.": "شما اکنون وارد شده\u200cاید.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "وضعیت حساب شما در حال حاضر در انتظار فعال\u200cسازی است.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "تمام مشارکت شما مستقیماً به توسعه\u200cدهنده افزونه می\u200cرسد؛ Open WebUI هیچ درصدی دریافت نمی\u200cکند. با این حال، پلتفرم تأمین مالی انتخاب شده ممکن است کارمزد خود را داشته باشد.",
|
||||
"Youtube": "یوتیوب",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 verkko-osoite vaaditaan.",
|
||||
"Available list": "Käytettävissä oleva luettelo",
|
||||
"Available Tools": "Käytettävissä olevat työkalut",
|
||||
"available!": "saatavilla!",
|
||||
"available users": "käytettävissä olevat käyttäjät",
|
||||
"available!": "saatavilla!",
|
||||
"Away": "Poissa",
|
||||
"Awful": "Kauhea",
|
||||
"Azure AI Speech": "Azure AI Speech",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7 -päätepisteen osoite",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 -tilauskäyttäjäavain",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Bocha Search API -avain",
|
||||
"Bold": "Lihavointi",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Keskustelun hallinta",
|
||||
"Chat direction": "Keskustelun suunta",
|
||||
"Chat ID": "Keskustelu ID",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Keskustelun yleiskatsaus",
|
||||
"Chat Permissions": "Keskustelun käyttöoikeudet",
|
||||
"Chat Tags Auto-Generation": "Keskustelutunnisteiden automaattinen luonti",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "Ohjaimet",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Kontrolloi yhtenäisyyden ja monimuotoisuuden tasapainoa tuloksessa. Pienempi arvo tuottaa kohdennetumman ja johdonmukaisemman tekstin.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Kopioitu",
|
||||
"Copied link to clipboard": "Linkki kopioitu leikepöydälle",
|
||||
"Copied shared chat URL to clipboard!": "Jaettu keskustelulinkki kopioitu leikepöydälle!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Asiakirjat",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "ei tee ulkoisia yhteyksiä, ja tietosi pysyvät turvallisesti paikallisesti isännöidyllä palvelimellasi.",
|
||||
"Domain Filter List": "Verkko-osoitteiden suodatuslista",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Älä hae satunnaisia pipelineja epäluotettavista lähteistä.",
|
||||
"Don't have an account?": "Eikö sinulla ole tiliä?",
|
||||
"don't install random functions from sources you don't trust.": "älä asenna satunnaisia toimintoja lähteistä, joihin et luota.",
|
||||
"don't install random tools from sources you don't trust.": "älä asenna satunnaisia työkaluja lähteistä, joihin et luota.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Älä hae satunnaisia pipelineja epäluotettavista lähteistä.",
|
||||
"Don't like the style": "En pidä tyylistä",
|
||||
"Done": "Valmis",
|
||||
"Download": "Lataa",
|
||||
"Download & Delete": "Lataa ja poista",
|
||||
"Download as SVG": "Lataa SVG:nä",
|
||||
"Download canceled": "Lataus peruutettu",
|
||||
"Download Database": "Lataa tietokanta",
|
||||
"Download & Delete": "Lataa ja poista",
|
||||
"Drag and drop a file to upload or select a file to view": "Raahaa ja pudota tiedosto ladattavaksi tai valitse tiedosto katseltavaksi",
|
||||
"Draw": "Piirros",
|
||||
"Drop any files here to upload": "Pudota tähän ladattavat tiedostot",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Kirjoita Google PSE API -avain",
|
||||
"Enter Google PSE Engine Id": "Kirjoita Google PSE -moottorin tunnus",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Kirjoita kuvan koko (esim. 512x512)",
|
||||
"Enter Jina API Key": "Kirjoita Jina API -avain",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "Kirjoita JSON asetus (esim. {\"disable_links\": true})",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "Kirjoita Yacy salasana",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Kirjoita Yacy verkko-osoite (esim. http://yacy.example.com:8090)",
|
||||
"Enter Yacy Username": "Kirjoita Yacy käyttäjänimi",
|
||||
"Enter your code here...": "Kirjoita koodisi tähän...",
|
||||
"Enter your current password": "Kirjoita nykyinen salasanasi",
|
||||
"Enter Your Email": "Kirjoita sähköpostiosoitteesi",
|
||||
"Enter Your Full Name": "Kirjoita koko nimesi",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Kirjoita viestisi",
|
||||
"Enter your name": "Kirjoita nimesi tähän",
|
||||
"Enter Your Name": "Kirjoita nimesi",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Kirjoita roolisi",
|
||||
"Enter Your Username": "Kirjoita käyttäjätunnuksesi",
|
||||
"Enter your webhook URL": "Kirjoita webhook osoitteesi",
|
||||
"Enter your code here...": "Kirjoita koodisi tähän...",
|
||||
"Error": "Virhe",
|
||||
"ERROR": "VIRHE",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "Otsikon luonti epäonnistui",
|
||||
"Failed to load chat preview": "Keskustelun esikatselun lataaminen epäonnistui",
|
||||
"Failed to load file content.": "Tiedoston sisällön lataaminen epäonnistui.",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Leikepöydän sisällön lukeminen epäonnistui",
|
||||
"Failed to save connections": "Yhteyksien tallentaminen epäonnistui",
|
||||
"Failed to save conversation": "Keskustelun tallentaminen epäonnistui",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Palautehistoria",
|
||||
"Feedbacks": "Palautteet",
|
||||
"Feel free to add specific details": "Voit lisätä tarkempia tietoja",
|
||||
"Female": "",
|
||||
"File": "Tiedosto",
|
||||
"File added successfully.": "Tiedosto lisätty onnistuneesti.",
|
||||
"File content updated successfully.": "Tiedoston sisältö päivitetty onnistuneesti.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Gemini API konfiguraatio",
|
||||
"Gemini API Key is required.": "Gemini API -avain on vaaditaan.",
|
||||
"Gender": "",
|
||||
"General": "Yleinen",
|
||||
"Generate": "Luo",
|
||||
"Generate an image": "Luo kuva",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Google PSE API -avain",
|
||||
"Google PSE Engine Id": "Google PSE -moottorin tunnus",
|
||||
"Gravatar": "",
|
||||
"Group": "Ryhmä",
|
||||
"Group created successfully": "Ryhmä luotu onnistuneesti",
|
||||
"Group deleted successfully": "Ryhmä poistettu onnistuneesti",
|
||||
"Group Description": "Ryhmän kuvaus",
|
||||
"Group Name": "Ryhmän nimi",
|
||||
"Group": "Ryhmä",
|
||||
"Group updated successfully": "Ryhmä päivitetty onnistuneesti",
|
||||
"Groups": "Ryhmät",
|
||||
"H1": "H1",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Tuo työkalut",
|
||||
"Important Update": "Tärkeä päivitys",
|
||||
"Include": "Sisällytä",
|
||||
"Includes SharePoint": "Sisältää SharePointin",
|
||||
"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",
|
||||
"Includes SharePoint": "Sisältää SharePointin",
|
||||
"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": "Tiedot",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Upota koko sisältö kontekstiin kattavaa käsittelyä varten. Tätä suositellaan monimutkaisille kyselyille.",
|
||||
"Input": "Syöte",
|
||||
"Input commands": "Syötekäskyt",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "Näytä salasana käyttöliittymässä",
|
||||
"Make sure to enclose them with": "Varmista, että suljet ne",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Muista viedä workflow.json-tiedosto API-muodossa ComfyUI:sta.",
|
||||
"Male": "",
|
||||
"Manage": "Hallitse",
|
||||
"Manage Direct Connections": "Hallitse suoria yhteyksiä",
|
||||
"Manage Models": "Hallitse malleja",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Hallitse OpenAI API -yhteyksiä",
|
||||
"Manage Pipelines": "Hallitse putkia",
|
||||
"Manage Tool Servers": "Hallitse työkalu palvelimia",
|
||||
"Manage your account information.": "",
|
||||
"March": "maaliskuu",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "Markdown (otsikko)",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Lisää",
|
||||
"More Concise": "Ytimekkäämpi",
|
||||
"More Options": "Lisää vaihtoehtoja",
|
||||
"Move": "",
|
||||
"Name": "Nimi",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Anna tietokannalle nimi",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Sisältöä ei löytynyt",
|
||||
"No content found in file.": "Sisältöä ei löytynyt tiedostosta.",
|
||||
"No content to speak": "Ei puhuttavaa sisältöä",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Etäisyyttä ei saatavilla",
|
||||
"No feedbacks found": "Palautteita ei löytynyt",
|
||||
"No file selected": "Tiedostoa ei ole valittu",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Ei tuloksia",
|
||||
"No search query generated": "Hakukyselyä ei luotu",
|
||||
"No source available": "Lähdettä ei saatavilla",
|
||||
"No suggestion prompts": "Ei ehdotettuja promptteja",
|
||||
"No users were found.": "Käyttäjiä ei löytynyt.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Ei venttiileitä päivitettäväksi",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Ei ehdotettuja promptteja",
|
||||
"None": "Ei mikään",
|
||||
"Not factually correct": "Ei faktuaalisesti oikein",
|
||||
"Not helpful": "Ei hyödyllinen",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "OpenAI API -asetukset päivitetty",
|
||||
"OpenAI URL/Key required.": "OpenAI URL/avain vaaditaan.",
|
||||
"openapi.json URL or Path": "openapi.json verkko-osoite tai polku",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "tai",
|
||||
"Ordered List": "Järjestetty lista",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "Playwright WebSocket verkko-osoite",
|
||||
"Please carefully review the following warnings:": "Tarkista huolellisesti seuraavat varoitukset:",
|
||||
"Please do not close the settings page while loading the model.": "Älä sulje asetussivua mallin latautuessa.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Kirjoita kehote",
|
||||
"Please enter a valid path": "Kirjoita kelvollinen polku",
|
||||
"Please enter a valid URL": "Kirjoita kelvollinen verkko-osoite",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "Odota kunnes kaikki tiedostot ovat ladattu.",
|
||||
"Port": "Portti",
|
||||
"Positive attitude": "Positiivinen asenne",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Etuliite-ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Etuliite-ID:tä käytetään välttämään ristiriidat muiden yhteyksien kanssa lisäämällä etuliite mallitunnuksiin - jätä tyhjäksi, jos haluat ottaa sen pois käytöstä",
|
||||
"Prevent file creation": "Estä tiedostojen luonti",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "Edellinen viesti",
|
||||
"Private": "Yksityinen",
|
||||
"Profile": "Profiili",
|
||||
"Profile Image": "Profiilikuva",
|
||||
"Prompt": "Kehote",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Kehote (esim. Kerro hauska fakta Rooman valtakunnasta)",
|
||||
"Prompt Autocompletion": "Kehotteen automaattinen täydennys",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Uudelleenpisteytymismalli",
|
||||
"Reset": "Palauta",
|
||||
"Reset All Models": "Palauta kaikki mallit",
|
||||
"Reset Image": "Palauta kuva",
|
||||
"Reset Upload Directory": "Palauta latauspolku",
|
||||
"Reset Vector Storage/Knowledge": "Tyhjennä vektoritallennukset/tietämys",
|
||||
"Reset view": "Palauta näkymä",
|
||||
"Response": "Vastaus",
|
||||
"Reset Image": "Palauta kuva",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Vastausilmoituksia ei voida ottaa käyttöön, koska verkkosivuston käyttöoikeudet on evätty. Myönnä tarvittavat käyttöoikeudet selaimesi asetuksista.",
|
||||
"Response splitting": "Vastauksen jakaminen",
|
||||
"Response Watermark": "Vastauksen vesileima",
|
||||
"RESULT": "Tulos",
|
||||
"Result": "Tulos",
|
||||
"RESULT": "Tulos",
|
||||
"Retrieval": "Haku",
|
||||
"Retrieval Query Generation": "Hakukyselyn luominen",
|
||||
"Rich Text Input for Chat": "Rikasteksti-syöte chattiin",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Tallenna ja luo",
|
||||
"Save & Update": "Tallenna ja päivitä",
|
||||
"Save As Copy": "Tallenna kopiona",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Tallenna tagi",
|
||||
"Saved": "Tallennettu",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Keskustelulokien tallentaminen suoraan selaimen tallennustilaan ei ole enää tuettu. Lataa ja poista keskustelulokit napsauttamalla alla olevaa painiketta. Älä huoli, voit helposti tuoda keskustelulokit takaisin backendiin",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Jaa",
|
||||
"Share Chat": "Jaa keskustelu",
|
||||
"Share to Open WebUI Community": "Jaa OpenWebUI-yhteisöön",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Jako oikeudet",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Tähdellä (*) merkityt pikavalinnat ovat tilannekohtaisia ja aktiivisia vain tietyissä olosuhteissa.",
|
||||
"Show": "Näytä",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "Puheentunnistus",
|
||||
"Speech-to-Text Engine": "Puheentunnistusmoottori",
|
||||
"Start of the channel": "Kanavan alku",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Pysäytä",
|
||||
"Stop Generating": "Lopeta generointi",
|
||||
"Stop Sequence": "Lopetussekvenssi",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "Yliviivaus",
|
||||
"Strip Existing OCR": "Poista olemassa oleva OCR",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Poista olemassa oleva OCR-teksti PDF-tiedostosta ja suorita OCR uudelleen. Ohitetaan, jos pakota OCR -asetus on käytössä. Oletusarvo ei käytössä.",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Puheentunnistusmalli",
|
||||
"STT Settings": "Puheentunnistuksen asetukset",
|
||||
"Stylized PDF Export": "Muotoiltun PDF-vienti",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Kerro lisää:",
|
||||
"Temperature": "Lämpötila",
|
||||
"Temporary Chat": "Väliaikainen keskustelu",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Tekstin jakaja",
|
||||
"Text-to-Speech": "Puhesynteesi",
|
||||
"Text-to-Speech Engine": "Puhesynteesimoottori",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL-tila",
|
||||
"Usage": "Käyttö",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Käytä '#' -merkkiä kehotekenttään ladataksesi ja sisällyttääksesi tietämystäsi.",
|
||||
"Use Gravatar": "Käytä Gravataria",
|
||||
"Use groups to group your users and assign permissions.": "Käytä ryhmiä jäsentääksesi käyttäjiä ja antaaksesi käyttöoikeuksia.",
|
||||
"Use Initials": "Käytä alkukirjaimia",
|
||||
"Use LLM": "Käytä LLM:ää",
|
||||
"Use no proxy to fetch page contents.": "Älä käytä välityspalvelinta sivun tietoja haettaessa.",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Käytä http_proxy- ja https_proxy-ympäristömuuttujien määrittämää välityspalvelinta sivun sisällön hakemiseen.",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Olet jakanut tämän keskustelun",
|
||||
"You're a helpful assistant.": "Olet avulias avustaja.",
|
||||
"You're now logged in.": "Olet nyt kirjautunut sisään.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Tilisi tila on tällä hetkellä odottaa aktivointia.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Koko panoksesi menee suoraan lisäosan kehittäjälle; Open WebUI ei pidätä prosenttiosuutta. Valittu rahoitusalusta voi kuitenkin periä omia maksujaan.",
|
||||
"Youtube": "YouTube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "L'URL de base {AUTOMATIC1111} est requise.",
|
||||
"Available list": "Liste disponible",
|
||||
"Available Tools": "Outils disponibles",
|
||||
"available!": "disponible !",
|
||||
"available users": "utilisateurs disponibles",
|
||||
"available!": "disponible !",
|
||||
"Away": "Absent",
|
||||
"Awful": "Horrible",
|
||||
"Azure AI Speech": "Azure AI Speech",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Bêta",
|
||||
"Bing Search V7 Endpoint": "Point de terminaison Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Clé d'abonnement Bing Search V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Clé API Bocha Search",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Contrôles de la conversation",
|
||||
"Chat direction": "Direction de la conversation",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Aperçu de la conversation",
|
||||
"Chat Permissions": "Autorisations de la conversation",
|
||||
"Chat Tags Auto-Generation": "Génération automatique des tags",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Contrôle la répétition des séquences de tokens dans le texte généré. Une valeur plus élevée (par exemple, 1.5) pénalisera les répétitions plus fortement, tandis qu'une valeur plus basse (par exemple, 1.1) sera plus indulgente. À 1, elle est désactivée.",
|
||||
"Controls": "Contrôles",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Contrôle l'équilibre entre la cohérence et la diversité du résultat. Une valeur plus faible se traduira par un texte plus ciblé et plus cohérent.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Copié",
|
||||
"Copied link to clipboard": "Lien copié dans le presse-papiers",
|
||||
"Copied shared chat URL to clipboard!": "URL de la conversation partagée copiée dans le presse-papiers !",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Documents",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "n'établit aucune connexion externe et garde vos données en sécurité sur votre serveur local.",
|
||||
"Domain Filter List": "Liste des domaines à filtrés",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ne récupérez pas des pipelines aléatoires à partir de sources non fiables.",
|
||||
"Don't have an account?": "Vous n'avez pas de compte ?",
|
||||
"don't install random functions from sources you don't trust.": "n'installez pas de fonctions aléatoires provenant de sources auxquelles vous ne faites pas confiance.",
|
||||
"don't install random tools from sources you don't trust.": "n'installez pas d'outils aléatoires provenant de sources auxquelles vous ne faites pas confiance.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ne récupérez pas des pipelines aléatoires à partir de sources non fiables.",
|
||||
"Don't like the style": "N'apprécie pas le style",
|
||||
"Done": "Terminé",
|
||||
"Download": "Télécharger",
|
||||
"Download & Delete": "Télécharger et supprimer",
|
||||
"Download as SVG": "Télécharger au format SVG",
|
||||
"Download canceled": "Téléchargement annulé",
|
||||
"Download Database": "Télécharger la base de données",
|
||||
"Download & Delete": "Télécharger et supprimer",
|
||||
"Drag and drop a file to upload or select a file to view": "Glissez et déposez un fichier pour le téléverser ou sélectionnez un fichier à visualiser",
|
||||
"Draw": "Match nul",
|
||||
"Drop any files here to upload": "Déposez des fichiers ici pour les téléverser",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Entrez la clé API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Entrez l'identifiant du moteur Google PSE",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Entrez la taille de l'image (par ex. 512x512)",
|
||||
"Enter Jina API Key": "Entrez la clé API Jina",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "Entrez le mot de passe Yacy",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Entrez l'URL Yacy (par ex. http://yacy.example.com:8090)",
|
||||
"Enter Yacy Username": "Entrez le nom d'utilisateur Yacy",
|
||||
"Enter your code here...": "Saisissez votre code ici...",
|
||||
"Enter your current password": "Entrez votre mot de passe actuel",
|
||||
"Enter Your Email": "Entrez votre courriel",
|
||||
"Enter Your Full Name": "Entrez votre nom complet",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Entrez votre message",
|
||||
"Enter your name": "Entrez votre nom",
|
||||
"Enter Your Name": "Entez votre nom",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Entrez votre rôle",
|
||||
"Enter Your Username": "Entrez votre nom d'utilisateur",
|
||||
"Enter your webhook URL": "Entrez l'URL de votre webhook",
|
||||
"Enter your code here...": "Saisissez votre code ici...",
|
||||
"Error": "Erreur",
|
||||
"ERROR": "ERREUR",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "Échec du chargement du contenu du fichier",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
|
||||
"Failed to save connections": "Échec de la sauvegarde des connexions",
|
||||
"Failed to save conversation": "Échec de la sauvegarde de la conversation",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Historique des avis",
|
||||
"Feedbacks": "Avis",
|
||||
"Feel free to add specific details": "N'hésitez pas à ajouter des détails spécifiques",
|
||||
"Female": "",
|
||||
"File": "Fichier",
|
||||
"File added successfully.": "Fichier ajouté avec succès.",
|
||||
"File content updated successfully.": "Contenu du fichier mis à jour avec succès.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Configuration de l'API de Gemini",
|
||||
"Gemini API Key is required.": "La clé d'API de Gemini est requise",
|
||||
"Gender": "",
|
||||
"General": "Général",
|
||||
"Generate": "Génére",
|
||||
"Generate an image": "Génère une image",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Clé API Google PSE",
|
||||
"Google PSE Engine Id": "ID du moteur de recherche PSE de Google",
|
||||
"Gravatar": "",
|
||||
"Group": "Groupe",
|
||||
"Group created successfully": "Groupe créé avec succès",
|
||||
"Group deleted successfully": "Groupe supprimé avec succès",
|
||||
"Group Description": "Description du groupe",
|
||||
"Group Name": "Nom du groupe",
|
||||
"Group": "Groupe",
|
||||
"Group updated successfully": "Groupe mis à jour avec succès",
|
||||
"Groups": "Groupes",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Importer des outils",
|
||||
"Important Update": "Mise à jour importante",
|
||||
"Include": "Inclure",
|
||||
"Includes SharePoint": "Inclut SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Inclut SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecter l'ensemble du contenu comme contexte pour un traitement complet, recommandé pour les requêtes complexes.",
|
||||
"Input": "",
|
||||
"Input commands": "Commandes d'entrée",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "Rendre visible les mots de passe dans l'interface",
|
||||
"Make sure to enclose them with": "Assurez-vous de les inclure dans",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Veillez à exporter un fichier workflow.json au format API depuis ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Gérer",
|
||||
"Manage Direct Connections": "Gérer les connexions directes",
|
||||
"Manage Models": "Gérer les modèles",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Gérer les connexions API OpenAI",
|
||||
"Manage Pipelines": "Gérer les pipelines",
|
||||
"Manage Tool Servers": "Gérer les serveurs d'outils",
|
||||
"Manage your account information.": "",
|
||||
"March": "Mars",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Plus",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Nom d'utilisateur",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Nommez votre base de connaissances",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Aucun contenu trouvé",
|
||||
"No content found in file.": "Aucun contenu trouvé dans le fichier.",
|
||||
"No content to speak": "Rien à signaler",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Aucune distance disponible",
|
||||
"No feedbacks found": "Aucun avis trouvé",
|
||||
"No file selected": "Aucun fichier sélectionné",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Aucun résultat trouvé",
|
||||
"No search query generated": "Aucune requête de recherche générée",
|
||||
"No source available": "Aucune source n'est disponible",
|
||||
"No suggestion prompts": "Aucun prompt suggéré",
|
||||
"No users were found.": "Aucun utilisateur trouvé.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Aucune vanne à mettre à jour",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Aucun prompt suggéré",
|
||||
"None": "Aucun",
|
||||
"Not factually correct": "Non factuellement correct",
|
||||
"Not helpful": "Pas utile",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "Réglages de l'API OpenAI mis à jour",
|
||||
"OpenAI URL/Key required.": "URL/Clé OpenAI requise.",
|
||||
"openapi.json URL or Path": "URL ou chemin openapi.json",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Options pour exécuter un modèle de vision local dans la description d'image. Les réglages font référence à un modèle hébergé sur Hugging Face. Ce réglage est mutuellement exclusif avec picture_description_api.",
|
||||
"or": "ou",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "URL du websocket Playwright",
|
||||
"Please carefully review the following warnings:": "Veuillez lire attentivement les avertissements suivants :",
|
||||
"Please do not close the settings page while loading the model.": "Veuillez ne pas fermer les réglages pendant le chargement du modèle.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Veuillez saisir un prompt",
|
||||
"Please enter a valid path": "Veuillez entrer un chemin d'accès valide",
|
||||
"Please enter a valid URL": "Veuillez entrer une URL valide",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Port",
|
||||
"Positive attitude": "Attitude positive",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "ID de préfixe",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Le préfixe ID est utilisé pour éviter les conflits avec d'autres connexions en ajoutant un préfixe aux ID de modèle - laissez vide pour désactiver",
|
||||
"Prevent file creation": "Prévenir la création de fichier",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "Message précédent",
|
||||
"Private": "Privé",
|
||||
"Profile": "Profil",
|
||||
"Profile Image": "Image de profil",
|
||||
"Prompt": "Prompt",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (par ex. Dites-moi un fait amusant à propos de l'Empire romain)",
|
||||
"Prompt Autocompletion": "Autocomplétion de prompt",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Modèle de ré-ranking",
|
||||
"Reset": "Réinitialiser",
|
||||
"Reset All Models": "Réinitialiser tous les modèles",
|
||||
"Reset Image": "Réinitialiser l’image",
|
||||
"Reset Upload Directory": "Réinitialiser le répertoire de téléchargement",
|
||||
"Reset Vector Storage/Knowledge": "Réinitialiser le stockage vectoriel/connaissances",
|
||||
"Reset view": "Réinitialiser la vue",
|
||||
"Reset Image": "Réinitialiser l’image",
|
||||
"Response": "Réponse",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Les notifications de réponse ne peuvent pas être activées car les autorisations du site web ont été refusées. Veuillez vérifier les réglages de votre navigateur pour accorder l'accès nécessaire.",
|
||||
"Response splitting": "Fractionnement de la réponse",
|
||||
"Response Watermark": "Filigramme de la réponse",
|
||||
"RESULT": "Résultat",
|
||||
"Result": "Résultat",
|
||||
"RESULT": "Résultat",
|
||||
"Retrieval": "Récupération",
|
||||
"Retrieval Query Generation": "Génération de requête de RAG",
|
||||
"Rich Text Input for Chat": "Saisie de texte enrichi pour la conversation",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Enregistrer & Créer",
|
||||
"Save & Update": "Enregistrer & Mettre à jour",
|
||||
"Save As Copy": "Enregistrer comme copie",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Enregistrer le tag",
|
||||
"Saved": "Enregistré",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "La sauvegarde des journaux de conversation directement dans le stockage de votre navigateur n'est plus prise en charge. Veuillez prendre un instant pour télécharger et supprimer vos journaux de conversation en cliquant sur le bouton ci-dessous. Ne vous inquiétez pas, vous pouvez facilement réimporter vos journaux de conversation dans le backend via",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Partager",
|
||||
"Share Chat": "Partage de conversation",
|
||||
"Share to Open WebUI Community": "Partager avec la communauté OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Autorisation de partage",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Les raccourcis avec un astérisque (*) sont situationnels et ne sont actifs que dans des conditions spécifiques.",
|
||||
"Show": "Afficher",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "Reconnaissance vocale",
|
||||
"Speech-to-Text Engine": "Moteur de reconnaissance vocale",
|
||||
"Start of the channel": "Début du canal",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Stop",
|
||||
"Stop Generating": "Arrêter la génération",
|
||||
"Stop Sequence": "Séquence d'arrêt",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "Supprimer l'OCR existant",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Supprimer le texte OCR existant du PDF et réexécuter l'OCR. Ignoré si la fonction Force OCR est activée. Par défaut à False.",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Modèle de Speech-to-Text",
|
||||
"STT Settings": "Réglages de Speech-to-Text",
|
||||
"Stylized PDF Export": "Export de PDF stylisés",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Dites-nous en plus à ce sujet : ",
|
||||
"Temperature": "Température",
|
||||
"Temporary Chat": "conversation temporaire",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Text Splitter",
|
||||
"Text-to-Speech": "Text-to-Speech",
|
||||
"Text-to-Speech Engine": "Moteur de Text-to-Speech",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Mode d'URL",
|
||||
"Usage": "Utilisation",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Utilisez '#' dans la zone de saisie du prompt pour charger et inclure vos connaissances.",
|
||||
"Use Gravatar": "Utiliser Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "Utilisez des groupes pour regrouper vos utilisateurs et attribuer des permissions.",
|
||||
"Use Initials": "Utiliser les initiales",
|
||||
"Use LLM": "Utiliser le LLM",
|
||||
"Use no proxy to fetch page contents.": "Ne pas utiliser de proxy pour récupérer le contenu des pages.",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Utiliser le proxy défini par les variables d'environnement http_proxy et https_proxy pour récupérer le contenu des pages.",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Vous avez partagé cette conversation.",
|
||||
"You're a helpful assistant.": "Vous êtes un assistant efficace.",
|
||||
"You're now logged in.": "Vous êtes désormais connecté.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Votre statut de compte est actuellement en attente d'activation.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "L'intégralité de votre contribution ira directement au développeur du plugin ; Open WebUI ne prend aucun pourcentage. Cependant, la plateforme de financement choisie peut avoir ses propres frais.",
|
||||
"Youtube": "YouTube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "L'URL de base {AUTOMATIC1111} est requise.",
|
||||
"Available list": "Liste disponible",
|
||||
"Available Tools": "Outils disponibles",
|
||||
"available!": "disponible !",
|
||||
"available users": "utilisateurs disponibles",
|
||||
"available!": "disponible !",
|
||||
"Away": "Absent",
|
||||
"Awful": "Horrible",
|
||||
"Azure AI Speech": "Azure AI Speech",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Bêta",
|
||||
"Bing Search V7 Endpoint": "Point de terminaison Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Clé d'abonnement Bing Search V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Clé API Bocha Search",
|
||||
"Bold": "Gras",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Contrôles de la conversation",
|
||||
"Chat direction": "Direction de la conversation",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Aperçu de la conversation",
|
||||
"Chat Permissions": "Autorisations de la conversation",
|
||||
"Chat Tags Auto-Generation": "Génération automatique des tags",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Contrôle la répétition des séquences de tokens dans le texte généré. Une valeur plus élevée (par exemple, 1.5) pénalisera les répétitions plus fortement, tandis qu'une valeur plus basse (par exemple, 1.1) sera plus indulgente. À 1, elle est désactivée.",
|
||||
"Controls": "Contrôles",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Contrôle l'équilibre entre la cohérence et la diversité du résultat. Une valeur plus faible se traduira par un texte plus ciblé et plus cohérent.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Copié",
|
||||
"Copied link to clipboard": "Lien copié dans le presse-papiers",
|
||||
"Copied shared chat URL to clipboard!": "URL de la conversation partagée copiée dans le presse-papiers !",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Documents",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "n'établit aucune connexion externe et garde vos données en sécurité sur votre serveur local.",
|
||||
"Domain Filter List": "Liste des domaines à filtrés",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ne récupérez pas des pipelines aléatoires depuis des sources non fiables.",
|
||||
"Don't have an account?": "Vous n'avez pas de compte ?",
|
||||
"don't install random functions from sources you don't trust.": "n'installez pas de fonctions aléatoires provenant de sources auxquelles vous ne faites pas confiance.",
|
||||
"don't install random tools from sources you don't trust.": "n'installez pas d'outils aléatoires provenant de sources auxquelles vous ne faites pas confiance.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ne récupérez pas des pipelines aléatoires depuis des sources non fiables.",
|
||||
"Don't like the style": "N'apprécie pas le style",
|
||||
"Done": "Terminé",
|
||||
"Download": "Télécharger",
|
||||
"Download & Delete": "Télécharger et supprimer",
|
||||
"Download as SVG": "Télécharger au format SVG",
|
||||
"Download canceled": "Téléchargement annulé",
|
||||
"Download Database": "Télécharger la base de données",
|
||||
"Download & Delete": "Télécharger et supprimer",
|
||||
"Drag and drop a file to upload or select a file to view": "Glissez et déposez un fichier pour le téléverser ou sélectionnez un fichier à visualiser",
|
||||
"Draw": "Match nul",
|
||||
"Drop any files here to upload": "Déposez des fichiers ici pour les téléverser",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Entrez la clé API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Entrez l'identifiant du moteur Google PSE",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Entrez la taille de l'image (par ex. 512x512)",
|
||||
"Enter Jina API Key": "Entrez la clé API Jina",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "Entrez le mot de passe Yacy",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Entrez l'URL Yacy (par ex. http://yacy.example.com:8090)",
|
||||
"Enter Yacy Username": "Entrez le nom d'utilisateur Yacy",
|
||||
"Enter your code here...": "Saisissez votre code ici...",
|
||||
"Enter your current password": "Entrez votre mot de passe actuel",
|
||||
"Enter Your Email": "Entrez votre adresse e-mail",
|
||||
"Enter Your Full Name": "Entrez votre nom complet",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Entrez votre message",
|
||||
"Enter your name": "Entrez votre nom",
|
||||
"Enter Your Name": "Entez votre nom",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Entrez votre rôle",
|
||||
"Enter Your Username": "Entrez votre nom d'utilisateur",
|
||||
"Enter your webhook URL": "Entrez l'URL de votre webhook",
|
||||
"Enter your code here...": "Saisissez votre code ici...",
|
||||
"Error": "Erreur",
|
||||
"ERROR": "ERREUR",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "Échec de la génération du titre",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "Échec du chargement du contenu du fichier",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
|
||||
"Failed to save connections": "Échec de la sauvegarde des connexions",
|
||||
"Failed to save conversation": "Échec de la sauvegarde de la conversation",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Historique des avis",
|
||||
"Feedbacks": "Avis",
|
||||
"Feel free to add specific details": "N'hésitez pas à ajouter des détails spécifiques",
|
||||
"Female": "",
|
||||
"File": "Fichier",
|
||||
"File added successfully.": "Fichier ajouté avec succès.",
|
||||
"File content updated successfully.": "Contenu du fichier mis à jour avec succès.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Configuration de l'API de Gemini",
|
||||
"Gemini API Key is required.": "La clé d'API de Gemini est requise",
|
||||
"Gender": "",
|
||||
"General": "Général",
|
||||
"Generate": "Génére",
|
||||
"Generate an image": "Génère une image",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Clé API Google PSE",
|
||||
"Google PSE Engine Id": "ID du moteur de recherche PSE de Google",
|
||||
"Gravatar": "",
|
||||
"Group": "Groupe",
|
||||
"Group created successfully": "Groupe créé avec succès",
|
||||
"Group deleted successfully": "Groupe supprimé avec succès",
|
||||
"Group Description": "Description du groupe",
|
||||
"Group Name": "Nom du groupe",
|
||||
"Group": "Groupe",
|
||||
"Group updated successfully": "Groupe mis à jour avec succès",
|
||||
"Groups": "Groupes",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Importer des outils",
|
||||
"Important Update": "Mise à jour importante",
|
||||
"Include": "Inclure",
|
||||
"Includes SharePoint": "Inclut SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Inclut SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecter l'ensemble du contenu comme contexte pour un traitement complet, recommandé pour les requêtes complexes.",
|
||||
"Input": "",
|
||||
"Input commands": "Commandes d'entrée",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "Rendre visible les mots de passe dans l'interface",
|
||||
"Make sure to enclose them with": "Assurez-vous de les inclure dans",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Veillez à exporter un fichier workflow.json au format API depuis ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Gérer",
|
||||
"Manage Direct Connections": "Gérer les connexions directes",
|
||||
"Manage Models": "Gérer les modèles",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Gérer les connexions API OpenAI",
|
||||
"Manage Pipelines": "Gérer les pipelines",
|
||||
"Manage Tool Servers": "Gérer les serveurs d'outils",
|
||||
"Manage your account information.": "",
|
||||
"March": "Mars",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Plus",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Nom d'utilisateur",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Nommez votre base de connaissances",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Aucun contenu trouvé",
|
||||
"No content found in file.": "Aucun contenu trouvé dans le fichier.",
|
||||
"No content to speak": "Rien à signaler",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Aucune distance disponible",
|
||||
"No feedbacks found": "Aucun avis trouvé",
|
||||
"No file selected": "Aucun fichier sélectionné",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Aucun résultat trouvé",
|
||||
"No search query generated": "Aucune requête de recherche générée",
|
||||
"No source available": "Aucune source n'est disponible",
|
||||
"No suggestion prompts": "Aucun prompt suggéré",
|
||||
"No users were found.": "Aucun utilisateur trouvé.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Aucune vanne à mettre à jour",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Aucun prompt suggéré",
|
||||
"None": "Aucun",
|
||||
"Not factually correct": "Non factuellement correct",
|
||||
"Not helpful": "Pas utile",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "Réglages de l'API OpenAI mis à jour",
|
||||
"OpenAI URL/Key required.": "URL/Clé OpenAI requise.",
|
||||
"openapi.json URL or Path": "URL ou chemin openapi.json",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Options pour exécuter un modèle de vision local dans la description d'image. Les réglages font référence à un modèle hébergé sur Hugging Face. Ce réglage est mutuellement exclusif avec picture_description_api.",
|
||||
"or": "ou",
|
||||
"Ordered List": "Liste ordonnéee",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "URL du websocket Playwright",
|
||||
"Please carefully review the following warnings:": "Veuillez lire attentivement les avertissements suivants :",
|
||||
"Please do not close the settings page while loading the model.": "Veuillez ne pas fermer les réglages pendant le chargement du modèle.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Veuillez saisir un prompt",
|
||||
"Please enter a valid path": "Veuillez entrer un chemin d'accès valide",
|
||||
"Please enter a valid URL": "Veuillez entrer une URL valide",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Port",
|
||||
"Positive attitude": "Attitude positive",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "ID de préfixe",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Le préfixe ID est utilisé pour éviter les conflits avec d'autres connexions en ajoutant un préfixe aux ID de modèle - laissez vide pour désactiver",
|
||||
"Prevent file creation": "Prévenir la création de fichier",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "Message précédent",
|
||||
"Private": "Privé",
|
||||
"Profile": "Profil",
|
||||
"Profile Image": "Image de profil",
|
||||
"Prompt": "Prompt",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (par ex. Dites-moi un fait amusant à propos de l'Empire romain)",
|
||||
"Prompt Autocompletion": "Autocomplétion de prompt",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Modèle de ré-ranking",
|
||||
"Reset": "Réinitialiser",
|
||||
"Reset All Models": "Réinitialiser tous les modèles",
|
||||
"Reset Image": "Réinitialiser l’image",
|
||||
"Reset Upload Directory": "Réinitialiser le répertoire de téléchargement",
|
||||
"Reset Vector Storage/Knowledge": "Réinitialiser le stockage vectoriel/connaissances",
|
||||
"Reset view": "Réinitialiser la vue",
|
||||
"Reset Image": "Réinitialiser l’image",
|
||||
"Response": "Réponse",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Les notifications de réponse ne peuvent pas être activées car les autorisations du site web ont été refusées. Veuillez vérifier les réglages de votre navigateur pour accorder l'accès nécessaire.",
|
||||
"Response splitting": "Fractionnement de la réponse",
|
||||
"Response Watermark": "Filigramme de la réponse",
|
||||
"RESULT": "Résultat",
|
||||
"Result": "Résultat",
|
||||
"RESULT": "Résultat",
|
||||
"Retrieval": "Récupération",
|
||||
"Retrieval Query Generation": "Génération de requête de RAG",
|
||||
"Rich Text Input for Chat": "Saisie de texte enrichi pour la conversation",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Enregistrer & Créer",
|
||||
"Save & Update": "Enregistrer & Mettre à jour",
|
||||
"Save As Copy": "Enregistrer comme copie",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Enregistrer le tag",
|
||||
"Saved": "Enregistré",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "La sauvegarde des journaux de conversation directement dans le stockage de votre navigateur n'est plus prise en charge. Veuillez prendre un instant pour télécharger et supprimer vos journaux de conversation en cliquant sur le bouton ci-dessous. Ne vous inquiétez pas, vous pouvez facilement réimporter vos journaux de conversation dans le backend via",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Partager",
|
||||
"Share Chat": "Partage de conversation",
|
||||
"Share to Open WebUI Community": "Partager avec la communauté OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Autorisation de partage",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Les raccourcis avec un astérisque (*) sont situationnels et ne sont actifs que dans des conditions spécifiques.",
|
||||
"Show": "Afficher",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "Reconnaissance vocale",
|
||||
"Speech-to-Text Engine": "Moteur de reconnaissance vocale",
|
||||
"Start of the channel": "Début du canal",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Stop",
|
||||
"Stop Generating": "Arrêter la génération",
|
||||
"Stop Sequence": "Séquence d'arrêt",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "Supprimer l'OCR existant",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Supprimer le texte OCR existant du PDF et réexécuter l'OCR. Ignoré si la fonction Force OCR est activée. Par défaut à False.",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Modèle de Speech-to-Text",
|
||||
"STT Settings": "Réglages de Speech-to-Text",
|
||||
"Stylized PDF Export": "Export de PDF stylisés",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Dites-nous en plus à ce sujet : ",
|
||||
"Temperature": "Température",
|
||||
"Temporary Chat": "conversation temporaire",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Text Splitter",
|
||||
"Text-to-Speech": "Text-to-Speech",
|
||||
"Text-to-Speech Engine": "Moteur de Text-to-Speech",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Mode d'URL",
|
||||
"Usage": "Utilisation",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Utilisez '#' dans la zone de saisie du prompt pour charger et inclure vos connaissances.",
|
||||
"Use Gravatar": "Utiliser Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "Utilisez des groupes pour regrouper vos utilisateurs et attribuer des permissions.",
|
||||
"Use Initials": "Utiliser les initiales",
|
||||
"Use LLM": "Utiliser le LLM",
|
||||
"Use no proxy to fetch page contents.": "Ne pas utiliser de proxy pour récupérer le contenu des pages.",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Utiliser le proxy défini par les variables d'environnement http_proxy et https_proxy pour récupérer le contenu des pages.",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Vous avez partagé cette conversation.",
|
||||
"You're a helpful assistant.": "Vous êtes un assistant efficace.",
|
||||
"You're now logged in.": "Vous êtes désormais connecté.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Votre statut de compte est actuellement en attente d'activation.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "L'intégralité de votre contribution ira directement au développeur du plugin ; Open WebUI ne prend aucun pourcentage. Cependant, la plateforme de financement choisie peut avoir ses propres frais.",
|
||||
"Youtube": "YouTube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "A dirección URL de AUTOMATIC1111 e requerida.",
|
||||
"Available list": "Lista dispoñible",
|
||||
"Available Tools": "",
|
||||
"available!": "¡dispoñible!",
|
||||
"available users": "usuarios dispoñibles",
|
||||
"available!": "¡dispoñible!",
|
||||
"Away": "Ausente",
|
||||
"Awful": "Horrible",
|
||||
"Azure AI Speech": "Voz de Azure AI",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Punto final da busqueda de Bing versión V7",
|
||||
"Bing Search V7 Subscription Key": "Chave de suscripción da busqueda de Bing versión V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Controis do chat",
|
||||
"Chat direction": "Dirección do Chat",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Vista xeral do chat",
|
||||
"Chat Permissions": "Permisos do Chat",
|
||||
"Chat Tags Auto-Generation": "Auto-xeneración das Etiquetas para o Chat",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Controla a repetición de secuencias de tokens no texto xerado. Un valor máis alto (por exemplo, 1,5) penalizará as repeticións con máis forza, mentres que un valor máis baixo (por exemplo, 1,1) será mais tolerante. Cando é 1, está desactivado.",
|
||||
"Controls": "Controles",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Controla o equilibrio entre a coherencia e a diversidade da saída. Un valor máis baixo dará como resultado un texto máis centrado e coherente.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Copiado",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "¡URL de chat compartido copiado o portapapeis!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Documentos",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "non realiza ninguna conexión externa y sus datos permanecen seguros en su servidor alojado localmente.",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Non obteñas pipelines aleatorias de fontes non fiables.",
|
||||
"Don't have an account?": "¿Non tes unha conta?",
|
||||
"don't install random functions from sources you don't trust.": "Non instale funcións aleatorias desde fontes nas que non confíe.",
|
||||
"don't install random tools from sources you don't trust.": "Non instale ferramentas aleatorias desde fontes nas que non confíe.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Non obteñas pipelines aleatorias de fontes non fiables.",
|
||||
"Don't like the style": "Non che gusta o estilo?",
|
||||
"Done": "Feito",
|
||||
"Download": "Descargar",
|
||||
"Download & Delete": "Descargar e eliminar",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "Descarga cancelada",
|
||||
"Download Database": "Descarga a Base de Datos",
|
||||
"Download & Delete": "Descargar e eliminar",
|
||||
"Drag and drop a file to upload or select a file to view": "Arrastra y suelta un Arquivo para subirlo o selecciona un Arquivo para verlo",
|
||||
"Draw": "Dibujar",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Ingrese a chave API de Google PSE",
|
||||
"Enter Google PSE Engine Id": "Introduzca o ID do motor PSE de Google",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Ingrese o tamaño da imaxen (p.ej. 512x512)",
|
||||
"Enter Jina API Key": "Ingrese a chave API de Jina",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Introduce o teu código aquí...",
|
||||
"Enter your current password": "Ingrese o seu contrasinal actual",
|
||||
"Enter Your Email": "Ingrese o seu correo electrónico",
|
||||
"Enter Your Full Name": "Ingrese o seu nome completo",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Ingrese o seu mensaxe",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Ingrese o seu rol",
|
||||
"Enter Your Username": "Ingrese o seu nome de usuario",
|
||||
"Enter your webhook URL": "Ingrese a sua URL de webhook",
|
||||
"Enter your code here...": "Introduce o teu código aquí...",
|
||||
"Error": "Error",
|
||||
"ERROR": "ERROR",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Non pudo Lerse o contido do portapapeles",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Non puido gardarse a conversa",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Historial de retroalimentación",
|
||||
"Feedbacks": "Retroalimentacions",
|
||||
"Feel free to add specific details": "Libre de agregar detalles específicos",
|
||||
"Female": "",
|
||||
"File": "Arquivo",
|
||||
"File added successfully.": "Arquivo agregado correctamente.",
|
||||
"File content updated successfully.": "Contido do Arquivo actualizado correctamente.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "General",
|
||||
"Generate": "",
|
||||
"Generate an image": "Generar unha imaxen",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "chave API de Google PSE",
|
||||
"Google PSE Engine Id": "ID do motor PSE de Google",
|
||||
"Gravatar": "",
|
||||
"Group": "Grupo",
|
||||
"Group created successfully": "Grupo creado correctamente",
|
||||
"Group deleted successfully": "Grupo eliminado correctamente",
|
||||
"Group Description": "Descripción do grupo",
|
||||
"Group Name": "Nome do grupo",
|
||||
"Group": "Grupo",
|
||||
"Group updated successfully": "Grupo actualizado correctamente",
|
||||
"Groups": "Grupos",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Importar ferramentas",
|
||||
"Important Update": "Actualización importante",
|
||||
"Include": "Incluir",
|
||||
"Includes SharePoint": "Inclúe SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Inclúe SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "Ingresar comandos",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Asegúrese de adxuntarlos con",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Asegúrese de exportar un Arquivo workflow.json en formato API desde ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Xestionar",
|
||||
"Manage Direct Connections": "Xestionar Conexións Directas",
|
||||
"Manage Models": "Xestionar modelos",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Xestionar conexiones API de OpenAI",
|
||||
"Manage Pipelines": "Administrar Pipelines",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "Marzo",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "mais",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Nombre",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Nombra a tua base de coñecementos",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "No se encontró contido",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "Non ten contido para falar",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Non ten distancia disponible",
|
||||
"No feedbacks found": "No se encontraron retroalimentacions",
|
||||
"No file selected": "Ningún arquivo fué seleccionado",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "No se han encontrado resultados",
|
||||
"No search query generated": "No se ha generado ninguna consulta de búsqueda",
|
||||
"No source available": "Non ten fuente disponible",
|
||||
"No suggestion prompts": "Sen prompts suxeridos",
|
||||
"No users were found.": "No se encontraron usuarios.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Non ten válvulas para actualizar",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Sen prompts suxeridos",
|
||||
"None": "Ninguno",
|
||||
"Not factually correct": "No es correcto en todos os aspectos",
|
||||
"Not helpful": "No útil",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "Configuración de OpenAI API actualizada",
|
||||
"OpenAI URL/Key required.": "URL/chave de OpenAI es requerida.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "ou",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Por favor revise con cuidado os siguientes avisos:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Por favor ingrese un prompt",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Puerto",
|
||||
"Positive attitude": "Actitud positiva",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "ID de prefijo",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "O ID de prefixo se utiliza para evitar conflictos con outras conexiones añadiendo un prefijo a os IDs de os modelos - deje vacío para deshabilitar",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "Perfil",
|
||||
"Profile Image": "imaxen de perfil",
|
||||
"Prompt": "Prompt",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (por Exemplo, cuéntame unha cosa divertida sobre o Imperio Romano)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Modelo de reranking",
|
||||
"Reset": "Reiniciar",
|
||||
"Reset All Models": "Reiniciar todos os modelos",
|
||||
"Reset Image": "Restablecer imaxe",
|
||||
"Reset Upload Directory": "Reiniciar Directorio de carga",
|
||||
"Reset Vector Storage/Knowledge": "Reiniciar almacenamiento de vectores/coñecemento",
|
||||
"Reset view": "Reiniciar vista",
|
||||
"Reset Image": "Restablecer imaxe",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "As notificacions de resposta non poden activarse debido a que os permisos do sitio web han sido denegados. Por favor, visite as configuracions da sua navegador para otorgar o acceso necesario.",
|
||||
"Response splitting": "División de respostas",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "Resultado",
|
||||
"Result": "Resultado",
|
||||
"RESULT": "Resultado",
|
||||
"Retrieval": "recuperación",
|
||||
"Retrieval Query Generation": "xeneración de consulta de recuperación",
|
||||
"Rich Text Input for Chat": "Entrada de texto enriquecido para chat",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Gardar y xerar",
|
||||
"Save & Update": "Gardar y Actualizar",
|
||||
"Save As Copy": "Gardar como copia",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Gardar etiqueta",
|
||||
"Saved": "Gardado",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Xa non se admite gardar registros de chat directamente no almacenamiento da sua navegador. Tómese un momento para descargar y eliminar sus registros de chat haciendo clic no botón a continuación. No te preocupes, puedes volver a importar fácilmente tus registros de chat al backend a través de",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Compartir",
|
||||
"Share Chat": "Compartir Chat",
|
||||
"Share to Open WebUI Community": "Compartir coa comunidads OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Mostrar",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Motor de voz a texto",
|
||||
"Start of the channel": "Inicio da canle",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Detener",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Detener secuencia",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Modelo STT",
|
||||
"STT Settings": "Configuracions de STT",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Dinos mais:",
|
||||
"Temperature": "Temperatura",
|
||||
"Temporary Chat": "Chat temporal",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Divisor de texto",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Motor de texto a voz",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Modo de URL",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Utilice '#' no prompt para cargar y incluir su coñecemento.",
|
||||
"Use Gravatar": "Usar Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "Use grupos para agrupar a sus usuarios y asignar permisos.",
|
||||
"Use Initials": "Usar Iniciales",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Vostede ha compartido esta conversación",
|
||||
"You're a helpful assistant.": "Vostede es un asistente útil.",
|
||||
"You're now logged in.": "Vostede ahora está conectado.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "O estado da sua conta actualmente encontrase pendente de activación.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "A sua contribución completa irá directamente o desarrollador do plugin; Open WebUI non toma ningun porcentaxe. Sin embargo, a plataforma de financiación elegida podría ter as suas propias tarifas.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "נדרשת כתובת URL בסיסית של AUTOMATIC1111",
|
||||
"Available list": "",
|
||||
"Available Tools": "כלים זמינים",
|
||||
"available!": "זמין!",
|
||||
"available users": "משתמשים זמינים",
|
||||
"available!": "זמין!",
|
||||
"Away": "נעדר",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "בטא",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "",
|
||||
"Chat direction": "כיוון צ'אט",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "הועתק",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "העתקת כתובת URL של צ'אט משותף ללוח!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "מסמכים",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "לא מבצע חיבורים חיצוניים, והנתונים שלך נשמרים באופן מאובטח בשרת המקומי שלך.",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "אל תמשוך pipelines אקראיים ממקורות שאינך סומך עליהם.",
|
||||
"Don't have an account?": "אין לך חשבון?",
|
||||
"don't install random functions from sources you don't trust.": "",
|
||||
"don't install random tools from sources you don't trust.": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "אל תמשוך pipelines אקראיים ממקורות שאינך סומך עליהם.",
|
||||
"Don't like the style": "לא אוהב את הסגנון",
|
||||
"Done": "",
|
||||
"Download": "הורד",
|
||||
"Download & Delete": "הורדה ומחיקה",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "ההורדה בוטלה",
|
||||
"Download Database": "הורד מסד נתונים",
|
||||
"Download & Delete": "הורדה ומחיקה",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "הזן מפתח API של Google PSE",
|
||||
"Enter Google PSE Engine Id": "הזן את מזהה מנוע PSE של Google",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "הזן גודל תמונה (למשל 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "הזן את הקוד שלך כאן...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "הזן את דוא\"ל שלך",
|
||||
"Enter Your Full Name": "הזן את שמך המלא",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "הזן את התפקיד שלך",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "הזן את הקוד שלך כאן...",
|
||||
"Error": "שגיאה",
|
||||
"ERROR": "",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "קריאת תוכן הלוח נכשלה",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "שמירת השיחה נכשלה",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "נא להוסיף פרטים ספציפיים לפי רצון",
|
||||
"Female": "",
|
||||
"File": "",
|
||||
"File added successfully.": "",
|
||||
"File content updated successfully.": "",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "כללי",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "מפתח API של Google PSE",
|
||||
"Google PSE Engine Id": "מזהה מנוע PSE של Google",
|
||||
"Gravatar": "",
|
||||
"Group": "קבוצה",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group": "קבוצה",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "קבוצות",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "ייבוא כלים",
|
||||
"Important Update": "עדכון חשוב",
|
||||
"Include": "",
|
||||
"Includes SharePoint": "כולל SharePoint",
|
||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "כלול את הדגל `--api` בעת הרצת stable-diffusion-webui",
|
||||
"Includes SharePoint": "כולל SharePoint",
|
||||
"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": "מידע",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "פקודות קלט",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "ודא להקיף אותם עם",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "ניהול צינורות",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "מרץ",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "עוד",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "שם",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "תוכן לא נמצא",
|
||||
"No content found in file.": "לא נמצא תוכן בקובץ.",
|
||||
"No content to speak": "",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "",
|
||||
"No feedbacks found": "",
|
||||
"No file selected": "",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "לא נמצאו תוצאות",
|
||||
"No search query generated": "לא נוצרה שאילתת חיפוש",
|
||||
"No source available": "אין מקור זמין",
|
||||
"No suggestion prompts": "אין פרומפטים מוצעים",
|
||||
"No users were found.": "לא נמצאו יוזרים",
|
||||
"No valves": "",
|
||||
"No valves to update": "",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "אין פרומפטים מוצעים",
|
||||
"None": "ללא",
|
||||
"Not factually correct": "לא נכון מבחינה עובדתית",
|
||||
"Not helpful": "",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "נדרשת כתובת URL/מפתח של OpenAI.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "או",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "גישה חיובית",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "פרופיל",
|
||||
"Profile Image": "תמונת פרופיל",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "פקודה (למשל, ספר לי עובדה מעניינת על האימפריה הרומית)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "מודל דירוג מחדש",
|
||||
"Reset": "",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "איפוס תמונה",
|
||||
"Reset Upload Directory": "",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "",
|
||||
"Reset Image": "איפוס תמונה",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
|
||||
"Response splitting": "",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "תוצאה",
|
||||
"Result": "",
|
||||
"RESULT": "תוצאה",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "שמור וצור",
|
||||
"Save & Update": "שמור ועדכן",
|
||||
"Save As Copy": "",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "",
|
||||
"Saved": "",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "שמירת יומני צ'אט ישירות באחסון הדפדפן שלך אינה נתמכת יותר. אנא הקדש רגע להוריד ולמחוק את יומני הצ'אט שלך על ידי לחיצה על הכפתור למטה. אל דאגה, באפשרותך לייבא מחדש בקלות את יומני הצ'אט שלך לשרת האחורי דרך",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "שתף",
|
||||
"Share Chat": "שתף צ'אט",
|
||||
"Share to Open WebUI Community": "שתף לקהילת OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "הצג",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "מנוע תחקור שמע",
|
||||
"Start of the channel": "תחילת הערוץ",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "סידור עצירה",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "",
|
||||
"STT Settings": "הגדרות חקירה של TTS",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "תרשמו יותר:",
|
||||
"Temperature": "טמפרטורה",
|
||||
"Temporary Chat": "",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "מנוע טקסט לדיבור",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "מצב URL",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "שימוש ב Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "שימוש ב initials",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "שיתפת את השיחה הזו",
|
||||
"You're a helpful assistant.": "אתה עוזר מועיל.",
|
||||
"You're now logged in.": "כעת אתה מחובר.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 का बेस यूआरएल आवश्यक है।",
|
||||
"Available list": "",
|
||||
"Available Tools": "",
|
||||
"available!": "उपलब्ध!",
|
||||
"available users": "उपलब्ध उपयोगकर्ता",
|
||||
"available!": "उपलब्ध!",
|
||||
"Away": "अनुपस्थित",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "",
|
||||
"Chat direction": "चैट दिशा",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "साझा चैट URL को क्लिपबोर्ड पर कॉपी किया गया!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "दस्तावेज़",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "कोई बाहरी कनेक्शन नहीं बनाता है, और आपका डेटा आपके स्थानीय रूप से होस्ट किए गए सर्वर पर सुरक्षित रूप से रहता है।",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "अविश्वसनीय स्रोतों से यादृच्छिक पाइपलाइन न लें।",
|
||||
"Don't have an account?": "कोई खाता नहीं है?",
|
||||
"don't install random functions from sources you don't trust.": "",
|
||||
"don't install random tools from sources you don't trust.": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "अविश्वसनीय स्रोतों से यादृच्छिक पाइपलाइन न लें।",
|
||||
"Don't like the style": "शैली पसंद नहीं है",
|
||||
"Done": "",
|
||||
"Download": "डाउनलोड",
|
||||
"Download & Delete": "डाउनलोड और हटाएँ",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "डाउनलोड रद्द किया गया",
|
||||
"Download Database": "डेटाबेस डाउनलोड करें",
|
||||
"Download & Delete": "डाउनलोड और हटाएँ",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Google PSE API कुंजी दर्ज करें",
|
||||
"Enter Google PSE Engine Id": "Google PSE इंजन आईडी दर्ज करें",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "छवि का आकार दर्ज करें (उदा. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "अपना कोड यहाँ दर्ज करें...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "अपना ईमेल दर्ज करें",
|
||||
"Enter Your Full Name": "अपना पूरा नाम भरें",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "अपनी भूमिका दर्ज करें",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "अपना कोड यहाँ दर्ज करें...",
|
||||
"Error": "चूक",
|
||||
"ERROR": "",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "क्लिपबोर्ड सामग्री पढ़ने में विफल",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "वार्तालाप सहेजने में विफल",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "विशिष्ट विवरण जोड़ने के लिए स्वतंत्र महसूस करें",
|
||||
"Female": "",
|
||||
"File": "",
|
||||
"File added successfully.": "",
|
||||
"File content updated successfully.": "",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "सामान्य",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "Google PSE API कुंजी",
|
||||
"Google PSE Engine Id": "Google PSE इंजन आईडी",
|
||||
"Gravatar": "",
|
||||
"Group": "समूह",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group": "समूह",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "",
|
||||
"Important Update": "महत्वपूर्ण अपडेट",
|
||||
"Include": "",
|
||||
"Includes SharePoint": "SharePoint शामिल है",
|
||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui चलाते समय `--api` ध्वज शामिल करें",
|
||||
"Includes SharePoint": "SharePoint शामिल है",
|
||||
"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": "सूचना-विषयक",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "इनपुट क命",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "उन्हें संलग्न करना सुनिश्चित करें",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "पाइपलाइनों का प्रबंधन करें",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "मार्च",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "और..",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "नाम",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "",
|
||||
"No feedbacks found": "",
|
||||
"No file selected": "",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "कोई परिणाम नहीं मिला",
|
||||
"No search query generated": "कोई खोज क्वेरी जनरेट नहीं हुई",
|
||||
"No source available": "कोई स्रोत उपलब्ध नहीं है",
|
||||
"No suggestion prompts": "कोई सुझावित प्रॉम्प्ट नहीं",
|
||||
"No users were found.": "",
|
||||
"No valves": "",
|
||||
"No valves to update": "",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "कोई सुझावित प्रॉम्प्ट नहीं",
|
||||
"None": "कोई नहीं",
|
||||
"Not factually correct": "तथ्यात्मक रूप से सही नहीं है",
|
||||
"Not helpful": "",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Key आवश्यक है।",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "या",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "सकारात्मक रवैया",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "प्रोफ़ाइल",
|
||||
"Profile Image": "प्रोफ़ाइल छवि",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "प्रॉम्प्ट (उदाहरण के लिए मुझे रोमन साम्राज्य के बारे में एक मजेदार तथ्य बताएं)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "रीरैकिंग मोड",
|
||||
"Reset": "",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "छवि रीसेट करें",
|
||||
"Reset Upload Directory": "",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "",
|
||||
"Reset Image": "छवि रीसेट करें",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
|
||||
"Response splitting": "",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "परिणाम",
|
||||
"Result": "",
|
||||
"RESULT": "परिणाम",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "सहेजें और बनाएं",
|
||||
"Save & Update": "सहेजें और अपडेट करें",
|
||||
"Save As Copy": "",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "",
|
||||
"Saved": "",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "चैट लॉग को सीधे आपके ब्राउज़र के स्टोरेज में सहेजना अब समर्थित नहीं है। कृपया नीचे दिए गए बटन पर क्लिक करके डाउनलोड करने और अपने चैट लॉग को हटाने के लिए कुछ समय दें। चिंता न करें, आप आसानी से अपने चैट लॉग को बैकएंड पर पुनः आयात कर सकते हैं",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "साझा करें",
|
||||
"Share Chat": "चैट साझा करें",
|
||||
"Share to Open WebUI Community": "OpenWebUI समुदाय में साझा करें",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "दिखाओ",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "वाक्-से-पाठ इंजन",
|
||||
"Start of the channel": "चैनल की शुरुआत",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "अनुक्रम रोकें",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "",
|
||||
"STT Settings": "STT सेटिंग्स ",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "हमें और अधिक बताएँ:",
|
||||
"Temperature": "टेंपेरेचर",
|
||||
"Temporary Chat": "",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "टेक्स्ट-टू-स्पीच इंजन",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL मोड",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "Gravatar का प्रयोग करें",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "प्रथमाक्षर का प्रयोग करें",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "आपने इस चैट को शेयर किया है",
|
||||
"You're a helpful assistant.": "आप एक सहायक सहायक हैं",
|
||||
"You're now logged in.": "अब आप लॉग इन हो गए हैं",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "Potreban je AUTOMATIC1111 osnovni URL.",
|
||||
"Available list": "",
|
||||
"Available Tools": "",
|
||||
"available!": "dostupno!",
|
||||
"available users": "dostupni korisnici",
|
||||
"available!": "dostupno!",
|
||||
"Away": "Odsutan",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "",
|
||||
"Chat direction": "Razgovor - smijer",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "URL dijeljenog razgovora kopiran u međuspremnik!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Dokumenti",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "ne uspostavlja vanjske veze, a vaši podaci ostaju sigurno na vašem lokalno hostiranom poslužitelju.",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ne preuzimajte nasumične pipelines iz izvora kojima ne vjerujete.",
|
||||
"Don't have an account?": "Nemate račun?",
|
||||
"don't install random functions from sources you don't trust.": "",
|
||||
"don't install random tools from sources you don't trust.": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ne preuzimajte nasumične pipelines iz izvora kojima ne vjerujete.",
|
||||
"Don't like the style": "Ne sviđa mi se stil",
|
||||
"Done": "",
|
||||
"Download": "Preuzimanje",
|
||||
"Download & Delete": "Preuzmi i izbriši",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "Preuzimanje otkazano",
|
||||
"Download Database": "Preuzmi bazu podataka",
|
||||
"Download & Delete": "Preuzmi i izbriši",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Unesite Google PSE API ključ",
|
||||
"Enter Google PSE Engine Id": "Unesite ID Google PSE motora",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Unesite veličinu slike (npr. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Unesite svoj kod ovdje...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "Unesite svoj email",
|
||||
"Enter Your Full Name": "Unesite svoje puno ime",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Unesite svoju ulogu",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "Unesite svoj kod ovdje...",
|
||||
"Error": "Greška",
|
||||
"ERROR": "",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Neuspješno čitanje sadržaja međuspremnika",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Neuspješno spremanje razgovora",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "Slobodno dodajte specifične detalje",
|
||||
"Female": "",
|
||||
"File": "",
|
||||
"File added successfully.": "",
|
||||
"File content updated successfully.": "",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "Općenito",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "Google PSE API ključ",
|
||||
"Google PSE Engine Id": "ID Google PSE modula",
|
||||
"Gravatar": "",
|
||||
"Group": "Grupa",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group": "Grupa",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Uvoz alata",
|
||||
"Important Update": "Važno ažuriranje",
|
||||
"Include": "",
|
||||
"Includes SharePoint": "Uključuje SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Uključuje SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "Unos naredbi",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Provjerite da ih zatvorite s",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "Upravljaj",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Upravljanje cjevovodima",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "Ožujak",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Više",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Ime",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "",
|
||||
"No feedbacks found": "",
|
||||
"No file selected": "",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Nema rezultata",
|
||||
"No search query generated": "Nije generiran upit za pretraživanje",
|
||||
"No source available": "Nema dostupnog izvora",
|
||||
"No suggestion prompts": "Nema predloženih prompta",
|
||||
"No users were found.": "",
|
||||
"No valves": "",
|
||||
"No valves to update": "",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Nema predloženih prompta",
|
||||
"None": "Ništa",
|
||||
"Not factually correct": "Nije činjenično točno",
|
||||
"Not helpful": "",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "Potreban je OpenAI URL/ključ.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "ili",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "Pozitivan stav",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "Profil",
|
||||
"Profile Image": "Profilna slika",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (npr. Reci mi zanimljivost o Rimskom carstvu)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Model za ponovno rangiranje",
|
||||
"Reset": "",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "Resetiraj sliku",
|
||||
"Reset Upload Directory": "Poništi upload direktorij",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "",
|
||||
"Reset Image": "Resetiraj sliku",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
|
||||
"Response splitting": "",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "REZULTAT",
|
||||
"Result": "",
|
||||
"RESULT": "REZULTAT",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Spremi i stvori",
|
||||
"Save & Update": "Spremi i ažuriraj",
|
||||
"Save As Copy": "",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "",
|
||||
"Saved": "",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Spremanje zapisnika razgovora izravno u pohranu vašeg preglednika više nije podržano. Molimo vas da odvojite trenutak za preuzimanje i brisanje zapisnika razgovora klikom na gumb ispod. Ne brinite, možete lako ponovno uvesti zapisnike razgovora u backend putem",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Podijeli",
|
||||
"Share Chat": "Podijeli razgovor",
|
||||
"Share to Open WebUI Community": "Podijeli u OpenWebUI zajednici",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Pokaži",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Stroj za prepoznavanje govora",
|
||||
"Start of the channel": "Početak kanala",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Zaustavi sekvencu",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "STT model",
|
||||
"STT Settings": "STT postavke",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Recite nam više:",
|
||||
"Temperature": "Temperatura",
|
||||
"Temporary Chat": "",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Stroj za pretvorbu teksta u govor",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL način",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "Koristi Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "Koristi inicijale",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Podijelili ste ovaj razgovor",
|
||||
"You're a helpful assistant.": "Vi ste korisni asistent.",
|
||||
"You're now logged in.": "Sada ste prijavljeni.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Status vašeg računa trenutno čeka aktivaciju.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
|
||||
"Youtube": "YouTube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 alap URL szükséges.",
|
||||
"Available list": "Elérhető lista",
|
||||
"Available Tools": "Elérhető eszközök",
|
||||
"available!": "elérhető!",
|
||||
"available users": "elérhető felhasználók",
|
||||
"available!": "elérhető!",
|
||||
"Away": "Távol",
|
||||
"Awful": "Szörnyű",
|
||||
"Azure AI Speech": "Azure AI beszéd",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Béta",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7 végpont",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 előfizetési kulcs",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Bocha Search API kulcs",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Beszélgetés vezérlők",
|
||||
"Chat direction": "Beszélgetés iránya",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Beszélgetés áttekintés",
|
||||
"Chat Permissions": "Beszélgetési engedélyek",
|
||||
"Chat Tags Auto-Generation": "Beszélgetés címkék automatikus generálása",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Szabályozza a generált szövegben lévő token sorozatok ismétlődését. Magasabb érték (pl. 1,5) erősebben bünteti az ismétléseket, alacsonyabb érték (pl. 1,1) engedékenyebb. 1-nél kikapcsolva.",
|
||||
"Controls": "Vezérlők",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Szabályozza a kimenet koherenciája és változatossága közötti egyensúlyt. Alacsonyabb érték fókuszáltabb és koherensebb szöveget eredményez.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Másolva",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "Megosztott beszélgetés URL másolva a vágólapra!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Dokumentumok",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "nem létesít külső kapcsolatokat, és az adataid biztonságban maradnak a helyileg hosztolt szervereden.",
|
||||
"Domain Filter List": "Domain szűrőlista",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ne tölts le véletlenszerű pipeline-okat megbízhatatlan forrásokból.",
|
||||
"Don't have an account?": "Nincs még fiókod?",
|
||||
"don't install random functions from sources you don't trust.": "ne telepíts véletlenszerű funkciókat olyan forrásokból, amelyekben nem bízol.",
|
||||
"don't install random tools from sources you don't trust.": "ne telepíts véletlenszerű eszközöket olyan forrásokból, amelyekben nem bízol.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ne tölts le véletlenszerű pipeline-okat megbízhatatlan forrásokból.",
|
||||
"Don't like the style": "Nem tetszik a stílus",
|
||||
"Done": "Kész",
|
||||
"Download": "Letöltés",
|
||||
"Download & Delete": "Letöltés és törlés",
|
||||
"Download as SVG": "Letöltés SVG-ként",
|
||||
"Download canceled": "Letöltés megszakítva",
|
||||
"Download Database": "Adatbázis letöltése",
|
||||
"Download & Delete": "Letöltés és törlés",
|
||||
"Drag and drop a file to upload or select a file to view": "Húzz ide egy fájlt a feltöltéshez vagy válassz fájlt a megtekintéshez",
|
||||
"Draw": "Rajzolás",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Add meg a Google PSE API kulcsot",
|
||||
"Enter Google PSE Engine Id": "Add meg a Google PSE motor azonosítót",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Add meg a kép méretet (pl. 512x512)",
|
||||
"Enter Jina API Key": "Add meg a Jina API kulcsot",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Írd be ide a kódod...",
|
||||
"Enter your current password": "Add meg a jelenlegi jelszavad",
|
||||
"Enter Your Email": "Add meg az email címed",
|
||||
"Enter Your Full Name": "Add meg a teljes neved",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Írd be az üzeneted",
|
||||
"Enter your name": "Add meg a neved",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Add meg a szereped",
|
||||
"Enter Your Username": "Add meg a felhasználóneved",
|
||||
"Enter your webhook URL": "Add meg a webhook URL-t",
|
||||
"Enter your code here...": "Írd be ide a kódod...",
|
||||
"Error": "Hiba",
|
||||
"ERROR": "HIBA",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Nem sikerült olvasni a vágólap tartalmát",
|
||||
"Failed to save connections": "Nem sikerült menteni a kapcsolatokat",
|
||||
"Failed to save conversation": "Nem sikerült menteni a beszélgetést",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Visszajelzés előzmények",
|
||||
"Feedbacks": "Visszajelzések",
|
||||
"Feel free to add specific details": "Nyugodtan adj hozzá specifikus részleteket",
|
||||
"Female": "",
|
||||
"File": "Fájl",
|
||||
"File added successfully.": "Fájl sikeresen hozzáadva.",
|
||||
"File content updated successfully.": "Fájl tartalom sikeresen frissítve.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Gemini API konfiguráció",
|
||||
"Gemini API Key is required.": "Gemini API kulcs szükséges.",
|
||||
"Gender": "",
|
||||
"General": "Általános",
|
||||
"Generate": "",
|
||||
"Generate an image": "Kép generálása",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Google PSE API kulcs",
|
||||
"Google PSE Engine Id": "Google PSE motor azonosító",
|
||||
"Gravatar": "",
|
||||
"Group": "Csoport",
|
||||
"Group created successfully": "Csoport sikeresen létrehozva",
|
||||
"Group deleted successfully": "Csoport sikeresen törölve",
|
||||
"Group Description": "Csoport leírása",
|
||||
"Group Name": "Csoport neve",
|
||||
"Group": "Csoport",
|
||||
"Group updated successfully": "Csoport sikeresen frissítve",
|
||||
"Groups": "Csoportok",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Eszközök importálása",
|
||||
"Important Update": "Fontos frissítés",
|
||||
"Include": "Tartalmaz",
|
||||
"Includes SharePoint": "Tartalmazza a SharePointot",
|
||||
"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",
|
||||
"Includes SharePoint": "Tartalmazza a SharePointot",
|
||||
"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ó",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Az összes tartalom kontextusként való befecskendezése átfogó feldolgozáshoz, ez összetett lekérdezésekhez ajánlott.",
|
||||
"Input": "",
|
||||
"Input commands": "Beviteli parancsok",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Győződjön meg róla, hogy körülveszi őket",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Győződjön meg róla, hogy exportál egy workflow.json fájlt API formátumban a ComfyUI-ból.",
|
||||
"Male": "",
|
||||
"Manage": "Kezelés",
|
||||
"Manage Direct Connections": "Közvetlen kapcsolatok kezelése",
|
||||
"Manage Models": "Modellek kezelése",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "OpenAI API kapcsolatok kezelése",
|
||||
"Manage Pipelines": "Folyamatok kezelése",
|
||||
"Manage Tool Servers": "Eszközszerverek kezelése",
|
||||
"Manage your account information.": "",
|
||||
"March": "Március",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Több",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Név",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Nevezd el a tudásbázisodat",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Nem található tartalom",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "Nincs felolvasható tartalom",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Nincs elérhető távolság",
|
||||
"No feedbacks found": "Nem található visszajelzés",
|
||||
"No file selected": "Nincs kiválasztva fájl",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Nincs találat",
|
||||
"No search query generated": "Nem generálódott keresési lekérdezés",
|
||||
"No source available": "Nincs elérhető forrás",
|
||||
"No suggestion prompts": "Nincsenek javasolt promptok",
|
||||
"No users were found.": "Nem található felhasználó.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Nincs frissítendő szelep",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Nincsenek javasolt promptok",
|
||||
"None": "Nincs",
|
||||
"Not factually correct": "Tényszerűen nem helyes",
|
||||
"Not helpful": "Nem segítőkész",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "OpenAI API beállítások frissítve",
|
||||
"OpenAI URL/Key required.": "OpenAI URL/kulcs szükséges.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "vagy",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Kérjük, gondosan tekintse át a következő figyelmeztetéseket:",
|
||||
"Please do not close the settings page while loading the model.": "Kérjük, ne zárja be a beállítások oldalt a modell betöltése közben.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Kérjük, adjon meg egy promptot",
|
||||
"Please enter a valid path": "Kérjük, adjon meg egy érvényes útvonalat",
|
||||
"Please enter a valid URL": "Kérjük, adjon meg egy érvényes URL-t",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Port",
|
||||
"Positive attitude": "Pozitív hozzáállás",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Előtag azonosító",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Az előtag azonosító a modell azonosítókhoz hozzáadott előtag segítségével elkerüli az egyéb kapcsolatokkal való ütközéseket - hagyja üresen a letiltáshoz",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "Privát",
|
||||
"Profile": "Profil",
|
||||
"Profile Image": "Profilkép",
|
||||
"Prompt": "Prompt",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (pl. Mondj egy érdekes tényt a Római Birodalomról)",
|
||||
"Prompt Autocompletion": "Prompt automatikus kiegészítés",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Újrarangsoroló modell",
|
||||
"Reset": "Visszaállítás",
|
||||
"Reset All Models": "Minden modell visszaállítása",
|
||||
"Reset Image": "Kép visszaállítása",
|
||||
"Reset Upload Directory": "Feltöltési könyvtár visszaállítása",
|
||||
"Reset Vector Storage/Knowledge": "Vektor tárhely/tudásbázis visszaállítása",
|
||||
"Reset view": "Nézet visszaállítása",
|
||||
"Reset Image": "Kép visszaállítása",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "A válasz értesítések nem aktiválhatók, mert a weboldal engedélyei meg lettek tagadva. Kérjük, látogasson el a böngésző beállításaihoz a szükséges hozzáférés megadásához.",
|
||||
"Response splitting": "Válasz felosztás",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "Eredmény",
|
||||
"Result": "Eredmény",
|
||||
"RESULT": "Eredmény",
|
||||
"Retrieval": "Visszakeresés",
|
||||
"Retrieval Query Generation": "Visszakeresési lekérdezés generálása",
|
||||
"Rich Text Input for Chat": "Formázott szövegbevitel a chathez",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Mentés és létrehozás",
|
||||
"Save & Update": "Mentés és frissítés",
|
||||
"Save As Copy": "Mentés másolatként",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Címke mentése",
|
||||
"Saved": "Mentve",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "A csevegési naplók közvetlen mentése a böngésző tárolójába már nem támogatott. Kérjük, szánjon egy percet a csevegési naplók letöltésére és törlésére az alábbi gomb megnyomásával. Ne aggódjon, könnyen újra importálhatja a csevegési naplókat a backend-be",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Megosztás",
|
||||
"Share Chat": "Beszélgetés megosztása",
|
||||
"Share to Open WebUI Community": "Megosztás az OpenWebUI közösséggel",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Megosztási engedélyek",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Mutat",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Beszéd-szöveg motor",
|
||||
"Start of the channel": "A csatorna eleje",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Leállítás",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Leállítási szekvencia",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "STT modell",
|
||||
"STT Settings": "STT beállítások",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Mondjon többet:",
|
||||
"Temperature": "Hőmérséklet",
|
||||
"Temporary Chat": "Ideiglenes csevegés",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Szöveg felosztó",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Szöveg-beszéd motor",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL mód",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Használja a '#' karaktert a prompt bevitelénél a tudásbázis betöltéséhez és felhasználásához.",
|
||||
"Use Gravatar": "Gravatar használata",
|
||||
"Use groups to group your users and assign permissions.": "Használj csoportokat a felhasználók csoportosításához és engedélyek hozzárendeléséhez.",
|
||||
"Use Initials": "Monogram használata",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Megosztotta ezt a beszélgetést",
|
||||
"You're a helpful assistant.": "Ön egy segítőkész asszisztens.",
|
||||
"You're now logged in.": "Sikeresen bejelentkezett.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Fiókja jelenleg aktiválásra vár.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "A teljes hozzájárulása közvetlenül a bővítmény fejlesztőjéhez kerül; az Open WebUI nem vesz le százalékot. Azonban a választott támogatási platformnak lehetnek saját díjai.",
|
||||
"Youtube": "YouTube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 URL Dasar diperlukan.",
|
||||
"Available list": "",
|
||||
"Available Tools": "",
|
||||
"available!": "tersedia!",
|
||||
"available users": "pengguna yang tersedia",
|
||||
"available!": "tersedia!",
|
||||
"Away": "Tidak di tempat",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "",
|
||||
"Chat direction": "Arah obrolan",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "Menyalin URL obrolan bersama ke papan klip!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Dokumen",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "tidak membuat koneksi eksternal apa pun, dan data Anda tetap aman di server yang dihosting secara lokal.",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Jangan mengambil pipeline acak dari sumber yang tidak Anda percayai.",
|
||||
"Don't have an account?": "Tidak memiliki akun?",
|
||||
"don't install random functions from sources you don't trust.": "",
|
||||
"don't install random tools from sources you don't trust.": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Jangan mengambil pipeline acak dari sumber yang tidak Anda percayai.",
|
||||
"Don't like the style": "Tidak suka gayanya",
|
||||
"Done": "Selesai",
|
||||
"Download": "Unduh",
|
||||
"Download & Delete": "Unduh & Hapus",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "Unduh dibatalkan",
|
||||
"Download Database": "Unduh Basis Data",
|
||||
"Download & Delete": "Unduh & Hapus",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Masukkan Kunci API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Masukkan Id Mesin Google PSE",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Masukkan Ukuran Gambar (mis. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Masukkan kode Anda di sini...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "Masukkan Email Anda",
|
||||
"Enter Your Full Name": "Masukkan Nama Lengkap Anda",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Masukkan Peran Anda",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "Masukkan kode Anda di sini...",
|
||||
"Error": "Kesalahan",
|
||||
"ERROR": "",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Gagal membaca konten papan klip",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Gagal menyimpan percakapan",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "Jangan ragu untuk menambahkan detail spesifik",
|
||||
"Female": "",
|
||||
"File": "Berkas",
|
||||
"File added successfully.": "",
|
||||
"File content updated successfully.": "",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "Umum",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "Kunci API Google PSE",
|
||||
"Google PSE Engine Id": "Id Mesin Google PSE",
|
||||
"Gravatar": "",
|
||||
"Group": "Grup",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group": "Grup",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Alat Impor",
|
||||
"Important Update": "Pembaruan penting",
|
||||
"Include": "",
|
||||
"Includes SharePoint": "Mencakup SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Mencakup SharePoint",
|
||||
"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": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "Perintah masukan",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Pastikan untuk melampirkannya dengan",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "Mengelola",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Mengelola Saluran Pipa",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "Maret",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Lainnya",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Nama",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "Tidak ada konten untuk dibicarakan",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "",
|
||||
"No feedbacks found": "",
|
||||
"No file selected": "Tidak ada file yang dipilih",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Tidak ada hasil yang ditemukan",
|
||||
"No search query generated": "Tidak ada permintaan pencarian yang dibuat",
|
||||
"No source available": "Tidak ada sumber yang tersedia",
|
||||
"No suggestion prompts": "Tidak ada prompt saran",
|
||||
"No users were found.": "",
|
||||
"No valves": "",
|
||||
"No valves to update": "Tidak ada katup untuk diperbarui",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Tidak ada prompt saran",
|
||||
"None": "Tidak ada",
|
||||
"Not factually correct": "Tidak benar secara faktual",
|
||||
"Not helpful": "",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "Diperlukan URL/Kunci OpenAI.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "atau",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "Sikap positif",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "Profil",
|
||||
"Profile Image": "Gambar Profil",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Permintaan (mis. Ceritakan sebuah fakta menarik tentang Kekaisaran Romawi)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Model Pemeringkatan Ulang",
|
||||
"Reset": "Atur Ulang",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "Atur Ulang Gambar",
|
||||
"Reset Upload Directory": "Setel Ulang Direktori Unggahan",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "",
|
||||
"Reset Image": "Atur Ulang Gambar",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Notifikasi respons tidak dapat diaktifkan karena izin situs web telah ditolak. Silakan kunjungi pengaturan browser Anda untuk memberikan akses yang diperlukan.",
|
||||
"Response splitting": "",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "HASIL",
|
||||
"Result": "",
|
||||
"RESULT": "HASIL",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Simpan & Buat",
|
||||
"Save & Update": "Simpan & Perbarui",
|
||||
"Save As Copy": "",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "",
|
||||
"Saved": "",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Menyimpan log obrolan secara langsung ke penyimpanan browser Anda tidak lagi didukung. Mohon luangkan waktu sejenak untuk mengunduh dan menghapus log obrolan Anda dengan mengeklik tombol di bawah ini. Jangan khawatir, Anda dapat dengan mudah mengimpor kembali log obrolan Anda ke backend melalui",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Berbagi",
|
||||
"Share Chat": "Bagikan Obrolan",
|
||||
"Share to Open WebUI Community": "Bagikan ke Komunitas OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Tampilkan",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Mesin Pengenal Ucapan ke Teks",
|
||||
"Start of the channel": "Awal saluran",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Hentikan Urutan",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Model STT",
|
||||
"STT Settings": "Pengaturan STT",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Beri tahu kami lebih lanjut:",
|
||||
"Temperature": "Suhu",
|
||||
"Temporary Chat": "",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Mesin Teks-ke-Suara",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Mode URL",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "Gunakan Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "Gunakan Inisial",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Anda telah membagikan obrolan ini",
|
||||
"You're a helpful assistant.": "Anda adalah asisten yang membantu.",
|
||||
"You're now logged in.": "Anda sekarang sudah masuk.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Status akun Anda saat ini sedang menunggu aktivasi.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "Tá URL bonn UATHOIBRÍOCH1111 ag teastáil.",
|
||||
"Available list": "Liosta atá ar fáil",
|
||||
"Available Tools": "Uirlisí ar Fáil",
|
||||
"available!": "ar fáil!",
|
||||
"available users": "úsáideoirí ar fáil",
|
||||
"available!": "ar fáil!",
|
||||
"Away": "As láthair",
|
||||
"Awful": "Uafásach",
|
||||
"Azure AI Speech": "Óráid Azure AI",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Béite",
|
||||
"Bing Search V7 Endpoint": "Cuardach Bing V7 Críochphointe",
|
||||
"Bing Search V7 Subscription Key": "Eochair Síntiúis Bing Cuardach V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "Meáchan BM25",
|
||||
"Bocha Search API Key": "Eochair API Cuardach Bocha",
|
||||
"Bold": "Trom",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Rialuithe Comhrá",
|
||||
"Chat direction": "Treo comhrá",
|
||||
"Chat ID": "Aitheantas Comhrá",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Forbhreathnú ar an",
|
||||
"Chat Permissions": "Ceadanna Comhrá",
|
||||
"Chat Tags Auto-Generation": "Clibeanna Comhrá Auto-Giniúint",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Rialú a dhéanamh ar athrá seichimh chomharthaí sa téacs ginte. Cuirfidh luach níos airde (m.sh., 1.5) pionós níos láidre ar athrá, agus beidh luach níos ísle (m.sh., 1.1) níos boige. Ag 1, tá sé díchumasaithe. (Réamhshocrú: 1.1)",
|
||||
"Controls": "Rialuithe",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Rialaíonn sé an chothromaíocht idir comhleanúnachas agus éagsúlacht an aschuir. Beidh téacs níos dírithe agus níos soiléire mar thoradh ar luach níos ísle.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Cóipeáladh",
|
||||
"Copied link to clipboard": "Cóipeáladh nasc chuig an ghearrthaisce",
|
||||
"Copied shared chat URL to clipboard!": "Cóipeáladh URL an chomhrá roinnte chuig an ngearrthaisce!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Doiciméid",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "ní dhéanann sé aon naisc sheachtracha, agus fanann do chuid sonraí go slán ar do fhreastalaí a óstáiltear go háitiúil.",
|
||||
"Domain Filter List": "Liosta Scagairí Fearainn",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ná faigh pipelines randamacha ó fhoinsí nach bhfuil muinín agat iontu.",
|
||||
"Don't have an account?": "Níl cuntas agat?",
|
||||
"don't install random functions from sources you don't trust.": "ná suiteáil feidhmeanna randamacha ó fhoinsí nach bhfuil muinín agat.",
|
||||
"don't install random tools from sources you don't trust.": "ná suiteáil uirlisí randamacha ó fhoinsí nach bhfuil muinín agat.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ná faigh pipelines randamacha ó fhoinsí nach bhfuil muinín agat iontu.",
|
||||
"Don't like the style": "Ná thaitníonn an stíl",
|
||||
"Done": "Déanta",
|
||||
"Download": "Íoslódáil",
|
||||
"Download & Delete": "Íoslódáil agus scrios",
|
||||
"Download as SVG": "Íoslódáil i SVG",
|
||||
"Download canceled": "Íoslódáil cealaithe",
|
||||
"Download Database": "Íoslódáil Bunachair",
|
||||
"Download & Delete": "Íoslódáil agus scrios",
|
||||
"Drag and drop a file to upload or select a file to view": "Tarraing agus scaoil comhad le huaslódáil nó roghnaigh comhad le féachaint air",
|
||||
"Draw": "Tarraing",
|
||||
"Drop any files here to upload": "Scaoil aon chomhaid anseo le huaslódáil",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Cuir isteach Eochair API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Cuir isteach ID Inneall Google PSE",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Iontráil Méid Íomhá (m.sh. 512x512)",
|
||||
"Enter Jina API Key": "Cuir isteach Eochair API Jina",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "Cuir isteach cumraíocht JSON (m.sh., {\"disable_links\": true})",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "Cuir isteach Pasfhocal Yacy",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Cuir isteach URL Yacy (m.sh. http://yacy.example.com:8090)",
|
||||
"Enter Yacy Username": "Cuir isteach Ainm Úsáideora Yacy",
|
||||
"Enter your code here...": "Iontráil do chód anseo...",
|
||||
"Enter your current password": "Cuir isteach do phasfhocal reatha",
|
||||
"Enter Your Email": "Cuir isteach do Ríomhphost",
|
||||
"Enter Your Full Name": "Cuir isteach d'Ainm Iomlán",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Cuir isteach do theachtaireacht",
|
||||
"Enter your name": "Cuir isteach d'ainm",
|
||||
"Enter Your Name": "Cuir isteach d'ainm",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Cuir isteach do Ról",
|
||||
"Enter Your Username": "Cuir isteach D'Ainm Úsáideora",
|
||||
"Enter your webhook URL": "Cuir isteach URL do webhook",
|
||||
"Enter your code here...": "Iontráil do chód anseo...",
|
||||
"Error": "Earráid",
|
||||
"ERROR": "EARRÁID",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "Theip ar an teideal a ghiniúint",
|
||||
"Failed to load chat preview": "Theip ar réamhamharc comhrá a lódáil",
|
||||
"Failed to load file content.": "Theip ar lódáil ábhar an chomhaid.",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Theip ar ábhar gearrthaisce a lé",
|
||||
"Failed to save connections": "Theip ar na naisc a shábháil",
|
||||
"Failed to save conversation": "Theip ar an gcomhrá a shábháil",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Stair Aiseolais",
|
||||
"Feedbacks": "Aiseolas",
|
||||
"Feel free to add specific details": "Ná bíodh leisce ort sonraí ar leith a chur leis",
|
||||
"Female": "",
|
||||
"File": "Comhad",
|
||||
"File added successfully.": "D'éirigh leis an gcomhad a chur leis.",
|
||||
"File content updated successfully.": "D'éirigh le hábhar an chomhaid a nuashonrú.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Cumraíocht Gemini API",
|
||||
"Gemini API Key is required.": "Tá Eochair Gemini API ag teastáil.",
|
||||
"Gender": "",
|
||||
"General": "Ginearálta",
|
||||
"Generate": "Gin",
|
||||
"Generate an image": "Gin íomhá",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Eochair API Google PSE",
|
||||
"Google PSE Engine Id": "ID Inneall Google PSE",
|
||||
"Gravatar": "",
|
||||
"Group": "Grúpa",
|
||||
"Group created successfully": "Grúpa cruthaithe go rathúil",
|
||||
"Group deleted successfully": "D'éirigh le scriosadh an ghrúpa",
|
||||
"Group Description": "Cur síos ar an nGrúpa",
|
||||
"Group Name": "Ainm an Ghrúpa",
|
||||
"Group": "Grúpa",
|
||||
"Group updated successfully": "D'éirigh le nuashonrú an ghrúpa",
|
||||
"Groups": "Grúpaí",
|
||||
"H1": "H1",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Uirlisí Iomp",
|
||||
"Important Update": "Nuashonrú tábhachtach",
|
||||
"Include": "Cuir san áireamh",
|
||||
"Includes SharePoint": "Áirítear SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Áirítear SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Instealladh an t-ábhar ar fad mar chomhthéacs do phróiseáil chuimsitheach, moltar é seo le haghaidh ceisteanna casta.",
|
||||
"Input": "Ionchur",
|
||||
"Input commands": "Orduithe ionchuir",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "Déan an focal faire le feiceáil sa chomhéadan úsáideora",
|
||||
"Make sure to enclose them with": "Déan cinnte iad a cheangal le",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Déan cinnte comhad workflow.json a onnmhairiú mar fhormáid API ó ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Bainistiú",
|
||||
"Manage Direct Connections": "Bainistigh Naisc Dhíreacha",
|
||||
"Manage Models": "Samhlacha a bhainistiú",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Bainistigh Naisc API OpenAI",
|
||||
"Manage Pipelines": "Bainistigh píblín",
|
||||
"Manage Tool Servers": "Bainistigh Freastalaithe Uirlisí",
|
||||
"Manage your account information.": "",
|
||||
"March": "Márta",
|
||||
"Markdown": "Marcáil síos",
|
||||
"Markdown (Header)": "Marcáil síos (Ceanntásc)",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Tuilleadh",
|
||||
"More Concise": "Níos Gonta",
|
||||
"More Options": "Tuilleadh Roghanna",
|
||||
"Move": "",
|
||||
"Name": "Ainm",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Cuir ainm ar do bhunachar eolais",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Níor aimsíodh aon ábhar",
|
||||
"No content found in file.": "Níor aimsíodh aon ábhar sa chomhad.",
|
||||
"No content to speak": "Níl aon ábhar le labhairt",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Níl achar ar fáil",
|
||||
"No feedbacks found": "Níor aimsíodh aon aiseolas",
|
||||
"No file selected": "Níl aon chomhad roghnaithe",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Níl aon torthaí le fáil",
|
||||
"No search query generated": "Ní ghintear aon cheist cuardaigh",
|
||||
"No source available": "Níl aon fhoinse ar fáil",
|
||||
"No suggestion prompts": "Gan leideanna molta",
|
||||
"No users were found.": "Níor aimsíodh aon úsáideoirí.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Gan comhlaí le nuashonrú",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Gan leideanna molta",
|
||||
"None": "Dada",
|
||||
"Not factually correct": "Níl sé ceart go fírineach",
|
||||
"Not helpful": "Gan a bheith cabhrach",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "Nuashonraíodh socruithe OpenAI API",
|
||||
"OpenAI URL/Key required.": "Teastaíonn URL/eochair OpenAI.",
|
||||
"openapi.json URL or Path": "openapi.json URL nó Cosán",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Roghanna chun samhail teanga fís áitiúil a rith i dtuairisc na pictiúr. Tagraíonn na paraiméadair do shamhail a óstáiltear ar Hugging Face. Tá an paraiméadar seo eisiach go frithpháirteach le picture_description_api.",
|
||||
"or": "nó",
|
||||
"Ordered List": "Liosta Ordaithe",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "URL drámadóir WebSocket",
|
||||
"Please carefully review the following warnings:": "Déan athbhreithniú cúramach ar na rabhaidh seo a leanas le do thoil:",
|
||||
"Please do not close the settings page while loading the model.": "Ná dún leathanach na socruithe agus an tsamhail á luchtú.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Cuir isteach leid",
|
||||
"Please enter a valid path": "Cuir isteach cosán bailí",
|
||||
"Please enter a valid URL": "Cuir isteach URL bailí",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "Fan go dtí go mbeidh na comhaid go léir uaslódáilte.",
|
||||
"Port": "Port",
|
||||
"Positive attitude": "Dearcadh dearfach",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Aitheantas Réimír",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Úsáidtear Aitheantas Réimír chun coinbhleachtaí le naisc eile a sheachaint trí réimír a chur le haitheantas na samhla - fág folamh le díchumasú",
|
||||
"Prevent file creation": "Cosc a chur ar chruthú comhad",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "Teachtaireacht roimhe seo",
|
||||
"Private": "Príobháideach",
|
||||
"Profile": "Próifíl",
|
||||
"Profile Image": "Íomhá Próifíl",
|
||||
"Prompt": "Leid",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Leid (m.sh. inis dom fíric spraíúil faoin Impireacht Rómhánach)",
|
||||
"Prompt Autocompletion": "Uathchríochnú Pras",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Samhail Athrangú",
|
||||
"Reset": "Athshocraigh",
|
||||
"Reset All Models": "Athshocraigh Gach Samhail",
|
||||
"Reset Image": "Athshocraigh Íomhá",
|
||||
"Reset Upload Directory": "Athshocraigh Eolaire Uas",
|
||||
"Reset Vector Storage/Knowledge": "Athshocraigh Stóráil/Eolas Veicteoir",
|
||||
"Reset view": "Athshocraigh amharc",
|
||||
"Reset Image": "Athshocraigh Íomhá",
|
||||
"Response": "Freagra",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Ní féidir fógraí freagartha a ghníomhachtú toisc gur diúltaíodh ceadanna an tsuímh Ghréasáin. Tabhair cuairt ar do shocruithe brabhsálaí chun an rochtain riachtanach a dheonú.",
|
||||
"Response splitting": "Scoilt freagartha",
|
||||
"Response Watermark": "Comhartha Uisce Freagartha",
|
||||
"RESULT": "Toradh",
|
||||
"Result": "Toradh",
|
||||
"RESULT": "Toradh",
|
||||
"Retrieval": "Aisghabháil",
|
||||
"Retrieval Query Generation": "Aisghabháil Giniúint Ceist",
|
||||
"Rich Text Input for Chat": "Ionchur Saibhir Téacs don Chomhrá",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Sábháil & Cruthaigh",
|
||||
"Save & Update": "Sábháil & Nuashonraigh",
|
||||
"Save As Copy": "Sábháil Mar Cóip",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Sábháil Clib",
|
||||
"Saved": "Shábháil",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Ní thacaítear le logaí comhrá a shábháil go díreach chuig stóráil do bhrabhsálaí Tóg nóiméad chun do logaí comhrá a íoslódáil agus a scriosadh trí chliceáil an cnaipe thíos. Ná bíodh imní ort, is féidir leat do logaí comhrá a athiompórtáil go héasca chuig an gcúltaca trí",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Comhroinn",
|
||||
"Share Chat": "Comhroinn Comhrá",
|
||||
"Share to Open WebUI Community": "Comhroinn le Pobal OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Ceadanna a Roinnt",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Is cásanna iad aicearraí a bhfuil réalta (*) orthu agus ní bhíonn siad gníomhach ach faoi choinníollacha sonracha.",
|
||||
"Show": "Taispeáin",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "Urlabhra-go-Téacs",
|
||||
"Speech-to-Text Engine": "Inneall Cainte-go-Téacs",
|
||||
"Start of the channel": "Tús an chainéil",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Stad",
|
||||
"Stop Generating": "Stop a Ghiniúint",
|
||||
"Stop Sequence": "Stop Seicheamh",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "Stríoc tríd",
|
||||
"Strip Existing OCR": "Bain OCR atá ann cheana",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Bain an téacs OCR atá ann cheana féin as an PDF agus athrith OCR. Déantar neamhaird de má tá OCR Fórsála cumasaithe. Is é Bréag an rogha réamhshocraithe.",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Samhail STT",
|
||||
"STT Settings": "Socruithe STT",
|
||||
"Stylized PDF Export": "Easpórtáil PDF Stílithe",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Inis dúinn níos mó:",
|
||||
"Temperature": "Teocht",
|
||||
"Temporary Chat": "Comhrá Sealadach",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Scoilteoir Téacs",
|
||||
"Text-to-Speech": "Téacs-go-Caint",
|
||||
"Text-to-Speech Engine": "Inneall téacs-go-labhra",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Mód URL",
|
||||
"Usage": "Úsáid",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Úsáid '#' san ionchur leid chun do chuid eolais a lódáil agus a chur san áireamh.",
|
||||
"Use Gravatar": "Úsáid Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "Bain úsáid as grúpaí chun d’úsáideoirí a ghrúpáil agus ceadanna a shannadh.",
|
||||
"Use Initials": "Úsáid ceannlitreacha",
|
||||
"Use LLM": "Úsáid LLM",
|
||||
"Use no proxy to fetch page contents.": "Ná húsáid seachfhreastalaí chun inneachar an leathanaigh a fháil.",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Úsáid seachfhreastalaí ainmnithe ag athróga timpeallachta http_proxy agus https_proxy chun inneachar an leathanaigh a fháil.",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Tá an comhrá seo roinnte agat",
|
||||
"You're a helpful assistant.": "Is cúntóir cabhrach tú.",
|
||||
"You're now logged in.": "Tá tú logáilte isteach anois.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Tá stádas do chuntais ar feitheamh faoi ghníomhachtú.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Rachaidh do ranníocaíocht iomlán go díreach chuig an bhforbróir breiseán; Ní ghlacann Open WebUI aon chéatadán. Mar sin féin, d'fhéadfadh a tháillí féin a bheith ag an ardán maoinithe roghnaithe.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "L'URL base AUTOMATIC1111 è obbligatorio.",
|
||||
"Available list": "Elenco disponibile",
|
||||
"Available Tools": "Strumenti disponibili",
|
||||
"available!": "disponibile!",
|
||||
"available users": "utenti disponibili",
|
||||
"available!": "disponibile!",
|
||||
"Away": "Assente",
|
||||
"Awful": "Terribile",
|
||||
"Azure AI Speech": "Azure AI Speech",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Endpoint di Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Chiave di Iscrizione Bing Search V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Chiave API di Bocha Search",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Controlli chat",
|
||||
"Chat direction": "Direzione chat",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Panoramica chat",
|
||||
"Chat Permissions": "Permessi chat",
|
||||
"Chat Tags Auto-Generation": "Generazione automatica dei tag chat",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Controlla la ripetizione delle sequenze di token nel testo generato. Un valore più alto (ad esempio, 1.5) penalizzerà le ripetizioni in modo più forte, mentre un valore più basso (ad esempio, 1.1) sarà più indulgente. A 1, è disabilitato.",
|
||||
"Controls": "Controlli",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Controlla l'equilibrio tra coerenza e diversità dell'output. Un valore più basso risulterà in un testo più focalizzato e coerente.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Copiato",
|
||||
"Copied link to clipboard": "Link copiato negli appunti",
|
||||
"Copied shared chat URL to clipboard!": "URL della chat condivisa copiato negli appunti!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Documenti",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "non effettua connessioni esterne e i tuoi dati rimangono al sicuro sul tuo server ospitato localmente.",
|
||||
"Domain Filter List": "Elenco filtri dominio",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Non recuperare pipeline casuali da fonti non affidabili.",
|
||||
"Don't have an account?": "Non hai un account?",
|
||||
"don't install random functions from sources you don't trust.": "non installare funzioni da fonti di cui non ti fidi.",
|
||||
"don't install random tools from sources you don't trust.": "non installare strumenti da fonti di cui non ti fidi.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Non recuperare pipeline casuali da fonti non affidabili.",
|
||||
"Don't like the style": "Non ti piace lo stile",
|
||||
"Done": "Fatto",
|
||||
"Download": "Scarica",
|
||||
"Download & Delete": "Scarica e elimina",
|
||||
"Download as SVG": "Scarica come SVG",
|
||||
"Download canceled": "Scaricamento annullato",
|
||||
"Download Database": "Scarica database",
|
||||
"Download & Delete": "Scarica e elimina",
|
||||
"Drag and drop a file to upload or select a file to view": "Trascina e rilascia un file per caricarlo o seleziona un file da visualizzare",
|
||||
"Draw": "Disegna",
|
||||
"Drop any files here to upload": "Rilascia qui i file per caricarli",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Inserisci Chiave API per Google PSE",
|
||||
"Enter Google PSE Engine Id": "Inserisci Engine Id per Google PSE",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Inserisci Dimensione Immagine (ad esempio 512x512)",
|
||||
"Enter Jina API Key": "Inserisci Chiave API Jina",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "Inserisci Password Yacy",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Inserisci l'URL Yacy (ad esempio http://yacy.example.com:8090)",
|
||||
"Enter Yacy Username": "Inserisci Nome Utente Yacy",
|
||||
"Enter your code here...": "Inserisci qui il tuo codice...",
|
||||
"Enter your current password": "Inserisci la tua password attuale",
|
||||
"Enter Your Email": "Inserisci la Tua Email",
|
||||
"Enter Your Full Name": "Inserisci il Tuo Nome Completo",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Inserisci il tuo messaggio",
|
||||
"Enter your name": "Inserisci il tuo nome",
|
||||
"Enter Your Name": "Inserisci il Tuo Nome",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Inserisci il Tuo Ruolo",
|
||||
"Enter Your Username": "Inserisci il Tuo Nome Utente",
|
||||
"Enter your webhook URL": "Inserisci l'URL del tuo webhook",
|
||||
"Enter your code here...": "Inserisci qui il tuo codice...",
|
||||
"Error": "Errore",
|
||||
"ERROR": "ERRORE",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "Impossibile caricare il contenuto del file.",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Impossibile leggere il contenuto degli appunti",
|
||||
"Failed to save connections": "Impossibile salvare le connessioni",
|
||||
"Failed to save conversation": "Impossibile salvare la conversazione",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Storico feedback",
|
||||
"Feedbacks": "Feedback",
|
||||
"Feel free to add specific details": "Sentiti libero/a di aggiungere dettagli specifici",
|
||||
"Female": "",
|
||||
"File": "File",
|
||||
"File added successfully.": "File aggiunto con successo.",
|
||||
"File content updated successfully.": "Contenuto del file aggiornato con successo.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Configurazione API Gemini",
|
||||
"Gemini API Key is required.": "La Chiave API Gemini è richiesta.",
|
||||
"Gender": "",
|
||||
"General": "Generale",
|
||||
"Generate": "Genera",
|
||||
"Generate an image": "Genera un'immagine",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Chiave API PSE di Google",
|
||||
"Google PSE Engine Id": "ID motore PSE di Google",
|
||||
"Gravatar": "",
|
||||
"Group": "Gruppo",
|
||||
"Group created successfully": "Gruppo creato con successo",
|
||||
"Group deleted successfully": "Gruppo eliminato con successo",
|
||||
"Group Description": "Descrizione Gruppo",
|
||||
"Group Name": "Nome Gruppo",
|
||||
"Group": "Gruppo",
|
||||
"Group updated successfully": "Gruppo aggiornato con successo",
|
||||
"Groups": "Gruppi",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Importa Tool",
|
||||
"Important Update": "Aggiornamento importante",
|
||||
"Include": "Includi",
|
||||
"Includes SharePoint": "Include SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Include SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Inietta l'intero contenuto come contesto per un'elaborazione completa, questo è consigliato per query complesse.",
|
||||
"Input": "",
|
||||
"Input commands": "Comandi di input",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "Rendi la password visibile nella interfaccia utente",
|
||||
"Make sure to enclose them with": "Assicurati di racchiuderli con",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Assicurati di esportare un file workflow.json come formato API da ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Gestisci",
|
||||
"Manage Direct Connections": "Gestisci Connessioni Dirette",
|
||||
"Manage Models": "Gestisci Modelli",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Gestisci le connessioni API OpenAI",
|
||||
"Manage Pipelines": "Gestisci le Pipeline",
|
||||
"Manage Tool Servers": "Gestisci i Server dei Tool",
|
||||
"Manage your account information.": "",
|
||||
"March": "Marzo",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Altro",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Nome",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Dai un nome alla tua base di conoscenza",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Nessun contenuto trovato",
|
||||
"No content found in file.": "Nessun contenuto trovato nel file.",
|
||||
"No content to speak": "Nessun contenuto da pronunciare",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Nessuna distanza disponibile",
|
||||
"No feedbacks found": "Nessun feedback trovato",
|
||||
"No file selected": "Nessun file selezionato",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Nessun risultato trovato",
|
||||
"No search query generated": "Nessuna query di ricerca generata",
|
||||
"No source available": "Nessuna fonte disponibile",
|
||||
"No suggestion prompts": "Nessun prompt suggerito",
|
||||
"No users were found.": "Nessun utente trovato.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Nessuna valvola da aggiornare",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Nessun prompt suggerito",
|
||||
"None": "Nessuno",
|
||||
"Not factually correct": "Non corretto dal punto di vista fattuale",
|
||||
"Not helpful": "Non utile",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "Impostazioni API OpenAI aggiornate",
|
||||
"OpenAI URL/Key required.": "URL/Chiave OpenAI obbligatori.",
|
||||
"openapi.json URL or Path": "URL openapi.json o il percorso",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Opzioni per l'esecuzione di un modello di vision-language locale nella descrizione dell'immagine. I parametri si riferiscono a un modello ospitato su Hugging Face. Questo parametro è esclusivo con picture_description_api.",
|
||||
"or": "o",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "URL WebSocket per Playwright",
|
||||
"Please carefully review the following warnings:": "Si prega di esaminare attentamente i seguenti avvisi:",
|
||||
"Please do not close the settings page while loading the model.": "Si prega di non chiudere la pagina delle impostazioni durante il caricamento del modello.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Si prega di inserire un prompt",
|
||||
"Please enter a valid path": "Si prega di inserire un percorso valido",
|
||||
"Please enter a valid URL": "Si prega di inserire un URL valido",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Porta",
|
||||
"Positive attitude": "Attitudine positiva",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "ID prefisso",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "L'ID prefisso viene utilizzato per evitare conflitti con altre connessioni aggiungendo un prefisso agli ID dei modelli - lasciare vuoto per disabilitare",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "Privato",
|
||||
"Profile": "Profilo",
|
||||
"Profile Image": "Immagine del Profilo",
|
||||
"Prompt": "Prompt",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (ad esempio Dimmi un fatto divertente sull'Impero Romano)",
|
||||
"Prompt Autocompletion": "Autocompletamento del Prompt",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Modello di Riclassificazione",
|
||||
"Reset": "Ripristina",
|
||||
"Reset All Models": "Ripristina Tutti i Modelli",
|
||||
"Reset Image": "Reimposta immagine",
|
||||
"Reset Upload Directory": "Ripristina Directory di Caricamento",
|
||||
"Reset Vector Storage/Knowledge": "Ripristina Archiviazione Vettoriale/Conoscenza",
|
||||
"Reset view": "Ripristina visualizzazione",
|
||||
"Reset Image": "Reimposta immagine",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Le notifiche di risposta non possono essere attivate poiché i permessi del sito web sono stati negati. Si prega di visitare le impostazioni del browser per concedere l'accesso necessario.",
|
||||
"Response splitting": "Divisione della risposta",
|
||||
"Response Watermark": "Watermark della richiesta",
|
||||
"RESULT": "Risultato",
|
||||
"Result": "Risultato",
|
||||
"RESULT": "Risultato",
|
||||
"Retrieval": "Recupero ricordo",
|
||||
"Retrieval Query Generation": "Generazione di query di recupero ricordo",
|
||||
"Rich Text Input for Chat": "Input di testo ricco per la chat",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Salva e crea",
|
||||
"Save & Update": "Salva e aggiorna",
|
||||
"Save As Copy": "Salva come copia",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Salva tag",
|
||||
"Saved": "Salvato",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Il salvataggio dei registri della chat direttamente nell'archivio del browser non è più supportato. Si prega di dedicare un momento per scaricare ed eliminare i registri della chat facendo clic sul pulsante in basso. Non preoccuparti, puoi facilmente reimportare i registri della chat nel backend tramite",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Condividi",
|
||||
"Share Chat": "Condividi chat",
|
||||
"Share to Open WebUI Community": "Condividi con la comunità OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Condivisione dei permessi",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Mostra",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Motore da voce a testo",
|
||||
"Start of the channel": "Inizio del canale",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Arresta",
|
||||
"Stop Generating": "Ferma generazione",
|
||||
"Stop Sequence": "Sequenza di arresto",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "Rimuovi OCR esistente",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Rimuovi il testo OCR esistente dal PDF e rilancia OCR. Ignorato se Forza OCR è attivo. Predefinito a Falso",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Modello STT",
|
||||
"STT Settings": "Impostazioni STT",
|
||||
"Stylized PDF Export": "Esportazione PDF Stilizzata",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Raccontaci di più:",
|
||||
"Temperature": "Temperatura",
|
||||
"Temporary Chat": "Chat temporanea",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Divisore di testo",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Motore da testo a voce",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Modalità URL",
|
||||
"Usage": "Utilizzo",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Usa '#' nell'input del prompt per caricare e includere la tua conoscenza.",
|
||||
"Use Gravatar": "Usa Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "Usa i gruppi per raggruppare i tuoi utenti e assegnare permessi.",
|
||||
"Use Initials": "Usa iniziali",
|
||||
"Use LLM": "Utilizza LLM",
|
||||
"Use no proxy to fetch page contents.": "Usa nessun proxy per recuperare i contenuti della pagina.",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Usa il proxy designato dalle variabili di ambiente http_proxy e https_proxy per recuperare i contenuti della pagina.",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Hai condiviso questa chat",
|
||||
"You're a helpful assistant.": "Sei un assistente utile.",
|
||||
"You're now logged in.": "Ora hai effettuato l'accesso.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Lo stato del tuo account è attualmente in attesa di attivazione.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Il tuo intero contributo andrà direttamente allo sviluppatore del plugin; Open WebUI non prende alcuna percentuale. Tuttavia, la piattaforma di finanziamento scelta potrebbe avere le proprie commissioni.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ベース URL が必要です。",
|
||||
"Available list": "利用可能リスト",
|
||||
"Available Tools": "利用可能ツール",
|
||||
"available!": "利用可能!",
|
||||
"available users": "利用可能なユーザー",
|
||||
"available!": "利用可能!",
|
||||
"Away": "離席中",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "AzureAIスピーチ",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "ベータ",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7 エンドポイント",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 サブスクリプションキー",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Bocha Search APIキー",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "チャットコントロール",
|
||||
"Chat direction": "チャットの方向",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "チャット概要",
|
||||
"Chat Permissions": "チャットの許可",
|
||||
"Chat Tags Auto-Generation": "チャットタグの自動生成",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "生成されたテキストのトークンシーケンスの繰り返しを制御します。値が高いほど(例:1.5)繰り返しをより強くペナルティを課し、値が低いほど(例:1.1)より寛容になります。値が1の場合、無効になります。",
|
||||
"Controls": "コントロール",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "出力のコヒーレンスとdiversityのバランスを制御します。値が低いほど、より焦点が絞られ、一貫性のあるテキストになります。",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "コピーしました。",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "共有チャットURLをクリップボードにコピーしました!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "ドキュメント",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "外部接続を行わず、データはローカルでホストされているサーバー上に安全に保持されます。",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "信頼できないソースからランダムなパイプラインを取得しないでください。",
|
||||
"Don't have an account?": "アカウントをお持ちではありませんか?",
|
||||
"don't install random functions from sources you don't trust.": "信頼出来ないソースからランダムFunctionをインストールしないでください。",
|
||||
"don't install random tools from sources you don't trust.": "信頼出来ないソースからランダムツールをインストールしないでください。",
|
||||
"don't fetch random pipelines from sources you don't trust.": "信頼できないソースからランダムなパイプラインを取得しないでください。",
|
||||
"Don't like the style": "デザインが好きでない",
|
||||
"Done": "完了",
|
||||
"Download": "ダウンロード",
|
||||
"Download & Delete": "ダウンロードして削除",
|
||||
"Download as SVG": "SVGとしてダウンロード",
|
||||
"Download canceled": "ダウンロードをキャンセルしました",
|
||||
"Download Database": "データベースをダウンロード",
|
||||
"Download & Delete": "ダウンロードして削除",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Google PSE APIキーの入力",
|
||||
"Enter Google PSE Engine Id": "Google PSE エンジン ID を入力します。",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "画像サイズを入力してください (例: 512x512)",
|
||||
"Enter Jina API Key": "Jina APIキーを入力",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "Yacyパスワードを入力してください。",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Yacy URLを入力してください (例: http://yacy.example.com:8090)",
|
||||
"Enter Yacy Username": "Yacyユーザー名を入力してください。",
|
||||
"Enter your code here...": "ここにコードを入力してください...",
|
||||
"Enter your current password": "現在のパスワードを入力してください",
|
||||
"Enter Your Email": "メールアドレスを入力してください",
|
||||
"Enter Your Full Name": "フルネームを入力してください",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "メッセージを入力してください",
|
||||
"Enter your name": "名前を入力してください",
|
||||
"Enter Your Name": "名前を入力してください",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "ロールを入力してください",
|
||||
"Enter Your Username": "ユーザー名を入力してください",
|
||||
"Enter your webhook URL": "Webhook URLを入力してください",
|
||||
"Enter your code here...": "ここにコードを入力してください...",
|
||||
"Error": "エラー",
|
||||
"ERROR": "エラー",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "ファイルの内容を読み込めませんでした。",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "クリップボードの内容を読み取れませんでした",
|
||||
"Failed to save connections": "接続の保存に失敗しました。",
|
||||
"Failed to save conversation": "会話の保存に失敗しました。",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "フィードバック履歴",
|
||||
"Feedbacks": "フィードバック",
|
||||
"Feel free to add specific details": "詳細を追加してください",
|
||||
"Female": "",
|
||||
"File": "ファイル",
|
||||
"File added successfully.": "ファイル追加が成功しました。",
|
||||
"File content updated successfully.": "ファイルコンテンツ追加が成功しました。",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "Gemini APIキーが必要です。",
|
||||
"Gender": "",
|
||||
"General": "一般",
|
||||
"Generate": "生成",
|
||||
"Generate an image": "画像を生成",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "Google PSE APIキー",
|
||||
"Google PSE Engine Id": "Google PSE エンジン ID",
|
||||
"Gravatar": "",
|
||||
"Group": "グループ",
|
||||
"Group created successfully": "グループの作成が成功しました。",
|
||||
"Group deleted successfully": "グループの削除が成功しました。",
|
||||
"Group Description": "グループの説明",
|
||||
"Group Name": "グループ名",
|
||||
"Group": "グループ",
|
||||
"Group updated successfully": "グループの更新が成功しました。",
|
||||
"Groups": "グループ",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "ツールのインポート",
|
||||
"Important Update": "重要な更新",
|
||||
"Include": "含める",
|
||||
"Includes SharePoint": "SharePoint を含む",
|
||||
"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`フラグを含める",
|
||||
"Includes SharePoint": "SharePoint を含む",
|
||||
"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": "情報",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "複雑なクエリには、包括的な処理のためにコンテンツ全体をコンテキストとして注入することをお勧めします。",
|
||||
"Input": "",
|
||||
"Input commands": "入力コマンド",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "必ず次で囲んでください",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "管理",
|
||||
"Manage Direct Connections": "直接接続の管理",
|
||||
"Manage Models": "モデルの管理",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "OpenAI API接続の管理",
|
||||
"Manage Pipelines": "パイプラインの管理",
|
||||
"Manage Tool Servers": "ツールサーバーの管理",
|
||||
"Manage your account information.": "",
|
||||
"March": "3月",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "もっと見る",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "名前",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "ナレッジベースの名前を付ける",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "内容が見つかりません",
|
||||
"No content found in file.": "ファイル内に内容が見つかりません。",
|
||||
"No content to speak": "話す内容がありません",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "距離が利用できません",
|
||||
"No feedbacks found": "フィードバックが見つかりません",
|
||||
"No file selected": "ファイルが選択されていません",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "結果が見つかりません",
|
||||
"No search query generated": "検索クエリは生成されません",
|
||||
"No source available": "使用可能なソースがありません",
|
||||
"No suggestion prompts": "提案プロンプトはありません",
|
||||
"No users were found.": "ユーザーが見つかりません。",
|
||||
"No valves": "",
|
||||
"No valves to update": "更新するバルブがありません",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "提案プロンプトはありません",
|
||||
"None": "何一つ",
|
||||
"Not factually correct": "実事上正しくない",
|
||||
"Not helpful": "役に立たない",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "OpenAI API設定が更新されました",
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Key が必要です。",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "または",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "Playwright WebSocket URL",
|
||||
"Please carefully review the following warnings:": "次の警告を慎重に確認してください:",
|
||||
"Please do not close the settings page while loading the model.": "モデルの読み込み中に設定ページを閉じないでください。",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "プロンプトを入力してください",
|
||||
"Please enter a valid path": "有効なパスを入力してください",
|
||||
"Please enter a valid URL": "有効なURLを入力してください",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "ポート",
|
||||
"Positive attitude": "前向きな態度",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Prefix ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID はモデル ID に接頭辞を追加することで、他の接続との競合を避けるために使用されます - 空の場合は無効にします",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "プライベート",
|
||||
"Profile": "プロフィール",
|
||||
"Profile Image": "プロフィール画像",
|
||||
"Prompt": "プロンプト",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "プロンプト(例:ローマ帝国についての楽しい事を教えてください)",
|
||||
"Prompt Autocompletion": "プロンプトの自動補完",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "リランクモデル",
|
||||
"Reset": "リセット",
|
||||
"Reset All Models": "すべてのモデルをリセット",
|
||||
"Reset Image": "画像をリセット",
|
||||
"Reset Upload Directory": "アップロードディレクトリをリセット",
|
||||
"Reset Vector Storage/Knowledge": "ベクターストレージとナレッジベースをリセット",
|
||||
"Reset view": "表示をリセット",
|
||||
"Reset Image": "画像をリセット",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "ウェブサイトの許可が拒否されたため、応答通知をアクティブ化できません。必要なアクセスを許可するためにブラウザの設定を訪問してください。",
|
||||
"Response splitting": "応答の分割",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "結果",
|
||||
"Result": "結果",
|
||||
"RESULT": "結果",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "チャットのリッチテキスト入力",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "保存して作成",
|
||||
"Save & Update": "保存して更新",
|
||||
"Save As Copy": "コピーとして保存",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "タグを保存",
|
||||
"Saved": "保存しました。",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "チャットログをブラウザのストレージに直接保存する機能はサポートされなくなりました。下のボタンをクリックして、チャットログをダウンロードして削除してください。ご心配なく。チャットログは、次の方法でバックエンドに簡単に再インポートできます。",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "共有",
|
||||
"Share Chat": "チャットを共有",
|
||||
"Share to Open WebUI Community": "OpenWebUI コミュニティに共有",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "共有許可",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "表示",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "音声テキスト変換エンジン",
|
||||
"Start of the channel": "チャンネルの開始",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "停止",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "ストップシーケンス",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "STTモデル",
|
||||
"STT Settings": "STT設定",
|
||||
"Stylized PDF Export": "スタイル付きPDFエクスポート",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "もっと話してください:",
|
||||
"Temperature": "温度",
|
||||
"Temporary Chat": "一時的なチャット",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "テキスト音声変換エンジン",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL モード",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "#を入力するとナレッジベースを参照することが出来ます。",
|
||||
"Use Gravatar": "Gravatar を使用する",
|
||||
"Use groups to group your users and assign permissions.": "グループを使用してユーザーをグループ化し、権限を割り当てます。",
|
||||
"Use Initials": "初期値を使用する",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "ページの内容を取得するためにプロキシを使用しません。",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "http_proxy と https_proxy 環境変数で指定されたプロキシを使用してページの内容を取得します。",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "このチャットを共有しました",
|
||||
"You're a helpful assistant.": "あなたは有能なアシスタントです。",
|
||||
"You're now logged in.": "ログインしました。",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "あなたのアカウント状態は現在登録認証待ちです。",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
|
||||
"Youtube": "YouTube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 საბაზისო მისამართი აუცილებელია.",
|
||||
"Available list": "ხელმისაწვდომი სია",
|
||||
"Available Tools": "",
|
||||
"available!": "ხელმისაწვდომია!",
|
||||
"available users": "ხელმისაწვდომი მომხმარებლები",
|
||||
"available!": "ხელმისაწვდომია!",
|
||||
"Away": "გაცდენილი",
|
||||
"Awful": "საშინელი",
|
||||
"Azure AI Speech": "",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "ბეტა",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "",
|
||||
"Chat direction": "ჩატის მიმართულება",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "მმართველები",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "დაკოპირდა",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "გაზიარებული ჩატის ბმული დაკოპირდა ბუფერში!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "დოკუმენტები",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "არ ამყარებს გარე კავშირებს და თქვენი მონაცემები უსაფრთხოდ რჩება თქვენს ლოკალურ სერვერზე.",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "არ ჩამოტვირთოთ შემთხვევითი pipelines არასანდო წყაროებიდან.",
|
||||
"Don't have an account?": "არ გაქვთ ანგარიში?",
|
||||
"don't install random functions from sources you don't trust.": "",
|
||||
"don't install random tools from sources you don't trust.": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "არ ჩამოტვირთოთ შემთხვევითი pipelines არასანდო წყაროებიდან.",
|
||||
"Don't like the style": "არ მომწონს სტილი",
|
||||
"Done": "დასრულებული",
|
||||
"Download": "გადმოწერა",
|
||||
"Download & Delete": "ჩამოტვირთვა და წაშლა",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "გადმოწერა გაუქმდა",
|
||||
"Download Database": "მონაცემთა ბაზის გადმოწერა",
|
||||
"Download & Delete": "ჩამოტვირთვა და წაშლა",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "ხატვა",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "შეიყვანეთ Google PSE API-ის გასაღები",
|
||||
"Enter Google PSE Engine Id": "შეიყვანეთ Google PSE ძრავის ID",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "შეიყვანეთ სურათის ზომა (მაგ. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "შეიყვანეთ თქვენი კოდი აქ...",
|
||||
"Enter your current password": "შეიყვანეთ თქვენი მიმდინარე პაროლი",
|
||||
"Enter Your Email": "შეიყვანეთ თქვენი ელფოსტა",
|
||||
"Enter Your Full Name": "შეიყვანეთ თქვენი სრული სახელი",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "შეიყვანეთ თქვენი როლი",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "შეიყვანეთ თქვენი კოდი აქ...",
|
||||
"Error": "შეცდომა",
|
||||
"ERROR": "ERROR",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "ბუფერის შემცველობის წაკითხვა ჩავარდა",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "საუბრის შენახვა ვერ მოხერხდა",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "სპეციფიკური დეტალების დამატება პრობლემა არაა",
|
||||
"Female": "",
|
||||
"File": "ფაილი",
|
||||
"File added successfully.": "",
|
||||
"File content updated successfully.": "",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "მარჩბივი",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "ზოგადი",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Google PSE API გასაღები",
|
||||
"Google PSE Engine Id": "Google PSE ძრავის Id",
|
||||
"Gravatar": "",
|
||||
"Group": "ჯგუფი",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "ჯგუფის სახელი",
|
||||
"Group": "ჯგუფი",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "ჯგუფები",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "",
|
||||
"Important Update": "მნიშვნელოვანი განახლება",
|
||||
"Include": "ჩართვა",
|
||||
"Includes SharePoint": "შეიცავს SharePoint-ს",
|
||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "`--api` ალმის ჩასმა stable-diffusion-webui-ის გამოყენებისას",
|
||||
"Includes SharePoint": "შეიცავს SharePoint-ს",
|
||||
"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": "ინფორმაცია",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "შეიყვანეთ ბრძანებები",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "დარწმუნდით, რომ ჩასვით ისინი",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "მართვა",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "მილსადენების მართვა",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "მარტი",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "მეტი",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "სახელი",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "შემცველობა აღმოჩენილი არაა",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "წარმოსათქმელი შემცველობის გარეშე",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "მანძილი ხელმისაწვდომი არაა",
|
||||
"No feedbacks found": "",
|
||||
"No file selected": "ფაილი არჩეული არაა",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "შედეგების გარეშე",
|
||||
"No search query generated": "ძებნის მოთხოვნა არ შექმნილა",
|
||||
"No source available": "წყარო ხელმისაწვდომი არაა",
|
||||
"No suggestion prompts": "არ არის შემოთავაზებული პრომპტები",
|
||||
"No users were found.": "მომხმარებლები აღმოჩენილი არაა.",
|
||||
"No valves": "",
|
||||
"No valves to update": "",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "არ არის შემოთავაზებული პრომპტები",
|
||||
"None": "არცერთი",
|
||||
"Not factually correct": "მთლად სწორი არაა",
|
||||
"Not helpful": "სასარგებლო არაა",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Key აუცილებელია.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "ან",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "პორტი",
|
||||
"Positive attitude": "პოზიტიური დამოკიდებულება",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "პრეფიქსის ",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "პროფილი",
|
||||
"Profile Image": "პროფილის სურათი",
|
||||
"Prompt": "ბრძანების შეყვანის შეხსენება",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (მაგ. მითხარი სახალისო ფაქტი რომის იმპერიის შესახებ)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Reranking მოდელი",
|
||||
"Reset": "ჩამოყრა",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "სურათის აღდგენა",
|
||||
"Reset Upload Directory": "",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "",
|
||||
"Reset Image": "სურათის აღდგენა",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
|
||||
"Response splitting": "",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "შედეგი",
|
||||
"Result": "შედეგი",
|
||||
"RESULT": "შედეგი",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "შენახვა და შექმნა",
|
||||
"Save & Update": "შენახვა და განახლება",
|
||||
"Save As Copy": "ასლის შენახვა",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "ჭდის შენახვა",
|
||||
"Saved": "შენახულია",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "ჩეთის ისტორიის შენახვა პირდაპირ თქვენი ბრაუზერის საცავში აღარ არის მხარდაჭერილი. გთხოვთ, დაუთმოთ და წაშალოთ თქვენი ჩატის ჟურნალები ქვემოთ მოცემულ ღილაკზე დაწკაპუნებით. არ ინერვიულოთ, თქვენ შეგიძლიათ მარტივად ხელახლა შემოიტანოთ თქვენი ჩეთის ისტორია ბექენდში",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "გაზიარება",
|
||||
"Share Chat": "ჩატის გაზიარება",
|
||||
"Share to Open WebUI Community": "გაზიარება Open WebUI-ის საზოგადოებასთან",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "ჩვენება",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "საუბრიდან-ტექსტამდე-ის ძრავი",
|
||||
"Start of the channel": "არხის დასაწყისი",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "გაჩერება",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "შეჩერების მიმდევრობა",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "",
|
||||
"STT Settings": "STT-ის მორგება",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "გვითხარით მეტი:",
|
||||
"Temperature": "ტემპერატურა",
|
||||
"Temporary Chat": "",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "ტექსტურ-ხმოვანი ძრავი",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL რეჟიმი",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "Gravatar-ის გამოყენება",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "ინიციალების გამოყენება",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "თქვენ გააზიარეთ ეს ჩატი",
|
||||
"You're a helpful assistant.": "თქვენ სასარგებლო ასისტენტი ბრძანდებით.",
|
||||
"You're now logged in.": "ახლა შესული ბრძანდებით.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
"{{COUNT}} hidden lines": "{{COUNT}} n yizirigen yeffren",
|
||||
"{{COUNT}} Replies": "{{COUNT}} n tririyin",
|
||||
"{{COUNT}} words": "{{COUNT}} n wawalen",
|
||||
"{{model}} download has been canceled": "",
|
||||
"{{user}}'s Chats": "Asqerdec n {{user}}",
|
||||
"{{webUIName}} Backend Required": "",
|
||||
"*Prompt node ID(s) are required for image generation": "",
|
||||
|
|
@ -29,6 +30,7 @@
|
|||
"Account Activation Pending": "Armad n umiḍan deg uṛaǧu",
|
||||
"Accurate information": "Talɣut tusdidt",
|
||||
"Action": "Tigawt",
|
||||
"Action not found": "",
|
||||
"Action Required for Chat Log Storage": "Isefk tigawt i usekles n uɣmis n udiwenni",
|
||||
"Actions": "Tigawin",
|
||||
"Activate": "Sermed",
|
||||
|
|
@ -99,6 +101,7 @@
|
|||
"Always Play Notification Sound": "Rmed yal tikkelt alɣu s ṣṣut",
|
||||
"Amazing": "Igerrez",
|
||||
"an assistant": "d amallal",
|
||||
"An error occurred while fetching the explanation": "",
|
||||
"Analytics": "Tasleḍt",
|
||||
"Analyzed": "Yettwasekyed",
|
||||
"Analyzing...": "La yettwasekyad…",
|
||||
|
|
@ -115,6 +118,7 @@
|
|||
"API Key Endpoint Restrictions": "Agaz n ugaz n tsarut API",
|
||||
"API keys": "Tisura API",
|
||||
"API Version": "Lqem n API",
|
||||
"API Version is required": "",
|
||||
"Application DN": "DN n wesnas",
|
||||
"Application DN Password": "Awal n uɛeddi n DN n usnas",
|
||||
"applies to all users with the \"user\" role": "yeɛna akk iseqdacen yesɛan tamlilt \"user\"",
|
||||
|
|
@ -153,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "L'URL n uzadur {AUTOMATIC1111} yettwasra.",
|
||||
"Available list": "Tabdart i yellan",
|
||||
"Available Tools": "Ifecka i yellan",
|
||||
"available!": "yella!",
|
||||
"available users": "Iseqdacen yellan",
|
||||
"available!": "yella!",
|
||||
"Away": "Ulac",
|
||||
"Awful": "D tawaɣit",
|
||||
"Azure AI Speech": "Azure AI Speech",
|
||||
|
|
@ -165,11 +169,14 @@
|
|||
"Banners": "Iɣerracen",
|
||||
"Base Model (From)": "Tamudemt tazadurt (Seg)",
|
||||
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "Umuɣ n uzadur n tebdart Cache yessazzel anekcum s tmudmin tidusanin kan deg ubeddu neɣ deg yiɣewwaren i d-yettwasellken — amestir, maca yezmer lḥal ur d-yesskan ara ibeddilen ineggura n tmudemt azadur.",
|
||||
"Bearer": "",
|
||||
"before": "send",
|
||||
"Being lazy": "Ili-k d ameɛdaz",
|
||||
"Beta": "Biṭa",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "Tasarut n umulteɣ Bing Search V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Tasarut API n Bocha Search",
|
||||
"Bold": "Azuran",
|
||||
|
|
@ -194,7 +201,9 @@
|
|||
"Capture Audio": "Asekles n umeslaw",
|
||||
"Certificate Path": "Abrid n uselkin",
|
||||
"Change Password": "Snifel awal n uɛeddi",
|
||||
"Channel deleted successfully": "",
|
||||
"Channel Name": "Isem n ubadu",
|
||||
"Channel updated successfully": "",
|
||||
"Channels": "Ibuda",
|
||||
"Character": "asekkil",
|
||||
"Character limit for autocomplete generation input": "",
|
||||
|
|
@ -205,6 +214,7 @@
|
|||
"Chat Controls": "Isenqaden n udiwenni",
|
||||
"Chat direction": "Tanila n udiwenni",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Taskant n udiwenni",
|
||||
"Chat Permissions": "Isumar n yidiwenniyen",
|
||||
"Chat Tags Auto-Generation": "Asirew awurman n tebzimin",
|
||||
|
|
@ -243,6 +253,7 @@
|
|||
"Close modal": "Mdel asfaylu",
|
||||
"Close settings modal": "Mdel asfaylu n iɣewwaṛen",
|
||||
"Close Sidebar": "Mdel agalis adisan",
|
||||
"CMU ARCTIC speaker embedding name": "",
|
||||
"Code Block": "Iḥder n tengalt",
|
||||
"Code execution": "Aselkem n tengalt",
|
||||
"Code Execution": "Aselkem n tengalt",
|
||||
|
|
@ -261,11 +272,13 @@
|
|||
"ComfyUI Base URL is required.": "URL n taffa ComfyUI, yettwasra.",
|
||||
"ComfyUI Workflow": "Asuddem n umahil n ComfyUI",
|
||||
"ComfyUI Workflow Nodes": "Taneddict n usuddem n umahil n ComfyUI",
|
||||
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
|
||||
"Command": "Anezḍay",
|
||||
"Comment": "Awennit",
|
||||
"Completions": "Tisemdiyin",
|
||||
"Compress Images in Channels": "Skussem tugniwin deg Yibuda",
|
||||
"Concurrent Requests": "Tuttriwin timiranin",
|
||||
"Config imported successfully": "",
|
||||
"Configure": "Swel",
|
||||
"Confirm": "Sentem",
|
||||
"Confirm Password": "Sentem awal n uɛeddi",
|
||||
|
|
@ -292,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Ssenqed amek ara tɛawdeḍ ad d-tɛawdeḍ tiseddarin n usekkil deg uḍris-nni i d-yettwalalen. Azal ɛlayen (amedya, 1.5) ad iɛawed ad iɛawed ad iɛawed ad iɛeddi s lǧehd, ma d azal n wadda (amedya, 1.1) ad yili d win yettɛeddin ugar. Ɣef 1, d ameɛdur.",
|
||||
"Controls": "Isenqaden",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Ssneqdet amnekni garkoerenza d tanḍa n tuffɣa. Azal n wadda ad d-yeglu s wugar n tmuɣli d uḍris udwis.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Yettwanɣel",
|
||||
"Copied link to clipboard": "Aseɣwen yettwanɣel ɣer tecfawt",
|
||||
"Copied shared chat URL to clipboard!": "Nɣel tansa URL n udiwenni yebḍan ɣef afus!",
|
||||
|
|
@ -336,6 +350,7 @@
|
|||
"Datalab Marker API Key required.": "API n isefkalab Marker Tesri tasarut.",
|
||||
"DD/MM/YYYY": "JJ/MM/AAAA",
|
||||
"December": "Duǧambeṛ",
|
||||
"Deepgram": "",
|
||||
"Default": "Amezwer",
|
||||
"Default (Open AI)": "Amezwer (Open AI)",
|
||||
"Default (SentenceTransformers)": "S wudem amezwar (SentenceTransformers)",
|
||||
|
|
@ -382,6 +397,7 @@
|
|||
"Direct Connections": "Tuqqniwin tusridin",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "Tuqqniwin tusridin ttaǧǧant iseqdacen ad qqnen ɣer wagazen-nsen n taggara API imṣadan OpenAI.",
|
||||
"Direct Tool Servers": "Iqeddacen n ifecka usriden",
|
||||
"Directory selection was cancelled": "",
|
||||
"Disable Code Interpreter": "Sens asegzay n tengalt",
|
||||
"Disable Image Extraction": "Sens afsay n tugniwin",
|
||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "Kkes-d asufeɣ n tugna seg PDF. Ma yella aseqdec n LLM yermed, tugniwin ad ttwakelsent s wudem awurman. Imezwura ɣer False.",
|
||||
|
|
@ -413,17 +429,17 @@
|
|||
"Documents": "Isemliyen",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "ur teqqen ara ɣer tuqqniwin tizɣarayin, akka isefka-k⋅m ad qqimen d iɣellsanen ɣef uqeddac-ik⋅im adigan.",
|
||||
"Domain Filter List": "Tabdart n taɣulin ara yettwasizedgen",
|
||||
"don't fetch random pipelines from sources you don't trust.": "ur d-awi ara pipelines igacuranen seg yiɣbula ur tettamneḍ ara.",
|
||||
"Don't have an account?": "Ur tesɛiḍ ara amiḍan?",
|
||||
"don't install random functions from sources you don't trust.": "ur sebdad ara timahilin tigacuranin i d-yekkan seg yiɣbula ur tettamneḍ ara.",
|
||||
"don't install random tools from sources you don't trust.": "ur srusuy ara ifecka igacuranen seg yiɣbula ur tettamneḍ ara.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "ur d-awi ara pipelines igacuranen seg yiɣbula ur tettamneḍ ara.",
|
||||
"Don't like the style": "Ur tḥemmleḍ ara aɣanib",
|
||||
"Done": "Immed",
|
||||
"Download": "Zdem",
|
||||
"Download & Delete": "Zdem & Kkes",
|
||||
"Download as SVG": "Zdem am SVG",
|
||||
"Download canceled": "Ittwasefsex usider",
|
||||
"Download Database": "Zdem-d tafa n isefka",
|
||||
"Download & Delete": "Zdem & Kkes",
|
||||
"Drag and drop a file to upload or select a file to view": "Zuɣer sakin ssers afaylu akken ad saliḍṭ neɣ fren afaylu akken ad twaliḍṭ",
|
||||
"Draw": "Suneɣ",
|
||||
"Drop any files here to upload": "Ssers-d ifuyla da akken ad ten-tessaliḍ",
|
||||
|
|
@ -495,6 +511,7 @@
|
|||
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Kcem ɣer tyugiwin \"token:bias_value\" i d-yezgan gar-asent (amedya: 5432:100, 413:-100)",
|
||||
"Enter Config in JSON format": "Kcem ɣer Config s umasal JSON",
|
||||
"Enter content for the pending user info overlay. Leave empty for default.": "Sekcem agbur n telɣut n useqdac yettwaṛjan. Eǧǧ ilem i tazwara.",
|
||||
"Enter coordinates (e.g. 51.505, -0.09)": "",
|
||||
"Enter Datalab Marker API Base URL": "",
|
||||
"Enter Datalab Marker API Key": "Sekcem API n isefkalab Marker Tasarut",
|
||||
"Enter description": "Sekcem aglam",
|
||||
|
|
@ -517,6 +534,8 @@
|
|||
"Enter Github Raw URL": "Sekcem tansa URL tazegzawt n Github",
|
||||
"Enter Google PSE API Key": "Sekcem tasarut API n Google PSE",
|
||||
"Enter Google PSE Engine Id": "Sekcem Google PSE Engine Id",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Sekcem tugna Size (amedya 512x512)",
|
||||
"Enter Jina API Key": "Sekcem tasarut API n Jina",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -570,12 +589,16 @@
|
|||
"Enter Top K Reranker": "Kcem ɣer Top K Reranker",
|
||||
"Enter URL (e.g. http://127.0.0.1:7860/)": "Sekcem tansa URL (amedya. http://127.0.0.0.1:7860/)",
|
||||
"Enter URL (e.g. http://localhost:11434)": "Sekcem tansa URL (amedya. http://localhost:11434)",
|
||||
"Enter value": "",
|
||||
"Enter value (true/false)": "",
|
||||
"Enter Yacy Password": "Sekcem-d awal n uɛeddi n Yacy",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Sekcem tansa URL n Yacy (amedya. http://yacy.example.com:8090)",
|
||||
"Enter Yacy Username": "Sekcem-d isem n useqdac n Yacy",
|
||||
"Enter your code here...": "Sekcem tangalt-ik dagi...",
|
||||
"Enter your current password": "Sekcem awal-ik·im n uɛeddi amiran",
|
||||
"Enter Your Email": "Sekcem-d imayl-ik·im",
|
||||
"Enter Your Full Name": "Sekcem isem n uneftaɣ-ik⋅im",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Sekcem-d izen-ik⋅im",
|
||||
"Enter your name": "Sekcem-d isem-ik·im",
|
||||
"Enter Your Name": "Sekcem-d isem-ik·im",
|
||||
|
|
@ -584,14 +607,16 @@
|
|||
"Enter Your Role": "Sekcem tamlilt-ik⋅im",
|
||||
"Enter Your Username": "Sekcem-d isem-ik·im n useqdac",
|
||||
"Enter your webhook URL": "Sekcem tansa URL n webhook-ik",
|
||||
"Enter your code here...": "Sekcem tangalt-ik dagi...",
|
||||
"Error": "Tuccḍa",
|
||||
"ERROR": "TUCCḌA",
|
||||
"Error accessing directory": "",
|
||||
"Error accessing Google Drive: {{error}}": "Tuccḍa Google Drive: {{error}}",
|
||||
"Error accessing media devices.": "Tuccḍa deg unekcum ɣer yibenkan n yiẓeḍwa.",
|
||||
"Error starting recording.": "Tuccḍa deg beddu n usekles.",
|
||||
"Error unloading model: {{error}}": "Tuccḍa deg usali n tmudemt: {{error}}",
|
||||
"Error uploading file: {{error}}": "Tuccḍa deg usali n ufaylu: {{error}}",
|
||||
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
|
||||
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
|
||||
"Evaluations": "Iktazalen",
|
||||
"Everyone": "Yal yiwen",
|
||||
"Exa API Key": "Tasarut API n Exa",
|
||||
|
|
@ -641,6 +666,7 @@
|
|||
"Failed to generate title": "Ur yessaweḍ ara ad d-yawi azwel",
|
||||
"Failed to load chat preview": "Yecceḍ usali n teskant n udiwenni",
|
||||
"Failed to load file content.": "Ur yessaweḍ ara ad d-yessali agbur n yifuyla.",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Ur yessaweḍ ara ad iɣer agbur n tfelwit",
|
||||
"Failed to save connections": "Yecceḍ uklas n tuqqniwin",
|
||||
"Failed to save conversation": "Yecceḍ uklas n udiwenni",
|
||||
|
|
@ -654,6 +680,7 @@
|
|||
"Feedback History": "Azray n tamawin",
|
||||
"Feedbacks": "Timuɣliwin",
|
||||
"Feel free to add specific details": "Ur ttkukru ara ad ternuḍ ttfaṣil ulmisen",
|
||||
"Female": "",
|
||||
"File": "Afaylu",
|
||||
"File added successfully.": "Afaylu yettwarna akken iwata.",
|
||||
"File content updated successfully.": "Agbur n ufaylu yettwaleqqem akken iwata.",
|
||||
|
|
@ -709,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Tawila n API Gemini",
|
||||
"Gemini API Key is required.": "API Yessefk tsarut.",
|
||||
"Gender": "",
|
||||
"General": "Amatu",
|
||||
"Generate": "Sirew",
|
||||
"Generate an image": "Sarew tugna",
|
||||
|
|
@ -724,17 +752,19 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Tasarut API n Google PSE",
|
||||
"Google PSE Engine Id": "Asulay n umsadday n unadi PSE n Google",
|
||||
"Gravatar": "",
|
||||
"Group": "Agraw",
|
||||
"Group created successfully": "Agraw yennulfa-d akken iwata",
|
||||
"Group deleted successfully": "Agraw yettwakkes akken iwata",
|
||||
"Group Description": "Aglam n ugraw",
|
||||
"Group Name": "Isem n ugraw",
|
||||
"Group": "Agraw",
|
||||
"Group updated successfully": "Agraw yettwaleqqem akken iwata",
|
||||
"Groups": "Igrawen",
|
||||
"H1": "H1",
|
||||
"H2": "H2",
|
||||
"H3": "H3",
|
||||
"Haptic Feedback": "",
|
||||
"Height": "",
|
||||
"Hello, {{name}}": "Azul a {{name}}",
|
||||
"Help": "Tallalt",
|
||||
"Help us create the best community leaderboard by sharing your feedback history!": "",
|
||||
|
|
@ -743,6 +773,7 @@
|
|||
"Hide": "Seggelmes",
|
||||
"Hide from Sidebar": "Ffer seg ufeggag n yidis",
|
||||
"Hide Model": "Ffer tamudemt",
|
||||
"High": "",
|
||||
"High Contrast Mode": "",
|
||||
"Home": "Agejdan",
|
||||
"Host": "Asneftaɣ",
|
||||
|
|
@ -782,14 +813,16 @@
|
|||
"Import Tools": "Kter ifecka",
|
||||
"Important Update": "Aleqqem ahemmu",
|
||||
"Include": "Seddu",
|
||||
"Includes SharePoint": "Igber SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Igber SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "Anekcum",
|
||||
"Input commands": "Tiludna n unekcum",
|
||||
"Input Key (e.g. text, unet_name, steps)": "",
|
||||
"Input Variables": "Timuttiyin n unekcum",
|
||||
"Insert": "Ger",
|
||||
"Insert Follow-Up Prompt to Input": "",
|
||||
|
|
@ -801,6 +834,7 @@
|
|||
"Invalid file content": "Agbur n ufaylu d arameɣtu",
|
||||
"Invalid file format.": "Amasal n ufaylu d arameɣtu.",
|
||||
"Invalid JSON file": "Afaylu JSON arameɣtu",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format in Additional Config": "Amasal JSON arameɣtu deg usesteb niḍen",
|
||||
"Invalid Tag": "Tabzimt d tarameɣtut",
|
||||
"is typing...": "yettaru…",
|
||||
|
|
@ -820,12 +854,15 @@
|
|||
"Keep Follow-Up Prompts in Chat": "Kemmel tiwsatin n uḍfaṛ-Up deg Chat",
|
||||
"Keep in Sidebar": "Senṭeḍ-it deg ufeggag n yidis",
|
||||
"Key": "Tasarutt",
|
||||
"Key is required": "",
|
||||
"Keyboard shortcuts": "Inegzumen n unasiw",
|
||||
"Knowledge": "Tamusni",
|
||||
"Knowledge Access": "Anekcum ɣer tmussni",
|
||||
"Knowledge Base": "Taffa n tmusni",
|
||||
"Knowledge created successfully.": "Tamussni tennulfa-d akken iwata.",
|
||||
"Knowledge deleted successfully.": "Tamussni tettwakkes akken iwata.",
|
||||
"Knowledge Description": "",
|
||||
"Knowledge Name": "",
|
||||
"Knowledge Public Sharing": "Beṭṭu azayaz n tmussniwin",
|
||||
"Knowledge reset successfully.": "Tamussni tettuwennez akken iwata.",
|
||||
"Knowledge updated successfully": "Timussniwin ttwaleqqment akken iwata",
|
||||
|
|
@ -865,11 +902,13 @@
|
|||
"Local Task Model": "Tamudemt n temsekrit tadigant",
|
||||
"Location access not allowed": "Anekcum ɣer tuddna",
|
||||
"Lost": "Iruḥ",
|
||||
"Low": "",
|
||||
"LTR": "LTR",
|
||||
"Made by Open WebUI Community": "Texdem-it-id temɣiwant n Open WebUI",
|
||||
"Make password visible in the user interface": "Sken-d awal n uɛeddi deg ugrudem n useqdac",
|
||||
"Make sure to enclose them with": "Ur ttettu ara ad ten-tɣunzuḍ",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Ur ttettumt ara ad tessiǧwemt aman n umahil. afaylu json d amasal API seg ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Sefrek",
|
||||
"Manage Direct Connections": "Sefrek tuqqniwin tusridin",
|
||||
"Manage Models": "Sefrek timudmiwin",
|
||||
|
|
@ -878,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Sefrek tuqqniwin API n OpenAI",
|
||||
"Manage Pipelines": "Sefrek iseldayen",
|
||||
"Manage Tool Servers": "Sefrek iqeddacen n ifecka",
|
||||
"Manage your account information.": "",
|
||||
"March": "Meɣres",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "Ticreḍt (Aqerru)",
|
||||
|
|
@ -886,6 +926,7 @@
|
|||
"Max Upload Size": "Teɣzi tafellayt n uzdam",
|
||||
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum n 3 n tmudmin yezmer ad d-yettwasider seg-a ɣer da. Ttxil-k, ɛreḍ tikkelt niḍen ticki.",
|
||||
"May": "Mayyu",
|
||||
"Medium": "",
|
||||
"Memories accessible by LLMs will be shown here.": "Da ara d-banent teḥkayin ara yaweḍ yiwen ɣer LLMs.",
|
||||
"Memory": "Takatut",
|
||||
"Memory added successfully": "Asmekti yettwarna akken iwata",
|
||||
|
|
@ -921,6 +962,7 @@
|
|||
"Model ID is required.": "Asulay n timudemt yettwasra.",
|
||||
"Model IDs": "Isulayen n tmudmiwin",
|
||||
"Model Name": "Isem n tmudemt",
|
||||
"Model name already exists, please choose a different one": "",
|
||||
"Model Name is required.": "Isem n timudemt yettwasra.",
|
||||
"Model not selected": "Ur tettwafran ara tmudemt",
|
||||
"Model Params": "Iɣewwaren n timudemt",
|
||||
|
|
@ -938,7 +980,9 @@
|
|||
"More": "Ugar",
|
||||
"More Concise": "",
|
||||
"More Options": "Ugar n textiṛiyin",
|
||||
"Move": "",
|
||||
"Name": "Isem",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Mudd isem i taffa-k⋅m n tmussniwin",
|
||||
"Native": "Asrew",
|
||||
"New Button": "Taqeffalt tamaynut",
|
||||
|
|
@ -957,6 +1001,7 @@
|
|||
"No content found": "Ulac agbur yettwafen",
|
||||
"No content found in file.": "Ulac agbur yettwafen sdaxel ufaylu.",
|
||||
"No content to speak": "Ulac ara d-yettwabedren",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Ulac ameccaq yettwafen",
|
||||
"No feedbacks found": "Ulac awennit i yettwafen",
|
||||
"No file selected": "Ulac afaylu i yettwafernen",
|
||||
|
|
@ -973,9 +1018,11 @@
|
|||
"No results found": "Ulac igmaḍ yettwafen",
|
||||
"No search query generated": "Ulac tuttra n unadi yettusirwen",
|
||||
"No source available": "Ulac aɣbalu yettwafen",
|
||||
"No users were found.": "Ulac aqeddac i yettwafen.",
|
||||
"No valves to update": "",
|
||||
"No suggestion prompts": "Ulac isumar n prompt",
|
||||
"No users were found.": "Ulac aqeddac i yettwafen.",
|
||||
"No valves": "",
|
||||
"No valves to update": "",
|
||||
"Node Ids": "",
|
||||
"None": "Ula d yiwen",
|
||||
"Not factually correct": "",
|
||||
"Not helpful": "Ur infiɛ ara",
|
||||
|
|
@ -1026,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "Iɣewwaṛen n API OpenAI",
|
||||
"OpenAI URL/Key required.": "URL/Tasarut OpenAI tettwasra.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "neɣ",
|
||||
"Ordered List": "Tabdart n usmizwer",
|
||||
|
|
@ -1075,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "URL n websocket Playwright",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Ttxil-k·m, sekcem-d aneftaɣ",
|
||||
"Please enter a valid path": "Ttxil-k·m, sekcem-d abrid iṣeḥḥan",
|
||||
"Please enter a valid URL": "Ma ulac aɣilif, sekcem URL tameɣtut",
|
||||
|
|
@ -1085,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Tawwurt",
|
||||
"Positive attitude": "",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Asulay n uzwir yettusexdem i wakken ur d-yettili ara umennuɣ akked tuqqna-nniḍen s tmerna n usewgelhen i yimuhal n tmudemt - eǧǧ-iten d ilmawen i tukksa n tuqqna",
|
||||
"Prevent file creation": "Gmen timerna n ufaylu",
|
||||
|
|
@ -1094,7 +1144,6 @@
|
|||
"Previous message": "Izen udfir",
|
||||
"Private": "Uslig",
|
||||
"Profile": "Amaɣnu",
|
||||
"Profile Image": "Tugna n umaɣnu",
|
||||
"Prompt": "Aneftaɣ",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Aneftaɣ (amedya. Ini-yi-d kra yessedhayen ɣef Temnekda Tarumanit)",
|
||||
"Prompt Autocompletion": "Asmad awurman n uneftaɣ",
|
||||
|
|
@ -1147,16 +1196,16 @@
|
|||
"Reranking Model": "",
|
||||
"Reset": "Wennez",
|
||||
"Reset All Models": "Ales akk timudmiwin",
|
||||
"Reset Image": "Ales awennez n tugna",
|
||||
"Reset Upload Directory": "Wennez akaram n uzdam",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "Wennez askan",
|
||||
"Reset Image": "Ales awennez n tugna",
|
||||
"Response": "Tiririt",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Ilɣa n tririt ur zmiren ara ad ttwasremden imi ugin ttesriḥat n usmel web. Ttxil-k, rzu ɣef yiɣewwaren-ik n yiminig akken ad tkecmeḍ ɣer wayen ilaqen.",
|
||||
"Response splitting": "Beṭṭu n tririt",
|
||||
"Response Watermark": "Ticreḍt tafrawant n tririt",
|
||||
"RESULT": "Agmuḍ",
|
||||
"Result": "Agmuḍ",
|
||||
"RESULT": "Agmuḍ",
|
||||
"Retrieval": "Anadi",
|
||||
"Retrieval Query Generation": "Asirew n tuttra n RAG",
|
||||
"Rich Text Input for Chat": "Aḍris anesbaɣur",
|
||||
|
|
@ -1172,12 +1221,14 @@
|
|||
"Save & Create": "Sekles rnu snulfu-d",
|
||||
"Save & Update": "Sekles rnu leqqem",
|
||||
"Save As Copy": "Sekles d anɣal",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Sekles tabzimt",
|
||||
"Saved": "Yettwasekles",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "",
|
||||
"Scroll On Branch Change": "Abeddel n Branch",
|
||||
"Search": "Nadi",
|
||||
"Search a model": "Nadi tamudemt",
|
||||
"Search all emojis": "",
|
||||
"Search Base": "Taffa n unadi",
|
||||
"Search Chats": "Nadi idiwenniyen",
|
||||
"Search Collection": "Nadi talkensit",
|
||||
|
|
@ -1207,18 +1258,32 @@
|
|||
"See readme.md for instructions": "Ẓer taɣuṛi i lewṣaya",
|
||||
"See what's new": "Wali d acu i yellan d amaynut",
|
||||
"Seed": "Seed",
|
||||
"Select": "",
|
||||
"Select a base model": "Fren tamudemt azadur",
|
||||
"Select a base model (e.g. llama3, gpt-4o)": "",
|
||||
"Select a conversation to preview": "Fren adiwenni i teskant",
|
||||
"Select a engine": "Fren amsedday",
|
||||
"Select a function": "Fren tasɣent",
|
||||
"Select a group": "Fren agraw",
|
||||
"Select a language": "",
|
||||
"Select a mode": "",
|
||||
"Select a model": "Fren tamudemt",
|
||||
"Select a model (optional)": "",
|
||||
"Select a pipeline": "Fren aselda",
|
||||
"Select a pipeline url": "Fren tansa URL n uselda",
|
||||
"Select a reranking model engine": "",
|
||||
"Select a role": "",
|
||||
"Select a theme": "",
|
||||
"Select a tool": "Fren afecku",
|
||||
"Select a voice": "",
|
||||
"Select an auth method": "Fren tarrayt n diri",
|
||||
"Select an embedding model engine": "",
|
||||
"Select an engine": "",
|
||||
"Select an Ollama instance": "Fren amedya Ollama",
|
||||
"Select an output format": "",
|
||||
"Select dtype": "",
|
||||
"Select Engine": "Fren amsadday",
|
||||
"Select how to split message text for TTS requests": "",
|
||||
"Select Knowledge": "Fren tamusni",
|
||||
"Select only one model to call": "",
|
||||
"Selected model(s) do not support image inputs": "Ammud(s) yettwafernen ur yessefrak ara inekcamen n tugniwin yettwafernen",
|
||||
|
|
@ -1235,6 +1300,7 @@
|
|||
"Serply API Key": "Tasarut API n Serply",
|
||||
"Serpstack API Key": "Tasarut API n Serpstack",
|
||||
"Server connection verified": "Tuqqna ɣer uqeddac, tettwasenqed",
|
||||
"Session": "",
|
||||
"Set as default": "Sbadu-t d amezwaru",
|
||||
"Set CFG Scale": "Sbadu asefran CFG",
|
||||
"Set Default Model": "Sbadu tamudemt tamezwart",
|
||||
|
|
@ -1260,6 +1326,7 @@
|
|||
"Share": "Bḍu",
|
||||
"Share Chat": "Bḍu asqerdec",
|
||||
"Share to Open WebUI Community": "Bḍu i tkebbanit WebUI yeldin",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Tisirag n beṭṭu",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Sken-d",
|
||||
|
|
@ -1285,6 +1352,12 @@
|
|||
"sk-1234": "sk-1234",
|
||||
"Skip Cache": "Ur sseqdac ara tuffirt",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Seqcer aṭaksi-nni, tɛawdeḍ-as assefreg. Imezwura ɣer False.",
|
||||
"Something went wrong :/": "",
|
||||
"Sonar": "",
|
||||
"Sonar Deep Research": "",
|
||||
"Sonar Pro": "",
|
||||
"Sonar Reasoning": "",
|
||||
"Sonar Reasoning Pro": "",
|
||||
"Sougou Search API sID": "Asulay API n Sougou Search (sID)",
|
||||
"Sougou Search API SK": "Tasarut tuffirt n API Sougou Search (SK)",
|
||||
"Source": "Aɣbalu",
|
||||
|
|
@ -1293,6 +1366,7 @@
|
|||
"Speech-to-Text": "Aɛqal n taɣect",
|
||||
"Speech-to-Text Engine": "Amsadday n uɛqal n taɣect",
|
||||
"Start of the channel": "Tazwara n wabadu",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Seḥbes",
|
||||
"Stop Generating": "Seḥbes asirew",
|
||||
"Stop Sequence": "Tagzemt n uḥbas",
|
||||
|
|
@ -1301,12 +1375,12 @@
|
|||
"Strikethrough": "Yettujerreḍ",
|
||||
"Strip Existing OCR": "Kkes ORC i yellan",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Sfeḍ aḍris OCR yellan yakan seg PDF akked OCR i d-yettuɣalen. Ur ttettu ara ma yella Force OCR tettwarmed. Imezwura ɣer False.",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Tamudemt n uɛqal n taɣect",
|
||||
"STT Settings": "Iɣewwaren n uɛqal n tavect",
|
||||
"Stylized PDF Export": "",
|
||||
"Subtitle (e.g. about the Roman Empire)": "Addad amaruz (amedya ɣef tgelda Tarumanit)",
|
||||
"Success": "Yedda",
|
||||
"Successfully imported {{userCount}} users.": "",
|
||||
"Successfully updated.": "Yettwaleqqem akken iwata.",
|
||||
"Suggest a change": "Sumer asenfel",
|
||||
"Suggested": "Yettwasumer-d",
|
||||
|
|
@ -1331,6 +1405,7 @@
|
|||
"Tell us more:": "Ini-aɣ-d ugar:",
|
||||
"Temperature": "Tazɣelt",
|
||||
"Temporary Chat": "Asqerdec akudan",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "Aḍris-ɣer-taɣect",
|
||||
"Text-to-Speech Engine": "Amsadday n TTS",
|
||||
|
|
@ -1349,6 +1424,7 @@
|
|||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Tiddi n ufaylu afellay deg MB. Ma yella teɣzi n ufaylu tɛedda i talast-a, afaylu ur yettali ara.",
|
||||
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Amḍan afellay n yifuyla i izemren ad ttwasqedcen ɣef tikkelt deg udiwenni. Ma yella amḍan n yifuyla iɛedda i talast-a, ifuyla ur ttalin ara.",
|
||||
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Amasal n tuffɣa i uḍris. Tzemreḍ ad tiliḍ d 'json', d 'markdown' neɣ d 'html'. Imezwura ɣer 'markdown'.",
|
||||
"The passwords you entered don't quite match. Please double-check and try again.": "",
|
||||
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "",
|
||||
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
|
||||
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Taẓɣelt n tmudemt. Asenqes n teẓɣelt ad yerr tamudemt d tiririt s tesɣent ugar.",
|
||||
|
|
@ -1462,13 +1538,13 @@
|
|||
"Upload Files": "Sali-d ifuyla",
|
||||
"Upload Pipeline": "Aselda n uɛebbi",
|
||||
"Upload Progress": "",
|
||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
||||
"URL": "URL",
|
||||
"URL is required": "",
|
||||
"URL Mode": "Askar n URL",
|
||||
"Usage": "Aseqdec",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "Seqdec Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "",
|
||||
"Use LLM": "Seqdec LLM",
|
||||
"Use no proxy to fetch page contents.": "Ur sseqdacet ara ayen yellan deg usebter apṛuksi.",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Seqdec proxy i d-yesnulfa http_proxy akked https_proxy environment variables to fetch page contents.",
|
||||
|
|
@ -1484,6 +1560,7 @@
|
|||
"Using Focused Retrieval": "Aseqdec n Retrieval yeslummes",
|
||||
"Using the default arena model with all models. Click the plus button to add custom models.": "Aseqdec n tmudemt n uzna amezwer s yal timudmin. Tekki ɣef tqeffalt-nni n tmerniwt akken ad ternuḍ timudmin tinsayanin.",
|
||||
"Valid time units:": "Tigget n wakud ameɣtu:",
|
||||
"Validate certificate": "",
|
||||
"Valves": "",
|
||||
"Valves updated": "",
|
||||
"Valves updated successfully": "Valves ttwaleqmen akken iwata",
|
||||
|
|
@ -1526,6 +1603,7 @@
|
|||
"Whisper (Local)": "Whisper (adigan)",
|
||||
"Why?": "Ayɣer?",
|
||||
"Widescreen Mode": "Askar n ugdil aččuran",
|
||||
"Width": "",
|
||||
"Won": "Yerbaḥ",
|
||||
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "",
|
||||
"Workspace": "Tamnaḍṭ n umahil",
|
||||
|
|
@ -1534,6 +1612,7 @@
|
|||
"Write a prompt suggestion (e.g. Who are you?)": "Aru-d assumer i d-yeffɣen s tɣawla (amedya, anwa-k?)",
|
||||
"Write a summary in 50 words that summarizes [topic or keyword].": "Aru agzul s 50 n wawalen i yessewzalen [asefru neɣ tasarut].",
|
||||
"Write something...": "Aru kra…",
|
||||
"Write your model system prompt content here\ne.g.) You are Mario from Super Mario Bros, acting as an assistant.": "",
|
||||
"Yacy Instance URL": "URL n tummant Yacy",
|
||||
"Yacy Password": "Awal n uɛeddi n Yacy",
|
||||
"Yacy Username": "Isem n useqdac Yacy",
|
||||
|
|
@ -1548,6 +1627,7 @@
|
|||
"You have shared this chat": "Tebḍiḍ aqesosoer-a",
|
||||
"You're a helpful assistant.": "Kečč d amalal yettallen.",
|
||||
"You're now logged in.": "Aql-ik teqqned imir-a.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Addad-nnem n umiḍan atan yettṛaju armad.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
|
||||
"Youtube": "YouTube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 기본 URL 설정이 필요합니다.",
|
||||
"Available list": "가능한 목록",
|
||||
"Available Tools": "사용 가능한 도구",
|
||||
"available!": "사용 가능!",
|
||||
"available users": "사용 가능 사용자",
|
||||
"available!": "사용 가능!",
|
||||
"Away": "자리 비움",
|
||||
"Awful": "형편없음",
|
||||
"Azure AI Speech": "Azure AI 음성",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "베타",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7 엔드포인트",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 구독 키",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "BM25 가중치",
|
||||
"Bocha Search API Key": "Bocha Search API 키",
|
||||
"Bold": "굵게",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "채팅 제어",
|
||||
"Chat direction": "채팅 방향",
|
||||
"Chat ID": "채팅 ID",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "채팅",
|
||||
"Chat Permissions": "채팅 권한",
|
||||
"Chat Tags Auto-Generation": "채팅 태그 자동생성",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "생성된 텍스트에서 토큰 시퀀스의 반복을 제어합니다. 높은 값(예: 1.5)은 반복에 더 강한 페널티를 부과하고, 낮은 값(예: 1.1)은 더 관대합니다. 1일 경우 비활성화됩니다.",
|
||||
"Controls": "제어",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "출력의 일관성과 다양성 간의 균형을 제어합니다. 낮은 값은 더 집중되고 일관성 있는 텍스트를 생성합니다.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "복사됨",
|
||||
"Copied link to clipboard": "클립보드에 링크가 복사되었습니다",
|
||||
"Copied shared chat URL to clipboard!": "채팅 공유 URL이 클립보드에 복사되었습니다!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "문서",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "외부와 어떠한 연결도 하지 않으며, 데이터는 로컬에서 호스팅되는 서버에 안전하게 유지됩니다.",
|
||||
"Domain Filter List": "도메인 필터 목록",
|
||||
"don't fetch random pipelines from sources you don't trust.": "신뢰하지 않는 출처에서 임의의 파이프라인을 가져오지 마세요.",
|
||||
"Don't have an account?": "계정이 없으신가요?",
|
||||
"don't install random functions from sources you don't trust.": "불분명한 출처를 가진 임의의 함수를 설치하지마세요",
|
||||
"don't install random tools from sources you don't trust.": "불분명한 출처를 가진 임의의 도구를 설치하지마세요",
|
||||
"don't fetch random pipelines from sources you don't trust.": "신뢰하지 않는 출처에서 임의의 파이프라인을 가져오지 마세요.",
|
||||
"Don't like the style": "스타일이 마음에 안 드시나요?",
|
||||
"Done": "완료됨",
|
||||
"Download": "다운로드",
|
||||
"Download & Delete": "다운로드 및 삭제",
|
||||
"Download as SVG": "SVG로 다운로드",
|
||||
"Download canceled": "다운로드 취소",
|
||||
"Download Database": "데이터베이스 다운로드",
|
||||
"Download & Delete": "다운로드 및 삭제",
|
||||
"Drag and drop a file to upload or select a file to view": "파일을 끌어다 놓아 업로드하거나 파일을 선택하여 보기",
|
||||
"Draw": "그리기",
|
||||
"Drop any files here to upload": "여기에 파일을 끌어다 놓아 업로드하세요",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Google PSE API 키 입력",
|
||||
"Enter Google PSE Engine Id": "Google PSE 엔진 ID 입력",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "이미지 크기 입력(예: 512x512)",
|
||||
"Enter Jina API Key": "Jina API 키 입력",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "JSON 설정 입력 (예: {\"disable_links\": true})",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "Yacy 비밀번호 입력",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Yacy URL 입력(예: http://yacy.example.com:8090)",
|
||||
"Enter Yacy Username": "Yacy 사용자 이름 입력",
|
||||
"Enter your code here...": "여기에 코드를 입력하세요...",
|
||||
"Enter your current password": "현재 비밀번호를 입력해 주세요",
|
||||
"Enter Your Email": "이메일 입력",
|
||||
"Enter Your Full Name": "전체 이름 입력",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "메세지 입력",
|
||||
"Enter your name": "이름 입력",
|
||||
"Enter Your Name": "이름 입력",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "역할 입력",
|
||||
"Enter Your Username": "사용자 이름 입력",
|
||||
"Enter your webhook URL": "웹훅 URL을 입력해 주세요",
|
||||
"Enter your code here...": "여기에 코드를 입력하세요...",
|
||||
"Error": "오류",
|
||||
"ERROR": "오류",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "제목 생성 실패",
|
||||
"Failed to load chat preview": "채팅 미리보기 로드 실패",
|
||||
"Failed to load file content.": "파일 내용 로드 실패.",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "클립보드 내용 가져오기를 실패하였습니다.",
|
||||
"Failed to save connections": "연결 저장 실패",
|
||||
"Failed to save conversation": "대화 저장 실패",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "피드백 기록",
|
||||
"Feedbacks": "피드백",
|
||||
"Feel free to add specific details": "자세한 내용을 자유롭게 추가하세요.",
|
||||
"Female": "",
|
||||
"File": "파일",
|
||||
"File added successfully.": "파일이 성공적으로 추가되었습니다",
|
||||
"File content updated successfully.": "내용이 성공적으로 업데이트되었습니다",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Gemini API 구성",
|
||||
"Gemini API Key is required.": "Gemini API 키가 필요합니다.",
|
||||
"Gender": "",
|
||||
"General": "일반",
|
||||
"Generate": "생성",
|
||||
"Generate an image": "이미지 생성",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "구글 드라이브",
|
||||
"Google PSE API Key": "Google PSE API 키",
|
||||
"Google PSE Engine Id": "Google PSE 엔진 ID",
|
||||
"Gravatar": "",
|
||||
"Group": "그룹",
|
||||
"Group created successfully": "성공적으로 그룹을 생성했습니다",
|
||||
"Group deleted successfully": "성공적으로 그룹을 삭제했습니다",
|
||||
"Group Description": "그룹 설명",
|
||||
"Group Name": "그룹 명",
|
||||
"Group": "그룹",
|
||||
"Group updated successfully": "성공적으로 그룹을 수정했습니다",
|
||||
"Groups": "그룹",
|
||||
"H1": "제목 1",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "도구 가져오기",
|
||||
"Important Update": "중요 업데이트",
|
||||
"Include": "포함",
|
||||
"Includes SharePoint": "SharePoint 포함",
|
||||
"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` 플래그를 포함하세요",
|
||||
"Includes SharePoint": "SharePoint 포함",
|
||||
"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": "정보",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "전체 콘텐츠를 포괄적인 처리를 위해 컨텍스트로 삽입하세요. 이는 복잡한 쿼리에 권장됩니다.",
|
||||
"Input": "입력",
|
||||
"Input commands": "명령어 입력",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "비밀번호 보이기",
|
||||
"Make sure to enclose them with": "꼭 다음으로 감싸세요:",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "꼭 workflow.json 파일을 ComfyUI의 API 형식대로 내보내세요",
|
||||
"Male": "",
|
||||
"Manage": "관리",
|
||||
"Manage Direct Connections": "다이렉트 연결 관리",
|
||||
"Manage Models": "모델 관리",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "OpenAI API 연결 관리",
|
||||
"Manage Pipelines": "파이프라인 관리",
|
||||
"Manage Tool Servers": "도구 서버 관리",
|
||||
"Manage your account information.": "",
|
||||
"March": "3월",
|
||||
"Markdown": "마크다운",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "더보기",
|
||||
"More Concise": "더 간결하게",
|
||||
"More Options": "추가 설정",
|
||||
"Move": "",
|
||||
"Name": "이름",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "지식 기반 이름을 지정하세요",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "내용을 찾을 수 없음",
|
||||
"No content found in file.": "파일에서 내용을 찾을 수 없습니다.",
|
||||
"No content to speak": "음성 출력할 내용을 찾을 수 없음",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "거리 불가능",
|
||||
"No feedbacks found": "피드백 없음",
|
||||
"No file selected": "파일이 선택되지 않음",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "결과 없음",
|
||||
"No search query generated": "검색어가 생성되지 않았습니다.",
|
||||
"No source available": "사용 가능한 소스가 없습니다.",
|
||||
"No suggestion prompts": "추천 프롬프트가 없습니다",
|
||||
"No users were found.": "사용자를 찾을 수 없습니다.",
|
||||
"No valves": "",
|
||||
"No valves to update": "업데이트 할 밸브가 없습니다.",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "추천 프롬프트가 없습니다",
|
||||
"None": "없음",
|
||||
"Not factually correct": "사실상 맞지 않음",
|
||||
"Not helpful": "도움이 되지않음",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "OpenAI API 설정이 업데이트되었습니다.",
|
||||
"OpenAI URL/Key required.": "OpenAI URL/키가 필요합니다.",
|
||||
"openapi.json URL or Path": "openapi.json URL 또는 경로",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "이미지 설명을 위해 로컬 시각-언어 모델을 실행하는 옵션입니다. 이 매개변수들은 Hugging Face에서 호스팅되는 모델을 대상으로 합니다. 이 옵션은 picture_description_api와 상호 배타적입니다.",
|
||||
"or": "또는",
|
||||
"Ordered List": "번호 목록",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "Playwright WebSocket URL",
|
||||
"Please carefully review the following warnings:": "다음 주의를 조심히 확인해주십시오",
|
||||
"Please do not close the settings page while loading the model.": "모델을 로드하는 동안 설정 페이지를 닫지 마세요.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "프롬프트를 입력해주세요",
|
||||
"Please enter a valid path": "유효한 경로를 입력하세요",
|
||||
"Please enter a valid URL": "유효한 URL을 입력하세요",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "모든 파일이 업로드될 때까지 기다려 주세요.",
|
||||
"Port": "포트",
|
||||
"Positive attitude": "긍정적인 자세",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Prefix ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID는 모델 ID에 접두사를 추가하여 다른 연결과의 충돌을 방지하는 데 사용됩니다. - 비활성화하려면 비워 둡니다.",
|
||||
"Prevent file creation": "파일 생성 방지",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "이전 메시지",
|
||||
"Private": "비공개",
|
||||
"Profile": "프로필",
|
||||
"Profile Image": "프로필 이미지",
|
||||
"Prompt": "프롬프트",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "프롬프트 (예: 로마 황제에 대해 재미있는 사실을 알려주세요)",
|
||||
"Prompt Autocompletion": "프롬프트 자동 완성",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Reranking 모델",
|
||||
"Reset": "초기화",
|
||||
"Reset All Models": "모든 모델 초기화",
|
||||
"Reset Image": "이미지 초기화",
|
||||
"Reset Upload Directory": "업로드 디렉토리 초기화",
|
||||
"Reset Vector Storage/Knowledge": "벡터 저장 공간/지식 기반 초기화",
|
||||
"Reset view": "보기 초기화",
|
||||
"Reset Image": "이미지 초기화",
|
||||
"Response": "응답",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "웹사이트 권한이 거부되어 응답 알림을 활성화할 수 없습니다. 필요한 접근 권한을 부여하려면 브라우저 설정을 확인해 주세요.",
|
||||
"Response splitting": "응답 나누기",
|
||||
"Response Watermark": "응답 워터마크",
|
||||
"RESULT": "결과",
|
||||
"Result": "결과",
|
||||
"RESULT": "결과",
|
||||
"Retrieval": "검색",
|
||||
"Retrieval Query Generation": "검색 쿼리 생성",
|
||||
"Rich Text Input for Chat": "다양한 텍스트 서식 사용",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "저장 및 생성",
|
||||
"Save & Update": "저장 및 업데이트",
|
||||
"Save As Copy": "다른 이름으로 저장",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "태그 저장",
|
||||
"Saved": "저장됨",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "브라우저의 저장소에 채팅 로그를 직접 저장하는 것은 더 이상 지원되지 않습니다. 아래 버튼을 클릭하여 채팅 로그를 다운로드하고 삭제하세요. 걱정 마세요. 백엔드를 통해 채팅 로그를 쉽게 다시 가져올 수 있습니다.",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "공유",
|
||||
"Share Chat": "채팅 공유",
|
||||
"Share to Open WebUI Community": "OpenWebUI 커뮤니티에 공유",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "권한 공유",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "별표(*) 단축키는 특정 조건에서만 활성화됩니다.",
|
||||
"Show": "보기",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "음성-텍스트 변환",
|
||||
"Speech-to-Text Engine": "음성-텍스트 변환 엔진",
|
||||
"Start of the channel": "채널 시작",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "정지",
|
||||
"Stop Generating": "생성 중지",
|
||||
"Stop Sequence": "중지 시퀀스",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "취소선",
|
||||
"Strip Existing OCR": "기존 OCR 제거",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "PDF에서 기존 OCR 텍스트를 제거하고 OCR을 다시 실행합니다. Force OCR이 활성화된 경우 무시됩니다. 기본값은 False입니다.",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "STT 모델",
|
||||
"STT Settings": "STT 설정",
|
||||
"Stylized PDF Export": "서식이 적용된 PDF 내보내기",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "더 알려주세요:",
|
||||
"Temperature": "온도",
|
||||
"Temporary Chat": "임시 채팅",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "텍스트 나누기",
|
||||
"Text-to-Speech": "텍스트-음성 변환",
|
||||
"Text-to-Speech Engine": "텍스트-음성 변환 엔진",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL 모드",
|
||||
"Usage": "사용량",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "프롬프트 입력에서 '#'를 사용하여 지식 기반을 불러오고 포함하세요.",
|
||||
"Use Gravatar": "Gravatar 사용",
|
||||
"Use groups to group your users and assign permissions.": "그룹을 사용하여 사용자를 그룹화하고 권한을 할당하세요.",
|
||||
"Use Initials": "초성 사용",
|
||||
"Use LLM": "LLM 사용",
|
||||
"Use no proxy to fetch page contents.": "페이지 콘텐츠를 가져오려면 프록시를 사용하지 마세요.",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "http_proxy 및 https_proxy 환경 변수로 지정된 프록시를 사용하여 페이지 콘텐츠를 가져옵니다.",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "이 채팅을 공유했습니다.",
|
||||
"You're a helpful assistant.": "당신은 유용한 어시스턴트입니다.",
|
||||
"You're now logged in.": "로그인되었습니다.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "현재 계정은 아직 활성화되지 않았습니다.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "당신의 모든 기여는 곧바로 플러그인 개발자에게 갑니다; Open WebUI는 수수료를 받지 않습니다. 다만, 선택한 후원 플랫폼은 수수료를 가져갈 수 있습니다.",
|
||||
"Youtube": "유튜브",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 bazės nuoroda reikalinga.",
|
||||
"Available list": "",
|
||||
"Available Tools": "",
|
||||
"available!": "prieinama!",
|
||||
"available users": "galimi naudotojai",
|
||||
"available!": "prieinama!",
|
||||
"Away": "Išvykęs",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Pokalbio valdymas",
|
||||
"Chat direction": "Pokalbio linkmė",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "Valdymas",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Nukopijuota",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "Nukopijavote pokalbio nuorodą",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Dokumentai",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "neturi jokių išorinių ryšių ir duomenys lieka serveryje.",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Neatsisiųskite atsitiktinių pipelines iš nepatikimų šaltinių.",
|
||||
"Don't have an account?": "Neturite paskyros?",
|
||||
"don't install random functions from sources you don't trust.": "neinstaliuokite funkcijų iš nepatikimų šaltinių",
|
||||
"don't install random tools from sources you don't trust.": "neinstaliuokite įrankių iš nepatikimų šaltinių",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Neatsisiųskite atsitiktinių pipelines iš nepatikimų šaltinių.",
|
||||
"Don't like the style": "Nepatinka stilius",
|
||||
"Done": "Atlikta",
|
||||
"Download": "Parsisiųsti",
|
||||
"Download & Delete": "Atsisiųsti ir ištrinti",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "Parsisiuntimas atšauktas",
|
||||
"Download Database": "Parsisiųsti duomenų bazę",
|
||||
"Download & Delete": "Atsisiųsti ir ištrinti",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Įveskite Google PSE API raktą",
|
||||
"Enter Google PSE Engine Id": "Įveskite Google PSE variklio ID",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Įveskite paveiksliuko dydį (pvz. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Įveskite savo kodą čia...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "Įveskite el. pašto adresą",
|
||||
"Enter Your Full Name": "Įveskite vardą bei pavardę",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Įveskite žinutę",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Įveskite savo rolę",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "Įveskite savo kodą čia...",
|
||||
"Error": "Klaida",
|
||||
"ERROR": "",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Nepavyko perskaityti kopijuoklės",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Nepavyko išsaugoti pokalbio",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "Galite pridėti specifinių detalių",
|
||||
"Female": "",
|
||||
"File": "Rinkmena",
|
||||
"File added successfully.": "",
|
||||
"File content updated successfully.": "",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "Bendri",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "Google PSE API raktas",
|
||||
"Google PSE Engine Id": "Google PSE variklio ID",
|
||||
"Gravatar": "",
|
||||
"Group": "Grupė",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group": "Grupė",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Importuoti įrankius",
|
||||
"Important Update": "Svarbus atnaujinimas",
|
||||
"Include": "",
|
||||
"Includes SharePoint": "Įtraukiamas SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Įtraukiamas SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "Įvesties komandos",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Užtikrinktie, kad įtraukiate viduje:",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "Tvarkyti",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Tvarkyti procesus",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "Kovas",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Daugiau",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Pavadinimas",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "Nėra turinio kalbėjimui",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "",
|
||||
"No feedbacks found": "",
|
||||
"No file selected": "Nėra pasirinktų dokumentų",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Rezultatų nerasta",
|
||||
"No search query generated": "Paieškos užklausa nesugeneruota",
|
||||
"No source available": "Šaltinių nerasta",
|
||||
"No suggestion prompts": "Nėra siūlomų raginimų",
|
||||
"No users were found.": "",
|
||||
"No valves": "",
|
||||
"No valves to update": "Nėra atnaujinamų įeičių",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Nėra siūlomų raginimų",
|
||||
"None": "Nėra",
|
||||
"Not factually correct": "Faktiškai netikslu",
|
||||
"Not helpful": "",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "OpenAI API nuoroda ir raktas būtini",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "arba",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Peržiūrėkite šiuos perspėjimus:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "Pozityvus elgesys",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "Profilis",
|
||||
"Profile Image": "Profilio nuotrauka",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Užklausa (pvz. supaprastink šį laišką)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Reranking modelis",
|
||||
"Reset": "Atkurti",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "Atstatyti vaizdą",
|
||||
"Reset Upload Directory": "Atkurti įkėlimų direktoiją",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "",
|
||||
"Reset Image": "Atstatyti vaizdą",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Naršyklė neleidžia siųsti pranešimų",
|
||||
"Response splitting": "",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "REZULTATAS",
|
||||
"Result": "",
|
||||
"RESULT": "REZULTATAS",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Išsaugoti ir sukurti",
|
||||
"Save & Update": "Išsaugoti ir atnaujinti",
|
||||
"Save As Copy": "",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Išsaugoti žymą",
|
||||
"Saved": "",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Pokalbių saugojimas naršyklėje nebegalimas.",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Dalintis",
|
||||
"Share Chat": "Dalintis pokalbiu",
|
||||
"Share to Open WebUI Community": "Dalintis su OpenWebUI bendruomene",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Rodyti",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Balso atpažinimo modelis",
|
||||
"Start of the channel": "Kanalo pradžia",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Baigt sekvenciją",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "STT modelis",
|
||||
"STT Settings": "STT nustatymai",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Papasakokite daugiau",
|
||||
"Temperature": "Temperatūra",
|
||||
"Temporary Chat": "",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Balso sintezės modelis",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL režimas",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "Naudoti Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "Naudotojo inicialai",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Pasidalinote šiuo pokalbiu",
|
||||
"You're a helpful assistant.": "Esi asistentas.",
|
||||
"You're now logged in.": "Esate prisijungę.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Jūsų paskyra laukia administratoriaus patvirtinimo.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Jūsų finansinis prisidėjimas tiesiogiai keliaus modulio kūrėjui.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "URL Asas AUTOMATIC1111 diperlukan.",
|
||||
"Available list": "",
|
||||
"Available Tools": "",
|
||||
"available!": "tersedia!",
|
||||
"available users": "pengguna tersedia",
|
||||
"available!": "tersedia!",
|
||||
"Away": "Tiada di tempat",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Kawalan Perbualan",
|
||||
"Chat direction": "Arah Perbualan",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "Kawalan",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Disalin",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "Menyalin URL sembang kongsi ke papan klip",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Dokumen",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "tidak membuat sebarang sambungan luaran, dan data anda kekal selamat pada pelayan yang dihoskan ditempat anda",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Jangan ambil pipeline rawak daripada sumber yang anda tidak percayai.",
|
||||
"Don't have an account?": "Anda tidak mempunyai akaun?",
|
||||
"don't install random functions from sources you don't trust.": "jangan pasang mana-mana fungsi daripada sumber yang anda tidak percayai.",
|
||||
"don't install random tools from sources you don't trust.": "jangan pasang mana-mana alat daripada sumber yang anda tidak percayai.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Jangan ambil pipeline rawak daripada sumber yang anda tidak percayai.",
|
||||
"Don't like the style": "Tidak suka gaya ini",
|
||||
"Done": "Selesai",
|
||||
"Download": "Muat Turun",
|
||||
"Download & Delete": "Muat turun & Padam",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "Muat Turun dibatalkan",
|
||||
"Download Database": "Muat turun Pangkalan Data",
|
||||
"Download & Delete": "Muat turun & Padam",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Masukkan kunci API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Masukkan Id Enjin Google PSE",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Masukkan Saiz Imej (cth 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Masukkan kod anda di sini...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "Masukkan E-mel Anda",
|
||||
"Enter Your Full Name": "Masukkan Nama Penuh Anda",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Masukkan mesej anda",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Masukkan Peranan Anda",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "Masukkan kod anda di sini...",
|
||||
"Error": "Ralat",
|
||||
"ERROR": "",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Gagal membaca konten papan klip",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Gagal menyimpan perbualan",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "Jangan ragu untuk menambah butiran khusus",
|
||||
"Female": "",
|
||||
"File": "Fail",
|
||||
"File added successfully.": "",
|
||||
"File content updated successfully.": "",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "Umum",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "Kunci API Google PSE",
|
||||
"Google PSE Engine Id": "ID Enjin Google PSE",
|
||||
"Gravatar": "",
|
||||
"Group": "Kumpulan",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group": "Kumpulan",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Import Alat",
|
||||
"Important Update": "Kemas kini penting",
|
||||
"Include": "",
|
||||
"Includes SharePoint": "Termasuk SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Termasuk SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "Masukkan Arahan",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Pastikan untuk melampirkannya dengan",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "Urus",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Urus 'Pipelines'",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "Mac",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Lagi",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Nama",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "Tiada kandungan untuk bercakap",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "",
|
||||
"No feedbacks found": "",
|
||||
"No file selected": "Tiada fail dipilih",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Tiada keputusan dijumpai",
|
||||
"No search query generated": "Tiada pertanyaan carian dijana",
|
||||
"No source available": "Tiada sumber tersedia",
|
||||
"No suggestion prompts": "Tiada prompt cadangan",
|
||||
"No users were found.": "",
|
||||
"No valves": "",
|
||||
"No valves to update": "Tiada 'valve' untuk dikemas kini",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Tiada prompt cadangan",
|
||||
"None": "Tiada",
|
||||
"Not factually correct": "Tidak tepat secara fakta",
|
||||
"Not helpful": "",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "URL/Kekunci OpenAI diperlukan",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "atau",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Sila semak dengan teliti amaran berikut:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "Sikap positif",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "Profil",
|
||||
"Profile Image": "Imej Profail",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Gesaan (cth Beritahu saya fakta yang menyeronokkan tentang Kesultanan Melaka)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Model 'Reranking'",
|
||||
"Reset": "Tetapkan Semula",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "Tetapkan Semula Imej",
|
||||
"Reset Upload Directory": "Tetapkan Semula Direktori Muat Naik",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "",
|
||||
"Reset Image": "Tetapkan Semula Imej",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Pemberitahuan respons tidak boleh diaktifkan kerana kebenaran tapak web tidak diberi. Sila lawati tetapan pelayar web anda untuk memberikan akses yang diperlukan.",
|
||||
"Response splitting": "",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "KEPUTUSAN",
|
||||
"Result": "",
|
||||
"RESULT": "KEPUTUSAN",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Simpan & Cipta",
|
||||
"Save & Update": "Simpan & Kemas Kini",
|
||||
"Save As Copy": "",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Simpan Tag",
|
||||
"Saved": "",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Penyimpanan log perbualan terus ke storan pelayan web anda tidak lagi disokong. Sila luangkan sedikit masa untuk memuat turun dan memadam log perbualan anda dengan mengklik butang di bawah. Jangan risau, anda boleh mengimport semula log perbualan anda dengan mudah melalui 'backend'",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Kongsi",
|
||||
"Share Chat": "Kongsi Perbualan",
|
||||
"Share to Open WebUI Community": "Kongsi kepada Komuniti OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Tunjukkan",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Enjin Ucapan-ke-Teks",
|
||||
"Start of the channel": "Permulaan saluran",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Jujukan Henti",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Model STT",
|
||||
"STT Settings": "Tetapan STT",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Beritahu kami lebih lanjut",
|
||||
"Temperature": "Suhu",
|
||||
"Temporary Chat": "",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Enjin Teks-ke-Ucapan",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Mod URL",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "Gunakan Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "Gunakan nama pendek",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Anda telah berkongsi perbualan ini",
|
||||
"You're a helpful assistant.": "Anda seorang pembantu yang bagus",
|
||||
"You're now logged in.": "Anda kini telah log masuk.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Status akaun anda ialah sedang menunggu pengaktifan.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Seluruh sumbangan anda akan dihantar terus kepada pembangun 'plugin'; Open WebUI tidak mengambil sebarang peratusan keuntungan daripadanya. Walau bagaimanapun, platform pembiayaan yang dipilih mungkin mempunyai caj tersendiri.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "Absolutt URL for AUTOMATIC1111 kreves.",
|
||||
"Available list": "Tilgjengelig liste",
|
||||
"Available Tools": "",
|
||||
"available!": "tilgjengelig!",
|
||||
"available users": "tilgjengelige brukere",
|
||||
"available!": "tilgjengelig!",
|
||||
"Away": "Borte",
|
||||
"Awful": "Fælt",
|
||||
"Azure AI Speech": "Azure AI-tale",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Endepunkt for Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Abonnementsnøkkel for Bing Search V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "API-nøkkel for Bocha Search",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Kontrollere i chat",
|
||||
"Chat direction": "Retning på chat",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Chatoversikt",
|
||||
"Chat Permissions": "Tillatelser for chat",
|
||||
"Chat Tags Auto-Generation": "Auto-generering av chatetiketter",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "Kontroller",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Kopiert",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "Kopierte delt chat-URL til utklippstavlen!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Dokumenter",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "ikke ingen tilkobling til eksterne tjenester. Dataene dine forblir sikkert på den lokale serveren.",
|
||||
"Domain Filter List": "Liste over domenefiltre",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ikke hent tilfeldige pipelines fra kilder du ikke stoler på.",
|
||||
"Don't have an account?": "Har du ingen konto?",
|
||||
"don't install random functions from sources you don't trust.": "ikke installer tilfeldige funksjoner fra kilder du ikke stoler på.",
|
||||
"don't install random tools from sources you don't trust.": "ikke installer tilfeldige verktøy fra kilder du ikke stoler på.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ikke hent tilfeldige pipelines fra kilder du ikke stoler på.",
|
||||
"Don't like the style": "Liker ikke stilen",
|
||||
"Done": "Ferdig",
|
||||
"Download": "Last ned",
|
||||
"Download & Delete": "Last ned og slett",
|
||||
"Download as SVG": "Last ned som SVG",
|
||||
"Download canceled": "Nedlasting avbrutt",
|
||||
"Download Database": "Last ned database",
|
||||
"Download & Delete": "Last ned og slett",
|
||||
"Drag and drop a file to upload or select a file to view": "Dra og slipp en fil for å laste den opp, eller velg en fil å vise den",
|
||||
"Draw": "Tegne",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Angi API-nøkkel for Google PSE",
|
||||
"Enter Google PSE Engine Id": "Angi motor-ID for Google PSE",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Angi bildestørrelse (f.eks. 512x512)",
|
||||
"Enter Jina API Key": "Angi API-nøkkel for Jina",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Skriv inn koden din her...",
|
||||
"Enter your current password": "Angi det gjeldende passordet ditt",
|
||||
"Enter Your Email": "Skriv inn e-postadressen din",
|
||||
"Enter Your Full Name": "Skriv inn det fulle navnet ditt",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Skriv inn din melding",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Skriv inn rollen din",
|
||||
"Enter Your Username": "Skriv inn brukernavnet ditt",
|
||||
"Enter your webhook URL": "Angi URL for webhook",
|
||||
"Enter your code here...": "Skriv inn koden din her...",
|
||||
"Error": "Feil",
|
||||
"ERROR": "FEIL",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Kan ikke lese utklippstavlens innhold",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Kan ikke lagre samtalen",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Tilbakemeldingslogg",
|
||||
"Feedbacks": "Tilbakemeldinger",
|
||||
"Feel free to add specific details": "Legg gjerne til bestemte detaljer",
|
||||
"Female": "",
|
||||
"File": "Fil",
|
||||
"File added successfully.": "Filen er lagt til.",
|
||||
"File content updated successfully.": "Filens innhold er oppdatert.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Konfigurasjon",
|
||||
"Gemini API Key is required.": "Det kreves en API-nøkkel for Gemini.",
|
||||
"Gender": "",
|
||||
"General": "Generelt",
|
||||
"Generate": "",
|
||||
"Generate an image": "Genrer et bilde",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "API-nøkkel for Google PSE",
|
||||
"Google PSE Engine Id": "Motor-ID for Google PSE",
|
||||
"Gravatar": "",
|
||||
"Group": "Gruppe",
|
||||
"Group created successfully": "Gruppe opprettet",
|
||||
"Group deleted successfully": "Gruppe slettet",
|
||||
"Group Description": "Beskrivelse av gruppe",
|
||||
"Group Name": "Navn på gruppe",
|
||||
"Group": "Gruppe",
|
||||
"Group updated successfully": "Gruppe oppdatert",
|
||||
"Groups": "Grupper",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Importer verktøy",
|
||||
"Important Update": "Viktig oppdatering",
|
||||
"Include": "Inkluder",
|
||||
"Includes SharePoint": "Inkluderer SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Inkluderer SharePoint",
|
||||
"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": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "Inntast kommandoer",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Sørg for å omslutte dem med",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Sørg for å eksportere en workflow.json-fil i API-formatet fra ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Administrer",
|
||||
"Manage Direct Connections": "Behandle direkte koblinger",
|
||||
"Manage Models": "Behandle modeller",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Behandle API-tilkoblinger for OpenAPI",
|
||||
"Manage Pipelines": "Behandle pipelines",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "mars",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Mer",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Navn",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Gi kunnskapsbasen et navn",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Finner ikke noe innhold",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "Mangler innhold for tale",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Ingen avstand tilgjengelig",
|
||||
"No feedbacks found": "Finner ingen tilbakemeldinger",
|
||||
"No file selected": "Ingen fil valgt",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Finner ingen resultater",
|
||||
"No search query generated": "Ingen søkespørringer er generert",
|
||||
"No source available": "Ingen kilde tilgjengelig",
|
||||
"No suggestion prompts": "Ingen forslagsprompter",
|
||||
"No users were found.": "Finner ingen brukere",
|
||||
"No valves": "",
|
||||
"No valves to update": "Ingen ventiler å oppdatere",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Ingen forslagsprompter",
|
||||
"None": "Ingen",
|
||||
"Not factually correct": "Uriktig informasjon",
|
||||
"Not helpful": "Ikke nyttig",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "API-innstillinger for OpenAI er oppdatert",
|
||||
"OpenAI URL/Key required.": "URL/nøkkel for OpenAI kreves.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "eller",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Les gjennom følgende advarsler grundig:",
|
||||
"Please do not close the settings page while loading the model.": "Ikke lukk siden Innstillinger mens du laster inn modellen.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Angi en ledetekst",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Port",
|
||||
"Positive attitude": "Positiv holdning",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Prefiks-ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiks-ID brukes for å unngå konflikter med andre tilkoblinger ved å legge til et prefiks til modell-ID-ene. La det stå tomt for å deaktivere",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "Profil",
|
||||
"Profile Image": "Profilbilde",
|
||||
"Prompt": "Ledetekst",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Ledetekst (f.eks. Fortell meg noe morsomt om romerriket)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Omrangeringsmodell",
|
||||
"Reset": "Tilbakestill",
|
||||
"Reset All Models": "Tilbakestill alle modeller",
|
||||
"Reset Image": "Tilbakestill bilde",
|
||||
"Reset Upload Directory": "Tilbakestill opplastingskatalog",
|
||||
"Reset Vector Storage/Knowledge": "Tilbakestill Vector-lagring/kunnskap",
|
||||
"Reset view": "Tilbakestill visning",
|
||||
"Reset Image": "Tilbakestill bilde",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Svar-varsler kan ikke aktiveres fordi tilgang til nettstedet er nektet. Gå til nettleserinnstillingene dine for å gi den nødvendige tilgangen.",
|
||||
"Response splitting": "Oppdeling av svar",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "Resultat",
|
||||
"Result": "Resultat",
|
||||
"RESULT": "Resultat",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "Generering av spørsmål om henting",
|
||||
"Rich Text Input for Chat": "Rik tekstinndata for chat",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Lagre og opprett",
|
||||
"Save & Update": "Lagre og oppdater",
|
||||
"Save As Copy": "Lagre som kopi",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Lagre etikett",
|
||||
"Saved": "Lagret",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Lagring av chattelogger direkte til nettleserens lagringsområde støttes ikke lenger. Ta et øyeblikk til å laste ned og slette chatteloggende dine ved å klikke på knappen nedenfor. Ikke bekymre deg, du kan enkelt importere chatteloggene dine til backend på nytt via",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Del",
|
||||
"Share Chat": "Del chat",
|
||||
"Share to Open WebUI Community": "Del med OpenWebUI-fellesskapet",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Vis",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Motor for Tale-til-tekst",
|
||||
"Start of the channel": "Starten av kanalen",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Stopp",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Stoppsekvens",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "STT-modell",
|
||||
"STT Settings": "STT-innstillinger",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Fortell oss mer:",
|
||||
"Temperature": "Temperatur",
|
||||
"Temporary Chat": "Midlertidig chat",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Oppdeling av tekst",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Tekst-til-tale-motor",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL-modus",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Bruk # i ledetekstens inntastingsfelt for å laste inn og inkludere kunnskapene dine.",
|
||||
"Use Gravatar": "Bruk Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "Bruk grupper til å samle brukere og tildele tillatelser.",
|
||||
"Use Initials": "Bruk initialer",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Du har delt denne chatten",
|
||||
"You're a helpful assistant.": "Du er en nyttig assistent.",
|
||||
"You're now logged in.": "Du er nå logget inn.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Status på kontoen din er for øyeblikket ventende på aktivering.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Hele beløpet går uavkortet til utvikleren av tillegget. Open WebUI mottar ikke deler av beløpet. Den valgte betalingsplattformen kan ha gebyrer.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Basis-URL is verplicht",
|
||||
"Available list": "Beschikbare lijst",
|
||||
"Available Tools": "",
|
||||
"available!": "beschikbaar!",
|
||||
"available users": "beschikbare gebruikers",
|
||||
"available!": "beschikbaar!",
|
||||
"Away": "Afwezig",
|
||||
"Awful": "Verschrikkelijk",
|
||||
"Azure AI Speech": "Azure AI-spraak",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7 Endpoint",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 Subscription Key",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Bocha Search API-sleutel",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Chatbesturing",
|
||||
"Chat direction": "Chatrichting",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Chatoverzicht",
|
||||
"Chat Permissions": "Chattoestemmingen",
|
||||
"Chat Tags Auto-Generation": "Chatlabels automatisch genereren",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Controleer de herhaling van tokenreeksen in de gegenereerde tekst. Een hogere waarde (bijv. 1,5) zal herhalingen sterker bestraffen, terwijl een lagere waarde (bijv. 1,1) milder zal zijn. Bij 1 is het uitgeschakeld.",
|
||||
"Controls": "Besturingselementen",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Gekopieerd",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "URL van gedeelde gesprekspagina gekopieerd naar klembord!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Documenten",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "maakt geen externe verbindingen, en je gegevens blijven veilig op je lokaal gehoste server.",
|
||||
"Domain Filter List": "Domein-filterlijst",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Haal geen willekeurige pipelines op van onbetrouwbare bronnen.",
|
||||
"Don't have an account?": "Heb je geen account?",
|
||||
"don't install random functions from sources you don't trust.": "installeer geen willekeurige functies van bronnen die je niet vertrouwd",
|
||||
"don't install random tools from sources you don't trust.": "installeer geen willekeurige gereedschappen van bronnen die je niet vertrouwd",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Haal geen willekeurige pipelines op van onbetrouwbare bronnen.",
|
||||
"Don't like the style": "Vind je de stijl niet mooi?",
|
||||
"Done": "Voltooid",
|
||||
"Download": "Download",
|
||||
"Download & Delete": "Downloaden en verwijderen",
|
||||
"Download as SVG": "Download als SVG",
|
||||
"Download canceled": "Download geannuleerd",
|
||||
"Download Database": "Download database",
|
||||
"Download & Delete": "Downloaden en verwijderen",
|
||||
"Drag and drop a file to upload or select a file to view": "Sleep een bestand om te uploaden of selecteer een bestand om te bekijken",
|
||||
"Draw": "Teken",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Voer de Google PSE API-sleutel in",
|
||||
"Enter Google PSE Engine Id": "Voer Google PSE Engine-ID in",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Voeg afbeelding formaat toe (Bijv. 512x512)",
|
||||
"Enter Jina API Key": "Voer Jina API-sleutel in",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Voer hier je code in...",
|
||||
"Enter your current password": "Voer je huidige wachtwoord in",
|
||||
"Enter Your Email": "Voer je Email in",
|
||||
"Enter Your Full Name": "Voer je Volledige Naam in",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Voer je bericht in",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Voer je rol in",
|
||||
"Enter Your Username": "Voer je gebruikersnaam in",
|
||||
"Enter your webhook URL": "Voer je webhook-URL in",
|
||||
"Enter your code here...": "Voer hier je code in...",
|
||||
"Error": "Fout",
|
||||
"ERROR": "ERROR",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Kan klembord inhoud niet lezen",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Het is niet gelukt om het gesprek op te slaan",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Feedback geschiedenis",
|
||||
"Feedbacks": "Feedback",
|
||||
"Feel free to add specific details": "Voeg specifieke details toe",
|
||||
"Female": "",
|
||||
"File": "Bestand",
|
||||
"File added successfully.": "Bestand succesvol toegevoegd.",
|
||||
"File content updated successfully.": "Bestandsinhoud succesvol bijgewerkt.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Gemini API-configuratie",
|
||||
"Gemini API Key is required.": "Gemini API-sleutel is vereisd",
|
||||
"Gender": "",
|
||||
"General": "Algemeen",
|
||||
"Generate": "",
|
||||
"Generate an image": "Genereer een afbeelding",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Google PSE API-sleutel",
|
||||
"Google PSE Engine Id": "Google PSE-engine-ID",
|
||||
"Gravatar": "",
|
||||
"Group": "Groep",
|
||||
"Group created successfully": "Groep succesvol aangemaakt",
|
||||
"Group deleted successfully": "Groep succesvol verwijderd",
|
||||
"Group Description": "Groepsbeschrijving",
|
||||
"Group Name": "Groepsnaam",
|
||||
"Group": "Groep",
|
||||
"Group updated successfully": "Groep succesvol bijgewerkt",
|
||||
"Groups": "Groepen",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Importeer Gereedschappen",
|
||||
"Important Update": "Belangrijke update",
|
||||
"Include": "Voeg toe",
|
||||
"Includes SharePoint": "Inclusief SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Inclusief SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecteer de volledige inhoud als context voor uitgebreide verwerking, dit wordt aanbevolen voor complexe query's.",
|
||||
"Input": "",
|
||||
"Input commands": "Voer commando's in",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Zorg ervoor dat je ze omringt met",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Zorg ervoor dat je een workflow.json-bestand als API-formaat exporteert vanuit ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Beheren",
|
||||
"Manage Direct Connections": "Beheer directe verbindingen",
|
||||
"Manage Models": "Beheer modellen",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Beheer OpenAI API-verbindingen",
|
||||
"Manage Pipelines": "Pijplijnen beheren",
|
||||
"Manage Tool Servers": "Beheer gereedschapservers",
|
||||
"Manage your account information.": "",
|
||||
"March": "Maart",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Meer",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Naam",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Geef je kennisbasis een naam",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Geen content gevonden",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "Geen inhoud om over te spreken",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Geen afstand beschikbaar",
|
||||
"No feedbacks found": "Geen feedback gevonden",
|
||||
"No file selected": "Geen bestand geselecteerd",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Geen resultaten gevonden",
|
||||
"No search query generated": "Geen zoekopdracht gegenereerd",
|
||||
"No source available": "Geen bron beschikbaar",
|
||||
"No suggestion prompts": "Geen voorgestelde prompts",
|
||||
"No users were found.": "Geen gebruikers gevonden",
|
||||
"No valves": "",
|
||||
"No valves to update": "Geen kleppen om bij te werken",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Geen voorgestelde prompts",
|
||||
"None": "Geen",
|
||||
"Not factually correct": "Niet feitelijk juist",
|
||||
"Not helpful": "Niet nuttig",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "OpenAI API-sleutel bijgewerkt",
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Sleutel vereist.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "of",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Beoordeel de volgende waarschuwingen nauwkeurig:",
|
||||
"Please do not close the settings page while loading the model.": "Sluit de instellingenpagina niet terwijl het model geladen wordt.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Voer een prompt in",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Poort",
|
||||
"Positive attitude": "Positieve houding",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Voorvoegsel-ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Voorvoegsel-ID wordt gebruikt om conflicten met andere verbindingen te vermijden door een voorvoegsel aan het model-ID toe te voegen - laat leeg om uit te schakelen",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "Privé",
|
||||
"Profile": "Profiel",
|
||||
"Profile Image": "Profielafbeelding",
|
||||
"Prompt": "Prompt",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (bv. Vertel me een leuke gebeurtenis over het Romeinse Rijk)",
|
||||
"Prompt Autocompletion": "Automatische promptaanvulling",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Reranking Model",
|
||||
"Reset": "Herstellen",
|
||||
"Reset All Models": "Herstel alle modellen",
|
||||
"Reset Image": "Afbeelding resetten",
|
||||
"Reset Upload Directory": "Herstel Uploadmap",
|
||||
"Reset Vector Storage/Knowledge": "Herstel Vectoropslag/-kennis",
|
||||
"Reset view": "Herstel zicht",
|
||||
"Reset Image": "Afbeelding resetten",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Antwoordmeldingen kunnen niet worden geactiveerd omdat de rechten voor de website zijn geweigerd. Ga naar de instellingen van uw browser om de benodigde toegang te verlenen.",
|
||||
"Response splitting": "Antwoord splitsing",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "Resultaat",
|
||||
"Result": "Resultaat",
|
||||
"RESULT": "Resultaat",
|
||||
"Retrieval": "Ophalen",
|
||||
"Retrieval Query Generation": "Ophaalqueriegeneratie",
|
||||
"Rich Text Input for Chat": "Rijke tekstinvoer voor chatten",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Opslaan & Creëren",
|
||||
"Save & Update": "Opslaan & Bijwerken",
|
||||
"Save As Copy": "Bewaar als kopie",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Bewaar Tag",
|
||||
"Saved": "Opgeslagen",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Chat logs direct opslaan in de opslag van je browser wordt niet langer ondersteund. Neem even de tijd om je chat logs te downloaden en te verwijderen door op de knop hieronder te klikken. Maak je geen zorgen, je kunt je chat logs eenvoudig opnieuw importeren naar de backend via",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Delen",
|
||||
"Share Chat": "Deel chat",
|
||||
"Share to Open WebUI Community": "Deel naar OpenWebUI-community",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Deeltoestemmingen",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Toon",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Spraak-naar-tekst Engine",
|
||||
"Start of the channel": "Begin van het kanaal",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Stop",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Stopsequentie",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "STT Model",
|
||||
"STT Settings": "STT Instellingen",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Vertel ons meer:",
|
||||
"Temperature": "Temperatuur",
|
||||
"Temporary Chat": "Tijdelijke chat",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Tekst splitser",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Tekst-naar-Spraak Engine",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL-modus",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Gebruik '#' in de promptinvoer om je kennis te laden en op te nemen.",
|
||||
"Use Gravatar": "Gebruik Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "Gebruik groepen om gebruikers te groeperen en rechten aan te wijzen",
|
||||
"Use Initials": "Gebruik initialen",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Je hebt dit gesprek gedeeld",
|
||||
"You're a helpful assistant.": "Je bent een behulpzame assistent.",
|
||||
"You're now logged in.": "Je bent nu ingelogd.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Je accountstatus wacht nu op activatie",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Je volledige bijdrage gaat direct naar de ontwikkelaar van de plugin; Open WebUI neemt hier geen deel van. Het gekozen financieringsplatform kan echter wel zijn eigen kosten hebben.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ਬੇਸ URL ਦੀ ਲੋੜ ਹੈ।",
|
||||
"Available list": "",
|
||||
"Available Tools": "",
|
||||
"available!": "ਉਪਲਬਧ ਹੈ!",
|
||||
"available users": "ਉਪਲਬਧ ਯੂਜ਼ਰ",
|
||||
"available!": "ਉਪਲਬਧ ਹੈ!",
|
||||
"Away": "ਗੈਰਹਾਜ਼ਿਰ",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "",
|
||||
"Chat direction": "ਗੱਲਬਾਤ ਡਿਰੈਕਟਨ",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "ਸਾਂਝੇ ਕੀਤੇ ਗੱਲਬਾਤ URL ਨੂੰ ਕਲਿੱਪਬੋਰਡ 'ਤੇ ਕਾਪੀ ਕਰ ਦਿੱਤਾ!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "ਡਾਕੂਮੈਂਟ",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "ਕੋਈ ਬਾਹਰੀ ਕਨੈਕਸ਼ਨ ਨਹੀਂ ਬਣਾਉਂਦਾ, ਅਤੇ ਤੁਹਾਡਾ ਡਾਟਾ ਤੁਹਾਡੇ ਸਥਾਨਕ ਸਰਵਰ 'ਤੇ ਸੁਰੱਖਿਅਤ ਰਹਿੰਦਾ ਹੈ।",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "ਅਣਵਿਸ਼ਵਾਸਯੋਗ ਸਰੋਤਾਂ ਤੋਂ ਰੈਂਡਮ ਪਾਈਪਲਾਈਨ ਨਾ ਲਓ।",
|
||||
"Don't have an account?": "ਖਾਤਾ ਨਹੀਂ ਹੈ?",
|
||||
"don't install random functions from sources you don't trust.": "",
|
||||
"don't install random tools from sources you don't trust.": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "ਅਣਵਿਸ਼ਵਾਸਯੋਗ ਸਰੋਤਾਂ ਤੋਂ ਰੈਂਡਮ ਪਾਈਪਲਾਈਨ ਨਾ ਲਓ।",
|
||||
"Don't like the style": "ਸਟਾਈਲ ਪਸੰਦ ਨਹੀਂ ਹੈ",
|
||||
"Done": "",
|
||||
"Download": "ਡਾਊਨਲੋਡ",
|
||||
"Download & Delete": "ਡਾਊਨਲੋਡ ਅਤੇ ਮਿਟਾਓ",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "ਡਾਊਨਲੋਡ ਰੱਦ ਕੀਤਾ ਗਿਆ",
|
||||
"Download Database": "ਡਾਟਾਬੇਸ ਡਾਊਨਲੋਡ ਕਰੋ",
|
||||
"Download & Delete": "ਡਾਊਨਲੋਡ ਅਤੇ ਮਿਟਾਓ",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Google PSE API ਕੁੰਜੀ ਦਾਖਲ ਕਰੋ",
|
||||
"Enter Google PSE Engine Id": "Google PSE ਇੰਜਣ ID ਦਾਖਲ ਕਰੋ",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "ਚਿੱਤਰ ਆਕਾਰ ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "ਆਪਣਾ ਕੋਡ ਇੱਥੇ ਦਰਜ ਕਰੋ...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "ਆਪਣੀ ਈਮੇਲ ਦਰਜ ਕਰੋ",
|
||||
"Enter Your Full Name": "ਆਪਣਾ ਪੂਰਾ ਨਾਮ ਦਰਜ ਕਰੋ",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "ਆਪਣੀ ਭੂਮਿਕਾ ਦਰਜ ਕਰੋ",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "ਆਪਣਾ ਕੋਡ ਇੱਥੇ ਦਰਜ ਕਰੋ...",
|
||||
"Error": "ਗਲਤੀ",
|
||||
"ERROR": "",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "ਕਲਿੱਪਬੋਰਡ ਸਮੱਗਰੀ ਪੜ੍ਹਣ ਵਿੱਚ ਅਸਫਲ",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "ਗੱਲਬਾਤ ਸੰਭਾਲਣ ਵਿੱਚ ਅਸਫਲ",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "ਖੁੱਲ੍ਹੇ ਦਿਲ ਨਾਲ ਖਾਸ ਵੇਰਵੇ ਸ਼ਾਮਲ ਕਰੋ",
|
||||
"Female": "",
|
||||
"File": "",
|
||||
"File added successfully.": "",
|
||||
"File content updated successfully.": "",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "ਆਮ",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "Google PSE API ਕੁੰਜੀ",
|
||||
"Google PSE Engine Id": "ਗੂਗਲ PSE ਇੰਜਣ ID",
|
||||
"Gravatar": "",
|
||||
"Group": "ਗਰੁੱਪ",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group": "ਗਰੁੱਪ",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "",
|
||||
"Important Update": "ਮਹੱਤਵਪੂਰਨ ਅੱਪਡੇਟ",
|
||||
"Include": "",
|
||||
"Includes SharePoint": "SharePoint ਸ਼ਾਮਲ ਹੈ",
|
||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "ਸਟੇਬਲ-ਡਿਫਿਊਸ਼ਨ-ਵੈਬਯੂਆਈ ਚਲਾਉਣ ਸਮੇਂ `--api` ਝੰਡਾ ਸ਼ਾਮਲ ਕਰੋ",
|
||||
"Includes SharePoint": "SharePoint ਸ਼ਾਮਲ ਹੈ",
|
||||
"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": "ਜਾਣਕਾਰੀ",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "ਇਨਪੁਟ ਕਮਾਂਡਾਂ",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਉਨ੍ਹਾਂ ਨੂੰ ਘੇਰੋ",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "ਪਾਈਪਲਾਈਨਾਂ ਦਾ ਪ੍ਰਬੰਧਨ ਕਰੋ",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "ਮਾਰਚ",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "ਹੋਰ",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "ਨਾਮ",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "",
|
||||
"No feedbacks found": "",
|
||||
"No file selected": "",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "ਕੋਈ ਨਤੀਜੇ ਨਹੀਂ ਮਿਲੇ",
|
||||
"No search query generated": "ਕੋਈ ਖੋਜ ਪੁੱਛਗਿੱਛ ਤਿਆਰ ਨਹੀਂ ਕੀਤੀ ਗਈ",
|
||||
"No source available": "ਕੋਈ ਸਰੋਤ ਉਪਲਬਧ ਨਹੀਂ",
|
||||
"No suggestion prompts": "ਕੋਈ ਸੁਝਾਏ ਪ੍ਰਾਂਪਟ ਨਹੀਂ",
|
||||
"No users were found.": "",
|
||||
"No valves": "",
|
||||
"No valves to update": "",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "ਕੋਈ ਸੁਝਾਏ ਪ੍ਰਾਂਪਟ ਨਹੀਂ",
|
||||
"None": "ਕੋਈ ਨਹੀਂ",
|
||||
"Not factually correct": "ਤੱਥਕ ਰੂਪ ਵਿੱਚ ਸਹੀ ਨਹੀਂ",
|
||||
"Not helpful": "",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "ਓਪਨਏਆਈ URL/ਕੁੰਜੀ ਦੀ ਲੋੜ ਹੈ।",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "ਜਾਂ",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "ਸਕਾਰਾਤਮਕ ਰਵੱਈਆ",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "ਪ੍ਰੋਫ਼ਾਈਲ",
|
||||
"Profile Image": "ਪ੍ਰੋਫਾਈਲ ਚਿੱਤਰ",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "ਪ੍ਰੰਪਟ (ਉਦਾਹਰਣ ਲਈ ਮੈਨੂੰ ਰੋਮਨ ਸਾਮਰਾਜ ਬਾਰੇ ਇੱਕ ਮਜ਼ੇਦਾਰ ਤੱਥ ਦੱਸੋ)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "ਮਾਡਲ ਮੁੜ ਰੈਂਕਿੰਗ",
|
||||
"Reset": "",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "ਚਿੱਤਰ ਰੀਸੈਟ ਕਰੋ",
|
||||
"Reset Upload Directory": "",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "",
|
||||
"Reset Image": "ਚਿੱਤਰ ਰੀਸੈਟ ਕਰੋ",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
|
||||
"Response splitting": "",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "ਨਤੀਜਾ",
|
||||
"Result": "",
|
||||
"RESULT": "ਨਤੀਜਾ",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "ਸੰਭਾਲੋ ਅਤੇ ਬਣਾਓ",
|
||||
"Save & Update": "ਸੰਭਾਲੋ ਅਤੇ ਅੱਪਡੇਟ ਕਰੋ",
|
||||
"Save As Copy": "",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "",
|
||||
"Saved": "",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "ਤੁਹਾਡੇ ਬ੍ਰਾਊਜ਼ਰ ਦੇ ਸਟੋਰੇਜ ਵਿੱਚ ਸਿੱਧੇ ਗੱਲਬਾਤ ਲੌਗ ਸੰਭਾਲਣਾ ਹੁਣ ਸਮਰਥਿਤ ਨਹੀਂ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਹੇਠਾਂ ਦਿੱਤੇ ਬਟਨ 'ਤੇ ਕਲਿੱਕ ਕਰਕੇ ਆਪਣੇ ਗੱਲਬਾਤ ਲੌਗ ਡਾਊਨਲੋਡ ਅਤੇ ਮਿਟਾਉਣ ਲਈ ਕੁਝ ਸਮਾਂ ਲਓ। ਚਿੰਤਾ ਨਾ ਕਰੋ, ਤੁਸੀਂ ਆਪਣੇ ਗੱਲਬਾਤ ਲੌਗ ਨੂੰ ਬੈਕਐਂਡ ਵਿੱਚ ਆਸਾਨੀ ਨਾਲ ਮੁੜ ਆਯਾਤ ਕਰ ਸਕਦੇ ਹੋ",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "ਸਾਂਝਾ ਕਰੋ",
|
||||
"Share Chat": "ਗੱਲਬਾਤ ਸਾਂਝੀ ਕਰੋ",
|
||||
"Share to Open WebUI Community": "ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਨਾਲ ਸਾਂਝਾ ਕਰੋ",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "ਦਿਖਾਓ",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "ਬੋਲ-ਤੋਂ-ਪਾਠ ਇੰਜਣ",
|
||||
"Start of the channel": "ਚੈਨਲ ਦੀ ਸ਼ੁਰੂਆਤ",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "ਰੋਕੋ ਕ੍ਰਮ",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "",
|
||||
"STT Settings": "STT ਸੈਟਿੰਗਾਂ",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "ਸਾਨੂੰ ਹੋਰ ਦੱਸੋ:",
|
||||
"Temperature": "ਤਾਪਮਾਨ",
|
||||
"Temporary Chat": "",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "ਪਾਠ-ਤੋਂ-ਬੋਲ ਇੰਜਣ",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL ਮੋਡ",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "ਗ੍ਰਾਵਾਟਾਰ ਵਰਤੋ",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "ਸ਼ੁਰੂਆਤੀ ਅੱਖਰ ਵਰਤੋ",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "ਤੁਸੀਂ ਇਹ ਗੱਲਬਾਤ ਸਾਂਝੀ ਕੀਤੀ ਹੈ",
|
||||
"You're a helpful assistant.": "ਤੁਸੀਂ ਇੱਕ ਮਦਦਗਾਰ ਸਹਾਇਕ ਹੋ।",
|
||||
"You're now logged in.": "ਤੁਸੀਂ ਹੁਣ ਲੌਗ ਇਨ ਹੋ ਗਏ ਹੋ।",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
|
||||
"Youtube": "ਯੂਟਿਊਬ",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "Automatic1111 - Adres podstawowy jest wymagany.",
|
||||
"Available list": "Dostępna lista",
|
||||
"Available Tools": "Dostępne narzędzia",
|
||||
"available!": "dostępny!",
|
||||
"available users": "dostępni użytkownicy",
|
||||
"available!": "dostępny!",
|
||||
"Away": "Nieobecny",
|
||||
"Awful": "Okropne",
|
||||
"Azure AI Speech": "Azure AI Speech",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Wyszukiwarka Bing V7 Endpoint",
|
||||
"Bing Search V7 Subscription Key": "Klucz subskrypcji Wyszukiwarki Bing V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Klucz API Bocha Search",
|
||||
"Bold": "Pogrubienie",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Ustawienia czatu",
|
||||
"Chat direction": "Kierunek rozmowy czatu",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Przegląd czatu",
|
||||
"Chat Permissions": "Uprawnienia do czatu",
|
||||
"Chat Tags Auto-Generation": "Automatyczne generowanie tagów czatu",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "Ustawienia",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Skopiowane",
|
||||
"Copied link to clipboard": "Skopiowano link do schowka",
|
||||
"Copied shared chat URL to clipboard!": "Skopiowano udostępniony URL czatu do schowka!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Dokumenty",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "nie nawiązuje żadnych zewnętrznych połączeń, a Twoje dane pozostają bezpiecznie na Twoim lokalnie hostowanym serwerze.",
|
||||
"Domain Filter List": "Lista filtrów domeny",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Nie pobieraj losowych pipelines ze źródeł, którym nie ufasz.",
|
||||
"Don't have an account?": "Nie masz konta?",
|
||||
"don't install random functions from sources you don't trust.": "Nie instaluj losowych funkcji z niezaufanych źródeł.",
|
||||
"don't install random tools from sources you don't trust.": "Nie instaluj przypadkowych narzędzi z niezaufanych źródeł.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Nie pobieraj losowych pipelines ze źródeł, którym nie ufasz.",
|
||||
"Don't like the style": "Nie przypadł mi do gustu styl",
|
||||
"Done": "Wykonano",
|
||||
"Download": "Pobieranie",
|
||||
"Download & Delete": "Pobierz i usuń",
|
||||
"Download as SVG": "Pobierz jako SVG",
|
||||
"Download canceled": "Pobieranie anulowane",
|
||||
"Download Database": "Pobierz bazę danych",
|
||||
"Download & Delete": "Pobierz i usuń",
|
||||
"Drag and drop a file to upload or select a file to view": "Przeciągnij i upuść plik, aby go przesłać lub wybierz plik, aby go wyświetlić.",
|
||||
"Draw": "Rysuj",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Wprowadź klucz API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Wprowadź identyfikator urządzenia Google PSE",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Podaj rozmiar obrazu (np. 512x512)",
|
||||
"Enter Jina API Key": "Wprowadź klucz API Jiny",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Wpisz tutaj swój kod...",
|
||||
"Enter your current password": "Wprowadź swoje aktualne hasło",
|
||||
"Enter Your Email": "Podaj swój adres e-mail",
|
||||
"Enter Your Full Name": "Podaj swoje pełne imię i nazwisko",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Wprowadź swój komunikat",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Podaj swoją rolę",
|
||||
"Enter Your Username": "Podaj swoją nazwę użytkownika",
|
||||
"Enter your webhook URL": "Podaj adres URL swojego webhooka",
|
||||
"Enter your code here...": "Wpisz tutaj swój kod...",
|
||||
"Error": "Błąd",
|
||||
"ERROR": "BŁĄD",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "Nie udało się wygenerować tytułu",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "Nie udało się załadować zawartości pliku.",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Nie udało się odczytać zawartości schowka",
|
||||
"Failed to save connections": "Nie udałio się zapisać połączeń",
|
||||
"Failed to save conversation": "Nie udało się zapisać rozmowy",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Historia ocen",
|
||||
"Feedbacks": "Oceny",
|
||||
"Feel free to add specific details": "Nie krępuj się dodawać szczegółów",
|
||||
"Female": "",
|
||||
"File": "Plik",
|
||||
"File added successfully.": "Plik dodany pomyślnie.",
|
||||
"File content updated successfully.": "Plik został zaktualizowany pomyślnie.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Konfiguracja API Gemini",
|
||||
"Gemini API Key is required.": "Wymagany jest klucz API Gemini.",
|
||||
"Gender": "",
|
||||
"General": "Ogólne",
|
||||
"Generate": "Wygeneruj",
|
||||
"Generate an image": "Wygeneruj obraz",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Dysk Google",
|
||||
"Google PSE API Key": "Klucz API Google PSE",
|
||||
"Google PSE Engine Id": "Identyfikator silnika Google PSE",
|
||||
"Gravatar": "",
|
||||
"Group": "Grupa",
|
||||
"Group created successfully": "Grupa utworzona pomyślnie",
|
||||
"Group deleted successfully": "Grupa została usunięta pomyślnie",
|
||||
"Group Description": "Opis grupy",
|
||||
"Group Name": "Nazwa grupy",
|
||||
"Group": "Grupa",
|
||||
"Group updated successfully": "Grupa zaktualizowana pomyślnie",
|
||||
"Groups": "Grupy",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Importuj narzędzia",
|
||||
"Important Update": "Ważna aktualizacja",
|
||||
"Include": "Włączyć",
|
||||
"Includes SharePoint": "Zawiera SharePoint",
|
||||
"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.",
|
||||
"Includes SharePoint": "Zawiera SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "Wprowadź polecenia",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Upewnij się, że są one zawarte w",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Upewnij się, że wyeksportowałeś plik workflow.json w formacie API z ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Zarządzaj",
|
||||
"Manage Direct Connections": "Zarządzaj bezpośrednimi połączeniami",
|
||||
"Manage Models": "Zarządzaj modelami",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Zarządzaj połączeniami z API OpenAI",
|
||||
"Manage Pipelines": "Zarządzanie przepływem",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "Marzec",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Więcej",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Nazwa",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Nazwij swoją bazę wiedzy",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Nie znaleziono żadnej zawartości.",
|
||||
"No content found in file.": "Brak zawartości w pliku.",
|
||||
"No content to speak": "Brak treści do omówienia",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Brak dostępnej odległości",
|
||||
"No feedbacks found": "Nie znaleziono żadnych opinii",
|
||||
"No file selected": "Nie wybrano żadnego pliku",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Brak wyników",
|
||||
"No search query generated": "Nie wygenerowano żadnego zapytania wyszukiwania",
|
||||
"No source available": "Źródło nie jest dostępne.",
|
||||
"No suggestion prompts": "Brak sugerowanych promptów",
|
||||
"No users were found.": "Nie znaleziono użytkowników.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Brak zaworów do aktualizacji",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Brak sugerowanych promptów",
|
||||
"None": "Brak",
|
||||
"Not factually correct": "Niezgodne z rzeczywistością",
|
||||
"Not helpful": "Nieprzydatne",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "Ustawienia API OpenAI zostały zaktualizowane",
|
||||
"OpenAI URL/Key required.": "Wymagany jest URL/klucz OpenAI.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "lub",
|
||||
"Ordered List": "Lista numerowana",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Proszę uważnie przejrzeć poniższe ostrzeżenia:",
|
||||
"Please do not close the settings page while loading the model.": "Proszę nie zamykać strony ustawień podczas ładowania modelu.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Proszę podać prompt",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Port",
|
||||
"Positive attitude": "Pozytywne nastawienie",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Identyfikator prefiksu",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID prefiksu jest używane do unikania konfliktów z innymi połączeniami poprzez dodanie prefiksu do ID modelu - pozostaw puste, aby wyłączyć",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "Poprzednia wiadomość",
|
||||
"Private": "Prywatne",
|
||||
"Profile": "Profil",
|
||||
"Profile Image": "Zdjęcie profilowe",
|
||||
"Prompt": "Wprowadź prompt: ",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (np. podaj ciekawostkę o Imperium Rzymskim)",
|
||||
"Prompt Autocompletion": "Autouzupełnianie promptu",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Poprawa rankingu modelu",
|
||||
"Reset": "Resetuj",
|
||||
"Reset All Models": "Resetuj wszystkie modele",
|
||||
"Reset Image": "Resetuj obraz",
|
||||
"Reset Upload Directory": "Resetuj katalog pobierania",
|
||||
"Reset Vector Storage/Knowledge": "Reset magazynu wektorowego/wiedzy",
|
||||
"Reset view": "Resetuj widok",
|
||||
"Reset Image": "Resetuj obraz",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Powiadomienia o odpowiedziach nie mogą zostać aktywowane, ponieważ uprawnienia strony zostały odrzucone. Proszę odwiedzić ustawienia przeglądarki, aby przyznać wymagany dostęp.",
|
||||
"Response splitting": "Rozdzielanie odpowiedzi",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "Wynik",
|
||||
"Result": "Wynik",
|
||||
"RESULT": "Wynik",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "Generowanie zapytań pobierania",
|
||||
"Rich Text Input for Chat": "Pole do wprowadzania tekstu sformatowanego dla czatu",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Zapisz i stwórz",
|
||||
"Save & Update": "Zapisz i odśwież",
|
||||
"Save As Copy": "Zapisz jako kopia",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Zapisz tag",
|
||||
"Saved": "Zapisano",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Zapisywanie dzienników czatu bezpośrednio w pamięci przeglądarki nie jest już obsługiwane. Prosimy o pobranie i usunięcie dzienników czatu, klikając przycisk poniżej. Nie przejmuj się, możesz łatwo ponownie zaimportować dzienniki czatu do backendu przez",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Udostępnij",
|
||||
"Share Chat": "Udostępnij rozmowę",
|
||||
"Share to Open WebUI Community": "Udostępnij w społeczności OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Uprawnienia udostępniania",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Wyświetl",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Silnik konwersji mowy na tekst",
|
||||
"Start of the channel": "Początek kanału",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Zatrzymaj",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Zatrzymaj sekwencję",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "Przekreślenie",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Model STT",
|
||||
"STT Settings": "Ustawienia STT",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Podaj więcej informacji",
|
||||
"Temperature": "Temperatura",
|
||||
"Temporary Chat": "Tymczasowa rozmowa",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Rozdzielacz tekstu",
|
||||
"Text-to-Speech": "Syntezator mowy",
|
||||
"Text-to-Speech Engine": "Silnik konwersji tekstu na mowę",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Tryb URL",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Użyj '#' w polu wprowadzania zapytania, aby załadować i uwzględnić swoją wiedzę.",
|
||||
"Use Gravatar": "Użyj Gravatara",
|
||||
"Use groups to group your users and assign permissions.": "Wykorzystaj grupy do grupowania użytkowników i przypisywania uprawnień.",
|
||||
"Use Initials": "Użyj inicjałów",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Udostępniłeś tę rozmowę",
|
||||
"You're a helpful assistant.": "Jesteś pomocnym asystentem.",
|
||||
"You're now logged in.": "Jesteś teraz zalogowany.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Twoje konto oczekuje obecnie na aktywację.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Cała Twoja wpłata trafi bezpośrednio do dewelopera wtyczki; Open WebUI nie pobiera żadnej prowizji. Należy jednak pamiętać, że wybrana platforma finansowania może mieć własne opłaty.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "URL Base AUTOMATIC1111 é necessária.",
|
||||
"Available list": "Lista disponível",
|
||||
"Available Tools": "Ferramentas disponíveis",
|
||||
"available!": "disponível!",
|
||||
"available users": "usuários disponíveis",
|
||||
"available!": "disponível!",
|
||||
"Away": "Ausente",
|
||||
"Awful": "Horrível",
|
||||
"Azure AI Speech": "Fala de IA do Azure",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Endpoint do Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Chave de assinatura do Bing Search V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "Peso BM25",
|
||||
"Bocha Search API Key": "Chave da API de pesquisa Bocha",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Controles de Chat",
|
||||
"Chat direction": "Direção do Chat",
|
||||
"Chat ID": "ID do Chat",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Visão Geral do Chat",
|
||||
"Chat Permissions": "Permissões de Chat",
|
||||
"Chat Tags Auto-Generation": "Tags de Chat Geradas Automaticamente",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Controla a repetição de sequências de tokens no texto gerado. Um valor mais alto (por exemplo, 1,5) penalizará as repetições com mais rigor, enquanto um valor mais baixo (por exemplo, 1,1) será mais tolerante. Em 1, ele está desabilitado.",
|
||||
"Controls": "Controles",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Controla o equilíbrio entre coerência e diversidade da saída. Um valor menor resultará em um texto mais focado e coerente.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Copiado",
|
||||
"Copied link to clipboard": "Link copiado para a área de transferência",
|
||||
"Copied shared chat URL to clipboard!": "URL do chat compartilhado copiada para a área de transferência!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Documentos",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "não faz nenhuma conexão externa, e seus dados permanecem seguros no seu servidor local.",
|
||||
"Domain Filter List": "Lista de filtros de domínio",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Não busque pipelines aleatórios de fontes não confiáveis.",
|
||||
"Don't have an account?": "Não tem uma conta?",
|
||||
"don't install random functions from sources you don't trust.": "não instale funções aleatórias de origens que você não confia.",
|
||||
"don't install random tools from sources you don't trust.": "não instale ferramentas aleatórias de origens que você não confia.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Não busque pipelines aleatórios de fontes não confiáveis.",
|
||||
"Don't like the style": "Não gosta do estilo",
|
||||
"Done": "Concluído",
|
||||
"Download": "Baixar",
|
||||
"Download & Delete": "Baixar e excluir",
|
||||
"Download as SVG": "Baixar como SVG",
|
||||
"Download canceled": "Download cancelado",
|
||||
"Download Database": "Download do Banco de Dados",
|
||||
"Download & Delete": "Baixar e excluir",
|
||||
"Drag and drop a file to upload or select a file to view": "Arraste e solte um arquivo para enviar ou selecione um arquivo para visualizar",
|
||||
"Draw": "Empate",
|
||||
"Drop any files here to upload": "Solte qualquer arquivo aqui para fazer upload",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Digite a Chave API do Google PSE",
|
||||
"Enter Google PSE Engine Id": "Digite o ID do Motor do Google PSE",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Digite o Tamanho da Imagem (por exemplo, 512x512)",
|
||||
"Enter Jina API Key": "Digite a Chave API Jina",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "Insira a configuração JSON (por exemplo, {\"disable_links\": true})",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "Digite a senha do Yacy",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Digite a URL do Yacy (por exemplo, http://yacy.example.com:8090)",
|
||||
"Enter Yacy Username": "Digite o nome de usuário do Yacy",
|
||||
"Enter your code here...": "Insira seu código aqui...",
|
||||
"Enter your current password": "Digite sua senha atual",
|
||||
"Enter Your Email": "Digite Seu Email",
|
||||
"Enter Your Full Name": "Digite Seu Nome Completo",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Digite sua mensagem",
|
||||
"Enter your name": "Digite seu nome",
|
||||
"Enter Your Name": "Digite Seu Nome",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Digite Sua Função",
|
||||
"Enter Your Username": "Digite seu usuário",
|
||||
"Enter your webhook URL": "Insira a URL do seu webhook",
|
||||
"Enter your code here...": "Insira seu código aqui...",
|
||||
"Error": "Erro",
|
||||
"ERROR": "ERRO",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "Falha ao gerar título",
|
||||
"Failed to load chat preview": "Falha ao carregar a pré-visualização do chat",
|
||||
"Failed to load file content.": "Falha ao carregar o conteúdo do arquivo.",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
|
||||
"Failed to save connections": "Falha ao salvar conexões",
|
||||
"Failed to save conversation": "Falha ao salvar a conversa",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Histórico de comentários",
|
||||
"Feedbacks": "Comentários",
|
||||
"Feel free to add specific details": "Sinta-se à vontade para adicionar detalhes específicos",
|
||||
"Female": "",
|
||||
"File": "Arquivo",
|
||||
"File added successfully.": "Arquivo adicionado com sucesso.",
|
||||
"File content updated successfully.": "Arquivo de conteúdo atualizado com sucesso.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "Configuração da API Gemini",
|
||||
"Gemini API Key is required.": "A chave da API Gemini é necessária.",
|
||||
"Gender": "",
|
||||
"General": "Geral",
|
||||
"Generate": "Gerar",
|
||||
"Generate an image": "Gerar uma imagem",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "Chave API do Google PSE",
|
||||
"Google PSE Engine Id": "ID do Motor do Google PSE",
|
||||
"Gravatar": "",
|
||||
"Group": "Grupo",
|
||||
"Group created successfully": "Grupo criado com sucesso",
|
||||
"Group deleted successfully": "Grupo excluído com sucesso",
|
||||
"Group Description": "Descrição do Grupo",
|
||||
"Group Name": "Nome do Grupo",
|
||||
"Group": "Grupo",
|
||||
"Group updated successfully": "Grupo atualizado com sucesso",
|
||||
"Groups": "Grupos",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Importar Ferramentas",
|
||||
"Important Update": "Atualização importante",
|
||||
"Include": "Incluir",
|
||||
"Includes SharePoint": "Inclui o SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Inclui o SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injete todo o conteúdo como contexto para processamento abrangente; isso é recomendado para consultas complexas.",
|
||||
"Input": "Entrada",
|
||||
"Input commands": "Comandos de entrada",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "Tornar a senha visível na interface do usuário",
|
||||
"Make sure to enclose them with": "Certifique-se de encerrá-los com",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Certifique-se de exportar um arquivo workflow.json como o formato API do ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Gerenciar",
|
||||
"Manage Direct Connections": "Gerenciar conexões diretas",
|
||||
"Manage Models": "Gerenciar modelos",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Gerenciar Conexões OpenAI API",
|
||||
"Manage Pipelines": "Gerenciar Pipelines",
|
||||
"Manage Tool Servers": "Gerenciar servidores de ferramentas",
|
||||
"Manage your account information.": "",
|
||||
"March": "Março",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Mais",
|
||||
"More Concise": "Mais conciso",
|
||||
"More Options": "Mais opções",
|
||||
"Move": "",
|
||||
"Name": "Nome",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Nome da sua base de conhecimento",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Nenhum conteúdo encontrado",
|
||||
"No content found in file.": "Nenhum conteúdo encontrado no arquivo.",
|
||||
"No content to speak": "Sem conteúdo para falar",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Sem distância disponível",
|
||||
"No feedbacks found": "Comentários não encontrados",
|
||||
"No file selected": "Nenhum arquivo selecionado",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Nenhum resultado encontrado",
|
||||
"No search query generated": "Nenhuma consulta de pesquisa gerada",
|
||||
"No source available": "Nenhuma fonte disponível",
|
||||
"No suggestion prompts": "Sem prompts sugeridos",
|
||||
"No users were found.": "Nenhum usuário foi encontrado.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Nenhuma válvula para atualizar",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Sem prompts sugeridos",
|
||||
"None": "Nenhum",
|
||||
"Not factually correct": "Não está factualmente correto",
|
||||
"Not helpful": "Não é útil",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "Configurações OpenAI atualizadas",
|
||||
"OpenAI URL/Key required.": "URL/Chave OpenAI necessária.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Opções para executar um modelo de linguagem de visão local na descrição da imagem. Os parâmetros referem-se a um modelo hospedado no Hugging Face. Este parâmetro é mutuamente exclusivo com picture_description_api.",
|
||||
"or": "ou",
|
||||
"Ordered List": "Lista ordenada",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Por favor, revise cuidadosamente os seguintes avisos:",
|
||||
"Please do not close the settings page while loading the model.": "Não feche a página de configurações enquanto estiver carregando o modelo.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Por favor, digite um prompt",
|
||||
"Please enter a valid path": "Por favor, insira um caminho válido",
|
||||
"Please enter a valid URL": "Por favor, insira uma URL válido",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "Aguarde até que todos os arquivos sejam enviados.",
|
||||
"Port": "Porta",
|
||||
"Positive attitude": "Atitude positiva",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Prefixo ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "O ID de prefixo é utilizado para evitar conflitos com outras conexões, adicionando um prefixo aos IDs dos modelos - deixe em branco para desativar.",
|
||||
"Prevent file creation": "Impedir a criação de arquivos",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "Mensagem anterior",
|
||||
"Private": "Privado",
|
||||
"Profile": "Perfil",
|
||||
"Profile Image": "Imagem de Perfil",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (por exemplo, Diga-me um fato divertido sobre o Império Romano)",
|
||||
"Prompt Autocompletion": "Preenchimento automático de prompts",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Modelo de Reclassificação",
|
||||
"Reset": "Redefinir",
|
||||
"Reset All Models": "Redefinir todos os modelos",
|
||||
"Reset Image": "Redefinir imagem",
|
||||
"Reset Upload Directory": "Redefinir Diretório de Upload",
|
||||
"Reset Vector Storage/Knowledge": "Redefinir Armazenamento de Vetores/Conhecimento",
|
||||
"Reset view": "Redefinir visualização",
|
||||
"Reset Image": "Redefinir imagem",
|
||||
"Response": "Resposta",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Notificações de resposta não podem ser ativadas pois as permissões do site foram negadas. Por favor, visite as configurações do seu navegador para conceder o acesso necessário.",
|
||||
"Response splitting": "Divisão da Resposta",
|
||||
"Response Watermark": "Marca d'água de resposta",
|
||||
"RESULT": "Resultado",
|
||||
"Result": "Resultado",
|
||||
"RESULT": "Resultado",
|
||||
"Retrieval": "Recuperação",
|
||||
"Retrieval Query Generation": "Geração de Consulta de Recuperação",
|
||||
"Rich Text Input for Chat": "Entrada de rich text para o chat",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Salvar e Criar",
|
||||
"Save & Update": "Salvar e Atualizar",
|
||||
"Save As Copy": "Salvar Como Cópia",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Salvar Tag",
|
||||
"Saved": "Armazenado",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Salvar registros de chat diretamente no armazenamento do seu navegador não é mais suportado. Por favor, reserve um momento para baixar e excluir seus registros de chat clicando no botão abaixo. Não se preocupe, você pode facilmente reimportar seus registros de chat para o backend através de",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Compartilhar",
|
||||
"Share Chat": "Compartilhar Chat",
|
||||
"Share to Open WebUI Community": "Compartilhar com a Comunidade OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Permissões de compartilhamento",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Atalhos com um asterisco (*) são situacionais e só estão ativos em condições específicas.",
|
||||
"Show": "Mostrar",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "Fala-para-Texto",
|
||||
"Speech-to-Text Engine": "Motor de Transcrição de Fala",
|
||||
"Start of the channel": "Início do canal",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Parar",
|
||||
"Stop Generating": "Pare de gerar",
|
||||
"Stop Sequence": "Sequência de Parada",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "Tachado",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Remove o texto OCR existente do PDF e executa o OCR novamente. Ignorado se a opção Forçar OCR estiver habilitada. O padrão é Falso.",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Modelo STT",
|
||||
"STT Settings": "Configurações STT",
|
||||
"Stylized PDF Export": "Exportação de PDF estilizado",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Conte-nos mais:",
|
||||
"Temperature": "Temperatura",
|
||||
"Temporary Chat": "Chat temporário",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Divisor de Texto",
|
||||
"Text-to-Speech": "Texto-para-Fala",
|
||||
"Text-to-Speech Engine": "Motor de Texto para Fala",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Modo URL",
|
||||
"Usage": "Uso",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Usar '#' no prompt para carregar e incluir seus conhecimentos.",
|
||||
"Use Gravatar": "Usar Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "Use grupos para agrupar seus usuários e atribuir permissões.",
|
||||
"Use Initials": "Usar Iniciais",
|
||||
"Use LLM": "Usar LLM",
|
||||
"Use no proxy to fetch page contents.": "Não utilize proxy para buscar o conteúdo da página.",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Use o proxy designado pelas variáveis de ambiente http_proxy e https_proxy para buscar o conteúdo da página.",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Você compartilhou este chat",
|
||||
"You're a helpful assistant.": "Você é um assistente útil.",
|
||||
"You're now logged in.": "Você agora está logado.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "O status da sua conta está atualmente aguardando ativação.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Toda a sua contribuição irá diretamente para o desenvolvedor do plugin; o Open WebUI não retém nenhuma porcentagem. No entanto, a plataforma de financiamento escolhida pode ter suas próprias taxas.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "O URL Base do AUTOMATIC1111 é obrigatório.",
|
||||
"Available list": "",
|
||||
"Available Tools": "",
|
||||
"available!": "disponível!",
|
||||
"available users": "utilizadores disponíveis",
|
||||
"available!": "disponível!",
|
||||
"Away": "Ausente",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "",
|
||||
"Chat direction": "Direção da Conversa",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "URL de Conversa partilhado copiada com sucesso!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Documentos",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "não faz conexões externas e os seus dados permanecem seguros no seu servidor alojado localmente.",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Não obtenha pipelines aleatórias de fontes não confiáveis.",
|
||||
"Don't have an account?": "Não tem uma conta?",
|
||||
"don't install random functions from sources you don't trust.": "",
|
||||
"don't install random tools from sources you don't trust.": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Não obtenha pipelines aleatórias de fontes não confiáveis.",
|
||||
"Don't like the style": "Não gosta do estilo",
|
||||
"Done": "",
|
||||
"Download": "Descarregar",
|
||||
"Download & Delete": "Transferir e eliminar",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "Download cancelado",
|
||||
"Download Database": "Descarregar Base de Dados",
|
||||
"Download & Delete": "Transferir e eliminar",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Escreva a chave da API PSE do Google",
|
||||
"Enter Google PSE Engine Id": "Escreva o ID do mecanismo PSE do Google",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Escreva o Tamanho da Imagem (por exemplo, 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Introduza o seu código aqui...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "Escreva o seu E-mail",
|
||||
"Enter Your Full Name": "Escreva o seu Nome Completo",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Escreva a sua Função",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "Introduza o seu código aqui...",
|
||||
"Error": "Erro",
|
||||
"ERROR": "",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Falha ao guardar a conversa",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "Sinta-se à vontade para adicionar detalhes específicos",
|
||||
"Female": "",
|
||||
"File": "",
|
||||
"File added successfully.": "",
|
||||
"File content updated successfully.": "",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "Geral",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "Chave da API PSE do Google",
|
||||
"Google PSE Engine Id": "ID do mecanismo PSE do Google",
|
||||
"Gravatar": "",
|
||||
"Group": "Grupo",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group": "Grupo",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "",
|
||||
"Important Update": "Atualização importante",
|
||||
"Include": "",
|
||||
"Includes SharePoint": "Inclui o SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Inclui o SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "Comandos de entrada",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Certifique-se de colocá-los entre",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "Gerir",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Gerir pipelines",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "Março",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Mais",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Nome",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "",
|
||||
"No feedbacks found": "",
|
||||
"No file selected": "",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Não foram encontrados resultados",
|
||||
"No search query generated": "Não foi gerada nenhuma consulta de pesquisa",
|
||||
"No source available": "Nenhuma fonte disponível",
|
||||
"No suggestion prompts": "Sem prompts sugeridos",
|
||||
"No users were found.": "",
|
||||
"No valves": "",
|
||||
"No valves to update": "",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Sem prompts sugeridos",
|
||||
"None": "Nenhum",
|
||||
"Not factually correct": "Não é correto em termos factuais",
|
||||
"Not helpful": "",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "URL/Chave da API OpenAI é necessária.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "ou",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "Atitude Positiva",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "Perfil",
|
||||
"Profile Image": "Imagem de Perfil",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (ex.: Dê-me um facto divertido sobre o Império Romano)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Modelo de Reranking",
|
||||
"Reset": "",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "Repor imagem",
|
||||
"Reset Upload Directory": "Limpar Pasta de Carregamento",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "",
|
||||
"Reset Image": "Repor imagem",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
|
||||
"Response splitting": "",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "RESULTADO",
|
||||
"Result": "",
|
||||
"RESULT": "RESULTADO",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Guardar e Criar",
|
||||
"Save & Update": "Guardar e Atualizar",
|
||||
"Save As Copy": "",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "",
|
||||
"Saved": "",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Guardar o registo das conversas diretamente no armazenamento do seu navegador já não é suportado. Reserve um momento para descarregar e eliminar os seus registos de conversas clicando no botão abaixo. Não se preocupe, você pode facilmente reimportar os seus registos de conversas para o backend através de",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Partilhar",
|
||||
"Share Chat": "Partilhar Conversa",
|
||||
"Share to Open WebUI Community": "Partilhar com a Comunidade OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Mostrar",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Motor de Fala para Texto",
|
||||
"Start of the channel": "Início do canal",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Sequência de Paragem",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Modelo STT",
|
||||
"STT Settings": "Configurações STT",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Diga-nos mais:",
|
||||
"Temperature": "Temperatura",
|
||||
"Temporary Chat": "",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Motor de Texto para Fala",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Modo de URL",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "Usar Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "Usar Iniciais",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Você partilhou esta conversa",
|
||||
"You're a helpful assistant.": "Você é um assistente útil.",
|
||||
"You're now logged in.": "Você agora está conectado.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "O status da sua conta está atualmente com a ativação pendente.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "Este necesar URL-ul Bază AUTOMATIC1111.",
|
||||
"Available list": "Listă disponibilă",
|
||||
"Available Tools": "Instrumente disponibile",
|
||||
"available!": "disponibil!",
|
||||
"available users": "utilizatori disponibili",
|
||||
"available!": "disponibil!",
|
||||
"Away": "Plecat",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "Azure AI Speech este un serviciu care face parte din suita de servicii cognitive oferite de Microsoft Azure. Acesta permite integrarea capabilităților de recunoaștere vocală, generare a vorbirii și transcriere automată în aplicații. Serviciul oferă dezvoltatorilor posibilitatea de a crea aplicații care pot converti vorbirea în text, genera vorbire naturală din text sau traduce între limbi. Azure AI Speech este util în diverse scenarii, cum ar fi asistenți vocali, aplicații de servicii pentru clienți sau instrumente de accesibilitate, facilitând o interacțiune mai naturală între utilizatori și tehnologie.",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Controale pentru Conversație",
|
||||
"Chat direction": "Direcția conversației",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Prezentare generală a conversației",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "Generare automată a etichetelor de conversație",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "Controale",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Copiat",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "URL-ul conversației partajate a fost copiat în clipboard!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Documente",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "nu face nicio conexiune externă, iar datele tale rămân în siguranță pe serverul găzduit local.",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Nu prelua pipelines aleatoare din surse în care nu ai încredere.",
|
||||
"Don't have an account?": "Nu ai un cont?",
|
||||
"don't install random functions from sources you don't trust.": "nu instala funcții aleatorii din surse în care nu ai încredere.",
|
||||
"don't install random tools from sources you don't trust.": "nu instala instrumente aleatorii din surse în care nu ai încredere.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Nu prelua pipelines aleatoare din surse în care nu ai încredere.",
|
||||
"Don't like the style": "Nu îți place stilul",
|
||||
"Done": "Gata",
|
||||
"Download": "Descarcă",
|
||||
"Download & Delete": "Descărcare și ștergere",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "Descărcare anulată",
|
||||
"Download Database": "Descarcă Baza de Date",
|
||||
"Download & Delete": "Descărcare și ștergere",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "Desenează",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Introduceți Cheia API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Introduceți ID-ul Motorului Google PSE",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Introduceți Dimensiunea Imaginii (de ex. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Introduceți codul aici...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "Introduceți Email-ul Dvs.",
|
||||
"Enter Your Full Name": "Introduceți Numele Dvs. Complet",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Introduceți mesajul dvs.",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Introduceți Rolul Dvs.",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "Introduceți codul aici...",
|
||||
"Error": "Eroare",
|
||||
"ERROR": "EROARE",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Citirea conținutului clipboard-ului a eșuat",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Nu s-a putut salva conversația",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Istoricul feedback-ului",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "Adăugați detalii specifice fără nicio ezitare",
|
||||
"Female": "",
|
||||
"File": "Fișier",
|
||||
"File added successfully.": "Fișierul a fost adăugat cu succes.",
|
||||
"File content updated successfully.": "Conținutul fișierului a fost actualizat cu succes.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "General",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "Cheie API Google PSE",
|
||||
"Google PSE Engine Id": "ID Motor Google PSE",
|
||||
"Gravatar": "",
|
||||
"Group": "Grup",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group": "Grup",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Importă Instrumentele",
|
||||
"Important Update": "Actualizare importantă",
|
||||
"Include": "Include",
|
||||
"Includes SharePoint": "Include SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Include SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "Comenzi de intrare",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Asigurați-vă că le închideți cu",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Asigură-te că exporți un fișier {{workflow.json}} în format API din {{ComfyUI}}.",
|
||||
"Male": "",
|
||||
"Manage": "Gestionează",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Gestionează Conductele",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "Martie",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Mai multe",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Nume",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Nu a fost găsit niciun conținut",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "Nu există conținut de vorbit",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Nicio distanță disponibilă",
|
||||
"No feedbacks found": "Niciun feedback găsit",
|
||||
"No file selected": "Nu a fost selectat niciun fișier",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Nu au fost găsite rezultate",
|
||||
"No search query generated": "Nu a fost generată nicio interogare de căutare",
|
||||
"No source available": "Nicio sursă disponibilă",
|
||||
"No suggestion prompts": "Fără prompturi sugerate",
|
||||
"No users were found.": "",
|
||||
"No valves": "",
|
||||
"No valves to update": "Nu există valve de actualizat",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Fără prompturi sugerate",
|
||||
"None": "Niciunul",
|
||||
"Not factually correct": "Nu este corect din punct de vedere factual",
|
||||
"Not helpful": "Nu este de ajutor",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "Este necesar URL-ul/Cheia OpenAI.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "sau",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Vă rugăm să revizuiți cu atenție următoarele avertismente:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Te rog să introduci un mesaj",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "Atitudine pozitivă",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "Profil",
|
||||
"Profile Image": "Imagine de Profil",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (de ex. Spune-mi un fapt amuzant despre Imperiul Roman)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Model de Rearanjare",
|
||||
"Reset": "Resetează",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "Resetați imaginea",
|
||||
"Reset Upload Directory": "Resetează Directorul de Încărcare",
|
||||
"Reset Vector Storage/Knowledge": "Resetarea Stocării/Vectoului de Cunoștințe",
|
||||
"Reset view": "",
|
||||
"Reset Image": "Resetați imaginea",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Notificările de răspuns nu pot fi activate deoarece permisiunile site-ului au fost refuzate. Vă rugăm să vizitați setările browserului pentru a acorda accesul necesar.",
|
||||
"Response splitting": "Împărțirea răspunsurilor",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "Rezultat",
|
||||
"Result": "Rezultat",
|
||||
"RESULT": "Rezultat",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "Introducere text îmbogățit pentru chat",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Salvează & Creează",
|
||||
"Save & Update": "Salvează & Actualizează",
|
||||
"Save As Copy": "Salvează ca Copie",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Salvează Eticheta",
|
||||
"Saved": "Salvat",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Salvarea jurnalelor de conversație direct în stocarea browserului dvs. nu mai este suportată. Vă rugăm să luați un moment pentru a descărca și a șterge jurnalele de conversație făcând clic pe butonul de mai jos. Nu vă faceți griji, puteți reimporta ușor jurnalele de conversație în backend prin",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Partajează",
|
||||
"Share Chat": "Partajează Conversația",
|
||||
"Share to Open WebUI Community": "Partajează cu Comunitatea OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Afișează",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Motor de Conversie a Vocii în Text",
|
||||
"Start of the channel": "Începutul canalului",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Oprire",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Oprește Secvența",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Model STT",
|
||||
"STT Settings": "Setări STT",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Spune-ne mai multe:",
|
||||
"Temperature": "Temperatură",
|
||||
"Temporary Chat": "Chat Temporar",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Divizor de Text",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Motor de Conversie a Textului în Vorbire",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Mod URL",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Folosește '#' în prompt pentru a încărca și include cunoștințele tale.",
|
||||
"Use Gravatar": "Folosește Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "Folosește Inițialele",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Ați partajat această conversație",
|
||||
"You're a helpful assistant.": "Ești un asistent util.",
|
||||
"You're now logged in.": "Acum ești autentificat.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Statusul contului dvs. este în așteptare pentru activare.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Întreaga dvs. contribuție va merge direct la dezvoltatorul plugin-ului; Open WebUI nu ia niciun procent. Cu toate acestea, platforma de finanțare aleasă ar putea avea propriile taxe.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "Необходим базовый адрес URL AUTOMATIC1111.",
|
||||
"Available list": "Список доступных",
|
||||
"Available Tools": "Доступные инструменты",
|
||||
"available!": "доступно!",
|
||||
"available users": "доступные пользователи",
|
||||
"available!": "доступно!",
|
||||
"Away": "Отошел",
|
||||
"Awful": "Ужасно",
|
||||
"Azure AI Speech": "Azure AI Speech",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Бета",
|
||||
"Bing Search V7 Endpoint": "Энд-поинт поиска Bing V7",
|
||||
"Bing Search V7 Subscription Key": "Ключ API Bing Search V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Ключ API поиска Bocha",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Управление чатом",
|
||||
"Chat direction": "Направление чата",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Обзор чата",
|
||||
"Chat Permissions": "Разрешения для чата",
|
||||
"Chat Tags Auto-Generation": "Автогенерация тегов чата",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Контролируйте повторение последовательностей символов в сгенерированном тексте. Более высокое значение (например, 1.5) будет более строгим наказанием за повторения, в то время как более низкое значение (например, 1.1) будет более мягким. При значении 1 оно отключено.",
|
||||
"Controls": "Управление",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Контролирует баланс между согласованностью и разнообразием результатов. Меньшее значение приведет к получению более сфокусированного и связного текста.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Скопировано",
|
||||
"Copied link to clipboard": "Ссылка скопирована в буфер обмена",
|
||||
"Copied shared chat URL to clipboard!": "Копирование в буфер обмена выполнено успешно!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Документы",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "не устанавливает никаких внешних соединений, и ваши данные надежно хранятся на вашем локальном сервере.",
|
||||
"Domain Filter List": "Список доменных фильтров",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Не получайте случайные pipelines из источников, которым вы не доверяете.",
|
||||
"Don't have an account?": "У вас нет аккаунта?",
|
||||
"don't install random functions from sources you don't trust.": "не устанавливайте случайные функции из источников, которым вы не доверяете.",
|
||||
"don't install random tools from sources you don't trust.": "не устанавливайте случайные инструменты из источников, которым вы не доверяете.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Не получайте случайные pipelines из источников, которым вы не доверяете.",
|
||||
"Don't like the style": "Не нравится стиль",
|
||||
"Done": "Готово",
|
||||
"Download": "Загрузить",
|
||||
"Download & Delete": "Скачать и удалить",
|
||||
"Download as SVG": "Загрузить как SVG",
|
||||
"Download canceled": "Загрузка отменена",
|
||||
"Download Database": "Загрузить базу данных",
|
||||
"Download & Delete": "Скачать и удалить",
|
||||
"Drag and drop a file to upload or select a file to view": "Перетащите файл для загрузки или выберите файл для просмотра.",
|
||||
"Draw": "Рисовать",
|
||||
"Drop any files here to upload": "Переместите сюда любые файлы для загрузки",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Введите ключ API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Введите Id движка Google PSE",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Введите размер изображения (например, 512x512)",
|
||||
"Enter Jina API Key": "Введите ключ API Jina",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "Введите пароль Yacy",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Введите URL-адрес Yacy (напр., http://yacy.example.com:8090)",
|
||||
"Enter Yacy Username": "Введите имя пользователя Yacy",
|
||||
"Enter your code here...": "Введите здесь свой код...",
|
||||
"Enter your current password": "Введите ваш текущий пароль",
|
||||
"Enter Your Email": "Введите вашу электронную почту",
|
||||
"Enter Your Full Name": "Введите ваше полное имя",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Введите ваше сообщение",
|
||||
"Enter your name": "Введите ваше имя",
|
||||
"Enter Your Name": "Введите ваше Имя",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Введите вашу роль",
|
||||
"Enter Your Username": "Введите свое имя пользователя",
|
||||
"Enter your webhook URL": "Введите URL вашего веб-хука",
|
||||
"Enter your code here...": "Введите здесь свой код...",
|
||||
"Error": "Ошибка",
|
||||
"ERROR": "ОШИБКА",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "Не удалось загрузить содержимое файла.",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Не удалось прочитать содержимое буфера обмена",
|
||||
"Failed to save connections": "Не удалось сохранить подключения",
|
||||
"Failed to save conversation": "Не удалось сохранить беседу",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "История отзывов",
|
||||
"Feedbacks": "Отзывы",
|
||||
"Feel free to add specific details": "Не стесняйтесь добавлять конкретные детали",
|
||||
"Female": "",
|
||||
"File": "Файл",
|
||||
"File added successfully.": "Файл успешно добавлен.",
|
||||
"File content updated successfully.": "Содержимое файла успешно обновлено.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "Конфигурация Gemini API",
|
||||
"Gemini API Key is required.": "Требуется API ключ для Gemini.",
|
||||
"Gender": "",
|
||||
"General": "Общее",
|
||||
"Generate": "Сгенерировать",
|
||||
"Generate an image": "Сгенерировать изображение",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "Ключ API Google PSE",
|
||||
"Google PSE Engine Id": "Id движка Google PSE",
|
||||
"Gravatar": "",
|
||||
"Group": "Группа",
|
||||
"Group created successfully": "Группа успешно создана",
|
||||
"Group deleted successfully": "Группа успешно удалена",
|
||||
"Group Description": "Описание группы",
|
||||
"Group Name": "Название группы",
|
||||
"Group": "Группа",
|
||||
"Group updated successfully": "Группа успешно обновлена",
|
||||
"Groups": "Группы",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Импортировать Инструменты",
|
||||
"Important Update": "Важное обновление",
|
||||
"Include": "Включать",
|
||||
"Includes SharePoint": "Включает SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Включает SharePoint",
|
||||
"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": "Информация",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Использовать весь контент в качестве контекста для комплексной обработки, это рекомендуется для сложных запросов.",
|
||||
"Input": "",
|
||||
"Input commands": "Введите команды",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Убедитесь, что они заключены в",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Убедитесь, что экспортируете файл workflow.json в формате API из ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Управление",
|
||||
"Manage Direct Connections": "Управление прямыми подключениями",
|
||||
"Manage Models": "Управление моделями",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Управление соединениями API OpenAI",
|
||||
"Manage Pipelines": "Управление конвейерами",
|
||||
"Manage Tool Servers": "Управление серверами инструментов",
|
||||
"Manage your account information.": "",
|
||||
"March": "Март",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Больше",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Имя",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Назовите свою базу знаний",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Контент не найден",
|
||||
"No content found in file.": "В файле не найдено никакого содержимого",
|
||||
"No content to speak": "Нечего говорить",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Никаких доступных растояний",
|
||||
"No feedbacks found": "Никаких обратных связей не найдено",
|
||||
"No file selected": "Файлы не выбраны",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Результатов не найдено",
|
||||
"No search query generated": "Поисковый запрос не сгенерирован",
|
||||
"No source available": "Нет доступных источников",
|
||||
"No suggestion prompts": "Нет предложенных подсказок",
|
||||
"No users were found.": "Пользователи не найдены.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Нет вентилей для обновления",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Нет предложенных подсказок",
|
||||
"None": "Нет",
|
||||
"Not factually correct": "Не соответствует действительности",
|
||||
"Not helpful": "Бесполезно",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "Настройки OpenAI API обновлены",
|
||||
"OpenAI URL/Key required.": "Требуется URL-адрес API OpenAI или ключ API.",
|
||||
"openapi.json URL or Path": "URL-адрес или путь к файлу openapi.json",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Параметры для запуска локальной модели vision-language в описании изображения. Параметры относятся к модели, размещенной на Hugging Face. Этот параметр является взаимоисключающим с picture_description_api.",
|
||||
"or": "или",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Пожалуйста, внимательно ознакомьтесь со следующими предупреждениями:",
|
||||
"Please do not close the settings page while loading the model.": "Пожалуйста, не закрывайте страницу настроек во время загрузки модели.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Пожалуйста, введите подсказку",
|
||||
"Please enter a valid path": "Пожалуйста, введите правильный путь",
|
||||
"Please enter a valid URL": "Пожалуйста, введите правильный URL",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Порт",
|
||||
"Positive attitude": "Позитивный настрой",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "ID префикса",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID префикса используется для предотвращения конфликтов с другими подключениями путем добавления префикса к идентификаторам моделей - оставьте пустым, чтобы отключить",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "Предыдущее сообщение",
|
||||
"Private": "Частное",
|
||||
"Profile": "Профиль",
|
||||
"Profile Image": "Изображение профиля",
|
||||
"Prompt": "Промпт",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Промпт (напр., Расскажи мне интересный факт о Римской империи)",
|
||||
"Prompt Autocompletion": "Автодополнение промпта",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Модель реранжирования",
|
||||
"Reset": "Сбросить",
|
||||
"Reset All Models": "Сбросить все модели",
|
||||
"Reset Image": "Сбросить изображение",
|
||||
"Reset Upload Directory": "Сбросить каталог загрузок",
|
||||
"Reset Vector Storage/Knowledge": "Сброс векторного хранилища/знаний",
|
||||
"Reset view": "Сбросить вид",
|
||||
"Reset Image": "Сбросить изображение",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Уведомления об ответах не могут быть активированы, поскольку доступ к веб-сайту был заблокирован. Пожалуйста, перейдите к настройкам своего браузера, чтобы предоставить необходимый доступ.",
|
||||
"Response splitting": "Разделение ответов",
|
||||
"Response Watermark": "Водяной знак ответа",
|
||||
"RESULT": "Результат",
|
||||
"Result": "Результат",
|
||||
"RESULT": "Результат",
|
||||
"Retrieval": "Поиск",
|
||||
"Retrieval Query Generation": "Генерация поискового запроса",
|
||||
"Rich Text Input for Chat": "Ввод обогащённого текста (Rich text) в чат",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Сохранить и создать",
|
||||
"Save & Update": "Сохранить и обновить",
|
||||
"Save As Copy": "Сохранить как копию",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Сохранить тег",
|
||||
"Saved": "Сохранено",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Прямое сохранение журналов чата в хранилище вашего браузера больше не поддерживается. Пожалуйста, потратьте минуту, чтобы скачать и удалить ваши журналы чата, нажав на кнопку ниже. Не волнуйтесь, вы легко сможете повторно импортировать свои журналы чата в бэкенд через",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Поделиться",
|
||||
"Share Chat": "Поделиться чатом",
|
||||
"Share to Open WebUI Community": "Поделиться с сообществом OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Разрешения на общий доступ",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Показать",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Система распознавания речи",
|
||||
"Start of the channel": "Начало канала",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Остановить",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "Удалять существующие OCR",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Удалять существующий текст OCR из PDF и перезапустить OCR. Игнорируется если Принудительное OCR включено. По умолчанию установлено значение Выкл.",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Модель распознавания речи",
|
||||
"STT Settings": "Настройки распознавания речи",
|
||||
"Stylized PDF Export": "Стилизованный экспорт в формате PDF",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Пожалуйста, расскажите нам больше:",
|
||||
"Temperature": "",
|
||||
"Temporary Chat": "Временный чат",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Разделитель текста",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Система синтеза речи",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Режим URL",
|
||||
"Usage": "Использование",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Используйте «#» в строке ввода, чтобы загрузить и включить свои знания.",
|
||||
"Use Gravatar": "Использовать Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "Используйте группы, чтобы группировать пользователей и назначать разрешения.",
|
||||
"Use Initials": "Использовать инициалы",
|
||||
"Use LLM": "Использовать LLM",
|
||||
"Use no proxy to fetch page contents.": "Не используйте прокси-сервер для получения содержимого страницы.",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Используйте прокси-сервер, обозначенный переменными окружения http_proxy и https_proxy, для получения содержимого страницы.",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Вы поделились этим чатом",
|
||||
"You're a helpful assistant.": "Вы полезный ассистент.",
|
||||
"You're now logged in.": "Вы вошли в систему.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "В настоящее время ваша учетная запись ожидает активации.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Весь ваш взнос будет направлен непосредственно разработчику плагина; Open WebUI не взимает никаких процентов. Однако выбранная платформа финансирования может иметь свои собственные сборы.",
|
||||
"Youtube": "YouTube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "Vyžaduje sa základná URL pre AUTOMATIC1111.",
|
||||
"Available list": "Dostupný zoznam",
|
||||
"Available Tools": "",
|
||||
"available!": "k dispozícii!",
|
||||
"available users": "dostupní používatelia",
|
||||
"available!": "k dispozícii!",
|
||||
"Away": "Neprítomný",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "Azure AI syntéza reči",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Ovládanie chatu",
|
||||
"Chat direction": "Smer chatu",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Prehľad chatu",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "Automatické generovanie značiek chatu",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "Ovládacie prvky",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Skopírované",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "URL zdieľanej konverzácie skopírované do schránky!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Dokumenty",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "nevytvára žiadne externé pripojenia a vaše dáta zostávajú bezpečne na vašom lokálnom serveri.",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Nestahujte náhodné pipelines zo zdrojov, ktorým nedôverujete.",
|
||||
"Don't have an account?": "Nemáte účet?",
|
||||
"don't install random functions from sources you don't trust.": "Neinštalujte náhodné funkcie zo zdrojov, ktorým nedôverujete.",
|
||||
"don't install random tools from sources you don't trust.": "Neinštalujte náhodné nástroje zo zdrojov, ktorým nedôverujete.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Nestahujte náhodné pipelines zo zdrojov, ktorým nedôverujete.",
|
||||
"Don't like the style": "Nepáči sa mi tento štýl.",
|
||||
"Done": "Hotovo.",
|
||||
"Download": "Stiahnuť",
|
||||
"Download & Delete": "Stiahnuť a odstrániť",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "Sťahovanie zrušené",
|
||||
"Download Database": "Stiahnuť databázu",
|
||||
"Download & Delete": "Stiahnuť a odstrániť",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "Nakresliť",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Zadajte kľúč rozhrania API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Zadajte ID vyhľadávacieho mechanizmu Google PSE",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Zadajte veľkosť obrázka (napr. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Zadajte sem svoj kód...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "Zadajte svoj email",
|
||||
"Enter Your Full Name": "Zadajte svoje celé meno",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Zadajte svoju správu",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Zadajte svoju rolu",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "Zadajte sem svoj kód...",
|
||||
"Error": "Chyba",
|
||||
"ERROR": "Chyba",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Nepodarilo sa prečítať obsah schránky",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Nepodarilo sa uložiť konverzáciu",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "História spätnej väzby",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "Neváhajte pridať konkrétne detaily.",
|
||||
"Female": "",
|
||||
"File": "Súbor",
|
||||
"File added successfully.": "Súbor bol úspešne pridaný.",
|
||||
"File content updated successfully.": "Obsah súboru bol úspešne aktualizovaný.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "Všeobecné",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "Kľúč API pre Google PSE (Programmatically Search Engine)",
|
||||
"Google PSE Engine Id": "Google PSE Engine Id (Identifikátor vyhľadávacieho modulu Google PSE)",
|
||||
"Gravatar": "",
|
||||
"Group": "Skupina",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group": "Skupina",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Importovať nástroje",
|
||||
"Important Update": "Dôležitá aktualizácia",
|
||||
"Include": "Zahrnúť",
|
||||
"Includes SharePoint": "Zahŕňa SharePoint",
|
||||
"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`.",
|
||||
"Includes SharePoint": "Zahŕňa SharePoint",
|
||||
"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": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "Vstupné príkazy",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Uistite sa, že sú uzavreté pomocou",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Uistite sa, že exportujete súbor workflow.json vo formáte API z ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Spravovať",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "Správa pipelines",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "Marec",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Viac",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Meno",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Nebol nájdený žiadny obsah.",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "Žiadny obsah na diskusiu.",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Nie je dostupná žiadna vzdialenosť",
|
||||
"No feedbacks found": "Žiadna spätná väzba nenájdená",
|
||||
"No file selected": "Nebola vybratá žiadna súbor",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Neboli nájdené žiadne výsledky",
|
||||
"No search query generated": "Nebola vygenerovaná žiadna vyhľadávacia otázka.",
|
||||
"No source available": "Nie je dostupný žiadny zdroj.",
|
||||
"No suggestion prompts": "Žiadne navrhované prompty",
|
||||
"No users were found.": "",
|
||||
"No valves": "",
|
||||
"No valves to update": "Žiadne ventily na aktualizáciu",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Žiadne navrhované prompty",
|
||||
"None": "Žiadny",
|
||||
"Not factually correct": "Nie je fakticky správne",
|
||||
"Not helpful": "Nepomocné",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "Je vyžadovaný odkaz/adresa URL alebo kľúč OpenAI.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "alebo",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Prosím, pozorne si prečítajte nasledujúce upozornenia:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Prosím, zadajte zadanie.",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "Pozitívny prístup",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "Profil",
|
||||
"Profile Image": "Profilový obrázok",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (napr. Povedz mi zábavnú skutočnosť o Rímskej ríši)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Model na prehodnotenie poradia",
|
||||
"Reset": "režim Reset",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "Resetovať obrázok",
|
||||
"Reset Upload Directory": "Resetovať adresár nahrávania",
|
||||
"Reset Vector Storage/Knowledge": "Resetovanie úložiska vektorov/znalostí",
|
||||
"Reset view": "",
|
||||
"Reset Image": "Resetovať obrázok",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Oznámenia o odpovediach nie je možné aktivovať, pretože povolenia webu boli zamietnuté. Navštívte nastavenia svojho prehliadača a povoľte potrebný prístup.",
|
||||
"Response splitting": "Rozdelenie odpovede",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "Výsledok",
|
||||
"Result": "Výsledok",
|
||||
"RESULT": "Výsledok",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "Vstup pre chat vo formáte Rich Text",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Uložiť a Vytvoriť",
|
||||
"Save & Update": "Uložiť a aktualizovať",
|
||||
"Save As Copy": "Uložiť ako kópiu",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Uložiť štítok",
|
||||
"Saved": "Uložené",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Ukladanie záznamov chatu priamo do úložiska vášho prehliadača už nie je podporované. Venujte prosím chvíľu stiahnutiu a vymazaniu svojich záznamov chatu kliknutím na tlačidlo nižšie. Nemajte obavy, môžete ľahko znovu importovať svoje záznamy chatu na backend prostredníctvom",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Zdieľať",
|
||||
"Share Chat": "Zdieľať chat",
|
||||
"Share to Open WebUI Community": "Zdieľať s komunitou OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Zobraziť",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Motor prevodu reči na text",
|
||||
"Start of the channel": "Začiatok kanála",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Zastaviť",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Sekvencia zastavenia",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Model rozpoznávania reči na text (STT)",
|
||||
"STT Settings": "Nastavenia STT (Rozpoznávanie reči)",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Povedzte nám viac.",
|
||||
"Temperature": "",
|
||||
"Temporary Chat": "Dočasný chat",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Rozdeľovač textu",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Stroj na prevod textu na reč",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Režim URL",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Použite '#' vo vstupe promptu na načítanie a zahrnutie vašich vedomostí.",
|
||||
"Use Gravatar": "Použiť Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "Použiť iniciály",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Zdieľali ste tento chat.",
|
||||
"You're a helpful assistant.": "Ste užitočný asistent.",
|
||||
"You're now logged in.": "Teraz ste prihlásený(-á).",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Stav vášho účtu je aktuálne čakajúci na aktiváciu.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Celý váš príspevok pôjde priamo vývojárovi pluginu; Open WebUI si neberie žiadne percento. Zvolená platforma na financovanie však môže mať vlastné poplatky.",
|
||||
"Youtube": "YouTube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "Потребна је основна адреса за AUTOMATIC1111.",
|
||||
"Available list": "Списак доступног",
|
||||
"Available Tools": "",
|
||||
"available!": "доступно!",
|
||||
"available users": "доступни корисници",
|
||||
"available!": "доступно!",
|
||||
"Away": "Одсутан",
|
||||
"Awful": "Грозно",
|
||||
"Azure AI Speech": "Azure AI говор",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Бета",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Контроле ћаскања",
|
||||
"Chat direction": "Смер ћаскања",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Преглед ћаскања",
|
||||
"Chat Permissions": "Дозволе ћаскања",
|
||||
"Chat Tags Auto-Generation": "Самостварање ознака ћаскања",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "Контроле",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Копирано",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "Адреса дељеног ћаскања ископирана у оставу!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Документи",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "не отвара никакве спољне везе и ваши подаци остају сигурно на вашем локално хостованом серверу.",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Не преузимајте насумичне pipelines са извора којима не верујете.",
|
||||
"Don't have an account?": "Немате налог?",
|
||||
"don't install random functions from sources you don't trust.": "",
|
||||
"don't install random tools from sources you don't trust.": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Не преузимајте насумичне pipelines са извора којима не верујете.",
|
||||
"Don't like the style": "Не свиђа ми се стил",
|
||||
"Done": "Готово",
|
||||
"Download": "Преузми",
|
||||
"Download & Delete": "Преузми и избриши",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "Преузимање отказано",
|
||||
"Download Database": "Преузми базу података",
|
||||
"Download & Delete": "Преузми и избриши",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "Нацртај",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Унесите Гоогле ПСЕ АПИ кључ",
|
||||
"Enter Google PSE Engine Id": "Унесите Гоогле ПСЕ ИД машине",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Унесите величину слике (нпр. 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Унесите свој код овде...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "Унесите вашу е-пошту",
|
||||
"Enter Your Full Name": "Унесите ваше име и презиме",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Унесите вашу улогу",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "Унесите свој код овде...",
|
||||
"Error": "Грешка",
|
||||
"ERROR": "ГРЕШКА",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Неуспешно читање садржаја оставе",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Неуспешно чување разговора",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Историјат повратних података",
|
||||
"Feedbacks": "Повратни подаци",
|
||||
"Feel free to add specific details": "Слободно додајте специфичне детаље",
|
||||
"Female": "",
|
||||
"File": "Датотека",
|
||||
"File added successfully.": "",
|
||||
"File content updated successfully.": "",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "Опште",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "Гоогле ПСЕ АПИ кључ",
|
||||
"Google PSE Engine Id": "Гоогле ПСЕ ИД мотора",
|
||||
"Gravatar": "",
|
||||
"Group": "Група",
|
||||
"Group created successfully": "Група направљена успешно",
|
||||
"Group deleted successfully": "Група обрисана успешно",
|
||||
"Group Description": "Опис групе",
|
||||
"Group Name": "Назив групе",
|
||||
"Group": "Група",
|
||||
"Group updated successfully": "Група измењена успешно",
|
||||
"Groups": "Групе",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "",
|
||||
"Important Update": "Важно ажурирање",
|
||||
"Include": "",
|
||||
"Includes SharePoint": "Укључује SharePoint",
|
||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Укључи `--api` заставицу при покретању stable-diffusion-webui",
|
||||
"Includes SharePoint": "Укључује SharePoint",
|
||||
"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": "Инфо",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "Унеси наредбе",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Уверите се да их затворите са",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "Управљај",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "Управљај моделима",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Управљај OpenAI АПИ везама",
|
||||
"Manage Pipelines": "Управљање цевоводима",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "Март",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Више",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Име",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "",
|
||||
"No feedbacks found": "",
|
||||
"No file selected": "",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Нема резултата",
|
||||
"No search query generated": "Није генерисан упит за претрагу",
|
||||
"No source available": "Нема доступног извора",
|
||||
"No suggestion prompts": "Нема предложених промптова",
|
||||
"No users were found.": "Нема корисника.",
|
||||
"No valves": "",
|
||||
"No valves to update": "",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Нема предложених промптова",
|
||||
"None": "Нико",
|
||||
"Not factually correct": "Није чињенично тачно",
|
||||
"Not helpful": "Није од помоћи",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "Потребан је OpenAI URL/кључ.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "или",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "Позитиван став",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "Профил",
|
||||
"Profile Image": "Слика профила",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Упит (нпр. „подели занимљивост о Римском царству“)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Модел поновног рангирања",
|
||||
"Reset": "Поврати",
|
||||
"Reset All Models": "Поврати све моделе",
|
||||
"Reset Image": "Ресетуј слику",
|
||||
"Reset Upload Directory": "",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "",
|
||||
"Reset Image": "Ресетуј слику",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
|
||||
"Response splitting": "",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "Исход",
|
||||
"Result": "Исход",
|
||||
"RESULT": "Исход",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "Богат унос текста у ћаскању",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Сачувај и направи",
|
||||
"Save & Update": "Сачувај и ажурирај",
|
||||
"Save As Copy": "Сачувај као копију",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Сачувај ознаку",
|
||||
"Saved": "Сачувано",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Чување ћаскања директно у складиште вашег прегледача више није подржано. Одвојите тренутак да преузмете и избришете ваша ћаскања кликом на дугме испод. Не брините, можете лако поново увезти ваша ћаскања у бекенд кроз",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Подели",
|
||||
"Share Chat": "Подели ћаскање",
|
||||
"Share to Open WebUI Community": "Подели са OpenWebUI заједницом",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Прикажи",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Мотор за говор у текст",
|
||||
"Start of the channel": "Почетак канала",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Заустави",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Секвенца заустављања",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "STT модел",
|
||||
"STT Settings": "STT подешавања",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Реците нам више:",
|
||||
"Temperature": "Температура",
|
||||
"Temporary Chat": "Привремено ћаскање",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Раздвајач текста",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Мотор за текст у говор",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Режим адресе",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "Користи Граватар",
|
||||
"Use groups to group your users and assign permissions.": "Користите групе да бисте разврстали ваше кориснике и доделили овлашћења.",
|
||||
"Use Initials": "Користи иницијале",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Поделили сте ово ћаскање",
|
||||
"You're a helpful assistant.": "Ти си користан помоћник.",
|
||||
"You're now logged in.": "Сада сте пријављени.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
|
||||
"Youtube": "Јутјуб",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 bas-URL krävs.",
|
||||
"Available list": "Tillgänglig lista",
|
||||
"Available Tools": "Tillgängliga verktyg",
|
||||
"available!": "tillgänglig!",
|
||||
"available users": "tillgängliga användare",
|
||||
"available!": "tillgänglig!",
|
||||
"Away": "Borta",
|
||||
"Awful": "Hemsk",
|
||||
"Azure AI Speech": "Azure AI Speech",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7 Endpoint",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 Prenumerationsnyckel",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Bocha Search API-nyckel",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Chattkontroller",
|
||||
"Chat direction": "Chattriktning",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Chattöversikt",
|
||||
"Chat Permissions": "Chattbehörigheter",
|
||||
"Chat Tags Auto-Generation": "Automatisk generering av chatt-taggar",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Kontrollera upprepningen av tokensekvenser i den genererade texten. Ett högre värde (t.ex. 1.5) kommer att straffa upprepningar starkare, medan ett lägre värde (t.ex. 1.1) kommer att vara mer förlåtande. Vid 1 är det inaktiverat.",
|
||||
"Controls": "Kontroller",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Kontrollerar balansen mellan sammanhang och mångfald i utdata. Ett lägre värde kommer att resultera i mer fokuserad och sammanhängande text.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Kopierad",
|
||||
"Copied link to clipboard": "Kopierad länk till urklipp",
|
||||
"Copied shared chat URL to clipboard!": "Kopierad delad chatt-URL till urklipp!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Dokument",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "gör inga externa anslutningar, och dina data förblir säkra på din lokalt värdade server.",
|
||||
"Domain Filter List": "Domänfilterlista",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Hämta inte slumpmässiga pipelines från källor du inte litar på.",
|
||||
"Don't have an account?": "Har du inget konto?",
|
||||
"don't install random functions from sources you don't trust.": "installera inte slumpmässiga funktioner från källor du inte litar på.",
|
||||
"don't install random tools from sources you don't trust.": "installera inte slumpmässiga verktyg från källor du inte litar på.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Hämta inte slumpmässiga pipelines från källor du inte litar på.",
|
||||
"Don't like the style": "Tycker inte om utseendet",
|
||||
"Done": "Klar",
|
||||
"Download": "Ladda ner",
|
||||
"Download & Delete": "Ladda ned och ta bort",
|
||||
"Download as SVG": "Ladda ner som SVG",
|
||||
"Download canceled": "Nedladdning avbruten",
|
||||
"Download Database": "Ladda ner databas",
|
||||
"Download & Delete": "Ladda ned och ta bort",
|
||||
"Drag and drop a file to upload or select a file to view": "Dra och släpp en fil för att ladda upp eller välj en fil för att visa",
|
||||
"Draw": "Rita",
|
||||
"Drop any files here to upload": "Släpp alla filer här för att ladda upp",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Ange Google PSE API-nyckel",
|
||||
"Enter Google PSE Engine Id": "Ange Google PSE Engine Id",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Ange bildstorlek (t.ex. 512x512)",
|
||||
"Enter Jina API Key": "Ange Jina API-nyckel",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "Ange Yacy-lösenord",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Ange Yacy URL (t.ex. http://yacy.example.com:8090)",
|
||||
"Enter Yacy Username": "Ange Yacy-användarnamn",
|
||||
"Enter your code here...": "Ange din kod här...",
|
||||
"Enter your current password": "Ange ditt nuvarande lösenord",
|
||||
"Enter Your Email": "Ange din e-post",
|
||||
"Enter Your Full Name": "Ange ditt fullständiga namn",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Skriv ditt meddelande",
|
||||
"Enter your name": "Skriv ditt namn",
|
||||
"Enter Your Name": "Skriv ditt namn",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Ange din roll",
|
||||
"Enter Your Username": "Ange ditt användarnamn",
|
||||
"Enter your webhook URL": "Ange din webhook-URL",
|
||||
"Enter your code here...": "Ange din kod här...",
|
||||
"Error": "Fel",
|
||||
"ERROR": "FEL",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "Misslyckades med att läsa in filinnehåll.",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Misslyckades med att läsa urklippsinnehåll",
|
||||
"Failed to save connections": "Misslyckades med att spara anslutningar",
|
||||
"Failed to save conversation": "Misslyckades med att spara konversationen",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Feedbackhistorik",
|
||||
"Feedbacks": "Återkopplingar",
|
||||
"Feel free to add specific details": "Tveka inte att lägga till specifika detaljer",
|
||||
"Female": "",
|
||||
"File": "Fil",
|
||||
"File added successfully.": "Filen har lagts till.",
|
||||
"File content updated successfully.": "Filinnehållet har uppdaterats.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Gemini API-konfiguration",
|
||||
"Gemini API Key is required.": "Gemini API-nyckel krävs.",
|
||||
"Gender": "",
|
||||
"General": "Allmän",
|
||||
"Generate": "Generera",
|
||||
"Generate an image": "Generera en bild",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Google PSE API-nyckel",
|
||||
"Google PSE Engine Id": "Google PSE Engine Id",
|
||||
"Gravatar": "",
|
||||
"Group": "Grupp",
|
||||
"Group created successfully": "Gruppen har skapats",
|
||||
"Group deleted successfully": "Gruppen har tagits bort",
|
||||
"Group Description": "Gruppbeskrivning",
|
||||
"Group Name": "Gruppnamn",
|
||||
"Group": "Grupp",
|
||||
"Group updated successfully": "Gruppen har uppdaterats",
|
||||
"Groups": "Grupper",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Importera verktyg",
|
||||
"Important Update": "Viktig uppdatering",
|
||||
"Include": "Inkludera",
|
||||
"Includes SharePoint": "Inkluderar SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Inkluderar SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injicera hela innehållet som kontext för omfattande bearbetning, detta rekommenderas för komplexa frågor.",
|
||||
"Input": "",
|
||||
"Input commands": "Indatakommandon",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "Gör lösenordet synligt i användargränssnittet",
|
||||
"Make sure to enclose them with": "Se till att bifoga dem med",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Se till att exportera en workflow.json-fil som API-format från ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Hantera",
|
||||
"Manage Direct Connections": "Hantera direkta anslutningar",
|
||||
"Manage Models": "Hantera modeller",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Hantera OpenAI API-anslutningar",
|
||||
"Manage Pipelines": "Hantera rörledningar",
|
||||
"Manage Tool Servers": "Hantera verktygsservrar",
|
||||
"Manage your account information.": "",
|
||||
"March": "mars",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Mer",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Namn",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Namnge din kunskapsbas",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Inget innehåll hittades",
|
||||
"No content found in file.": "Inget innehåll hittades i filen.",
|
||||
"No content to speak": "Inget innehåll att tala",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Inget avstånd tillgängligt",
|
||||
"No feedbacks found": "Ingen feedback hittades",
|
||||
"No file selected": "Ingen fil vald",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Inga resultat hittades",
|
||||
"No search query generated": "Ingen sökfråga genererad",
|
||||
"No source available": "Ingen tillgänglig källa",
|
||||
"No suggestion prompts": "Inga föreslagna promptar",
|
||||
"No users were found.": "Inga användare hittades.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Inga ventiler att uppdatera",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Inga föreslagna promptar",
|
||||
"None": "Ingen",
|
||||
"Not factually correct": "Inte faktiskt korrekt",
|
||||
"Not helpful": "Inte hjälpsam",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "OpenAI API-inställningar uppdaterade",
|
||||
"OpenAI URL/Key required.": "OpenAI-URL/nyckel krävs.",
|
||||
"openapi.json URL or Path": "openapi.json URL eller sökväg",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "Alternativ för att köra en lokal syn-språkmodell i bildbeskrivningen. Parametrarna hänvisar till en modell som finns på Hugging Face. Denna parameter utesluter picture_description_api.",
|
||||
"or": "eller",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "Playwright WebSocket URL",
|
||||
"Please carefully review the following warnings:": "Vänligen granska följande varningar noggrant:",
|
||||
"Please do not close the settings page while loading the model.": "Stäng inte inställningssidan medan modellen läses in.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Vänligen ange en uppmaning",
|
||||
"Please enter a valid path": "Vänligen ange en giltig sökväg",
|
||||
"Please enter a valid URL": "Vänligen ange en giltig URL",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Port",
|
||||
"Positive attitude": "Positivt inställning",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Prefix ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID används för att undvika konflikter med andra anslutningar genom att lägga till ett prefix till modell-ID:n - lämna tomt för att inaktivera",
|
||||
"Prevent file creation": "Förhindra filskapande",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "Föregående meddelande",
|
||||
"Private": "Privat",
|
||||
"Profile": "Profil",
|
||||
"Profile Image": "Profilbild",
|
||||
"Prompt": "Prompt",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Instruktion (t.ex. Berätta en kuriosa om Romerska Imperiet)",
|
||||
"Prompt Autocompletion": "Automatisk komplettering av prompter",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Reranking modell",
|
||||
"Reset": "Återställ",
|
||||
"Reset All Models": "Återställ alla modeller",
|
||||
"Reset Image": "Återställ bild",
|
||||
"Reset Upload Directory": "Återställ uppladdningskatalog",
|
||||
"Reset Vector Storage/Knowledge": "Återställ vektorlagring/kunskap",
|
||||
"Reset view": "Återställ vy",
|
||||
"Reset Image": "Återställ bild",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Svarsaviseringar kan inte aktiveras eftersom webbplatsens behörigheter har nekats. Besök dina webbläsarinställningar för att ge nödvändig åtkomst.",
|
||||
"Response splitting": "Svarsdelning",
|
||||
"Response Watermark": "Svarsvattenstämpel",
|
||||
"RESULT": "Resultat",
|
||||
"Result": "Resultat",
|
||||
"RESULT": "Resultat",
|
||||
"Retrieval": "Hämtning",
|
||||
"Retrieval Query Generation": "Generering av hämtningsfrågor",
|
||||
"Rich Text Input for Chat": "Rich Text-inmatning för chatt",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Spara och skapa",
|
||||
"Save & Update": "Spara och uppdatera",
|
||||
"Save As Copy": "Spara som kopia",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Spara tagg",
|
||||
"Saved": "Sparad",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Att spara chatloggar direkt till din webbläsares lagring stöds inte längre. Ta en stund och ladda ner och radera dina chattloggar genom att klicka på knappen nedan. Oroa dig inte, du kan enkelt importera dina chattloggar till backend genom",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Dela",
|
||||
"Share Chat": "Dela chatt",
|
||||
"Share to Open WebUI Community": "Dela till OpenWebUI Community",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Delningsbehörigheter",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "Genvägar med en asterisk (*) är situationsbundna och endast aktiva under specifika förhållanden.",
|
||||
"Show": "Visa",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "Tal-till-text",
|
||||
"Speech-to-Text Engine": "Tal-till-text-motor",
|
||||
"Start of the channel": "Början av kanalen",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Stopp",
|
||||
"Stop Generating": "Sluta generera",
|
||||
"Stop Sequence": "Stoppsekvens",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "Ta bort befintlig OCR",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Ta bort befintlig OCR-text från PDF:en och kör OCR igen. Ignoreras om Force OCR är aktiverat. Standardvärdet är False.",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Tal-till-text-modell",
|
||||
"STT Settings": "Tal-till-text-inställningar",
|
||||
"Stylized PDF Export": "Stiliserad PDF-export",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Berätta mer:",
|
||||
"Temperature": "Temperatur",
|
||||
"Temporary Chat": "Tillfällig chatt",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Textdelare",
|
||||
"Text-to-Speech": "Text-till-tal",
|
||||
"Text-to-Speech Engine": "Text-till-tal-motor",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL-läge",
|
||||
"Usage": "Användning",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Använd '#' i prompten för att läsa in och inkludera din kunskap",
|
||||
"Use Gravatar": "Använd Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "Använd grupper för att gruppera dina användare och tilldela behörigheter.",
|
||||
"Use Initials": "Använd initialer",
|
||||
"Use LLM": "Använd LLM",
|
||||
"Use no proxy to fetch page contents.": "Använd ingen proxy för att hämta sidinnehåll.",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Använd proxy som anges av miljövariablerna http_proxy och https_proxy för att hämta sidinnehåll.",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Du har delat denna chatt",
|
||||
"You're a helpful assistant.": "Du är en hjälpsam assistent.",
|
||||
"You're now logged in.": "Du är nu inloggad.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Ditt konto väntar på att bli aktiverat",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Hela ditt bidrag går direkt till pluginutvecklaren; Open WebUI tar ingen procentandel. Däremot kan den valda finansieringsplattformen ha egna avgifter.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "ต้องการ URL ฐานของ AUTOMATIC1111",
|
||||
"Available list": "",
|
||||
"Available Tools": "",
|
||||
"available!": "พร้อมใช้งาน!",
|
||||
"available users": "ผู้ใช้ที่ใช้ได้",
|
||||
"available!": "พร้อมใช้งาน!",
|
||||
"Away": "ไม่อยู่",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "การควบคุมแชท",
|
||||
"Chat direction": "ทิศทางการแชท",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "การควบคุม",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "คัดลอก URL แชทที่แชร์ไปยังคลิปบอร์ดแล้ว!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "เอกสาร",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "ไม่เชื่อมต่อภายนอกใดๆ และข้อมูลของคุณจะอยู่บนเซิร์ฟเวอร์ที่โฮสต์ในท้องถิ่นของคุณอย่างปลอดภัย",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "อย่าดึง pipelines แบบสุ่มจากแหล่งที่ไม่น่าเชื่อถือ",
|
||||
"Don't have an account?": "ยังไม่มีบัญชี?",
|
||||
"don't install random functions from sources you don't trust.": "อย่าติดตั้งฟังก์ชันแบบสุ่มจากแหล่งที่คุณไม่ไว้วางใจ",
|
||||
"don't install random tools from sources you don't trust.": "อย่าติดตั้งเครื่องมือแบบสุ่มจากแหล่งที่คุณไม่ไว้วางใจ",
|
||||
"don't fetch random pipelines from sources you don't trust.": "อย่าดึง pipelines แบบสุ่มจากแหล่งที่ไม่น่าเชื่อถือ",
|
||||
"Don't like the style": "ไม่ชอบสไตล์นี้",
|
||||
"Done": "เสร็จสิ้น",
|
||||
"Download": "ดาวน์โหลด",
|
||||
"Download & Delete": "ดาวน์โหลดและลบ",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "ยกเลิกการดาวน์โหลด",
|
||||
"Download Database": "ดาวน์โหลดฐานข้อมูล",
|
||||
"Download & Delete": "ดาวน์โหลดและลบ",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "ใส่คีย์ API ของ Google PSE",
|
||||
"Enter Google PSE Engine Id": "ใส่รหัสเครื่องยนต์ของ Google PSE",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "ใส่ขนาดภาพ (เช่น 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "ป้อนโค้ดของคุณที่นี่...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "ใส่อีเมลของคุณ",
|
||||
"Enter Your Full Name": "ใส่ชื่อเต็มของคุณ",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "ใส่ข้อความของคุณ",
|
||||
"Enter your name": "กรอกชื่อของคุณ",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "ใส่บทบาทของคุณ",
|
||||
"Enter Your Username": "กรอกชื่อบัญชีผู้ใช้ของคุณ",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "ป้อนโค้ดของคุณที่นี่...",
|
||||
"Error": "ข้อผิดพลาด",
|
||||
"ERROR": "",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "อ่านเนื้อหาคลิปบอร์ดล้มเหลว",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "บันทึกการสนทนาล้มเหลว",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "ประวัติการการตอบรับ",
|
||||
"Feedbacks": "การตอบรับ",
|
||||
"Feel free to add specific details": "สามารถเพิ่มรายละเอียดเฉพาะได้",
|
||||
"Female": "",
|
||||
"File": "ไฟล์",
|
||||
"File added successfully.": "",
|
||||
"File content updated successfully.": "",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "ทั่วไป",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "คีย์ API ของ Google PSE",
|
||||
"Google PSE Engine Id": "รหัสเครื่องยนต์ของ Google PSE",
|
||||
"Gravatar": "",
|
||||
"Group": "กลุ่ม",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "ชื่อกลุ่ม",
|
||||
"Group": "กลุ่ม",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "กลุ่ม",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "นำเข้าเครื่องมือ",
|
||||
"Important Update": "อัปเดตสำคัญ",
|
||||
"Include": "",
|
||||
"Includes SharePoint": "รวม SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "รวม SharePoint",
|
||||
"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": "ข้อมูล",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "คำสั่งป้อนข้อมูล",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "จัดการ",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "จัดการไปป์ไลน์",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "มีนาคม",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "เพิ่มเติม",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "ชื่อ",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "ไม่มีเนื้อหาที่จะพูด",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "",
|
||||
"No feedbacks found": "",
|
||||
"No file selected": "ไม่ได้เลือกไฟล์",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "ไม่มีผลลัพธ์",
|
||||
"No search query generated": "ไม่มีการสร้างคำค้นหา",
|
||||
"No source available": "ไม่มีแหล่งข้อมูล",
|
||||
"No suggestion prompts": "ไม่มีพรอมพ์แนะนำ",
|
||||
"No users were found.": "",
|
||||
"No valves": "",
|
||||
"No valves to update": "ไม่มีวาล์วที่จะอัปเดต",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "ไม่มีพรอมพ์แนะนำ",
|
||||
"None": "ไม่มี",
|
||||
"Not factually correct": "ไม่ถูกต้องตามข้อเท็จจริง",
|
||||
"Not helpful": "",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "จำเป็นต้องใช้ URL/คีย์ OpenAI",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "หรือ",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "โปรดตรวจสอบคำเตือนต่อไปนี้อย่างละเอียด:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "ทัศนคติด้านบวก",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "โปรไฟล์",
|
||||
"Profile Image": "รูปโปรไฟล์",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "พรอมต์ (เช่น บอกข้อเท็จจริงที่น่าสนุกเกี่ยวกับจักรวรรดิโรมัน)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "จัดอันดับใหม่โมเดล",
|
||||
"Reset": "รีเซ็ต",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "รีเซ็ตภาพ",
|
||||
"Reset Upload Directory": "รีเซ็ตไดเร็กทอรีการอัปโหลด",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "",
|
||||
"Reset Image": "รีเซ็ตภาพ",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "ไม่สามารถเปิดการแจ้งเตือนการตอบสนองได้เนื่องจากเว็บไซต์ปฏิเสธ กรุณาเข้าการตั้งค่าเบราว์เซอร์ของคุณเพื่อให้สิทธิ์การเข้าถึงที่จำเป็น",
|
||||
"Response splitting": "",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "ผลลัพธ์",
|
||||
"Result": "",
|
||||
"RESULT": "ผลลัพธ์",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "บันทึกและสร้าง",
|
||||
"Save & Update": "บันทึกและอัปเดต",
|
||||
"Save As Copy": "",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "",
|
||||
"Saved": "",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "การบันทึกบันทึกการสนทนาโดยตรงไปยังที่จัดเก็บในเบราว์เซอร์ของคุณไม่ได้รับการสนับสนุนอีกต่อไป โปรดสละเวลาสักครู่เพื่อดาวน์โหลดและลบบันทึกการสนทนาของคุณโดยคลิกที่ปุ่มด้านล่าง ไม่ต้องกังวล คุณสามารถนำเข้าบันทึกการสนทนาของคุณกลับไปยังส่วนแบ็กเอนด์ได้อย่างง่ายดายผ่าน",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "แชร์",
|
||||
"Share Chat": "แชร์แชท",
|
||||
"Share to Open WebUI Community": "แชร์ไปยังชุมชน OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "แสดง",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "เครื่องมือแปลงเสียงเป็นข้อความ",
|
||||
"Start of the channel": "จุดเริ่มต้นของช่อง",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "หยุดลำดับ",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "โมเดลแปลงเสียงเป็นข้อความ",
|
||||
"STT Settings": "การตั้งค่าแปลงเสียงเป็นข้อความ",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "บอกเรามากขึ้น:",
|
||||
"Temperature": "อุณหภูมิ",
|
||||
"Temporary Chat": "",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "เครื่องมือแปลงข้อความเป็นเสียง",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "โหมด URL",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "ใช้ Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "ใช้ตัวย่อ",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "คุณได้แชร์แชทนี้แล้ว",
|
||||
"You're a helpful assistant.": "คุณคือผู้ช่วยที่มีประโยชน์",
|
||||
"You're now logged in.": "คุณเข้าสู่ระบบแล้ว",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "สถานะบัญชีของคุณกำลังรอการเปิดใช้งาน",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "การสนับสนุนทั้งหมดของคุณจะไปยังนักพัฒนาปลั๊กอินโดยตรง; Open WebUI ไม่รับส่วนแบ่งใด ๆ อย่างไรก็ตาม แพลตฟอร์มการระดมทุนที่เลือกอาจมีค่าธรรมเนียมของตัวเอง",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Esasy URL zerur.",
|
||||
"Available list": "",
|
||||
"Available Tools": "",
|
||||
"available!": "elýeterli!",
|
||||
"available users": "elýeterli ulanyjylar",
|
||||
"available!": "elýeterli!",
|
||||
"Away": "Uzakda",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "",
|
||||
"Chat direction": "Çat ugrukdyryş",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "Paýlaşylan çat URL buferine göçürildi!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Resminamalar",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ynamdar bolmadyk çeşmelerden tötänleýin pipelines almaň.",
|
||||
"Don't have an account?": "",
|
||||
"don't install random functions from sources you don't trust.": "",
|
||||
"don't install random tools from sources you don't trust.": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ynamdar bolmadyk çeşmelerden tötänleýin pipelines almaň.",
|
||||
"Don't like the style": "",
|
||||
"Done": "Tamam",
|
||||
"Download": "",
|
||||
"Download & Delete": "Göçürip al we poz",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "",
|
||||
"Download Database": "",
|
||||
"Download & Delete": "Göçürip al we poz",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "",
|
||||
"Enter Google PSE Engine Id": "",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Kodyňyzy şu ýere giriziň...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "",
|
||||
"Enter Your Full Name": "",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "Kodyňyzy şu ýere giriziň...",
|
||||
"Error": "Ýalňyşlyk",
|
||||
"ERROR": "",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Söhbeti ýazdyrmak başa barmady",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "",
|
||||
"Female": "",
|
||||
"File": "Faýl",
|
||||
"File added successfully.": "",
|
||||
"File content updated successfully.": "",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "Umumy",
|
||||
"Generate": "Döret",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "",
|
||||
"Google PSE Engine Id": "",
|
||||
"Gravatar": "",
|
||||
"Group": "Topar",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group": "Topar",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "",
|
||||
"Important Update": "Möhüm täzelenme",
|
||||
"Include": "",
|
||||
"Includes SharePoint": "SharePoint bar",
|
||||
"Include `--api-auth` flag when running stable-diffusion-webui": "",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "",
|
||||
"Includes SharePoint": "SharePoint bar",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "",
|
||||
"Male": "",
|
||||
"Manage": "",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "Mart",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Has köp",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Ady",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "",
|
||||
"No feedbacks found": "",
|
||||
"No file selected": "",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "",
|
||||
"No search query generated": "",
|
||||
"No source available": "",
|
||||
"No suggestion prompts": "Teklip edilýän prompt ýok",
|
||||
"No users were found.": "",
|
||||
"No valves": "",
|
||||
"No valves to update": "",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Teklip edilýän prompt ýok",
|
||||
"None": "Hiç",
|
||||
"Not factually correct": "",
|
||||
"Not helpful": "",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "Profil",
|
||||
"Profile Image": "",
|
||||
"Prompt": "Düşündiriş",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "",
|
||||
"Reset": "Täzeden Guruň",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "Suraty täzeden sazla",
|
||||
"Reset Upload Directory": "",
|
||||
"Reset Vector Storage/Knowledge": "",
|
||||
"Reset view": "",
|
||||
"Reset Image": "Suraty täzeden sazla",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
|
||||
"Response splitting": "",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "NETIJE",
|
||||
"Result": "",
|
||||
"RESULT": "NETIJE",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "",
|
||||
"Save & Update": "",
|
||||
"Save As Copy": "",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "",
|
||||
"Saved": "Saklanan",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Paýlaş",
|
||||
"Share Chat": "Çaty Paýlaş",
|
||||
"Share to Open WebUI Community": "",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Görkez",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "",
|
||||
"Start of the channel": "Kanal başy",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Bes et",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "",
|
||||
"STT Settings": "",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "",
|
||||
"Temperature": "",
|
||||
"Temporary Chat": "",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "",
|
||||
"Usage": "Ulanyş",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "",
|
||||
"Use Gravatar": "",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "",
|
||||
"You're a helpful assistant.": "",
|
||||
"You're now logged in.": "",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
|
||||
"Youtube": "",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Temel URL gereklidir.",
|
||||
"Available list": "Mevcut liste",
|
||||
"Available Tools": "Mevcut Araçlar",
|
||||
"available!": "mevcut!",
|
||||
"available users": "kullanılabilir kullanıcılar",
|
||||
"available!": "mevcut!",
|
||||
"Away": "Uzakta",
|
||||
"Awful": "Berbat",
|
||||
"Azure AI Speech": "Azure AI Konuşma",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Bing Arama V7 Uç Noktası",
|
||||
"Bing Search V7 Subscription Key": "Bing Arama V7 Abonelik Anahtarı",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Bocha Arama API Anahtarı",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Sohbet Kontrolleri",
|
||||
"Chat direction": "Sohbet Yönü",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Sohbet Genel Bakış",
|
||||
"Chat Permissions": "Sohbet İzinleri",
|
||||
"Chat Tags Auto-Generation": "Sohbet Etiketleri Otomatik Oluşturma",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "Kontroller",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Kopyalandı",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "Paylaşılan sohbet URL'si panoya kopyalandı!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Belgeler",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "herhangi bir harici bağlantı yapmaz ve verileriniz güvenli bir şekilde yerel olarak barındırılan sunucunuzda kalır.",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Güvenmediğiniz kaynaklardan rastgele pipelines getirmeyin.",
|
||||
"Don't have an account?": "Hesabınız yok mu?",
|
||||
"don't install random functions from sources you don't trust.": "Tanımadığınız kaynaklardan rastgele fonksiyonlar yüklemeyin.",
|
||||
"don't install random tools from sources you don't trust.": "Tanımadığınız kaynaklardan rastgele araçlar yüklemeyin.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Güvenmediğiniz kaynaklardan rastgele pipelines getirmeyin.",
|
||||
"Don't like the style": "Tarzını beğenmedim",
|
||||
"Done": "Tamamlandı",
|
||||
"Download": "İndir",
|
||||
"Download & Delete": "İndir ve Sil",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "İndirme iptal edildi",
|
||||
"Download Database": "Veritabanını İndir",
|
||||
"Download & Delete": "İndir ve Sil",
|
||||
"Drag and drop a file to upload or select a file to view": "Yüklemek için bir dosyayı sürükleyip bırakın veya görüntülemek için bir dosya seçin",
|
||||
"Draw": "Çiz",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Google PSE API Anahtarını Girin",
|
||||
"Enter Google PSE Engine Id": "Google PSE Engine Id'sini Girin",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Görüntü Boyutunu Girin (örn. 512x512)",
|
||||
"Enter Jina API Key": "Jina API Anahtarını Girin",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Kodu buraya girin...",
|
||||
"Enter your current password": "Mevcut parolanızı girin",
|
||||
"Enter Your Email": "E-postanızı Girin",
|
||||
"Enter Your Full Name": "Tam Adınızı Girin",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Mesajınızı girin",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Rolünüzü Girin",
|
||||
"Enter Your Username": "Kullanıcı Adınızı Girin",
|
||||
"Enter your webhook URL": "Webhook URL'nizi girin",
|
||||
"Enter your code here...": "Kodu buraya girin...",
|
||||
"Error": "Hata",
|
||||
"ERROR": "HATA",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Pano içeriği okunamadı",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Sohbet kaydedilemedi",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Geri Bildirim Geçmişi",
|
||||
"Feedbacks": "Geri Bildirimler",
|
||||
"Feel free to add specific details": "Spesifik ayrıntılar eklemekten çekinmeyin",
|
||||
"Female": "",
|
||||
"File": "Dosya",
|
||||
"File added successfully.": "Dosya başarıyla eklendi.",
|
||||
"File content updated successfully.": "Dosya içeriği başarıyla güncellendi.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "Genel",
|
||||
"Generate": "Oluştur",
|
||||
"Generate an image": "Bir Görsel Oluştur",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Google PSE API Anahtarı",
|
||||
"Google PSE Engine Id": "Google PSE Engine Id",
|
||||
"Gravatar": "",
|
||||
"Group": "Grup",
|
||||
"Group created successfully": "Grup başarıyla oluşturuldu",
|
||||
"Group deleted successfully": "Grup başarıyla silindi",
|
||||
"Group Description": "Grup Açıklaması",
|
||||
"Group Name": "Grup Adı",
|
||||
"Group": "Grup",
|
||||
"Group updated successfully": "Grup başarıyla güncellendi",
|
||||
"Groups": "Gruplar",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Araçları İçe Aktar",
|
||||
"Important Update": "Önemli güncelleme",
|
||||
"Include": "Dahil etmek",
|
||||
"Includes SharePoint": "SharePoint içerir",
|
||||
"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",
|
||||
"Includes SharePoint": "SharePoint içerir",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "Giriş komutları",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Değişkenlerinizi şu şekilde biçimlendirin:",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "ComfyUI'dan API formatında bir workflow.json dosyası olarak dışa aktardığınızdan emin olun.",
|
||||
"Male": "",
|
||||
"Manage": "Yönet",
|
||||
"Manage Direct Connections": "Doğrudan Bağlantıları Yönet",
|
||||
"Manage Models": "Modelleri Yönet",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "OpenAI API Bağlantılarını Yönet",
|
||||
"Manage Pipelines": "Pipelineları Yönet",
|
||||
"Manage Tool Servers": "Araç Sunucularını Yönet",
|
||||
"Manage your account information.": "",
|
||||
"March": "Mart",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Daha Fazla",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Ad",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Bilgi tabanınıza bir ad verin",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "İçerik bulunamadı",
|
||||
"No content found in file.": "Dosyada içerik bulunamadı",
|
||||
"No content to speak": "Konuşacak içerik yok",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Mesafe mevcut değil",
|
||||
"No feedbacks found": "Geri bildirim bulunamadı",
|
||||
"No file selected": "Hiçbir dosya seçilmedi",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Sonuç bulunamadı",
|
||||
"No search query generated": "Hiç arama sorgusu oluşturulmadı",
|
||||
"No source available": "Kaynak mevcut değil",
|
||||
"No suggestion prompts": "Önerilen istem yok",
|
||||
"No users were found.": "Kullanıcı bulunamadı.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Güncellenecek valvler yok",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Önerilen istem yok",
|
||||
"None": "Yok",
|
||||
"Not factually correct": "Gerçeklere göre doğru değil",
|
||||
"Not helpful": "Yardımcı olmadı",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "OpenAI API ayarları güncellendi",
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Anahtar gereklidir.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "veya",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "Playwright WebSocket URL",
|
||||
"Please carefully review the following warnings:": "Lütfen aşağıdaki uyarıları dikkatlice inceleyin:",
|
||||
"Please do not close the settings page while loading the model.": "Lütfen model yüklenirken ayarlar sayfasını kapatmayınız",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Lütfen bir prompt girin",
|
||||
"Please enter a valid path": "Lütfen geçerli bir yol giriniz",
|
||||
"Please enter a valid URL": "Lütfen geçerli bir URL adresi giriniz",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Port",
|
||||
"Positive attitude": "Olumlu yaklaşım",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "Gizli",
|
||||
"Profile": "Profil",
|
||||
"Profile Image": "Profil Fotoğrafı",
|
||||
"Prompt": "İstem",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (örn. Roma İmparatorluğu hakkında ilginç bir bilgi verin)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Yeniden Sıralama Modeli",
|
||||
"Reset": "Sıfırla",
|
||||
"Reset All Models": "Tüm Modelleri Sıfırla",
|
||||
"Reset Image": "Görüntüyü sıfırla",
|
||||
"Reset Upload Directory": "Yükleme Dizinini Sıfırla",
|
||||
"Reset Vector Storage/Knowledge": "Vektör Depolama/Bilgiyi Sıfırla",
|
||||
"Reset view": "Görünümü sıfırla",
|
||||
"Reset Image": "Görüntüyü sıfırla",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Web sitesi izinleri reddedildiğinden yanıt bildirimleri etkinleştirilemiyor. Gerekli erişimi sağlamak için lütfen tarayıcı ayarlarınızı ziyaret edin.",
|
||||
"Response splitting": "Yanıt bölme",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "Sonuç",
|
||||
"Result": "Sonuç",
|
||||
"RESULT": "Sonuç",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "Alıntı Sorgu Oluşturma",
|
||||
"Rich Text Input for Chat": "Sohbet için Zengin Metin Girişi",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Kaydet ve Oluştur",
|
||||
"Save & Update": "Kaydet ve Güncelle",
|
||||
"Save As Copy": "Kopya Olarak Kaydet",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Etiketi Kaydet",
|
||||
"Saved": "Kaydedildi",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Sohbet kayıtlarının doğrudan tarayıcınızın depolama alanına kaydedilmesi artık desteklenmemektedir. Lütfen aşağıdaki butona tıklayarak sohbet kayıtlarınızı indirmek ve silmek için bir dakikanızı ayırın. Endişelenmeyin, sohbet günlüklerinizi arkayüze kolayca yeniden aktarabilirsiniz:",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Paylaş",
|
||||
"Share Chat": "Sohbeti Paylaş",
|
||||
"Share to Open WebUI Community": "OpenWebUI Topluluğu ile Paylaş",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Göster",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Konuşmadan Metne Motoru",
|
||||
"Start of the channel": "Kanalın başlangıcı",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Durdur",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Diziyi Durdur",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "STT Modeli",
|
||||
"STT Settings": "STT Ayarları",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Bize daha fazlasını anlat:",
|
||||
"Temperature": "Temperature",
|
||||
"Temporary Chat": "Geçici Sohbet",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Metin Bölücü",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Metinden Sese Motoru",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL Modu",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Bilginizi yüklemek ve dahil etmek için prompt girişinde '#' kullanın.",
|
||||
"Use Gravatar": "Gravatar Kullan",
|
||||
"Use groups to group your users and assign permissions.": "Kullanıcılarınızı gruplamak ve izinler atamak için grupları kullanın.",
|
||||
"Use Initials": "Baş Harfleri Kullan",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Bu sohbeti paylaştınız",
|
||||
"You're a helpful assistant.": "Sen yardımsever bir asistansın.",
|
||||
"You're now logged in.": "Şimdi giriş yaptınız.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Hesap durumunuz şu anda etkinleştirilmeyi bekliyor.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Tüm katkınız doğrudan eklenti geliştiricisine gidecektir; Open WebUI herhangi bir yüzde almaz. Ancak seçilen finansman platformunun kendi ücretleri olabilir.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ئاساسىي URL زۆرۈر.",
|
||||
"Available list": "بار تىزىملىك",
|
||||
"Available Tools": "بار قوراللار",
|
||||
"available!": "بار!",
|
||||
"available users": "ئىشلەتكىلى بولىدىغان ئىشلەتكۈچىلەر",
|
||||
"available!": "بار!",
|
||||
"Away": "يوق",
|
||||
"Awful": "ناچار",
|
||||
"Azure AI Speech": "Azure AI ئاۋاز",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "بەتا",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7 ئۇلانمىسى",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 ئەزا ئاچقۇچى",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Bocha ئىزدەش API ئاچقۇچى",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "سۆھبەت باشقۇرۇش",
|
||||
"Chat direction": "سۆھبەت يۆنىلىشى",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "سۆھبەت تونۇشتۇرۇش",
|
||||
"Chat Permissions": "سۆھبەت ھوقۇقلىرى",
|
||||
"Chat Tags Auto-Generation": "سۆھبەت تەغلىرىنى ئاپتوماتىك ھاسىل قىلىش",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "ھاسىل بولغان تېكستتا ھەرىپ تىزىمىنىڭ تەكرارلىنىشىنى باشقۇرۇش. چوڭ قىممەت (مەسىلەن 1.5) قېتىملىق تەكرارغا جازا بېرىدۇ، كىچىك قىممەت (مەسىلەن 1.1) يۇمشاق بولىدۇ. 1 بولسا چەكلەنگەن.",
|
||||
"Controls": "باشقۇرۇش",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "ھاسىل قىلىنغان تېكىستتىكى بەلگە تەرتىپلىرىنىڭ تەكرارلىنىشىنى كونترول قىلىڭ.. تۆۋەن قىممەت تېخىمۇ مەركەزلىك ۋە ماس تېكىست ھاسىل قىلىدۇ. ",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "كۆچۈرۈلدى",
|
||||
"Copied link to clipboard": "ئۇلانما چاپلاش تاختىسىغا كۆچۈرۈلدى",
|
||||
"Copied shared chat URL to clipboard!": "ھەمبەھىرلەنگەن سۆھبەت URL كۆچۈرۈلدى!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "ھۆججەتلەر",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "سىرتقى ئۇلىنىش قىلمايدۇ، سانلىق مەلۇماتىڭىز يەرلىك مۇلازىمېتىردىلا بىخەتەر ساقلىنىدۇ.",
|
||||
"Domain Filter List": "دائىرە نامى سۈزگۈچ تىزىملىكى",
|
||||
"don't fetch random pipelines from sources you don't trust.": "ئىشەنچسىز مەنبەلەردىن خالىغان pipelines نى ئالماڭ.",
|
||||
"Don't have an account?": "ھېسابىڭىز يوقمۇ؟",
|
||||
"don't install random functions from sources you don't trust.": "ئىشەنچسىز مەنبەلەردىن توغرا كەلگەن فۇنكسىيە ئورناتماڭ.",
|
||||
"don't install random tools from sources you don't trust.": "ئىشەنچسىز مەنبەلەردىن توغرا كەلگەن قوراللارنى ئورناتماڭ.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "ئىشەنچسىز مەنبەلەردىن خالىغان pipelines نى ئالماڭ.",
|
||||
"Don't like the style": "ئۇسلۇبنى ياخشى كۆرمەيدۇ",
|
||||
"Done": "تامام",
|
||||
"Download": "چۈشۈرۈش",
|
||||
"Download & Delete": "چۈشۈرۈش ۋە ئۆچۈرۈش",
|
||||
"Download as SVG": "SVG شەكلىدە چۈشۈرۈش",
|
||||
"Download canceled": "چۈشۈرۈش بىكار قىلىندى",
|
||||
"Download Database": "ساندان چۈشۈرۈش",
|
||||
"Download & Delete": "چۈشۈرۈش ۋە ئۆچۈرۈش",
|
||||
"Drag and drop a file to upload or select a file to view": "يۈكلەش ياكى كۆرۈش ئۈچۈن ھۆججەتنى سۆرەپ تاشلاڭ ياكى تاللاڭ",
|
||||
"Draw": "سىزىش",
|
||||
"Drop any files here to upload": "ھەر قانداق ھۆججەتنى بۇ يەرگە قويۇپ يۈكلەڭ",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Google PSE API ئاچقۇچى كىرگۈزۈڭ",
|
||||
"Enter Google PSE Engine Id": "Google PSE ماتور ID كىرگۈزۈڭ",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "رەسىم چوڭلۇقى كىرگۈزۈڭ (مەسىلەن: 512x512)",
|
||||
"Enter Jina API Key": "Jina API ئاچقۇچى كىرگۈزۈڭ",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "Yacy پارول كىرگۈزۈڭ",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Yacy URL كىرگۈزۈڭ (مەسىلەن: http://yacy.example.com:8090)",
|
||||
"Enter Yacy Username": "Yacy ئىشلەتكۈچى نامى كىرگۈزۈڭ",
|
||||
"Enter your code here...": "كودىڭىزنى بۇ يەرگە كىرگۈزۈڭ...",
|
||||
"Enter your current password": "ھازىرقى پارولىڭىزنى كىرگۈزۈڭ",
|
||||
"Enter Your Email": "ئېلخەت كىرگۈزۈڭ",
|
||||
"Enter Your Full Name": "تولۇق ئاتىڭىزنى كىرگۈزۈڭ",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "ئۇچۇر كىرگۈزۈڭ",
|
||||
"Enter your name": "ئاتىڭىزنى كىرگۈزۈڭ",
|
||||
"Enter Your Name": "ئاتىڭىزنى كىرگۈزۈڭ",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "رولىڭىزنى كىرگۈزۈڭ",
|
||||
"Enter Your Username": "ئىشلەتكۈچى نامىڭىزنى كىرگۈزۈڭ",
|
||||
"Enter your webhook URL": "webhook URL كىرگۈزۈڭ",
|
||||
"Enter your code here...": "كودىڭىزنى بۇ يەرگە كىرگۈزۈڭ...",
|
||||
"Error": "خاتا",
|
||||
"ERROR": "خاتالىق",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "ھۆججەت مەزمۇنى يۈكلەش مەغلۇپ بولدى.",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "چاپلاش تاختىسى مەزمۇنىنى ئوقۇش مەغلۇپ بولدى",
|
||||
"Failed to save connections": "ئۇلىنىشلارنى ساقلاش مەغلۇپ بولدى",
|
||||
"Failed to save conversation": "سۆھبەتنى ساقلاش مەغلۇپ بولدى",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "پىكىر تارىخى",
|
||||
"Feedbacks": "پىكىرلەر",
|
||||
"Feel free to add specific details": "تەپسىلىي ئۇچۇر قوشسىڭىز بولىدۇ",
|
||||
"Female": "",
|
||||
"File": "ھۆججەت",
|
||||
"File added successfully.": "ھۆججەت مۇۋەپپەقىيەتلىك قوشۇلدى.",
|
||||
"File content updated successfully.": "ھۆججەت مەزمۇنى مۇۋەپپەقىيەتلىك يېڭىلاندى.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Gemini API تەڭشىكى",
|
||||
"Gemini API Key is required.": "Gemini API ئاچقۇچى زۆرۈر.",
|
||||
"Gender": "",
|
||||
"General": "ئادەتتىكى",
|
||||
"Generate": "ھاسىل قىلىش",
|
||||
"Generate an image": "رەسىم ھاسىل قىلىش",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Google PSE API ئاچقۇچى",
|
||||
"Google PSE Engine Id": "Google PSE ماتور ID",
|
||||
"Gravatar": "",
|
||||
"Group": "گۇرۇپپا",
|
||||
"Group created successfully": "گۇرۇپپا مۇۋەپپەقىيەتلىك قۇرۇلدى",
|
||||
"Group deleted successfully": "گۇرۇپپا مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى",
|
||||
"Group Description": "گۇرۇپپا چۈشەندۈرۈشى",
|
||||
"Group Name": "گۇرۇپپا نامى",
|
||||
"Group": "گۇرۇپپا",
|
||||
"Group updated successfully": "گۇرۇپپا مۇۋەپپەقىيەتلىك يېڭىلاندى",
|
||||
"Groups": "گۇرۇپپىلار",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "قوراللارنى ئىمپورت قىلىش",
|
||||
"Important Update": "مۇھىم يېڭىلانىش",
|
||||
"Include": "ئىچكىرى قىل",
|
||||
"Includes SharePoint": "SharePoint نى ئۆز ئىچىگە ئالىدۇ",
|
||||
"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` بەلگىسىنى ئىشلىتىڭ",
|
||||
"Includes SharePoint": "SharePoint نى ئۆز ئىچىگە ئالىدۇ",
|
||||
"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": "ئۇچۇر",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "پۈتۈن مەزمۇننى مۇھىتقا قوشۇپ مول تەھلىل قىلىش، مۇرەككەپ سۇئاللار ئۈچۈن تەۋسىيە قىلىنىدۇ.",
|
||||
"Input": "",
|
||||
"Input commands": "بۇيرۇق كىرگۈزۈش",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "ئىشلەتكۈچى ئۈستىلىدە پارول كۆرسىتىش",
|
||||
"Make sure to enclose them with": "ئۇلارنى تۆۋەندىكىدەك قىستۇرۇڭ",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "ComfyUI دىن API قېلىپىدا workflow.json ھۆججىتى چىقىرىڭ.",
|
||||
"Male": "",
|
||||
"Manage": "باشقۇرۇش",
|
||||
"Manage Direct Connections": "بىۋاسىتە ئۇلىنىشلەرنى باشقۇرۇش",
|
||||
"Manage Models": "مودېللارنى باشقۇرۇش",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "OpenAI API ئۇلىنىشلىرىنى باشقۇرۇش",
|
||||
"Manage Pipelines": "جەريانلارنى باشقۇرۇش",
|
||||
"Manage Tool Servers": "قورال مۇلازىمېتىرلىرى باشقۇرۇش",
|
||||
"Manage your account information.": "",
|
||||
"March": "مارت",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "تېخىمۇ كۆپ",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "ئات",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "بىلىم ئاساسى نامىنى كىرگۈزۈڭ",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "مەزمۇن تېپىلمىدى",
|
||||
"No content found in file.": "ھۆججەتتە مەزمۇن تېپىلمىدى.",
|
||||
"No content to speak": "تاپشۇرىدىغان مەزمۇن يوق",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "ئارىلىق ئۇچۇرى يوق",
|
||||
"No feedbacks found": "پىكىرلەر تېپىلمىدى",
|
||||
"No file selected": "ھۆججەت تاللانمىدى",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "نەتىجە تېپىلمىدى",
|
||||
"No search query generated": "ئىزدەش سۇئالى ھاسىل قىلىنمىدى",
|
||||
"No source available": "مەنبە يوق",
|
||||
"No suggestion prompts": "تەۋسىيە قىلىنغان پرومپت يوق",
|
||||
"No users were found.": "ئىشلەتكۈچى تېپىلمىدى.",
|
||||
"No valves": "",
|
||||
"No valves to update": "يېڭىلاشقا كېرەكلىك كران يوق",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "تەۋسىيە قىلىنغان پرومپت يوق",
|
||||
"None": "يوق",
|
||||
"Not factually correct": "ھەقىقى بولمىغان",
|
||||
"Not helpful": "پايدىسى يوق",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "OpenAI API تەڭشەكلىرى يېڭىلاندى",
|
||||
"OpenAI URL/Key required.": "OpenAI URL/ئاچقۇچى زۆرۈر.",
|
||||
"openapi.json URL or Path": "openapi.json URL ياكى يولى",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "رەسىم چۈشەندۈرۈشىدە يەرلىك كۆرۈنۈش-تىل مودېلى ئىشلىتىش تاللاشلىرى. بۇ پارامېتىر Hugging Face تىكى مودېلغا قارىتىلغان. بۇ پارامېتىر picture_description_api بىلەن قوشۇلمايدۇ.",
|
||||
"or": "ياكى",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "Playwright WebSocket URL",
|
||||
"Please carefully review the following warnings:": "تۆۋەندىكى ئاگاھلاندۇرۇشلاردىن دىققەت بىلەن خەۋەردار بولۇڭ:",
|
||||
"Please do not close the settings page while loading the model.": "مودېل يۈكلەۋاتقاندا تەڭشەك بېتىنى ياپماڭ.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "تۈرتكە كىرگۈزۈڭ",
|
||||
"Please enter a valid path": "توغرا يول كىرگۈزۈڭ",
|
||||
"Please enter a valid URL": "توغرا URL كىرگۈزۈڭ",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "ئېغىز",
|
||||
"Positive attitude": "ئىجابىي پوزىتسىيە",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Prefix ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "باشقا ئۇلىنىش بىلەن توقۇنۇشنىڭ ئالدىنى ئېلىش ئۈچۈن مودېل ID غا Prefix قوشۇلىدۇ - چەكلەش ئۈچۈن بوش قالدۇرۇڭ",
|
||||
"Prevent file creation": "ھۆججەت قۇرۇشنى چەكلەش",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "ئالدىنقى ئۇچۇر",
|
||||
"Private": "شەخسىي",
|
||||
"Profile": "پروفايل",
|
||||
"Profile Image": "تەرجىمال رەسىمى",
|
||||
"Prompt": "تۈرتكە",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "تۈرتكە (مەسىلەن: رىم ئىمپېرىيەسى ھەققىدە قىزىقارلىق بىر نەرسە ئېيت)",
|
||||
"Prompt Autocompletion": "تۈرتكە ئاپتوماتىك تولدۇرۇش",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "قايتا تەرتىپلەش مودېلى",
|
||||
"Reset": "قايتا تەڭشەش",
|
||||
"Reset All Models": "بارلىق مودېللارنى قايتا تەڭشەش",
|
||||
"Reset Image": "سۈرەتنى ئەسلىگە قايتۇر",
|
||||
"Reset Upload Directory": "چىقىرىش قىسقۇچىنى قايتا تەڭشەش",
|
||||
"Reset Vector Storage/Knowledge": "ۋېكتور ساقلاش/بىلىمنى قايتا تەڭشەش",
|
||||
"Reset view": "كۆرۈنۈشنى قايتا تەڭشەش",
|
||||
"Reset Image": "سۈرەتنى ئەسلىگە قايتۇر",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "تور بېكەت ھوقۇقى چەكلەنگەنلىكتىن ئىنكاس ئۇقتۇرۇشى قوزغىتىلمايدۇ. تور كۆرگۈچ تەڭشەكلىرىدىن لازىملىق ھوقۇق بېرىڭ.",
|
||||
"Response splitting": "ئىنكاسنى بۆلۈش",
|
||||
"Response Watermark": "ئىنكاس سۇ بەلگىسى",
|
||||
"RESULT": "نەتىجە",
|
||||
"Result": "نەتىجە",
|
||||
"RESULT": "نەتىجە",
|
||||
"Retrieval": "قايتۇرۇش",
|
||||
"Retrieval Query Generation": "قايتۇرۇش سۇئالى ھاسىل قىلىش",
|
||||
"Rich Text Input for Chat": "سۆھبەت ئۈچۈن مول تېكست كىرگۈزۈش",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "ساقلا ۋە قۇر",
|
||||
"Save & Update": "ساقلا ۋە يېڭىلا",
|
||||
"Save As Copy": "كۆچۈرۈپ ساقلاش",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "تەغ ساقلاش",
|
||||
"Saved": "ساقلاندى",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "پاراڭ خاتىرىسىنى بىۋاسىتە توركۆرگۈڭىزنىڭ ساقلىشىغا ساقلىغىلى بولمايدۇ. بىر ئاز ۋاقىت چىقىرىپ ئاستىدىكى كۇنۇپكىنى بېسىپ پاراڭ خاتىرىڭىزنى چۈشۈرۈڭ ۋە ئۆچۈرۈڭ. ئەنسىرىمەڭ ، پاراڭ خاتىرىڭىزنى ئارقا سۇپىغا قايتا ئەكىرىسىز",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "ھەمبەھىرلەش",
|
||||
"Share Chat": "سۆھبەت ھەمبەھىرلەش",
|
||||
"Share to Open WebUI Community": "Open WebUI جەمئىيىتىگە ھەمبەھىرلەش",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "ھەمبەھىرلەش ھوقۇقى",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "چىقىرىش (*) بىلەن بەلگىلەنگەن تېز كۇنۇپكىلار پەقەت بەلگىلىك ئەھۋاللاردا ئىلان قىلىدۇ.",
|
||||
"Show": "كۆرسىتىش",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "ئاۋازدىن تېكستكە",
|
||||
"Speech-to-Text Engine": "ئاۋازدىن تېكستكە ماتورى",
|
||||
"Start of the channel": "قانالنىڭ باشلانغىنى",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "توختات",
|
||||
"Stop Generating": "ھاسىل قىلىشنى توختات",
|
||||
"Stop Sequence": "توختاش تىزىقى",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "بار OCR نى چىقىرىۋېتىش",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "PDF دىكى بار OCR تېكىستىنى چىقىرىپ، قايتا OCR ئىجرا قىلىش. Force OCR قوزغىتىلسا بۇنىڭغا پەرۋا قىلىنمايدۇ. كۆڭۈلدىكىچە چەكلەنگەن.",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "STT مودېلى",
|
||||
"STT Settings": "STT تەڭشەكلىرى",
|
||||
"Stylized PDF Export": "ئۇسلۇبلۇق PDF چىقىرىش",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "تېخىمۇ كۆپ ئۇچۇر بېرىڭ:",
|
||||
"Temperature": "تېمپېراتۇرا",
|
||||
"Temporary Chat": "ۋاقىتلىق سۆھبەت",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "تېكست بۆلگۈچ",
|
||||
"Text-to-Speech": "تېكستتىن ئاۋازغا",
|
||||
"Text-to-Speech Engine": "تېكست ئاۋاز ماتورى",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL ھالىتى",
|
||||
"Usage": "ئىشلىتىش",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "بىلىمىڭىزنى يوللاش ئۈچۈن تۈرتكە كىرگۈزۈشىدە '#' ئىشلەتسىڭىز بولىدۇ.",
|
||||
"Use Gravatar": "Gravatar ئىشلىتىش",
|
||||
"Use groups to group your users and assign permissions.": "ئىشلەتكۈچىلەرنى گۇرۇپپىلاپ ھوقۇق بېرىڭ.",
|
||||
"Use Initials": "باش ھەرپ ئىشلىتىش",
|
||||
"Use LLM": "LLM ئىشلىتىش",
|
||||
"Use no proxy to fetch page contents.": "ۋاكالەتچىسىز بەت مەزمۇنىنى ئېلىش.",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "http_proxy ۋە https_proxy مۇھىت ئۆزگەرگۈچ بويىچە بەت مەزمۇنى ئېلىش.",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "بۇ سۆھبەتنى ھەمبەھىرلىدىڭىز",
|
||||
"You're a helpful assistant.": "سىز ياردەمچى.",
|
||||
"You're now logged in.": "سىز كىرىپ بولدىڭىز.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "ھېساباتىڭىزنىڭ ھازىرقى ھالىتى ئاكتىپلىنىشنى كۈتۈۋاتىدۇ.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "تۆلەم پۇلىڭىز بىۋاسىتە قىستۇرما تەرەققىياتچىسىغا بېرىلىدۇ؛ Open WebUI ھېچقانداق پىرسېنت ئالمايدۇ. بىراق تاللانغان مالىيە پلاتفورمىسىنىڭ ئۆزىنىڭ ھەققى بولۇشى مۇمكىن.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "Необхідна URL-адреса AUTOMATIC1111.",
|
||||
"Available list": "Список доступності",
|
||||
"Available Tools": "",
|
||||
"available!": "доступно!",
|
||||
"available users": "доступні користувачі",
|
||||
"available!": "доступно!",
|
||||
"Away": "Відсутній",
|
||||
"Awful": "Жахливо",
|
||||
"Azure AI Speech": "Мовлення Azure AI",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Точка доступу Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Ключ підписки Bing Search V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Ключ API пошуку Bocha",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Керування чатом",
|
||||
"Chat direction": "Напрям чату",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Огляд чату",
|
||||
"Chat Permissions": "Дозволи чату",
|
||||
"Chat Tags Auto-Generation": "Автоматична генерація тегів чату",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Контролює повторення послідовностей токенів у згенерованому тексті. Вищий показник (напр., 1.5) сильніше штрафує за повторення, тоді як нижчий показник (напр., 1.1) буде більш м'яким. При значенні 1 ця опція вимкнена.",
|
||||
"Controls": "Керування",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Контролює баланс між узгодженістю та різноманітністю результату. Нижчий показник призведе до більш зосередженого та узгодженого тексту.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Скопійовано",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "Скопійовано URL-адресу спільного чату в буфер обміну!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Документи",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "не встановлює жодних зовнішніх з'єднань, і ваші дані залишаються в безпеці на вашому локальному сервері.",
|
||||
"Domain Filter List": "Список фільтрів доменів",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Не отримуйте випадкові pipelines із джерел, яким ви не довіряєте.",
|
||||
"Don't have an account?": "Немає облікового запису?",
|
||||
"don't install random functions from sources you don't trust.": "не встановлюйте випадкові функції з джерел, яким ви не довіряєте.",
|
||||
"don't install random tools from sources you don't trust.": "не встановлюйте випадкові інструменти з джерел, яким ви не довіряєте.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Не отримуйте випадкові pipelines із джерел, яким ви не довіряєте.",
|
||||
"Don't like the style": "Не подобається стиль",
|
||||
"Done": "Готово",
|
||||
"Download": "Завантажити",
|
||||
"Download & Delete": "Завантажити та видалити",
|
||||
"Download as SVG": "Завантажити як SVG",
|
||||
"Download canceled": "Завантаження скасовано",
|
||||
"Download Database": "Завантажити базу даних",
|
||||
"Download & Delete": "Завантажити та видалити",
|
||||
"Drag and drop a file to upload or select a file to view": "Перетягніть файл для завантаження або виберіть файл для перегляду",
|
||||
"Draw": "Малювати",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Введіть ключ API Google PSE",
|
||||
"Enter Google PSE Engine Id": "Введіть Google PSE Engine Id",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Введіть розмір зображення (напр., 512x512)",
|
||||
"Enter Jina API Key": "Введіть ключ API Jina",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Введіть свій код тут...",
|
||||
"Enter your current password": "Введіть ваш поточний пароль",
|
||||
"Enter Your Email": "Введіть вашу ел. пошту",
|
||||
"Enter Your Full Name": "Введіть ваше ім'я",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Введіть повідомлення ",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Введіть вашу роль",
|
||||
"Enter Your Username": "Введіть своє ім'я користувача",
|
||||
"Enter your webhook URL": "Введіть URL вашого вебхука",
|
||||
"Enter your code here...": "Введіть свій код тут...",
|
||||
"Error": "Помилка",
|
||||
"ERROR": "ПОМИЛКА",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Не вдалося прочитати вміст буфера обміну",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "Не вдалося зберегти розмову",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Історія відгуків",
|
||||
"Feedbacks": "Відгуки",
|
||||
"Feel free to add specific details": "Не соромтеся додавати конкретні деталі",
|
||||
"Female": "",
|
||||
"File": "Файл",
|
||||
"File added successfully.": "Файл успішно додано.",
|
||||
"File content updated successfully.": "Вміст файлу успішно оновлено.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Конфігурація Gemini API",
|
||||
"Gemini API Key is required.": "Потрібен ключ API Gemini.",
|
||||
"Gender": "",
|
||||
"General": "Загальні",
|
||||
"Generate": "",
|
||||
"Generate an image": "Згенерувати зображення",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Ключ API Google PSE",
|
||||
"Google PSE Engine Id": "Id рушія Google PSE",
|
||||
"Gravatar": "",
|
||||
"Group": "Група",
|
||||
"Group created successfully": "Групу успішно створено",
|
||||
"Group deleted successfully": "Групу успішно видалено",
|
||||
"Group Description": "Опис групи",
|
||||
"Group Name": "Назва групи",
|
||||
"Group": "Група",
|
||||
"Group updated successfully": "Групу успішно оновлено",
|
||||
"Groups": "Групи",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Імпорт інструментів",
|
||||
"Important Update": "Важливе оновлення",
|
||||
"Include": "Включити",
|
||||
"Includes SharePoint": "Містить SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Містить SharePoint",
|
||||
"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": "Інфо",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Вставте весь вміст як контекст для всебічної обробки, це рекомендується для складних запитів.",
|
||||
"Input": "",
|
||||
"Input commands": "Команди вводу",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Переконайтеся, що вони закриті",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Обов'язково експортуйте файл workflow.json у форматі API з ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Керувати",
|
||||
"Manage Direct Connections": "Керування прямими з'єднаннями",
|
||||
"Manage Models": "Керувати моделями",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Керувати з'єднаннями OpenAI API",
|
||||
"Manage Pipelines": "Керування конвеєрами",
|
||||
"Manage Tool Servers": "Керувати серверами інструментів",
|
||||
"Manage your account information.": "",
|
||||
"March": "Березень",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Більше",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Ім'я",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Назвіть вашу базу знань",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Контент не знайдено.",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "Нема чого говорити",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Відстань недоступна",
|
||||
"No feedbacks found": "Відгуків не знайдено",
|
||||
"No file selected": "Файл не обрано",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Не знайдено жодного результату",
|
||||
"No search query generated": "Пошуковий запит не сформовано",
|
||||
"No source available": "Джерело не доступне",
|
||||
"No suggestion prompts": "Немає запропонованих підказок",
|
||||
"No users were found.": "Користувачів не знайдено.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Немає клапанів для оновлення",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Немає запропонованих підказок",
|
||||
"None": "Нема",
|
||||
"Not factually correct": "Не відповідає дійсності",
|
||||
"Not helpful": "Не корисно",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "Налаштування OpenAI API оновлено",
|
||||
"OpenAI URL/Key required.": "Потрібен OpenAI URL/ключ.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "або",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Будь ласка, уважно ознайомтеся з наступними попередженнями:",
|
||||
"Please do not close the settings page while loading the model.": "Будь ласка, не закривайте сторінку налаштувань під час завантаження моделі.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Будь ласка, введіть підказку",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Порт",
|
||||
"Positive attitude": "Позитивне ставлення",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "ID префікса",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID префікса використовується для уникнення конфліктів з іншими підключеннями шляхом додавання префікса до ID моделей — залиште порожнім, щоб вимкнути",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "Приватний",
|
||||
"Profile": "Профіль",
|
||||
"Profile Image": "Зображення профілю",
|
||||
"Prompt": "Підказка",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Підказка (напр., розкажіть мені цікавий факт про Римську імперію)",
|
||||
"Prompt Autocompletion": "Автозавершення підказок",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Модель переранжування",
|
||||
"Reset": "Скидання",
|
||||
"Reset All Models": "Скинути усі моделі",
|
||||
"Reset Image": "Скинути зображення",
|
||||
"Reset Upload Directory": "Скинути каталог завантажень",
|
||||
"Reset Vector Storage/Knowledge": "Скинути векторне сховище/Знання",
|
||||
"Reset view": "Скинути вигляд",
|
||||
"Reset Image": "Скинути зображення",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Сповіщення про відповіді не можуть бути активовані, оскільки вам було відмовлено в доступі до веб-сайту. Будь ласка, відвідайте налаштування вашого браузера, щоб надати необхідний доступ.",
|
||||
"Response splitting": "Розбиття відповіді",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "Результат",
|
||||
"Result": "Результат",
|
||||
"RESULT": "Результат",
|
||||
"Retrieval": "Пошук",
|
||||
"Retrieval Query Generation": "Генерація запиту для отримання даних",
|
||||
"Rich Text Input for Chat": "Ввід тексту з форматуванням для чату",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Зберегти та створити",
|
||||
"Save & Update": "Зберегти та оновити",
|
||||
"Save As Copy": "Зберегти як копію",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Зберегти тег",
|
||||
"Saved": "Збережено",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Збереження журналів чату безпосередньо в сховище вашого браузера більше не підтримується. Будь ласка, завантажте та видаліть журнали чату, натиснувши кнопку нижче. Не хвилюйтеся, ви можете легко повторно імпортувати журнали чату до бекенду через",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Поділитися",
|
||||
"Share Chat": "Поділитися чатом",
|
||||
"Share to Open WebUI Community": "Поділитися зі спільнотою OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Дозволи на обмін",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Показати",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Система розпізнавання мови",
|
||||
"Start of the channel": "Початок каналу",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Зупинити",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Символ зупинки",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Модель STT ",
|
||||
"STT Settings": "Налаштування STT",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Розкажи нам більше:",
|
||||
"Temperature": "Температура",
|
||||
"Temporary Chat": "Тимчасовий чат",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Роздільник тексту",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Система синтезу мови",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Режим URL-адреси",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Використовуйте '#' у полі введення підказки, щоб завантажити та включити свої знання.",
|
||||
"Use Gravatar": "Змінити аватар",
|
||||
"Use groups to group your users and assign permissions.": "Використовуйте групи, щоб об'єднувати користувачів і призначати дозволи.",
|
||||
"Use Initials": "Використовувати ініціали",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Ви поділилися цим чатом",
|
||||
"You're a helpful assistant.": "Ви корисний асистент.",
|
||||
"You're now logged in.": "Ви увійшли в систему.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Статус вашого облікового запису наразі очікує на активацію.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Весь ваш внесок піде безпосередньо розробнику плагіна; Open WebUI не бере жодних відсотків. Однак, обрана платформа фінансування може мати свої власні збори.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 بنیادی URL درکار ہے",
|
||||
"Available list": "دستیاب فہرست",
|
||||
"Available Tools": "",
|
||||
"available!": "دستیاب!",
|
||||
"available users": "دستیاب صارفین",
|
||||
"available!": "دستیاب!",
|
||||
"Away": "غیر حاضر",
|
||||
"Awful": "",
|
||||
"Azure AI Speech": "ایژور اے آئی اسپیچ",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "",
|
||||
"Bing Search V7 Endpoint": "",
|
||||
"Bing Search V7 Subscription Key": "",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "چیٹ کنٹرولز",
|
||||
"Chat direction": "چیٹ کی سمت",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "چیٹ کا جائزہ",
|
||||
"Chat Permissions": "",
|
||||
"Chat Tags Auto-Generation": "چیٹ ٹیگز خودکار تخلیق",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "",
|
||||
"Controls": "کنٹرولز",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "کاپی کیا گیا",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "مشترکہ چیٹ یو آر ایل کلپ بورڈ میں نقل کر دیا گیا!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "دستاویزات",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "آپ کا ڈیٹا مقامی طور پر میزبانی شدہ سرور پر محفوظ رہتا ہے اور کوئی بیرونی رابطے نہیں بناتا",
|
||||
"Domain Filter List": "",
|
||||
"don't fetch random pipelines from sources you don't trust.": "جن ذرائع پر آپ بھروسہ نہیں کرتے ان سے بے ترتیب پائپ لائنز نہ لیں۔",
|
||||
"Don't have an account?": "کیا آپ کے پاس اکاؤنٹ نہیں ہے؟",
|
||||
"don't install random functions from sources you don't trust.": "غیر معتبر ذرائع سے بے ترتیب فنکشنز انسٹال نہ کریں",
|
||||
"don't install random tools from sources you don't trust.": "جو ذرائع آپ پر بھروسہ نہیں کرتے ان سے بے ترتیب ٹولز انسٹال نہ کریں",
|
||||
"don't fetch random pipelines from sources you don't trust.": "جن ذرائع پر آپ بھروسہ نہیں کرتے ان سے بے ترتیب پائپ لائنز نہ لیں۔",
|
||||
"Don't like the style": "انداز پسند نہیں آیا",
|
||||
"Done": "ہو گیا",
|
||||
"Download": "ڈاؤن لوڈ کریں",
|
||||
"Download & Delete": "ڈاؤن لوڈ اور حذف کریں",
|
||||
"Download as SVG": "",
|
||||
"Download canceled": "ڈاؤن لوڈ منسوخ کر دیا گیا",
|
||||
"Download Database": "ڈیٹا بیس ڈاؤن لوڈ کریں",
|
||||
"Download & Delete": "ڈاؤن لوڈ اور حذف کریں",
|
||||
"Drag and drop a file to upload or select a file to view": "",
|
||||
"Draw": "ڈرائنگ کریں",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "گوگل PSE API کلید درج کریں",
|
||||
"Enter Google PSE Engine Id": "گوگل پی ایس ای انجن آئی ڈی درج کریں",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "تصویر کا سائز درج کریں (مثال: 512x512)",
|
||||
"Enter Jina API Key": "",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "اپنا کوڈ یہاں درج کریں...",
|
||||
"Enter your current password": "",
|
||||
"Enter Your Email": "اپنا ای میل درج کریں",
|
||||
"Enter Your Full Name": "اپنا مکمل نام درج کریں",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "اپنا پیغام درج کریں",
|
||||
"Enter your name": "",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "اپنا کردار درج کریں",
|
||||
"Enter Your Username": "",
|
||||
"Enter your webhook URL": "",
|
||||
"Enter your code here...": "اپنا کوڈ یہاں درج کریں...",
|
||||
"Error": "غلطی",
|
||||
"ERROR": "غلطی",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "کلپ بورڈ مواد کو پڑھنے میں ناکام",
|
||||
"Failed to save connections": "",
|
||||
"Failed to save conversation": "گفتگو محفوظ نہیں ہو سکی",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "تاریخ رائے",
|
||||
"Feedbacks": "",
|
||||
"Feel free to add specific details": "تفصیلات شامل کرنے کے لیے آزاد محسوس کریں",
|
||||
"Female": "",
|
||||
"File": "فائل",
|
||||
"File added successfully.": "فائل کامیابی سے شامل ہو گئی",
|
||||
"File content updated successfully.": "فائل مواد کامیابی سے اپ ڈیٹ ہو گیا",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "",
|
||||
"Gemini API Config": "",
|
||||
"Gemini API Key is required.": "",
|
||||
"Gender": "",
|
||||
"General": "عمومی",
|
||||
"Generate": "",
|
||||
"Generate an image": "",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "",
|
||||
"Google PSE API Key": "گوگل پی ایس ای API کی کلید",
|
||||
"Google PSE Engine Id": "گوگل پی ایس ای انجن آئی ڈی",
|
||||
"Gravatar": "",
|
||||
"Group": "گروپ",
|
||||
"Group created successfully": "",
|
||||
"Group deleted successfully": "",
|
||||
"Group Description": "",
|
||||
"Group Name": "",
|
||||
"Group": "گروپ",
|
||||
"Group updated successfully": "",
|
||||
"Groups": "",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "امپورٹ ٹولز",
|
||||
"Important Update": "اہم اپ ڈیٹ",
|
||||
"Include": "شامل کریں",
|
||||
"Includes SharePoint": "SharePoint شامل ہے",
|
||||
"Include `--api-auth` flag when running stable-diffusion-webui": "`--api-auth` پرچم کو چلانے کے وقت شامل کریں stable-diffusion-webui",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "اسٹیبل-ڈیفیوژن-ویب یو آئی چلانے کے دوران `--api` فلیگ شامل کریں",
|
||||
"Includes SharePoint": "SharePoint شامل ہے",
|
||||
"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": "معلومات",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
|
||||
"Input": "",
|
||||
"Input commands": "کمانڈز داخل کریں",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "انہیں کے ساتھ شامل کریں",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "یقینی بنائیں کہ ComfyUI سے workflow.json فائل کو API فارمیٹ میں ایکسپورٹ کریں",
|
||||
"Male": "",
|
||||
"Manage": "مینیج کریں",
|
||||
"Manage Direct Connections": "",
|
||||
"Manage Models": "",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "",
|
||||
"Manage Pipelines": "پائپ لائنز کا نظم کریں",
|
||||
"Manage Tool Servers": "",
|
||||
"Manage your account information.": "",
|
||||
"March": "مارچ",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "مزید",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "نام",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "کوئی مواد نہیں ملا",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "بولنے کے لیے کوئی مواد نہیں",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "فاصلہ دستیاب نہیں ہے",
|
||||
"No feedbacks found": "کوئی تبصرے نہیں ملے",
|
||||
"No file selected": "کوئی فائل منتخب نہیں کی گئی",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "کوئی نتائج نہیں ملے",
|
||||
"No search query generated": "کوئی تلاش کی درخواست نہیں بنائی گئی",
|
||||
"No source available": "ماخذ دستیاب نہیں ہے",
|
||||
"No suggestion prompts": "کوئی تجویز کردہ پرامپٹس نہیں",
|
||||
"No users were found.": "",
|
||||
"No valves": "",
|
||||
"No valves to update": "تازہ کاری کے لئے کوئی والو نہیں",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "کوئی تجویز کردہ پرامپٹس نہیں",
|
||||
"None": "کوئی نہیں",
|
||||
"Not factually correct": "حقیقت کے مطابق نہیں ہے",
|
||||
"Not helpful": "مددگار نہیں ہے",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "",
|
||||
"OpenAI URL/Key required.": "اوپن اے آئی یو آر ایل/کلید درکار ہے",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "یا",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "براہ کرم درج ذیل انتباہات کو احتیاط سے پڑھیں:",
|
||||
"Please do not close the settings page while loading the model.": "",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "براہ کرم ایک پرامپٹ درج کریں",
|
||||
"Please enter a valid path": "",
|
||||
"Please enter a valid URL": "",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "",
|
||||
"Positive attitude": "مثبت رویہ",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "",
|
||||
"Profile": "پروفائل",
|
||||
"Profile Image": "پروفائل تصویر",
|
||||
"Prompt": "",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "سوال کریں (مثلاً: مجھے رومن سلطنت کے بارے میں کوئی دلچسپ حقیقت بتائیں)",
|
||||
"Prompt Autocompletion": "",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "دوبارہ درجہ بندی کا ماڈل",
|
||||
"Reset": "ری سیٹ",
|
||||
"Reset All Models": "",
|
||||
"Reset Image": "تصویر ری سیٹ کریں",
|
||||
"Reset Upload Directory": "اپلوڈ ڈائریکٹری کو ری سیٹ کریں",
|
||||
"Reset Vector Storage/Knowledge": "ویكٹر اسٹوریج/علم کو ری سیٹ کریں",
|
||||
"Reset view": "",
|
||||
"Reset Image": "تصویر ری سیٹ کریں",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "جواب کی اطلاعات کو فعال نہیں کیا جا سکتا کیونکہ ویب سائٹ کی اجازتیں مسترد کر دی گئی ہیں براہ کرم اپنے براؤزر کی سیٹنگز پر جائیں تاکہ ضروری رسائی کی اجازت دے سکیں",
|
||||
"Response splitting": "جواب کو تقسیم کرنا",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "نتیجہ",
|
||||
"Result": "نتیجہ",
|
||||
"RESULT": "نتیجہ",
|
||||
"Retrieval": "",
|
||||
"Retrieval Query Generation": "",
|
||||
"Rich Text Input for Chat": "چیٹ کے لیے رچ ٹیکسٹ ان پٹ",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "محفوظ کریں اور تخلیق کریں",
|
||||
"Save & Update": "محفوظ کریں اور اپ ڈیٹ کریں",
|
||||
"Save As Copy": "کاپی کے طور پر محفوظ کریں",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "ٹیگ محفوظ کریں",
|
||||
"Saved": "محفوظ شدہ",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "براہ کرم اپنے براؤزر کے اسٹوریج میں چیٹ لاگز کو محفوظ کرنا اب تعاون یافتہ نہیں ہے براہ کرم نیچے دیئے گئے بٹن پر کلک کرکے اپنے چیٹ لاگز کو ڈاؤن لوڈ اور حذف کریں فکر نہ کریں، آپ اپنے چیٹ لاگز کو بیک اینڈ میں دوبارہ آسانی سے درآمد کر سکتے ہیں",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "اشتراک کریں",
|
||||
"Share Chat": "چیٹ شیئر کریں",
|
||||
"Share to Open WebUI Community": "اوپن ویب یوآئی کمیونٹی کے ساتھ شیئر کریں\n",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "دکھائیں",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "تقریر-سے-متن انجن",
|
||||
"Start of the channel": "چینل کی شروعات",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "روکیں",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "ترتیب روکیں",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "ایس ٹی ٹی ماڈل",
|
||||
"STT Settings": "ایس ٹی ٹی ترتیبات",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "ہمیں مزید بتائیں:",
|
||||
"Temperature": "درجہ حرارت",
|
||||
"Temporary Chat": "عارضی چیٹ",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "متن تقسیم کنندہ",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "ٹیکسٹ ٹو اسپیچ انجن",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "یو آر ایل موڈ",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "پرامپٹ ان پٹ میں '#' استعمال کریں تاکہ اپنی معلومات کو لوڈ اور شامل کریں",
|
||||
"Use Gravatar": "گراویٹر استعمال کریں",
|
||||
"Use groups to group your users and assign permissions.": "",
|
||||
"Use Initials": "ابتدائیات استعمال کریں",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "آپ نے یہ چیٹ شیئر کی ہے",
|
||||
"You're a helpful assistant.": "آپ ایک معاون معاون ہیں",
|
||||
"You're now logged in.": "آپ اب لاگ ان ہو چکے ہیں",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "آپ کے اکاؤنٹ کی حالت فی الحال فعال ہونے کے منتظر ہے",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "آپ کی پوری شراکت براہ راست پلگ ان ڈیولپر کو جائے گی؛ اوپن ویب یو آئی کوئی فیصد نہیں لیتی تاہم، منتخب کردہ فنڈنگ پلیٹ فارم کی اپنی فیس ہو سکتی ہیں",
|
||||
"Youtube": "یوٹیوب",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 базавий манзил талаб қилинади.",
|
||||
"Available list": "Мавжуд рўйхат",
|
||||
"Available Tools": "Мавжуд асбоблар",
|
||||
"available!": "мавжуд!",
|
||||
"available users": "мавжуд фойдаланувчилар",
|
||||
"available!": "мавжуд!",
|
||||
"Away": "Йўқ",
|
||||
"Awful": "Даҳшатли",
|
||||
"Azure AI Speech": "Azure AI нутқи",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Бета",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7 Endpoint",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 Subscription Key",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Bocha Search API Key",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Чат бошқарувлари",
|
||||
"Chat direction": "Чат йўналиши",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Чатга умумий нуқтаи ҳисобланади",
|
||||
"Chat Permissions": "Чат рухсатномалари",
|
||||
"Chat Tags Auto-Generation": "Чат тегларини автоматик яратиш",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Яратилган матндаги токенлар кетма-кетлигини такрорлашни назорат қилиш. Юқори қиймат (масалан, 1,5) такрорлаш учун қаттиқроқ жазоланади, пастроқ қиймат (масалан, 1,1) эса юмшоқроқ бўлади. 1-да, у ўчирилган.",
|
||||
"Controls": "Бошқарув",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Чиқаришнинг изчиллиги ва хилма-хиллиги ўртасидаги мувозанатни назорат қилади. Пастроқ қиймат кўпроқ диққат марказида ва изчил матнга олиб келади.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Кўчирилди",
|
||||
"Copied link to clipboard": "Буферга ҳавола нусхаланди",
|
||||
"Copied shared chat URL to clipboard!": "Умумий чат URL манзили вақтинчалик хотирага нусхаланди!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Ҳужжатлар",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "ҳеч қандай ташқи уланишларни амалга оширмайди ва сизнинг маълумотларингиз маҳаллий серверингизда хавфсиз сақланади.",
|
||||
"Domain Filter List": "Домен филтрлари рўйхати",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ишончсиз манбалардан тасодифий pipeline-ларни олманг.",
|
||||
"Don't have an account?": "Ҳисобингиз йўқми?",
|
||||
"don't install random functions from sources you don't trust.": "ўзингиз ишонмайдиган манбалардан тасодифий функсияларни ўрнатманг.",
|
||||
"don't install random tools from sources you don't trust.": "ўзингиз ишонмайдиган манбалардан тасодифий воситаларни ўрнатманг.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ишончсиз манбалардан тасодифий pipeline-ларни олманг.",
|
||||
"Don't like the style": "Услуб ёқмайди",
|
||||
"Done": "Бажарилди",
|
||||
"Download": "Юклаб олиш",
|
||||
"Download & Delete": "Юклаб олиш ва ўчириш",
|
||||
"Download as SVG": "СВГ сифатида юклаб олинг",
|
||||
"Download canceled": "Юклаб олиш бекор қилинди",
|
||||
"Download Database": "Маълумотлар базасини юклаб олиш",
|
||||
"Download & Delete": "Юклаб олиш ва ўчириш",
|
||||
"Drag and drop a file to upload or select a file to view": "Юклаш учун файлни судраб ташланг ёки кўриш учун файлни танланг",
|
||||
"Draw": "Чизиш",
|
||||
"Drop any files here to upload": "Юклаш учун исталган файлни шу ерга ташланг",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Google PSE АПИ калитини киритинг",
|
||||
"Enter Google PSE Engine Id": "Google PSE Энгине идентификаторини киритинг",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Расм ҳажмини киритинг (масалан, 512х512)",
|
||||
"Enter Jina API Key": "Jina АПИ калитини киритинг",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "Yacy паролини киритинг",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Yacy УРЛ манзилини киритинг (масалан, ҳттп://яcй.эхампле.cом:8090)",
|
||||
"Enter Yacy Username": "Yacy фойдаланувчи номини киритинг",
|
||||
"Enter your code here...": "Кодингизни бу ерга киритинг...",
|
||||
"Enter your current password": "Жорий паролингизни киритинг",
|
||||
"Enter Your Email": "Электрон почтангизни киритинг",
|
||||
"Enter Your Full Name": "Тўлиқ исмингизни киритинг",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Хабарингизни киритинг",
|
||||
"Enter your name": "Исмингизни киритинг",
|
||||
"Enter Your Name": "Исмингизни киритинг",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Ролингизни киритинг",
|
||||
"Enter Your Username": "Фойдаланувчи номингизни киритинг",
|
||||
"Enter your webhook URL": "Вебҳук УРЛ манзилингизни киритинг",
|
||||
"Enter your code here...": "Кодингизни бу ерга киритинг...",
|
||||
"Error": "Хато",
|
||||
"ERROR": "ХАТО",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "Файл таркибини юклаб бўлмади.",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Буфер таркибини ўқиб бўлмади",
|
||||
"Failed to save connections": "Уланишлар сақланмади",
|
||||
"Failed to save conversation": "Суҳбат сақланмади",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Фикр-мулоҳаза тарихи",
|
||||
"Feedbacks": "Фикр-мулоҳазалар",
|
||||
"Feel free to add specific details": "Муайян тафсилотларни қўшишингиз мумкин",
|
||||
"Female": "",
|
||||
"File": "Файл",
|
||||
"File added successfully.": "Файл муваффақиятли қўшилди.",
|
||||
"File content updated successfully.": "Файл мазмуни муваффақиятли янгиланди.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Gemini АПИ конфигурацияси",
|
||||
"Gemini API Key is required.": "Gemini АПИ калити талаб қилинади.",
|
||||
"Gender": "",
|
||||
"General": "Умумий",
|
||||
"Generate": "Яратиш",
|
||||
"Generate an image": "Тасвир яратиш",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Гоогле Дриве",
|
||||
"Google PSE API Key": "Гоогле ПСЕ АПИ калити",
|
||||
"Google PSE Engine Id": "Гоогле ПСЕ Энгине идентификатори",
|
||||
"Gravatar": "",
|
||||
"Group": "Гуруҳ",
|
||||
"Group created successfully": "Гуруҳ муваффақиятли яратилди",
|
||||
"Group deleted successfully": "Гуруҳ муваффақиятли ўчирилди",
|
||||
"Group Description": "Гуруҳ тавсифи",
|
||||
"Group Name": "Гуруҳ номи",
|
||||
"Group": "Гуруҳ",
|
||||
"Group updated successfully": "Гуруҳ муваффақиятли янгиланди",
|
||||
"Groups": "Гуруҳлар",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Импорт воситалари",
|
||||
"Important Update": "Мухим янгиланиш",
|
||||
"Include": "Ўз ичига олади",
|
||||
"Includes SharePoint": "SharePoint ни ўз ичига олади",
|
||||
"Include `--api-auth` flag when running stable-diffusion-webui": "Стабил-диффусион-wебуи ишлаётганда ъ--api-аутҳъ байроғини қўшинг",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Стабил-диффусион-wебуи ишлатилаётганда ъ--апиъ байроғини қўшинг",
|
||||
"Includes SharePoint": "SharePoint ни ўз ичига олади",
|
||||
"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": "Маълумот",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Комплекс қайта ишлаш учун бутун таркибни контекст сифатида киритинг, бу мураккаб сўровлар учун тавсия этилади.",
|
||||
"Input": "",
|
||||
"Input commands": "Кириш буйруқлари",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Уларни ўраб қўйганингизга ишонч ҳосил қилинг",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Wоркфлоw.жсон файлини CомфюИъдан АПИ формати сифатида экспорт қилганингизга ишонч ҳосил қилинг.",
|
||||
"Male": "",
|
||||
"Manage": "Бошқариш",
|
||||
"Manage Direct Connections": "Тўғридан-тўғри уланишларни бошқариш",
|
||||
"Manage Models": "Моделларни бошқариш",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "OpenAI АПИ уланишларини бошқаринг",
|
||||
"Manage Pipelines": "Қувурларни бошқариш",
|
||||
"Manage Tool Servers": "Асбоб серверларини бошқариш",
|
||||
"Manage your account information.": "",
|
||||
"March": "Март",
|
||||
"Markdown": "Маркдоwн",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Кўпроқ",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Исм",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Билимлар базасини номланг",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Ҳеч қандай контент топилмади",
|
||||
"No content found in file.": "Файлда контент топилмади.",
|
||||
"No content to speak": "Гапирадиган таркиб йўқ",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Масофа мавжуд эмас",
|
||||
"No feedbacks found": "Ҳеч қандай фикр топилмади",
|
||||
"No file selected": "Ҳеч қандай файл танланмаган",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Ҳеч қандай натижа топилмади",
|
||||
"No search query generated": "Ҳеч қандай қидирув сўрови яратилмади",
|
||||
"No source available": "Манба мавжуд эмас",
|
||||
"No suggestion prompts": "Тавсия этилган промптлар йўқ",
|
||||
"No users were found.": "Ҳеч қандай фойдаланувчи топилмади.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Янгилаш учун клапанлар йўқ",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Тавсия этилган промптлар йўқ",
|
||||
"None": "Йўқ",
|
||||
"Not factually correct": "Аслида тўғри эмас",
|
||||
"Not helpful": "Фойдали эмас",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "OpenAI АПИ созламалари янгиланди",
|
||||
"OpenAI URL/Key required.": "OpenAI УРЛ/Калит талаб қилинади.",
|
||||
"openapi.json URL or Path": "openapi.json УРЛ ёки йўл",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "ёки",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "Драматург WебСоcкет УРЛ манзили",
|
||||
"Please carefully review the following warnings:": "Қуйидаги огоҳлантиришларни диққат билан кўриб чиқинг:",
|
||||
"Please do not close the settings page while loading the model.": "Моделни юклашда созламалар саҳифасини ёпманг.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Илтимос, таклиф киритинг",
|
||||
"Please enter a valid path": "Яроқли йўлни киритинг",
|
||||
"Please enter a valid URL": "Яроқли УРЛ манзилини киритинг",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Порт",
|
||||
"Positive attitude": "Ижобий муносабат",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Префикс идентификатори",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Префикс идентификатори модел идентификаторларига префикс қўшиш орқали бошқа уланишлар билан зиддиятларни олдини олиш учун ишлатилади - ўчириш учун бўш қолдиринг.",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "Шахсий",
|
||||
"Profile": "Профиль",
|
||||
"Profile Image": "Профил расми",
|
||||
"Prompt": "Тезкор",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Тезкор (масалан, менга Рим империяси ҳақида қизиқарли фактни айтиб беринг)",
|
||||
"Prompt Autocompletion": "Тезкор автоматик якунлаш",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Қайта тартиблаш модели",
|
||||
"Reset": "Қайта тиклаш",
|
||||
"Reset All Models": "Барча моделларни қайта ўрнатиш",
|
||||
"Reset Image": "Расмни қайта тиклаш",
|
||||
"Reset Upload Directory": "Юклаш каталогини тиклаш",
|
||||
"Reset Vector Storage/Knowledge": "Вектор хотираси/билимини қайта ўрнатиш",
|
||||
"Reset view": "Кўринишни тиклаш",
|
||||
"Reset Image": "Расмни қайта тиклаш",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Жавоб билдиришномаларини фаоллаштириб бўлмайди, чунки веб-сайт рухсатномалари рад этилган. Керакли рухсат бериш учун браузер созламаларига ташриф буюринг.",
|
||||
"Response splitting": "Жавобни ажратиш",
|
||||
"Response Watermark": "Жавоб сув белгиси",
|
||||
"RESULT": "Натижа",
|
||||
"Result": "Натижа",
|
||||
"RESULT": "Натижа",
|
||||
"Retrieval": "Қидирув",
|
||||
"Retrieval Query Generation": "Қидирув сўровларини яратиш",
|
||||
"Rich Text Input for Chat": "Чат учун бой матн киритиш",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Сақлаш ва яратиш",
|
||||
"Save & Update": "Сақлаш ва янгилаш",
|
||||
"Save As Copy": "Нусха сифатида сақлаш",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Тегни сақланг",
|
||||
"Saved": "Сақланган",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Чат журналларини бевосита браузерингиз хотирасига сақлаш энди қўллаб-қувватланмайди. Қуйидаги тугмани босиш орқали суҳбат журналларингизни юклаб олинг ва ўчиринг. Хавотир олманг, сиз чат журналларини баcкенд орқали осонгина қайта импорт қилишингиз мумкин",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Улашиш",
|
||||
"Share Chat": "Чатни улашиш",
|
||||
"Share to Open WebUI Community": "Опен WебУИ ҳамжамиятига улашинг",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Рухсатларни алмашиш",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Кўрсатиш",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Нутқдан матнга восита",
|
||||
"Start of the channel": "Канал боши",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "СТОП",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Кетма-кетликни тўхтатиш",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "Мавжуд OCRни олиб ташлаш",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "PDFдан мавжуд OCR матнини олиб ташланг ва OCRни қайта ишлатинг. Agar Force OCR ёқилган бўлса, эътиборга олинмайди. Стандарт қиймат: False.",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "СТТ модели",
|
||||
"STT Settings": "СТТ созламалари",
|
||||
"Stylized PDF Export": "Услубий PDF экспорти",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Бизга кўпроқ маълумот беринг:",
|
||||
"Temperature": "Ҳарорат",
|
||||
"Temporary Chat": "Вақтинчалик суҳбат",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Матн ажратувчи",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Матнни нутққа айлантириш механизми",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "УРЛ режими",
|
||||
"Usage": "Фойдаланиш",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Ўз билимларингизни юклаш ва киритиш учун сўровномада \"#\" дан фойдаланинг.",
|
||||
"Use Gravatar": "Граватар-дан фойдаланинг",
|
||||
"Use groups to group your users and assign permissions.": "Фойдаланувчиларингизни гуруҳлаш ва рухсатларни белгилаш учун гуруҳлардан фойдаланинг.",
|
||||
"Use Initials": "Бош ҳарфлардан фойдаланинг",
|
||||
"Use LLM": "ЛЛМ дан фойдаланинг",
|
||||
"Use no proxy to fetch page contents.": "Саҳифа мазмунини олиш учун прокси-сервердан фойдаланманг.",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Саҳифа мазмунини олиш учун http_proxy ва https_proxy муҳит ўзгарувчилари томонидан белгиланган прокси-сервердан фойдаланинг.",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Сиз бу чатни баҳам кўрдингиз",
|
||||
"You're a helpful assistant.": "Сиз фойдали ёрдамчисиз.",
|
||||
"You're now logged in.": "Сиз энди тизимга кирдингиз.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Ҳисобингиз ҳолати ҳозирда фаоллаштиришни кутмоқда.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Сизнинг барча ҳиссангиз тўғридан-тўғри плагин ишлаб чиқарувчисига ўтади; Open WebUI ҳеч қандай фоизни олмайди. Бироқ, танланган молиялаштириш платформаси ўз тўловларига эга бўлиши мумкин.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
"{{COUNT}} hidden lines": "{{COUNT}} ta yashirin chiziq",
|
||||
"{{COUNT}} Replies": "{{COUNT}} ta javob",
|
||||
"{{COUNT}} words": "",
|
||||
"{{model}} download has been canceled": "",
|
||||
"{{user}}'s Chats": "{{user}} ning chatlari",
|
||||
"{{webUIName}} Backend Required": "{{webUIName}} Backend talab qilinadi",
|
||||
"*Prompt node ID(s) are required for image generation": "*Rasm yaratish uchun tezkor tugun identifikatorlari talab qilinadi",
|
||||
|
|
@ -29,8 +30,9 @@
|
|||
"Account Activation Pending": "Hisobni faollashtirish kutilmoqda",
|
||||
"Accurate information": "Aniq ma'lumot",
|
||||
"Action": "",
|
||||
"Actions": "Harakatlar",
|
||||
"Action not found": "",
|
||||
"Action Required for Chat Log Storage": "Chat jurnalini saqlash uchun amal talab qilinadi",
|
||||
"Actions": "Harakatlar",
|
||||
"Activate": "Faollashtirish",
|
||||
"Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Chat kiritish uchun “/{{COMMAND}}” terib ushbu buyruqni faollashtiring.",
|
||||
"Active": "Faol",
|
||||
|
|
@ -99,6 +101,7 @@
|
|||
"Always Play Notification Sound": "Har doim bildirishnoma ovozini ijro etish",
|
||||
"Amazing": "Ajoyib",
|
||||
"an assistant": "yordamchi",
|
||||
"An error occurred while fetching the explanation": "",
|
||||
"Analytics": "",
|
||||
"Analyzed": "Tahlil qilingan",
|
||||
"Analyzing...": "Tahlil qilinmoqda...",
|
||||
|
|
@ -115,6 +118,7 @@
|
|||
"API Key Endpoint Restrictions": "API kalit so'nggi nuqta cheklovlari",
|
||||
"API keys": "API kalitlari",
|
||||
"API Version": "API versiyasi",
|
||||
"API Version is required": "",
|
||||
"Application DN": "Ilova DN",
|
||||
"Application DN Password": "Ilova DN paroli",
|
||||
"applies to all users with the \"user\" role": "\"foydalanuvchi\" roliga ega barcha foydalanuvchilarga tegishli",
|
||||
|
|
@ -153,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 asosiy URL manzili talab qilinadi.",
|
||||
"Available list": "Mavjud ro'yxat",
|
||||
"Available Tools": "Mavjud asboblar",
|
||||
"available!": "mavjud!",
|
||||
"available users": "mavjud foydalanuvchilar",
|
||||
"available!": "mavjud!",
|
||||
"Away": "Uzoqda",
|
||||
"Awful": "Dahshatli",
|
||||
"Azure AI Speech": "Azure AI nutqi",
|
||||
|
|
@ -165,11 +169,14 @@
|
|||
"Banners": "Bannerlar",
|
||||
"Base Model (From)": "Asosiy model (dan boshlab)",
|
||||
"Base Model List Cache speeds up access by fetching base models only at startup or on settings save—faster, but may not show recent base model changes.": "",
|
||||
"Bearer": "",
|
||||
"before": "oldin",
|
||||
"Being lazy": "Dangasa bo'lish",
|
||||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Bing Search V7 Endpoint",
|
||||
"Bing Search V7 Subscription Key": "Bing Search V7 obuna kaliti",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Bocha qidiruv API kaliti",
|
||||
"Bold": "",
|
||||
|
|
@ -194,7 +201,9 @@
|
|||
"Capture Audio": "Audio yozib olish",
|
||||
"Certificate Path": "Sertifikat yo'li",
|
||||
"Change Password": "Parolni o'zgartirish",
|
||||
"Channel deleted successfully": "",
|
||||
"Channel Name": "Kanal nomi",
|
||||
"Channel updated successfully": "",
|
||||
"Channels": "Kanallar",
|
||||
"Character": "Xarakter",
|
||||
"Character limit for autocomplete generation input": "Avtomatik toʻldirishni yaratish uchun belgilar chegarasi",
|
||||
|
|
@ -205,6 +214,7 @@
|
|||
"Chat Controls": "Chat boshqaruvlari",
|
||||
"Chat direction": "Chat yo'nalishi",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Chatga umumiy nuqtai",
|
||||
"Chat Permissions": "Chat ruxsatnomalari",
|
||||
"Chat Tags Auto-Generation": "Chat teglarini avtomatik yaratish",
|
||||
|
|
@ -243,6 +253,7 @@
|
|||
"Close modal": "",
|
||||
"Close settings modal": "",
|
||||
"Close Sidebar": "",
|
||||
"CMU ARCTIC speaker embedding name": "",
|
||||
"Code Block": "",
|
||||
"Code execution": "Kodning bajarilishi",
|
||||
"Code Execution": "Kodning bajarilishi",
|
||||
|
|
@ -261,11 +272,13 @@
|
|||
"ComfyUI Base URL is required.": "ComfyUI asosiy URL manzili talab qilinadi.",
|
||||
"ComfyUI Workflow": "ComfyUI ish jarayoni",
|
||||
"ComfyUI Workflow Nodes": "ComfyUI ish oqimi tugunlari",
|
||||
"Comma separated Node Ids (e.g. 1 or 1,2)": "",
|
||||
"Command": "Buyruq",
|
||||
"Comment": "",
|
||||
"Completions": "Tugallashlar",
|
||||
"Compress Images in Channels": "",
|
||||
"Concurrent Requests": "Bir vaqtning o'zida so'rovlar",
|
||||
"Config imported successfully": "",
|
||||
"Configure": "Sozlang",
|
||||
"Confirm": "Tasdiqlang",
|
||||
"Confirm Password": "Parolni tasdiqlang",
|
||||
|
|
@ -292,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Yaratilgan matndagi tokenlar ketma-ketligini takrorlashni nazorat qilish. Yuqori qiymat (masalan, 1,5) takrorlash uchun qattiqroq jazolanadi, pastroq qiymat (masalan, 1,1) esa yumshoqroq bo'ladi. 1-da, u o'chirilgan.",
|
||||
"Controls": "Boshqaruv",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Chiqarishning izchilligi va xilma-xilligi o'rtasidagi muvozanatni nazorat qiladi. Pastroq qiymat ko'proq diqqat markazida va izchil matnga olib keladi.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Ko‘chirildi",
|
||||
"Copied link to clipboard": "Buferga havola nusxalandi",
|
||||
"Copied shared chat URL to clipboard!": "Umumiy chat URL manzili vaqtinchalik xotiraga nusxalandi!",
|
||||
|
|
@ -336,6 +350,7 @@
|
|||
"Datalab Marker API Key required.": "Datalab Marker API kaliti talab qilinadi.",
|
||||
"DD/MM/YYYY": "",
|
||||
"December": "dekabr",
|
||||
"Deepgram": "",
|
||||
"Default": "Standart",
|
||||
"Default (Open AI)": "Standart (Ochiq AI)",
|
||||
"Default (SentenceTransformers)": "Birlamchi (SentenceTransformers)",
|
||||
|
|
@ -382,6 +397,7 @@
|
|||
"Direct Connections": "To'g'ridan-to'g'ri ulanishlar",
|
||||
"Direct Connections allow users to connect to their own OpenAI compatible API endpoints.": "To'g'ridan-to'g'ri ulanishlar foydalanuvchilarga o'zlarining OpenAI-ga mos keluvchi API so'nggi nuqtalariga ulanish imkonini beradi.",
|
||||
"Direct Tool Servers": "To'g'ridan-to'g'ri asboblar serverlari",
|
||||
"Directory selection was cancelled": "",
|
||||
"Disable Code Interpreter": "",
|
||||
"Disable Image Extraction": "Rasm chiqarishni o'chirib qo'ying",
|
||||
"Disable image extraction from the PDF. If Use LLM is enabled, images will be automatically captioned. Defaults to False.": "PDF-dan tasvirni ajratib olishni o'chirib qo'ying. Agar LLM dan foydalanish yoqilgan boʻlsa, tasvirlarga avtomatik sarlavha qoʻyiladi. Birlamchi parametrlar False.",
|
||||
|
|
@ -413,17 +429,17 @@
|
|||
"Documents": "Hujjatlar",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "hech qanday tashqi ulanishlarni amalga oshirmaydi va sizning ma'lumotlaringiz mahalliy serveringizda xavfsiz saqlanadi.",
|
||||
"Domain Filter List": "Domen filtrlari ro'yxati",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ishonchsiz manbalardan tasodifiy pipeline-larni olmang.",
|
||||
"Don't have an account?": "Hisobingiz yo'qmi?",
|
||||
"don't install random functions from sources you don't trust.": "o'zingiz ishonmaydigan manbalardan tasodifiy funksiyalarni o'rnatmang.",
|
||||
"don't install random tools from sources you don't trust.": "o'zingiz ishonmaydigan manbalardan tasodifiy vositalarni o'rnatmang.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Ishonchsiz manbalardan tasodifiy pipeline-larni olmang.",
|
||||
"Don't like the style": "Uslub yoqmaydi",
|
||||
"Done": "Bajarildi",
|
||||
"Download": "Yuklab olish",
|
||||
"Download & Delete": "Yuklab olish va o‘chirish",
|
||||
"Download as SVG": "SVG sifatida yuklab oling",
|
||||
"Download canceled": "Yuklab olish bekor qilindi",
|
||||
"Download Database": "Ma'lumotlar bazasini yuklab olish",
|
||||
"Download & Delete": "Yuklab olish va o‘chirish",
|
||||
"Drag and drop a file to upload or select a file to view": "Yuklash uchun faylni sudrab tashlang yoki ko‘rish uchun faylni tanlang",
|
||||
"Draw": "Chizish",
|
||||
"Drop any files here to upload": "Yuklash uchun istalgan faylni shu yerga tashlang",
|
||||
|
|
@ -495,6 +511,7 @@
|
|||
"Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Vergul bilan ajratilgan \"token:bias_value\" juftlarini kiriting (misol: 5432:100, 413:-100)",
|
||||
"Enter Config in JSON format": "",
|
||||
"Enter content for the pending user info overlay. Leave empty for default.": "Kutilayotgan foydalanuvchi ma'lumotlari qoplamasi uchun tarkibni kiriting. Sukut bo'yicha bo'sh qoldiring.",
|
||||
"Enter coordinates (e.g. 51.505, -0.09)": "",
|
||||
"Enter Datalab Marker API Base URL": "",
|
||||
"Enter Datalab Marker API Key": "Datalab Marker API kalitini kiriting",
|
||||
"Enter description": "Tavsifni kiriting",
|
||||
|
|
@ -517,6 +534,8 @@
|
|||
"Enter Github Raw URL": "Github Raw URL manzilini kiriting",
|
||||
"Enter Google PSE API Key": "Google PSE API kalitini kiriting",
|
||||
"Enter Google PSE Engine Id": "Google PSE Engine identifikatorini kiriting",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Rasm hajmini kiriting (masalan, 512x512)",
|
||||
"Enter Jina API Key": "Jina API kalitini kiriting",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -570,12 +589,16 @@
|
|||
"Enter Top K Reranker": "Top K Reranker-ga kiring",
|
||||
"Enter URL (e.g. http://127.0.0.1:7860/)": "URL manzilini kiriting (masalan, http://127.0.0.1:7860/)",
|
||||
"Enter URL (e.g. http://localhost:11434)": "URL manzilini kiriting (masalan, http://localhost:11434)",
|
||||
"Enter value": "",
|
||||
"Enter value (true/false)": "",
|
||||
"Enter Yacy Password": "Yacy parolini kiriting",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "Yacy URL manzilini kiriting (masalan, http://yacy.example.com:8090)",
|
||||
"Enter Yacy Username": "Yacy foydalanuvchi nomini kiriting",
|
||||
"Enter your code here...": "Kodingizni bu yerga kiriting...",
|
||||
"Enter your current password": "Joriy parolingizni kiriting",
|
||||
"Enter Your Email": "Elektron pochtangizni kiriting",
|
||||
"Enter Your Full Name": "Toʻliq ismingizni kiriting",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Xabaringizni kiriting",
|
||||
"Enter your name": "Ismingizni kiriting",
|
||||
"Enter Your Name": "Ismingizni kiriting",
|
||||
|
|
@ -584,14 +607,16 @@
|
|||
"Enter Your Role": "Rolingizni kiriting",
|
||||
"Enter Your Username": "Foydalanuvchi nomingizni kiriting",
|
||||
"Enter your webhook URL": "Vebhuk URL manzilingizni kiriting",
|
||||
"Enter your code here...": "Kodingizni bu yerga kiriting...",
|
||||
"Error": "Xato",
|
||||
"ERROR": "XATO",
|
||||
"Error accessing directory": "",
|
||||
"Error accessing Google Drive: {{error}}": "Google Drive-ga kirishda xatolik yuz berdi: {{error}}",
|
||||
"Error accessing media devices.": "Media qurilmalariga kirishda xatolik yuz berdi.",
|
||||
"Error starting recording.": "Yozishni boshlashda xatolik yuz berdi.",
|
||||
"Error unloading model: {{error}}": "Modelni yuklashda xatolik yuz berdi: {{error}}",
|
||||
"Error uploading file: {{error}}": "Faylni yuklashda xatolik yuz berdi: {{error}}",
|
||||
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.": "",
|
||||
"Error: Model ID cannot be empty. Please enter a valid ID to proceed.": "",
|
||||
"Evaluations": "Baholar",
|
||||
"Everyone": "",
|
||||
"Exa API Key": "Exa API kaliti",
|
||||
|
|
@ -641,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "Fayl tarkibini yuklab bo‘lmadi.",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Bufer tarkibini o‘qib bo‘lmadi",
|
||||
"Failed to save connections": "Ulanishlar saqlanmadi",
|
||||
"Failed to save conversation": "Suhbat saqlanmadi",
|
||||
|
|
@ -654,6 +680,7 @@
|
|||
"Feedback History": "Fikr-mulohaza tarixi",
|
||||
"Feedbacks": "Fikr-mulohazalar",
|
||||
"Feel free to add specific details": "Muayyan tafsilotlarni qo'shishingiz mumkin",
|
||||
"Female": "",
|
||||
"File": "Fayl",
|
||||
"File added successfully.": "Fayl muvaffaqiyatli qo'shildi.",
|
||||
"File content updated successfully.": "Fayl mazmuni muvaffaqiyatli yangilandi.",
|
||||
|
|
@ -709,6 +736,7 @@
|
|||
"Gemini": "Egizaklar",
|
||||
"Gemini API Config": "Gemini API konfiguratsiyasi",
|
||||
"Gemini API Key is required.": "Gemini API kaliti talab qilinadi.",
|
||||
"Gender": "",
|
||||
"General": "General",
|
||||
"Generate": "Yaratish",
|
||||
"Generate an image": "Tasvir yaratish",
|
||||
|
|
@ -724,17 +752,19 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Google PSE API kaliti",
|
||||
"Google PSE Engine Id": "Google PSE Engine identifikatori",
|
||||
"Gravatar": "",
|
||||
"Group": "Guruh",
|
||||
"Group created successfully": "Guruh muvaffaqiyatli yaratildi",
|
||||
"Group deleted successfully": "Guruh muvaffaqiyatli oʻchirildi",
|
||||
"Group Description": "Guruh tavsifi",
|
||||
"Group Name": "Guruh nomi",
|
||||
"Group": "Guruh",
|
||||
"Group updated successfully": "Guruh muvaffaqiyatli yangilandi",
|
||||
"Groups": "Guruhlar",
|
||||
"H1": "",
|
||||
"H2": "",
|
||||
"H3": "",
|
||||
"Haptic Feedback": "Haptik fikr-mulohazalar",
|
||||
"Height": "",
|
||||
"Hello, {{name}}": "Salom, {{name}}",
|
||||
"Help": "Yordam",
|
||||
"Help us create the best community leaderboard by sharing your feedback history!": "Fikr-mulohazalaringiz tarixini baham ko‘rish orqali eng yaxshi hamjamiyat yetakchilari jadvalini yaratishga yordam bering!",
|
||||
|
|
@ -743,6 +773,7 @@
|
|||
"Hide": "Yashirish",
|
||||
"Hide from Sidebar": "",
|
||||
"Hide Model": "Modelni yashirish",
|
||||
"High": "",
|
||||
"High Contrast Mode": "Yuqori kontrast rejimi",
|
||||
"Home": "Uy",
|
||||
"Host": "Xost",
|
||||
|
|
@ -782,14 +813,16 @@
|
|||
"Import Tools": "Import vositalari",
|
||||
"Important Update": "Muhim yangilanish",
|
||||
"Include": "O'z ichiga oladi",
|
||||
"Includes SharePoint": "SharePoint 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` flag when running stable-diffusion-webui": "Stabil-diffusion-webui ishlatilayotganda `--api` bayrog'ini qo'shing",
|
||||
"Includes SharePoint": "SharePoint o‘z ichiga oladi",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Kompleks qayta ishlash uchun butun tarkibni kontekst sifatida kiriting, bu murakkab so'rovlar uchun tavsiya etiladi.",
|
||||
"Input": "",
|
||||
"Input commands": "Kirish buyruqlari",
|
||||
"Input Key (e.g. text, unet_name, steps)": "",
|
||||
"Input Variables": "",
|
||||
"Insert": "",
|
||||
"Insert Follow-Up Prompt to Input": "",
|
||||
|
|
@ -801,6 +834,7 @@
|
|||
"Invalid file content": "Fayl mazmuni noto‘g‘ri",
|
||||
"Invalid file format.": "Fayl formati noto‘g‘ri.",
|
||||
"Invalid JSON file": "JSON fayli yaroqsiz",
|
||||
"Invalid JSON format for ComfyUI Workflow.": "",
|
||||
"Invalid JSON format in Additional Config": "",
|
||||
"Invalid Tag": "Teg noto‘g‘ri",
|
||||
"is typing...": "yozmoqda...",
|
||||
|
|
@ -820,12 +854,15 @@
|
|||
"Keep Follow-Up Prompts in Chat": "",
|
||||
"Keep in Sidebar": "",
|
||||
"Key": "Kalit",
|
||||
"Key is required": "",
|
||||
"Keyboard shortcuts": "Klaviatura yorliqlari",
|
||||
"Knowledge": "Bilim",
|
||||
"Knowledge Access": "Bilimga kirish",
|
||||
"Knowledge Base": "",
|
||||
"Knowledge created successfully.": "Bilim muvaffaqiyatli yaratildi.",
|
||||
"Knowledge deleted successfully.": "Maʼlumotlar muvaffaqiyatli oʻchirildi.",
|
||||
"Knowledge Description": "",
|
||||
"Knowledge Name": "",
|
||||
"Knowledge Public Sharing": "Bilimlarni ommaviy almashish",
|
||||
"Knowledge reset successfully.": "Ma'lumotlar qayta tiklandi.",
|
||||
"Knowledge updated successfully": "Bilim muvaffaqiyatli yangilandi",
|
||||
|
|
@ -865,11 +902,13 @@
|
|||
"Local Task Model": "Mahalliy vazifa modeli",
|
||||
"Location access not allowed": "Joylashuvga ruxsat berilmagan",
|
||||
"Lost": "Yo'qotilgan",
|
||||
"Low": "",
|
||||
"LTR": "LTR",
|
||||
"Made by Open WebUI Community": "Open WebUI hamjamiyati tomonidan yaratilgan",
|
||||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Ularni o'rab qo'yganingizga ishonch hosil qiling",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Workflow.json faylini ComfyUI’dan API formati sifatida eksport qilganingizga ishonch hosil qiling.",
|
||||
"Male": "",
|
||||
"Manage": "Boshqarish",
|
||||
"Manage Direct Connections": "To'g'ridan-to'g'ri ulanishlarni boshqarish",
|
||||
"Manage Models": "Modellarni boshqarish",
|
||||
|
|
@ -878,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "OpenAI API ulanishlarini boshqaring",
|
||||
"Manage Pipelines": "Quvurlarni boshqarish",
|
||||
"Manage Tool Servers": "Asbob serverlarini boshqarish",
|
||||
"Manage your account information.": "",
|
||||
"March": "Mart",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -886,6 +926,7 @@
|
|||
"Max Upload Size": "Maksimal yuklash hajmi",
|
||||
"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Bir vaqtning o'zida maksimal 3 ta modelni yuklab olish mumkin. Keyinroq qayta urinib ko‘ring.",
|
||||
"May": "may",
|
||||
"Medium": "",
|
||||
"Memories accessible by LLMs will be shown here.": "LLMlar kirishi mumkin bo'lgan xotiralar bu erda ko'rsatiladi.",
|
||||
"Memory": "Xotira",
|
||||
"Memory added successfully": "Xotira muvaffaqiyatli qo'shildi",
|
||||
|
|
@ -921,6 +962,7 @@
|
|||
"Model ID is required.": "",
|
||||
"Model IDs": "Model identifikatorlari",
|
||||
"Model Name": "Model nomi",
|
||||
"Model name already exists, please choose a different one": "",
|
||||
"Model Name is required.": "",
|
||||
"Model not selected": "Model tanlanmagan",
|
||||
"Model Params": "Model parametrlari",
|
||||
|
|
@ -938,7 +980,9 @@
|
|||
"More": "Ko'proq",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Ism",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Bilimlar bazasini nomlang",
|
||||
"Native": "Mahalliy",
|
||||
"New Button": "",
|
||||
|
|
@ -957,6 +1001,7 @@
|
|||
"No content found": "Hech qanday kontent topilmadi",
|
||||
"No content found in file.": "Faylda kontent topilmadi.",
|
||||
"No content to speak": "Gapiradigan tarkib yo'q",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Masofa mavjud emas",
|
||||
"No feedbacks found": "Hech qanday fikr topilmadi",
|
||||
"No file selected": "Hech qanday fayl tanlanmagan",
|
||||
|
|
@ -973,9 +1018,11 @@
|
|||
"No results found": "Hech qanday natija topilmadi",
|
||||
"No search query generated": "Hech qanday qidiruv soʻrovi yaratilmadi",
|
||||
"No source available": "Manba mavjud emas",
|
||||
"No users were found.": "Hech qanday foydalanuvchi topilmadi.",
|
||||
"No valves to update": "Yangilash uchun klapanlar yo'q",
|
||||
"No suggestion prompts": "Tavsiya etilgan promptlar yo‘q",
|
||||
"No users were found.": "Hech qanday foydalanuvchi topilmadi.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Yangilash uchun klapanlar yo'q",
|
||||
"Node Ids": "",
|
||||
"None": "Yo'q",
|
||||
"Not factually correct": "Aslida to'g'ri emas",
|
||||
"Not helpful": "Foydali emas",
|
||||
|
|
@ -1026,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "OpenAI API sozlamalari yangilandi",
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Kalit talab qilinadi.",
|
||||
"openapi.json URL or Path": "openapi.json URL yoki yoʻl",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "yoki",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1075,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "Dramaturg WebSocket URL manzili",
|
||||
"Please carefully review the following warnings:": "Quyidagi ogohlantirishlarni diqqat bilan ko'rib chiqing:",
|
||||
"Please do not close the settings page while loading the model.": "Modelni yuklashda sozlamalar sahifasini yopmang.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Iltimos, taklif kiriting",
|
||||
"Please enter a valid path": "Yaroqli yo‘lni kiriting",
|
||||
"Please enter a valid URL": "Yaroqli URL manzilini kiriting",
|
||||
|
|
@ -1085,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Port",
|
||||
"Positive attitude": "Ijobiy munosabat",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Prefiks identifikatori",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiks identifikatori model identifikatorlariga prefiks qo'shish orqali boshqa ulanishlar bilan ziddiyatlarni oldini olish uchun ishlatiladi - o'chirish uchun bo'sh qoldiring.",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1094,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "Shaxsiy",
|
||||
"Profile": "Profil",
|
||||
"Profile Image": "Profil rasmi",
|
||||
"Prompt": "Tezkor",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Tezkor (masalan, menga Rim imperiyasi haqida qiziqarli faktni aytib bering)",
|
||||
"Prompt Autocompletion": "Tezkor avtomatik yakunlash",
|
||||
|
|
@ -1147,16 +1196,16 @@
|
|||
"Reranking Model": "Qayta tartiblash modeli",
|
||||
"Reset": "Qayta tiklash",
|
||||
"Reset All Models": "Barcha modellarni qayta o'rnatish",
|
||||
"Reset Image": "Rasmni qayta tiklash",
|
||||
"Reset Upload Directory": "Yuklash katalogini tiklash",
|
||||
"Reset Vector Storage/Knowledge": "Vektor xotirasi/bilimini qayta o'rnatish",
|
||||
"Reset view": "Ko'rinishni tiklash",
|
||||
"Reset Image": "Rasmni qayta tiklash",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Javob bildirishnomalarini faollashtirib bo‘lmaydi, chunki veb-sayt ruxsatnomalari rad etilgan. Kerakli ruxsat berish uchun brauzer sozlamalariga tashrif buyuring.",
|
||||
"Response splitting": "Javobni ajratish",
|
||||
"Response Watermark": "Javob suv belgisi",
|
||||
"RESULT": "Natija",
|
||||
"Result": "Natija",
|
||||
"RESULT": "Natija",
|
||||
"Retrieval": "Qidiruv",
|
||||
"Retrieval Query Generation": "Qidiruv so'rovlarini yaratish",
|
||||
"Rich Text Input for Chat": "Chat uchun boy matn kiritish",
|
||||
|
|
@ -1172,12 +1221,14 @@
|
|||
"Save & Create": "Saqlash va yaratish",
|
||||
"Save & Update": "Saqlash va yangilash",
|
||||
"Save As Copy": "Nusxa sifatida saqlash",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Tegni saqlang",
|
||||
"Saved": "Saqlangan",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Chat jurnallarini bevosita brauzeringiz xotirasiga saqlash endi qo‘llab-quvvatlanmaydi. Quyidagi tugmani bosish orqali suhbat jurnallaringizni yuklab oling va oʻchiring. Xavotir olmang, siz chat jurnallarini backend orqali osongina qayta import qilishingiz mumkin",
|
||||
"Scroll On Branch Change": "Filialni o'zgartirish bo'yicha aylantiring",
|
||||
"Search": "Qidiruv",
|
||||
"Search a model": "Modelni qidiring",
|
||||
"Search all emojis": "",
|
||||
"Search Base": "Qidiruv bazasi",
|
||||
"Search Chats": "Chatlarni qidirish",
|
||||
"Search Collection": "To'plamni qidirish",
|
||||
|
|
@ -1207,18 +1258,32 @@
|
|||
"See readme.md for instructions": "Ko'rsatmalar uchun readme.md ga qarang",
|
||||
"See what's new": "Nima yangiliklar borligini ko'ring",
|
||||
"Seed": "Urug'",
|
||||
"Select": "",
|
||||
"Select a base model": "Asosiy modelni tanlang",
|
||||
"Select a base model (e.g. llama3, gpt-4o)": "",
|
||||
"Select a conversation to preview": "",
|
||||
"Select a engine": "Dvigatelni tanlang",
|
||||
"Select a function": "Funktsiyani tanlang",
|
||||
"Select a group": "Guruhni tanlang",
|
||||
"Select a language": "",
|
||||
"Select a mode": "",
|
||||
"Select a model": "Modelni tanlang",
|
||||
"Select a model (optional)": "",
|
||||
"Select a pipeline": "Quvurni tanlang",
|
||||
"Select a pipeline url": "Quvur liniyasining URL manzilini tanlang",
|
||||
"Select a reranking model engine": "",
|
||||
"Select a role": "",
|
||||
"Select a theme": "",
|
||||
"Select a tool": "Asbobni tanlang",
|
||||
"Select a voice": "",
|
||||
"Select an auth method": "Auth usulini tanlang",
|
||||
"Select an embedding model engine": "",
|
||||
"Select an engine": "",
|
||||
"Select an Ollama instance": "Ollama misolini tanlang",
|
||||
"Select an output format": "",
|
||||
"Select dtype": "",
|
||||
"Select Engine": "Dvigatelni tanlang",
|
||||
"Select how to split message text for TTS requests": "",
|
||||
"Select Knowledge": "Bilim-ni tanlang",
|
||||
"Select only one model to call": "Qo'ng'iroq qilish uchun faqat bitta modelni tanlang",
|
||||
"Selected model(s) do not support image inputs": "Tanlangan model(lar) tasvir kiritishni qo‘llab-quvvatlamaydi",
|
||||
|
|
@ -1235,6 +1300,7 @@
|
|||
"Serply API Key": "Serply API kaliti",
|
||||
"Serpstack API Key": "Serpstack API kaliti",
|
||||
"Server connection verified": "Server ulanishi tasdiqlandi",
|
||||
"Session": "",
|
||||
"Set as default": "Standart sifatida o'rnating",
|
||||
"Set CFG Scale": "CFG shkalasini o'rnating",
|
||||
"Set Default Model": "Standart modelni o'rnating",
|
||||
|
|
@ -1260,6 +1326,7 @@
|
|||
"Share": "Ulashish",
|
||||
"Share Chat": "Chatni ulashish",
|
||||
"Share to Open WebUI Community": "Open WebUI hamjamiyatiga ulashing",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Ruxsatlarni almashish",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Ko'rsatish",
|
||||
|
|
@ -1285,6 +1352,12 @@
|
|||
"sk-1234": "sk-1234",
|
||||
"Skip Cache": "Keshni o'tkazib yuborish",
|
||||
"Skip the cache and re-run the inference. Defaults to False.": "Keshni o'tkazib yuboring va xulosani qayta ishga tushiring. Birlamchi parametrlar False.",
|
||||
"Something went wrong :/": "",
|
||||
"Sonar": "",
|
||||
"Sonar Deep Research": "",
|
||||
"Sonar Pro": "",
|
||||
"Sonar Reasoning": "",
|
||||
"Sonar Reasoning Pro": "",
|
||||
"Sougou Search API sID": "Sougou Search API sID",
|
||||
"Sougou Search API SK": "Sougou Search API SK",
|
||||
"Source": "Manba",
|
||||
|
|
@ -1293,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Nutqdan matnga vosita",
|
||||
"Start of the channel": "Kanal boshlanishi",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "STOP",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Ketma-ketlikni to'xtatish",
|
||||
|
|
@ -1301,12 +1375,12 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "Mavjud OCRni ajratib oling",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "Mavjud OCR matnini PDF faylidan olib tashlang va OCRni qayta ishga tushiring. Majburiy OCR yoqilgan bo'lsa, e'tiborga olinmaydi. Birlamchi parametrlar False.",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "STT modeli",
|
||||
"STT Settings": "STT sozlamalari",
|
||||
"Stylized PDF Export": "Stillashtirilgan PDF eksporti",
|
||||
"Subtitle (e.g. about the Roman Empire)": "Subtitr (masalan, Rim imperiyasi haqida)",
|
||||
"Success": "Muvaffaqiyat",
|
||||
"Successfully imported {{userCount}} users.": "",
|
||||
"Successfully updated.": "Muvaffaqiyatli yangilandi.",
|
||||
"Suggest a change": "",
|
||||
"Suggested": "Tavsiya etilgan",
|
||||
|
|
@ -1331,6 +1405,7 @@
|
|||
"Tell us more:": "Bizga ko'proq ma'lumot bering:",
|
||||
"Temperature": "Harorat",
|
||||
"Temporary Chat": "Vaqtinchalik suhbat",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Matn ajratuvchi",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Matnni nutqqa aylantirish mexanizmi",
|
||||
|
|
@ -1349,6 +1424,7 @@
|
|||
"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Faylning maksimal hajmi MB. Agar fayl hajmi ushbu chegaradan oshsa, fayl yuklanmaydi.",
|
||||
"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Chatda bir vaqtning o'zida ishlatilishi mumkin bo'lgan maksimal fayllar soni. Agar fayllar soni ushbu chegaradan oshsa, fayllar yuklanmaydi.",
|
||||
"The output format for the text. Can be 'json', 'markdown', or 'html'. Defaults to 'markdown'.": "Matn uchun chiqish formati. \"json\", \"markdown\" yoki \"html\" bo'lishi mumkin. Birlamchi \"markdown\" uchun.",
|
||||
"The passwords you entered don't quite match. Please double-check and try again.": "",
|
||||
"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Bal 0,0 (0%) va 1,0 (100%) oralig'ida bo'lishi kerak.",
|
||||
"The stream delta chunk size for the model. Increasing the chunk size will make the model respond with larger pieces of text at once.": "",
|
||||
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Modeldagi harorat. Haroratni oshirish modelni yanada ijodiy javob berishga majbur qiladi.",
|
||||
|
|
@ -1462,13 +1538,13 @@
|
|||
"Upload Files": "Fayllarni yuklash",
|
||||
"Upload Pipeline": "Quvur liniyasini yuklash",
|
||||
"Upload Progress": "Yuklash jarayoni",
|
||||
"Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "",
|
||||
"URL": "URL",
|
||||
"URL is required": "",
|
||||
"URL Mode": "URL rejimi",
|
||||
"Usage": "Foydalanish",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "O'z bilimlaringizni yuklash va kiritish uchun so'rovnomada \"#\" dan foydalaning.",
|
||||
"Use Gravatar": "Gravatar-dan foydalaning",
|
||||
"Use groups to group your users and assign permissions.": "Foydalanuvchilaringizni guruhlash va ruxsatlarni belgilash uchun guruhlardan foydalaning.",
|
||||
"Use Initials": "Bosh harflardan foydalaning",
|
||||
"Use LLM": "LLM dan foydalaning",
|
||||
"Use no proxy to fetch page contents.": "Sahifa mazmunini olish uchun proksi-serverdan foydalanmang.",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "Sahifa mazmunini olish uchun http_proxy va https_proxy muhit oʻzgaruvchilari tomonidan belgilangan proksi-serverdan foydalaning.",
|
||||
|
|
@ -1484,6 +1560,7 @@
|
|||
"Using Focused Retrieval": "",
|
||||
"Using the default arena model with all models. Click the plus button to add custom models.": "Barcha modellar bilan standart arena modelidan foydalanish. Maxsus modellarni qo'shish uchun ortiqcha tugmasini bosing.",
|
||||
"Valid time units:": "Yaroqli vaqt birliklari:",
|
||||
"Validate certificate": "",
|
||||
"Valves": "Vanalar",
|
||||
"Valves updated": "Vanalar yangilandi",
|
||||
"Valves updated successfully": "Vanalar muvaffaqiyatli yangilandi",
|
||||
|
|
@ -1526,6 +1603,7 @@
|
|||
"Whisper (Local)": "Shivirlash (mahalliy)",
|
||||
"Why?": "Nega?",
|
||||
"Widescreen Mode": "Keng ekran rejimi",
|
||||
"Width": "",
|
||||
"Won": "G'alaba qozondi",
|
||||
"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text.": "Top-k bilan birga ishlaydi. Yuqori qiymat (masalan, 0,95) matnning xilma-xilligiga olib keladi, pastroq qiymat esa (masalan, 0,5) ko'proq diqqatli va konservativ matnni yaratadi.",
|
||||
"Workspace": "Ish maydoni",
|
||||
|
|
@ -1549,6 +1627,7 @@
|
|||
"You have shared this chat": "Siz bu chatni baham ko'rdingiz",
|
||||
"You're a helpful assistant.": "Siz foydali yordamchisiz.",
|
||||
"You're now logged in.": "Siz endi tizimga kirdingiz.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Hisobingiz holati hozirda faollashtirishni kutmoqda.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Sizning barcha hissangiz to'g'ridan-to'g'ri plagin ishlab chiqaruvchisiga o'tadi; Open WebUI hech qanday foizni olmaydi. Biroq, tanlangan moliyalashtirish platformasi o'z to'lovlariga ega bo'lishi mumkin.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "Base URL của AUTOMATIC1111 là bắt buộc.",
|
||||
"Available list": "Danh sách có sẵn",
|
||||
"Available Tools": "Công cụ có sẵn",
|
||||
"available!": "có sẵn!",
|
||||
"available users": "người dùng khả dụng",
|
||||
"available!": "có sẵn!",
|
||||
"Away": "Vắng mặt",
|
||||
"Awful": "Tệ",
|
||||
"Azure AI Speech": "Azure AI Speech",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Endpoint Bing Search V7",
|
||||
"Bing Search V7 Subscription Key": "Khóa đăng ký Bing Search V7",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "",
|
||||
"Bocha Search API Key": "Khóa API Bocha Search",
|
||||
"Bold": "",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "Điều khiển Chats",
|
||||
"Chat direction": "Hướng chat",
|
||||
"Chat ID": "",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "Tổng quan Chat",
|
||||
"Chat Permissions": "Quyền Chat",
|
||||
"Chat Tags Auto-Generation": "Tự động tạo Thẻ Chat",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "Kiểm soát sự lặp lại của các chuỗi token trong văn bản được tạo. Giá trị cao hơn (ví dụ: 1.5) sẽ phạt sự lặp lại mạnh hơn, trong khi giá trị thấp hơn (ví dụ: 1.1) sẽ khoan dung hơn. Tại 1, nó bị vô hiệu hóa.",
|
||||
"Controls": "Điều khiển",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "Kiểm soát sự cân bằng giữa tính mạch lạc và sự đa dạng của đầu ra. Giá trị thấp hơn sẽ dẫn đến văn bản tập trung và mạch lạc hơn.",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "Đã sao chép",
|
||||
"Copied link to clipboard": "",
|
||||
"Copied shared chat URL to clipboard!": "Đã sao chép link chia sẻ trò chuyện vào clipboard!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "Tài liệu",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "không thực hiện bất kỳ kết nối ngoài nào, và dữ liệu của bạn vẫn được lưu trữ an toàn trên máy chủ lưu trữ cục bộ của bạn.",
|
||||
"Domain Filter List": "Danh sách Lọc Tên miền",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Đừng lấy các pipelines ngẫu nhiên từ nguồn không đáng tin cậy.",
|
||||
"Don't have an account?": "Không có tài khoản?",
|
||||
"don't install random functions from sources you don't trust.": "không cài đặt các function từ các nguồn mà bạn không tin tưởng.",
|
||||
"don't install random tools from sources you don't trust.": "không cài đặt các tools từ các nguồn mà bạn không tin tưởng.",
|
||||
"don't fetch random pipelines from sources you don't trust.": "Đừng lấy các pipelines ngẫu nhiên từ nguồn không đáng tin cậy.",
|
||||
"Don't like the style": "Không thích phong cách trả lời",
|
||||
"Done": "Hoàn thành",
|
||||
"Download": "Tải về",
|
||||
"Download & Delete": "Tải xuống và xóa",
|
||||
"Download as SVG": "Tải xuống dưới dạng SVG",
|
||||
"Download canceled": "Đã hủy download",
|
||||
"Download Database": "Tải xuống Cơ sở dữ liệu",
|
||||
"Download & Delete": "Tải xuống và xóa",
|
||||
"Drag and drop a file to upload or select a file to view": "Kéo và thả tệp để tải lên hoặc chọn tệp để xem",
|
||||
"Draw": "Vẽ",
|
||||
"Drop any files here to upload": "",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "Nhập Google PSE API Key",
|
||||
"Enter Google PSE Engine Id": "Nhập Google PSE Engine Id",
|
||||
"Enter hex color (e.g. #FF0000)": "",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "Nhập Kích thước ảnh (vd: 512x512)",
|
||||
"Enter Jina API Key": "Nhập Khóa API Jina",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "",
|
||||
"Enter Yacy Username": "",
|
||||
"Enter your code here...": "Nhập mã của bạn tại đây...",
|
||||
"Enter your current password": "Nhập mật khẩu hiện tại của bạn",
|
||||
"Enter Your Email": "Nhập Email của bạn",
|
||||
"Enter Your Full Name": "Nhập Họ và Tên của bạn",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "Nhập tin nhắn của bạn",
|
||||
"Enter your name": "Nhập tên của bạn",
|
||||
"Enter Your Name": "",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "Nhập vai trò của bạn",
|
||||
"Enter Your Username": "Nhập Tên đăng nhập của bạn",
|
||||
"Enter your webhook URL": "Nhập URL webhook của bạn",
|
||||
"Enter your code here...": "Nhập mã của bạn tại đây...",
|
||||
"Error": "Lỗi",
|
||||
"ERROR": "LỖI",
|
||||
"Error accessing directory": "",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "",
|
||||
"Failed to load chat preview": "",
|
||||
"Failed to load file content.": "",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "Không thể đọc nội dung clipboard",
|
||||
"Failed to save connections": "Không thể lưu các kết nối",
|
||||
"Failed to save conversation": "Không thể lưu cuộc trò chuyện",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "Lịch sử Phản hồi",
|
||||
"Feedbacks": "Các phản hồi",
|
||||
"Feel free to add specific details": "Mô tả chi tiết về chất lượng của câu hỏi và phương án trả lời",
|
||||
"Female": "",
|
||||
"File": "Tệp",
|
||||
"File added successfully.": "Thêm tệp thành công.",
|
||||
"File content updated successfully.": "Nội dung tệp được cập nhật thành công.",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Cấu hình API Gemini",
|
||||
"Gemini API Key is required.": "Yêu cầu Khóa API Gemini.",
|
||||
"Gender": "",
|
||||
"General": "Cài đặt chung",
|
||||
"Generate": "",
|
||||
"Generate an image": "Tạo một hình ảnh",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Khóa API Google PSE",
|
||||
"Google PSE Engine Id": "ID công cụ Google PSE",
|
||||
"Gravatar": "",
|
||||
"Group": "Nhóm",
|
||||
"Group created successfully": "Đã tạo nhóm thành công",
|
||||
"Group deleted successfully": "Đã xóa nhóm thành công",
|
||||
"Group Description": "Mô tả Nhóm",
|
||||
"Group Name": "Tên Nhóm",
|
||||
"Group": "Nhóm",
|
||||
"Group updated successfully": "Đã cập nhật nhóm thành công",
|
||||
"Groups": "Nhóm",
|
||||
"H1": "",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "Nạp Tools",
|
||||
"Important Update": "Bản cập nhật quan trọng",
|
||||
"Include": "Bao gồm",
|
||||
"Includes SharePoint": "Bao gồm SharePoint",
|
||||
"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",
|
||||
"Includes SharePoint": "Bao gồm SharePoint",
|
||||
"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",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Đưa toàn bộ nội dung vào làm ngữ cảnh để xử lý toàn diện, điều này được khuyến nghị cho các truy vấn phức tạp.",
|
||||
"Input": "",
|
||||
"Input commands": "Nhập các câu lệnh",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "",
|
||||
"Make sure to enclose them with": "Hãy chắc chắn bao quanh chúng bằng",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "Đảm bảo xuất tệp Workflow.json đúng format API của ComfyUI.",
|
||||
"Male": "",
|
||||
"Manage": "Quản lý",
|
||||
"Manage Direct Connections": "Quản lý Kết nối Trực tiếp",
|
||||
"Manage Models": "Quản lý Mô hình",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "Quản lý Kết nối API OpenAI",
|
||||
"Manage Pipelines": "Quản lý Pipelines",
|
||||
"Manage Tool Servers": "Quản lý Máy chủ Công cụ",
|
||||
"Manage your account information.": "",
|
||||
"March": "Tháng 3",
|
||||
"Markdown": "",
|
||||
"Markdown (Header)": "",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "Thêm",
|
||||
"More Concise": "",
|
||||
"More Options": "",
|
||||
"Move": "",
|
||||
"Name": "Tên",
|
||||
"Name and ID are required, please fill them out": "",
|
||||
"Name your knowledge base": "Đặt tên cho cơ sở kiến thức của bạn",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "Không tìm thấy nội dung",
|
||||
"No content found in file.": "",
|
||||
"No content to speak": "Không có nội dung để nói",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "Không có khoảng cách khả dụng",
|
||||
"No feedbacks found": "Không tìm thấy phản hồi nào",
|
||||
"No file selected": "Chưa có tệp nào được chọn",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "Không tìm thấy kết quả",
|
||||
"No search query generated": "Không có truy vấn tìm kiếm nào được tạo ra",
|
||||
"No source available": "Không có nguồn",
|
||||
"No suggestion prompts": "Không có prompt gợi ý",
|
||||
"No users were found.": "Không tìm thấy người dùng nào.",
|
||||
"No valves": "",
|
||||
"No valves to update": "Chưa có valves nào được cập nhật",
|
||||
"Node Ids": "",
|
||||
"No suggestion prompts": "Không có prompt gợi ý",
|
||||
"None": "Không ai",
|
||||
"Not factually correct": "Không chính xác so với thực tế",
|
||||
"Not helpful": "Không hữu ích",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "Đã cập nhật cài đặt API OpenAI",
|
||||
"OpenAI URL/Key required.": "Yêu cầu URL/Key API OpenAI.",
|
||||
"openapi.json URL or Path": "",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "",
|
||||
"or": "hoặc",
|
||||
"Ordered List": "",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "",
|
||||
"Please carefully review the following warnings:": "Vui lòng xem xét cẩn thận các cảnh báo sau:",
|
||||
"Please do not close the settings page while loading the model.": "Vui lòng không đóng trang cài đặt trong khi tải mô hình.",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "Vui lòng nhập một prompt",
|
||||
"Please enter a valid path": "Vui lòng nhập một đường dẫn hợp lệ",
|
||||
"Please enter a valid URL": "Vui lòng nhập một URL hợp lệ",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "",
|
||||
"Port": "Cổng",
|
||||
"Positive attitude": "Thái độ tích cực",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "Tiền tố ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Tiền tố ID được sử dụng để tránh xung đột với các kết nối khác bằng cách thêm tiền tố vào ID mô hình - để trống để tắt",
|
||||
"Prevent file creation": "",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "",
|
||||
"Private": "Riêng tư",
|
||||
"Profile": "Hồ sơ",
|
||||
"Profile Image": "Ảnh đại diện",
|
||||
"Prompt": "Prompt",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (ví dụ: Hãy kể cho tôi một sự thật thú vị về Đế chế La Mã)",
|
||||
"Prompt Autocompletion": "Tự động hoàn thành Prompt",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "Reranking Model",
|
||||
"Reset": "Xóa toàn bộ",
|
||||
"Reset All Models": "Đặt lại Tất cả Mô hình",
|
||||
"Reset Image": "Đặt lại hình ảnh",
|
||||
"Reset Upload Directory": "Xóa toàn bộ thư mục Upload",
|
||||
"Reset Vector Storage/Knowledge": "Đặt lại Lưu trữ Vector/Kiến thức",
|
||||
"Reset view": "Đặt lại chế độ xem",
|
||||
"Reset Image": "Đặt lại hình ảnh",
|
||||
"Response": "",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Không thể kích hoạt thông báo vì trang web không cấp quyền. Vui lòng truy cập cài đặt trình duyệt của bạn để cấp quyền cần thiết.",
|
||||
"Response splitting": "Phân tách phản hồi",
|
||||
"Response Watermark": "",
|
||||
"RESULT": "Kết quả",
|
||||
"Result": "Kết quả",
|
||||
"RESULT": "Kết quả",
|
||||
"Retrieval": "Truy xuất",
|
||||
"Retrieval Query Generation": "Tạo Truy vấn Truy xuất",
|
||||
"Rich Text Input for Chat": "Nhập Văn bản Đa dạng cho Chat",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "Lưu & Tạo",
|
||||
"Save & Update": "Lưu & Cập nhật",
|
||||
"Save As Copy": "Lưu dưới dạng Bản sao",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "Lưu Thẻ",
|
||||
"Saved": "Đã lưu",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "Không còn hỗ trợ lưu trữ lịch sử chat trực tiếp vào bộ nhớ trình duyệt của bạn. Vui lòng dành thời gian để tải xuống và xóa lịch sử chat của bạn bằng cách nhấp vào nút bên dưới. Đừng lo lắng, bạn có thể dễ dàng nhập lại lịch sử chat của mình vào backend thông qua",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "Chia sẻ",
|
||||
"Share Chat": "Chia sẻ Chat",
|
||||
"Share to Open WebUI Community": "Chia sẻ đến Cộng đồng OpenWebUI",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "Quyền Chia sẻ",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "",
|
||||
"Show": "Hiển thị",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "",
|
||||
"Speech-to-Text Engine": "Công cụ Nhận dạng Giọng nói",
|
||||
"Start of the channel": "Đầu kênh",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "Dừng",
|
||||
"Stop Generating": "",
|
||||
"Stop Sequence": "Trình tự Dừng",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "",
|
||||
"Strip Existing OCR": "",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "Mô hình STT",
|
||||
"STT Settings": "Cài đặt Nhận dạng Giọng nói",
|
||||
"Stylized PDF Export": "",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "Hãy cho chúng tôi hiểu thêm về chất lượng của câu trả lời:",
|
||||
"Temperature": "Mức độ sáng tạo",
|
||||
"Temporary Chat": "Chat nháp",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "Bộ chia Văn bản",
|
||||
"Text-to-Speech": "",
|
||||
"Text-to-Speech Engine": "Công cụ Chuyển Văn bản thành Giọng nói",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "Chế độ URL",
|
||||
"Usage": "",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "Sử dụng '#' trong ô nhập prompt để tải và bao gồm kiến thức của bạn.",
|
||||
"Use Gravatar": "Sử dụng Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "Sử dụng nhóm để nhóm người dùng của bạn và gán quyền.",
|
||||
"Use Initials": "Sử dụng tên viết tắt",
|
||||
"Use LLM": "",
|
||||
"Use no proxy to fetch page contents.": "",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "Bạn vừa chia sẻ chat này",
|
||||
"You're a helpful assistant.": "Bạn là một trợ lý hữu ích.",
|
||||
"You're now logged in.": "Bạn đã đăng nhập.",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "Tài khoản của bạn hiện đang ở trạng thái chờ kích hoạt.",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Toàn bộ đóng góp của bạn sẽ được chuyển trực tiếp đến nhà phát triển plugin; Open WebUI không lấy bất kỳ tỷ lệ phần trăm nào. Tuy nhiên, nền tảng được chọn tài trợ có thể có phí riêng.",
|
||||
"Youtube": "Youtube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 URL 是必填项。",
|
||||
"Available list": "可用列表",
|
||||
"Available Tools": "可用工具",
|
||||
"available!": "版本可用!",
|
||||
"available users": "可用用户",
|
||||
"available!": "版本可用!",
|
||||
"Away": "离开",
|
||||
"Awful": "糟糕",
|
||||
"Azure AI Speech": "Azure AI 语音",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "Beta",
|
||||
"Bing Search V7 Endpoint": "Bing 搜索 V7 端点",
|
||||
"Bing Search V7 Subscription Key": "Bing 搜索 V7 订阅密钥",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "BM25 混合搜索权重",
|
||||
"Bocha Search API Key": "Bocha Search API 密钥",
|
||||
"Bold": "粗体",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "对话高级设置",
|
||||
"Chat direction": "对话样式方向",
|
||||
"Chat ID": "对话 ID",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "对话概述",
|
||||
"Chat Permissions": "对话权限",
|
||||
"Chat Tags Auto-Generation": "自动生成对话标签",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "控制生成文本中标记序列的重复度。较高的值(例如1.5)将更强烈地惩罚重复,而较低的值(例如1.1)则更为宽松。当值为1时,此功能将被禁用。",
|
||||
"Controls": "对话高级设置",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "控制输出文本中连贯性和多样性之间的平衡。较低的值将产生更加专注和连贯的文本。",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "已复制",
|
||||
"Copied link to clipboard": "已复制链接到剪贴板",
|
||||
"Copied shared chat URL to clipboard!": "已复制对话的分享链接到剪贴板!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "文档",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "不会与外部建立任何连接,您的数据会安全地存储在本地托管的服务器上。",
|
||||
"Domain Filter List": "域名过滤列表",
|
||||
"don't fetch random pipelines from sources you don't trust.": "请勿从未经验证或不可信的来源获取 Pipelines。",
|
||||
"Don't have an account?": "没有账号?",
|
||||
"don't install random functions from sources you don't trust.": "切勿从未经验证或不可信的来源安装函数",
|
||||
"don't install random tools from sources you don't trust.": "切勿从未经验证或不可信的来源安装工具",
|
||||
"don't fetch random pipelines from sources you don't trust.": "请勿从未经验证或不可信的来源获取 Pipelines。",
|
||||
"Don't like the style": "不喜欢这种文风",
|
||||
"Done": "完成",
|
||||
"Download": "下载",
|
||||
"Download & Delete": "下载并删除",
|
||||
"Download as SVG": "下载为 SVG",
|
||||
"Download canceled": "下载已取消",
|
||||
"Download Database": "下载数据库",
|
||||
"Download & Delete": "下载并删除",
|
||||
"Drag and drop a file to upload or select a file to view": "拖动文件上传或选择文件查看",
|
||||
"Draw": "平局",
|
||||
"Drop any files here to upload": "将任何文件拖放到此处进行上传",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "输入 Google PSE API 密钥",
|
||||
"Enter Google PSE Engine Id": "输入 Google PSE 引擎 ID",
|
||||
"Enter hex color (e.g. #FF0000)": "输入十六进制颜色(例如:#FF0000)",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "输入图像分辨率(例如:512x512)",
|
||||
"Enter Jina API Key": "输入 Jina API 密钥",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "输入 JSON 配置(例如:{\"disable_links\": true})",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "输入 YaCy 密码",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "输入 YaCy URL(例如:http://yacy.example.com:8090)",
|
||||
"Enter Yacy Username": "输入 YaCy 用户名",
|
||||
"Enter your code here...": "在此输入您的代码…",
|
||||
"Enter your current password": "输入当前密码",
|
||||
"Enter Your Email": "输入您的电子邮箱",
|
||||
"Enter Your Full Name": "输入您的名称",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "输入您的消息",
|
||||
"Enter your name": "输入您的名称",
|
||||
"Enter Your Name": "输入您的名称",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "输入您的权限组",
|
||||
"Enter Your Username": "输入您的用户名",
|
||||
"Enter your webhook URL": "输入您的 Webhook URL",
|
||||
"Enter your code here...": "在此输入您的代码…",
|
||||
"Error": "错误",
|
||||
"ERROR": "错误",
|
||||
"Error accessing directory": "访问目录时出错",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "生成标题失败",
|
||||
"Failed to load chat preview": "对话预览加载失败",
|
||||
"Failed to load file content.": "文件内容加载失败",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "读取剪贴板内容失败",
|
||||
"Failed to save connections": "保存连接失败",
|
||||
"Failed to save conversation": "保存会话失败",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "反馈历史",
|
||||
"Feedbacks": "反馈",
|
||||
"Feel free to add specific details": "欢迎补充具体细节",
|
||||
"Female": "",
|
||||
"File": "文件",
|
||||
"File added successfully.": "文件成功添加",
|
||||
"File content updated successfully.": "文件内容成功更新",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Gemini API 配置",
|
||||
"Gemini API Key is required.": "Gemini API 密钥是必填项。",
|
||||
"Gender": "",
|
||||
"General": "通用",
|
||||
"Generate": "生成",
|
||||
"Generate an image": "生成图像",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google 云端硬盘",
|
||||
"Google PSE API Key": "Google PSE API 密钥",
|
||||
"Google PSE Engine Id": "Google PSE 引擎 ID",
|
||||
"Gravatar": "",
|
||||
"Group": "权限组",
|
||||
"Group created successfully": "权限组创建成功",
|
||||
"Group deleted successfully": "权限组删除成功",
|
||||
"Group Description": "权限组描述",
|
||||
"Group Name": "权限组名称",
|
||||
"Group": "权限组",
|
||||
"Group updated successfully": "权限组更新成功",
|
||||
"Groups": "权限组",
|
||||
"H1": "一级标题",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "导入工具",
|
||||
"Important Update": "重要更新",
|
||||
"Include": "包括",
|
||||
"Includes SharePoint": "包含 SharePoint",
|
||||
"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` 参数",
|
||||
"Includes SharePoint": "包含 SharePoint",
|
||||
"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": "信息",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "注入整个内容作为上下文进行综合处理,适用于复杂查询",
|
||||
"Input": "输入",
|
||||
"Input commands": "输入命令",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "在用户界面中显示密码",
|
||||
"Make sure to enclose them with": "确保将它们包含在内",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "确保从 ComfyUI 导出 API 格式的 workflow.json 文件。",
|
||||
"Male": "",
|
||||
"Manage": "管理",
|
||||
"Manage Direct Connections": "管理直接连接",
|
||||
"Manage Models": "管理模型",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "管理 OpenAI API 连接",
|
||||
"Manage Pipelines": "管理 Pipeline",
|
||||
"Manage Tool Servers": "管理工具服务器",
|
||||
"Manage your account information.": "",
|
||||
"March": "三月",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "Markdown(标题)",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "更多",
|
||||
"More Concise": "精炼表达",
|
||||
"More Options": "更多选项",
|
||||
"Move": "",
|
||||
"Name": "名称",
|
||||
"Name and ID are required, please fill them out": "名称和 ID 是必填项,请填写它们",
|
||||
"Name your knowledge base": "为您的知识库命名",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "未发现内容",
|
||||
"No content found in file.": "文件中未找到内容",
|
||||
"No content to speak": "没有内容可朗读",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "没有可用距离",
|
||||
"No feedbacks found": "暂无任何反馈",
|
||||
"No file selected": "未选中文件",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "未找到结果",
|
||||
"No search query generated": "未生成搜索查询",
|
||||
"No source available": "没有可用来源",
|
||||
"No suggestion prompts": "没有推荐提示词",
|
||||
"No users were found.": "未找到用户",
|
||||
"No valves": "没有配置项",
|
||||
"No valves to update": "没有需要更新的配置项",
|
||||
"Node Ids": "节点 ID",
|
||||
"No suggestion prompts": "没有推荐提示词",
|
||||
"None": "无",
|
||||
"Not factually correct": "与事实不符",
|
||||
"Not helpful": "没有任何帮助",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "OpenAI API 设置已更新",
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Key 是必填项。",
|
||||
"openapi.json URL or Path": "openapi.json URL 或路径",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "在图片描述功能中本地运行视觉语言模型的选项。此参数指向托管在 Hugging Face 上的模型。此参数不可与 picture_description_api 同时使用。",
|
||||
"or": "或",
|
||||
"Ordered List": "有序列表",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "Playwright WebSocket URL",
|
||||
"Please carefully review the following warnings:": "请仔细阅读以下警告信息:",
|
||||
"Please do not close the settings page while loading the model.": "加载模型时请不要关闭设置页面",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "请输入一个 Prompt",
|
||||
"Please enter a valid path": "请输入有效路径",
|
||||
"Please enter a valid URL": "请输入有效 URL",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "请等待所有文件上传完毕。",
|
||||
"Port": "端口",
|
||||
"Positive attitude": "态度积极",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "模型 ID 前缀",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "在模型 ID 前添加前缀以避免与其它连接提供的模型冲突。留空则禁用此功能。",
|
||||
"Prevent file creation": "阻止文件创建",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "上一条消息",
|
||||
"Private": "私有",
|
||||
"Profile": "个人资料",
|
||||
"Profile Image": "用户头像",
|
||||
"Prompt": "提示词 (Prompt)",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "提示词(例如:给我讲一个关于罗马帝国的趣事)",
|
||||
"Prompt Autocompletion": "提示词自动补全",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "重排序模型",
|
||||
"Reset": "重置",
|
||||
"Reset All Models": "重置所有模型",
|
||||
"Reset Image": "重置图片",
|
||||
"Reset Upload Directory": "重置上传目录",
|
||||
"Reset Vector Storage/Knowledge": "重置向量存储/知识",
|
||||
"Reset view": "重置视图",
|
||||
"Reset Image": "重置图片",
|
||||
"Response": "响应",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "无法激活回复时发送通知。请检查浏览器设置,并授予必要的访问权限。",
|
||||
"Response splitting": "拆分回复",
|
||||
"Response Watermark": "复制时添加水印",
|
||||
"RESULT": "结果",
|
||||
"Result": "结果",
|
||||
"RESULT": "结果",
|
||||
"Retrieval": "检索",
|
||||
"Retrieval Query Generation": "检索查询生成",
|
||||
"Rich Text Input for Chat": "对话富文本输入",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "保存并创建",
|
||||
"Save & Update": "保存并更新",
|
||||
"Save As Copy": "另存为副本",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "保存标签",
|
||||
"Saved": "已保存",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "我们不再支持将对话记录直接保存到浏览器的存储空间。请点击下面的按钮下载并删除您的对话记录。别担心,您可以轻松地将对话记录重新导入到后台。",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "分享",
|
||||
"Share Chat": "分享对话",
|
||||
"Share to Open WebUI Community": "分享到 Open WebUI 社区",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "共享权限",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "带星号 (*) 的快捷键受场景限制,仅在特定条件下生效。",
|
||||
"Show": "显示",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "语音转文本",
|
||||
"Speech-to-Text Engine": "语音转文本引擎",
|
||||
"Start of the channel": "频道起点",
|
||||
"STDOUT/STDERR": "标准输出/标准错误",
|
||||
"Stop": "停止",
|
||||
"Stop Generating": "停止生成",
|
||||
"Stop Sequence": "停止序列 (Stop Sequence)",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "删除线",
|
||||
"Strip Existing OCR": "清除现有 OCR 文本",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "清除 PDF 中现有的 OCR 文本并重新执行 OCR 识别。若启用 “强制 OCR 识别” 则此设置无效。默认为关闭",
|
||||
"STDOUT/STDERR": "标准输出/标准错误",
|
||||
"STT Model": "语音转文本模型",
|
||||
"STT Settings": "语音转文本设置",
|
||||
"Stylized PDF Export": "风格化 PDF 导出",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "请告诉我们更多细节",
|
||||
"Temperature": "温度 (Temperature)",
|
||||
"Temporary Chat": "临时对话",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "文本分切器",
|
||||
"Text-to-Speech": "文本转语音",
|
||||
"Text-to-Speech Engine": "文本转语音引擎",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL 模式",
|
||||
"Usage": "用量",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "在输入框中输入 '#' 号来加载您需要的知识库内容",
|
||||
"Use Gravatar": "使用来自 Gravatar 的头像",
|
||||
"Use groups to group your users and assign permissions.": "使用权限组来组织用户并分配权限",
|
||||
"Use Initials": "使用首个字符作为头像",
|
||||
"Use LLM": "使用大语言模型(LLM)",
|
||||
"Use no proxy to fetch page contents.": "不使用代理获取页面内容",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "使用由 http_proxy 和 https_proxy 环境变量指定的代理获取页面内容",
|
||||
|
|
@ -1609,6 +1627,7 @@
|
|||
"You have shared this chat": "此对话已经分享过",
|
||||
"You're a helpful assistant.": "你是一个乐于助人的助手",
|
||||
"You're now logged in.": "已登录",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "您的账号当前状态为待激活",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "您的全部捐款将直接给到插件开发者,Open WebUI 不会收取任何比例。但众筹平台可能会有服务费、抽成。",
|
||||
"Youtube": "YouTube",
|
||||
|
|
|
|||
|
|
@ -157,8 +157,8 @@
|
|||
"AUTOMATIC1111 Base URL is required.": "需要提供 AUTOMATIC1111 基底 URL。",
|
||||
"Available list": "可用清單",
|
||||
"Available Tools": "可用工具",
|
||||
"available!": "可用!",
|
||||
"available users": "可用名額",
|
||||
"available!": "可用!",
|
||||
"Away": "離開",
|
||||
"Awful": "糟糕",
|
||||
"Azure AI Speech": "Azure AI 語音",
|
||||
|
|
@ -175,6 +175,8 @@
|
|||
"Beta": "測試",
|
||||
"Bing Search V7 Endpoint": "Bing 搜尋 V7 端點",
|
||||
"Bing Search V7 Subscription Key": "Bing 搜尋 V7 訂閱金鑰",
|
||||
"Bio": "",
|
||||
"Birth Date": "",
|
||||
"BM25 Weight": "BM25 混合搜尋權重",
|
||||
"Bocha Search API Key": "Bocha 搜尋 API 金鑰",
|
||||
"Bold": "粗體",
|
||||
|
|
@ -212,6 +214,7 @@
|
|||
"Chat Controls": "對話控制選項",
|
||||
"Chat direction": "對話方向",
|
||||
"Chat ID": "對話 ID",
|
||||
"Chat moved successfully": "",
|
||||
"Chat Overview": "對話概覽",
|
||||
"Chat Permissions": "對話權限",
|
||||
"Chat Tags Auto-Generation": "自動生成對話標籤",
|
||||
|
|
@ -302,6 +305,7 @@
|
|||
"Control the repetition of token sequences in the generated text. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 1.1) will be more lenient. At 1, it is disabled.": "控制生成文字中 token 序列的重複程度。較高的值(例如:1.5)會更強烈地懲罰重複,而較低的值(例如:1.1)會更寬容。設為 1 時,此功能將停用。",
|
||||
"Controls": "控制選項",
|
||||
"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text.": "控制輸出結果的連貫性與多樣性之間的平衡。數值越低會生成更集中且連貫的文字。",
|
||||
"Conversation saved successfully": "",
|
||||
"Copied": "已複製",
|
||||
"Copied link to clipboard": "已複製連結至剪貼簿",
|
||||
"Copied shared chat URL to clipboard!": "已複製共用對話 URL 到剪貼簿!",
|
||||
|
|
@ -425,17 +429,17 @@
|
|||
"Documents": "文件",
|
||||
"does not make any external connections, and your data stays securely on your locally hosted server.": "不會建立任何外部連線,而且您的資料會安全地儲存在您本機伺服器上。",
|
||||
"Domain Filter List": "網域篩選列表",
|
||||
"don't fetch random pipelines from sources you don't trust.": "請勿從您無法信任的來源擷取任意管線。",
|
||||
"Don't have an account?": "還沒註冊帳號嗎?",
|
||||
"don't install random functions from sources you don't trust.": "請勿從您無法信任的來源安裝隨機函式。",
|
||||
"don't install random tools from sources you don't trust.": "請勿從您無法信任的來源安裝隨機工具。",
|
||||
"don't fetch random pipelines from sources you don't trust.": "請勿從您無法信任的來源擷取任意管線。",
|
||||
"Don't like the style": "不喜歡這個樣式",
|
||||
"Done": "完成",
|
||||
"Download": "下載",
|
||||
"Download & Delete": "下載並刪除",
|
||||
"Download as SVG": "以 SVG 格式下載",
|
||||
"Download canceled": "已取消下載",
|
||||
"Download Database": "下載資料庫",
|
||||
"Download & Delete": "下載並刪除",
|
||||
"Drag and drop a file to upload or select a file to view": "拖放檔案以上傳或選擇檔案以檢視",
|
||||
"Draw": "繪製",
|
||||
"Drop any files here to upload": "拖曳檔案至此處進行上傳",
|
||||
|
|
@ -531,6 +535,7 @@
|
|||
"Enter Google PSE API Key": "輸入 Google PSE API 金鑰",
|
||||
"Enter Google PSE Engine Id": "輸入 Google PSE 引擎 ID",
|
||||
"Enter hex color (e.g. #FF0000)": "輸入十六進制色彩(例如:#FF0000)",
|
||||
"Enter ID": "",
|
||||
"Enter Image Size (e.g. 512x512)": "輸入圖片尺寸(例如:512x512)",
|
||||
"Enter Jina API Key": "輸入 Jina API 金鑰",
|
||||
"Enter JSON config (e.g., {\"disable_links\": true})": "輸入 JSON 設定(例如:{\"disable_links\": true})",
|
||||
|
|
@ -589,9 +594,11 @@
|
|||
"Enter Yacy Password": "輸入 Yacy 密碼",
|
||||
"Enter Yacy URL (e.g. http://yacy.example.com:8090)": "輸入 Yacy URL(例如:http://yacy.example.com:8090)",
|
||||
"Enter Yacy Username": "輸入 Yacy 使用者名稱",
|
||||
"Enter your code here...": "在此輸入您的程式碼…",
|
||||
"Enter your current password": "輸入您的目前密碼",
|
||||
"Enter Your Email": "輸入您的電子郵件",
|
||||
"Enter Your Full Name": "輸入您的全名",
|
||||
"Enter your gender": "",
|
||||
"Enter your message": "輸入您的訊息",
|
||||
"Enter your name": "輸入你的名稱",
|
||||
"Enter Your Name": "輸入您的姓名",
|
||||
|
|
@ -600,7 +607,6 @@
|
|||
"Enter Your Role": "輸入您的角色",
|
||||
"Enter Your Username": "輸入您的使用者名稱",
|
||||
"Enter your webhook URL": "輸入您的 webhook URL",
|
||||
"Enter your code here...": "在此輸入您的程式碼…",
|
||||
"Error": "錯誤",
|
||||
"ERROR": "錯誤",
|
||||
"Error accessing directory": "存取目錄時發生錯誤",
|
||||
|
|
@ -660,6 +666,7 @@
|
|||
"Failed to generate title": "產生標題失敗",
|
||||
"Failed to load chat preview": "對話預覽載入失敗",
|
||||
"Failed to load file content.": "載入檔案內容失敗。",
|
||||
"Failed to move chat": "",
|
||||
"Failed to read clipboard contents": "讀取剪貼簿內容失敗",
|
||||
"Failed to save connections": "儲存連線失敗",
|
||||
"Failed to save conversation": "儲存對話失敗",
|
||||
|
|
@ -673,6 +680,7 @@
|
|||
"Feedback History": "回饋歷史",
|
||||
"Feedbacks": "回饋",
|
||||
"Feel free to add specific details": "歡迎自由新增特定細節",
|
||||
"Female": "",
|
||||
"File": "檔案",
|
||||
"File added successfully.": "成功新增檔案。",
|
||||
"File content updated successfully.": "成功更新檔案內容。",
|
||||
|
|
@ -728,6 +736,7 @@
|
|||
"Gemini": "Gemini",
|
||||
"Gemini API Config": "Gemini API 設定",
|
||||
"Gemini API Key is required.": "需要提供 Gemini API 金鑰。",
|
||||
"Gender": "",
|
||||
"General": "一般",
|
||||
"Generate": "生成",
|
||||
"Generate an image": "生成圖片",
|
||||
|
|
@ -743,11 +752,12 @@
|
|||
"Google Drive": "Google Drive",
|
||||
"Google PSE API Key": "Google PSE API 金鑰",
|
||||
"Google PSE Engine Id": "Google PSE 引擎 ID",
|
||||
"Gravatar": "",
|
||||
"Group": "群組",
|
||||
"Group created successfully": "成功建立群組",
|
||||
"Group deleted successfully": "成功刪除群組",
|
||||
"Group Description": "群組描述",
|
||||
"Group Name": "群組名稱",
|
||||
"Group": "群組",
|
||||
"Group updated successfully": "成功更新群組",
|
||||
"Groups": "群組",
|
||||
"H1": "一級標題",
|
||||
|
|
@ -803,11 +813,12 @@
|
|||
"Import Tools": "匯入工具",
|
||||
"Important Update": "重要更新",
|
||||
"Include": "包含",
|
||||
"Includes SharePoint": "包含 SharePoint",
|
||||
"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` 參數",
|
||||
"Includes SharePoint": "包含 SharePoint",
|
||||
"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": "資訊",
|
||||
"Initials": "",
|
||||
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "將完整內容注入為上下文以進行全面處理,建議用於複雜查詢。",
|
||||
"Input": "輸入",
|
||||
"Input commands": "輸入命令",
|
||||
|
|
@ -897,6 +908,7 @@
|
|||
"Make password visible in the user interface": "在使用者介面中顯示密碼",
|
||||
"Make sure to enclose them with": "請務必將它們放在",
|
||||
"Make sure to export a workflow.json file as API format from ComfyUI.": "請確保從 ComfyUI 匯出 workflow.json 檔案為 API 格式。",
|
||||
"Male": "",
|
||||
"Manage": "管理",
|
||||
"Manage Direct Connections": "管理直接連線",
|
||||
"Manage Models": "管理模型",
|
||||
|
|
@ -905,6 +917,7 @@
|
|||
"Manage OpenAI API Connections": "管理 OpenAI API 連線",
|
||||
"Manage Pipelines": "管理管線",
|
||||
"Manage Tool Servers": "管理工具伺服器",
|
||||
"Manage your account information.": "",
|
||||
"March": "3 月",
|
||||
"Markdown": "Markdown",
|
||||
"Markdown (Header)": "Markdown(標題)",
|
||||
|
|
@ -967,6 +980,7 @@
|
|||
"More": "更多",
|
||||
"More Concise": "精煉表達",
|
||||
"More Options": "更多選項",
|
||||
"Move": "",
|
||||
"Name": "名稱",
|
||||
"Name and ID are required, please fill them out": "名稱和 ID 為必填項目,請填寫",
|
||||
"Name your knowledge base": "命名您的知識庫",
|
||||
|
|
@ -987,6 +1001,7 @@
|
|||
"No content found": "未找到內容",
|
||||
"No content found in file.": "檔案中未找到內容。",
|
||||
"No content to speak": "無可朗讀的內容",
|
||||
"No conversation to save": "",
|
||||
"No distance available": "無可用距離",
|
||||
"No feedbacks found": "未找到回饋",
|
||||
"No file selected": "未選取檔案",
|
||||
|
|
@ -1003,11 +1018,11 @@
|
|||
"No results found": "未找到任何結果",
|
||||
"No search query generated": "未產生搜尋查詢",
|
||||
"No source available": "無可用來源",
|
||||
"No suggestion prompts": "沒有建議提示詞",
|
||||
"No users were found.": "未找到任何使用者",
|
||||
"No valves": "沒有設定項目",
|
||||
"No valves to update": "設定項目可更新",
|
||||
"Node Ids": "節點 ID",
|
||||
"No suggestion prompts": "沒有建議提示詞",
|
||||
"None": "無",
|
||||
"Not factually correct": "與事實不符",
|
||||
"Not helpful": "沒有幫助",
|
||||
|
|
@ -1058,6 +1073,7 @@
|
|||
"OpenAI API settings updated": "OpenAI API 設定已更新",
|
||||
"OpenAI URL/Key required.": "需要提供 OpenAI URL 或金鑰。",
|
||||
"openapi.json URL or Path": "openapi.json URL 或路徑",
|
||||
"Optional": "",
|
||||
"Options for running a local vision-language model in the picture description. The parameters refer to a model hosted on Hugging Face. This parameter is mutually exclusive with picture_description_api.": "在圖片描述功能中本地執行視覺語言模型的選項。此參數指向託管在 Hugging Face 上的模型。此參數不可與 picture_description_api 同時使用。",
|
||||
"or": "或",
|
||||
"Ordered List": "有序清單",
|
||||
|
|
@ -1107,6 +1123,7 @@
|
|||
"Playwright WebSocket URL": "Playwright WebSocket URL",
|
||||
"Please carefully review the following warnings:": "請仔細閱讀以下警告:",
|
||||
"Please do not close the settings page while loading the model.": "載入模型時,請勿關閉設定頁面。",
|
||||
"Please enter a message or attach a file.": "",
|
||||
"Please enter a prompt": "請輸入提示詞",
|
||||
"Please enter a valid path": "請輸入有效路徑",
|
||||
"Please enter a valid URL": "請輸入有效 URL",
|
||||
|
|
@ -1117,6 +1134,7 @@
|
|||
"Please wait until all files are uploaded.": "請等待所有檔案上傳完畢。",
|
||||
"Port": "連接埠",
|
||||
"Positive attitude": "積極的態度",
|
||||
"Prefer not to say": "",
|
||||
"Prefix ID": "前置 ID",
|
||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "前置 ID 用於透過為模型 ID 新增字首以避免與其他連線衝突 - 留空以停用",
|
||||
"Prevent file creation": "阻止檔案建立",
|
||||
|
|
@ -1126,7 +1144,6 @@
|
|||
"Previous message": "過去訊息",
|
||||
"Private": "私有",
|
||||
"Profile": "個人檔案",
|
||||
"Profile Image": "個人檔案圖片",
|
||||
"Prompt": "提示詞",
|
||||
"Prompt (e.g. Tell me a fun fact about the Roman Empire)": "提示詞(例如:告訴我關於羅馬帝國的一些趣事)",
|
||||
"Prompt Autocompletion": "提示詞自動完成",
|
||||
|
|
@ -1179,16 +1196,16 @@
|
|||
"Reranking Model": "重新排序模型",
|
||||
"Reset": "重設",
|
||||
"Reset All Models": "重設所有模型",
|
||||
"Reset Image": "重設圖片",
|
||||
"Reset Upload Directory": "重設上傳目錄",
|
||||
"Reset Vector Storage/Knowledge": "重設向量儲存或知識",
|
||||
"Reset view": "重設檢視",
|
||||
"Response": "回應",
|
||||
"Reset Image": "重設圖片",
|
||||
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "無法啟用回應通知,因為網站權限已遭拒。請前往瀏覽器設定以授予必要存取權限。",
|
||||
"Response splitting": "回應分割",
|
||||
"Response Watermark": "回應浮水印",
|
||||
"RESULT": "結果",
|
||||
"Result": "結果",
|
||||
"RESULT": "結果",
|
||||
"Retrieval": "檢索",
|
||||
"Retrieval Query Generation": "檢索查詢生成",
|
||||
"Rich Text Input for Chat": "使用富文字輸入對話",
|
||||
|
|
@ -1204,6 +1221,7 @@
|
|||
"Save & Create": "儲存並建立",
|
||||
"Save & Update": "儲存並更新",
|
||||
"Save As Copy": "另存為副本",
|
||||
"Save Chat": "",
|
||||
"Save Tag": "儲存標籤",
|
||||
"Saved": "已儲存",
|
||||
"Saving chat logs directly to your browser's storage is no longer supported. Please take a moment to download and delete your chat logs by clicking the button below. Don't worry, you can easily re-import your chat logs to the backend through": "不再支援直接將對話紀錄儲存到您的瀏覽器儲存空間。請點選下方按鈕來下載並刪除您的對話紀錄。別擔心,您可以透過以下方式輕鬆地將對話紀錄重新匯入後端",
|
||||
|
|
@ -1308,6 +1326,7 @@
|
|||
"Share": "分享",
|
||||
"Share Chat": "分享對話",
|
||||
"Share to Open WebUI Community": "分享到 Open WebUI 社群",
|
||||
"Share your background and interests": "",
|
||||
"Sharing Permissions": "分享權限設定",
|
||||
"Shortcuts with an asterisk (*) are situational and only active under specific conditions.": "帶星號 (*) 的快捷鍵受場景限制,僅在特定條件下生效。",
|
||||
"Show": "顯示",
|
||||
|
|
@ -1347,6 +1366,7 @@
|
|||
"Speech-to-Text": "語音轉文字 (STT) ",
|
||||
"Speech-to-Text Engine": "語音轉文字 (STT) 引擎",
|
||||
"Start of the channel": "頻道起點",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"Stop": "停止",
|
||||
"Stop Generating": "停止生成",
|
||||
"Stop Sequence": "停止序列",
|
||||
|
|
@ -1355,7 +1375,6 @@
|
|||
"Strikethrough": "刪除線",
|
||||
"Strip Existing OCR": "移除現有 OCR 文字",
|
||||
"Strip existing OCR text from the PDF and re-run OCR. Ignored if Force OCR is enabled. Defaults to False.": "移除 PDF 中現有的 OCR 文字並重新執行 OCR。若啟用「強制執行 OCR」則忽略此選項。預設為 False。",
|
||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||
"STT Model": "語音轉文字 (STT) 模型",
|
||||
"STT Settings": "語音轉文字 (STT) 設定",
|
||||
"Stylized PDF Export": "風格化 PDF 匯出",
|
||||
|
|
@ -1386,6 +1405,7 @@
|
|||
"Tell us more:": "告訴我們更多:",
|
||||
"Temperature": "溫度",
|
||||
"Temporary Chat": "臨時對話",
|
||||
"Temporary Chat by Default": "",
|
||||
"Text Splitter": "文字分割器",
|
||||
"Text-to-Speech": "文字轉語音",
|
||||
"Text-to-Speech Engine": "文字轉語音引擎",
|
||||
|
|
@ -1524,9 +1544,7 @@
|
|||
"URL Mode": "URL 模式",
|
||||
"Usage": "使用量",
|
||||
"Use '#' in the prompt input to load and include your knowledge.": "在提示詞輸入中使用 '#' 來載入並包含您的知識。",
|
||||
"Use Gravatar": "使用 Gravatar",
|
||||
"Use groups to group your users and assign permissions.": "使用群組來組織您的使用者並分配權限。",
|
||||
"Use Initials": "使用姓名縮寫",
|
||||
"Use LLM": "使用 LLM",
|
||||
"Use no proxy to fetch page contents.": "不使用代理擷取頁面內容。",
|
||||
"Use proxy designated by http_proxy and https_proxy environment variables to fetch page contents.": "使用 http_proxy 和 https_proxy 環境變數指定的代理擷取頁面內容。",
|
||||
|
|
@ -1609,9 +1627,10 @@
|
|||
"You have shared this chat": "您已分享此對話",
|
||||
"You're a helpful assistant.": "您是一位樂於助人的助理。",
|
||||
"You're now logged in.": "您已登入。",
|
||||
"Your Account": "",
|
||||
"Your account status is currently pending activation.": "您的帳號目前正在等待啟用。",
|
||||
"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "您的所有貢獻將會直接交給外掛開發者;Open WebUI 不會收取任何百分比。然而,所選擇的贊助平臺可能有其自身的費用。",
|
||||
"Youtube": "YouTube",
|
||||
"Youtube Language": "YouTube 語言",
|
||||
"Youtube Proxy URL": "YouTube 代理伺服器網址"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,10 @@
|
|||
const onSubmit = async (modelInfo) => {
|
||||
if ($models.find((m) => m.id === modelInfo.id)) {
|
||||
toast.error(
|
||||
i18n.t("Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.", { modelId: modelInfo.id })
|
||||
i18n.t(
|
||||
"Error: A model with the ID '{{modelId}}' already exists. Please select a different ID to proceed.",
|
||||
{ modelId: modelInfo.id }
|
||||
)
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue