chore: format

This commit is contained in:
Timothy Jaeryang Baek 2026-07-23 13:41:16 -04:00
parent 93bd05271c
commit ca11bd90a7
67 changed files with 446 additions and 197 deletions

View file

@ -166,9 +166,7 @@ def upgrade() -> None:
for chat_id, messages in messages_by_chat.items():
parent_ids = {
message['parent_id']
for message in messages.values()
if message.get('parent_id') in messages
message['parent_id'] for message in messages.values() if message.get('parent_id') in messages
}
leaf_ids = [message_id for message_id in messages if message_id not in parent_ids]
resolved[chat_id] = max(
@ -189,9 +187,7 @@ def upgrade() -> None:
resolved[chat_id] = valid_candidate
elif messages:
parent_ids = {
message['parent_id']
for message in messages.values()
if message.get('parent_id') in messages
message['parent_id'] for message in messages.values() if message.get('parent_id') in messages
}
leaf_ids = [message_id for message_id in messages if message_id not in parent_ids]
resolved[chat_id] = max(

View file

@ -295,9 +295,7 @@ class FunctionsTable:
log.exception(f'Error getting function valves by id {id}: {e}')
return None
async def get_function_valves_by_ids(
self, ids: list[str], db: AsyncSession | None = None
) -> dict[str, dict]:
async def get_function_valves_by_ids(self, ids: list[str], db: AsyncSession | None = None) -> dict[str, dict]:
"""
Batch fetch valves for multiple functions in a single query.
Returns a dict mapping function_id -> valves dict.

View file

@ -1602,7 +1602,9 @@ async def fork_chat_by_id(
detail='Wait for the current response to finish before forking.',
)
source_message_id = (form_data.message_id if form_data else None) or chat.current_message_id or history.get('currentId')
source_message_id = (
(form_data.message_id if form_data else None) or chat.current_message_id or history.get('currentId')
)
if not source_message_id:
raise HTTPException(status_code=status.HTTP_400_BAD_REQUEST, detail='chat has no messages to fork')

View file

@ -57,6 +57,7 @@ REDIS = None
# Configure CORS for Socket.IO
SOCKETIO_CORS_ORIGINS = '*' if CORS_ALLOW_ORIGIN == ['*'] else CORS_ALLOW_ORIGIN
class LocalFilteredRedisManager(socketio.AsyncRedisManager):
"""AsyncRedisManager that drops pub/sub emits with no local recipients.

View file

@ -2492,7 +2492,11 @@
const toastId = toast.loading($i18n.t('Forking chat...'));
try {
const result = await forkChatById(localStorage.token, $chatId, messageId ?? history.currentId);
const result = await forkChatById(
localStorage.token,
$chatId,
messageId ?? history.currentId
);
if (result?.id) {
if (!embedded) {

View file

@ -155,7 +155,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "سيؤدي ضبط هذه الإعدادات إلى تطبيق التغييرات بشكل عام على كافة المستخدمين",
"admin": "المشرف",
"Admin": "",
"Admin Contact Email": "",
@ -566,6 +565,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "الأوامر",
@ -751,7 +751,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "الإفتراضي صلاحيات المستخدم",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "حذف",
@ -1705,6 +1704,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "تم اكتشاف مسار نظام الملفات النموذجي. الاسم المختصر للنموذج مطلوب للتحديث، ولا يمكن الاستمرار.",
"Model Filtering": "",
"Model ID": "رقم الموديل",
@ -1787,6 +1787,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1988,6 +1989,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "الباسورد",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2076,6 +2078,7 @@
"Previous 30 days": "أخر 30 يوم",
"Previous 7 days": "أخر 7 أيام",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2456,6 +2459,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2633,12 +2637,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "الثيم",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "",
"This action cannot be undone. Do you wish to continue?": "",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "وهذا يضمن حفظ محادثاتك القيمة بشكل آمن في قاعدة بياناتك الخلفية. شكرًا لك!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",

View file

@ -155,7 +155,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "تعديل هذه الإعدادات سيطبق التغييرات على جميع المستخدمين بشكل عام.",
"admin": "المسؤول",
"Admin": "المسؤول",
"Admin Contact Email": "",
@ -566,6 +565,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "الأمر",
@ -751,7 +751,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "الإفتراضي صلاحيات المستخدم",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "حذف",
@ -1705,6 +1704,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "تم إنشاء النموذج بنجاح!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "تم اكتشاف مسار نظام الملفات النموذجي. الاسم المختصر للنموذج مطلوب للتحديث، ولا يمكن الاستمرار.",
"Model Filtering": "تصفية النماذج",
"Model ID": "رقم الموديل",
@ -1787,6 +1787,7 @@
"New Webhook": "",
"new-channel": "قناة جديدة",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1988,6 +1989,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "الباسورد",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2076,6 +2078,7 @@
"Previous 30 days": "أخر 30 يوم",
"Previous 7 days": "أخر 7 أيام",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2456,6 +2459,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2633,12 +2637,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "درجة حرارة النموذج. زيادتها تجعل الإجابات أكثر إبداعًا.",
"Theme": "الثيم",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "جارٍ التفكير...",
"This action cannot be undone. Do you wish to continue?": "لا يمكن التراجع عن هذا الإجراء. هل ترغب في المتابعة؟",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "وهذا يضمن حفظ محادثاتك القيمة بشكل آمن في قاعدة بياناتك الخلفية. شكرًا لك!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "هذه ميزة تجريبية، وقد لا تعمل كما هو متوقع وقد تتغير في أي وقت.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Əlavə parametrlər",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Bu ayarların tənzimlənməsi dəyişiklikləri bütün istifadəçilərə şamil edəcək.",
"admin": "admin",
"Admin": "Admin",
"Admin Contact Email": "Admin əlaqə e-poçtu",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "əmr",
"Command": "Əmr",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Fokuslanmış və müvafiq məzmun çıxarılması üçün standart olaraq seqmentləşdirilmiş axtarışdan istifadə edin; bu, əksər hallar üçün tövsiyə olunur.",
"Default User Role": "Standart istifadəçi rolu",
"Default webhook": "",
"Defaults": "Standartlar",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Sil",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "Model məlumat üçün vebdə axtarış edə bilər",
"Model Capabilities": "Model imkanları",
"Model created successfully!": "Model uğurla yaradıldı!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modelin fayl sistemi yolu aşkar edildi. Yeniləmə üçün modelin qısa adı tələb olunur, davam etmək mümkün deyil.",
"Model Filtering": "Modellərin süzülməsi (Filtering)",
"Model ID": "Model ID",
@ -1747,6 +1747,7 @@
"New Webhook": "Yeni Webhook",
"new-channel": "yeni-kanal",
"Next message": "Növbəti mesaj",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "Giriş icazəsi yoxdur. Sizin üçün özəldir.",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "Parametrlər",
"Parent message not found": "Ana mesaj tapılmadı",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "İcma liderlər cədvəli və qiymətləndirmələrdə iştirak edin! Ümumiləşdirilmiş istifadə statistikalarını sinxronlaşdırmaq Open WebUI-nin tədqiqatına və təkmilləşdirilməsinə kömək edir. Məxfiliyiniz hər şeydən üstündür: mesaj məzmunu heç vaxt paylaşılmır.",
"Passthrough params": "",
"Password": "Şifrə",
"Password for the bind DN.": "",
"Passwords do not match.": "Şifrələr uyğun gəlmir.",
@ -2036,6 +2038,7 @@
"Previous 30 days": "Son 30 gün",
"Previous 7 days": "Son 7 gün",
"Previous message": "Əvvəlki mesaj",
"Previous page": "",
"Private": "Özəl",
"Private conversation between selected users": "Seçilmiş istifadəçilər arasında özəl söhbət",
"Production version updated": "İstehsalat (Production) versiyası yeniləndi",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "Formatlama alətlər panelini göstər",
"Show image preview": "Şəkil önizləməsini göstər",
"Show Model": "Modeli Göstər",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "Qısayolları Göstər",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Modelin temperaturu. Temperaturun artırılması modelin daha yaradıcı cavab verməsini təmin edəcək.",
"Theme": "Mövzu",
"There was an error syncing your stats. Please try again.": "Statistikanızın sinxronizasiyası zamanı xəta baş verdi. Lütfən yenidən cəhd edin.",
"thinking, output_config": "",
"Thinking...": "Düşünür...",
"This action cannot be undone. Do you wish to continue?": "Bu əməliyyat geri qaytarıla bilməz. Davam etmək istəyirsiniz?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Bu kanal {{createdAt}} tarixində yaradılıb. Bu, {{channelName}} kanalının ən başlanğıcıdır.",
"This chat won't appear in history and your messages will not be saved.": "Bu çat tarixçədə görünməyəcək və mesajlarınız yadda saxlanılmayacaq.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Bu, dəyərli söhbətlərinizin backend verilənlər bazasına təhlükəsiz şəkildə saxlanmasını təmin edir. Təşəkkürlər!",
"This feature is currently experimental and may not work as expected.": "Bu funksiya hazırda eksperimental mərhələdədir və gözlənildiyi kimi işləməyə bilər.",
"This folder is empty": "Bu qovluq boşdur",
"This is a default user permission and will remain enabled.": "Bu, standart istifadəçi icazəsidir və aktiv qalacaq.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Bu, eksperimental funksiyadır, gözlənildiyi kimi işləməyə bilər və istənilən vaxt dəyişdirilə bilər.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "При промяна на тези настройки промените се прилагат за всички потребители.",
"admin": "админ",
"Admin": "Администратор",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Команда",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "Ролята на потребителя по подразбиране",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Изтриване",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "Моделът е създаден успешно!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Открит е път до файловата система на модела. За актуализацията се изисква съкратено име на модела, не може да продължи.",
"Model Filtering": "Филтриране на модели",
"Model ID": "ИД на модел",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "нов-канал",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Парола",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2036,6 +2038,7 @@
"Previous 30 days": "Предишните 30 дни",
"Previous 7 days": "Предишните 7 дни",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "Покажи модел",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "Тема",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Мисля...",
"This action cannot be undone. Do you wish to continue?": "Това действие не може да бъде отменено. Желаете ли да продължите?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Това гарантира, че ценните ви разговори се запазват сигурно във вашата бекенд база данни. Благодарим ви!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Това е експериментална функция, може да не работи според очакванията и подлежи на промяна по всяко време.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "এই সেটিংগুলো পরিবর্তন করলে তা সব ইউজারের উপরেই প্রয়োগ করা হবে",
"admin": "এডমিন",
"Admin": "",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "কমান্ড",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "ইউজারের ডিফল্ট পদবি",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "মুছে ফেলুন",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "মডেল ফাইলসিস্টেম পাথ পাওয়া গেছে। আপডেটের জন্য মডেলের শর্টনেম আবশ্যক, এগিয়ে যাওয়া যাচ্ছে না।",
"Model Filtering": "",
"Model ID": "মডেল ID",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "পাসওয়ার্ড",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2036,6 +2038,7 @@
"Previous 30 days": "পূর্ব ৩০ দিন",
"Previous 7 days": "পূর্ব দিন",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "থিম",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "",
"This action cannot be undone. Do you wish to continue?": "",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "এটা নিশ্চিত করে যে, আপনার গুরুত্বপূর্ণ আলোচনা নিরাপদে আপনার ব্যাকএন্ড ডেটাবেজে সংরক্ষিত আছে। ধন্যবাদ!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",

View file

@ -120,7 +120,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "སྒྲིག་འགོད་འདི་དག་ལེགས་སྒྲིག་བྱས་ན་བེད་སྤྱོད་མཁན་ཡོངས་ལ་འགྱུར་བ་དེ་བཀོལ་སྤྱོད་བྱེད་ངེས།",
"admin": "དོ་དམ་པ།",
"Admin": "དོ་དམ་པ།",
"Admin Contact Email": "",
@ -531,6 +530,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "བཀའ་བརྡ།",
@ -711,7 +711,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "དམིགས་ཚད་དང་འབྲེལ་ཡོད་ནང་དོན་འདོན་སྤེལ་གྱི་ཆེད་དུ་སྔོན་སྒྲིག་ཏུ་དུམ་བུ་ལེན་ཚུར་སྒྲུབ་བྱེད་པ། འདི་ནི་གནས་སྟངས་མང་ཆེ་བའི་ཆེད་དུ་འོས་སྦྱོར་བྱེད།",
"Default User Role": "སྔོན་སྒྲིག་བེད་སྤྱོད་མཁན་གྱི་གནས་ཚད།",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "བསུབ་པ།",
@ -1655,6 +1654,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "དཔེ་དབྱིབས་ལེགས་པར་བཟོས་ཟིན།",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "དཔེ་དབྱིབས་ཀྱི་ཡིག་ཆ་མ་ལག་ལམ་བུ་རྙེད་སོང་། གསར་སྒྱུར་གྱི་ཆེད་དུ་དཔེ་དབྱིབས་ཀྱི་མིང་ཐུང་ངུ་དགོས། མུ་མཐུད་མི་ཐུབ།",
"Model Filtering": "དཔེ་དབྱིབས་འཚག་མ།",
"Model ID": "དཔེ་དབྱིབས་ཀྱི་ ID",
@ -1737,6 +1737,7 @@
"New Webhook": "",
"new-channel": "བགྲོ་གླེང་གསར་པ།",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1938,6 +1939,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "གསང་གྲངས།",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2026,6 +2028,7 @@
"Previous 30 days": "ཉིན་ ༣༠ སྔོན་མ།",
"Previous 7 days": "ཉིན་ ༧ སྔོན་མ།",
"Previous message": "",
"Previous page": "",
"Private": "སྒེར།",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2391,6 +2394,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "དཔེ་དབྱིབས་སྟོན་པ།",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2563,12 +2567,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "དཔེ་དབྱིབས་ཀྱི་དྲོད་ཚད། དྲོད་ཚད་མཐོ་རུ་བཏང་ན་དཔེ་དབྱིབས་ཀྱིས་ལན་གསར་གཏོད་ཆེ་བ་སྤྲོད་ངེས།",
"Theme": "བརྗོད་གཞི།",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "བསམ་བཞིན་པ།...",
"This action cannot be undone. Do you wish to continue?": "བྱ་སྤྱོད་འདི་ཕྱིར་ལྡོག་བྱེད་མི་ཐུབ། ཁྱེད་མུ་མཐུད་འདོད་ཡོད་དམ།",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "བགྲོ་གླེང་འདི་ {{createdAt}} ལ་བཟོས་པ། འདི་ནི་ {{channelName}} བགྲོ་གླེང་གི་ཐོག་མ་རང་ཡིན།",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "འདིས་ཁྱེད་ཀྱི་རྩ་ཆེའི་ཁ་བརྡ་དག་བདེ་འཇགས་ངང་ཁྱེད་ཀྱི་རྒྱབ་སྣེ་གནས་ཚུལ་མཛོད་དུ་ཉར་ཚགས་བྱེད་པ་ཁག་ཐེག་བྱེད། ཐུགས་རྗེ་ཆེ།",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "འདི་ནི་ཚོད་ལྟའི་རང་བཞིན་གྱི་ཁྱད་ཆོས་ཤིག་ཡིན། དེ་རེ་སྒུག་ལྟར་ལས་ཀ་བྱེད་མི་སྲིད། དེ་མིན་དུས་ཚོད་གང་རུང་ལ་འགྱུར་བ་འགྲོ་སྲིད།",

View file

@ -134,7 +134,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Podešavanje će se primijeniti univerzalno na sve korisnike.",
"admin": "administrator",
"Admin": "Admin",
"Admin Contact Email": "",
@ -545,6 +544,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Naredba",
@ -727,7 +727,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "Zadana korisnička uloga",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Izbriši",
@ -1675,6 +1674,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Otkriven put datotečnog sustava modela. Kratko ime modela je potrebno za ažuriranje, nije moguće nastaviti.",
"Model Filtering": "",
"Model ID": "ID modela",
@ -1757,6 +1757,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1958,6 +1959,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Lozinka",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2046,6 +2048,7 @@
"Previous 30 days": "Prethodnih 30 dana",
"Previous 7 days": "Prethodnih 7 dana",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2417,6 +2420,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2591,12 +2595,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "Tema",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Razmišljam",
"This action cannot be undone. Do you wish to continue?": "",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Ovo osigurava da su vaši vrijedni razgovori sigurno spremljeni u bazu podataka. Hvala vam!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Ovo je eksperimentalna značajka, možda neće funkcionirati prema očekivanjima i podložna je promjenama u bilo kojem trenutku.",

View file

@ -134,7 +134,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Paràmetres addicionals",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Si ajustes aquesta preferència, els canvis s'aplicaran de manera universal a tots els usuaris.",
"admin": "administrador",
"Admin": "Administrador",
"Admin Contact Email": "Afegir correu electrònic de contacte",
@ -545,6 +544,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "Noms de grups separats per comes",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "comanda",
"Command": "Comanda",
@ -727,7 +727,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Per defecte, Segmented Retrieval per a l'extracció de contingut rellevant, es recomana en la majoria dels casos.",
"Default User Role": "Rol d'usuari per defecte",
"Default webhook": "Webhook predeterminat",
"Defaults": "Valors per defecte",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Eliminar",
@ -1675,6 +1674,7 @@
"Model can search the web for information": "El model pot cercar informació a la web",
"Model Capabilities": "Capacitats del model",
"Model created successfully!": "Model creat correctament",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "S'ha detectat el camí del sistema de fitxers del model. És necessari un nom curt del model per actualitzar, no es pot continuar.",
"Model Filtering": "Filtrat de models",
"Model ID": "Identificador del model",
@ -1757,6 +1757,7 @@
"New Webhook": "Nou webhook",
"new-channel": "nou-canal",
"Next message": "Missatge següent",
"Next page": "",
"Next run": "Següent execució",
"No access grants. Private to you.": "Sense permisos d'accés. Privat per a tu.",
"No actions found": "",
@ -1958,6 +1959,7 @@
"Parameters": "Paràmetres",
"Parent message not found": "No s'ha trobat el missatge pare",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "Participa en les taules de classificació i les avaluacions de la comunitat! La sincronització de les estadístiques d'ús agregades ajuda a impulsar la recerca i les millores a Open WebUI. La teva privadesa és primordial: no es comparteix mai cap contingut de missatge.",
"Passthrough params": "",
"Password": "Contrasenya",
"Password for the bind DN.": "",
"Passwords do not match.": "Les contrasenyes no coincideixen",
@ -2046,6 +2048,7 @@
"Previous 30 days": "30 dies anteriors",
"Previous 7 days": "7 dies anteriors",
"Previous message": "Missatge anterior",
"Previous page": "",
"Private": "Privat",
"Private conversation between selected users": "Conversa privada entre usuaris seleccionats",
"Production version updated": "S'ha actualitzat la versió en producció",
@ -2417,6 +2420,7 @@
"Show Formatting Toolbar": "Mostrar la barra de format",
"Show image preview": "Mostrar la previsualització de la imatge",
"Show Model": "Mostrar el model",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "Mostrar les dreceres",
@ -2591,12 +2595,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "La temperatura del model. Augmentar la temperatura farà que el model respongui de manera més creativa.",
"Theme": "Tema",
"There was an error syncing your stats. Please try again.": "S'ha produït un error en sincronitzar les estadístiques. Torna-ho a provar.",
"thinking, output_config": "",
"Thinking...": "Pensant...",
"This action cannot be undone. Do you wish to continue?": "Aquesta acció no es pot desfer. Vols continuar?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Aquest canal es va crear el dia {{createdAt}}. Aquest és el començament del canal {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "Aquest xat no apareixerà a l'historial i els teus missatges no es desaran.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Això assegura que les teves converses valuoses queden desades de manera segura a la teva base de dades. Gràcies!",
"This feature is currently experimental and may not work as expected.": "Aquesta funció és actualment experimental i és possible que no funcioni com s'esperava.",
"This folder is empty": "Aquesta carpeta està buida",
"This is a default user permission and will remain enabled.": "Aquest és un permís d'usuari per defecte i romandrà habilitat.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Aquesta és una funció experimental, és possible que no funcioni com s'espera i està subjecta a canvis en qualsevol moment.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Ang pag-adjust niini nga mga setting magamit ang mga pagbag-o sa tanan nga tiggamit.",
"admin": "Administrator",
"Admin": "",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Pag-order",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "Default nga Papel sa Gumagamit",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Filtering": "",
"Model ID": "",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Password",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2036,6 +2038,7 @@
"Previous 30 days": "",
"Previous 7 days": "",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "Tema",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "",
"This action cannot be undone. Do you wish to continue?": "",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Kini nagsiguro nga ang imong bililhon nga mga panag-istoryahanay luwas nga natipig sa imong backend database. ",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",

View file

@ -141,7 +141,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Úprava těchto nastavení se projeví u všech uživatelů.",
"admin": "administrátor",
"Admin": "Administrátor",
"Admin Contact Email": "",
@ -552,6 +551,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Příkaz",
@ -735,7 +735,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Výchozí je segmentované vyhledávání pro cílenou a relevantní extrakci obsahu, což se doporučuje ve většině případů.",
"Default User Role": "Výchozí role uživatele",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Smazat",
@ -1685,6 +1684,7 @@
"Model can search the web for information": "Model umí vyhledávat informace na webu",
"Model Capabilities": "",
"Model created successfully!": "Model byl úspěšně vytvořen!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Byla detekována cesta k souborovému systému modelu. Pro aktualizaci je vyžadován krátký název modelu, nelze pokračovat.",
"Model Filtering": "Filtrování modelů",
"Model ID": "ID modelu",
@ -1767,6 +1767,7 @@
"New Webhook": "",
"new-channel": "novy-kanal",
"Next message": "Další zpráva",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1968,6 +1969,7 @@
"Parameters": "Parametry",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Heslo",
"Password for the bind DN.": "",
"Passwords do not match.": "Hesla se neshodují.",
@ -2056,6 +2058,7 @@
"Previous 30 days": "Posledních 30 dní",
"Previous 7 days": "Posledních 7 dní",
"Previous message": "Předchozí zpráva",
"Previous page": "",
"Private": "Soukromé",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2430,6 +2433,7 @@
"Show Formatting Toolbar": "Zobrazit panel nástrojů pro formátování",
"Show image preview": "Zobrazit náhled obrázku",
"Show Model": "Zobrazit model",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2605,12 +2609,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Teplota modelu. Zvýšení teploty způsobí, že model bude odpovídat kreativněji.",
"Theme": "Motiv",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Přemýšlím...",
"This action cannot be undone. Do you wish to continue?": "Tuto akci nelze vrátit zpět. Přejete si pokračovat?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Tento kanál byl vytvořen {{createdAt}}. Toto je úplný začátek kanálu {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "Tato konverzace se neobjeví v historii a vaše zprávy nebudou uloženy.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Tím je zajištěno, že vaše cenné konverzace jsou bezpečně uloženy ve vaší backendové databázi. Děkujeme!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Toto je experimentální funkce, nemusí fungovat podle očekávání a může být kdykoli změněna.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Yderligere parametre",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Ændringer af disse indstillinger har konsekvenser for alle brugere.",
"admin": "administrator",
"Admin": "Administrator",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Kommando",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Standard til segmenteret hentning for fokuseret og relevant indholdsudtrækning, dette anbefales i de fleste tilfælde.",
"Default User Role": "Brugers rolle som standard",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Slet",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "Model kan søge på internettet efter information",
"Model Capabilities": "",
"Model created successfully!": "Model oprettet!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model filsystemsti registreret. Kort model navn er påkrævet til opdatering, kan ikke fortsætte.",
"Model Filtering": "Model filtrering",
"Model ID": "Model-ID",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "ny-kanal",
"Next message": "Næste besked",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "Parametre",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Adgangskode",
"Password for the bind DN.": "",
"Passwords do not match.": "Passwords stemmer ikke overens.",
@ -2036,6 +2038,7 @@
"Previous 30 days": "Seneste 30 dage",
"Previous 7 days": "Seneste 7 dage",
"Previous message": "Forrige besked",
"Previous page": "",
"Private": "Privat",
"Private conversation between selected users": "Privat samtale mellem valgte brugere",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "Vis formateringsværktøjslinjen",
"Show image preview": "Vis billedforhåndsvisning",
"Show Model": "Vis model",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "Vis genveje",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Temperaturen for modellen. At øge temperaturen vil få modellen til at svare mere kreativt.",
"Theme": "Tema",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Tænker...",
"This action cannot be undone. Do you wish to continue?": "Denne handling kan ikke fortrydes. Vil du fortsætte?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Denne kanal blev oprettet den {{createdAt}}. Dette er det helt første i kanalen {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "Denne chat vil ikke vises i historikken, og dine beskeder vil ikke blive gemt.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dette sikrer, at dine værdifulde samtaler gemmes sikkert i din backend-database. Tak!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "Dette er en standardbrugertilladelse og vil forblive aktiveret.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Dette er en eksperimentel funktion, den fungerer muligvis ikke som forventet og kan ændres når som helst.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Weitere Parameter",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Das Anpassen dieser Einstellungen wendet Änderungen universell auf alle Benutzer an.",
"admin": "Administrator",
"Admin": "Administrator",
"Admin Contact Email": "Admin Kontakt E-Mail",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "Durch Kommata getrennte Gruppennamen",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "Befehl",
"Command": "Befehl",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Standardmäßig segmentierter Abruf für fokussierte Inhaltsextraktion (empfohlen).",
"Default User Role": "Standard-Benutzerrolle",
"Default webhook": "Standard-Webhook",
"Defaults": "Standardwerte",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Löschen",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "Modell kann das Web nach Informationen durchsuchen",
"Model Capabilities": "Modell Fähigkeiten",
"Model created successfully!": "Modell erfolgreich erstellt!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modell-Dateisystempfad erkannt. Modellkurzname ist für das Update erforderlich; Vorgang kann nicht fortgesetzt werden.",
"Model Filtering": "Modellfilterung",
"Model ID": "Modell-ID",
@ -1747,6 +1747,7 @@
"New Webhook": "Neuer Webhook",
"new-channel": "neuer-kanal",
"Next message": "Nächste Nachricht",
"Next page": "",
"Next run": "Nächster Durchlauf",
"No access grants. Private to you.": "Keine Freigaben konfiguriert. Nur für Sie zugänglich.",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "Parameter",
"Parent message not found": "Übergeordnete Nachricht nicht gefunden",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "Nehmen Sie an Community-Bestenlisten und Evaluationen teil! Das Synchronisieren aggregierter Nutzungsstatistiken hilft dabei, die Forschung und Verbesserungen von Open WebUI voranzutreiben. Ihre Privatsphäre steht an erster Stelle: Es werden niemals Nachrichteninhalte geteilt.",
"Passthrough params": "",
"Password": "Passwort",
"Password for the bind DN.": "",
"Passwords do not match.": "Die Passwörter stimmen nicht überein.",
@ -2036,6 +2038,7 @@
"Previous 30 days": "Letzte 30 Tage",
"Previous 7 days": "Letzte 7 Tage",
"Previous message": "Vorherige Nachricht",
"Previous page": "",
"Private": "Privat",
"Private conversation between selected users": "Private Unterhaltung zwischen ausgewählten Benutzern",
"Production version updated": "Produktiv-Version updated",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "Formatierungsleiste anzeigen",
"Show image preview": "Bildvorschau anzeigen",
"Show Model": "Modell anzeigen",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "Tastenkombinationen anzeigen",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Die Temperatur des Modells. Eine Erhöhung führt zu kreativeren Antworten.",
"Theme": "Design",
"There was an error syncing your stats. Please try again.": "Beim Synchronisieren Ihrer Statistiken ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.",
"thinking, output_config": "",
"Thinking...": "Denke nach...",
"This action cannot be undone. Do you wish to continue?": "Diese Aktion kann nicht rückgängig gemacht werden. Möchten Sie fortfahren?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Dieser Kanal wurde am {{createdAt}} erstellt. Dies ist der Anfang des Kanals {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "Dieser Chat erscheint nicht im Verlauf und Ihre Nachrichten werden nicht gespeichert.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dies stellt sicher, dass Ihre wertvollen Unterhaltungen sicher in Ihrer Backend-Datenbank gespeichert werden. Vielen Dank!",
"This feature is currently experimental and may not work as expected.": "Dieses Feature ist aktuell experimentell und funktioniert möglicherweise nicht wie erwartet.",
"This folder is empty": "Dieser Ordner ist leer",
"This is a default user permission and will remain enabled.": "Dies ist eine Standardberechtigung und bleibt aktiviert.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Dies ist eine experimentelle Funktion. Sie funktioniert möglicherweise nicht wie erwartet und kann jederzeit geändert werden.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Adjusting these settings will apply changes to all users. Such universal, very wow.",
"admin": "admin",
"Admin": "",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Command",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "Default User Role",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model filesystem bark detected. Model shortname is required for update, cannot continue.",
"Model Filtering": "",
"Model ID": "",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Barkword",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2036,6 +2038,7 @@
"Previous 30 days": "",
"Previous 7 days": "",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "Theme much theme",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "",
"This action cannot be undone. Do you wish to continue?": "",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "This ensures that your valuable conversations are securely saved to your backend database. Thank you! Much secure!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Πρόσθετες Παράμετροι",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Η ρύθμιση αυτών των παραμέτρων θα εφαρμόσει τις αλλαγές καθολικά σε όλους τους χρήστες.",
"admin": "διαχειριστής",
"Admin": "Διαχειριστής",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Εντολή",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Η προεπιλογή είναι η τμηματοποιημένη ανάκτηση για στοχευμένη και σχετική εξαγωγή περιεχομένου, κάτι που συνιστάται στις περισσότερες περιπτώσεις.",
"Default User Role": "Προεπιλεγμένος Ρόλος Χρήστη",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Διαγραφή",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "Το μοντέλο μπορεί να αναζητήσει πληροφορίες στο διαδίκτυο",
"Model Capabilities": "",
"Model created successfully!": "Το μοντέλο δημιουργήθηκε με επιτυχία!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Ανιχνεύθηκε διαδρομή αρχείου μοντέλου. Το σύντομο όνομα μοντέλου απαιτείται για ενημέρωση, δεν μπορεί να συνεχιστεί.",
"Model Filtering": "Φιλτράρισμα Μοντέλων",
"Model ID": "ID Μοντέλου",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "Επόμενο μήνυμα",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "Παράμετροι",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Κωδικός",
"Password for the bind DN.": "",
"Passwords do not match.": "Οι κωδικοί δεν ταιριάζουν",
@ -2036,6 +2038,7 @@
"Previous 30 days": "Προηγούμενες 30 ημέρες",
"Previous 7 days": "Προηγούμενες 7 ημέρες",
"Previous message": "Προηγούμενο μήνυμα",
"Previous page": "",
"Private": "Ιδιωτικό",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "Θέμα",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Σκέφτομαι...",
"This action cannot be undone. Do you wish to continue?": "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί. Θέλετε να συνεχίσετε;",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Αυτό διασφαλίζει ότι οι πολύτιμες συνομιλίες σας αποθηκεύονται με ασφάλεια στη βάση δεδομένων backend σας. Ευχαριστούμε!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Αυτή είναι μια πειραματική λειτουργία, μπορεί να μην λειτουργεί όπως αναμένεται και υπόκειται σε αλλαγές οποιαδήποτε στιγμή.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "",
"admin": "",
"Admin": "",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Filtering": "",
"Model ID": "",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2036,6 +2038,7 @@
"Previous 30 days": "",
"Previous 7 days": "",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "",
"This action cannot be undone. Do you wish to continue?": "",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "",
"admin": "",
"Admin": "",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Filtering": "",
"Model ID": "",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "Next message",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2036,6 +2038,7 @@
"Previous 30 days": "",
"Previous 7 days": "",
"Previous message": "Previous message",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "",
"This action cannot be undone. Do you wish to continue?": "",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",

View file

@ -134,7 +134,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Parámetros Adicionales",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "El ajuste de estas opciones se aplicará globalmente a todos los usuarios.",
"admin": "admin",
"Admin": "Admin",
"Admin Contact Email": "Correo Electrónico de Contacto del Admin",
@ -545,6 +544,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "comando",
"Command": "Comando",
@ -727,7 +727,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Por defecto está predeterminada una segmentación de la recuperación para una extracción de contenido centrado y relevante, recomendado para la mayoría de los casos.",
"Default User Role": "Rol predeterminado de los nuevos usuarios",
"Default webhook": "",
"Defaults": "Predeterminados",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Borrar",
@ -1675,6 +1674,7 @@
"Model can search the web for information": "Modelo puede buscar información en la web",
"Model Capabilities": "Capacidades del Modelo",
"Model created successfully!": "¡Modelo creado correctamente!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Detectada ruta del sistema al modelo. Para actualizar se requiere el nombre corto del modelo, no se puede continuar.",
"Model Filtering": "Filtrado de modelos",
"Model ID": "ID Modelo",
@ -1757,6 +1757,7 @@
"New Webhook": "Nuevo Webhook",
"new-channel": "nuevo-canal",
"Next message": "Siguiente mensaje",
"Next page": "",
"Next run": "Siguiente ejecución",
"No access grants. Private to you.": "Sin acceso concedido. Privado para tí.",
"No actions found": "",
@ -1958,6 +1959,7 @@
"Parameters": "Parámetros",
"Parent message not found": "Mensaje padre no encontrado",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "¡Participa en las clasificaciones y evaluaciones de la comunidad! La sincronización agregada de estadísticas de uso ayuda a impulsar la investigación y las mejoras de Open-WebUI. Tu privacidad es primordial: nunca se comparte el contenido de los mensajes.",
"Passthrough params": "",
"Password": "Contraseña",
"Password for the bind DN.": "",
"Passwords do not match.": "Las contraseñas no coinciden",
@ -2046,6 +2048,7 @@
"Previous 30 days": "30 días previos",
"Previous 7 days": "7 días previos",
"Previous message": "Mensaje anterior",
"Previous page": "",
"Private": "Privado",
"Private conversation between selected users": "Conversación privada entre l@s usuari@s seleccionados",
"Production version updated": "Versión de Producción actualizada",
@ -2417,6 +2420,7 @@
"Show Formatting Toolbar": "Mostrar barra de herramientas de Formateo",
"Show image preview": "Mostrar previsualización de imagen",
"Show Model": "Mostrar Modelo",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "Mostrar Atajos de Teclado",
@ -2591,12 +2595,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "La temperatura del modelo. Aumentar la temperatura hará que el modelo responda de forma más creativa.",
"Theme": "Tema",
"There was an error syncing your stats. Please try again.": "Se produjo un error al sincronizar tus estadísticas. Por favor, inténtalo de nuevo.",
"thinking, output_config": "",
"Thinking...": "Pensando...",
"This action cannot be undone. Do you wish to continue?": "Esta acción no se puede deshacer. ¿Desea continuar?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Este canal fue creado el {{createdAt}}. Este es el comienzo del canal {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "Este chat no aparecerá en el historial y los mensajes no se guardarán.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Esto garantiza que sus valiosas conversaciones se guardan de forma segura en tu base de datos del servidor trasero (backend). ¡Gracias!",
"This feature is currently experimental and may not work as expected.": "Acualmente esta característica es experimental y puede no funcionar como se espera.",
"This folder is empty": "Esta carpeta está vacía",
"This is a default user permission and will remain enabled.": "Este es un permiso predeterminado y se mantentrá activo ",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Esta es una característica experimental, por lo que puede no funcionar como se esperaba y está sujeta a cambios en cualquier momento.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Täiendavad parameetrid",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Nende seadete kohandamine rakendab muudatused universaalselt kõigile kasutajatele.",
"admin": "admin",
"Admin": "Administraator",
"Admin Contact Email": "Administraatori kontakt-e-post",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "käsk",
"Command": "Käsk",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Vaikimisi kasutada segmenteeritud päringut keskendunud ja asjakohase sisu eraldamiseks; soovitatav enamikel juhtudel.",
"Default User Role": "Vaikimisi kasutaja roll",
"Default webhook": "",
"Defaults": "Vaikeväärtused",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Kustuta",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "Mudel saab otsida teavet veebist",
"Model Capabilities": "Mudeli võimekused",
"Model created successfully!": "Mudel edukalt loodud!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Tuvastati mudeli failisüsteemi tee. Uuendamiseks on vajalik mudeli lühinimi, ei saa jätkata.",
"Model Filtering": "Mudeli filtreerimine",
"Model ID": "Mudeli ID",
@ -1747,6 +1747,7 @@
"New Webhook": "Uus webhook",
"new-channel": "uus-kanal",
"Next message": "Järgmine sõnum",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "Pole juurdepääsuõigusi. Privaatne teile.",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "Parameetrid",
"Parent message not found": "Vanemsõnumit ei leitud",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "Osalege kogukonna edetabelites ja hindamistes! Koondatud kasutusstatistika sünkroonimine aitab edendada uuringuid ja Open WebUI täiustamist. Teie privaatsus on ülimalt oluline: sõnumite sisu ei jagata kunagi.",
"Passthrough params": "",
"Password": "Parool",
"Password for the bind DN.": "",
"Passwords do not match.": "Paroolid ei ühti.",
@ -2036,6 +2038,7 @@
"Previous 30 days": "Eelmised 30 päeva",
"Previous 7 days": "Eelmised 7 päeva",
"Previous message": "Eelmine sõnum",
"Previous page": "",
"Private": "Privaatne",
"Private conversation between selected users": "Privaatne vestlus valitud kasutajate vahel",
"Production version updated": "Tootmise versioon uuendatud",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "Kuva vormindamise tööriistariba",
"Show image preview": "Kuva pildi eelvaade",
"Show Model": "Kuva mudel",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "Kuva otseteed",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Mudeli temperatuur. Temperatuuri suurendamine paneb mudeli vastama loovamalt.",
"Theme": "Teema",
"There was an error syncing your stats. Please try again.": "Statistika sünkroonimisel tekkis viga. Palun proovige uuesti.",
"thinking, output_config": "",
"Thinking...": "Mõtleb...",
"This action cannot be undone. Do you wish to continue?": "Seda toimingut ei saa tagasi võtta. Kas soovite jätkata?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "See kanal loodi {{createdAt}}. See on {{channelName}} kanali algus.",
"This chat won't appear in history and your messages will not be saved.": "See vestlus ei ilmu ajaloos ja teie sõnumeid ei salvestata.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "See tagab, et teie väärtuslikud vestlused salvestatakse turvaliselt teie tagarakenduse andmebaasi. Täname!",
"This feature is currently experimental and may not work as expected.": "See funktsioon on praegu eksperimentaalne ja ei pruugi toimida ootuspäraselt.",
"This folder is empty": "See kaust on tühi",
"This is a default user permission and will remain enabled.": "See on vaikimisi kasutajaõigus ja jääb lubatuks.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "See on katsetuslik funktsioon, see ei pruugi toimida ootuspäraselt ja võib igal ajal muutuda.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Ezarpen hauek aldatzeak aldaketak erabiltzaile guztiei aplikatuko dizkie.",
"admin": "administratzailea",
"Admin": "Administratzailea",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Komandoa",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "Erabiltzaile Rol Lehenetsia",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Ezabatu",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "Modeloa ongi sortu da!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modeloaren fitxategi sistemaren bidea detektatu da. Modeloaren izen laburra behar da eguneratzeko, ezin da jarraitu.",
"Model Filtering": "Modelo iragazketa",
"Model ID": "Modelo ID",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Pasahitza",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2036,6 +2038,7 @@
"Previous 30 days": "Aurreko 30 egunak",
"Previous 7 days": "Aurreko 7 egunak",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "Gaia",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Pentsatzen...",
"This action cannot be undone. Do you wish to continue?": "Ekintza hau ezin da desegin. Jarraitu nahi duzu?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Honek zure elkarrizketa baliotsuak modu seguruan zure backend datu-basean gordeko direla ziurtatzen du. Eskerrik asko!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Hau funtzionalitate esperimental bat da, baliteke espero bezala ez funtzionatzea eta edozein unetan aldaketak izatea.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "پارامترهای اضافی",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "با تنظیم این تنظیمات، تغییرات به طور کلی برای همه کاربران اعمال می\u200cشود.",
"admin": "مدیر",
"Admin": "مدیر",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "دستور",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "پیش\u200cفرض به بازیابی قطعه\u200cای برای استخراج محتوای متمرکز و مرتبط، این برای اکثر موارد توصیه می\u200cشود.",
"Default User Role": "نقش کاربر پیش فرض",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "حذف",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "مدل می\u200cتواند وب را برای اطلاعات جستجو کند",
"Model Capabilities": "",
"Model created successfully!": "مدل با موفقیت ایجاد شد!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "مسیر فایل سیستم مدل یافت شد. برای بروزرسانی نیاز است نام کوتاه مدل وجود داشته باشد.",
"Model Filtering": "فیلتر کردن مدل",
"Model ID": "شناسه مدل",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "کانال-جدید",
"Next message": "پیام بعدی",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "پارامترها",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "رمز عبور",
"Password for the bind DN.": "",
"Passwords do not match.": "رمزهای عبور مطابقت ندارند.",
@ -2036,6 +2038,7 @@
"Previous 30 days": "30 روز قبل",
"Previous 7 days": "7 روز قبل",
"Previous message": "پیام قبلی",
"Previous page": "",
"Private": "خصوصی",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "نمایش نوار ابزار قالب\u200cبندی",
"Show image preview": "نمایش پیش\u200cنمایش تصویر",
"Show Model": "نمایش مدل",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "نمایش میانبرها",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "دمای مدل. افزایش دما باعث می\u200cشود مدل خلاقانه\u200cتر پاسخ دهد.",
"Theme": "پوسته",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "در حال فکر کردن...",
"This action cannot be undone. Do you wish to continue?": "این عمل قابل بازگشت نیست. آیا می\u200cخواهید ادامه دهید؟",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "این کانال در {{createdAt}} ایجاد شد. این آغاز کانال {{channelName}} است.",
"This chat won't appear in history and your messages will not be saved.": "این چت در تاریخچه ظاهر نمی\u200cشود و پیام\u200cهای شما ذخیره نخواهند شد.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "این اطمینان می\u200cدهد که مکالمات ارزشمند شما به طور امن در پایگاه داده پشتیبان ذخیره می\u200cشوند. متشکریم!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "این یک مجوز کاربر پیش\u200cفرض است و فعال باقی خواهد ماند.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "این یک ویژگی آزمایشی است، ممکن است طبق انتظار کار نکند و در هر زمان ممکن است تغییر کند.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Lisäparametrit",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Näiden asetusten muokkaaminen vaikuttaa kaikkiin käyttäjiin.",
"admin": "hallinta",
"Admin": "Ylläpito",
"Admin Contact Email": "Ylläpidon sähköposti",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "komento",
"Command": "Komento",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Segmentoitu haku on oletuksena kohdennettua ja relevanttia sisällön poimimista varten. Tätä suositellaan useimmissa tapauksissa.",
"Default User Role": "Oletuskäyttäjärooli",
"Default webhook": "",
"Defaults": "Oletukset",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Poista",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "Malli voi hakea tietoa verkosta",
"Model Capabilities": "Mallin ominaisuudet",
"Model created successfully!": "Malli luotu onnistuneesti!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Mallin tiedostojärjestelmäpolku havaittu. Mallin lyhytnimi vaaditaan päivitykseen, ei voida jatkaa.",
"Model Filtering": "Mallin suodatus",
"Model ID": "Mallin tunnus",
@ -1747,6 +1747,7 @@
"New Webhook": "Uusi Webhook",
"new-channel": "uusi-kanava",
"Next message": "Seuraava viesti",
"Next page": "",
"Next run": "Seuraava suoritus",
"No access grants. Private to you.": "Ei käyttöoikeuksia. Yksityinen sinulle.",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "Parametrit",
"Parent message not found": "Ylätason viestiä ei löytynyt",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "Osallistu yhteisön tulostaulukoihin ja arviointeihin! Koottujen käyttötilastojen synkronointi auttaa edistämään Open WebUI:n tutkimuksia ja parannuksia. Tietosuojasi on ensiarvoisen tärkeää: viestien sisältöä ei koskaan jaeta.",
"Passthrough params": "",
"Password": "Salasana",
"Password for the bind DN.": "",
"Passwords do not match.": "Salasanat eivät täsmää",
@ -2036,6 +2038,7 @@
"Previous 30 days": "Edelliset 30 päivää",
"Previous 7 days": "Edelliset 7 päivää",
"Previous message": "Edellinen viesti",
"Previous page": "",
"Private": "Yksityinen",
"Private conversation between selected users": "Yksityinen keskustelu käyttäjien välillä",
"Production version updated": "Tuotantoversio päivitetty",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "Näytä muotoilupalkki",
"Show image preview": "Näytä kuvan esikatselu",
"Show Model": "Näytä malli",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "Näytä pikakomennot",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Mallin lämpötila. Lisäämällä lämpötilaa mallin vastaukset ovat luovempia.",
"Theme": "Teema",
"There was an error syncing your stats. Please try again.": "Tilastojen synkronoinnissa tapahtui virhe. Yritä uudelleen.",
"thinking, output_config": "",
"Thinking...": "Ajattelee...",
"This action cannot be undone. Do you wish to continue?": "Tätä toimintoa ei voi peruuttaa. Haluatko jatkaa?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Tämä kanava on luotiin {{createdAt}}. Tämä on {{channelName}} kanavan alku.",
"This chat won't appear in history and your messages will not be saved.": "Tämä keskustelu ei näy historiassa, eikä viestejäsi tallenneta.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Tämä varmistaa, että arvokkaat keskustelusi tallennetaan turvallisesti backend-tietokantaasi. Kiitos!",
"This feature is currently experimental and may not work as expected.": "Tämä ominaisuus on tällä hetkellä kokeellinen eikä välttämättä toimi odotetulla tavalla.",
"This folder is empty": "Tämä kansio on tyhjä",
"This is a default user permission and will remain enabled.": "Tämä on oletusarvoinen käyttäjäoikeus ja pysyy käytössä.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Tämä on kokeellinen ominaisuus, se ei välttämättä toimi odotetulla tavalla ja se voi muuttua milloin tahansa.",

View file

@ -128,7 +128,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "",
"admin": "",
"Admin": "",
"Admin Contact Email": "",
@ -539,6 +538,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "",
@ -720,7 +720,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Burahin",
@ -1666,6 +1665,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Filtering": "",
"Model ID": "",
@ -1748,6 +1748,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1949,6 +1950,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2037,6 +2039,7 @@
"Previous 30 days": "Nakaraang 30 araw",
"Previous 7 days": "Nakaraang 7 araw",
"Previous message": "",
"Previous page": "",
"Private": "Pribado",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2406,6 +2409,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2580,12 +2584,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "Tema",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Nag-iisip...",
"This action cannot be undone. Do you wish to continue?": "",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",

View file

@ -134,7 +134,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "L'ajustement de ces réglages appliquera universellement les changements à tous les utilisateurs.",
"admin": "administrateur",
"Admin": "Administrateur",
"Admin Contact Email": "",
@ -545,6 +544,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Commande",
@ -727,7 +727,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "La recherche segmentée par défaut permet d'extraire un contenu ciblé et pertinent, ce qui est recommandé dans la plupart des cas.",
"Default User Role": "Rôle utilisateur par défaut",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Supprimer",
@ -1675,6 +1674,7 @@
"Model can search the web for information": "Le modèle peut faire des recherches sur internet pour trouver des informations",
"Model Capabilities": "",
"Model created successfully!": "Le modèle a été créé avec succès !",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Chemin du système de fichiers de modèle détecté. Le nom court du modèle est requis pour la mise à jour, l'opération ne peut pas être poursuivie.",
"Model Filtering": "Filtrage de modèle",
"Model ID": "ID du modèle",
@ -1757,6 +1757,7 @@
"New Webhook": "",
"new-channel": "nouveau-canal",
"Next message": "Message suivant",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1958,6 +1959,7 @@
"Parameters": "Réglages",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Mot de passe",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2046,6 +2048,7 @@
"Previous 30 days": "30 derniers jours",
"Previous 7 days": "7 derniers jours",
"Previous message": "Message précédent",
"Previous page": "",
"Private": "Privé",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2417,6 +2420,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "Afficher l'aperçu de l'image",
"Show Model": "Afficher le model",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2591,12 +2595,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "La température du modèle. Une température plus élevée rend les réponses plus créatives.",
"Theme": "Thème",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "En train de réfléchir...",
"This action cannot be undone. Do you wish to continue?": "Cette action ne peut pas être annulée. Souhaitez-vous continuer ?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Ce canal a été créé le {{createdAt}}. Voici le tout début du canal {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "Cette conversation n'apparaîtra pas dans l'historique et vos messages ne seront pas enregistrés.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Cela garantit que vos conversations précieuses soient sauvegardées en toute sécurité dans votre base de données backend. Merci !",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Il s'agit d'une fonctionnalité expérimentale, elle peut ne pas fonctionner comme prévu et est sujette à modification à tout moment.",

View file

@ -134,7 +134,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Paramètres supplémentaires",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "L'ajustement de ces réglages appliquera universellement les changements à tous les utilisateurs.",
"admin": "administrateur",
"Admin": "Administrateur",
"Admin Contact Email": "Email de contact de l'administrateur",
@ -545,6 +544,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "commande",
"Command": "Commande",
@ -727,7 +727,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "La recherche segmentée par défaut permet d'extraire un contenu ciblé et pertinent, ce qui est recommandé dans la plupart des cas.",
"Default User Role": "Rôle utilisateur par défaut",
"Default webhook": "",
"Defaults": "Valeurs par défaut",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Supprimer",
@ -1675,6 +1674,7 @@
"Model can search the web for information": "Le modèle peut faire des recherches sur internet pour trouver des informations",
"Model Capabilities": "Capacités du modèle",
"Model created successfully!": "Modèle créé avec succès !",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Chemin du système de fichiers de modèle détecté. Le nom court du modèle est requis pour la mise à jour, l'opération ne peut pas être poursuivie.",
"Model Filtering": "Filtrage de modèle",
"Model ID": "ID du modèle",
@ -1757,6 +1757,7 @@
"New Webhook": "Nouveau webhook",
"new-channel": "nouveau-canal",
"Next message": "Message suivant",
"Next page": "",
"Next run": "Prochaine exécution",
"No access grants. Private to you.": "Aucun partage. Visible uniquement par vous.",
"No actions found": "",
@ -1958,6 +1959,7 @@
"Parameters": "Réglages",
"Parent message not found": "Message parent introuvable",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "Participez aux classements et évaluations de la communauté ! La synchronisation des statistiques d'utilisation agrégées contribue à l'amélioration d'Open WebUI. Votre vie privée est primordiale : aucun contenu de message n'est jamais partagé.",
"Passthrough params": "",
"Password": "Mot de passe",
"Password for the bind DN.": "",
"Passwords do not match.": "Les mots de passe ne correspondent pas.",
@ -2046,6 +2048,7 @@
"Previous 30 days": "30 derniers jours",
"Previous 7 days": "7 derniers jours",
"Previous message": "Message précédent",
"Previous page": "",
"Private": "Privé",
"Private conversation between selected users": "Conversation privée entre les utilisateurs sélectionnés",
"Production version updated": "Version active mise à jour",
@ -2417,6 +2420,7 @@
"Show Formatting Toolbar": "Afficher la barre d'outils de formatage",
"Show image preview": "Afficher l'aperçu de l'image",
"Show Model": "Afficher le modèle",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "Afficher les raccourcis clavier",
@ -2591,12 +2595,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "La température du modèle. Une température plus élevée rend les réponses plus créatives.",
"Theme": "Thème",
"There was an error syncing your stats. Please try again.": "Une erreur est survenue lors de la synchronisation de vos statistiques. Veuillez réessayer.",
"thinking, output_config": "",
"Thinking...": "En train de réfléchir...",
"This action cannot be undone. Do you wish to continue?": "Cette action ne peut pas être annulée. Souhaitez-vous continuer ?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Ce canal a été créé le {{createdAt}}. Voici le tout début du canal {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "Cette conversation n'apparaîtra pas dans l'historique et vos messages ne seront pas enregistrés.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Cela garantit que vos conversations précieuses soient sauvegardées en toute sécurité dans votre base de données backend. Merci !",
"This feature is currently experimental and may not work as expected.": "Cette fonctionnalité est actuellement expérimentale et peut ne pas fonctionner comme prévu.",
"This folder is empty": "Ce dossier est vide",
"This is a default user permission and will remain enabled.": "Ceci est une permission utilisateur par défaut et restera activée.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Il s'agit d'une fonctionnalité expérimentale, elle peut ne pas fonctionner comme prévu et est sujette à modification à tout moment.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Axustar estas opcions aplicará os cambios universalmente a todos os usuarios.",
"admin": "admin",
"Admin": "Admin",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Comando",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "Rol por defecto para os usuarios",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Borrar",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "Modelo creado correctamente!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Destectouse a ruta do sistema de ficheiros do modelo. É necesario o nome curto do modelo para a actualización, non se pode continuar.",
"Model Filtering": "Filtrado de modelos",
"Model ID": "ID do modelo",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "novo-canal",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Contrasinal ",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2036,6 +2038,7 @@
"Previous 30 days": "Últimos 30 días",
"Previous 7 days": "Últimos 7 días",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "Tema",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Pensando...",
"This action cannot be undone. Do you wish to continue?": "Esta acción no se puede deshacer. ¿Desea continuar?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Esto garantiza que sus valiosas conversacions se guarden de forma segura en su base de datos no backend. ¡Gracias!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Esta es unha característica experimental que puede no funcionar como se esperaba y está sujeto a cambios en cualquier momento.",

View file

@ -134,7 +134,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "התאמת הגדרות אלו תחול על כל המשתמשים.",
"admin": "מנהל",
"Admin": "מנהל",
"Admin Contact Email": "",
@ -545,6 +544,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "פקודה",
@ -727,7 +727,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "תפקיד משתמש ברירת מחדל",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "מחק",
@ -1675,6 +1674,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "נתיב מערכת הקבצים של המודל זוהה. נדרש שם קצר של המודל לעדכון, לא ניתן להמשיך.",
"Model Filtering": "",
"Model ID": "מזהה דגם",
@ -1757,6 +1757,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1958,6 +1959,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "סיסמה",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2046,6 +2048,7 @@
"Previous 30 days": "30 הימים הקודמים",
"Previous 7 days": "7 הימים הקודמים",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2417,6 +2420,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2591,12 +2595,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "נושא",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "חושב...",
"This action cannot be undone. Do you wish to continue?": "",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "פעולה זו מבטיחה שהשיחות בעלות הערך שלך יישמרו באופן מאובטח במסד הנתונים העורפי שלך. תודה!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "इन सेटिंग्स को समायोजित करने से परिवर्तन सभी उपयोगकर्ताओं पर सार्वभौमिक रूप से लागू होंगे।",
"admin": "व्यवस्थापक",
"Admin": "",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "कमांड",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "डिफ़ॉल्ट उपयोगकर्ता भूमिका",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "डिलीट",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "मॉडल फ़ाइल सिस्टम पथ का पता चला. अद्यतन के लिए मॉडल संक्षिप्त नाम आवश्यक है, जारी नहीं रखा जा सकता।",
"Model Filtering": "",
"Model ID": "मॉडल आईडी",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "पासवर्ड",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2036,6 +2038,7 @@
"Previous 30 days": "पिछले 30 दिन",
"Previous 7 days": "पिछले 7 दिन",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "थीम",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "",
"This action cannot be undone. Do you wish to continue?": "",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "यह सुनिश्चित करता है कि आपकी मूल्यवान बातचीत आपके बैकएंड डेटाबेस में सुरक्षित रूप से सहेजी गई है। धन्यवाद!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",

View file

@ -134,7 +134,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Podešavanje će se primijeniti univerzalno na sve korisnike.",
"admin": "administrator",
"Admin": "Admin",
"Admin Contact Email": "",
@ -545,6 +544,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Naredba",
@ -727,7 +727,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "Zadana korisnička uloga",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Izbriši",
@ -1675,6 +1674,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Otkriven put datotečnog sustava modela. Kratko ime modela je potrebno za ažuriranje, nije moguće nastaviti.",
"Model Filtering": "",
"Model ID": "ID modela",
@ -1757,6 +1757,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1958,6 +1959,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Lozinka",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2046,6 +2048,7 @@
"Previous 30 days": "Prethodnih 30 dana",
"Previous 7 days": "Prethodnih 7 dana",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2417,6 +2420,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2591,12 +2595,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "Tema",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Razmišljam",
"This action cannot be undone. Do you wish to continue?": "",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Ovo osigurava da su vaši vrijedni razgovori sigurno spremljeni u bazu podataka. Hvala vam!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Ovo je eksperimentalna značajka, možda neće funkcionirati prema očekivanjima i podložna je promjenama u bilo kojem trenutku.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Ezen beállítások módosítása minden felhasználóra érvényes lesz.",
"admin": "admin",
"Admin": "Admin",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Parancs",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Alapértelmezés szerint szegmentált visszakeresés a fókuszált és releváns tartalom kinyeréséhez, ez a legtöbb esetben ajánlott.",
"Default User Role": "Alapértelmezett felhasználói szerep",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Törlés",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "Modell sikeresen létrehozva!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modell fájlrendszer útvonal észlelve. A modell rövid neve szükséges a frissítéshez, nem folytatható.",
"Model Filtering": "Modellszűrés",
"Model ID": "Modell azonosító",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "új csatorna",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Jelszó",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2036,6 +2038,7 @@
"Previous 30 days": "Előző 30 nap",
"Previous 7 days": "Előző 7 nap",
"Previous message": "",
"Previous page": "",
"Private": "Privát",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "Modell megjelenítése",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "A modell hőmérséklete. A hőmérséklet növelése kreatívabb válaszokat eredményez a modelltől.",
"Theme": "Téma",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Gondolkodik...",
"This action cannot be undone. Do you wish to continue?": "Ez a művelet nem vonható vissza. Szeretné folytatni?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Ez a csatorna {{createdAt}} időpontban jött létre. Ez a {{channelName}} csatorna legeslegeleje.",
"This chat won't appear in history and your messages will not be saved.": "Ez a csevegés nem jelenik meg az előzményekben, és az üzeneteid nem kerülnek mentésre.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Ez biztosítja, hogy értékes beszélgetései biztonságosan mentésre kerüljenek a backend adatbázisban. Köszönjük!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Ez egy kísérleti funkció, lehet, hogy nem a várt módon működik és bármikor változhat.",

View file

@ -120,7 +120,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Menyesuaikan pengaturan ini akan menerapkan perubahan secara universal ke semua pengguna.",
"admin": "admin",
"Admin": "Admin",
"Admin Contact Email": "",
@ -531,6 +530,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Perintah",
@ -711,7 +711,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "Peran Pengguna Default",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Menghapus",
@ -1655,6 +1654,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "Model berhasil dibuat!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Jalur sistem berkas model terdeteksi. Nama pendek model diperlukan untuk pembaruan, tidak dapat dilanjutkan.",
"Model Filtering": "",
"Model ID": "ID Model",
@ -1737,6 +1737,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1938,6 +1939,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Kata sandi",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2026,6 +2028,7 @@
"Previous 30 days": "30 hari sebelumnya",
"Previous 7 days": "7 hari sebelumnya",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2391,6 +2394,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2563,12 +2567,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "Tema",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Berpikir",
"This action cannot be undone. Do you wish to continue?": "Tindakan ini tidak dapat dibatalkan. Apakah Anda ingin melanjutkan?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Ini akan memastikan bahwa percakapan Anda yang berharga disimpan dengan aman ke basis data backend. Terima kasih!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Ini adalah fitur eksperimental, mungkin tidak berfungsi seperti yang diharapkan dan dapat berubah sewaktu-waktu.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Paraiméadair Bhreise",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Cuirfear na socruithe seo ag coigeartú athruithe go huilíoch ar gach úsáideoir.",
"admin": "riarachán",
"Admin": "Riarachán",
"Admin Contact Email": "Ríomhphost Teagmhála Riarthóra",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "ordú",
"Command": "Ordú",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Réamhshocrú maidir le haisghabháil deighilte d'eastóscadh ábhar dírithe agus ábhartha, moltar é seo i bhformhór na gcásanna.",
"Default User Role": "Ról Úsáideora Réamhshocraithe",
"Default webhook": "",
"Defaults": "Réamhshocruithe",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Scrios",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "Is féidir leis an tsamhail cuardach a dhéanamh ar an ngréasán le haghaidh faisnéise",
"Model Capabilities": "Cumais Samhail",
"Model created successfully!": "Cruthaíodh an tsamhail go rathúil!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Fuarthas cosán an samhail. Tá gearrainm an tsamhail ag teastáil le haghaidh nuashonraithe, ní féidir leanúint ar aghaidh.",
"Model Filtering": "Samhail Scagadh",
"Model ID": "Aitheantas Samhail",
@ -1747,6 +1747,7 @@
"New Webhook": "Gréasáin Nua",
"new-channel": "nua-chainéil",
"Next message": "An chéad teachtaireacht eile",
"Next page": "",
"Next run": "An chéad rith eile",
"No access grants. Private to you.": "Gan aon deontais rochtana. Príobháideach duitse.",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "Paraiméadair",
"Parent message not found": "Níor aimsíodh teachtaireacht tuismitheora",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "Glac páirt i gcláir cheannaireachta agus i meastóireachtaí pobail! Cuidíonn sioncrónú staitisticí úsáide comhiomlánaithe le taighde agus feabhsuithe a thiomáint ar Open WebUI. Tá do phríobháideacht ríthábhachtach: ní roinntear aon ábhar teachtaireachta riamh.",
"Passthrough params": "",
"Password": "Pasfhocal",
"Password for the bind DN.": "",
"Passwords do not match.": "Ní hionann na pasfhocail.",
@ -2036,6 +2038,7 @@
"Previous 30 days": "30 lá roimhe seo",
"Previous 7 days": "7 lá roimhe seo",
"Previous message": "Teachtaireacht roimhe seo",
"Previous page": "",
"Private": "Príobháideach",
"Private conversation between selected users": "Comhrá príobháideach idir úsáideoirí roghnaithe",
"Production version updated": "Leagan táirgeachta nuashonraithe",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "Taispeáin Barra Uirlisí Formáidithe",
"Show image preview": "Taispeáin réamhamharc íomhá",
"Show Model": "Taispeáin Samhail",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "Taispeáin Aicearraí",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Teocht an tsamhail. Déanfaidh méadú ar an teocht an tsamhail a fhreagairt níos cruthaithí.",
"Theme": "Téama",
"There was an error syncing your stats. Please try again.": "Tharla earráid agus do staitisticí á sioncrónú. Déan iarracht arís.",
"thinking, output_config": "",
"Thinking...": "Ag smaoineamh...",
"This action cannot be undone. Do you wish to continue?": "Ní féidir an gníomh seo a chur ar ais. Ar mhaith leat leanúint ar aghaidh?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Cruthaíodh an cainéal seo ar {{createdAt}}. Seo tús an chainéil {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "Ní bheidh an comhrá seo le feiceáil sa stair agus ní shábhálfar do theachtaireachtaí.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Cinntíonn sé seo go sábhálfar do chomhráite luachmhara go daingean i do bhunachar sonraí cúltaca Go raibh maith agat!",
"This feature is currently experimental and may not work as expected.": "Tá an ghné seo turgnamhach faoi láthair agus b'fhéidir nach n-oibreoidh sí mar a bhíothas ag súil leis.",
"This folder is empty": "Tá an fillteán seo folamh",
"This is a default user permission and will remain enabled.": "Is cead úsáideora réamhshocraithe é seo agus fanfaidh sé cumasaithe.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Is gné turgnamhach í seo, b'fhéidir nach bhfeidhmeoidh sé mar a bhíothas ag súil leis agus tá sé faoi réir athraithe ag am ar bith.",

View file

@ -134,7 +134,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "La modifica di queste impostazioni applicherà le modifiche universalmente a tutti gli utenti.",
"admin": "amministratore",
"Admin": "Amministratore",
"Admin Contact Email": "",
@ -545,6 +544,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Comando",
@ -727,7 +727,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Predefinito per il recupero segmentato per un'estrazione di contenuti mirata e pertinente, questo è raccomandato per la maggior parte dei casi.",
"Default User Role": "Ruolo utente predefinito",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Elimina",
@ -1675,6 +1674,7 @@
"Model can search the web for information": "Il modello può cercare nella rete per informazioni",
"Model Capabilities": "",
"Model created successfully!": "Modello creato con successo!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Percorso del filesystem del modello rilevato. Il nome breve del modello è richiesto per l'aggiornamento, impossibile continuare.",
"Model Filtering": "Filtraggio modelli",
"Model ID": "ID modello",
@ -1757,6 +1757,7 @@
"New Webhook": "",
"new-channel": "nuovo-canale",
"Next message": "Messaggio successivo",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1958,6 +1959,7 @@
"Parameters": "Parametri",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Password",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2046,6 +2048,7 @@
"Previous 30 days": "Ultimi 30 giorni",
"Previous 7 days": "Ultimi 7 giorni",
"Previous message": "",
"Previous page": "",
"Private": "Privato",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2417,6 +2420,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "Mostra Modello",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2591,12 +2595,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "La temperatura del modello. Aumentare la temperatura farà sì che il modello risponda in modo più creativo.",
"Theme": "Tema",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Sto pensando...",
"This action cannot be undone. Do you wish to continue?": "Questa azione non può essere annullata. Vuoi continuare?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Questo canale è stato creato il {{createdAt}}. Questo è l'inizio del canale {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "Questa chat non apparirà nella cronologia e i tuoi messaggi non verranno salvati.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Ciò garantisce che le tue preziose conversazioni siano salvate in modo sicuro nel tuo database backend. Grazie!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Questa è una funzionalità sperimentale, potrebbe non funzionare come previsto ed è soggetta a modifiche in qualsiasi momento.",

View file

@ -120,7 +120,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "これらの設定を変更すると、すべてのユーザーに変更が適用されます。",
"admin": "管理者",
"Admin": "管理者",
"Admin Contact Email": "管理者の連絡先メールアドレス",
@ -531,6 +530,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "コマンド",
@ -711,7 +711,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "デフォルトではセグメント化された検索を使用して、焦点を絞った関連性の高いコンテンツ抽出を行います。これはほとんどの場合に推奨されます。",
"Default User Role": "デフォルトのユーザー役割",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "削除",
@ -1655,6 +1654,7 @@
"Model can search the web for information": "モデルは情報をウェブ検索できます",
"Model Capabilities": "",
"Model created successfully!": "モデルが正常に作成されました!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "モデルファイルシステムパスが検出されました。モデルの短縮名が必要です。更新できません。",
"Model Filtering": "モデルフィルタリング",
"Model ID": "モデルID",
@ -1737,6 +1737,7 @@
"New Webhook": "",
"new-channel": "新しいチャンネル",
"Next message": "次のメッセージ",
"Next page": "",
"Next run": "次回実行",
"No access grants. Private to you.": "アクセス権は付与されていません。あなただけが利用できます。",
"No actions found": "",
@ -1938,6 +1939,7 @@
"Parameters": "パラメータ",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "パスワード",
"Password for the bind DN.": "",
"Passwords do not match.": "パスワードが一致しません。",
@ -2026,6 +2028,7 @@
"Previous 30 days": "過去30日間",
"Previous 7 days": "過去7日間",
"Previous message": "前のメッセージ",
"Previous page": "",
"Private": "プライベート",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2391,6 +2394,7 @@
"Show Formatting Toolbar": "フォーマットツールバーを表示",
"Show image preview": "画像のプレビューを表示",
"Show Model": "モデルを表示",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "ショートカットを表示",
@ -2563,12 +2567,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "モデルのtemperature。温度を上げるとモデルはより創造的に回答します。",
"Theme": "テーマ",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "思考中...",
"This action cannot be undone. Do you wish to continue?": "このアクションは取り消し不可です。続けますか?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "このチャンネルは{{createdAt}}に作成されました。これは{{channelName}}チャンネルの始まりです。",
"This chat won't appear in history and your messages will not be saved.": "このチャットは履歴に表示されず、メッセージは保存されません。",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "これは、貴重な会話がバックエンドデータベースに安全に保存されることを保証します。ありがとうございます!",
"This feature is currently experimental and may not work as expected.": "この機能は現在実験的で、期待通りに動作しない場合があります。",
"This folder is empty": "このフォルダーは空です",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "実験的機能であり正常動作しない場合があります。",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "დამატებითი პარამეტრები",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "ამ პარამეტრების რეგულირება ცვლილებებს უნივერსალურად გამოიყენებს ყველა მომხმარებლისთვის.",
"admin": "ადმინისტრატორი",
"Admin": "ადმინი",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "ბრძანება",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "მომხმარებლის ნაგულისხმევი როლი",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "წაშლა",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "მოდელს შეუძლია ინტერნეტში ინფორმაციის ძებნა",
"Model Capabilities": "",
"Model created successfully!": "მოდელი წარმატებით შეიქნა!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "აღმოჩენილია მოდელის ფაილური სისტემის ბილიკი. განახლებისთვის საჭიროა მოდელის მოკლე სახელი, გაგრძელება შეუძლებელია.",
"Model Filtering": "მოდელების გაფილტვრა",
"Model ID": "მოდელის ID",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "new-channel",
"Next message": "შემდეგი შეტყობინება",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "პარამეტრები",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "პაროლი",
"Password for the bind DN.": "",
"Passwords do not match.": "პაროლები არ ემთხვევა.",
@ -2036,6 +2038,7 @@
"Previous 30 days": "წინა 30 დღე",
"Previous 7 days": "წინა 7 დღე",
"Previous message": "წინა შეტყობინება",
"Previous page": "",
"Private": "პირადი",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "დაფორმატების პანელის ჩვენება",
"Show image preview": "გამოსახულების გადახედვის ჩვენება",
"Show Model": "მოდელის ჩვენება",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "მოდელის ტემპერატურა. ტემპერატურის გაზრდა მოდელს აიძულებს, უფრო მეტი შემოქმედებით გიპასუხოთ.",
"Theme": "თემა",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "ვფიქრობ...",
"This action cannot be undone. Do you wish to continue?": "",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "ეს უზრუნველყოფს, რომ თქვენი ღირებული საუბრები უსაფრთხოდ შეინახება თქვენს უკანაბოლო მონაცემთა ბაზაში. მადლობა!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Iɣewwaren nniḍen",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Aswati n yiɣewwaren-a ad yessuter ibeddilen s wudem ameɣradan i yiseqdacen akk.",
"admin": "anedbal",
"Admin": "Anebdal",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Anezḍay",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Ma nmuqel amek ara nɛawed ad nɛawed ad nɛawed ad nɛawed ad d-nekkes ayen yesɛan azal d wayen icudden ɣer ugbur, ilaq-as i tuget n tegnatin.",
"Default User Role": "Tamlilt n useqdac amezwar",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Kkes",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "Tamudemt-a tezmer ad tnadi deg Web ɣef isallen",
"Model Capabilities": "",
"Model created successfully!": "Tamudemt tennulfa-d akken iwata!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Abrid n unagraw n wammud iban-d. Isem n umudil yettwasra i uleqqem, ur yezmir ara ad ikemmel.",
"Model Filtering": "Asizdeg n tmudmiwin",
"Model ID": "Asulay n tmudemt",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "abadu amaynut",
"Next message": "Izen uḍfir",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "Isefranen",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Awal n uɛeddi",
"Password for the bind DN.": "",
"Passwords do not match.": "Awalen n uɛeddi ur mṣadan ara.",
@ -2036,6 +2038,7 @@
"Previous 30 days": "30 n wussan yezrin",
"Previous 7 days": "7 n wussan yezrin",
"Previous message": "Izen udfir",
"Previous page": "",
"Private": "Uslig",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "Skan amsal n ufeggag n yifecka",
"Show image preview": "Sken taskant n tugna",
"Show Model": "Sken-d tamudemt",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"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.",
"Theme": "Asentel",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Yettxemmim…",
"This action cannot be undone. Do you wish to continue?": "Tigawt-a ur tettwakkes ara. Tebɣiḍ ad tkemmleḍ?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Abadu-a yettwasnulaf-d deg {{created} Ɣef}}. D ta i d tazwara maḍi n ubadu {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "Aqeṣṣer-a ur d-yettban deg umezruy yerna iznan-nnek ur ttwaselkamen.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "D ayen ara yeǧǧen adiwenni-inek s wazal-is ad yettwasellek s tɣellist deg taffa n yisefka-inek n deffir. Tanemmirt!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Ta d taɣawsa tirmitant, yezmer lḥal ur tleḥḥu ara akken i tebɣiḍ, dɣa d asentel n ubeddel melmi tebɣiḍ.",

View file

@ -121,7 +121,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "추가 매개변수",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "이 설정을 조정하면 모든 사용자에게 변경 사항이 일괄 적용됩니다.",
"admin": "관리자",
"Admin": "관리자",
"Admin Contact Email": "관리자 이메일",
@ -532,6 +531,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "명령",
"Command": "명령",
@ -712,7 +712,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "집중적이고 관련성 있는 콘텐츠 추출을 위해 세분화된 검색을 기본으로 하며, 대부분의 경우에 권장됩니다.",
"Default User Role": "기본 사용자 역할",
"Default webhook": "",
"Defaults": "기본값",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "삭제",
@ -1656,6 +1655,7 @@
"Model can search the web for information": "모델이 웹에서 정보를 검색할 수 있습니다.",
"Model Capabilities": "모델 성능",
"Model created successfully!": "성공적으로 모델이 생성되었습니다",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "모델 파일 시스템 경로가 감지되었습니다. 업데이트하려면 모델 단축 이름이 필요하며 계속할 수 없습니다.",
"Model Filtering": "모델 필터링",
"Model ID": "모델 ID",
@ -1738,6 +1738,7 @@
"New Webhook": "새 Webhook",
"new-channel": "새 채널",
"Next message": "다음 메시지",
"Next page": "",
"Next run": "다음 실행",
"No access grants. Private to you.": "접근 권한이 없습니다. 개인용입니다.",
"No actions found": "",
@ -1939,6 +1940,7 @@
"Parameters": "매개변수",
"Parent message not found": "상위 메시지를 찾을 수 없습니다.",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "커뮤니티 리더보드와 평가에 참여하세요! 집계된 사용 통계를 동기화하면 Open WebUI의 연구과 개선을 지원합니다. 귀하의 개인정보는 최우선으로 보호됩니다: 메시지 내용은 절대 공유되지 않습니다.",
"Passthrough params": "",
"Password": "비밀번호",
"Password for the bind DN.": "",
"Passwords do not match.": "비밀번호가 일치하지 않습니다.",
@ -2027,6 +2029,7 @@
"Previous 30 days": "이전 30일",
"Previous 7 days": "이전 7일",
"Previous message": "이전 메시지",
"Previous page": "",
"Private": "비공개",
"Private conversation between selected users": "선택한 사용자 간의 비공개 대화",
"Production version updated": " production 버전이 업데이트되었습니다.",
@ -2393,6 +2396,7 @@
"Show Formatting Toolbar": "서식 툴바 표시",
"Show image preview": "이미지 미리보기",
"Show Model": "모델 보기",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "단축키 보기",
@ -2566,12 +2570,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "모델의 온도. 온도를 높이면 모델이 더 창의적으로 답변할 수 있습니다.",
"Theme": "테마",
"There was an error syncing your stats. Please try again.": "통계 동기화 중 오류가 발생했습니다. 다시 시도해 주세요.",
"thinking, output_config": "",
"Thinking...": "생각 중...",
"This action cannot be undone. Do you wish to continue?": "이 행동은 되돌릴 수 없습니다. 계속 하시겠습니까?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "{{createdAt}}에 {{channelName}} 채널이 처음 만들어졌습니다. 대화를 시작해보세요.",
"This chat won't appear in history and your messages will not be saved.": "이 채팅은 기록에 나타나지 않으며 메시지가 저장되지 않습니다.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "이렇게 하면 소중한 대화 내용이 백엔드 데이터베이스에 안전하게 저장됩니다. 감사합니다!",
"This feature is currently experimental and may not work as expected.": "이 기능은 현재 실험 중이며 예상대로 작동하지 않을 수 있습니다.",
"This folder is empty": "이 폴더는 비어 있습니다.",
"This is a default user permission and will remain enabled.": "이것은 기본 사용자 권한이며 계속 활성화됩니다.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "이것은 실험적 기능으로, 예상대로 작동하지 않을 수 있으며 언제든지 변경될 수 있습니다.",

View file

@ -141,7 +141,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Šių nustatymų pakeitimas bus pritakytas visiems naudotojams.",
"admin": "Administratorius",
"Admin": "Administratorius",
"Admin Contact Email": "",
@ -552,6 +551,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Command",
@ -735,7 +735,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "Numatytoji naudotojo rolė",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "ištrinti",
@ -1685,6 +1684,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "Modelis sukurtas sėkmingai",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modelio failų sistemos kelias aptiktas. Reikalingas trumpas modelio pavadinimas atnaujinimui.",
"Model Filtering": "",
"Model ID": "Modelio ID",
@ -1767,6 +1767,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1968,6 +1969,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Slaptažodis",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2056,6 +2058,7 @@
"Previous 30 days": "Paskutinės 30 dienų",
"Previous 7 days": "Paskutinės 7 dienos",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2430,6 +2433,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2605,12 +2609,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "Tema",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Mąsto...",
"This action cannot be undone. Do you wish to continue?": "Šis veiksmas negali būti atšauktas. Ar norite tęsti?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Tai užtikrina, kad Jūsų pokalbiai saugiai saugojami duomenų bazėje. Ačiū!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Tai eksperimentinė funkcija ir gali veikti nevisada.",

View file

@ -134,7 +134,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Papildu parametri",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Šo iestatījumu pielāgošana piemēros izmaiņas visiem lietotājiem.",
"admin": "administrators",
"Admin": "Administrators",
"Admin Contact Email": "Administratora kontakt e-pasts",
@ -545,6 +544,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Komanda",
@ -727,7 +727,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Noklusējums ir segmentēta izgūšana fokusētai un atbilstošai satura ekstrakcijai, tas ir ieteicams vairumā gadījumu.",
"Default User Role": "Noklusējuma lietotāja loma",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Dzēst",
@ -1675,6 +1674,7 @@
"Model can search the web for information": "Modelis var meklēt informāciju tīmeklī",
"Model Capabilities": "",
"Model created successfully!": "Modelis veiksmīgi izveidots!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Konstatēts modeļa failu sistēmas ceļš. Atjaunināšanai nepieciešams modeļa īsais nosaukums, nevar turpināt.",
"Model Filtering": "Modeļu filtrēšana",
"Model ID": "Modeļa ID",
@ -1757,6 +1757,7 @@
"New Webhook": "Jauns webhook",
"new-channel": "jauns-kanāls",
"Next message": "Nākamais ziņojums",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1958,6 +1959,7 @@
"Parameters": "Parametri",
"Parent message not found": "Vecākziņojums nav atrasts",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "Piedalieties kopienas līderu tabulās un novērtējumos! Apkopoto lietošanas statistiku sinhronizācija palīdz veicināt pētījumus un Open WebUI uzlabojumus. Jūsu privātums ir vissvarīgākais: ziņojumu saturs nekad netiek kopīgots.",
"Passthrough params": "",
"Password": "Parole",
"Password for the bind DN.": "",
"Passwords do not match.": "Paroles nesakrīt.",
@ -2046,6 +2048,7 @@
"Previous 30 days": "Iepriekšējās 30 dienas",
"Previous 7 days": "Iepriekšējās 7 dienas",
"Previous message": "Iepriekšējais ziņojums",
"Previous page": "",
"Private": "Privāts",
"Private conversation between selected users": "Privāta saruna starp izvēlētajiem lietotājiem",
"Production version updated": "",
@ -2417,6 +2420,7 @@
"Show Formatting Toolbar": "Rādīt formatēšanas rīkjoslu",
"Show image preview": "Rādīt attēla priekšskatījumu",
"Show Model": "Rādīt modeli",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "Rādīt īsceļus",
@ -2591,12 +2595,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Modeļa temperatūra. Temperatūras palielināšana liks modelim atbildēt radošāk.",
"Theme": "Tēma",
"There was an error syncing your stats. Please try again.": "Sinhronizējot jūsu statistiku, radās kļūda. Lūdzu, mēģiniet vēlreiz.",
"thinking, output_config": "",
"Thinking...": "Domā...",
"This action cannot be undone. Do you wish to continue?": "Šo darbību nevar atsaukt. Vai vēlaties turpināt?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Šis kanāls tika izveidots {{createdAt}}. Šis ir paša sākums {{channelName}} kanālam.",
"This chat won't appear in history and your messages will not be saved.": "Šī tērzēšana neparādīsies vēsturē un jūsu ziņojumi netiks saglabāti.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Tas nodrošina, ka jūsu vērtīgās sarunas tiek droši saglabātas jūsu aizmugursistēmas datubāzē. Paldies!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "Šī ir noklusējuma lietotāja atļauja un paliks iespējota.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Šī ir eksperimentāla funkcija, tā var nedarboties kā paredzēts un var tikt mainīta jebkurā laikā.",

View file

@ -120,7 +120,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Parameter Tambahan",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Melaraskan tetapan ini akan menggunakan perubahan secara universal kepada semua pengguna.",
"admin": "pentadbir",
"Admin": "Pentadbir",
"Admin Contact Email": "E-mel Pentadbir",
@ -531,6 +530,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "arahan",
"Command": "Arahan",
@ -711,7 +711,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Lalai kepada pengambilan tersegmen untuk pengekstrakan kandungan yang berfokus dan relevan, ini disyorkan untuk kebanyakan kes.",
"Default User Role": "Peranan Pengguna Lalai",
"Default webhook": "",
"Defaults": "Lalai",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Padam",
@ -1655,6 +1654,7 @@
"Model can search the web for information": "Model boleh mencari maklumat di web",
"Model Capabilities": "Keupayaan Model",
"Model created successfully!": "Model berjaya dibuat!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Laluan sistem fail model dikesan. Nama pendek model diperlukan untuk kemas kini, tidak boleh diteruskan.",
"Model Filtering": "Penapis Model",
"Model ID": "ID Model",
@ -1737,6 +1737,7 @@
"New Webhook": "Webhook Baharu",
"new-channel": "saluran-baru",
"Next message": "Mesej Seterusnya",
"Next page": "",
"Next run": "Pelaksanaan seterusnya",
"No access grants. Private to you.": "Tiada geran akses. Peribadi untuk anda.",
"No actions found": "",
@ -1938,6 +1939,7 @@
"Parameters": "Parameter",
"Parent message not found": "Mesej induk tidak ditemui",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "Sertai papan kedudukan komuniti dan penilaian! Menyegerakkan statistik penggunaan yang diagregat membantu mendorong penyelidikan dan penambahbaikan kepada Open WebUI. Privasi anda adalah yang terpenting: kandungan mesej tidak pernah dikongsi.",
"Passthrough params": "",
"Password": "Kata Laluan",
"Password for the bind DN.": "",
"Passwords do not match.": "Kata laluan tidak sepadan.",
@ -2026,6 +2028,7 @@
"Previous 30 days": "30 hari sebelumnya",
"Previous 7 days": "7 hari sebelumnya",
"Previous message": "Mesej sebelumnya",
"Previous page": "",
"Private": "Peribadi",
"Private conversation between selected users": "Perbualan peribadi antara pengguna terpilih",
"Production version updated": "Versi pengeluaran dikemas kini",
@ -2391,6 +2394,7 @@
"Show Formatting Toolbar": "Paparkan Bar Alatan Format",
"Show image preview": "Tunjukkan pratonton imej",
"Show Model": "Tunjukkan Model",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "Tunjukkan Pintasan",
@ -2563,12 +2567,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Suhu model. Meningkatkan suhu akan menyebabkan model menjawab dengan lebih kreatif.",
"Theme": "Tema",
"There was an error syncing your stats. Please try again.": "Terdapat ralat dalam menyegerakkan statistik anda. Sila cuba lagi.",
"thinking, output_config": "",
"Thinking...": "Berfikir...",
"This action cannot be undone. Do you wish to continue?": "Tindakan ini tidak boleh diubah semula kepada asal. Adakah anda ingin teruskan",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Saluran ini telah diwujudkan pada {{createdAt}}. Ini adalah permulaan saluran {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "Perbualan ini tidak akan dipaparkan dalam sejarah dan mesej anda tidak akan disimpan.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Ini akan memastikan bahawa perbualan berharga anda disimpan dengan selamat ke pangkalan data 'backend' anda. Terima kasih!",
"This feature is currently experimental and may not work as expected.": "Ciri ini sedang dalam peringkat eksperimental dan mungkin tidak berfungsi seperti yang dijangkakan.",
"This folder is empty": "Folder ini kosong",
"This is a default user permission and will remain enabled.": "Ini ialah kebenaran pengguna lalai dan akan tetap didayakan.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Ini adalah ciri percubaan, ia mungkin tidak berfungsi seperti yang diharapkan dan tertakluk kepada perubahan pada bila-bila masa.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Endring av disse innstillingene vil gjelde for alle brukere på tvers av systemet.",
"admin": "administrator",
"Admin": "Administrator",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Kommando",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "Standard brukerrolle",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Slett",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "Modellen er opprettet!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modellfilsystembane oppdaget. Kan ikke fortsette fordi modellens kortnavn er påkrevd for oppdatering.",
"Model Filtering": "Filtrering av modeller",
"Model ID": "Modell-ID",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "ny-kanal",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Passord",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2036,6 +2038,7 @@
"Previous 30 days": "Siste 30 dager",
"Previous 7 days": "Siste 7 dager",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "Tema",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Tenker ...",
"This action cannot be undone. Do you wish to continue?": "Denne handlingen kan ikke angres. Vil du fortsette?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dette sikrer at de verdifulle samtalene dine lagres sikkert i backend-databasen din. Takk!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Dette er en eksperimentell funksjon. Det er mulig den ikke fungerer som forventet, og den kan endres når som helst.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Aanvullende parameters",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Het aanpassen van deze instellingen zal universeel worden toegepast op alle gebruikers.",
"admin": "beheerder",
"Admin": "Beheerder",
"Admin Contact Email": "E-mailadres van beheerder",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "commando",
"Command": "Commando",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Standaard gesegmenteerd ophalen voor gerichte en relevante inhoudsextractie, dit wordt aanbevolen voor de meeste gevallen.",
"Default User Role": "Standaard gebruikersrol",
"Default webhook": "",
"Defaults": "Standaardwaarden",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Verwijderen",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "Model kan het web doorzoeken naar informatie",
"Model Capabilities": "Modelmogelijkheden",
"Model created successfully!": "Model succesvol gecreëerd",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model filesystem path gedetecteerd. Model shortname is vereist voor update, kan niet doorgaan.",
"Model Filtering": "Modelfiltratie",
"Model ID": "Model-ID",
@ -1747,6 +1747,7 @@
"New Webhook": "Nieuwe webhook",
"new-channel": "nieuw-kanaal",
"Next message": "Volgend bericht",
"Next page": "",
"Next run": "Volgende uitvoering",
"No access grants. Private to you.": "Geen toegangsrechten. Alleen privé voor jou.",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "Parameters",
"Parent message not found": "Bovenliggend bericht niet gevonden",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "Neem deel aan communityranglijsten en evaluaties! Het synchroniseren van geaggregeerde gebruiksstatistieken helpt onderzoek en verbeteringen aan Open WebUI te stimuleren. Je privacy staat voorop: er wordt nooit berichtinhoud gedeeld.",
"Passthrough params": "",
"Password": "Wachtwoord",
"Password for the bind DN.": "",
"Passwords do not match.": "Wachtwoorden komen niet overeen.",
@ -2036,6 +2038,7 @@
"Previous 30 days": "Afgelopen 30 dagen",
"Previous 7 days": "Afgelopen 7 dagen",
"Previous message": "Vorige bericht",
"Previous page": "",
"Private": "Privé",
"Private conversation between selected users": "Privégesprek tussen geselecteerde gebruikers",
"Production version updated": "Productieversie bijgewerkt",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "Opmaakwerkbalk tonen",
"Show image preview": "Afbeeldingsvoorvertoning tonen",
"Show Model": "Toon model",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "Sneltoetsen tonen",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "De temperatuur van het model. De temperatuur groter maken zal het model creatiever laten antwoorden.",
"Theme": "Thema",
"There was an error syncing your stats. Please try again.": "Er is een fout opgetreden bij het synchroniseren van je statistieken. Probeer het opnieuw.",
"thinking, output_config": "",
"Thinking...": "Aan het nadenken...",
"This action cannot be undone. Do you wish to continue?": "Deze actie kan niet ongedaan worden gemaakt. Wil je doorgaan?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Dit kanaal is aangemaakt op {{createdAt}}. Dit is het begin van het kanaal {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "Deze chat verschijnt niet in de geschiedenis en je berichten worden niet opgeslagen.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dit zorgt ervoor dat je waardevolle gesprekken veilig worden opgeslagen in je backend database. Dank je wel!",
"This feature is currently experimental and may not work as expected.": "Deze functie is momenteel experimenteel en werkt mogelijk niet zoals verwacht.",
"This folder is empty": "Deze map is leeg",
"This is a default user permission and will remain enabled.": "Dit is een standaardgebruikersrecht en blijft ingeschakeld.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Dit is een experimentele functie, het werkt mogelijk niet zoals verwacht en kan op elk moment worden gewijzigd.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "ਇਹ ਸੈਟਿੰਗਾਂ ਨੂੰ ਠੀਕ ਕਰਨ ਨਾਲ ਸਾਰੇ ਉਪਭੋਗਤਾਵਾਂ ਲਈ ਬਦਲਾਅ ਲਾਗੂ ਹੋਣਗੇ।",
"admin": "ਪ੍ਰਬੰਧਕ",
"Admin": "",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "ਕਮਾਂਡ",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "ਮੂਲ ਉਪਭੋਗਤਾ ਭੂਮਿਕਾ",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "ਮਿਟਾਓ",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "ਮਾਡਲ ਫਾਈਲਸਿਸਟਮ ਪੱਥ ਪਾਇਆ ਗਿਆ। ਅੱਪਡੇਟ ਲਈ ਮਾਡਲ ਸ਼ੌਰਟਨੇਮ ਦੀ ਲੋੜ ਹੈ, ਜਾਰੀ ਨਹੀਂ ਰੱਖ ਸਕਦੇ।",
"Model Filtering": "",
"Model ID": "ਮਾਡਲ ID",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "ਪਾਸਵਰਡ",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2036,6 +2038,7 @@
"Previous 30 days": "ਪਿਛਲੇ 30 ਦਿਨ",
"Previous 7 days": "ਪਿਛਲੇ 7 ਦਿਨ",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "ਥੀਮ",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "",
"This action cannot be undone. Do you wish to continue?": "",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "ਇਹ ਯਕੀਨੀ ਬਣਾਉਂਦਾ ਹੈ ਕਿ ਤੁਹਾਡੀਆਂ ਕੀਮਤੀ ਗੱਲਾਂ ਤੁਹਾਡੇ ਬੈਕਐਂਡ ਡਾਟਾਬੇਸ ਵਿੱਚ ਸੁਰੱਖਿਅਤ ਤੌਰ 'ਤੇ ਸੰਭਾਲੀਆਂ ਗਈਆਂ ਹਨ। ਧੰਨਵਾਦ!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",

View file

@ -141,7 +141,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Dodatkowe parametry",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Zmiana tych ustawień wpłynie na wszystkich użytkowników.",
"admin": "administrator",
"Admin": "Administrator",
"Admin Contact Email": "Adres e-mail administratora",
@ -552,6 +551,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "polecenie",
"Command": "Komenda",
@ -735,7 +735,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Domyślnie używa segmented retrieval dla lepszej precyzji. Zalecane w większości przypadków.",
"Default User Role": "Domyślna rola użytkownika",
"Default webhook": "",
"Defaults": "Domyślne",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Usuń",
@ -1685,6 +1684,7 @@
"Model can search the web for information": "Model może szukać informacji w sieci",
"Model Capabilities": "Możliwości modelu",
"Model created successfully!": "Model utworzony pomyślnie!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Wykryto ścieżkę systemową. Krótka nazwa modelu wymagana do aktualizacji.",
"Model Filtering": "Filtrowanie modeli",
"Model ID": "ID Modelu",
@ -1767,6 +1767,7 @@
"New Webhook": "Nowy webhook",
"new-channel": "nowy-kanal",
"Next message": "Następna wiadomość",
"Next page": "",
"Next run": "Następne uruchomienie",
"No access grants. Private to you.": "Brak przyznanych dostępów. Prywatne tylko dla Ciebie.",
"No actions found": "",
@ -1968,6 +1969,7 @@
"Parameters": "Parametry",
"Parent message not found": "Nie znaleziono wiadomości nadrzędnej",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "Weź udział w rankingach społeczności! Synchronizacja zagregowanych statystyk pomaga w rozwoju Open WebUI. Twoja prywatność jest najważniejsza: treść wiadomości nigdy nie jest udostępniana.",
"Passthrough params": "",
"Password": "Hasło",
"Password for the bind DN.": "",
"Passwords do not match.": "Hasła nie pasują do siebie.",
@ -2056,6 +2058,7 @@
"Previous 30 days": "Ostatnie 30 dni",
"Previous 7 days": "Ostatnie 7 dni",
"Previous message": "Poprzednia wiadomość",
"Previous page": "",
"Private": "Prywatny",
"Private conversation between selected users": "Prywatna rozmowa między wybranymi użytkownikami",
"Production version updated": "Wersja produkcyjna zaktualizowana",
@ -2430,6 +2433,7 @@
"Show Formatting Toolbar": "Pokaż pasek formatowania",
"Show image preview": "Pokaż podgląd obrazu",
"Show Model": "Pokaż model",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "Pokaż skróty",
@ -2605,12 +2609,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Temperatura modelu. Wyższa = bardziej kreatywne (losowe) odpowiedzi.",
"Theme": "Motyw",
"There was an error syncing your stats. Please try again.": "Wystąpił błąd podczas synchronizacji statystyk. Spróbuj ponownie.",
"thinking, output_config": "",
"Thinking...": "Myślę...",
"This action cannot be undone. Do you wish to continue?": "Tej akcji nie można cofnąć. Kontynuować?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Ten kanał utworzono {{createdAt}}. To początek kanału {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "Ten czat nie pojawi się w historii, a wiadomości nie zostaną zapisane.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "To zapewnia bezpieczny zapis rozmów w bazie danych. Dziękujemy!",
"This feature is currently experimental and may not work as expected.": "Ta funkcja jest obecnie eksperymentalna i może nie działać zgodnie z oczekiwaniami.",
"This folder is empty": "Ten folder jest pusty",
"This is a default user permission and will remain enabled.": "To domyślne uprawnienie i pozostanie włączone.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "To funkcja eksperymentalna, może nie działać poprawnie.",

View file

@ -134,7 +134,6 @@
"Additional JSON headers sent to the external document loader.": "Cabeçalhos JSON adicionais enviados ao carregador de documentos externo.",
"Additional Parameters": "Parâmetros adicionais",
"Adjust how quickly spoken responses are played.": "Ajuste a velocidade de reprodução das respostas faladas.",
"Adjusting these settings will apply changes universally to all users.": "Ajustar essas configurações aplicará mudanças para todos os usuários.",
"admin": "admin",
"Admin": "Admin",
"Admin Contact Email": "E-mail de contato do administrador",
@ -545,6 +544,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "Tipos MIME de áudio ou vídeo aceitos para upload, separados por vírgulas.",
"Comma-separated extensions MinerU should handle.": "Extensões que o MinerU deve processar, separadas por vírgulas.",
"Comma-separated group names": "Nomes de grupos separados por vírgula",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "Extensões de upload separadas por vírgulas. Deixe vazio para permitir todos os tipos de arquivo.",
"command": "comando",
"Command": "Comando",
@ -727,7 +727,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Use a recuperação segmentada como padrão para extração de conteúdo focado e relevante; isso é recomendado para a maioria dos casos.",
"Default User Role": "Padrão para novos usuários",
"Default webhook": "Webhook padrão",
"Defaults": "Padrões",
"Defines the behavior used for spoken conversations.": "Define o comportamento usado em conversas faladas.",
"Delegate focused work to parallel sub-agents": "Delegue trabalhos específicos a subagentes paralelos",
"Delete": "Excluir",
@ -1675,6 +1674,7 @@
"Model can search the web for information": "O modelo pode pesquisar informações na web",
"Model Capabilities": "Capacidades do Modelo",
"Model created successfully!": "Modelo criado com sucesso!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Caminho do sistema de arquivos do modelo detectado. Nome curto do modelo é necessário para atualização, não é possível continuar.",
"Model Filtering": "Filtragem de Modelos",
"Model ID": "ID do Modelo",
@ -1757,6 +1757,7 @@
"New Webhook": "Novo Webhook",
"new-channel": "novo-canal",
"Next message": "Próxima mensagem",
"Next page": "",
"Next run": "Próxima execução",
"No access grants. Private to you.": "Sem permissões de acesso. Privacidade exclusiva para você.",
"No actions found": "Nenhuma ação encontrada",
@ -1958,6 +1959,7 @@
"Parameters": "Parâmetros",
"Parent message not found": "Mensagem principal não encontrada",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "Participe dos rankings e avaliações da comunidade! A sincronização de estatísticas de uso agregadas ajuda a impulsionar pesquisas e melhorias no Open WebUI. Sua privacidade é fundamental: nenhum conteúdo de mensagem é compartilhado.",
"Passthrough params": "",
"Password": "Senha",
"Password for the bind DN.": "Senha do DN de vinculação.",
"Passwords do not match.": "As senhas não coincidem.",
@ -2046,6 +2048,7 @@
"Previous 30 days": "Últimos 30 dias",
"Previous 7 days": "Últimos 7 dias",
"Previous message": "Mensagem anterior",
"Previous page": "",
"Private": "Privado",
"Private conversation between selected users": "Conversa privada entre usuários selecionados",
"Production version updated": "Versão de produção atualizada",
@ -2417,6 +2420,7 @@
"Show Formatting Toolbar": "Mostrar barra de ferramentas de formatação",
"Show image preview": "Mostrar pré-visualização da imagem",
"Show Model": "Mostrar modelo",
"Show more": "",
"Show or hide custom generation parameters.": "Mostre ou oculte os parâmetros de geração personalizados.",
"Show or hide sensitive account secrets.": "Mostre ou oculte segredos confidenciais da conta.",
"Show Shortcuts": "Mostrar Atalhos",
@ -2591,12 +2595,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "A temperatura do modelo. Aumentar a temperatura fará com que o modelo responda de forma mais criativa.",
"Theme": "Tema",
"There was an error syncing your stats. Please try again.": "Ocorreu um erro ao sincronizar suas estatísticas. Tente novamente.",
"thinking, output_config": "",
"Thinking...": "Pensando...",
"This action cannot be undone. Do you wish to continue?": "Esta ação não pode ser desfeita. Você deseja continuar?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Este canal foi criado em {{createdAt}}. Este é o início do canal {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "Este chat não aparecerá no histórico e suas mensagens não serão salvas.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Isso garante que suas conversas valiosas sejam salvas com segurança no banco de dados do backend. Obrigado!",
"This feature is currently experimental and may not work as expected.": "Esta funcionalidade encontra-se atualmente em fase experimental e poderá não funcionar conforme o esperado.",
"This folder is empty": "Esta pasta está vazia",
"This is a default user permission and will remain enabled.": "Esta é uma permissão de usuário padrão e permanecerá ativada.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Esta é uma funcionalidade experimental, pode não funcionar como esperado e está sujeita a alterações a qualquer momento.",

View file

@ -134,7 +134,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Parâmetros Adicionais",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Ajustar essas configurações aplicará alterações universalmente a todos os utilizadores.",
"admin": "administrador",
"Admin": "Admin",
"Admin Contact Email": "Email de Contacto do Administrador",
@ -545,6 +544,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "comando",
"Command": "Comando",
@ -727,7 +727,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Predefinir para recuperação segmentada para extração de conteúdo focada e relevante, isso é recomendado para a maioria dos casos.",
"Default User Role": "Função de Utilizador Padrão",
"Default webhook": "",
"Defaults": "Predefinições",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Apagar",
@ -1675,6 +1674,7 @@
"Model can search the web for information": "O modelo pode pesquisar na web por informações",
"Model Capabilities": "Capacidades do Modelo",
"Model created successfully!": "Modelo criado com sucesso!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Caminho do sistema de ficheiros do modelo detectado. É necessário o nome curto do modelo para atualização, não é possível continuar.",
"Model Filtering": "Filtragem de Modelos",
"Model ID": "ID do modelo",
@ -1757,6 +1757,7 @@
"New Webhook": "Novo Webhook",
"new-channel": "novo-canal",
"Next message": "Próxima mensagem",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "Sem concessões de acesso. Privado para você.",
"No actions found": "",
@ -1958,6 +1959,7 @@
"Parameters": "Parâmetros",
"Parent message not found": "Mensagem pai não encontrada",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "Participe nos rankings e avaliações da comunidade! Sincronizar estatísticas de uso agregadas ajuda a impulsionar a pesquisa e melhorias no Open WebUI. Sua privacidade é primordial: nenhum conteúdo de mensagem é compartilhado.",
"Passthrough params": "",
"Password": "Senha",
"Password for the bind DN.": "",
"Passwords do not match.": "As palavras-passe não coincidem.",
@ -2046,6 +2048,7 @@
"Previous 30 days": "Últimos 30 dias",
"Previous 7 days": "Últimos 7 dias",
"Previous message": "Mensagem Anterior",
"Previous page": "",
"Private": "Privado",
"Private conversation between selected users": "Conversa privada entre utilizadores selecionados",
"Production version updated": "Versão de produção atualizada",
@ -2417,6 +2420,7 @@
"Show Formatting Toolbar": "Mostrar Barra de Formatação",
"Show image preview": "Mostrar pré-visualização de imagem",
"Show Model": "Mostrar Modelo",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "Mostrar Atalhos",
@ -2591,12 +2595,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "A temperatura do modelo. Aumentar a temperatura fará com que o modelo responda de forma mais criativa.",
"Theme": "Tema",
"There was an error syncing your stats. Please try again.": "Ocorreu um erro ao sincronizar suas estatísticas. Por favor, tente novamente.",
"thinking, output_config": "",
"Thinking...": "A pensar...",
"This action cannot be undone. Do you wish to continue?": "Esta ação não pode ser desfeita. Deseja continuar?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Este canal foi criado em {{createdAt}}. Este é o início do canal {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "Esta conversa não aparecerá no histórico e suas mensagens não serão salvas.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Isto garante que suas conversas valiosas sejam guardadas com segurança na sua base de dados de backend. Obrigado!",
"This feature is currently experimental and may not work as expected.": "Este recurso é atualmente experimental e pode não funcionar conforme o esperado.",
"This folder is empty": "Esta pasta está vazia",
"This is a default user permission and will remain enabled.": "Esta é uma permissão de utilizador padrão e permanecerá ativada.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Isto é um recurso experimental, pode não funcionar conforme o esperado e está sujeito a alterações a qualquer momento.",

View file

@ -134,7 +134,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Ajustarea acestor setări va aplica modificările universal pentru toți utilizatorii.",
"admin": "administrator",
"Admin": "Administrator",
"Admin Contact Email": "",
@ -545,6 +544,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Comandă",
@ -727,7 +727,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "Rolul Implicit al Utilizatorului",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Șterge",
@ -1675,6 +1674,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "Modelul a fost creat cu succes!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Calea sistemului de fișiere al modelului detectată. Este necesar numele scurt al modelului pentru actualizare, nu se poate continua.",
"Model Filtering": "",
"Model ID": "ID Model",
@ -1757,6 +1757,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1958,6 +1959,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Parolă",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2046,6 +2048,7 @@
"Previous 30 days": "Ultimele 30 de zile",
"Previous 7 days": "Ultimele 7 zile",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2417,6 +2420,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2591,12 +2595,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "Temă",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Gândește...",
"This action cannot be undone. Do you wish to continue?": "Această acțiune nu poate fi anulată. Doriți să continuați?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Acest lucru asigură că conversațiile dvs. valoroase sunt salvate în siguranță în baza de date a backend-ului dvs. Mulțumim!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Aceasta este o funcție experimentală, poate să nu funcționeze așa cum vă așteptați și este supusă schimbării în orice moment.",

View file

@ -141,7 +141,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Дополнительные параметры",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Изменения в этих настройках будут применены для всех пользователей.",
"admin": "админ",
"Admin": "Админ",
"Admin Contact Email": "Адрес электронной почты администратора",
@ -552,6 +551,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "команда",
"Command": "Команда",
@ -735,7 +735,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "По умолчанию используется сегментированный поиск для целенаправленного извлечения релевантного контента, что рекомендуется в большинстве случаев.",
"Default User Role": "Роль пользователя по умолчанию",
"Default webhook": "",
"Defaults": "По умолчанию",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Удалить",
@ -1685,6 +1684,7 @@
"Model can search the web for information": "Модель может искать информацию в Интернете",
"Model Capabilities": "Возможности модели",
"Model created successfully!": "Модель успешно создана!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Обнаружен путь к файловой системе модели. Для обновления требуется краткое имя модели, не удается продолжить.",
"Model Filtering": "Фильтрация Моделей",
"Model ID": "ID Модели",
@ -1767,6 +1767,7 @@
"New Webhook": "Новый вебхук",
"new-channel": "new-channel",
"Next message": "Следующее сообщение",
"Next page": "",
"Next run": "Следующий запуск",
"No access grants. Private to you.": "Нет прав доступа. Доступно только вам.",
"No actions found": "",
@ -1968,6 +1969,7 @@
"Parameters": "Параметры",
"Parent message not found": "Родительское сообщение не найдено",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "Участвуйте в рейтингах и оценках сообщества! Синхронизация агрегированной статистики помогает развитию Open WebUI. Ваша конфиденциальность приоритетна: содержимое сообщений никогда не передаётся.",
"Passthrough params": "",
"Password": "Пароль",
"Password for the bind DN.": "",
"Passwords do not match.": "Пароли не совпадают.",
@ -2056,6 +2058,7 @@
"Previous 30 days": "Предыдущие 30 дней",
"Previous 7 days": "Предыдущие 7 дней",
"Previous message": "Предыдущее сообщение",
"Previous page": "",
"Private": "Частное",
"Private conversation between selected users": "Личная беседа между выбранными пользователями",
"Production version updated": "Рабочая версия обновлена",
@ -2430,6 +2433,7 @@
"Show Formatting Toolbar": "Показать панель форматирования",
"Show image preview": "Показать предварительный просмотр изображения",
"Show Model": "Показать модель",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "Показать горячие клавиши",
@ -2605,12 +2609,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Температура модели. При повышении температуры модель будет отвечать более творчески.",
"Theme": "Тема",
"There was an error syncing your stats. Please try again.": "Произошла ошибка при синхронизации статистики. Попробуйте снова.",
"thinking, output_config": "",
"Thinking...": "Думаю...",
"This action cannot be undone. Do you wish to continue?": "Это действие нельзя отменить. Вы хотите продолжить?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Этот канал был создан {{createdAt}}. Это самое начало канала {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "Этот чат не появится в истории, и ваши сообщения не будут сохранены.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Это обеспечивает сохранение ваших ценных разговоров в безопасной базе данных на вашем сервере. Спасибо!",
"This feature is currently experimental and may not work as expected.": "Эта функция экспериментальна и может работать не так, как ожидается.",
"This folder is empty": "Эта папка пуста",
"This is a default user permission and will remain enabled.": "Это разрешение по умолчанию, оно остаётся включённым.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Это экспериментальная функция, она может работать не так, как ожидалось, и может быть изменена в любое время.",

View file

@ -141,7 +141,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Úprava týchto nastavení sa prejaví univerzálne u všetkých užívateľov.",
"admin": "admin",
"Admin": "Admin",
"Admin Contact Email": "",
@ -552,6 +551,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Príkaz",
@ -735,7 +735,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "Predvolená rola užívateľa",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Odstrániť",
@ -1685,6 +1684,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "Model bol úspešne vytvorený!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Zistená cesta v súborovom systéme. Je vyžadovaný krátky názov modelu pre aktualizáciu, nemožno pokračovať.",
"Model Filtering": "",
"Model ID": "ID modelu",
@ -1767,6 +1767,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1968,6 +1969,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Heslo",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2056,6 +2058,7 @@
"Previous 30 days": "Predchádzajúcich 30 dní",
"Previous 7 days": "Predchádzajúcich 7 dní",
"Previous message": "",
"Previous page": "",
"Private": "Súkromné",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2430,6 +2433,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2605,12 +2609,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "Téma",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Premýšľam...",
"This action cannot be undone. Do you wish to continue?": "Túto akciu nie je možné vrátiť späť. Prajete si pokračovať?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Týmto je zaistené, že vaše cenné konverzácie sú bezpečne uložené vo vašej backendovej databáze. Ďakujeme!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Toto je experimentálna funkcia, nemusí fungovať podľa očakávania a môže byť kedykoľvek zmenená.",

View file

@ -134,7 +134,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Прилагођавање ових подешавања ће применити промене на све кориснике.",
"admin": "админ",
"Admin": "Админ",
"Admin Contact Email": "",
@ -545,6 +544,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Наредба",
@ -727,7 +727,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "Подразумевана улога корисника",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Обриши",
@ -1675,6 +1674,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Откривена путања система датотека модела. За ажурирање је потребан кратак назив модела, не може се наставити.",
"Model Filtering": "",
"Model ID": "ИД модела",
@ -1757,6 +1757,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1958,6 +1959,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Лозинка",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2046,6 +2048,7 @@
"Previous 30 days": "Претходних 30 дана",
"Previous 7 days": "Претходних 7 дана",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2417,6 +2420,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2591,12 +2595,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "Тема",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Размишљам...",
"This action cannot be undone. Do you wish to continue?": "Ова радња се не може опозвати. Да ли желите наставити?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Ово осигурава да су ваши вредни разговори безбедно сачувани у вашој бекенд бази података. Хвала вам!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Ytterligare parametrar",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Justering av de här inställningar kommer att tillämpa ändringar universellt för alla användare.",
"admin": "administratör",
"Admin": "Admin",
"Admin Contact Email": "E-post för administratörskontakt",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "kommando",
"Command": "Kommando",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Standard till segmenterad hämtning för fokuserad och relevant innehållsextrahering, det här rekommenderas för de flesta fall.",
"Default User Role": "Standardanvändarroll",
"Default webhook": "",
"Defaults": "Standardinställningar",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Radera",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "Modellen kan söka på webben efter information",
"Model Capabilities": "Modellens kapacitet",
"Model created successfully!": "Modellen har skapats!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Modellens filsystemväg hittades. Modellens kortnamn krävs för uppdatering, kan inte fortsätta.",
"Model Filtering": "Modellfiltrering",
"Model ID": "Modell-ID",
@ -1747,6 +1747,7 @@
"New Webhook": "Ny webbhook",
"new-channel": "ny-kanal",
"Next message": "Nästa meddelande",
"Next page": "",
"Next run": "Nästa körning",
"No access grants. Private to you.": "Ingen tillgång beviljas. Privat för dig.",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "Parametrar",
"Parent message not found": "Föräldrameddelandet hittades inte",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "Delta i community leaderboards och utvärderingar! Synkronisering av aggregerad användningsstatistik hjälper till att driva forskning och förbättringar av Open WebUI. Din integritet är av yttersta vikt: inget meddelandeinnehåll delas någonsin.",
"Passthrough params": "",
"Password": "Lösenord",
"Password for the bind DN.": "",
"Passwords do not match.": "Lösenorden matchar inte.",
@ -2036,6 +2038,7 @@
"Previous 30 days": "Föregående 30 dagar",
"Previous 7 days": "Föregående 7 dagar",
"Previous message": "Föregående meddelande",
"Previous page": "",
"Private": "Privat",
"Private conversation between selected users": "Privat konversation mellan utvalda användare",
"Production version updated": "Produktionsversionen uppdaterad",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "Visa verktygsfält för textformatering",
"Show image preview": "Visa förhandsvisning av bild",
"Show Model": "Visa modell",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "Visa genvägar",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Modellens temperatur. Att öka temperaturen gör att modellen svarar mer kreativt.",
"Theme": "Tema",
"There was an error syncing your stats. Please try again.": "Det uppstod ett fel vid synkroniseringen av din statistik. försök igen.",
"thinking, output_config": "",
"Thinking...": "Tänker...",
"This action cannot be undone. Do you wish to continue?": "Den här åtgärd kan inte ångras. Vill du fortsätta?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Den här kanalen skapades den {{createdAt}}. Det här är den allra första början av kanalen {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "Den här chatten visas inte i historiken och dina meddelanden sparas inte.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Det här säkerställer att dina värdefulla samtal sparas säkert till din backend-databas. Tack!",
"This feature is currently experimental and may not work as expected.": "Den här funktionen är för närvarande experimentell och kanske inte fungerar som förväntat.",
"This folder is empty": "Den här mapp är tom",
"This is a default user permission and will remain enabled.": "Det här är en standardanvändarbehörighet och kommer att förbli aktiv.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Det här är en experimentell funktion som kanske inte fungerar som förväntat och som kan komma att ändras när som helst.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "கூடுதல் அளவுருக்கள்",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "இந்த அமைப்புகளைச் சரிசெய்வது எல்லாப் பயனர்களுக்கும் உலகளாவிய மாற்றங்களைப் பயன்படுத்தும்.",
"admin": "நிர்வாகி",
"Admin": "நிர்வாகி",
"Admin Contact Email": "நிர்வாகி தொடர்பு மின்னஞ்சல்",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "கட்டளை",
"Command": "கட்டளை",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "கவனம் செலுத்திய மற்றும் தொடர்புடைய உள்ளடக்கத்தைப் பிரித்தெடுப்பதற்காக பிரித்தெடுக்கப்பட்ட மீட்டெடுப்புக்கு இயல்புநிலை, இது பெரும்பாலான சந்தர்ப்பங்களில் பரிந்துரைக்கப்படுகிறது.",
"Default User Role": "இயல்புநிலை பயனர் பங்கு",
"Default webhook": "",
"Defaults": "இயல்புநிலைகள்",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "நீக்கு",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "மாடல் தகவல்களை இணையத்தில் தேடலாம்",
"Model Capabilities": "மாதிரி திறன்கள்",
"Model created successfully!": "மாடல் உருவாக்கப்பட்டது!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "மாதிரி கோப்பு முறைமை பாதை கண்டறியப்பட்டது. புதுப்பித்தலுக்கு மாதிரி சுருக்கப்பெயர் தேவை, தொடர முடியாது.",
"Model Filtering": "மாதிரி வடிகட்டுதல்",
"Model ID": "மாதிரி ID",
@ -1747,6 +1747,7 @@
"New Webhook": "புதிய Webhook",
"new-channel": "புதிய சேனல்",
"Next message": "அடுத்த செய்தி",
"Next page": "",
"Next run": "அடுத்த இயக்கம்",
"No access grants. Private to you.": "அணுகல் மானியங்கள் இல்லை. உங்களுக்கு தனிப்பட்டது.",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "அளவுருக்கள்",
"Parent message not found": "பெற்றோர் செய்தி கிடைக்கவில்லை",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "சமூக லீடர்போர்டுகள் மற்றும் மதிப்பீடுகளில் பங்கேற்கவும்! ஒருங்கிணைந்த பயன்பாட்டு புள்ளிவிவரங்களை ஒத்திசைப்பது, Open WebUIக்கு ஆராய்ச்சி மற்றும் மேம்பாடுகளை இயக்க உதவுகிறது. உங்கள் தனியுரிமை மிக முக்கியமானது: எந்த செய்தி உள்ளடக்கமும் பகிரப்படவில்லை.",
"Passthrough params": "",
"Password": "கடவுச்சொல்",
"Password for the bind DN.": "",
"Passwords do not match.": "கடவுச்சொற்கள் பொருந்தவில்லை.",
@ -2036,6 +2038,7 @@
"Previous 30 days": "முந்தைய 30 நாட்கள்",
"Previous 7 days": "முந்தைய 7 நாட்கள்",
"Previous message": "முந்தைய செய்தி",
"Previous page": "",
"Private": "தனியார்",
"Private conversation between selected users": "தேர்ந்தெடுக்கப்பட்ட பயனர்களிடையே தனிப்பட்ட உரையாடல்",
"Production version updated": "தயாரிப்பு பதிப்பு புதுப்பிக்கப்பட்டது",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "வடிவமைத்தல் கருவிப்பட்டியைக் காட்டு",
"Show image preview": "படத்தின் முன்னோட்டத்தைக் காட்டு",
"Show Model": "மாதிரியைக் காட்டு",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "குறுக்குவழிகளைக் காட்டு",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "மாதிரியின் வெப்பநிலை. வெப்பநிலையை அதிகரிப்பது மாதிரியை இன்னும் ஆக்கப்பூர்வமாக பதிலளிக்கும்.",
"Theme": "தீம்",
"There was an error syncing your stats. Please try again.": "உங்கள் புள்ளிவிவரங்களை ஒத்திசைப்பதில் பிழை. மீண்டும் முயற்சிக்கவும்.",
"thinking, output_config": "",
"Thinking...": "யோசிக்கிறது...",
"This action cannot be undone. Do you wish to continue?": "இந்தச் செயலைச் செயல்தவிர்க்க முடியாது. நீங்கள் தொடர விரும்புகிறீர்களா?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "இந்த சேனல் {{createdAt}} இல் உருவாக்கப்பட்டது. இது {{channelName}} சேனலின் ஆரம்பம்.",
"This chat won't appear in history and your messages will not be saved.": "இந்த அரட்டை வரலாற்றில் தோன்றாது மற்றும் உங்கள் செய்திகள் சேமிக்கப்படாது.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "உங்கள் மதிப்புமிக்க உரையாடல்கள் உங்கள் பின்தளத்தில் தரவுத்தளத்தில் பாதுகாப்பாகச் சேமிக்கப்படுவதை இது உறுதி செய்கிறது. நன்றி!",
"This feature is currently experimental and may not work as expected.": "இந்த அம்சம் தற்போது பரிசோதனையில் உள்ளது மற்றும் எதிர்பார்த்தபடி செயல்படாமல் போகலாம்.",
"This folder is empty": "இந்தக் கோப்புறை காலியாக உள்ளது",
"This is a default user permission and will remain enabled.": "இது இயல்புநிலை பயனர் அனுமதி மற்றும் இயக்கப்பட்டிருக்கும்.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "இது ஒரு சோதனை அம்சமாகும், இது எதிர்பார்த்தபடி செயல்படாமல் இருக்கலாம் மற்றும் எந்த நேரத்திலும் மாற்றத்திற்கு உட்பட்டது.",

View file

@ -120,7 +120,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "พารามิเตอร์เพิ่มเติม",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "การปรับการตั้งค่าเหล่านี้จะมีผลกับผู้ใช้ทุกคนทั่วทั้งระบบ",
"admin": "ผู้ดูแลระบบ",
"Admin": "ผู้ดูแลระบบ",
"Admin Contact Email": "อีเมลผู้ดูแลระบบ",
@ -531,6 +530,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "คำสั่ง",
@ -711,7 +711,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "กำหนดค่าเริ่มต้นให้ใช้การดึงข้อมูลแบบแบ่งส่วนเพื่อการดึงเนื้อหาที่มีโฟกัสและเกี่ยวข้อง แนะนำให้ใช้ตัวเลือกนี้ในกรณีส่วนใหญ่",
"Default User Role": "บทบาทผู้ใช้เริ่มต้น",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "ลบ",
@ -1655,6 +1654,7 @@
"Model can search the web for information": "โมเดลสามารถค้นหาข้อมูลจากเว็บได้",
"Model Capabilities": "",
"Model created successfully!": "สร้างโมเดลสำเร็จ!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "ตรวจพบเส้นทางระบบไฟล์ของโมเดล ต้องระบุชื่อย่อของโมเดลสำหรับการอัปเดต ไม่สามารถดำเนินการต่อได้",
"Model Filtering": "การกรองโมเดล",
"Model ID": "รหัสโมเดล",
@ -1737,6 +1737,7 @@
"New Webhook": "",
"new-channel": "ช่องใหม่",
"Next message": "ข้อความถัดไป",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1938,6 +1939,7 @@
"Parameters": "พารามิเตอร์",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "รหัสผ่าน",
"Password for the bind DN.": "",
"Passwords do not match.": "รหัสผ่านไม่ตรงกัน",
@ -2026,6 +2028,7 @@
"Previous 30 days": "30 วันที่ผ่านมา",
"Previous 7 days": "7 วันที่ผ่านมา",
"Previous message": "ข้อความก่อนหน้า",
"Previous page": "",
"Private": "ส่วนตัว",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2391,6 +2394,7 @@
"Show Formatting Toolbar": "แสดงแถบเครื่องมือการจัดรูปแบบ",
"Show image preview": "แสดงตัวอย่างรูปภาพ",
"Show Model": "แสดงโมเดล",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "แสดงทางลัด",
@ -2563,12 +2567,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Temperature ของโมเดล การเพิ่มค่า Temperature จะทำให้โมเดลตอบอย่างสร้างสรรค์มากขึ้น",
"Theme": "ธีม",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "กำลังคิด...",
"This action cannot be undone. Do you wish to continue?": "การกระทำนี้ไม่สามารถย้อนกลับได้ คุณต้องการดำเนินการต่อหรือไม่?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "สร้างช่องนี้เมื่อ {{createdAt}} นี่คือจุดเริ่มต้นของช่อง {{channelName}}",
"This chat won't appear in history and your messages will not be saved.": "การแชทนี้จะไม่ปรากฏในประวัติ และข้อความของคุณจะไม่ถูกบันทึก",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "สิ่งนี้ช่วยให้มั่นใจได้ว่าบทสนทนาที่สำคัญของคุณจะถูกบันทึกอย่างปลอดภัยในฐานข้อมูล Backend ของคุณ ขอบคุณ!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "นี่คือสิทธิ์ของผู้ใช้เริ่มต้นและจะถูกเปิดใช้งานไว้เสมอ",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "นี่เป็นฟีเจอร์ทดลอง อาจไม่ทำงานตามที่คาดไว้และอาจมีการเปลี่ยนแปลงได้ตลอดเวลา",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Bu sazlamalary düzetmek ähli ulanyjylara birmeňzeş üýtgeşmeler girizer.",
"admin": "admin",
"Admin": "",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Buýruk",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Öçür",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "",
"Model Filtering": "",
"Model ID": "",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "Parametrler",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Parol",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2036,6 +2038,7 @@
"Previous 30 days": "",
"Previous 7 days": "",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "Modeli Görkez",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "",
"This action cannot be undone. Do you wish to continue?": "",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "Ek Parametreler",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Bu ayarların yapılması, değişiklikleri tüm kullanıcılara evrensel olarak uygulayacaktır.",
"admin": "yönetici",
"Admin": "Yönetici",
"Admin Contact Email": "Yönetici İletişim E-postası",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "komut",
"Command": "Komut",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Odaklanmış ve ilgili içerik çıkarımı için varsayılan olarak bölümlenmiş alma kullanılır, çoğu durum için bu önerilir.",
"Default User Role": "Varsayılan Kullanıcı Rolü",
"Default webhook": "",
"Defaults": "Varsayılanlar",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Sil",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "Model bilgileri aramak için web'de arama yapabilir",
"Model Capabilities": "Model Yetenekleri",
"Model created successfully!": "Model başarıyla oluşturuldu!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model dosya sistemi yolu algılandı. Güncelleme için model kısa adı gerekli, devam edilemiyor.",
"Model Filtering": "Model Filtreleme",
"Model ID": "Model ID",
@ -1747,6 +1747,7 @@
"New Webhook": "Yeni Web Kancası",
"new-channel": "yeni-kanal",
"Next message": "Sonraki mesaj",
"Next page": "",
"Next run": "Sonraki çalıştırma",
"No access grants. Private to you.": "Erişim izni yok. Size özel.",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "Parametreler",
"Parent message not found": "Üst mesaj bulunamadı",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "Topluluk lider tablolarına ve değerlendirmelerine katılın! Toplu kullanım istatistiklerini eşitlemek, Open WebUI'nin araştırmasına ve iyileştirilmesine yardımcı olur. Gizliliğiniz her şeyden önemlidir: hiçbir zaman mesaj içeriği paylaşılmaz.",
"Passthrough params": "",
"Password": "Parola",
"Password for the bind DN.": "",
"Passwords do not match.": "Parolalar eşleşmiyor.",
@ -2036,6 +2038,7 @@
"Previous 30 days": "Önceki 30 gün",
"Previous 7 days": "Önceki 7 gün",
"Previous message": "Önceki mesaj",
"Previous page": "",
"Private": "Gizli",
"Private conversation between selected users": "Seçili kullanıcılar arasında özel konuşma",
"Production version updated": "Üretim sürümü güncellendi",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "Biçimlendirme Araç Çubuğunu Göster",
"Show image preview": "Görsel önizlemesini göster",
"Show Model": "Modeli Göster",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "Kısayolları Göster",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Modelin sıcaklığı. Sıcaklığı artırmak, modelin daha yaratıcı yanıt vermesini sağlar.",
"Theme": "Tema",
"There was an error syncing your stats. Please try again.": "İstatistikleriniz eşitlenirken bir hata oluştu. Lütfen tekrar deneyin.",
"thinking, output_config": "",
"Thinking...": "Düşünüyor...",
"This action cannot be undone. Do you wish to continue?": "Bu eylem geri alınamaz. Devam etmek istiyor musunuz?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Bu kanal {{createdAt}} tarihinde oluşturuldu. Bu, {{channelName}} kanalının en başıdır.",
"This chat won't appear in history and your messages will not be saved.": "Bu sohbet geçmişte görünmeyecek ve mesajlarınız kaydedilmeyecek.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Bu, önemli konuşmalarınızın güvenli bir şekilde arkayüz veritabanınıza kaydedildiğini garantiler. Teşekkür ederiz!",
"This feature is currently experimental and may not work as expected.": "Bu özellik şu anda deneyseldir ve beklendiği gibi çalışmayabilir.",
"This folder is empty": "Bu klasör boş",
"This is a default user permission and will remain enabled.": "Bu, varsayılan bir kullanıcı iznidir ve etkin kalacaktır.",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Bu deneysel bir özelliktir, beklendiği gibi çalışmayabilir ve her an değişiklik yapılabilir.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "بۇ تەڭشەكتىكى ئۆزگەرتىشلەر بارلىق ئىشلەتكۈچىلەرگە قوللىنىلىدۇ.",
"admin": "باشقۇرغۇچى",
"Admin": "باشقۇرغۇچى",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "بۇيرۇق",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "تېخىمۇ مۇناسىپ ۋە مۇھىم مەزمۇن چىقىرىش ئۈچۈن بۆلەكلىك قايتۇرۇش كۆڭۈلدىكى قىلىنغان، كۆپىنچە ئەھۋاللاردا تەۋسىيە قىلىنىدۇ.",
"Default User Role": "كۆڭۈلدىكى ئىشلەتكۈچى رولى",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "ئۆچۈرۈش",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "مودېل توردا ئۇچۇر ئىزدەيدۇ",
"Model Capabilities": "",
"Model created successfully!": "مودېل مۇۋەپپەقىيەتلىك قۇرۇلدى!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "مودېل ھۆججەت ساندىكى يول بايقالدى. يېڭىلاش ئۈچۈن مودېل قىسقا نامى زۆرۈر، داۋام قىلغىلى بولمايدۇ.",
"Model Filtering": "مودېل سۈزگۈچ",
"Model ID": "مودېل ID",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "يېڭى-قانال",
"Next message": "كېيىنكى ئۇچۇر",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "پارامېتىرلار",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "پارول",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2036,6 +2038,7 @@
"Previous 30 days": "ئالدىنقى 30 كۈن",
"Previous 7 days": "ئالدىنقى 7 كۈن",
"Previous message": "ئالدىنقى ئۇچۇر",
"Previous page": "",
"Private": "شەخسىي",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "مودېل كۆرسىتىش",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "مودېل تېمپېراتۇراسى. تېمپېراتۇرا ئاشسىلا يېڭىلىق كۈچى يۇقىرى بولىدۇ.",
"Theme": "ئۈسلۇب",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "ئويلاۋاتىدۇ...",
"This action cannot be undone. Do you wish to continue?": "بۇ ھەرىكەت ئەسلىگە كەلتۈرگىلى بولمايدۇ. داۋاملاشامسىز؟",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "بۇ قانال {{createdAt}} قۇرۇلغان. بۇ {{channelName}} قانالىنىڭ باشلىنىشى.",
"This chat won't appear in history and your messages will not be saved.": "بۇ سۆھبەت تارىختا كۆرۈلمەيدۇ، ئۇچۇرلىرىڭىز ساقلانمايدۇ.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "بۇ باھالىق سۆھبەتلىرىڭىز ئارقا تەرەپ سانلىقىدا بىخەتەر ساقلىنىشىغا كاپالەتلىك قىلىدۇ. رەھمەت!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "بۇ تاجرىبىلىك ئىقتىدار، ناتوقرا ئىشلەش ياكى خالىغان ۋاقىتتا ئۆزگىرىشى مۇمكىن.",

View file

@ -141,7 +141,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Зміни в цих налаштуваннях будуть застосовані для всіх користувачів.",
"admin": "адмін",
"Admin": "Адмін",
"Admin Contact Email": "",
@ -552,6 +551,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Команда",
@ -735,7 +735,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "За замовчуванням використовувати сегментований пошук для зосередженого та релевантного вилучення контенту, це рекомендується у більшості випадків.",
"Default User Role": "Роль користувача за замовчуванням",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Видалити",
@ -1685,6 +1684,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "Модель створено успішно!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Виявлено шлях до файлової системи моделі. Для оновлення потрібно вказати коротке ім'я моделі, не вдасться продовжити.",
"Model Filtering": "Фільтрація моделей",
"Model ID": "ID моделі",
@ -1767,6 +1767,7 @@
"New Webhook": "",
"new-channel": "новий-канал",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1968,6 +1969,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Пароль",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2056,6 +2058,7 @@
"Previous 30 days": "Попередні 30 днів",
"Previous 7 days": "Попередні 7 днів",
"Previous message": "",
"Previous page": "",
"Private": "Приватний",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2430,6 +2433,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "Показати модель",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2605,12 +2609,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Температура моделі. Збільшення температури зробить відповіді моделі більш креативними.",
"Theme": "Тема",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Думаю...",
"This action cannot be undone. Do you wish to continue?": "Цю дію не можна скасувати. Ви бажаєте продовжити?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Цей канал був створений {{createdAt}}. Це самий початок каналу {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Це забезпечує збереження ваших цінних розмов у безпечному бекенд-сховищі. Дякуємо!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Це експериментальна функція, вона може працювати не так, як очікувалося, і може бути змінена в будь-який час.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "ان سیٹنگز کو ایڈجسٹ کرنے سے تمام صارفین کے لئے تبدیلیاں یکساں طور پر نافذ ہوں گی",
"admin": "ایڈمن",
"Admin": "ایڈمن",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "کمانڈ",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "",
"Default User Role": "ڈیفالٹ صارف کا کردار",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "حذف کریں",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "ماڈل کامیابی سے تیار کر دیا گیا!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "ماڈل فائل سسٹم کا راستہ مل گیا ماڈل کا مختصر نام اپڈیٹ کے لیے ضروری ہے، جاری نہیں رہ سکتا",
"Model Filtering": "",
"Model ID": "ماڈل آئی ڈی",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "پاس ورڈ",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2036,6 +2038,7 @@
"Previous 30 days": "پچھلے 30 دن",
"Previous 7 days": "پچھلے 7 دن",
"Previous message": "",
"Previous page": "",
"Private": "",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "",
"Theme": "تھیم",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "سوچ رہا ہے...",
"This action cannot be undone. Do you wish to continue?": "یہ عمل واپس نہیں کیا جا سکتا کیا آپ جاری رکھنا چاہتے ہیں؟",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "یہ یقینی بناتا ہے کہ آپ کی قیمتی گفتگو محفوظ طریقے سے آپ کے بیک اینڈ ڈیٹا بیس میں محفوظ کی گئی ہیں شکریہ!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "یہ ایک تجرباتی خصوصیت ہے، یہ متوقع طور پر کام نہ کر سکتی ہو اور کسی بھی وقت تبدیل کی جا سکتی ہے",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Ушбу созламаларни ўзгартириш барча фойдаланувчиларга универсал тарзда қўлланилади.",
"admin": "админ",
"Admin": "Админ",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Буйруқ",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Фокусланган ва тегишли контентни ажратиб олиш учун бирламчи сегментланган қидириш, бу кўп ҳолларда тавсия этилади.",
"Default User Role": "Стандарт фойдаланувчи роли",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Ўчириш",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "Модел маълумот учун Интернетда қидириши мумкин",
"Model Capabilities": "",
"Model created successfully!": "Модел муваффақиятли яратилди!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Модел файл тизими йўли аниқланди. Янгилаш учун модел қисқа номи талаб қилинади, давом эттириб бўлмайди.",
"Model Filtering": "Моделни филтрлаш",
"Model ID": "Модел ИД",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "янги канал",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "Параметрлар",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Парол",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2036,6 +2038,7 @@
"Previous 30 days": "Олдинги 30 кун",
"Previous 7 days": "Олдинги 7 кун",
"Previous message": "",
"Previous page": "",
"Private": "Шахсий",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "Моделни кўрсатиш",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Моделдаги ҳарорат. Ҳароратни ошириш моделни янада ижодий жавоб беришга мажбур қилади.",
"Theme": "Мавзу",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Ўйлаш...",
"This action cannot be undone. Do you wish to continue?": "Бу амални ортга қайтариб бўлмайди. Давом этишни хоҳлайсизми?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Бу канал {{cреатедАт}} да яратилган. Бу {{чаннелНаме}} каналининг бошланиши.",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Бу сизнинг қимматли суҳбатларингиз маълумотлар базасига хавфсиз тарзда сақланишини таъминлайди. Раҳмат!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Бу экспериментал хусусият бўлиб, у кутилганидек ишламаслиги ва исталган вақтда ўзгариши мумкин.",

View file

@ -127,7 +127,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Ushbu sozlamalarni o'zgartirish barcha foydalanuvchilarga universal tarzda qo'llaniladi.",
"admin": "admin",
"Admin": "Admin",
"Admin Contact Email": "",
@ -538,6 +537,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Buyruq",
@ -719,7 +719,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Fokuslangan va tegishli kontentni ajratib olish uchun birlamchi segmentlangan qidirish, bu koʻp hollarda tavsiya etiladi.",
"Default User Role": "Odatiy foydalanuvchi roli",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Oʻchirish",
@ -1665,6 +1664,7 @@
"Model can search the web for information": "Model ma'lumot uchun Internetda qidirishi mumkin",
"Model Capabilities": "",
"Model created successfully!": "Model muvaffaqiyatli yaratildi!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model fayl tizimi yoʻli aniqlandi. Yangilash uchun model qisqa nomi talab qilinadi, davom ettirib bolmaydi.",
"Model Filtering": "Modelni filtrlash",
"Model ID": "Model ID",
@ -1747,6 +1747,7 @@
"New Webhook": "",
"new-channel": "yangi kanal",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1948,6 +1949,7 @@
"Parameters": "Parametrlar",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Parol",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2036,6 +2038,7 @@
"Previous 30 days": "Oldingi 30 kun",
"Previous 7 days": "Oldingi 7 kun",
"Previous message": "",
"Previous page": "",
"Private": "Shaxsiy",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2404,6 +2407,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "Modelni ko'rsatish",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2577,12 +2581,12 @@
"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.",
"Theme": "Mavzu",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "O'ylash...",
"This action cannot be undone. Do you wish to continue?": "Bu amalni ortga qaytarib bolmaydi. Davom etishni xohlaysizmi?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Bu kanal {{createdAt}} da yaratilgan. Bu {{channelName}} kanalining boshlanishi.",
"This chat won't appear in history and your messages will not be saved.": "",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Bu sizning qimmatli suhbatlaringiz ma'lumotlar bazasiga xavfsiz tarzda saqlanishini ta'minlaydi. Rahmat!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Bu eksperimental xususiyat bo'lib, u kutilganidek ishlamasligi va istalgan vaqtda o'zgarishi mumkin.",

View file

@ -120,7 +120,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "Các thay đổi cài đặt này sẽ áp dụng cho tất cả người sử dụng.",
"admin": "quản trị viên",
"Admin": "Quản trị",
"Admin Contact Email": "",
@ -531,6 +530,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "",
"Command": "Lệnh",
@ -711,7 +711,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "Mặc định truy xuất phân đoạn để trích xuất nội dung tập trung và phù hợp, điều này được khuyến nghị cho hầu hết các trường hợp.",
"Default User Role": "Vai trò mặc định",
"Default webhook": "",
"Defaults": "",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "Xóa",
@ -1655,6 +1654,7 @@
"Model can search the web for information": "",
"Model Capabilities": "",
"Model created successfully!": "Model đã được tạo thành công",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "Đường dẫn hệ thống tệp mô hình được phát hiện. Tên viết tắt mô hình là bắt buộc để cập nhật, không thể tiếp tục.",
"Model Filtering": "Lọc Mô hình",
"Model ID": "ID mẫu",
@ -1737,6 +1737,7 @@
"New Webhook": "",
"new-channel": "kênh-mới",
"Next message": "",
"Next page": "",
"Next run": "",
"No access grants. Private to you.": "",
"No actions found": "",
@ -1938,6 +1939,7 @@
"Parameters": "",
"Parent message not found": "",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "",
"Passthrough params": "",
"Password": "Mật khẩu",
"Password for the bind DN.": "",
"Passwords do not match.": "",
@ -2026,6 +2028,7 @@
"Previous 30 days": "30 ngày trước",
"Previous 7 days": "7 ngày trước",
"Previous message": "",
"Previous page": "",
"Private": "Riêng tư",
"Private conversation between selected users": "",
"Production version updated": "",
@ -2391,6 +2394,7 @@
"Show Formatting Toolbar": "",
"Show image preview": "",
"Show Model": "Hiển thị Mô hình",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "",
@ -2563,12 +2567,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "Nhiệt độ của mô hình. Tăng nhiệt độ sẽ làm cho mô hình trả lời sáng tạo hơn.",
"Theme": "Chủ đề",
"There was an error syncing your stats. Please try again.": "",
"thinking, output_config": "",
"Thinking...": "Đang suy luận...",
"This action cannot be undone. Do you wish to continue?": "Hành động này không thể được hoàn tác. Bạn có muốn tiếp tục không?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Kênh này được tạo vào {{createdAt}}. Đây là điểm khởi đầu của kênh {{channelName}}.",
"This chat won't appear in history and your messages will not be saved.": "Cuộc trò chuyện này sẽ không xuất hiện trong lịch sử và tin nhắn của bạn sẽ không được lưu.",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Điều này đảm bảo rằng các nội dung chat có giá trị của bạn được lưu an toàn vào cơ sở dữ liệu backend của bạn. Cảm ơn bạn!",
"This feature is currently experimental and may not work as expected.": "",
"This folder is empty": "",
"This is a default user permission and will remain enabled.": "",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Đây là tính năng thử nghiệm, có thể không hoạt động như mong đợi và có thể thay đổi bất kỳ lúc nào.",

View file

@ -120,7 +120,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "额外参数",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "调整这些设置将会对所有用户生效",
"admin": "管理员",
"Admin": "管理员",
"Admin Contact Email": "管理员联系邮箱",
@ -531,6 +530,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "命令",
"Command": "命令",
@ -711,7 +711,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "默认进行分段检索以提取重点和相关内容(推荐)",
"Default User Role": "默认用户角色",
"Default webhook": "",
"Defaults": "默认值",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "删除",
@ -1655,6 +1654,7 @@
"Model can search the web for information": "模型可进行联网搜索",
"Model Capabilities": "模型能力",
"Model created successfully!": "模型创建成功!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "检测到模型名字为文件路径。需要提供模型简称才能继续执行更新。",
"Model Filtering": "模型白名单",
"Model ID": "模型 ID",
@ -1737,6 +1737,7 @@
"New Webhook": "新建 Webhook",
"new-channel": "新频道",
"Next message": "下一条消息",
"Next page": "",
"Next run": "下次运行",
"No access grants. Private to you.": "未共享给他人,仅你可访问。",
"No actions found": "",
@ -1938,6 +1939,7 @@
"Parameters": "参数",
"Parent message not found": "未找到父消息",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "欢迎您参与社区排行榜和评估!同步使用统计数据有助于 Open WebUI 的研发和改进。您的隐私至关重要:我们绝不会发送任何消息内容。",
"Passthrough params": "",
"Password": "密码",
"Password for the bind DN.": "",
"Passwords do not match.": "两次输入的密码不一致。",
@ -2026,6 +2028,7 @@
"Previous 30 days": "过去 30 天",
"Previous 7 days": "过去 7 天",
"Previous message": "上一条消息",
"Previous page": "",
"Private": "私有",
"Private conversation between selected users": "所选用户之间的私密对话",
"Production version updated": "当前使用版本已更新",
@ -2391,6 +2394,7 @@
"Show Formatting Toolbar": "显示文本格式工具栏",
"Show image preview": "显示图像预览",
"Show Model": "显示模型",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "显示快捷键",
@ -2563,12 +2567,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "模型的温度。增加温度将使模型的回答更有创意。",
"Theme": "主题",
"There was an error syncing your stats. Please try again.": "同步使用统计数据时发生错误。请稍后重试。",
"thinking, output_config": "",
"Thinking...": "正在思考...",
"This action cannot be undone. Do you wish to continue?": "此操作无法撤销。您确认要继续吗?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "欢迎来到 {{channelName}},本频道创建于 {{createdAt}}。",
"This chat won't appear in history and your messages will not be saved.": "此对话将不会出现在历史记录中,且您的消息不会被保存",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "这将确保您宝贵的对话数据被安全地保存到后台数据库中。谢谢!",
"This feature is currently experimental and may not work as expected.": "此功能目前为实验性质,可能无法完全按预期工作。",
"This folder is empty": "此文件夹为空",
"This is a default user permission and will remain enabled.": "此权限已在默认用户配置中启用,当前会始终生效。",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "这是一项实验性功能,可能无法按预期运行,也可能会随时发生变化。",

View file

@ -120,7 +120,6 @@
"Additional JSON headers sent to the external document loader.": "",
"Additional Parameters": "額外參數",
"Adjust how quickly spoken responses are played.": "",
"Adjusting these settings will apply changes universally to all users.": "調整這些設定將會影響所有使用者。",
"admin": "管理員",
"Admin": "管理員",
"Admin Contact Email": "管理員聯絡信箱",
@ -531,6 +530,7 @@
"Comma-separated audio or video MIME types accepted for upload.": "",
"Comma-separated extensions MinerU should handle.": "",
"Comma-separated group names": "",
"Comma-separated top-level request parameters this upstream may receive without translation. Use * to allow all captured passthrough params.": "",
"Comma-separated upload extensions. Leave empty for all file types.": "",
"command": "命令",
"Command": "命令",
@ -711,7 +711,6 @@
"Default to segmented retrieval for focused and relevant content extraction, this is recommended for most cases.": "預設使用分段檢索以提取聚焦且相關的內容,建議用於大多數情況。",
"Default User Role": "預設使用者角色",
"Default webhook": "",
"Defaults": "預設值",
"Defines the behavior used for spoken conversations.": "",
"Delegate focused work to parallel sub-agents": "",
"Delete": "刪除",
@ -1655,6 +1654,7 @@
"Model can search the web for information": "模型可透過網路搜尋資訊",
"Model Capabilities": "模型能力",
"Model created successfully!": "成功建立模型!",
"Model Defaults": "",
"Model filesystem path detected. Model shortname is required for update, cannot continue.": "偵測到模型檔案系統路徑。更新需要模型簡稱,因此無法繼續。",
"Model Filtering": "模型篩選",
"Model ID": "模型 ID",
@ -1737,6 +1737,7 @@
"New Webhook": "新增 Webhook",
"new-channel": "新頻道",
"Next message": "下一條訊息",
"Next page": "",
"Next run": "下次執行",
"No access grants. Private to you.": "未分享給他人,僅你可存取。",
"No actions found": "",
@ -1938,6 +1939,7 @@
"Parameters": "參數",
"Parent message not found": "未找到父訊息",
"Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "參與社群排行榜和評估!同步聚合的使用統計資料有助於推動 Open WebUI 的研究和改進。您的隱私至關重要:絕不會分享訊息內容。",
"Passthrough params": "",
"Password": "密碼",
"Password for the bind DN.": "",
"Passwords do not match.": "兩次輸入的密碼不一致。",
@ -2026,6 +2028,7 @@
"Previous 30 days": "過去 30 天",
"Previous 7 days": "過去 7 天",
"Previous message": "過去訊息",
"Previous page": "",
"Private": "私有",
"Private conversation between selected users": "特定使用者之間的私人對話",
"Production version updated": "目前使用版本已更新",
@ -2391,6 +2394,7 @@
"Show Formatting Toolbar": "顯示文字格式工具列",
"Show image preview": "顯示圖片預覽",
"Show Model": "顯示模型",
"Show more": "",
"Show or hide custom generation parameters.": "",
"Show or hide sensitive account secrets.": "",
"Show Shortcuts": "顯示快捷鍵",
@ -2563,12 +2567,12 @@
"The temperature of the model. Increasing the temperature will make the model answer more creatively.": "模型的溫度。提高溫度會使模型更具創造性地回答。",
"Theme": "主題",
"There was an error syncing your stats. Please try again.": "同步使用統計資料時發生錯誤。請稍後重試。",
"thinking, output_config": "",
"Thinking...": "正在思考...",
"This action cannot be undone. Do you wish to continue?": "此操作無法復原。您確定要繼續進行嗎?",
"This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "此頻道建立於 {{createdAt}}。這是 {{channelName}} 頻道的起點。",
"This chat won't appear in history and your messages will not be saved.": "此對話不會出現在歷史記錄中,且您的訊息將不被儲存。",
"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "這確保您寶貴的對話會安全地儲存到您的後端資料庫。謝謝!",
"This feature is currently experimental and may not work as expected.": "此功能目前為實驗性質,可能無法完全如預期運作。",
"This folder is empty": "此資料夾為空",
"This is a default user permission and will remain enabled.": "此權限已在預設使用者設定中啟用,並將持續生效。",
"This is an experimental feature, it may not function as expected and is subject to change at any time.": "這是一個實驗性功能,它可能無法如預期運作,並且可能會隨時變更。",